@charset "UTF-8";
/****************************************************
 * Stylesheet
 *
 * 1.リセット
 * 2.共通設定
 * 3.レイアウト設定
 * 4.テンプレートスタイル
 * 5.コンテンツスタイル
 * 6.装飾
 * 7.印刷用調整
 * 
 ****************************************************/
/****************************************************
 * 1.リセット
 ****************************************************/
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #FFF;
  line-height: 1.5;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img, svg {
  border: 0;
}

address, caption, cite, dfn, em, strong, th {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

input[type=submit], input[type=button], input[type=reset] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

article, aside, footer, header, nav, section {
  display: block;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a, a:focus, a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/****************************************************
 * 2.共通
 ****************************************************/
html {
  background-color: transparent;
  background-image: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #212121;
  scroll-behavior: smooth;
  scroll-padding-top: 13.6rem;
}
@media only screen and (max-width: 1099px) {
  html {
    font-size: 9px;
    scroll-padding-top: 6.8rem;
  }
}
@media only screen and (max-width: 780px) {
  html {
    height: 100%;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
  background-color: #F6F7F2;
}
@media only screen and (max-width: 780px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

a {
  color: #212121;
}
a[href^="tel:"] {
  cursor: default;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.6;
}

@media only screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 1279px) {
  .pc2 {
    display: none !important;
  }
}

@media only screen and (max-width: 780px) {
  .pc_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 1100px) {
  .pc-min_sp {
    display: none !important;
  }
}

@media only screen and (min-width: 901px) {
  .tb_sp {
    display: none !important;
  }
}

@media only screen and (min-width: 781px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.anchor {
  width: 0;
  height: 0;
  margin: -10rem 0;
  padding: 10rem 0;
  font-size: 0;
  line-height: 0;
  display: block;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

/*タブ切り替え　ベース*/
.tab_content .tab_body > * {
  animation: tabDisp 1s;
}
.tab_content .tab_body > *:not(.current) {
  display: none;
  opacity: 0;
}
@keyframes tabDisp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*アコーディオン　ベース*/
.acc .acc_head {
  position: relative;
}
.acc .acc_head i {
  position: absolute;
  top: 0;
  right: 0;
  transition: transform 0.3s;
}
.acc .acc_body {
  display: none;
}
.acc.open .acc_head i {
  transform: rotate(180deg);
}
.acc.open .acc_body {
  display: block;
}

/*コンポーネント*/
.midashi01 {
  margin-bottom: 0.7em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 4.4rem;
  font-weight: 700;
  opacity: 0;
  transform-origin: center bottom;
  transition: opacity 0.6s ease-in;
}
@media only screen and (max-width: 780px) {
  .midashi01 {
    font-size: 2.6rem;
  }
}
.midashi01:after {
  width: 3em;
  height: 0.2rem;
  margin-top: 0.6em;
  content: "";
  background-color: #70AF0C;
  border-radius: 99px;
  display: block;
  transform: scaleX(0);
  transition: transform 0.6s ease-in 0.2s;
}
.midashi01.center {
  text-align: center;
}
.midashi01.center:after {
  margin-left: auto;
  margin-right: auto;
}
.midashi01 span {
  margin-bottom: 1.3em;
  font-size: 1.8rem;
  color: #70AF0C;
  display: block;
}
@media only screen and (max-width: 780px) {
  .midashi01 span {
    margin-bottom: 0.025em;
    font-size: 2rem;
  }
}
.midashi01 span.c-white {
  color: #ffffff;
}
.midashi01.view {
  transform: none;
  opacity: 1;
}
.midashi01.view:after {
  transform: scaleX(1);
}
.midashi02 {
  margin-bottom: 1.17em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .midashi02 {
    font-size: 2.2rem;
  }
}
.midashi02 span {
  padding-left: 3rem;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .midashi02 span {
    padding-left: 2rem;
  }
}
.midashi02 span:before {
  width: 0.6rem;
  height: 1.3em;
  content: "";
  background-color: #70AF0C;
  border-radius: 99px;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .midashi02 span:before {
    width: 0.4rem;
  }
}
.midashi02 span:after {
  width: 100%;
  height: 100%;
  content: "";
  background-color: #70AF0C;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: width 0.4s ease-in;
}
.midashi02.view span:after {
  width: 0;
}
.btn01 {
  width: 36rem;
  padding: 0.8em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff !important;
  background: linear-gradient(to right, #70AF0C, #70AF0C 50%, #679838 50%, #679838);
  background-size: 200% 100%;
  background-position: 0 0;
  border-radius: 99px;
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background-position 0.3s ease-in;
}
.btn01:after {
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../img/icon_arrow02.png");
  background-size: 1.3em auto;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.8em) center;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease-in;
}
@media only screen and (max-width: 780px) {
  .btn01 {
    width: 32.2rem;
    padding: 0.94em;
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 781px) {
  .btn01:hover {
    background-position: -100% 0;
  }
  .btn01:hover:after {
    left: 0.3rem;
  }
}
.btn02 {
  width: 36rem;
  padding: 0.8em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #212121 !important;
  background: linear-gradient(to right, #ffffff, #ffffff 50%, #F6F7F2 50%, #F6F7F2);
  background-size: 200% 100%;
  background-position: 0 0;
  border-radius: 99px;
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.16);
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: background-position 0.3s ease-in;
}
.btn02:after {
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("../img/icon_arrow01.png");
  background-size: 1.3em auto;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.8em) center;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease-in;
}
@media only screen and (max-width: 780px) {
  .btn02 {
    width: 32.2rem;
    padding: 0.94em;
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 781px) {
  .btn02:hover {
    background-position: -100% 0;
  }
  .btn02:hover:after {
    left: 0.3rem;
  }
}

.ttl_fig01 {
  width: 15.2rem;
  height: 15.2rem;
  background-image: url("../img/ttl_fig01.png");
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -45%);
}
@media only screen and (max-width: 780px) {
  .ttl_fig01 {
    width: 11.2rem;
    height: 11.2rem;
  }
}
.ttl_fig01 .mascot {
  width: 84.2%;
  height: 84.2%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 7.9%;
  left: 7.9%;
}
.ttl_fig01 .mascot img {
  width: 85%;
  margin: 0 auto;
  display: block;
  animation: mascot-anim01 2s linear infinite;
  transform: translate(0, 10%);
}
@keyframes mascot-anim01 {
  0% {
    transform: translate(0, 10%);
  }
  50% {
    transform: translate(0, 5%);
  }
  100% {
    transform: translate(0, 10%);
  }
}
@keyframes mascot-anim02 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes mascot-anim03 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.fadeIn {
  opacity: 0;
  transition: opacity 1s ease-in;
}

.fadeIn.view {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(5px);
  transition: transform 0.6s ease-in, opacity 1s ease-in;
}

.fadeInUp.view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.5s;
}

.delay-2 {
  transition-delay: 1s;
}

.delay-3 {
  transition-delay: 1.5s;
}

.delay-4 {
  transition-delay: 2s;
}

.delay-5 {
  transition-delay: 2.5s;
}

.img_panel {
  position: relative;
}
.img_panel:before {
  width: 100%;
  height: 100%;
  content: "";
  background-color: #F6F7F2;
  position: absolute;
  top: 0;
  right: 0;
  transition: width 0.6s ease-in;
}
.img_panel.view:before {
  width: 0;
}
@keyframes contact_pc {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/*フォームベース*/
.wpcf7-text, .input-text {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  border-radius: 0.4rem;
}
.wpcf7-text::-moz-placeholder, .input-text::-moz-placeholder {
  color: #B4B4B4;
}
.wpcf7-text::placeholder, .input-text::placeholder {
  color: #B4B4B4;
}

.wpcf7-textarea, .input-textarea {
  width: 100%;
  height: 12em;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  border-radius: 0.4rem;
}
@media only screen and (max-width: 780px) {
  .wpcf7-textarea, .input-textarea {
    height: 8em;
  }
}
.wpcf7-textarea::-moz-placeholder, .input-textarea::-moz-placeholder {
  color: #B4B4B4;
}
.wpcf7-textarea::placeholder, .input-textarea::placeholder {
  color: #B4B4B4;
}

.wpcf7-select, .input-select {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  background-image: url("../img/form_select_icon.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 2rem auto;
  border-radius: 0.4rem;
}

.wpcf7-radio, .radio_group {
  margin-bottom: -1em;
  display: block;
}
.wpcf7-radio > *, .radio_group > * {
  margin: 0 0 1em 0 !important;
  display: block !important;
}
.wpcf7-radio label input, .radio_group label input {
  visibility: hidden;
  position: absolute;
  left: -9999999px;
}
.wpcf7-radio label input:checked + span:after, .radio_group label input:checked + span:after {
  content: "";
}
.wpcf7-radio label input + span, .radio_group label input + span {
  padding-left: 4rem;
  display: inline-block;
  position: relative;
}
.wpcf7-radio label input + span:before, .radio_group label input + span:before {
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7-radio label input + span:after, .radio_group label input + span:after {
  width: 1.4rem;
  height: 1.4rem;
  content: none;
  background-color: #70AF0C;
  border-radius: 50%;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.wpcf7-checkbox, .wpcf7-acceptance, .check_group {
  margin-bottom: -1em;
  display: block;
  letter-spacing: -0.4em;
}
.wpcf7-checkbox > *, .wpcf7-acceptance > *, .check_group > * {
  display: inline-block;
  letter-spacing: normal;
}
.wpcf7-checkbox > *, .wpcf7-acceptance > *, .check_group > * {
  margin-right: 1em !important;
  margin-bottom: 1em !important;
}
.wpcf7-checkbox label input, .wpcf7-acceptance label input, .check_group label input {
  visibility: hidden;
  position: absolute;
  left: -9999999px;
}
.wpcf7-checkbox label input:checked + span:after, .wpcf7-acceptance label input:checked + span:after, .check_group label input:checked + span:after {
  content: "";
}
.wpcf7-checkbox label input + span, .wpcf7-acceptance label input + span, .check_group label input + span {
  padding-left: 4rem;
  display: inline-block;
  position: relative;
}
.wpcf7-checkbox label input + span:before, .wpcf7-acceptance label input + span:before, .check_group label input + span:before {
  width: 2.4rem;
  height: 2.4rem;
  content: "";
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  position: absolute;
  top: 0;
  left: 0;
}
.wpcf7-checkbox label input + span:after, .wpcf7-acceptance label input + span:after, .check_group label input + span:after {
  width: 1.6rem;
  height: 1rem;
  content: none;
  border-left: solid 0.2rem #70AF0C;
  border-bottom: solid 0.2rem #70AF0C;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  transform: rotate(-45deg);
}

/*ページネーション*/
.pagination {
  text-align: center;
  letter-spacing: -0.4em;
}
.pagination > * {
  display: inline-block;
  letter-spacing: normal;
}
.pagination > * {
  width: 4rem;
  height: 4rem;
  margin: 0 0.4rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 3.4rem;
  text-align: center;
  color: #ffffff !important;
  background-color: #D6D5C4;
  border: solid 0.3rem #D6D5C4;
  border-radius: 50%;
  vertical-align: top;
}
@media only screen and (max-width: 780px) {
  .pagination > * {
    width: 3.6rem;
    height: 3.6rem;
    margin: 0.4rem !important;
    line-height: 3rem;
  }
}
.pagination .current {
  color: #70AF0C !important;
  background-color: #ffffff;
  border-color: #70AF0C;
}
.pagination .dots {
  line-height: 2rem;
}
.pagination .prev, .pagination .next {
  background: none;
  background-image: url("../img/icon_arrow01.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
}
.pagination .prev {
  margin-right: 2rem;
  transform: scaleX(-1);
}
.pagination .next {
  margin-left: 2rem;
}
.pagination a:hover {
  opacity: 0.6;
}

/*ページャー*/
.post-navigation {
  display: flex;
}
@media only screen and (min-width: 781px) {
  .post-navigation {
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 780px) {
  .post-navigation {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-list {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
    order: 3;
  }
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-previous, .post-navigation .nav-next {
    width: 50%;
  }
}
.post-navigation .nav-previous a, .post-navigation .nav-next a {
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-previous a, .post-navigation .nav-next a {
    font-size: 1.3rem;
  }
}
.post-navigation .nav-previous a:before, .post-navigation .nav-previous a:after, .post-navigation .nav-next a:before, .post-navigation .nav-next a:after {
  width: 4.3rem;
  height: 4.3rem;
  background-color: #F6F7F2;
  background-image: url("../img/icon_arrow01.png");
  background-size: 2.4rem auto;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  vertical-align: -1em;
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-previous a:before, .post-navigation .nav-previous a:after, .post-navigation .nav-next a:before, .post-navigation .nav-next a:after {
    width: 3.6rem;
    height: 3.6rem;
    background-size: 0.8rem auto;
  }
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-previous {
    order: 1;
  }
}
.post-navigation .nav-previous a:before {
  margin-right: 1rem;
  content: "";
  transform: scale(-1, 1);
}
@media only screen and (max-width: 780px) {
  .post-navigation .nav-next {
    text-align: right;
    order: 2;
  }
}
.post-navigation .nav-next a:after {
  margin-left: 1rem;
  content: "";
}

/* ブロックエディタ用基本CSS */
.editor-area:after {
  content: "";
  display: block;
  clear: both;
}
.editor-area > *:last-child {
  margin-bottom: 0 !important;
}
.editor-area p {
  margin-bottom: 3em;
  line-height: 2.125;
}
.editor-area h3 {
  margin-bottom: 1em;
  padding: 0.2em 0.2em 0.2em 0.66em;
  font-size: 1.5em;
  font-weight: 500;
  background-color: #ffffff;
  border-left: solid 0.4rem #70AF0C;
}
.editor-area h4 {
  margin-bottom: 1.13em;
  padding-left: 0.81em;
  font-size: 1.375em;
  font-weight: 500;
}
.editor-area h4:before {
  width: 0.45em;
  height: 0.45em;
  margin: 0 0.36em 0 -0.81em;
  content: "";
  background-color: #70AF0C;
  display: inline-block;
  vertical-align: 0.2em;
}
.editor-area h5 {
  margin-bottom: 1.38em;
  font-size: 1.125em;
  font-weight: 700;
}
.editor-area ul {
  margin-bottom: 3em;
}
.editor-area ul li {
  margin-bottom: 0.5em;
  padding-left: 3rem;
}
.editor-area ul li:before {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 1.4rem 0 -3rem;
  content: "";
  background-image: url("../img/news/check.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.1em;
}
.editor-area ol {
  margin-bottom: 3em;
  counter-reset: num;
}
.editor-area ol li {
  margin-bottom: 0.5em;
  padding-left: 3rem;
  counter-increment: num;
}
.editor-area ol li:before {
  width: 2rem;
  margin: 0 1rem 0 -3rem;
  content: counter(num) ".";
  color: #70AF0C;
  font-weight: 700;
  display: inline-block;
  vertical-align: 0;
}
.editor-area .wp-block-image {
  margin-bottom: 2em;
}
.editor-area .alignleft {
  max-width: 50%;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 2em;
}
.editor-area .alignright {
  max-width: 50%;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 2em;
}
.editor-area .aligncenter {
  margin-bottom: 2em;
}
.editor-area .aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.editor-area .has-text-align-center {
  text-align: center;
}
.editor-area .has-text-align-right {
  text-align: right;
}
.editor-area blockquote {
  margin-bottom: 3em;
  margin-left: 0;
  padding: 2em 2em 2em 5em;
  background-color: #ffffff;
  background-image: url("../img/news/innyou.png");
  background-size: 2.5em auto;
  background-repeat: no-repeat;
  background-position: 1em center;
  border: solid 1px #D6D5C4;
  border-radius: 0.8rem;
  position: relative;
  display: block;
}
@media only screen and (max-width: 780px) {
  .editor-area blockquote {
    padding: 1em 1em 1em 4em;
    background-size: 2em auto;
  }
}
.editor-area blockquote > *:last-child {
  margin-bottom: 0 !important;
}
.editor-area table {
  width: 100%;
  margin-bottom: 3em;
  background-color: #ffffff;
  border-collapse: collapse;
}
.editor-area table td, .editor-area table th {
  border: 1px solid #D6D5C4;
  padding: 0.5em;
}
.editor-area table th {
  background-color: #F7F5E4;
}
.editor-area .wp-block-columns {
  display: flex;
  margin-bottom: 3em;
}
.editor-area .wp-block-column {
  flex-grow: 1;
  margin-left: 0.625em;
  margin-right: 0.625em;
}
.editor-area .wp-block-media-text {
  display: grid;
}
.editor-area a {
  color: blue;
  text-decoration: underline;
  word-break: break-all;
}
.editor-area strong, .editor-area b {
  font-weight: bold;
}
.editor-area em, .editor-area i {
  font-style: italic;
}
.editor-area .wp-block-spacer {
  clear: both;
}
.editor-area .wp-block-video {
  margin-bottom: 3em;
}
.editor-area .wp-block-video video {
  max-width: 100%;
  margin: 0 auto;
}

/****************************************************
 * 3.レイアウト設定
 ****************************************************/
.container {
  width: 100%;
  padding-top: 13.6rem;
  overflow: hidden;
}
@media only screen and (max-width: 1099px) {
  .container {
    padding-top: 6.8rem;
  }
}

/****************************************************
 * 4.テンプレートスタイル
 ****************************************************/
/*ヘッダーブロック*/
#header {
  width: 100%;
  height: 13.6rem;
  padding: 0 2.4rem;
  background-color: #ffffff;
  box-shadow: 0 0.3rem 0.6rem rgba(94, 106, 84, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1599px) {
  #header {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 1099px) {
  #header {
    height: 6.8rem;
    padding: 0 0 0 1.2rem;
  }
}
#header .logo {
  width: 44.6rem;
}
@media only screen and (max-width: 1700px) {
  #header .logo {
    width: 40rem;
  }
}
@media only screen and (max-width: 1599px) {
  #header .logo {
    width: 32rem;
  }
}
@media only screen and (max-width: 1279px) {
  #header .logo {
    width: 27.3rem;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .sp_menu_btn {
    width: 6.8rem;
    height: 6.8rem;
    background-image: url("../img/sp_menu_open.png");
    background-size: cover;
  }
  #header .header_right .sp_menu_btn.open {
    background-image: url("../img/sp_menu_close.png");
  }
  #header .header_right .sp_menu_btn.open + .navi {
    right: 0;
  }
  #header .header_right .sp_menu_btn.open + .navi:before {
    right: 34.6rem;
    opacity: 1;
  }
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi {
    display: flex;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi {
    width: 34.6rem;
    height: calc(100vh - 6.8rem);
    background-color: #D5DFA0;
    position: fixed;
    top: 6.8rem;
    right: -34.6rem;
    z-index: 1;
    transition: right 0.5s;
  }
  #header .header_right .navi:before {
    width: 100vw;
    height: 100%;
    content: "";
    background-color: #000000;
    opacity: 0.72;
    position: absolute;
    top: 0;
    right: -100vw;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi nav {
    margin-bottom: 3.6rem;
  }
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi nav ul {
    display: table;
  }
  #header .header_right .navi nav ul > * {
    display: table-cell;
  }
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi nav ul li {
    padding: 0 2.5em 0.25em 2.5em;
    font-size: 0.9375em;
    border-left: solid 1px #D6D6D6;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1700px) {
  #header .header_right .navi nav ul li {
    padding: 0 2em 0.25em 2em;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1599px) {
  #header .header_right .navi nav ul li {
    padding: 0 1.25em 0.25em 1.25em;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1279px) {
  #header .header_right .navi nav ul li {
    font-size: 0.875em;
    padding: 0 0.75em 0.25em 0.75em;
  }
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi nav ul li:first-child {
    border-left: none;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi nav ul li {
    border-bottom: solid 1px #A5B260;
  }
}
#header .header_right .navi nav ul li a {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi nav ul li a {
    padding-right: 1.4em;
    background-image: url("../img/icon_arrow01.png");
    background-size: 1em auto;
    background-repeat: no-repeat;
    background-position: calc(100% - 0.2rem) center;
    transition: background-position 0.2s ease-in, color 0.2s ease-in;
  }
  #header .header_right .navi nav ul li a:hover {
    color: #70AF0C;
    background-position: 100% center;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi nav ul li a {
    padding: 1.17em 1.1em;
    font-size: 1.0625em;
    display: block;
  }
}
@media only screen and (max-width: 1099px) and (min-width: 781px) {
  #header .header_right .navi nav ul li a:hover {
    background-color: #BBC48A;
  }
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi .btn_memuber {
    position: absolute;
    top: 2.4rem;
    right: 22rem;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1599px) {
  #header .header_right .navi .btn_memuber {
    right: 16.6rem;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi .btn_memuber {
    margin-bottom: 1.6rem;
    text-align: center;
  }
}
#header .header_right .navi .btn_memuber .btn01 {
  box-shadow: none;
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi .btn_memuber .btn01 {
    width: 20rem;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1599px) {
  #header .header_right .navi .btn_memuber .btn01 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi .btn_memuber .btn01 {
    width: 28.2rem;
  }
}
#header .header_right .navi .btn_contact a {
  background-size: cover;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
@media only screen and (min-width: 1100px) {
  #header .header_right .navi .btn_contact a {
    width: 18rem;
    height: 9.1rem;
    background-image: url("../img/header_contact.png");
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1599px) {
  #header .header_right .navi .btn_contact a {
    width: 12.6rem;
    height: 6.4rem;
  }
}
@media only screen and (max-width: 1099px) {
  #header .header_right .navi .btn_contact a {
    width: 28.2rem;
    height: 8.6rem;
    margin: 0 auto;
    background-image: url("../img/header_contact_sp.png");
  }
}
@media only screen and (min-width: 781px) {
  #header .header_right .navi .btn_contact a:hover {
    animation: contact_pc 0.6s;
  }
}

