@charset "UTF-8";
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .header_sp {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .header_pc {
    display: none !important;
  }
}
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
	 # General elements
	 # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

/* # =================================================================
	 # Forms
	 # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
	 # Specify media element style
	 # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
	 # Accessibility
	 # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

body {
  color: #000000;
  font-size: 16px;
  font-family: "Yu Mincho", "游明朝", serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
  }
}

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

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

caption,
th,
td {
  text-align: left;
}

ul,
ol {
  list-style: none;
}

em,
address {
  font-style: normal;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

/*layout*/
.l-wrapper {
  width: 100%;
}

.l-header {
  height: 55px;
  background-color: rgba(51, 51, 51, 0.5019607843);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.l-header__sticky {
  width: 100%;
  height: 55px;
  background-color: rgba(51, 51, 51, 0.5019607843);
  display: flex;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  z-index: 20;
}
.l-header__logo {
  position: absolute;
  top: 18px;
  left: 30px;
  z-index: 10;
  line-height: 1;
}
.l-header__logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.l-header__tagline {
  margin-left: 320px;
  align-items: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-header__tagline {
    margin-left: 160px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 374px) {
  .l-header__tagline {
    margin-left: 118px;
  }
}

/*top用*/
.top .l-header {
  height: 0;
  z-index: 100;
}

.top .l-header.active {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.l-header_nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.l-header__sns {
  display: flex;
  gap: 13px;
  margin-left: 24px;
  margin-right: 18px;
  justify-content: flex-end;
}
.l-header__sns img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  .l-header__sns {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    margin: 12px 26px 0 auto;
    justify-content: flex-end;
  }
}

.l-category_nav {
  width: 100%;
}

.l-footer {
  background: url(../images/replace/footer_bg.png) no-repeat;
  background-size: cover;
  padding: 64px 0 36px;
}
@media screen and (max-width: 1024px) {
  .l-footer {
    padding: 47px 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 38px 0 31px;
  }
}
.l-footer__wrapper {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .l-footer__wrapper {
    display: block;
    width: 688px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__wrapper {
    width: 100%;
    display: block;
    padding: 0 25px;
  }
}
.l-footer__content {
  width: 1000px;
  margin: 0 auto 47px;
}
@media screen and (max-width: 1024px) {
  .l-footer__content {
    width: auto;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    width: auto;
    margin: auto;
  }
}
.l-footer__content .p-sns_area {
  display: flex;
  width: 190px;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .l-footer__content .p-sns_area {
    margin: 20px auto 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__content .p-sns_area {
    margin: 20px auto 0 auto;
  }
}
.l-footer__content .p-sns_area svg {
  width: 34px;
  height: 34px;
}
.l-footer__content .footer_nav {
  margin-top: 20px;
  margin-left: -15px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
.l-footer__content .footer_nav ul {
  display: flex;
  gap: 0 20px;
  font-size: 14px;
  line-height: 31px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .l-footer__content .footer_nav ul {
    justify-content: center;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__content .footer_nav ul {
    justify-content: center;
    gap: 0;
  }
}
.l-footer__content .footer_nav ul li {
  padding: 0 16px;
  position: relative;
}
.l-footer__content .footer_nav ul li + li:before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1px;
  background-color: #333333; /* 縦棒の色 */
}
@media screen and (max-width: 767px) {
  .l-footer__content .footer_nav ul li + li:before {
    right: 0;
  }
}
.l-footer__content .footer_nav ul li:first-child::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 1em;
  width: 1px;
  background-color: #333333; /* 縦棒の色 */
}
@media screen and (max-width: 767px) {
  .l-footer__content .footer_nav ul li:first-child::before {
    right: 0;
  }
}
.l-footer__links {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .l-footer__links {
    justify-content: center;
    flex-direction: row;
    gap: 22px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__links {
    justify-content: center;
    flex-direction: column;
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
  }
}
.l-footer__links li {
  background-color: #fff;
  color: #937c3c;
  line-height: 47px;
  width: 188px;
  text-align: center;
}
.l-footer__links li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.l-footer__links li a:hover {
  opacity: 0.7;
}
.l-footer__copyright {
  display: block;
  text-align: center;
  color: #333;
  font-size: 12px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 1024px) {
  .l-footer__copyright {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 20px;
  }
}

/*button*/
.c-menu_button {
  width: 108px;
  padding: 10px;
  background-color: #f0edd9;
}

.c-more_button {
  width: 120px;
  height: 120px;
  display: block;
  margin: auto;
  padding-top: 40px;
  border-radius: 50%;
  font-size: 13px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-more_button {
    font-size: 11px;
    padding-top: 18px;
  }
}
.c-more_button--white {
  background-color: #fff;
  color: #5f5623;
  transition: 0.2s;
}
.c-more_button--white:hover {
  background-color: #d19e2c;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .c-more_button--white {
    border: 1px solid #5f5623;
  }
}
.c-more_button--orange {
  background-color: #fff;
  color: #a21010;
  transition: 0.2s;
}
.c-more_button--orange:hover {
  background-color: #a21010;
  color: #fff;
  transition: #5f5623;
}
.c-more_button--green {
  background-color: #fff;
  color: #5f5623;
  transition: 0.2s;
}
.c-more_button--green:hover {
  background-color: #5f5623;
  color: #fff;
  transition: 0.2s;
}
.c-more_button--yellow {
  background-color: #fff;
  color: #d19e2c;
  transition: 0.2s;
  border: 1px solid #d19e2c;
}
.c-more_button--yellow:hover {
  background-color: #d19e2c;
  color: #fff;
  transition: 0.2s;
}

a.c-more_button--white {
  color: #5f5623;
}

a.c-more_button--orange {
  color: #a21010;
}

a.c-more_button--green {
  color: #5f5623;
}

a.c-more_button--yellow {
  color: #d19e2c;
}

/*c-logo*/
.c-logo {
  width: 160px;
  height: 19px;
}
.c-logo__img {
  width: 100%;
  height: 100%;
}

/*tagline*/
.c-tagline {
  font-size: 13px;
  color: #ccbd6b;
}
@media screen and (max-width: 767px) {
  .c-tagline {
    font-size: 10px;
    width: calc(100% - 160px);
  }
}

/*c-title*/
.c-title {
  font-size: 30px;
  font-weight: bold;
}
.c-title.black {
  color: #000;
}
.c-title.white {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .c-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 26px;
  }
}

/*subtitle*/
.c-subtitle {
  color: #b1b1b1;
  font-size: 14px;
  position: relative;
  padding-left: 60px;
  letter-spacing: 1.4px;
  display: inline-block;
}
.c-subtitle.black {
  color: #000;
}
.c-subtitle.white {
  color: #fff;
}
.c-subtitle.gray {
  color: #b1b1b1;
}
@media screen and (max-width: 1024px) {
  .c-subtitle {
    font-size: 12px;
    padding-left: 46px;
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 767px) {
  .c-subtitle {
    font-size: 10px;
    padding-left: 44px;
    letter-spacing: 2.6px;
  }
}
.c-subtitle::before {
  content: "";
  height: 1px;
  width: 50px;
  background: #b1b1b1;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .c-subtitle::before {
    width: 34px;
  }
}
@media screen and (max-width: 767px) {
  .c-subtitle::before {
    width: 34px;
  }
}
.c-subtitle.both {
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .c-subtitle.both {
    padding-right: 46px;
  }
}
@media screen and (max-width: 767px) {
  .c-subtitle.both {
    padding-right: 44px;
  }
}
.c-subtitle.both::after {
  content: "";
  height: 1px;
  width: 50px;
  background: #b1b1b1;
  position: absolute;
  top: 50%;
  right: 4px;
}
@media screen and (max-width: 1024px) {
  .c-subtitle.both::after {
    width: 34px;
    right: 6px;
  }
}
@media screen and (max-width: 767px) {
  .c-subtitle.both::after {
    width: 34px;
    right: 4px;
  }
}

/*c-contact*/
.c-contact {
  width: 230px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .c-contact {
    font-size: 14px;
  }
}
.c-contact__icon {
  width: 35px;
  display: block;
  margin: 0 auto 5px;
}
@media screen and (max-width: 767px) {
  .c-contact__icon {
    margin: 0 auto 10px;
  }
}
.c-contact:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*c-footer_logo*/
.c-footer_logo {
  width: 160px;
  height: 19px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-footer_logo {
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-footer_logo {
    margin: auto;
  }
}
.c-footer_logo a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c-footer_logo a img {
  width: 100%;
  height: auto;
}

/*c-address*/
.c-address {
  color: #333;
  font-size: 13px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .c-address {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c-address {
    text-align: center;
  }
}

/*c-category*/
.c-category {
  font-size: 22px;
  border: 1px solid #937c3c;
  display: inline-block;
  color: #937c3c;
  padding: 0 11px;
  height: 43px;
  line-height: 43px;
}
@media screen and (max-width: 1024px) {
  .c-category {
    font-size: 14px;
    height: 32px;
    line-height: 32px;
    padding: 0 8px;
  }
}

/*c-time*/
.c-time {
  color: #000000;
  font-size: 12px;
}

/*c-article_img*/
.c-article_img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
}

/*c-text*/
.c-thumbnail {
  font-size: 16px;
  margin: 20px 30px;
}
@media screen and (max-width: 767px) {
  .c-thumbnail {
    margin: 20px 0;
  }
}

.c-ttl {
  color: #000000;
}
@media screen and (min-width: 1025px) {
  .c-ttl {
    font-size: 32px;
    line-height: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .c-ttl {
    font-size: 28px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 26px;
    line-height: 36px;
  }
}

.c-sub-ttl {
  color: #000000;
  font-size: 28px;
  line-height: 45px;
}

.c-small-ttl {
  color: #000000;
  font-size: 22px;
  line-height: 45px;
}

/*c-text*/
.c-text {
  font-size: 16px;
  line-height: 28px;
}
.c-text a {
  color: #64bfc3;
  text-decoration: underline;
  cursor: pointer;
}
.c-text.black {
  color: #000;
}
.c-text.white {
  color: #fff;
}
.c-text p.comment {
  font-size: 12px;
  color: #767676;
  padding-left: 1.8em;
  border-left: 1px solid #767676;
}
@media screen and (max-width: 767px) {
  .c-text p.comment {
    margin: 0 32px 20px;
  }
}
.c-text form p {
  margin-bottom: 35px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .c-text form p {
    margin-bottom: 35px;
    margin-left: 0;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.c-text form input,
.c-text form textarea,
.c-text form select {
  background: #f0f0f0;
  padding: 13px 20px;
}
.c-text form input::placeholder,
.c-text form textarea::placeholder {
  color: #767676;
}
.c-text form .form_item {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .c-text form .form_item {
    flex-wrap: wrap;
  }
}
.c-text form .wpcf7-form-control-wrap {
  width: 680px;
  margin-right: auto;
}
.c-text form input[type=text],
.c-text form input[type=email],
.c-text form select,
.c-text form textarea {
  width: 100%;
}
.c-text form textarea {
  height: 140px;
}
.c-text form .wpcf7-list-item {
  margin: 0;
}
.c-text form .wpcf7-list-item:not(.last) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .c-text form .wpcf7-list-item:not(.last) {
    margin-right: 30px;
  }
}
.c-text form input[type=radio] {
  background: url(../images/radio_default.svg) no-repeat bottom;
  -webkit-appearance: none;
  appearance: none;
  background-size: 1em 1em;
  padding: 10px;
  vertical-align: bottom;
}
.c-text form input[type=radio]:checked {
  background: url(../images/radio_checked.svg) no-repeat bottom;
  background-size: 1em 1em;
}
.c-text form .form-label {
  width: 200px;
  line-height: 2.5;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-text form .form-label {
    width: 100%;
  }
}
.c-text form .switching_form {
  line-height: 1;
}
.c-text form .required {
  color: #d30000;
}
.c-text form .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  width: 120px;
  height: 120px;
  border: 1px solid #5f5623;
  border-radius: 50%;
  background-color: #fff;
  color: #5f5623;
  margin: auto;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-text form .wpcf7-submit {
    width: 70px;
    height: 70px;
    font-size: 12px;
    margin-top: 44px;
    margin-bottom: 15px;
  }
}
.c-text form .wpcf7-submit:hover {
  background-color: #5f5623;
  color: #fff;
  transition: 0.3s;
}

/*-- search --*/
.header_search_form {
  position: absolute;
  top: 69px;
  right: 19px;
}

.search_form {
  width: 1000px;
  margin: 35px auto;
}

.search_form .p-search_form {
  width: 630px;
  height: 50px;
  border-radius: 25px;
}

.search_form .p-search_form input[type=text] {
  width: 630px;
  height: 50px;
  border-radius: 25px;
  padding-left: 10px;
  font-size: 18px;
}

.search_form .p-search_form input[type=submit] {
  font-size: 1.4em;
  padding-left: 12px;
}

.p-search_form {
  position: relative;
  border: 1px solid #b1b1b1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: left;
  height: 25px;
  width: 168px;
  overflow: hidden;
  background: #efefef;
}

.p-search_form input[type=text] {
  border: none;
  font-size: 13px;
  background: #efefef;
  color: #3b4043;
  padding-left: 6px;
}

.p-search_form input[type=text]:focus {
  outline: 0;
}

.p-search_form input[type=submit] {
  cursor: pointer;
  font-size: 1em;
  font-family: FontAwesome;
  border: none;
  background: none;
  color: #767676;
  outline: none;
  padding-left: 4px;
}

.p-search_form input[type=submit]:hover {
  color: #3b4043;
}

.p-search_form ::-webkit-input-placeholder {
  color: #767676;
}

.search_title {
  width: 1000px;
  margin: 0 auto;
  font-size: 18px;
}

.search_wrap {
  display: grid;
  gap: 80px;
  width: 1000px;
  margin: 40px auto 80px;
}

.search_no_result_wrap {
  width: 1000px;
  margin: 0 auto;
}

.search_no_result {
  margin: 32px auto 0;
  font-size: 18px;
  font-weight: bold;
}

.search_no_result_back {
  display: inline-block;
  margin: 28px 0 80px;
  font-size: 18px;
  color: #64bfc3 !important;
  text-decoration: underline;
}

.search_article {
  display: grid;
  grid-template-columns: 256px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 32px;
  position: relative;
}

.search_article_title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 7px;
  text-align: left;
  grid-column: 2;
}

.search_article_time {
  color: #767676;
  font-size: 12px;
  grid-column: 2;
}

.search_article_img_link {
  height: 260px;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  grid-column: 1;
  grid-row: 1/4;
}

.search_article_img_link img {
  object-fit: cover;
  height: 100%;
}

.search_article_description {
  margin-top: 12px;
  grid-column: 2;
}

.search_article_description a {
  display: inline-block;
}

.search_article_readmore {
  margin-top: 8px;
  text-align: right;
  font-weight: bold;
}

.search_pagination {
  margin: 80px auto;
}

.search_article_cate {
  font-size: 14px;
  color: #fff;
  background: #aaa;
  text-align: center;
  padding: 7px 0 9px;
  border-radius: 20px;
  width: 130px;
  line-height: 1;
  z-index: 2;
  position: absolute;
  bottom: -15px;
}

.sp_menu_form {
  width: 168px;
  height: 25px;
  margin: 12px 26px 0 auto;
}

.p-top-shop-banner {
  display: block;
  width: 1000px;
  margin: auto;
  height: 226px;
  background-image: url(../images/top_banner_00.png);
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .p-top-shop-banner {
    width: 100%;
    background-image: url(../images/top_banner_00_sp.png);
    max-width: 592px; /* 最大幅を設定 */
    margin: auto;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-top-shop-banner {
    background-image: url(../images/top_banner_00_sp.png);
    margin: auto;
    height: 140px;
    width: 87%;
  }
}

.p-top-shop-banner:hover {
  background-color: rgba(255, 255, 255, 0.15);
  background-blend-mode: lighten;
  transition: 0.4s;
}

.seo-box {
  width: 740px;
  margin: 24px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .seo-box {
    width: 100%;
  }
}

.seo-box__ttl {
  color: #937c3c;
  font-weight: normal;
}

.c-table {
  border-collapse: collapse;
  text-align: left;
  width: 100%;
  margin-top: 32px;
}
.c-table tbody {
  border-top: 1px solid #c6c9c3;
}

.c-table th {
  border-bottom: 1px solid #c6c9c3;
  text-align: left;
  vertical-align: middle;
  width: 25%;
  padding: 15px;
}

.c-table td {
  border-bottom: 1px solid #c6c9c3;
  vertical-align: middle;
  padding: 15px;
}

@media (max-width: 768px) {
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table th {
    width: auto;
  }
}
/*c-link*/
.c-link {
  text-decoration: none;
  transition: all 0.3s ease;
  padding-left: 18px;
  width: 250px;
  position: relative;
}
.c-link.white {
  color: #fff;
  border: 1px solid #fff;
}
.c-link.white:before {
  background-color: #ffffff;
}
.c-link.white:after {
  background-color: #ffffff;
}
.c-link.gold {
  color: #937c3c;
  border: 1px solid #937c3c;
}
.c-link.gold:before {
  background-color: #937c3c;
}
.c-link.gold:after {
  background-color: #937c3c;
}
.c-link:hover {
  opacity: 0.7;
}
.c-link:hover:before {
  right: -64px;
}
.c-link:hover:after {
  right: -66px;
}
.c-link:before {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  width: 88px;
  height: 1px;
  transition: all 0.3s ease;
}
.c-link:after {
  content: "";
  position: absolute;
  right: -62px;
  top: 38%;
  width: 25px;
  height: 1px;
  transform: rotate(30deg);
  transition: all 0.3s ease;
}
.c-link a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 50px;
}

.c-text-link {
  position: relative;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s ease;
}
.c-text-link.white {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.c-text-link.white:before {
  background-color: #ffffff;
}
.c-text-link.white:after {
  background-color: #ffffff;
}
.c-text-link.gold {
  color: #937c3c;
  border-bottom: 1px solid #937c3c;
}
.c-text-link.gold:before {
  background-color: #937c3c;
}
.c-text-link.gold:after {
  background-color: #937c3c;
}
.c-text-link:hover {
  opacity: 0.7;
}
.c-text-link:hover:before {
  right: -56px;
}
.c-text-link:hover:after {
  right: -57px;
}
.c-text-link:before {
  content: "";
  position: absolute;
  right: -52px;
  top: 17px;
  width: 45px;
  height: 1px;
  transition: all 0.3s ease;
}
.c-text-link:after {
  content: "";
  position: absolute;
  right: -53px;
  top: 14px;
  width: 12px;
  height: 1px;
  transform: rotate(30deg);
  transition: all 0.3s ease;
}

/*p-top_mv*/
.p-top_mv {
  width: 100%;
  background-image: url(../images/top_mv_pc.jpg);
  background-size: cover;
  background-position: 50% 50%;
  height: 100vh;
  position: relative;
}
.p-top_mv__ttl__ja {
  position: absolute;
  width: 32px;
  height: 161px;
  top: 37.4%;
  left: 50%;
  transform: translateX(-50%);
}
.p-top_mv__ttl__en {
  position: absolute;
  width: 160px;
  height: 19px;
  top: 60.2%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_mv__ttl__en {
    top: 70%;
  }
}

/*p-top_about*/
.p-top_about {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #000;
  background-image: url(../images/replace/top_illust_01_pc.png);
  background-size: 577px 931px;
  background-position: 150px -40px;
}
@media screen and (max-width: 1024px) {
  .p-top_about {
    background-position: 70px -40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about {
    background-image: url(../images/replace/top_illust_01_sp.png);
    background-size: 325px 555px;
    background-position: 50px 0px;
  }
}
.p-top_about__inner {
  width: 1000px;
  margin: auto;
  padding: 131px 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .p-top_about__inner {
    width: 100%;
    padding: 139px 40px 131px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about__inner {
    width: 100%;
    padding: 313px 25px 28px;
  }
}
.p-top_about__box {
  width: 575px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-top_about__box {
    width: 436px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_about__box {
    width: 100%;
  }
}
.p-top_about__ttl {
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top_about__ttl {
    text-align: center;
  }
}
.p-top_about__description {
  margin-top: 8px;
  font-size: 16px;
  line-height: 2;
}

/*p-top_mizen*/
.p-top_mizen {
  width: 100%;
  color: #ffffff;
  padding: 46px 0 113px 0;
  background-size: cover;
  background-position: center;
  background-image: url(../images/mizen_bg_pc.png);
}
@media screen and (max-width: 1024px) {
  .p-top_mizen {
    background-image: url(../images/mizen_bg_tab.png);
    background-position: 100% 15%;
    padding: 46px 0 41px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_mizen {
    background-image: url(../images/mizen_bg_sp.png);
    background-position: 100% 0;
    padding: 27px 0 39px 0;
  }
}
.p-top_mizen__inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-top_mizen__inner {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_mizen__inner {
    width: 100%;
    padding: 0 25px;
  }
}
.p-top_mizen__ttl {
  font-size: 28px;
  line-height: 52px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-top_mizen__ttl {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .p-top_mizen__texts {
    width: 361px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_mizen__texts {
    width: auto;
    margin-top: 279px;
  }
}
.p-top_mizen .c-text-link {
  margin-top: 20px;
}
.p-top_mizen .p-top-movie-banner {
  display: block;
  width: 351px;
  height: 197px;
  margin: 31px auto 0 0;
  background-image: url(../images/top_banner_mizen_youtube.png);
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .p-top_mizen .p-top-movie-banner {
    width: 249px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_mizen .p-top-movie-banner {
    width: 100%;
    height: 181px;
    margin-top: 27px;
  }
}
.p-top_mizen .p-top-movie-banner:hover {
  background-color: rgba(255, 255, 255, 0.15);
  background-blend-mode: lighten;
  transition: 0.4s;
}

/*p-top_concept*/
.p-top_concept {
  background-image: url(../images/top_background_01.jpg);
  background-size: cover;
  background-position: center;
  padding: 134px 0 117px 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top_concept {
    padding: 27px 0 49px 0;
  }
}
.p-top_concept__inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media screen and (max-width: 1024px) {
  .p-top_concept__inner {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_concept__inner {
    padding: 0 25px;
  }
}
.p-top_concept__block {
  width: 518px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_concept__block {
    width: 100%;
  }
}
.p-top_concept__ttl {
  font-size: 32px;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}
.p-top_concept__ttl + .p-top_concept__ttl {
  padding-left: 32px;
}
.p-top_concept__ttl + .p-top_concept__ttl:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 22px;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top_concept__ttl {
    font-size: 26px;
  }
}
.p-top_concept__text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top_concept__text {
    margin-top: 6px;
  }
}
.p-top_concept .c-text-link {
  margin: 12px 0 0 auto;
  right: -340px;
}
@media screen and (max-width: 767px) {
  .p-top_concept .c-text-link {
    margin-top: 4px;
    right: 0;
  }
}

/*p-top_person*/
.p-top_person {
  width: 1000px;
  margin: 96px auto 0 auto;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .p-top_person {
    padding: 0 40px;
    margin-top: 66px;
  }
}
@media screen and (max-width: 1024px) {
  .p-top_person {
    width: 100%;
    padding: 0 25px;
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
.p-top_person__wrap {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-top_person__wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}
.p-top_person__block a {
  height: fit-content;
  display: block;
}
.p-top_person__block a:hover {
  opacity: 0.7;
}
.p-top_person__img {
  background-position: center;
  background-size: contain;
}
.p-top_person__img._01 {
  background-image: url(../images/product_01.png);
}
.p-top_person__img._02 {
  background-image: url(../images/product_01.png);
}
.p-top_person__img._03 {
  background-image: url(../images/product_01.png);
}
.p-top_person__texts {
  border-left: 1px solid #937c3c;
  padding-left: 30px;
  margin-top: 10px;
  height: 67px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.p-top_person__text_position {
  font-size: 14px;
  color: #937c3c;
}
.p-top_person__text {
  font-size: 20px;
  color: #000;
  margin-top: 8px;
}
.p-top_person .c-link {
  margin-top: 42px;
  margin-left: auto;
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .p-top_person .c-link {
    margin-top: 30px;
  }
}

/*p-top_product*/
.p-top_product {
  width: 1000px;
  margin: auto;
  padding: 0 0 80px 0;
}
@media screen and (max-width: 1024px) {
  .p-top_product {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product {
    width: 100%;
    padding: 0 0 32px 0;
  }
}
.p-top_product__ttl {
  text-align: center;
}
.p-top_product__text {
  font-size: 22px;
  color: #937c3c;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__text {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__text {
    margin-top: 15px;
  }
}
.p-top_product__item_img {
  background-position: center;
  background-size: contain;
  width: 588px;
  height: 348px;
}
.p-top_product__item_img._01 {
  background-image: url(../images/product_01_pc.png);
}
.p-top_product__item_img._02 {
  background-image: url(../images/product_02_pc.png);
}
.p-top_product__item_img._03 {
  background-image: url(../images/product_03_pc.png);
}
.p-top_product__item_img._04 {
  background-image: url(../images/product_04_pc.png);
}
.p-top_product__item_img._05 {
  background-image: url(../images/product_05_pc.png);
}
@media screen and (max-width: 1024px) {
  .p-top_product__item_img {
    max-width: 100%;
    height: auto;
  }
  .p-top_product__item_img._01 {
    background-image: url(../images/product_01_sp.png);
  }
  .p-top_product__item_img._02 {
    background-image: url(../images/product_02_sp.png);
  }
  .p-top_product__item_img._03 {
    background-image: url(../images/product_03_sp.png);
  }
  .p-top_product__item_img._04 {
    background-image: url(../images/product_04_sp.png);
  }
  .p-top_product__item_img._05 {
    background-image: url(../images/product_05_sp.png);
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__item_img {
    width: 100%;
    height: 222px;
  }
}
.p-top_product__main_item_wrap {
  display: grid;
  grid-template-columns: 1fr 654px;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__main_item_wrap {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-top: 33px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__main_item_wrap {
    width: 100%;
    margin-top: 28px;
    padding: 0;
  }
}
.p-top_product__main_item_wrap .c-title {
  width: 266px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__main_item_wrap .c-title {
    margin-top: 32px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__main_item_wrap .p-top_product__item_tags {
    align-items: flex-start;
    flex-direction: column;
  }
}
.p-top_product__omotenashi_logo {
  width: 180px;
  height: 140px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__omotenashi_logo {
    width: 112px;
    height: 87px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__omotenashi_logo {
    width: 124px;
    height: 96px;
    margin-top: 0;
    margin-left: 37px;
  }
}
.p-top_product__main_item_img {
  background-position: center;
  background-size: contain;
  background-image: url(../images/product_00_pc.png);
}
@media screen and (max-width: 1024px) {
  .p-top_product__main_item_img {
    width: 689px;
    height: 375px;
    background-image: url(../images/product_00_sp.png);
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__main_item_img {
    width: 100%;
    height: 222px;
  }
}
.p-top_product__wine_description_wrap {
  display: flex;
  margin-top: 34px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .p-top_product__wine_description_wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__wine_description_wrap {
    flex-direction: column;
    align-items: center;
    padding: 0 25px;
  }
}
.p-top_product__wine_logo {
  width: 157px;
  height: 159px;
  margin-right: 106px;
}
@media screen and (max-width: 767px) {
  .p-top_product__wine_logo {
    margin-right: 0;
  }
}
.p-top_product__wine_description {
  display: flex;
  width: 624px;
  align-items: center;
  position: relative;
  line-height: 31px;
}
@media screen and (max-width: 767px) {
  .p-top_product__wine_description {
    width: auto;
    font-size: 16px;
    line-height: 2;
  }
}
.p-top_product__wine_description::before {
  content: "";
  height: 112px;
  width: 1px;
  background: #333333;
  position: absolute;
  top: 50%;
  left: -58px;
  transform: translate(-50%, -50%);
}
.p-top_product__item_wrap {
  display: flex;
  justify-content: space-between;
}
.p-top_product__item_wrap.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .p-top_product__item_wrap {
    gap: 40px;
  }
  .p-top_product__item_wrap .p-top_product__item {
    flex: 1;
  }
  .p-top_product__item_wrap .p-top_product__item_img {
    width: 406px; /* 固定幅 */
  }
  .p-top_product__item_wrap.reverse {
    text-align: left;
  }
  .p-top_product__item_wrap.reverse .c-link {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__item_wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .p-top_product__item_wrap .p-top_product__item {
    flex: auto;
  }
  .p-top_product__item_wrap .p-top_product__item_img {
    width: 100%;
  }
  .p-top_product__item_wrap.reverse {
    flex-direction: column-reverse;
  }
}
.p-top_product__item_wrap .p-top_product__item_tags {
  margin-top: 8px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__item_wrap .p-top_product__item_tags {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__item_wrap .p-top_product__item_tags {
    margin-top: 12px;
  }
}
.p-top_product__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__items {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__items {
    gap: 40px;
    margin-top: 40px;
    padding: 0;
  }
}
.p-top_product__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top_product__item {
    padding: 0 25px;
  }
}
.p-top_product__item_tags_and_logo {
  margin-top: 13px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__item_tags_and_logo {
    display: flex;
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__item_tags_and_logo {
    display: flex;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
.p-top_product__item_tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-top_product__item_tag {
  color: #ffffff;
  background-color: #937c3c;
  line-height: 32px;
  font-size: 20px;
  padding: 0 8px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__item_tag {
    line-height: 26px;
    height: 26px;
    font-size: 16px;
    padding: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product .c-title {
    margin-top: 15px;
  }
}
.p-top_product .c-text {
  width: 363px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .p-top_product .c-text {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product .c-text {
    width: auto;
  }
}
.p-top_product .c-link {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .p-top_product .c-link_wrap {
    display: flex;
    justify-content: center;
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product .c-link_wrap {
    display: inline-block;
  }
}
.p-top_product__example {
  display: flex;
  gap: 28px;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .p-top_product__example {
    gap: 20px;
    justify-content: center;
    padding: 0 40px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_product__example {
    gap: 8px;
    justify-content: center;
    padding: 0 25px;
    margin-top: 40px;
  }
}
.p-top_product__example a {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  transition: all 0.3s ease;
}
.p-top_product__example a:hover {
  opacity: 0.7;
}
.p-top_product__example img {
  width: 485px;
}
@media screen and (max-width: 767px) {
  .p-top_product__example img {
    width: auto;
  }
}
.p-top_product__example p {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_product__example p {
    font-size: 18px;
    margin-top: 0;
    line-height: 2;
  }
}

/*p-top_study*/
.p-top_study {
  margin: 80px 0 100px;
}
@media screen and (max-width: 1024px) {
  .p-top_study {
    margin: 80px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_study {
    margin: 70px 0 50px;
  }
}
.p-top_study__content {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1180px) {
  .p-top_study__content {
    width: 100%;
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_study__content {
    width: 100%;
    padding: 0 32px;
  }
}
.p-top_study__cont_ttl {
  font-size: 24px;
  font-weight: bold;
  color: #5f5623;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_study__cont_ttl {
    font-size: 16px;
    text-align: center;
    margin: 20px 0;
  }
}

.p-top_achievements {
  background-image: url(../images/top_background_03.png);
  background-size: cover;
  background-position: top center;
  color: #ffffff;
  padding: 69px 0 69px 0;
}
@media screen and (max-width: 1024px) {
  .p-top_achievements {
    padding: 37px 40px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_achievements {
    padding: 35px 25px 35px 25px;
    background-position: 40% top;
  }
}
.p-top_achievements .c-title {
  color: #ffffff;
}
.p-top_achievements .c-subtitle {
  color: #ffffff;
}
.p-top_achievements__inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .p-top_achievements__inner {
    width: 100%;
  }
}
.p-top_achievements__list_wrapper {
  margin-top: 16px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .p-top_achievements__list_wrapper {
    margin-bottom: 0;
  }
}
.p-top_achievements__list_wrapper ul {
  list-style-type: disc;
  line-height: 31px;
}
.p-top_achievements__list_wrapper li::marker {
  color: #ffffff;
}

/*p-top_news*/
.p-top_news {
  padding-top: 80px;
  padding-bottom: 108px;
}
@media screen and (max-width: 767px) {
  .p-top_news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-top_news__content {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-top_news__content {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_news__content {
    width: 100%;
    padding: 0 25px;
  }
}
.p-top_news .p-top_newsList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  gap: 40px 30px;
}
@media screen and (max-width: 1024px) {
  .p-top_news .p-top_newsList {
    grid-template-columns: repeat(2, 1fr);
    width: 520px;
    margin: 30px auto 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top_news .p-top_newsList {
    width: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top_news .p-top_newsList img {
  height: 225px;
  transition: all 0.3s ease;
  object-fit: cover;
}
.p-top_news .p-top_newsList img:hover {
  opacity: 0.7;
}
.p-top_news .p-top_newsList__item_cate {
  width: fit-content;
  color: #937c3c;
  border: 1px solid #937c3c;
  font-size: 11px;
  line-height: 20px;
  padding: 0 6px;
  margin-top: 10px;
}
.p-top_news .p-top_newsList__item_time {
  font-size: 12px;
  line-height: 1;
  margin-top: 10px;
}
.p-top_news .p-top_newsList__item_ttl {
  font-size: 18px;
  margin-top: 10px;
  line-height: 26px;
}
.p-top_news .c-link {
  margin-top: 60px;
  margin-left: 371px;
}
@media screen and (max-width: 767px) {
  .p-top_news .c-link {
    margin-left: 0;
  }
}
.p-top_news .top-instagram {
  width: 1000px;
  height: 190px;
  margin: 69px auto 0;
  background-image: url(../images/banner_instagram.png);
  background-size: cover;
  background-position: top center;
  display: inline-block;
  transition: all 0.3s ease;
}
.p-top_news .top-instagram:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .p-top_news .top-instagram {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top_news .top-instagram {
    margin-top: 40px;
    height: 90px;
    width: 100%;
  }
}

.p-top_contents {
  background-image: url(../images/top_background_02.png);
  background-size: cover;
  background-position: top center;
  color: #ffffff;
  padding: 40px 0 42px 0;
}
@media screen and (max-width: 1024px) {
  .p-top_contents {
    padding: 37px 40px 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_contents {
    padding: 44px 25px 51px 25px;
  }
}
.p-top_contents .c-title {
  color: #ffffff;
}
.p-top_contents .c-subtitle {
  color: #ffffff;
}
.p-top_contents__inner {
  width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .p-top_contents__inner {
    width: 100%;
  }
}
.p-top_contents .p-top_contents__ttl {
  margin-top: 18px;
  margin-bottom: 8px;
}
.p-top_contents__list_wrapper {
  background-color: #ffffff;
  margin-top: 8px;
  margin-bottom: 18px;
  padding: 29px 36px;
}
.p-top_contents__list_wrapper ul {
  color: #937c3c;
  list-style-type: disc;
  line-height: 31px;
}
.p-top_contents__list_wrapper li::marker {
  color: #b1b1b1;
}
.p-top_contents .c-link {
  margin: 12px 60px 0 auto;
}

.p-top_planetary_health {
  width: 1000px;
  margin: auto;
  padding-top: 90px;
}
@media screen and (max-width: 1024px) {
  .p-top_planetary_health {
    width: 100%;
    padding-top: 34px;
  }
}
.p-top_planetary_health__banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 14px;
  gap: 13px;
}
.p-top_planetary_health__banners img {
  transition: all 0.3s ease;
}
.p-top_planetary_health__banners img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .p-top_planetary_health__banners {
    grid-template-columns: repeat(2, 1fr); /* 列数だけ固定 (2列) */
    gap: 28px; /* 要素間の余白 */
    width: 591px;
    margin: 24px auto 27px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top_planetary_health__banners {
    width: 100%;
    padding: 0 25px;
    gap: 10px; /* 要素間の余白 */
    margin: 24px auto 10px auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-top_planetary_health__texts {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top_planetary_health__texts {
    width: 100%;
    padding: 0 25px;
  }
}

.p-top_planetary_health_text {
  color: #937c3c;
  margin-top: 8px;
}

/*p-nav*/
.gnav {
  color: #fff;
}
.gnav .menu {
  display: flex;
  flex-wrap: nowrap;
}
.gnav li:not(:last-child) {
  margin-right: 24px;
}
.gnav .menu-item a {
  display: block;
  text-align: center;
  font-size: 16px;
}
.gnav .menu-item a:hover {
  color: #fff;
  transition: 0.2s;
}
.gnav .current-menu-item a {
  border-bottom: 2px solid #fff;
}

/*p-headline*/
.p-headline {
  width: 1000px;
  margin: 65px auto 30px;
}
@media screen and (max-width: 1024px) {
  .p-headline {
    width: 100%;
    margin: 65px auto 24px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-headline {
    padding: 0 25px;
  }
}

/*p-breadcrumbs*/
.p-breadcrumbs {
  margin-top: 66px;
  width: 1000px;
  color: #000000;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .p-breadcrumbs {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-breadcrumbs {
    margin-top: 30px;
    width: 100%;
  }
}
.p-breadcrumbs a {
  color: #64bfc3;
  text-decoration: underline;
  cursor: pointer;
}

/*p-category_list*/
.p-category_tag {
  font-size: 20px;
  color: #fff;
  line-height: 32px;
  height: 32px;
  padding: 0 8px;
  background-color: #937c3c;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .p-category_tag {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-category_tag {
    margin-bottom: 24px;
  }
}

.p-category_list {
  margin-top: 20px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-category_list {
    width: 100%;
    flex-wrap: wrap;
  }
}
.p-category_list li {
  border-bottom: 1px solid #937c3c;
  line-height: 44px;
  height: 44px;
}
.p-category_list li:first-child {
  border-top: 1px solid #937c3c;
}
.p-category_list__item {
  border-right: 1px solid #5f5623;
}
@media screen and (max-width: 767px) {
  .p-category_list__item {
    margin-bottom: 10px;
  }
}
.p-category_list__item_link:hover {
  opacity: 0.6;
  transition: 0.2s;
}
.p-category_list__link {
  padding: 0 10px;
  line-height: 1;
}
.p-category_list__link:hover {
  opacity: 0.6;
  transition: 0.2s;
}

/*p-archive*/
.p-archive {
  margin-bottom: 86px;
}
@media screen and (max-width: 1024px) {
  .p-archive {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding: 0 25px;
    margin-bottom: 40px;
  }
}
.p-archive__list {
  display: grid;
  grid-template-columns: 218px 1fr;
  gap: 40px;
  margin: auto;
  width: 1000px;
}
@media screen and (max-width: 1024px) {
  .p-archive__list {
    display: block;
    width: 100%;
  }
}
.p-archive__list .c-category {
  margin-bottom: 23px;
}
.p-archive__list .c-tag {
  margin-bottom: 23px;
}

/*p-postlist*/
.p-postlist {
  width: 742px;
  display: flex;
  flex-wrap: wrap;
  gap: 45px 35px;
}
@media screen and (max-width: 1024px) {
  .p-postlist {
    justify-content: space-between;
    width: 100%;
    gap: 45px 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-postlist {
    justify-content: center;
    width: 100%;
    gap: 35px 0;
  }
}
.p-postlist__item {
  width: 224px;
}
.p-postlist__item_link:hover {
  opacity: 0.85;
  transition: 0.4s;
}
.p-postlist__item_img {
  height: 224px;
  overflow: hidden;
}
.p-postlist__item_img img {
  object-fit: cover;
  height: 100%;
}
.p-postlist__item_cate {
  font-size: 11px;
  color: #937c3c;
  text-align: center;
  padding: 0 6px;
  height: 20px;
  line-height: 20px;
  position: relative;
  width: fit-content;
  margin-top: 10px;
  margin-bottom: 8px;
  border: 1px solid #937c3c;
}
.p-postlist__item_ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 4px 0;
  text-align: left;
}
.p-postlist__item:nth-child(3n) {
  margin-right: 0;
}

/*p-pagenation*/
.p-pagenation {
  margin: 80px auto 45px auto;
  width: 80%;
  text-align: center;
  font-size: 16px;
  padding-left: 256px;
}
@media screen and (max-width: 1024px) {
  .p-pagenation {
    margin: 49px auto 73px auto;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-pagenation {
    width: 100%;
    margin: 40px auto;
    padding-left: 0;
  }
}
.p-pagenation .page-numbers {
  color: #937c3c;
  font-size: 18px;
  padding: 0 12px;
}
.p-pagenation .page-numbers.current {
  color: #000000;
}
.p-pagenation .page-numbers.next {
  width: 13px;
  height: 13px;
  background: url(../images/replace/page_arrow_right.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 12px;
}
.p-pagenation .page-numbers.prev {
  width: 13px;
  height: 13px;
  background: url(../images/replace/page_arrow_left.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 12px;
}

/*p-article*/
.p-article__cont {
  width: 1000px;
  margin: 72px auto 50px;
}
@media screen and (max-width: 1024px) {
  .p-article__cont {
    width: 100%;
    padding: 0 40px;
    margin: 40px auto 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-article__cont {
    width: 100%;
    padding: 0 25px;
  }
}
.p-article__cont .wp-block-image {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-article__cont .wp-block-image {
    margin: 20px 0;
  }
}
.p-article__cont h1 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 60px 0 20px;
  color: #333;
}
.p-article__cont h2 {
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: bold;
  margin: 40px 0 30px;
  color: #333;
  border-left: 5px solid #947c3b;
  padding-left: 12px;
}
.p-article__cont h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0 15px;
  color: #333;
}
.p-article__cont h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 25px 0 10px;
  color: #333;
}
.p-article__cont p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0px 0;
  color: #333;
}
.p-article__cont ul {
  list-style-type: disc;
  padding-left: 1.5em;
}
.p-article__cont ol {
  list-style-type: decimal;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-article__cont h1 {
    font-size: 1.8rem;
  }
  .p-article__cont h2 {
    font-size: 1.6rem;
  }
}
.p-article__ttl {
  margin: 36px 0 15px;
}
@media screen and (max-width: 767px) {
  .p-article__ttl {
    width: 100%;
    margin: 15px 0 13px;
    text-align: left;
  }
}
.p-article__time {
  text-align: right;
}
.p-article--static {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-article--static {
    margin-bottom: 80px;
  }
}

/*p-recommend_article"*/
.p-recommend_article {
  width: 1000px;
  margin: 72px auto 86px;
}
@media screen and (max-width: 1024px) {
  .p-recommend_article {
    width: auto;
    margin: 50px auto 40px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_article {
    width: auto;
    margin: 50px auto 30px;
    padding: 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend_article {
    width: 100%;
    margin: 50px auto 30px;
  }
}
.p-recommend_article .p-postlist {
  margin-top: 50px;
}

/*p-archive*/
.p-policy__block {
  width: 100%;
  background-size: cover;
}
@media screen and (max-width: 959px) {
  .p-policy__block {
    padding: 2%;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__block {
    padding: 2%;
  }
}
.p-policy__block.__01 {
  background-image: url(../images/policy/policy_contbg_01.jpg);
  background-position: 50% 65%;
}
@media screen and (max-width: 959px) {
  .p-policy__block.__01 {
    background-position: 50% 75%;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__block.__01 {
    background-position: 50% 85%;
  }
}
.p-policy__block.__02 {
  background-image: url(../images/policy/policy_contbg_02.jpg);
}
@media screen and (max-width: 959px) {
  .p-policy__block.__02 {
    background-position: 85% 0;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__block.__02 {
    background-position: 85% 0;
  }
}
.p-policy__block.__03 {
  background-image: url(../images/policy/policy_contbg_03.jpg);
}
@media screen and (max-width: 767px) {
  .p-policy__block.__03 {
    background-position: 69% 0;
  }
}
.p-policy__block.__04 {
  background-image: url(../images/policy/policy_contbg_04.jpg);
}
@media screen and (max-width: 767px) {
  .p-policy__block.__04 {
    background-position: 63% 0;
  }
}
.p-policy__block.__05 {
  background-image: url(../images/policy/policy_contbg_05.jpg);
}
@media screen and (max-width: 959px) {
  .p-policy__block.__05 {
    background-position: 50% 50%;
  }
}
.p-policy__block.__06 {
  background-image: url(../images/policy/policy_contbg_06.jpg);
}
@media screen and (max-width: 959px) {
  .p-policy__block.__06 {
    background-position: 35% 0;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__block.__06 {
    background-position: 25% 0;
  }
}
.p-policy__block.__07 {
  background-image: url(../images/policy/policy_contbg_07.jpg);
}
@media screen and (max-width: 767px) {
  .p-policy__block.__07 {
    background-position: 73% 0;
  }
}
.p-policy__block.__08 {
  background-image: url(../images/policy/policy_contbg_08.jpg);
}
@media screen and (max-width: 767px) {
  .p-policy__block.__08 {
    background-position: 73% 0;
  }
}
.p-policy__block.__09 {
  background-image: url(../images/policy/policy_contbg_09.jpg);
}
@media screen and (max-width: 767px) {
  .p-policy__block.__09 {
    background-position: 73% 0;
  }
}
.p-policy__block.__10 {
  background-image: url(../images/policy/policy_contbg_10.jpg);
  background-position: 50% 0;
}
@media screen and (max-width: 767px) {
  .p-policy__block.__10 {
    background-position: 28% 0;
  }
}
.p-policy__cont {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 100px 0 126px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .p-policy__cont {
    padding: 80px 32px 70px;
  }
}
.p-policy__ttl {
  color: #fff;
  font-size: 44px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .p-policy__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__ttl {
    font-size: 23px;
  }
}
.p-policy__text {
  color: #fff;
  max-width: 517px;
  width: 100%;
  margin-left: auto;
  text-align: justify;
  line-height: 2;
  margin-top: 150px;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .p-policy__text {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-policy__text {
    font-size: 16px;
    margin-top: 80px;
  }
}

.c-listBox {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .c-listBox {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-listBox {
    width: 100%;
    padding: 0 20px;
  }
}

.c-listBox__title {
  text-align: left;
  font-size: 18px;
  letter-spacing: 1.8px;
  color: #937c3c;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-listBox__title {
    font-size: 16px;
  }
}

.c-listBox__items {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0.1rem;
}
@media screen and (max-width: 542px) {
  .c-listBox__items {
    font-size: 16px;
    padding-left: 0;
  }
}
.c-listBox__items li {
  line-height: 2.2;
  position: relative;
}
.c-listBox__items li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  /* 1行目の中央に合わせる */
  top: 0.7em;
  transform: translateY(-50%);
  background: #937c3c;
  font-size: 1.5em;
}
.c-listBox__items a {
  text-decoration: none;
  color: #333333;
  transition: opacity 0.2s ease;
  display: inline-block;
  padding-left: 4px;
}
.c-listBox__items a:hover,
.c-listBox__items a:focus-visible {
  opacity: 0.5;
}

/* アンカーリンク*/
html:has(body.p-policy) .p-policy {
  padding-top: 55px;
}

.p-policy__block[id] {
  scroll-margin-top: 55px;
}

/*トップに戻るボタン*/
html {
  scroll-behavior: smooth;
}

.page_top {
  position: fixed;
  right: 50px;
  bottom: 60px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .page_top {
    right: 25px;
    bottom: 50px;
    width: 60px;
    height: 60px;
  }
}
.page_top span {
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .page_top span {
    width: 60px;
    height: 60px;
  }
}
.page_top span::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #333333;
  border-radius: 50%;
  background-color: #333333;
  opacity: 0.5;
}
.page_top span::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  top: 29px;
  left: 21px;
}
@media screen and (max-width: 767px) {
  .page_top span::after {
    width: 23px;
    height: 23px;
    top: 24px;
    left: 19px;
  }
}

/*p-greeting*/
.p-greeting__item {
  padding: 88px 0;
}
@media screen and (max-width: 767px) {
  .p-greeting__item {
    padding: 0 0 52px;
  }
}
.p-greeting__item:nth-child(2n) {
  background: #A0CD63;
}
.p-greeting__item:first-child {
  padding-top: 0;
}
.p-greeting__cont {
  width: 1000px;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-greeting__cont {
    width: 100%;
    flex-direction: column;
  }
}
.p-greeting__portrait {
  width: 366px;
  height: 374px;
}
@media screen and (max-width: 767px) {
  .p-greeting__portrait {
    width: 100%;
    height: 43vw;
  }
}
.p-greeting__info {
  width: 576px;
  margin-left: 58px;
  padding-top: 88px;
}
@media screen and (max-width: 767px) {
  .p-greeting__info {
    width: 100%;
    margin: -10px 0 0;
    padding: 0 32px;
  }
}
.p-greeting__position {
  font-weight: bold;
}
.p-greeting__name {
  font-weight: bold;
  font-size: 24px;
}
.p-greeting__name_en {
  font-size: 12px;
  color: #a21010;
}
.p-greeting__text {
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-greeting__text {
    font-size: 14px;
  }
}
.p-greeting__img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-greeting__img {
    width: 100%;
  }
}

/*p-about*/
.p-about__table {
  margin: 120px auto 140px;
  width: 864px;
}
@media screen and (max-width: 767px) {
  .p-about__table {
    width: 100%;
    padding: 0 32px;
  }
}

/*p-table*/
.p-table {
  width: 100%;
}
.p-table th,
.p-table td {
  padding: 15px 0;
  border-bottom: 1px solid #c6c9c3;
}
.p-table th {
  width: 145px;
}
@media screen and (max-width: 767px) {
  .p-table th {
    width: 110px;
  }
}

/*p-contact*/
.p-contact__cont {
  width: 1000px;
  margin: auto;
  padding: 10px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__cont {
    width: 100%;
    padding: 0 32px;
  }
}
.p-contact form p {
  margin-bottom: 35px;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact form p {
    margin-bottom: 35px;
    margin-left: 0;
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.p-contact form input,
.p-contact form textarea,
.p-contact form select {
  background: #F0F0F0;
  padding: 13px 20px;
}
.p-contact form input::placeholder,
.p-contact form textarea::placeholder {
  color: #767676;
}
.p-contact form .form_item {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contact form .form_item {
    flex-wrap: wrap;
  }
}
.p-contact form .wpcf7-form-control-wrap {
  width: 680px;
  margin-right: auto;
}
.p-contact form input[type=text],
.p-contact form input[type=email],
.p-contact form select,
.p-contact form textarea {
  width: 100%;
}
.p-contact form textarea {
  height: 140px;
}
.p-contact form .wpcf7-list-item {
  margin: 0;
}
.p-contact form .wpcf7-list-item:not(.last) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact form .wpcf7-list-item:not(.last) {
    margin-right: 30px;
  }
}
.p-contact form input[type=radio] {
  background: url(../images/radio_default.svg) no-repeat bottom;
  -webkit-appearance: none;
  appearance: none;
  background-size: 1em 1em;
  padding: 10px;
  vertical-align: bottom;
}
.p-contact form input[type=radio]:checked {
  background: url(../images/radio_checked.svg) no-repeat bottom;
  background-size: 1em 1em;
}
.p-contact form .form-label {
  width: 200px;
  line-height: 2.5;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact form .form-label {
    width: 100%;
  }
}
.p-contact form .switching_form {
  line-height: 1;
}
.p-contact form .required {
  color: #D30000;
}
.p-contact form .wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  width: 120px;
  height: 120px;
  border: 1px solid #5f5623;
  border-radius: 50%;
  background-color: #fff;
  color: #5f5623;
  margin: auto;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact form .wpcf7-submit {
    width: 70px;
    height: 70px;
    font-size: 12px;
    margin-top: 44px;
    margin-bottom: 15px;
  }
}
.p-contact form .wpcf7-submit:hover {
  background-color: #5f5623;
  color: #fff;
  transition: 0.3s;
}

/*p-writer*/
.p-writer {
  width: 1000px;
  margin: 72px auto 86px;
}
@media screen and (max-width: 1024px) {
  .p-writer {
    margin: 50px auto 30px;
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-writer {
    margin: 0 auto 30px;
    width: 100%;
    padding: 0 25px;
  }
}
.p-writer__cont {
  margin-top: 68px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-writer__cont {
    flex-wrap: wrap;
  }
}
.p-writer__icon {
  width: 144px;
}
@media screen and (max-width: 767px) {
  .p-writer__icon {
    margin: 0 auto 10px;
  }
}
.p-writer__icon img {
  width: initial;
  max-width: initial;
}
@media screen and (max-width: 767px) {
  .p-writer__icon img {
    width: 100%;
    max-width: 100%;
  }
}
.p-writer__info {
  margin-left: 53px;
}
@media screen and (max-width: 767px) {
  .p-writer__info {
    margin: 10px 0 0;
  }
}
.p-writer__position {
  font-weight: bold;
}
.p-writer__name {
  font-weight: bold;
  font-size: 24px;
}
.p-writer__name_en {
  font-size: 12px;
  color: #a21010;
}
.p-writer__text {
  line-height: 2;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-writer__text {
    font-size: 14px;
  }
}
.p-writer__img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-writer__img {
    width: 100%;
  }
}

/*sp-nav*/
/*drawer.js*/
.sp-menu {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

.sp-menu .drawer-hamburger {
  width: 2.5rem;
  padding: 16px 1.5rem 10px;
  z-index: 99;
}

.sp-menu .drawer-hamburger-icon,
.sp-menu .drawer-hamburger-icon:after,
.sp-menu .drawer-hamburger-icon:before {
  background-color: #ccbd6b;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  top: -12px;
}

.drawer-hamburger-icon:after {
  top: 12px;
}

.sp-menu nav.drawer-nav {
  width: 100%;
  z-index: 100;
  background-color: rgba(51, 51, 51, 0.7);
}

.drawer--right .sp-menu .drawer-nav {
  right: -100%;
}

.drawer--right.drawer-open .sp-menu .drawer-nav {
  right: 0;
  z-index: 50;
}

.drawer-nav .drawer-menu {
  width: 164px;
  margin: 12px 24px 12px auto;
}

.drawer-nav .menu-item {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-bottom: #fff 1px solid;
}
.drawer-nav .menu-item a {
  padding: 1rem 0.75rem;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.drawer-nav .drawer-menu-item a {
  color: #ccbd6b;
  font-weight: 600;
  text-decoration: none;
}

.drawer-nav .current-menu-item {
  background: rgba(255, 255, 255, 0.5019607843);
  color: #333;
}

.drawer-nav .current-menu-item a {
  color: #333;
}

.drawer-open .sp-menu .drawer-hamburger .drawer-hamburger-icon:before,
.drawer-open .sp-menu .drawer-hamburger .drawer-hamburger-icon:after {
  background: #fff;
}

.drawer--right.drawer-open .sp-menu .drawer-hamburger {
  left: 0;
}

@media screen and (max-width: 767px) {
  .drawer--right.drawer-open .sp-menu .drawer-hamburger {
    right: 290px;
  }
}
div.drawer-overlay {
  z-index: 10;
}

.drawer-open .drawer-overlay {
  z-index: 30;
}

.tag-list {
  display: flex;
  gap: 80px;
  width: 1000px;
  margin: 0 auto 80px;
  padding-top: 33px;
  border-top: 1px solid #b1b1b1;
}
@media screen and (max-width: 1024px) {
  .tag-list {
    width: auto;
    margin: 0 40px;
    padding: 33px 0 67px;
  }
}
@media screen and (max-width: 767px) {
  .tag-list {
    display: flex;
    flex-direction: column;
    width: auto;
    margin: 0 25px;
    padding: 33px 0 67px;
    gap: 14px;
  }
}
.tag-list__ttl {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #937c3c;
  position: relative;
  line-height: 1.5;
  height: 32px;
}
.tag-list__ttl:before {
  content: "";
  position: absolute;
  right: -56px;
  top: 50%;
  width: 36px;
  height: 1px;
  background-color: #937c3c;
}
@media screen and (max-width: 767px) {
  .tag-list__ttl:before {
    right: 0;
    left: 80px;
  }
}
.tag-list ul {
  display: flex;
  gap: 14px;
  color: #937c3c;
  flex-wrap: wrap;
}
.tag-list ul li {
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  background-color: rgba(147, 124, 60, 0.1);
  transition: all 0.3s ease;
}
.tag-list ul li:hover {
  opacity: 0.7;
}

.c-tag {
  width: fit-content;
  color: #937c3c;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
  background-color: rgba(147, 124, 60, 0.1);
}

/*js*/
.js-about,
.js-concept,
.js-mizen,
.js-person,
.js-product,
.js-achievements,
.js-news,
.js-news_cont,
.js-contents,
.js-planetary_health {
  opacity: 0;
}

/*-- common Animation --*/
.fadeIn_1s {
  animation: fadeIn 1s ease forwards;
}

.fadeIn_2s {
  animation: fadeIn 2s ease-in forwards;
}

.fadeIn_3s {
  animation: fadeIn 3s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInUp {
  animation: fadeInUp 0.5s 0.5s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*# sourceMappingURL=maps/style.css.map */