/*フッターブロック*/
#footer {
  background-color: #ffffff;
}
@media only screen and (max-width: 780px) {
  #footer {
    padding-bottom: 6rem;
  }
}
#footer .footer_top {
  padding: 5.6rem 0;
  border-bottom: solid 1px #D6D6D6;
}
@media only screen and (max-width: 900px) {
  #footer .footer_top {
    padding: 2rem 0;
  }
}
#footer .footer_top a {
  width: 29.1rem;
  margin: 0 auto;
  display: block;
}
@media only screen and (max-width: 900px) {
  #footer .footer_top a {
    width: 25.6rem;
  }
}
#footer .footer_top p {
  margin-top: 1em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
#footer .footer_content {
  padding: 5rem 0;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content {
    padding: 2.8rem 0;
  }
}
#footer .footer_content .inner {
  max-width: 1200px;
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
#footer .footer_content .navi {
  display: flex;
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .navi {
    max-width: calc(100% - 40rem);
  }
}
@media only screen and (max-width: 900px) and (min-width: 481px) {
  #footer .footer_content .navi {
    justify-content: center;
  }
}
@media only screen and (max-width: 780px) {
  #footer .footer_content .navi {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 481px) {
  #footer .footer_content .navi dl + dl {
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 481px) and (max-width: 780px) {
  #footer .footer_content .navi dl + dl {
    margin-left: 3rem;
  }
}
@media only screen and (max-width: 480px) {
  #footer .footer_content .navi dl {
    width: 50%;
  }
}
#footer .footer_content .navi dl dt {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #70AF0C;
}
#footer .footer_content .navi dl dd {
  margin-top: 1.2em;
  font-size: 1.3rem;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (min-width: 781px) {
  #footer .footer_content .navi dl dd a {
    transition: color 0.3s;
  }
  #footer .footer_content .navi dl dd a:hover {
    color: #70AF0C;
  }
}
@media only screen and (min-width: 901px) {
  #footer .footer_content .text {
    width: 40rem;
  }
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .text {
    margin-top: 4.5rem;
  }
}
#footer .footer_content .text .company_name {
  font-size: 1.8rem;
  margin-bottom: 1.38em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .text .company_name {
    margin-bottom: 0.65em;
    font-size: 1.9rem;
    text-align: center;
  }
}
#footer .footer_content .text address {
  font-size: 1.4rem;
  line-height: 1.85;
}
@media only screen and (max-width: 900px) {
  #footer .footer_content .text address {
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
  }
}
#footer .footer_content .text address span {
  font-family: serif;
}
#footer .copyright {
  padding: 1em 0;
  font-size: 1.2rem;
  text-align: center;
  color: #BBC48A;
  background-color: #EBEDE1;
}
@media only screen and (max-width: 900px) {
  #footer .copyright {
    font-size: 1.3rem;
  }
}

/*CTA*/
.cta_block {
  padding: 10.2rem 0 5.6rem 0;
  background-image: url("../img/bg01.jpg");
  position: relative;
}
@media only screen and (max-width: 780px) {
  .cta_block {
    padding: 6rem 0 3rem 0;
    background-size: 19.2rem auto;
  }
}
.cta_block .inner {
  max-width: 1000px;
}
.cta_block .midashi01 {
  margin-bottom: 1.1em;
  font-size: 3.6rem;
}
@media only screen and (max-width: 780px) {
  .cta_block .midashi01 {
    font-size: 2.2rem;
  }
}
.cta_block .midashi01:after {
  content: none;
}
.cta_block .box {
  padding: 2em;
  text-align: center;
  background-color: #ffffff;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
}
.cta_block .box p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.cta_block .box .btn .btn01 {
  width: 27.6rem;
}

/*インスタリンク*/
.insta_btn_sec {
  padding: 5.6rem 0;
}
@media only screen and (max-width: 900px) {
  .insta_btn_sec {
    padding: 2rem 0;
  }
}
.insta_btn_sec .inner {
  text-align: center;
}
.insta_btn_sec .inner a {
  width: 52.2rem;
  display: inline-block;
}
@media only screen and (max-width: 900px) {
  .insta_btn_sec .inner a {
    width: 26rem;
  }
}

/*追従*/
.fix_btn {
  position: fixed;
  z-index: 90;
}
@media only screen and (min-width: 781px) {
  .fix_btn {
    width: 20rem;
    right: 2.4rem;
    bottom: 5rem;
  }
}
@media only screen and (max-width: 780px) {
  .fix_btn {
    width: 100%;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 780px) {
  .fix_btn ul {
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 780px) {
  .fix_btn ul li {
    width: 50%;
    max-width: 20rem;
  }
}
@media only screen and (min-width: 781px) {
  .fix_btn ul li a {
    display: block;
  }
  .fix_btn ul li a img {
    opacity: 1 !important;
  }
  .fix_btn ul li a:hover {
    animation: contact_pc 0.6s;
  }
}

/****************************************************
 * 5.コンテンツスタイル
 ****************************************************/
/*TOPページ*/
.p-top__mv {
  margin: 5.6rem 0 2.8rem 0;
}
@media only screen and (max-width: 780px) {
  .p-top__mv {
    margin: 2.4rem 0 0 0;
  }
}
.p-top__mv .inner {
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0.3rem 0.6rem rgba(164, 177, 153, 0.4);
  position: relative;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .inner {
    width: 94%;
    max-width: 1808px;
    height: 68rem;
    background-image: url("../img/top/mv.jpg");
    border-radius: 2.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .inner {
    height: 117.4vw;
    background-image: url("../img/top/mv_sp.jpg");
    border-radius: 1.2rem;
  }
}
.p-top__mv .inner .text {
  width: 90%;
  margin: 0 auto;
  position: relative;
  transition: opacity 0.5s ease-in 0.5s;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .inner .text {
    max-width: 1334px;
    height: 100%;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__mv .inner .text {
    padding-top: 11.2vw;
  }
}
.p-top__mv .inner .text .catch {
  width: 100%;
}
@media only screen and (min-width: 781px) {
  .p-top__mv .inner .text .catch {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: 10;
  }
}
.p-top__mv .inner .text .catch img {
  display: block;
}
.p-top__mv .inner .text .catch img:nth-child(1) {
  width: 36.4rem;
}
@media only screen and (max-width: 780px) {
  .p-top__mv .inner .text .catch img:nth-child(1) {
    width: 52.9%;
    margin: 0 auto;
  }
}
.p-top__mv .inner .text .catch img:nth-child(2) {
  width: 56.6rem;
  margin-top: -4rem;
}
@media only screen and (max-width: 780px) {
  .p-top__mv .inner .text .catch img:nth-child(2) {
    width: 86.5%;
    margin: -3vw auto 0 auto;
  }
}
.p-top__mv .inner .text .catch img:nth-child(3) {
  width: 54.6rem;
  margin-top: -1rem;
}
@media only screen and (max-width: 780px) {
  .p-top__mv .inner .text .catch img:nth-child(3) {
    width: 83%;
    margin: -1vw auto 0 auto;
  }
}
.p-top__mv .inner.view .text {
  opacity: 1;
}
@media only screen and (min-width: 781px) {
  .p-top__philosophy {
    padding: 5rem 0 12rem 0;
    background-image: url("../img/top/philosophy_bg.png");
    background-size: cover;
    background-position: center top;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__philosophy {
    margin-bottom: 8.5rem;
    padding: 3.8rem 0 16.3rem 0;
    background: url("../img/top/philosophy_bg_sp01.png") no-repeat center top/100% auto, url("../img/top/philosophy_bg_sp02.png") no-repeat center bottom/100% auto;
  }
}
.p-top__philosophy .midashi01 small {
  font-size: 0.77em;
  line-height: 1.14;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-top__philosophy .midashi01 small {
    font-size: 0.8em;
  }
}
.p-top__philosophy p {
  margin-bottom: 2em;
  line-height: 2.75;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-top__philosophy p {
    line-height: 1.8;
    text-align: left;
  }
}
.p-top__philosophy p b {
  font-weight: 700;
  color: #70AF0C;
}
.p-top__philosophy .btn {
  text-align: center;
}
.p-top__jisseki {
  padding: 9rem 0 8.8rem 0;
  background-image: url("../img/bg01.jpg");
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki {
    padding: 6.7rem 0 3.2rem 0;
    background-size: 19.2rem auto;
  }
}
.p-top__jisseki .inner {
  max-width: 1200px;
}
.p-top__jisseki p {
  margin-bottom: 2.5em;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki p {
    margin-bottom: 1.5em;
    text-align: left;
  }
}
.p-top__jisseki ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 781px) {
  .p-top__jisseki ul {
    justify-content: center;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki ul {
    width: 107%;
    margin: 0 -3.5%;
  }
}
.p-top__jisseki ul li {
  background-color: #FFFEF2;
  position: relative;
}
.p-top__jisseki ul li:before {
  width: 5em;
  height: 0.8rem;
  margin-left: -2.5em;
  content: "";
  background-color: #70AF0C;
  border-radius: 0 0 1.6rem 1.6rem;
  position: absolute;
  top: 0;
  left: 50%;
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki ul li:before {
    width: 3em;
    height: 0.5rem;
    margin-left: -1.5em;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__jisseki ul li {
    width: 24%;
    margin: 0 1.33% 1.33% 0;
    padding: 1.5em 1em 1em 1em;
    border-radius: 1.6rem;
  }
  .p-top__jisseki ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki ul li {
    width: 48.3%;
    margin: 0 3.4% 3.4% 0;
    padding: 0.75em 0.5em 0.5em 0.5em;
    border-radius: 0.8rem;
  }
  .p-top__jisseki ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.p-top__jisseki ul li p {
  margin-bottom: 0.8em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-top__jisseki ul li p {
    margin-bottom: 0.4em;
    font-size: 1.8rem;
  }
}
.p-top__jisseki ul li .img:before {
  background-color: #FFFEF2;
}
@media only screen and (min-width: 781px) {
  .p-top__products {
    padding: 6rem 0 8rem 0;
    background-image: url("../img/top/products_bg.png");
    background-size: cover;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products {
    padding: 3.6rem 0 35.2vw 0;
    position: relative;
  }
  .p-top__products:after {
    width: 90.7vw;
    height: 31.9vw;
    margin-top: -15.95vw;
    content: "";
    background-image: url("../img/top/products_bg_sp.png");
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 4.65vw;
  }
}
.p-top__products .inner {
  max-width: 1200px;
}
.p-top__products .midashi01 + p {
  margin-bottom: 2.5em;
  text-align: center;
  line-height: 2.125;
}
@media only screen and (max-width: 780px) {
  .p-top__products .midashi01 + p {
    margin-bottom: 1.5em;
    text-align: left;
  }
}
.p-top__products .mascot {
  position: relative;
  z-index: -1;
}
@media only screen and (min-width: 781px) {
  .p-top__products .mascot {
    width: 100%;
    height: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .mascot {
    margin-bottom: -2rem;
    text-align: right;
  }
}
@media only screen and (max-width: 780px) and (max-width: 480px) {
  .p-top__products .mascot {
    text-align: center;
  }
}
.p-top__products .mascot img {
  animation: mascot-anim03 2s linear infinite;
}
@media only screen and (min-width: 781px) {
  .p-top__products .mascot img {
    width: 10rem;
    position: absolute;
    bottom: -3rem;
    right: 3rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .mascot img {
    width: 6rem;
  }
}
.p-top__products .products_list {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 480px) {
  .p-top__products .products_list {
    width: 113.6%;
    margin: 0 -6.8% 3.6rem -6.8%;
  }
}
.p-top__products .products_list li {
  margin: 0 1.2rem;
  padding-bottom: 0.3rem;
}
.p-top__products .products_list li a {
  background-color: #ffffff;
  background-image: url("../img/icon_arrow01.png");
  background-repeat: no-repeat;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  display: block;
}
@media only screen and (min-width: 781px) {
  .p-top__products .products_list li a {
    padding: 2.4rem;
    background-size: 2.4rem auto;
    background-position: calc(100% - 2.4rem) calc(100% - 2.4rem);
    transition: background-position 0.3s;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list li a {
    padding: 1.6rem;
    background-size: 2.2rem auto;
    background-position: calc(100% - 1.6rem) calc(100% - 1.6rem);
  }
}
@media only screen and (min-width: 781px) {
  .p-top__products .products_list li a .img {
    width: 100%;
    padding-top: 20rem;
    overflow: hidden;
    position: relative;
  }
  .p-top__products .products_list li a .img img, .p-top__products .products_list li a .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-top__products .products_list li a .img {
    transition: transform 0.3s;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list li a .img {
    width: 100%;
    padding-top: 15.6rem;
    overflow: hidden;
    position: relative;
  }
  .p-top__products .products_list li a .img img, .p-top__products .products_list li a .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-top__products .products_list li a .img img {
  opacity: 1 !important;
}
.p-top__products .products_list li a h3 {
  margin-bottom: 0.35em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list li a h3 {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-top__products .products_list li a:hover {
    background-position: calc(100% - 1.2rem) calc(100% - 2.4rem);
  }
  .p-top__products .products_list li a:hover .img {
    transform: scale(0.95);
  }
}
.p-top__products .products_list .slick-arrow {
  width: 4rem;
  height: 4rem;
  background-image: url("../img/icon_arrow03.png");
  background-size: cover;
  z-index: 50;
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list .slick-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.p-top__products .products_list .slick-arrow:before {
  content: none !important;
}
.p-top__products .products_list .slick-arrow.slick-prev {
  left: -6.4rem;
  transform: scaleX(-1) translate(0, -50%);
}
@media only screen and (max-width: 1099px) {
  .p-top__products .products_list .slick-arrow.slick-prev {
    left: -4.2rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list .slick-arrow.slick-prev {
    left: 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-top__products .products_list .slick-arrow.slick-prev {
    left: 2rem;
  }
}
.p-top__products .products_list .slick-arrow.slick-next {
  right: -6.4rem;
}
@media only screen and (max-width: 1099px) {
  .p-top__products .products_list .slick-arrow.slick-next {
    right: -4.2rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__products .products_list .slick-arrow.slick-next {
    right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-top__products .products_list .slick-arrow.slick-next {
    right: 2rem;
  }
}
.p-top__products .btn {
  text-align: center;
}
.p-top__products .btn a {
  margin: 0 2rem;
}
@media only screen and (max-width: 780px) {
  .p-top__products .btn a {
    margin: 0 auto 1em auto;
  }
}
.p-top__materials {
  background-image: url("../img/bg01.jpg");
  position: relative;
}
.p-top__materials .img {
  overflow: hidden;
}
.p-top__materials .img > img,
.p-top__materials .img > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 901px) {
  .p-top__materials .img {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1099px) {
  .p-top__materials .img {
    width: 40%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__materials .img {
    width: 100%;
    height: auto;
  }
}
.p-top__materials .inner {
  max-width: 1160px;
}
@media only screen and (min-width: 901px) {
  .p-top__materials .text {
    width: 50%;
    padding: 5.6rem 0 6.4rem 0;
  }
}
@media only screen and (min-width: 901px) and (max-width: 1099px) {
  .p-top__materials .text {
    width: 66.6667%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text {
    padding: 2.8rem 0 2.4rem 0;
  }
}
.p-top__materials .text .midashi01 {
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text .midashi01 {
    width: 107%;
    margin: 0 -3.5% 1.4em -3.5%;
  }
}
.p-top__materials .text .midashi01:after {
  content: none;
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text .midashi01 span {
    text-align: center;
  }
}
.p-top__materials .text .midashi01 img {
  width: 86.2%;
  margin-top: 1em;
  display: block;
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text .midashi01 img {
    width: 100%;
  }
}
.p-top__materials .text .mascot {
  width: 100%;
  height: 0;
  position: relative;
}
.p-top__materials .text .mascot img {
  position: absolute;
  animation: mascot-anim02 2s linear infinite;
}
@media only screen and (min-width: 901px) {
  .p-top__materials .text .mascot img {
    width: 6.6rem;
    bottom: 3rem;
    right: 3.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text .mascot img {
    width: 4.8rem;
    bottom: 1rem;
    right: -1rem;
  }
}
.p-top__materials .text h3 {
  margin-bottom: 0.8em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text h3 {
    font-size: 2.4rem;
  }
}
.p-top__materials .text p {
  margin-bottom: 2em;
  line-height: 2.125;
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text p {
    margin-bottom: 1.28em;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__materials .text .btn {
    text-align: center;
  }
}
.p-top__brand {
  padding: 8rem 0 6.4rem 0;
}
@media only screen and (max-width: 780px) {
  .p-top__brand {
    padding: 4rem 0;
  }
}
.p-top__brand .inner {
  max-width: 1200px;
}
@media only screen and (min-width: 901px) {
  .p-top__brand .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 901px) {
  .p-top__brand .text {
    width: 40.5%;
    max-width: 45rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__brand .text {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__brand .text .midashi01 {
    text-align: center;
  }
  .p-top__brand .text .midashi01:after {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top__brand .text p {
  margin-bottom: 2.5em;
  line-height: 2.125;
}
@media only screen and (max-width: 780px) {
  .p-top__brand .text p {
    margin-bottom: 1.5em;
    line-height: 1.8;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__brand .text .btn {
    text-align: center;
  }
}
@media only screen and (min-width: 901px) {
  .p-top__brand .fig {
    width: 66.2%;
    margin-right: -6.7%;
  }
}
@media only screen and (max-width: 900px) {
  .p-top__brand .fig {
    width: 100%;
    max-width: 78rem;
    margin: 0 auto;
  }
}
.p-top__news {
  margin-bottom: 12.6rem;
  padding: 6.4rem 0 8rem 0;
  background-color: #EBEDE1;
}
@media only screen and (max-width: 780px) {
  .p-top__news {
    margin-bottom: 6rem;
    padding: 4rem 0;
  }
}
.p-top__news .inner {
  max-width: 1200px;
}
.p-top__news .news_list {
  display: flex;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list {
    margin-bottom: 4rem;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    overflow-x: auto;
  }
}
.p-top__news .news_list li {
  background-color: #ffffff;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  overflow: hidden;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list li {
    width: 32%;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list li {
    flex: 0 0 30rem;
    margin-right: 3rem;
  }
}
.p-top__news .news_list li a {
  display: block;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list li a {
    padding: 2.4rem;
  }
  .p-top__news .news_list li a:hover .icatch {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list li a {
    padding: 1.6rem;
  }
}
.p-top__news .news_list li .icatch {
  margin-bottom: 1em;
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-top__news .news_list li .icatch {
    width: 100%;
    padding-top: 20rem;
    overflow: hidden;
    position: relative;
  }
  .p-top__news .news_list li .icatch img, .p-top__news .news_list li .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-top__news .news_list li .icatch {
    transition: transform 0.3s;
  }
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list li .icatch {
    width: 100%;
    padding-top: 16rem;
    overflow: hidden;
    position: relative;
  }
  .p-top__news .news_list li .icatch img, .p-top__news .news_list li .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-top__news .news_list li .icatch img {
  opacity: 1 !important;
}
.p-top__news .news_list li .text p {
  margin-bottom: 0.4em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list li .text p {
    font-size: 1.8rem;
  }
}
.p-top__news .news_list li .text .meta {
  display: flex;
  align-items: center;
}
.p-top__news .news_list li .text .meta .cate {
  letter-spacing: -0.4em;
}
.p-top__news .news_list li .text .meta .cate > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-top__news .news_list li .text .meta .cate span {
  margin: 0 1.3em 0 0;
  padding: 0.2em 1.3em;
  font-size: 1.2rem;
  font-weight: 500;
  color: #70AF0C;
  border: solid 1px #70AF0C;
  border-radius: 99px;
}
.p-top__news .news_list li .text .meta .date {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-top__news .news_list li .text .meta .date {
    font-size: 1.4rem;
  }
}
.p-top__news .btn {
  text-align: center;
}
@media only screen and (min-width: 781px) {
  .p-top__news .btn .btn01 {
    width: 27.6rem;
  }
}

/*下層ページ*/
.pagetitle {
  margin-bottom: 2.4rem;
  padding: 7.2rem 0;
  background-image: url("../img/pagetitle_bg.jpg");
  background-size: cover;
  background-position: center center;
}
@media only screen and (max-width: 780px) {
  .pagetitle {
    padding: 2rem 0;
  }
}
.pagetitle h1 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 4.4rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .pagetitle h1 {
    font-size: 2.2rem;
  }
}
.pagetitle h1 span {
  margin-bottom: 0.44em;
  font-size: 1.8rem;
  color: #70AF0C;
  display: block;
}
@media only screen and (max-width: 780px) {
  .pagetitle h1 span {
    margin-bottom: 0.025em;
  }
}

.pankuzu {
  margin-bottom: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.pankuzu .inner {
  max-width: 1200px;
  letter-spacing: -0.4em;
}
.pankuzu .inner > * {
  display: inline-block;
  letter-spacing: normal;
}
.pankuzu a:after {
  width: 0.39em;
  height: 0.64em;
  margin: 0 1em;
  content: "";
  background-image: url("../img/icon_arrow04.png");
  background-size: cover;
  display: inline-block;
  vertical-align: 0;
}
.pankuzu span {
  opacity: 0.5;
}

.p-shop__map {
  margin-bottom: 18.2rem;
}
@media only screen and (max-width: 780px) {
  .p-shop__map {
    margin-bottom: 9rem;
  }
}
.p-shop__map .inner {
  max-width: 1000px;
}
.p-shop__map p {
  margin-bottom: 2em;
}
.p-shop__map .box {
  padding: 5.6rem;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  border-radius: 2.4rem;
}
@media only screen and (max-width: 780px) {
  .p-shop__map .box {
    padding: 3rem;
  }
}
.p-shop__map .box p {
  max-width: 74rem;
  margin: 0 auto;
  padding-left: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border-left: solid 0.5rem #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-shop__map .box p {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
.p-shop__map .box .jpmap {
  max-width: 74rem;
  margin: -2em auto 0 auto;
}
@media only screen and (max-width: 780px) {
  .p-shop__map .box .jpmap {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 781px) {
  .p-shop__map .box .jpmap a:not(.no-post):hover g {
    filter: url(#bright);
  }
}
@media only screen and (max-width: 780px) {
  .p-shop__map .box .jpmap a {
    pointer-events: none;
    cursor: default;
  }
}
.p-shop__map .box .jpmap a.no-post {
  pointer-events: none;
  cursor: default;
}
.p-shop__map .box .jpmap a.no-post g {
  filter: url(#grayscale);
  opacity: 0.6;
}
@media only screen and (max-width: 780px) {
  .p-shop__map .box .pref_list {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: solid 1px #D6D5C4;
  }
  .p-shop__map .box .pref_list ul {
    font-size: 1.4rem;
    letter-spacing: -0.4em;
  }
  .p-shop__map .box .pref_list ul > * {
    display: inline-block;
    letter-spacing: normal;
  }
  .p-shop__map .box .pref_list ul + ul {
    margin-top: 1em;
  }
  .p-shop__map .box .pref_list ul li {
    margin: 0 1em 1em;
  }
  .p-shop__map .box .pref_list ul li.no-post a {
    opacity: 0.6;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
  .p-shop__map .box .pref_list ul li a {
    text-decoration: underline;
  }
}
.p-shop__list {
  margin-bottom: 12rem;
  padding: 9rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-shop__list {
    margin-bottom: 6rem;
    padding: 4rem 0;
  }
}
.p-shop__list .inner {
  max-width: 1200px;
}
.p-shop__list .mymap {
  max-width: 1000px;
  height: 69.6rem;
  margin: 0 auto 6.4rem auto;
}
@media only screen and (max-width: 780px) {
  .p-shop__list .mymap {
    height: 30rem;
    margin-bottom: 4rem;
  }
}
.p-shop__list .mymap iframe {
  width: 100%;
  height: 100%;
}
.p-shop__list .shop_list_table {
  width: 100%;
  margin-bottom: 4.8rem;
}
.p-shop__list .shop_list_table .map {
  height: 13rem;
  margin-top: 0.5em;
}
.p-shop__list .shop_list_table .map iframe {
  width: 100%;
  height: 100%;
}
.p-shop__list .shop_list_table a {
  text-decoration: underline;
  color: #166CC3;
}
@media only screen and (min-width: 781px) {
  .p-shop__list .shop_list_table thead tr th {
    padding: 0.8em 1.3em;
    font-size: 1.125em;
    font-weight: 500;
    letter-spacing: 0.06em;
    background-color: #EBEDE1;
    border-left: solid 1px #D6D6D6;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1279px) {
  .p-shop__list .shop_list_table thead tr th {
    padding: 0.8em;
  }
}
@media only screen and (min-width: 781px) {
  .p-shop__list .shop_list_table thead tr th:first-child {
    border-left: none;
  }
  .p-shop__list .shop_list_table tbody tr td {
    padding: 1em 1.4em;
    font-size: 0.9375em;
    font-weight: 500;
    letter-spacing: 0.06em;
    vertical-align: top;
    border-left: dashed 1px #D6D6D6;
    border-bottom: solid 1px #D6D6D6;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1279px) {
  .p-shop__list .shop_list_table tbody tr td {
    padding: 1em 0.8em;
  }
}
@media only screen and (min-width: 781px) {
  .p-shop__list .shop_list_table tbody tr td:first-child {
    border-left: none;
  }
  .p-shop__list .shop_list_table tbody tr:nth-child(2n) td {
    background-color: #F7F7F7;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(1), .p-shop__list .shop_list_table tbody tr > *:nth-child(1) {
    width: 19.5%;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(2), .p-shop__list .shop_list_table tbody tr > *:nth-child(2) {
    width: auto;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(3), .p-shop__list .shop_list_table tbody tr > *:nth-child(3) {
    width: 12.5%;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(4), .p-shop__list .shop_list_table tbody tr > *:nth-child(4) {
    width: 12.5%;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(5), .p-shop__list .shop_list_table tbody tr > *:nth-child(5) {
    width: 12.5%;
  }
  .p-shop__list .shop_list_table thead tr > *:nth-child(6), .p-shop__list .shop_list_table tbody tr > *:nth-child(6) {
    width: 10.5%;
  }
}
@media only screen and (max-width: 780px) {
  .p-shop__list .shop_list_table {
    font-size: 0.9375em;
  }
  .p-shop__list .shop_list_table tbody tr {
    padding: 0.5em;
    border-bottom: solid 1px #D6D6D6;
    display: block;
  }
  .p-shop__list .shop_list_table tbody tr td + td {
    margin-top: 0.25em;
  }
  .p-shop__list .shop_list_table tbody tr td:before {
    margin-right: 1em;
    padding: 0.25em 0.5em;
    font-weight: 500;
    letter-spacing: 0.06em;
    background-color: #EBEDE1;
    content: attr(data-th);
  }
  .p-shop__list .shop_list_table tbody tr td .bt-content {
    padding: 0.25em 0;
  }
  .p-shop__list .shop_list_table tbody tr:nth-child(2n) {
    background-color: #F7F7F7;
  }
}
.p-shop__list .btn {
  text-align: center;
}

.p-products__list {
  margin-bottom: 10rem;
}
.p-products__list .inner {
  max-width: 1200px;
}
@media only screen and (min-width: 481px) {
  .p-products__list ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-products__list ul li {
  background-color: #ffffff;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 781px) {
  .p-products__list ul li {
    width: 32%;
    margin: 0 2% 6.5rem 0;
    padding: 2.4rem 2.4rem 9.6rem 2.4rem;
  }
  .p-products__list ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) and (min-width: 481px) {
  .p-products__list ul li {
    width: 49%;
    margin: 0 2% 2rem 0;
    padding: 1rem 1.5rem 6.5rem 1.5rem;
  }
  .p-products__list ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .p-products__list ul li {
    width: 100%;
    padding: 1rem 1.5rem 6.5rem 1.5rem;
    margin-bottom: 2rem;
  }
}
.p-products__list ul li .img {
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-products__list ul li .img {
    margin-bottom: 1em;
    width: 100%;
    padding-top: 20rem;
    overflow: hidden;
    position: relative;
  }
  .p-products__list ul li .img img, .p-products__list ul li .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 780px) {
  .p-products__list ul li .img {
    margin-bottom: 0.5em;
    width: 100%;
    padding-top: 15rem;
    overflow: hidden;
    position: relative;
  }
  .p-products__list ul li .img img, .p-products__list ul li .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-products__list ul li .text h3 {
  margin-bottom: 0.36em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-products__list ul li .text h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__list ul li .text p {
    font-size: 1.4rem;
  }
}
.p-products__list ul li .btn {
  width: 100%;
  position: absolute;
  bottom: 3.2rem;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .p-products__list ul li .btn {
    bottom: 1em;
  }
}
.p-products__list ul li .btn a {
  width: 75%;
  margin: 0 auto;
  padding: 0.5em;
  text-align: center;
  color: #898551;
  background: linear-gradient(to right, #ffffff, #ffffff 50%, #898551 50%, #898551);
  background-size: 200% 100%;
  background-position: 0 0;
  border: solid 1px #D6D5C4;
  display: block;
  border-radius: 0.4rem;
}
@media only screen and (min-width: 781px) {
  .p-products__list ul li .btn a {
    transition: background-position 0.3s ease-in, color 0.3s ease-in;
  }
  .p-products__list ul li .btn a:hover {
    color: #ffffff;
    background-position: -100% 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__list ul li .btn a {
    font-size: 1.4rem;
  }
}
.p-products__detail {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 780px) {
  .p-products__detail {
    margin-bottom: 8rem;
  }
}
.p-products__detail .inner {
  max-width: 1200px;
}
.p-products__detail .item_information {
  margin-bottom: 8rem;
  padding: 6.4rem 0 8.8rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information {
    margin-bottom: 4rem;
    padding: 3.2rem 0;
  }
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .headding {
    margin-bottom: 4.8rem;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .headding {
    margin-bottom: 3rem;
  }
}
.p-products__detail .item_information .headding .img {
  border: solid 0.3rem #D6D5C4;
  border-radius: 1.6rem;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .headding .img {
    width: 40.25%;
    padding-top: 34.4rem;
    overflow: hidden;
    position: relative;
  }
  .p-products__detail .item_information .headding .img img, .p-products__detail .item_information .headding .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .headding .img {
    width: 100%;
    padding-top: 20rem;
    overflow: hidden;
    position: relative;
  }
  .p-products__detail .item_information .headding .img img, .p-products__detail .item_information .headding .img video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .headding .text {
    width: 54.4%;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .headding .text {
    margin-bottom: 3rem;
  }
}
.p-products__detail .item_information .headding .text h2 {
  margin-bottom: 0.85em;
  padding-bottom: 0.5em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: solid 0.3rem #D6D5C4;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .headding .text h2 {
    font-size: 2.4rem;
  }
}
.p-products__detail .item_information .headding .text h2:after {
  width: 5em;
  height: 0.3rem;
  content: "";
  background-color: #70AF0C;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}
.p-products__detail .item_information .headding .text .information_text h3 {
  margin-bottom: 0.8em;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .headding .text .information_text h3 {
    font-size: 1.8rem;
  }
}
.p-products__detail .item_information .headding .text .information_text p {
  font-size: 0.9375em;
  line-height: 1.86;
}
.p-products__detail .item_information .recommend {
  margin-bottom: 2em;
  padding: 7.2rem 4rem 3rem 4rem;
  background-color: #F6F7F2;
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .recommend {
    padding: 5.5rem 2rem 1rem 2rem;
  }
}
.p-products__detail .item_information .recommend dt {
  padding: 0.2em 0.75em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 0 0 0.8rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .recommend dt {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .recommend dd ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.p-products__detail .item_information .recommend dd ul li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  font-weight: 500;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .recommend dd ul li {
    width: 48%;
  }
}
.p-products__detail .item_information .recommend dd ul li:before {
  width: 1em;
  margin-left: -1em;
  content: "・";
  display: inline-block;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-products__detail .item_information .detail dl {
  border: solid 1px #D6D6D6;
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .item_information .detail dl {
    width: 48%;
    padding: 3.2rem 2.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .detail dl {
    padding: 2rem 1.5rem;
  }
  .p-products__detail .item_information .detail dl + dl {
    margin-top: 3rem;
  }
}
.p-products__detail .item_information .detail dl dt {
  margin-bottom: 1.2em;
  padding-left: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  border-left: solid 0.5rem #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .detail dl dt {
    font-size: 1.8rem;
  }
}
.p-products__detail .item_information .detail dl dt span {
  margin-left: 1em;
  font-size: 0.75em;
  font-weight: 400;
  display: inline-block;
  vertical-align: 0.1em;
}
.p-products__detail .item_information .detail dl dd table {
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .item_information .detail dl dd table {
    font-size: 1.4rem;
  }
}
.p-products__detail .item_information .detail dl dd table tbody tr th {
  width: 30%;
  padding: 1em 0;
  font-weight: 700;
  vertical-align: top;
  border-bottom: solid 1px #D6D6D6;
}
.p-products__detail .item_information .detail dl dd table tbody tr td {
  padding: 1em 0 1em 0.5em;
  vertical-align: top;
  border-bottom: solid 1px #D6D6D6;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .ingredients_information ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.p-products__detail .ingredients_information ul li {
  background-color: #FDFDFD;
  display: flex;
  justify-content: space-between;
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-products__detail .ingredients_information ul li {
    width: 48%;
    margin-bottom: 2.4rem;
    padding: 2.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-products__detail .ingredients_information ul li {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
}
.p-products__detail .ingredients_information ul li .img {
  width: 37.5%;
  min-height: 14.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.p-products__detail .ingredients_information ul li .img > img,
.p-products__detail .ingredients_information ul li .img > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .ingredients_information ul li .img {
    min-height: 10rem;
  }
}
.p-products__detail .ingredients_information ul li .text {
  width: 58.1%;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .ingredients_information ul li .text {
    width: 60%;
  }
}
.p-products__detail .ingredients_information ul li .text h3 {
  margin-bottom: 0.4em;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .ingredients_information ul li .text h3 {
    font-size: 1.6rem;
  }
}
.p-products__detail .ingredients_information ul li .text p {
  font-size: 1.5rem;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .ingredients_information ul li .text p {
    font-size: 1.3rem;
  }
}
.p-products__detail .btn {
  margin-top: 8.8rem;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-products__detail .btn {
    margin-top: 4rem;
  }
}

.p-company__rinem .inner {
  max-width: 1200px;
}
.p-company__rinem dl {
  background-color: #ffffff;
  border-radius: 3.2rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl {
    border-radius: 1.6rem;
  }
}
.p-company__rinem dl dt {
  padding: 1em;
  font-size: 1.5em;
  text-align: center;
  color: #ffffff;
  background-color: #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dt {
    font-size: 1em;
  }
}
.p-company__rinem dl dt h3 {
  margin-bottom: 0.17em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.9em;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dt h3 {
    margin-bottom: 0.5em;
    font-size: 1.5em;
  }
}
.p-company__rinem dl dt h3 span {
  padding: 0 0.5em;
  display: inline-block;
  position: relative;
}
.p-company__rinem dl dt h3 span:before, .p-company__rinem dl dt h3 span:after {
  width: 1.08em;
  height: 0.217em;
  margin-top: -0.1085em;
  content: "";
  background-image: url("../img/company/rinen_ttl_fig.png");
  background-size: cover;
  position: absolute;
  top: 50%;
}
.p-company__rinem dl dt h3 span:before {
  right: 100%;
}
.p-company__rinem dl dt h3 span:after {
  left: 100%;
}
.p-company__rinem dl dt p {
  line-height: 1.375;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dt p {
    text-align: left;
  }
}
.p-company__rinem dl dd {
  padding: 2.5em;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dd {
    padding: 1.5em;
  }
}
@media only screen and (min-width: 781px) {
  .p-company__rinem dl dd ul {
    display: flex;
  }
}
.p-company__rinem dl dd ul li {
  text-align: center;
}
@media only screen and (min-width: 781px) {
  .p-company__rinem dl dd ul li {
    width: 33.3333%;
  }
}
.p-company__rinem dl dd ul li h4 {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.625em;
  font-weight: 700;
}
.p-company__rinem dl dd ul li h4 span {
  font-size: 0.69em;
  color: #70AF0C;
  display: block;
}
.p-company__rinem dl dd ul li .fig {
  width: 16rem;
  margin: 1em auto;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dd ul li .fig {
    width: 14rem;
    margin: 0.5em auto;
  }
}
.p-company__rinem dl dd ul li + li {
  border-left: solid 1px #D6D6D6;
}
@media only screen and (max-width: 780px) {
  .p-company__rinem dl dd ul li + li {
    margin-top: 1em;
    padding-top: 1em;
    border-left: none;
    border-top: solid 1px #D6D6D6;
  }
}
.p-company__message {
  padding: 7.3rem 0;
  background-image: url("../img/company/aisatsu_bg.png");
  background-size: 1920px auto;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 780px) {
  .p-company__message {
    padding: 4rem 0;
    background-size: 100% auto;
  }
}
.p-company__message h3 {
  margin-bottom: 0.75em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-company__message h3 {
    font-size: 1.2em;
  }
}
.p-company__message p {
  margin-bottom: 2em;
  line-height: 2.125;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-company__message p {
    text-align: left;
  }
}
.p-company__message p b {
  font-size: 1.25em;
  font-weight: 700;
  color: #70AF0C;
}
.p-company__message .name {
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-company__message .name {
    text-align: right;
  }
}
.p-company__shizenchan {
  padding: 8.8rem 0;
  background-image: url("../img/company/chara_bg.png");
  background-size: 1920px auto;
  background-position: center center;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan {
    padding: 4rem 0;
    background-size: 100% auto;
  }
}
.p-company__shizenchan .inner {
  max-width: 1200px;
}
.p-company__shizenchan .midashi01 {
  margin-bottom: 1.8em;
}
.p-company__shizenchan .box {
  padding: 9.6rem 6.4rem 6.4rem 6.4rem;
  background-color: #ffffff;
  border-radius: 3.2rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box {
    padding: 6rem 2rem 2rem 2rem;
    border-radius: 1.6rem;
  }
}
.p-company__shizenchan .box h3 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.p-company__shizenchan .box h3 span {
  padding: 0.4em 1.48em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #679838;
  border-radius: 99px;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box h3 span {
    font-size: 1.6rem;
  }
}
.p-company__shizenchan .box h3 span:after {
  margin-left: -0.85rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.7rem 1.05rem 0 1.05rem;
  border-color: #70AF0C transparent transparent transparent;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
}
.p-company__shizenchan .box .intro {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 781px) {
  .p-company__shizenchan .box .intro {
    display: flex;
  }
}
@media only screen and (min-width: 781px) {
  .p-company__shizenchan .box .intro .img {
    width: 33.6%;
    margin-right: 4.8rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .intro .img {
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media only screen and (min-width: 781px) {
  .p-company__shizenchan .box .intro .text {
    width: calc(66.4% - 4.8rem);
    max-width: 58rem;
  }
}
.p-company__shizenchan .box .intro .text h4 {
  margin-bottom: 0.92em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .intro .text h4 {
    font-size: 2rem;
  }
}
.p-company__shizenchan .box .intro .text p {
  line-height: 5rem;
  background-image: url("../img/company/note_line.png");
  background-size: 100% 5rem;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .intro .text p {
    line-height: 3rem;
    background-size: 100% 3rem;
  }
}
.p-company__shizenchan .box .prof {
  padding: 2.4rem 2.4rem 2.4rem 24rem;
  background-color: #F7F5E4;
  border-radius: 2.4rem;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof {
    padding: 2rem;
  }
}
.p-company__shizenchan .box .prof .ttl {
  width: 20.7rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #ffffff;
  background-color: #B7B275;
}
@media only screen and (min-width: 781px) {
  .p-company__shizenchan .box .prof .ttl {
    border-radius: 0 2.4rem 2.4rem 0;
    padding: 7.8rem 0.7em 0.7em 0.7em;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof .ttl {
    margin: 0 auto 2rem auto;
    padding: 0 2rem 2rem 2rem;
    border-radius: 1.6rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-company__shizenchan .box .prof .ttl .img {
    width: 88.8%;
    position: absolute;
    top: 0;
    left: 5.6%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof .ttl .img {
    width: 16rem;
    margin: 0 auto 1rem auto;
  }
}
.p-company__shizenchan .box .prof table {
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof table {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof table tbody {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof table tbody tr {
    display: block;
  }
}
.p-company__shizenchan .box .prof table tbody tr th {
  width: 14rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #6F6D4C;
  background-image: url("../img/company/dotted01.png");
  background-repeat: repeat-x;
  background-position: left center;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof table tbody tr th {
    width: auto;
    display: block;
  }
}
.p-company__shizenchan .box .prof table tbody tr th span {
  padding-right: 0.5em;
  background-color: #F7F5E4;
  display: inline-block;
}
.p-company__shizenchan .box .prof table tbody tr td {
  padding: 0.2em 0 0.2em 0.5em;
  font-weight: 500;
  line-height: 1.75;
}
@media only screen and (max-width: 780px) {
  .p-company__shizenchan .box .prof table tbody tr td {
    padding: 0.2em 0;
    display: block;
  }
}
.p-company__profile {
  padding: 9.6rem 0 10.4rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-company__profile {
    padding: 4.8rem 0 5.2rem 0;
  }
}
.p-company__profile .inner {
  max-width: 1000px;
}
.p-company__profile table {
  width: 100%;
  border-top: solid 1px #D6D5C4 !important;
}
.p-company__profile table th, .p-company__profile table td {
  border: none !important;
}
.p-company__profile table tbody tr td {
  padding: 2em 0 !important;
  letter-spacing: 0.06em;
  vertical-align: top;
  border-bottom: solid 1px #D6D5C4 !important;
}
.p-company__profile table tbody tr td:first-child {
  width: 21.6%;
  padding: 1.7em 0;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-company__profile table tbody tr td:first-child {
    width: 33%;
  }
}
.p-company__history {
  padding-bottom: 8.8rem;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-company__history {
    padding-bottom: 5rem;
  }
}
.p-company__history .inner {
  max-width: 1000px;
}
.p-company__history ul {
  letter-spacing: 0.06em;
}
.p-company__history ul li {
  display: flex;
}
.p-company__history ul li .date {
  width: 17.5rem;
  padding-top: 1.35rem;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-company__history ul li .date {
    width: 11rem;
  }
}
.p-company__history ul li .content {
  width: calc(100% - 17.5rem);
  padding: 1.5rem 0 1.5rem 4rem;
  border-left: solid 1px #D6D5C4;
}
@media only screen and (max-width: 780px) {
  .p-company__history ul li .content {
    width: calc(100% - 11rem);
    padding-left: 2rem;
  }
}
.p-company__history ul li .content p {
  position: relative;
}
.p-company__history ul li .content p:before {
  width: 0.5em;
  height: 0.5em;
  content: "";
  background-color: #70AF0C;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -4rem;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 780px) {
  .p-company__history ul li .content p:before {
    left: -2rem;
  }
}
.p-company__history ul li .content .img {
  margin-top: 1em;
}
.p-company__access {
  margin-bottom: 12.6rem;
  padding: 8.8rem 0;
  background-color: #EBEDE1;
}
@media only screen and (max-width: 780px) {
  .p-company__access {
    margin-bottom: 8rem;
    padding: 4rem 0;
  }
}
.p-company__access .inner {
  max-width: 1000px;
}
@media only screen and (min-width: 781px) {
  .p-company__access .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 781px) {
  .p-company__access .text {
    width: 45.7%;
  }
}
@media only screen and (max-width: 780px) {
  .p-company__access .text {
    margin-bottom: 3rem;
  }
}
.p-company__access .text .company_name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-company__access .text address {
  margin-top: 1em;
  letter-spacing: 0.06em;
}
.p-company__access .text .time {
  margin-top: 0.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-company__access .text .access_text {
  margin-top: 1.5em;
  padding: 0.56em;
  background-color: #ffffff;
  border-radius: 0.8rem;
}
@media only screen and (max-width: 780px) {
  .p-company__access .text .access_text {
    text-align: center;
  }
}
.p-company__access .text .access_text span {
  margin-right: 1em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 700;
  color: #70AF0C;
  display: inline-block;
}
@media only screen and (max-width: 780px) {
  .p-company__access .text .access_text span {
    display: block;
  }
}
.p-company__access .text .tel {
  margin-top: 1.5em;
  padding: 1em;
  text-align: center;
  background-color: #F4F5ED;
  border: solid 1px #70AF0C;
}
.p-company__access .text .tel p {
  font-weight: 500;
  letter-spacing: 0.06em;
}
.p-company__access .text .tel a {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8em;
  font-weight: 700;
  display: inline-block;
}
.p-company__access .text .tel a:before {
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_tel01.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.1em;
}
@media only screen and (min-width: 781px) {
  .p-company__access .map {
    width: 47.1%;
  }
}
@media only screen and (max-width: 780px) {
  .p-company__access .map {
    width: 100%;
    height: 20rem;
  }
}
.p-company__access .map iframe {
  width: 100%;
  height: 100%;
}

.p-oem__tsuyomi {
  margin-bottom: 8rem;
  padding: 8rem 0 8.8rem 0;
  background-color: #EBEDE1;
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi {
    margin-bottom: 4rem;
    padding: 4.4rem 0;
  }
}
.p-oem__tsuyomi .inner {
  max-width: 1160px;
}
.p-oem__tsuyomi .midashi01 small {
  font-size: 0.72em;
  display: block;
}
.p-oem__tsuyomi ol li {
  margin-bottom: 2em;
  background-color: #ffffff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  border-radius: 2.4rem;
}
@media only screen and (min-width: 781px) {
  .p-oem__tsuyomi ol li {
    padding: 2.4rem 3.2rem;
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi ol li {
    padding: 2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-oem__tsuyomi ol li:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.p-oem__tsuyomi ol li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 781px) {
  .p-oem__tsuyomi ol li .img {
    width: 38.7%;
  }
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi ol li .img {
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-oem__tsuyomi ol li .text {
    width: 57.6%;
    padding-top: 1rem;
  }
}
.p-oem__tsuyomi ol li .text h3 {
  margin-bottom: 1em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi ol li .text h3 {
    font-size: 1.6rem;
  }
}
.p-oem__tsuyomi ol li .text h3 span {
  width: 1.3em;
  height: 1.3em;
  margin-left: 0.5em;
  font-size: 1.3em;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0;
}
.p-oem__tsuyomi ol li .text h4 {
  margin-bottom: 0.5em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi ol li .text h4 {
    font-size: 1.5em;
  }
}
.p-oem__tsuyomi ol li .text h4 b {
  font-weight: 700;
  color: #70AF0C;
}
.p-oem__tsuyomi ol li .text p {
  line-height: 1.75;
}
.p-oem__tsuyomi ol li .text p b {
  font-weight: 700;
  color: #70AF0C;
}
.p-oem__tsuyomi ol li .text .annotation {
  margin-top: 1.5em;
  padding: 2.5em 1em 1em 1em;
  background-color: #F7F5E4;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 780px) {
  .p-oem__tsuyomi ol li .text .annotation {
    font-size: 1.4rem;
  }
}
.p-oem__tsuyomi ol li .text .annotation span {
  padding: 0.1em 0.5em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #ffffff;
  background-color: #B7B275;
  border-radius: 0 0 0.8rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-oem__flow {
  margin-bottom: 9.6rem;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow {
    margin-bottom: 4.8rem;
  }
}
.p-oem__flow .inner {
  max-width: 1200px;
}
.p-oem__flow .midashi01 + p {
  margin-bottom: 2.125em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2em;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow .midashi01 + p {
    margin-bottom: 1.5em;
    font-size: 1.25em;
  }
}
.p-oem__flow ol {
  display: flex;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol {
    width: 111%;
    margin: 0 -5.5%;
    flex-wrap: wrap;
  }
}
.p-oem__flow ol li {
  background-color: #ffffff;
  position: relative;
}
@media only screen and (min-width: 781px) {
  .p-oem__flow ol li {
    width: 25%;
    padding: 4.4rem 1em 1em 1em;
  }
  .p-oem__flow ol li:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.8rem 0 0.8rem 1.6rem;
    border-color: transparent transparent transparent #70AF0C;
    content: "";
    position: absolute;
    top: 6rem;
    left: 100%;
    z-index: 10;
  }
  .p-oem__flow ol li:nth-child(2n) {
    background-color: #F1F4E7;
  }
  .p-oem__flow ol li:last-child:after {
    content: none;
  }
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol li {
    width: 50%;
    padding: 2rem 1rem;
  }
  .p-oem__flow ol li:nth-child(4n+2), .p-oem__flow ol li:nth-child(4n+3) {
    background-color: #F1F4E7;
  }
}
.p-oem__flow ol li .num {
  position: absolute;
}
@media only screen and (min-width: 781px) {
  .p-oem__flow ol li .num {
    width: 5.6rem;
    margin-left: -2.8rem;
    top: -2.8rem;
    left: 50%;
  }
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol li .num {
    width: 2.8rem;
    top: 2rem;
    left: 1rem;
  }
}
.p-oem__flow ol li .fig {
  width: 8rem;
  margin: 0 auto 0.5em auto;
}
.p-oem__flow ol li .text h3 {
  margin-bottom: 0.3em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol li .text h3 {
    font-size: 1.8rem;
  }
}
.p-oem__flow ol li .text h3 small {
  font-size: 0.72em;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol li .text p {
    font-size: 1.3rem;
  }
}
.p-oem__flow ol li .text a {
  margin-top: 0.5em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 780px) {
  .p-oem__flow ol li .text a {
    font-size: 1.3rem;
  }
}
.p-oem__flow ol li .text a:hover {
  text-decoration: underline;
}
.p-oem__flow ol li .text a:after {
  width: 0.88em;
  height: 0.88em;
  margin-left: 0.5em;
  content: "";
  background-image: url("../img/icon_arrow01.png");
  background-size: cover;
  display: inline-block;
  vertical-align: -0.1em;
}
.p-oem__faq {
  margin-bottom: 12.6rem;
  padding: 8.8rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-oem__faq {
    margin-bottom: 8rem;
    padding: 4.4rem 0;
  }
}
.p-oem__faq .inner {
  max-width: 1000px;
}
.p-oem__faq .midashi01 {
  margin-bottom: 1.1em;
}
.p-oem__faq ul li {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: solid 1px #D6D5C4;
}
@media only screen and (max-width: 780px) {
  .p-oem__faq ul li {
    font-size: 1.4rem;
  }
}
.p-oem__faq ul li .faq_q {
  margin-bottom: 0.88em;
  padding: 0.88em 1em 0.88em 3.88em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #F6F7F2;
  background-image: url("../img/oem/faq_q.png");
  background-size: 2.16em auto;
  background-repeat: no-repeat;
  background-position: 0.88em center;
  border-radius: 99px;
}
.p-oem__faq ul li .faq_a {
  padding: 0.4em 0 0 4.2em;
  background-image: url("../img/oem/faq_a.png");
  background-size: 2.16em auto;
  background-repeat: no-repeat;
  background-position: 0.88em 0;
}
.p-oem__faq ul li .faq_a dt {
  margin-bottom: 0.5em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-oem__faq ul li .faq_a dd {
  font-size: 0.9375em;
  line-height: 1.66;
  color: #434343;
}

.p-ingredients__intro {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__intro {
    margin-bottom: 3rem;
  }
}
.p-ingredients__intro p {
  line-height: 2.125;
  text-align: center;
}
.p-ingredients__intro p b {
  font-size: 1.25em;
  font-weight: 700;
  color: #70AF0C;
}
.p-ingredients__kodawari {
  padding: 8rem 0 6.4rem 0;
  background-color: #EBEDE1;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari {
    padding: 4rem 0;
  }
}
.p-ingredients__kodawari .inner {
  max-width: 1200px;
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kodawari ol {
    padding-top: 12rem;
    display: flex;
    justify-content: space-between;
  }
}
.p-ingredients__kodawari ol li {
  background-color: #ffffff;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kodawari ol li {
    position: relative;
    width: 48.3%;
    padding: 14.5rem 2em 2em 2em;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li {
    padding: 1.5em 1em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kodawari ol li .img {
    width: 45%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -45%);
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li .img {
    width: 35%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li .text {
    width: 60%;
  }
}
.p-ingredients__kodawari ol li .text h3 {
  margin-bottom: 0.6em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li .text h3 {
    font-size: 1.8rem;
    text-align: left;
  }
}
.p-ingredients__kodawari ol li .text p {
  line-height: 1.875;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kodawari ol li .text p {
    font-size: 1.4rem;
  }
}
.p-ingredients__kodawari ol li .text p b {
  font-weight: 500;
  color: #70AF0C;
}
@media only screen and (min-width: 781px) {
  .p-ingredients__hinshitsu {
    padding: 7.2rem 0 9.6rem 0;
    background-image: url("../img/ingredients/products_bg.png");
    background-size: cover;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__hinshitsu {
    padding: 3.6rem 0 35.2vw 0;
    position: relative;
  }
  .p-ingredients__hinshitsu:after {
    width: 90.7vw;
    height: 31.9vw;
    margin-top: -15.95vw;
    content: "";
    background-image: url("../img/ingredients/products_bg_sp.png");
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 4.65vw;
  }
}
.p-ingredients__hinshitsu .box {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  border-radius: 1.6rem;
}
@media only screen and (min-width: 781px) {
  .p-ingredients__hinshitsu .box {
    margin: 10rem -10rem 0 auto;
    padding: 6.4rem 5.6rem 6.4rem 39.5rem;
    position: relative;
  }
}
@media only screen and (min-width: 781px) and (max-width: 1099px) {
  .p-ingredients__hinshitsu .box {
    padding-left: 36.5rem;
    padding-right: 6.4rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__hinshitsu .box {
    margin-top: 3rem;
    padding: 2em 1em;
  }
}
@media only screen and (min-width: 781px) {
  .p-ingredients__hinshitsu .box .img {
    width: 43.9rem;
    position: absolute;
    top: -4rem;
    left: -10rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__hinshitsu .box .img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.p-ingredients__hinshitsu .box .text h3 {
  margin-bottom: 0.92em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.27;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__hinshitsu .box .text h3 {
    font-size: 2rem;
  }
}
.p-ingredients__hinshitsu .box .text p {
  line-height: 2;
}
.p-ingredients__hinshitsu .box .text p b {
  font-weight: 500;
  color: #70AF0C;
}
.p-ingredients__kaihatsu {
  padding: 8.8rem 0;
  background-color: #FDFDFD;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kaihatsu {
    padding: 4.4rem 0;
  }
}
.p-ingredients__kaihatsu .inner {
  max-width: 1160px;
}
.p-ingredients__kaihatsu ol {
  margin-top: 5rem;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kaihatsu ol {
    margin-top: 3rem;
  }
}
.p-ingredients__kaihatsu ol li {
  margin-bottom: 2.4rem;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  border-radius: 2.4rem;
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kaihatsu ol li {
    padding: 4rem;
    display: flex;
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kaihatsu ol li {
    padding: 2rem;
  }
}
.p-ingredients__kaihatsu ol li:last-child {
  margin-bottom: 0;
}
.p-ingredients__kaihatsu ol li .img {
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-ingredients__kaihatsu ol li .img > img,
.p-ingredients__kaihatsu ol li .img > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kaihatsu ol li .img {
    width: 38.1%;
    margin-left: 3.8%;
  }
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kaihatsu ol li .img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-ingredients__kaihatsu ol li .text {
    width: 58.1%;
  }
}
.p-ingredients__kaihatsu ol li .text h3 {
  margin-bottom: 0.8em;
  padding-bottom: 0.8em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.25;
  border-bottom: solid 1px #70AF0C;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__kaihatsu ol li .text h3 {
    font-size: 2rem;
  }
}
.p-ingredients__kaihatsu ol li .text h3 span {
  width: 7.5rem;
  font-size: 1.65em;
  text-align: center;
  color: #70AF0C;
}
.p-ingredients__kaihatsu ol li .text p {
  line-height: 1.75;
}
.p-ingredients__kaihatsu ol li .text p b {
  font-weight: 500;
  color: #70AF0C;
}
.p-ingredients__more {
  padding: 8.8rem 0 12.6rem 0;
}
@media only screen and (max-width: 780px) {
  .p-ingredients__more {
    padding: 4.4rem 0 8rem 0;
  }
}
.p-ingredients__more p {
  line-height: 2.125;
  text-align: center;
}

.p-contact__content {
  margin-bottom: 7.6rem;
}
@media only screen and (max-width: 780px) {
  .p-contact__content {
    margin-bottom: 4rem;
  }
}
.p-contact__content .inner {
  max-width: 1200px;
}
.p-contact__content .intro {
  max-width: 1080px;
  margin: 0 auto 2.5em auto;
  line-height: 2.125;
  text-align: center;
}
.p-contact__content .attention {
  max-width: 1000px;
  margin: 0 auto 6.4rem auto;
  padding: 2.5em;
  text-align: center;
  color: #696427;
  background-color: #F4F5ED;
  border: solid 1px #D6D5C4;
}
@media only screen and (max-width: 780px) {
  .p-contact__content .attention {
    margin-bottom: 4rem;
    padding: 2rem;
  }
}
.p-contact__content .form_area .wrap {
  margin-bottom: 6.3rem;
  padding: 7.2rem 0;
  background-color: #ffffff;
  border-radius: 2.4rem;
}
@media only screen and (max-width: 780px) {
  .p-contact__content .form_area .wrap {
    margin-bottom: 4rem;
    padding: 3.6rem 0;
  }
}
.p-contact__content .form_area .input_field_area {
  width: 90%;
  margin: 0 auto 5rem auto;
}
@media only screen and (max-width: 780px) {
  .p-contact__content .form_area .input_field_area {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 781px) {
  .p-contact__content .form_area .input_field_area.table .input_field {
    width: 100%;
    margin-bottom: 0;
    display: table;
  }
  .p-contact__content .form_area .input_field_area.table .input_field > * {
    display: table-cell;
  }
  .p-contact__content .form_area .input_field_area.table .input_field .input_label {
    width: 30%;
    margin-bottom: 0;
    padding: 1em;
    vertical-align: top;
  }
  .p-contact__content .form_area .input_field_area.table .input_field .input_area {
    padding: 1em;
    vertical-align: top;
  }
}
.p-contact__content .form_area .input_field_area .input_field {
  margin-bottom: 2em;
}
.p-contact__content .form_area .input_field_area .input_field .input_label {
  margin-bottom: 0.75em;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
.p-contact__content .form_area .input_field_area .input_field .input_label span {
  margin-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75em;
  font-weight: 500;
  color: #E26306;
  display: inline-block;
  vertical-align: 0;
}
.p-contact__content .form_area .input_field_area .input_field .input_label span.ninni {
  color: #B4B4B4;
}
.p-contact__content .form_area .input_field_area .input_field .input_area.row {
  display: flex;
  justify-content: space-between;
}
.p-contact__content .form_area .input_field_area .input_field .input_area.row .col {
  width: 48%;
}
.p-contact__content .form_area .input_field_area .input_field .input_area.row .col .label {
  margin-bottom: 0.5em;
  font-weight: 500;
}
.p-contact__content .form_area .input_field_area .input_field .input_area .annotation {
  margin-bottom: 1em;
  font-weight: 500;
}
.p-contact__content .form_area .input_field_area .input_field .input_area .file + .file {
  margin-top: 0.5em;
}
.p-contact__content .form_area .privacy {
  width: 90%;
  margin: 0 auto;
  padding-top: 5rem;
  border-top: dashed 1px #D6D6D6;
}
.p-contact__content .form_area .privacy > p {
  margin-bottom: 2em;
  font-weight: 500;
  text-align: center;
}
.p-contact__content .form_area .privacy .box {
  height: 24rem;
  margin-bottom: 3.2rem;
  padding: 1em;
  border: solid 1px #D6D5C4;
}
@media only screen and (max-width: 780px) {
  .p-contact__content .form_area .privacy .box {
    height: 14rem;
  }
}
.p-contact__content .form_area .privacy .box .scroll {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  overflow: auto;
}
.p-contact__content .form_area .privacy .box h3 {
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .p-contact__content .form_area .privacy .box h3 {
    font-size: 1.6rem;
  }
}
.p-contact__content .form_area .privacy .box h4 {
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-contact__content .form_area .privacy .box p {
  margin-bottom: 2em;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.p-contact__content .form_area .privacy .check {
  text-align: center;
}
.p-contact__content .form_area .submit {
  text-align: center;
}
.p-contact__content .form_area .submit .btn01 {
  height: 5.6rem;
}
.p-contact__content .form_area .submit .btn01 input[type=submit] {
  width: 100%;
  height: calc(100% + 0.5rem);
  padding-bottom: 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p-news__list {
  margin-bottom: 19.8rem;
}
@media only screen and (max-width: 780px) {
  .p-news__list {
    margin-bottom: 10rem;
  }
}
.p-news__list .inner {
  max-width: 1200px;
}
.p-news__list .cate_list {
  margin-bottom: 1em;
  letter-spacing: -0.4em;
}
.p-news__list .cate_list > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-news__list .cate_list li {
  margin: 0 0.88em 0.88em 0;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 780px) {
  .p-news__list .cate_list li {
    font-size: 1.6rem;
  }
}
.p-news__list .cate_list li a {
  padding: 0.1em 1em;
  color: #70AF0C;
  background-color: #ffffff;
  border: solid 0.2rem #70AF0C;
  border-radius: 99px;
  display: block;
}
.p-news__list .cate_list li.current a {
  color: #ffffff;
  background-color: #70AF0C;
  pointer-events: none;
}
@media only screen and (min-width: 781px) {
  .p-news__list .cate_list li:not(.current) a:hover {
    color: #ffffff;
    background-color: #D6D5C4;
  }
}
.p-news__list .children_cate {
  margin-bottom: 2em;
  padding: 2em 2em 1.2em 2em;
  background-color: #ffffff;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  border-radius: 1.6rem;
  letter-spacing: -0.4em;
}
.p-news__list .children_cate > * {
  display: inline-block;
  letter-spacing: normal;
}
@media only screen and (max-width: 780px) {
  .p-news__list .children_cate {
    font-size: 1.4rem;
  }
}
.p-news__list .children_cate a {
  margin: 0 0.88em 0.88em 0;
  font-weight: 500;
}
.p-news__list .children_cate a.current {
  color: #70AF0C;
}
@media only screen and (min-width: 781px) {
  .p-news__list .children_cate a:not(.current):hover {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list {
    margin-bottom: 3rem;
  }
}
.p-news__list .news_list li {
  background-color: #ffffff;
  border-radius: 1.6rem;
  box-shadow: 0 0.3rem 0.3rem rgba(94, 106, 84, 0.15);
  overflow: hidden;
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list li {
    width: 32%;
    margin: 0 2% 3.3rem 0;
  }
  .p-news__list .news_list li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li {
    margin-bottom: 2rem;
  }
}
.p-news__list .news_list li a {
  display: block;
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list li a {
    padding: 2.4rem;
  }
  .p-news__list .news_list li a:hover .icatch {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li a {
    padding: 1.6rem;
  }
}
.p-news__list .news_list li .icatch {
  margin-bottom: 1em;
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-news__list .news_list li .icatch {
    width: 100%;
    padding-top: 20rem;
    overflow: hidden;
    position: relative;
  }
  .p-news__list .news_list li .icatch img, .p-news__list .news_list li .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-news__list .news_list li .icatch {
    transition: transform 0.3s;
  }
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li .icatch {
    width: 100%;
    padding-top: 19rem;
    overflow: hidden;
    position: relative;
  }
  .p-news__list .news_list li .icatch img, .p-news__list .news_list li .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-news__list .news_list li .icatch img {
  opacity: 1 !important;
}
.p-news__list .news_list li .text p {
  margin-bottom: 0.4em;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li .text p {
    font-size: 1.8rem;
  }
}
.p-news__list .news_list li .text .meta {
  display: flex;
  align-items: center;
}
.p-news__list .news_list li .text .meta .cate {
  letter-spacing: -0.4em;
}
.p-news__list .news_list li .text .meta .cate > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-news__list .news_list li .text .meta .cate span {
  margin: 0 1.3em 0 0;
  padding: 0.2em 1.3em;
  font-size: 1.2rem;
  font-weight: 500;
  color: #70AF0C;
  border: solid 1px #70AF0C;
  border-radius: 99px;
}
.p-news__list .news_list li .text .meta .date {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #70AF0C;
}
@media only screen and (max-width: 780px) {
  .p-news__list .news_list li .text .meta .date {
    font-size: 1.4rem;
  }
}
.p-news__post {
  margin-bottom: 19.8rem;
}
@media only screen and (max-width: 780px) {
  .p-news__post {
    margin-bottom: 10rem;
  }
}
.p-news__post .inner {
  max-width: 1000px;
}
.p-news__post .headding {
  margin-bottom: 4.8rem;
  padding-bottom: 2.4rem;
  border-bottom: solid 1px #D6D5C4;
}
.p-news__post .headding .cate {
  margin-bottom: 0.5em;
  letter-spacing: -0.4em;
}
.p-news__post .headding .cate > * {
  display: inline-block;
  letter-spacing: normal;
}
@media only screen and (max-width: 780px) {
  .p-news__post .headding .cate {
    font-size: 1.4rem;
  }
}
.p-news__post .headding .cate span {
  padding: 0.1em 1em;
  font-weight: 500;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 99px;
}
.p-news__post .headding h2 {
  margin-bottom: 0.53em;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.21;
}
@media only screen and (max-width: 780px) {
  .p-news__post .headding h2 {
    font-size: 2.2rem;
  }
}
.p-news__post .headding .date {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  letter-spacing: -0.4em;
}
.p-news__post .headding .date > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-news__post .headding .date span:before {
  width: 1.14em;
  height: 1.14em;
  margin-right: 0.5em;
  content: "";
  background-size: cover;
  display: inline-block;
  vertical-align: -0.2em;
}
.p-news__post .headding .date span.post_date:before {
  background-image: url("../img/news/post_date.png");
}
.p-news__post .headding .date span.update_post {
  margin-left: 2.5em;
}
.p-news__post .headding .date span.update_post:before {
  background-image: url("../img/news/update_post.png");
}
.p-news__post .icatch {
  margin-bottom: 2em;
  border-radius: 0.8rem;
}
@media only screen and (min-width: 781px) {
  .p-news__post .icatch {
    width: 100%;
    padding-top: 30rem;
    overflow: hidden;
    position: relative;
  }
  .p-news__post .icatch img, .p-news__post .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 780px) {
  .p-news__post .icatch {
    width: 100%;
    padding-top: 15rem;
    overflow: hidden;
    position: relative;
  }
  .p-news__post .icatch img, .p-news__post .icatch video {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-news__post .post-navigation {
  margin-top: 8.8rem;
  padding-top: 5.6rem;
  border-top: solid 1px #D6D5C4;
}

.p-member__login {
  margin-bottom: 19.8rem;
}
@media only screen and (max-width: 780px) {
  .p-member__login {
    margin-bottom: 10rem;
  }
}
.p-member__login .inner {
  max-width: 1000px;
}
.p-member__login .link {
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: -0.4em;
}
.p-member__login .link > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-member__login .link li {
  margin: 0 1em;
}
.p-member__login .link li a {
  padding: 0.5em 2em;
  font-weight: 500;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  display: block;
}
.p-member__login .link li a:hover {
  background-color: #D6D5C4;
}
.p-member__login .link li.current a {
  color: #ffffff !important;
  background-color: #70AF0C !important;
  pointer-events: none;
}
.p-member__login .wp-block-post-title, .p-member__login .swpm-join-us-link {
  display: none;
}
.p-member__login .swpm-username-label, .p-member__login swpm-password-label {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.p-member__login .swpm-username-input, .p-member__login .swpm-password-input {
  margin-bottom: 1em;
}
.p-member__login .swpm-username-input input, .p-member__login .swpm-password-input input {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
}
.p-member__login .swpm-remember-me .swpm-remember-checkbox input {
  -webkit-appearance: checkbox;
  -moz-appearance: auto;
  appearance: auto;
  all: revert;
}
.p-member__login .swpm-login-submit {
  text-align: center;
}
.p-member__login .swpm-login-submit input {
  padding: 0.5em 3em;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 99px;
}
.p-member__login .swpm-login-submit input:hover {
  opacity: 0.6;
}
.p-member__login .swpm-forgot-pass-link {
  margin-top: 4em;
  text-align: right;
}
.p-member__login .swpm-forgot-pass-link a {
  font-size: 1.4rem;
  text-decoration: underline;
}
.p-member__reset {
  margin-bottom: 19.8rem;
}
@media only screen and (max-width: 780px) {
  .p-member__reset {
    margin-bottom: 10rem;
  }
}
.p-member__reset .inner {
  max-width: 1000px;
}
.p-member__reset .wp-block-post-title {
  display: none;
}
.p-member__reset .swpm-pw-reset-widget-inside label {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.p-member__reset .swpm-pw-reset-widget-inside .swpm-pw-reset-email-input {
  margin-bottom: 1em;
}
.p-member__reset .swpm-pw-reset-widget-inside .swpm-pw-reset-email-input input {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
}
.p-member__reset .swpm-pw-reset-widget-inside .swpm-pw-reset-submit-button {
  text-align: center;
}
.p-member__reset .swpm-pw-reset-widget-inside .swpm-pw-reset-submit-button input {
  padding: 0.5em 3em;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 99px;
}
.p-member__reset .swpm-pw-reset-widget-inside .swpm-pw-reset-submit-button input:hover {
  opacity: 0.6;
}
.p-member__regist {
  margin-bottom: 19.8rem;
}
@media only screen and (max-width: 780px) {
  .p-member__regist {
    margin-bottom: 10rem;
  }
}
.p-member__regist .inner {
  max-width: 1000px;
}
.p-member__regist .link {
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: -0.4em;
}
.p-member__regist .link > * {
  display: inline-block;
  letter-spacing: normal;
}
.p-member__regist .link li {
  margin: 0 1em;
}
.p-member__regist .link li a {
  padding: 0.5em 2em;
  font-weight: 500;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
  display: block;
}
.p-member__regist .link li a:hover {
  background-color: #D6D5C4;
}
.p-member__regist .link li.current a {
  color: #ffffff !important;
  background-color: #70AF0C !important;
  pointer-events: none;
}
.p-member__regist .wp-block-post-title {
  display: none;
}
.p-member__regist .swpm-form-builder-container .swpm-form-builder fieldset {
  background: none;
  border: none;
}
.p-member__regist .swpm-form-builder-container .swpm-form-builder .swpm-text {
  width: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: solid 1px #D6D5C4;
}
.p-member__regist .swpm-edit-profile-submit-section {
  text-align: center;
}
.p-member__regist .swpm-edit-profile-submit-section input[type=submit].swpm-submit {
  padding: 0.5em 3em;
  color: #ffffff;
  background-color: #70AF0C;
  border-radius: 99px;
}
.p-member__regist .swpm-edit-profile-submit-section input[type=submit].swpm-submit:hover {
  opacity: 0.6;
}
.p-member__regist #item-swpm-4 {
  display: none;
}

/****************************************************
 * 6.装飾
 ****************************************************/
.underline {
  text-decoration: underline;
}

.bold {
  font-weight: 700;
}

/****************************************************
 * 7.印刷用調整
 ****************************************************/
@media print {
  @page {
    /* A4縦サイズ */
    size: 210mm 297mm;
  }
  html {
    font-size: 10pt !important;
  }
  body {
    margin: 0 !important;
    padding: 0 !important;
  }
  * {
    -webkit-print-color-adjust: exact;
  }
  .container {
    padding: 0 !important;
  }
  #header {
    position: static !important;
  }
  img {
    display: block !important;
  }
}