@charset "UTF-8";
/*!* helpers parts *!*/
/*
	vars
*/
/* mixins */
/*!* components *!*/
/* reset */
/* set border-box for all */
*, *:before, *:after {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

/* cross-browser styles for root */
:root {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* appearance: none */
[type=reset], [type=submit], button,
input:not([type=checkbox]), input:not([type=radio]) {
  -webkit-appearance: none;
}

/* outline: none */
input, input:focus,
option, option:focus,
select, select:focus,
textarea:focus, textarea,
button, button:focus {
  outline: none;
}

/* bind height from :root */
:root, body {
  height: 100%;
}

/* reset address */
address {
  font-style: normal;
}

/* reset lists margin */
ul, dl, dd, dt {
  margin: 0;
}

/* reset ul padding */
ul {
  padding: 0;
}

/* reset list-style */
li {
  list-style: none;
}

/* reset text-decoration */
a[href] {
  text-decoration: none;
}

a[href]:hover {
  text-decoration: none;
}

/* set cursor pointer for accessibility */
a[href], button {
  word-break: break-all;
  cursor: pointer;
}

/* reset heading margin */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  word-break: break-all;
}

/* set default body styles */
body {
  min-height: 100%;
  position: relative;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: normal;
  color: #000;
  margin: 0;
  padding: 0;
  background-image: url("../images/bg.png");
  background-size: 75%;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    background-size: 10%;
  }
}

/* br fix */
.sm {
  display: none !important;
}
@media (max-width: 767px) {
  .sm {
    display: block !important;
  }
}

/* default class */
.wrapper {
  display: flex;
  flex-flow: column nowrap;
  max-width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.container {
  display: block;
  width: auto;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
.container_fluid {
  width: 100%;
  max-width: 100%;
}
.container:before, .container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media (max-width: 1110px) {
  .container {
    box-sizing: border-box;
  }
}

/* app */
.app {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 1px;
  flex-grow: 1;
  padding-top: 70px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .app {
    padding-top: 75px;
    padding-bottom: 44px;
  }
}
.app__title {
  display: block;
  font-weight: 700;
  font-size: 190px;
  line-height: 200px;
  text-indent: -10px;
  letter-spacing: -4.6px;
}
@media (max-width: 1439px) {
  .app__title {
    font-size: 13.1944444444vw;
    line-height: 13.8888888889vw;
    text-indent: -0.6944444444vw;
    letter-spacing: -0.3194444444vw;
  }
}
@media (max-width: 767px) {
  .app__title {
    font-size: 23.3333333333vw;
    line-height: 22.6666666667vw;
    text-indent: -1.3333333333vw;
    letter-spacing: -0.88vw;
  }
}
@media (max-width: 767px) {
  .app__title span {
    display: block;
    text-indent: -1.6vw;
  }
}
.app__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}

.title {
  display: block;
  font-size: 85px;
  line-height: 88px;
  letter-spacing: -1px;
  color: #000;
  font-weight: 700;
}
@media (max-width: 1259px) {
  .title {
    font-size: 75px;
    line-height: 78px;
  }
}
@media (max-width: 1023px) {
  .title {
    font-size: 65px;
    line-height: 67px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 32px;
    line-height: 34px;
  }
}

.inner {
  width: 100%;
  overflow-x: hidden;
}

.inner-white {
  width: 100%;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.inner-beige {
  width: 100%;
  background-color: #F1ECDF;
  margin-left: auto;
  margin-right: auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
a:hover {
  opacity: 0.75;
}

.lozad {
  opacity: 0;
  transition: opacity 1.5s;
}

.lozad[data-loaded=true] {
  opacity: 1;
}

/* btn */
.btn-reset {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.btn {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  padding: 15px 0;
  border: 3px solid #000;
  border-radius: 0;
  background-color: #fff;
  position: relative;
  text-align: center;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  transition-property: background, color;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  outline: none;
}

.btn-link {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #000;
  transition: opacity 0.4s;
  position: relative;
  padding-right: 38px;
}
@media (max-width: 767px) {
  .btn-link {
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 1.4px;
    padding-right: 20px;
  }
}
.btn-link:after {
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 25px;
  height: 11px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27.13 11.9'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23251e1c;stroke-miterlimit:10;stroke-width:1.16px;%7D%3C/style%3E%3C/defs%3E%3Cg %3E%3Cg%3E%3Cpolyline class='cls-1' points='0.41 0.41 5.95 5.95 0.41 11.49'/%3E%3Cpolyline class='cls-1' points='10.59 0.41 16.13 5.95 10.59 11.49'/%3E%3Cpolyline class='cls-1' points='20.76 0.41 26.3 5.95 20.76 11.49'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: 96% 50%;
  background-size: 27px 11px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .btn-link:after {
    width: 15px;
    height: 6px;
    background-size: 17px 6px;
  }
}
:root.hover .btn-link:hover {
  opacity: 0.7;
}

.to-top-btn {
  display: block;
  position: absolute;
  bottom: 139%;
  right: 2.3611111111vw;
  width: 10px;
  z-index: 40;
}
@media (max-width: 767px) {
  .to-top-btn {
    width: 5px;
    bottom: 120%;
    right: 4.5333333333vw;
  }
}
.to-top-btn img {
  display: block;
  width: 100%;
}

/*!* layout parts *!*/
/* header */
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 55px 55px;
}
@media (max-width: 767px) {
  .header {
    padding: 30px 0;
    min-height: 88.6666666667vw;
  }
}
.header__logo {
  position: relative;
  display: block;
  width: 202px;
  height: 62px;
  background: url("../images/minamisoma.svg") 0 0 no-repeat;
  background-size: contain;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .header__logo {
    min-width: 126px;
    width: 16.8vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.header__sitename {
  position: relative;
  width: 41.1111111111vw;
  max-width: 592px;
  top: 0;
  left: 0;
  right: 0;
  margin: 100px auto 180px;
  z-index: 2;
}
.header__sitename-img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .header__sitename {
    width: 72.2666666667vw;
    margin-top: 5.33vw;
    margin-bottom: 160px;
  }
}
.header__img {
  display: block;
  position: absolute;
}
.header__img-tl {
  left: -20px;
  top: 110px;
  max-width: 532px;
  width: 36.9444444444vw;
  z-index: 3;
}
@media (max-width: 767px) {
  .header__img-tl {
    width: 34.1333333333vw;
    top: 12px;
  }
}
.header__img-tr {
  top: 74px;
  right: 0;
  max-width: 458px;
  width: 31.8055555556vw;
  z-index: 3;
}
@media (max-width: 767px) {
  .header__img-tr {
    width: 29.3333333333vw;
  }
}
.header__img-bl {
  left: -20px;
  top: 587px;
  max-width: 568px;
  width: 39.4444444444vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .header__img-bl {
    width: 53.3333333333vw;
    top: 115vw;
  }
}
.header__img-br {
  right: 0;
  top: 404px;
  max-width: 480px;
  width: 33.3333333333vw;
  z-index: 3;
}
@media (max-width: 767px) {
  .header__img-br {
    width: 34.1333333333vw;
  }
}
.header__img-yonda {
  left: 59.0277777778vw;
  bottom: 170px;
  max-width: 310px;
  width: 21.5277777778vw;
  z-index: 3;
}
@media (max-width: 767px) {
  .header__img-yonda {
    bottom: 230px;
    left: auto;
    right: 2.27vw;
    width: 41.3333333333vw;
  }
}
.header__navi {
  margin: auto;
  width: 86.6666666667vw;
  max-width: 1200px;
  height: 120px;
  background: #fff;
  text-align: center;
  border-radius: 50px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__navi {
    border-radius: 10px;
    height: auto;
  }
}
.header__navi-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 0;
}
@media (max-width: 767px) {
  .header__navi-list {
    padding-top: 7.6vw;
    padding-bottom: 7.6vw;
    height: auto;
    gap: 3vw 0;
  }
}
.header__navi-item {
  display: inline-block;
  border-right: 1px solid #C9C9C9;
  width: 25%;
}
.header__navi-item:nth-child(4) {
  border: none;
}
@media (max-width: 767px) {
  .header__navi-item {
    padding: 0 4.67vw;
    width: 50%;
  }
  .header__navi-item:nth-child(even) {
    border: none;
  }
  .header__navi-item:nth-child(2) {
    border: none;
  }
}
.header__navi-item:last-child {
  border: none;
}
.header__navi-link {
  font-weight: 800;
  color: #000;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 767px) {
  .header__navi-link {
    font-size: 3vw;
  }
}
.header__navi-link::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #009944;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header__navi-link:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}
.header__nav-wrap {
  width: calc(100% - 223px);
  margin-left: auto;
}
@media (max-width: 1023px) {
  .header__nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 82px 25px 20px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
@media (max-width: 1023px) {
  .header__nav {
    display: block;
    max-width: 600px;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -17px;
  margin-right: -17px;
}
@media (max-width: 1259px) {
  .header__nav-list {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (max-width: 1023px) {
  .header__nav-list {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.header__nav-list + * {
  margin-left: 36px;
}
@media (max-width: 1259px) {
  .header__nav-list + * {
    margin-left: 28px;
  }
}
@media (max-width: 1023px) {
  .header__nav-list + * {
    margin-left: 0;
  }
}
.header__nav-item {
  display: block;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 1023px) {
  .header__nav-item {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.53' height='17.64' viewBox='0 0 9.53 17.64'%3E%3Cpath style='fill:none;stroke:%23fff;stroke-miterlimit:10' d='m.35.35 8.47 8.47-8.47 8.47'/%3E%3C/svg%3E");
    background-position: 96% 50%;
    background-size: 5px 9px;
    background-repeat: no-repeat;
    border-bottom: 1px solid #fff;
  }
  .header__nav-item:first-child {
    border-top: 1px solid #fff;
  }
}
:root.hover .header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-item-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 23px 17px;
  display: block;
  color: #000;
}
@media (max-width: 1259px) {
  .header__nav-item-link {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1023px) {
  .header__nav-item-link {
    color: #fff;
    width: 100%;
    text-align: left;
    padding: 14px 20px 14px 0;
    font-size: 26px;
    line-height: 30px;
  }
}
.header__nav-item-link:hover {
  opacity: 0.75;
}
.header__nav-social-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 1;
}
@media (max-width: 1023px) {
  .header__nav-social-list {
    display: block;
  }
}
.header__nav-social-item {
  min-width: 44px;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 1023px) {
  .header__nav-social-item {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.53' height='17.64' viewBox='0 0 9.53 17.64'%3E%3Cpath style='fill:none;stroke:%23fff;stroke-miterlimit:10' d='m.35.35 8.47 8.47-8.47 8.47'/%3E%3C/svg%3E");
    background-position: 96% 50%;
    background-size: 5px 9px;
    background-repeat: no-repeat;
    border-bottom: 1px solid #fff;
  }
  .header__nav-social-item:first-child {
    border-top: 1px solid #fff;
  }
}
:root.hover .header__nav-social-item:hover {
  opacity: 0.7;
}

.header__nav-social-item-link {
  display: block;
  padding: 15px 10px;
}
@media (max-width: 1023px) {
  .header__nav-social-item-link {
    padding: 14.4px 20px 15px 0;
  }
  .header__nav-social-item-link svg,
  .header__nav-social-item-link path {
    fill: #fff;
  }
}

.hamburger-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: none;
  border: none;
  background-color: #000;
  z-index: 20;
  transition: opacity 0.4s;
  animation: 2s opacity linear;
}
:root.hover .hamburger-btn:hover {
  opacity: 0.8;
}

@media (max-width: 1023px) {
  .hamburger-btn {
    display: flex;
  }
}
.hamburger-btn.active {
  background-color: #fff;
}
.hamburger-btn.active .hamburger-btn__line {
  margin-top: 0;
  background-color: #000;
}
.hamburger-btn.active .hamburger-btn__line.first {
  transform: rotate(45deg) translate(1px, 1px);
}
.hamburger-btn.active .hamburger-btn__line.second {
  transform: rotate(-45deg);
}
.hamburger-btn.active .hamburger-btn__line.third {
  opacity: 0;
}
.hamburger-btn.active .hamburger-btn__desc {
  display: none;
}
.hamburger-btn__line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin-top: 6px;
  transition: 0.5s;
  transform-origin: 50% 50%;
}
.hamburger-btn__line.first {
  margin-top: 0;
}
.hamburger-btn__desc {
  font-size: 8px;
  line-height: 10px;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 700;
  margin-top: 8px;
  transition: opacity 0.4s;
}

/* footer */
.footer {
  margin-top: auto;
  color: #fff;
  font-size: 16px;
  background: #006837 url("../images/footer-bg.png") 0 0 repeat;
  background-size: 75%;
  padding: 60px 30px 55px;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    font-size: 8px;
    padding: 14.4vw 0 11.73vw;
  }
}
.footer__follow-image {
  width: 287px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__follow-image {
    width: 47.47vw;
  }
}
.footer__follow-title {
  margin: 30px auto 0;
  width: max-content;
  font-size: 57px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  position: relative;
}
@media (max-width: 767px) {
  .footer__follow-title {
    font-size: 9.47vw;
    margin-top: 4.4vw;
  }
}
.footer__follow-title::after {
  content: "";
  background-image: url(../images/footer/shitene.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 98px;
  height: 73px;
  position: absolute;
  bottom: calc(50% - 8px);
  right: -70px;
}
@media (max-width: 767px) {
  .footer__follow-title::after {
    width: 15.07vw;
    height: 10.4vw;
    bottom: 50%;
    right: -8vw;
  }
}
.footer__follow-list {
  display: flex;
  justify-content: between;
  width: max-content;
  margin: 45px auto 0;
}
@media (max-width: 767px) {
  .footer__follow-list {
    margin-top: 6.67vw;
  }
}
.footer__follow-item {
  width: 45px;
  height: 45px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .footer__follow-item {
    width: 7.6vw;
    height: 7.6vw;
  }
}
.footer__follow-item + .footer__follow-item {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .footer__follow-item + .footer__follow-item {
    margin-left: 4.67vw;
  }
}
.footer__follow-item.facebook {
  background-image: url(../images/footer/facebook.svg);
}
.footer__follow-item.youtube {
  background-image: url(../images/footer/youtube.svg);
}
.footer__follow-item.insta {
  background-image: url(../images/footer/instagram.svg);
}
.footer__minamisoma-link {
  display: block;
  width: max-content;
  position: absolute;
  left: 30px;
  bottom: 50px;
  max-width: 37vw;
}
.footer__minamisoma-link p {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer__minamisoma-link {
    position: relative;
    margin: 10.67vw auto 0;
    left: 0;
    bottom: auto;
    top: 0;
    max-width: 100%;
  }
  .footer__minamisoma-link p {
    font-size: 13px;
  }
}
.footer__minamisoma-img {
  width: 15.2777777778vw;
  max-width: 220px;
  display: block;
}
@media (max-width: 767px) {
  .footer__minamisoma-img {
    width: 29.4666666667vw;
    max-width: 221px;
  }
}
.footer__minauma {
  width: 13.6vw;
  max-width: 204px;
  display: block;
  margin: 55px auto 0;
}
@media (max-width: 767px) {
  .footer__minauma {
    width: 34vw;
    max-width: 255px;
    margin-top: 12vw;
  }
}
.footer__privacy {
  position: absolute;
  left: 30px;
  bottom: 25px;
}
@media (max-width: 767px) {
  .footer__privacy {
    left: 6.67vw;
    bottom: 4vw;
  }
}
.footer__privacy-link[href] {
  color: #fff;
  text-decoration: underline;
}
.footer__privacy-link[href]:hover {
  text-decoration: none;
  opacity: 1;
}
.footer__copyright {
  position: absolute;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 767px) {
  .footer__copyright {
    bottom: 4vw;
    right: 6.67vw;
  }
}
.footer .pagetop {
  display: block;
  background-image: url(../images/footer/pagetop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  width: max-content;
  height: 100px;
  position: fixed;
  bottom: 40px;
  right: 65px;
  z-index: 9999;
}
.footer .pagetop__text {
  width: 100%;
  text-align: center;
  color: #603813;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.075em;
}
.footer .pagetop__text.white {
  color: #fff;
}
@media (max-width: 767px) {
  .footer .pagetop__text {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .footer .pagetop {
    height: 60px;
    bottom: 4vw;
    right: 4vw;
  }
}

.section {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 1023px) {
  .section {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.section__title {
  color: #009944;
  font-size: 57px;
  text-align: center;
  position: relative;
  display: block;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 8vw;
  }
}
.section__title-red {
  color: #cf2521;
}
.section__title .small {
  font-size: 44px;
}
@media (max-width: 767px) {
  .section__title .small {
    font-size: 5vw;
  }
}

.news__block {
  padding-bottom: 20px;
  border-bottom: 1px solid #009944;
  display: flex;
  flex-wrap: nowrap;
}
.news__block-title {
  display: block;
  width: 80px;
  color: #009944;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .news__block-title {
    width: 13.33vw;
    font-size: 3.2vw;
  }
}
.news__block-list {
  display: inline-block;
  width: calc(100% - 80px);
}
@media (max-width: 767px) {
  .news__block-list {
    width: calc(100% - 14vw);
  }
}
.news__block-list-item {
  display: flex;
}
.news__block-list-item + .news__block-list-item {
  margin-top: 15px;
}
.news__block-list-item-date {
  width: 155px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .news__block-list-item-date {
    width: 23.47vw;
    font-size: 3.2vw;
  }
}
.news__block-list-item-content {
  width: calc(100% - 155px);
  color: #000;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.38;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .news__block-list-item-content {
    width: calc(100% - 23.47vw);
    font-size: 3.73vw;
  }
}
.news__title {
  text-align: left;
}
.news__headding {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.75;
}
.news__desctiption {
  line-height: 2.22;
}

a.text-link {
  display: flex;
  width: 100%;
}

a.text-link:link,
a.text-link:visited {
  color: #009944;
  position: relative;
  background-image: linear-gradient(90deg, #F2D78C, #F2D78C);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 30%;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
}

.news__block-list-item-more {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

a.text-link:hover {
  background-size: 100% 30%;
  /* '30%'の部分は上で設定した太さに合わせる */
}

.news__block-list-item-more:after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid #009944;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  margin-left: 0.5rem;
}

/* ## newsletter ## */
.newsletter .safety__image-title {
  width: 222px;
}

body.detail_safety .newsletter .structure__situ__title::after, body.detail_safety .newsletter .structure__situ__title::before {
  max-width: 330px;
}
@media (max-width: 767px) {
  body.detail_safety .newsletter .structure__situ__title::after, body.detail_safety .newsletter .structure__situ__title::before {
    width: 25vw;
  }
}
@media (max-width: 767px) {
  body.detail_safety .newsletter .news__block-list-item a .news__block-list-item-date {
    width: auto;
    white-space: nowrap;
  }
}

.newsletter #news {
  padding: 0;
}
@media (max-width: 767px) {
  .newsletter .news__block-list-item a:hover {
    background: none;
  }
  .newsletter .news__block-list-item a .news__block-list-item-date,
  .newsletter .news__block-list-item a .news__block-list-item-content {
    width: 100%;
  }
}

.about, .crop {
  margin-top: 135px;
  position: relative;
}
@media (max-width: 767px) {
  .about, .crop {
    margin-top: 6.67vw;
  }
}
.about__image-whats, .crop__image-whats {
  position: absolute;
  top: -60px;
  left: calc(50% - 67px);
  width: 384px;
  height: auto;
}
@media (max-width: 767px) {
  .about__image-whats, .crop__image-whats {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    max-width: 384px;
    width: 51.2vw;
    margin: 0 auto;
  }
}
.about__image-tomato, .crop__image-tomato {
  position: absolute;
  top: 20px;
  left: calc(50% + 135px);
  width: 536px;
  height: auto;
}
@media (max-width: 767px) {
  .about__image-tomato, .crop__image-tomato {
    position: relative;
    display: block;
    top: 0;
    left: auto;
    margin-left: auto;
    margin-right: 0;
    margin-top: 10.67vw;
    max-width: 536px;
    width: 71.4666666667vw;
  }
}
.about__title, .crop__title {
  text-align: left;
  line-height: 1;
}
@media (max-width: 767px) {
  .about__title, .crop__title {
    margin-top: 10.67vw;
  }
}
.about__heading, .crop__heading {
  margin-top: 35px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .about__heading, .crop__heading {
    margin-top: 8.67vw;
    font-size: 5.6vw;
    letter-spacing: 0;
  }
}
.about__desctiption, .crop__desctiption {
  margin-top: 45px;
  line-height: 2.22;
}
@media (max-width: 767px) {
  .about__desctiption, .crop__desctiption {
    margin-top: 9.33vw;
    font-size: 3.47vw;
    line-height: 1.92;
  }
}

.activity {
  padding-top: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .activity {
    padding-top: 14.67vw;
  }
}
.activity__title {
  font-size: 40px;
}
@media (max-width: 767px) {
  .activity__title {
    font-size: 6.67vw;
  }
}
.activity__list {
  width: max-content;
  max-width: 100%;
  margin: 40px auto 0;
}
.activity__list:before, .activity__list:after {
  content: "";
  display: table;
}
.activity__list:after {
  clear: both;
}
@media (max-width: 767px) {
  .activity__list {
    margin-top: 20px;
  }
}
.activity__item {
  float: left;
  max-width: 230px;
  width: 21.25vw;
  position: relative;
  overflow: hidden;
  margin: 0 20px 0 0;
}
.activity__item:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .activity__item {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
  }
}
.activity__item-img {
  width: 100%;
}
.activity__item-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0.5em 0;
}
@media (max-width: 767px) {
  .activity__item-title {
    font-size: 19px;
  }
}
.activity__item-desc {
  font-size: 16px;
  line-height: 1.66;
}
@media (max-width: 767px) {
  .activity__item-desc {
    font-size: 13px;
  }
}
.activity__image-paprica {
  position: absolute;
  top: -68px;
  left: -40px;
  transform: translateX(-100%);
  width: 209px;
  height: auto;
}
@media (max-width: 767px) {
  .activity__image-paprica {
    top: -75vw;
    left: -10px;
    transform: none;
    max-width: 209px;
    width: 27.8666666667vw;
  }
}

.fig__imagelist {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 25% 1fr 1fr 1fr;
}
.fig__imagelist img {
  width: 100%;
  height: auto;
  aspect-ratio: 563/371;
  object-fit: cover;
}

.fm .news__block-list-item-date {
  width: 180px;
}

.vegetables {
  position: relative;
  margin-top: 95px;
}
@media (max-width: 767px) {
  .vegetables {
    margin-top: 30px;
  }
}
.vegetables__image-paprica {
  position: absolute;
  top: -68px;
  left: -40px;
  transform: translateX(-100%);
  width: 209px;
  height: auto;
}
@media (max-width: 767px) {
  .vegetables__image-paprica {
    top: -75vw;
    left: -10px;
    transform: none;
    max-width: 209px;
    width: 27.8666666667vw;
  }
}
.vegetables__image-title {
  display: block;
  margin: 0 auto;
  width: 275px;
  height: auto;
}
@media (max-width: 767px) {
  .vegetables__image-title {
    width: 36.6666666667vw;
    max-width: 275px;
  }
}
.vegetables .section__title {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .vegetables .section__title {
    margin-top: 5.33vw;
  }
}
.vegetables__image-delicious {
  position: absolute;
  right: -10.0694444444vw;
  top: 44px;
  max-width: 382px;
  width: 26.5277777778vw;
  z-index: 1;
}
@media (max-width: 1259px) {
  .vegetables__image-delicious {
    right: -4.76vw;
  }
}
@media (max-width: 767px) {
  .vegetables__image-delicious {
    display: block;
    margin: 5.87vw auto 0;
    position: relative;
    top: 0;
    left: 0;
    max-width: 382px;
    width: 50.9333333333vw;
  }
}
.vegetables__list {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .vegetables__list {
    margin-top: 9.33vw;
  }
}
.vegetables__item {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .vegetables__item {
    display: block;
  }
}
.vegetables__item + .vegetables__item {
  margin-top: 95px;
}
@media (max-width: 767px) {
  .vegetables__item + .vegetables__item {
    margin-top: 8.67vw;
  }
}
.vegetables__item-text {
  width: 36%;
}
@media (max-width: 767px) {
  .vegetables__item-text {
    width: 100%;
  }
}
.vegetables__item-text-caption {
  color: #000;
  font-size: 57px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .vegetables__item-text-caption {
    font-size: 8vw;
    letter-spacing: 0.2em;
  }
}
.vegetables__item-text-desc {
  margin-top: 50px;
  color: #000;
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .vegetables__item-text-desc {
    margin-top: 6.67vw;
    font-size: 3.47vw;
    line-height: 1.92;
  }
}
.vegetables__item-text-image {
  margin-top: 35px;
  width: 100%;
}
.vegetables__item-text-image img {
  display: block;
  width: 100%;
  height: auto;
}
.vegetables__item-image {
  width: 58.5%;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .vegetables__item-image {
    width: 100%;
    margin-top: 6.67vw;
  }
}
.vegetables__item-image img {
  display: block;
  width: 100%;
  height: auto;
}
.vegetables__item .left {
  order: 1;
}
.vegetables__item .right {
  order: 2;
}

.producer {
  margin-top: 5px;
  padding-top: 80px;
  position: relative;
  padding-bottom: 250px;
}
@media (max-width: 767px) {
  .producer {
    margin-top: 13.33vw;
    padding-top: 13.33vw;
    padding-bottom: 0;
  }
}
.producer::before {
  content: "";
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  height: 100%;
  border-radius: 400px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .producer::before {
    width: calc(100% - 50px);
  }
}
.producer__image-title {
  width: 342px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .producer__image-title {
    width: 45.4666666667vw;
    max-width: 341px;
  }
}
.producer .section__title {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .producer .section__title {
    margin-top: 3.73vw;
  }
}
.producer__list {
  margin-top: 54px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .producer__list {
    margin-top: 10.67vw;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 37.33vw;
    display: block;
  }
}
.producer__list.--2col {
  margin-top: 20px;
}
.producer__list.--2col .producer__item {
  width: 30%;
}
@media (max-width: 767px) {
  .producer__list.--2col .producer__item {
    width: 100%;
  }
}
.producer__list.--2col .producer__item:nth-child(n+3) {
  margin-top: 0px;
}
@media (max-width: 767px) {
  .producer__list.--2col .producer__item:nth-child(n+3) {
    margin-top: 6vw;
  }
}
.producer__item {
  width: 48%;
}
@media (max-width: 767px) {
  .producer__item {
    width: 100%;
  }
  .producer__item + .producer__item {
    margin-top: 6vw;
  }
}
.producer__item:nth-child(n+3) {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .producer__item:nth-child(n+3) {
    margin-top: 6vw;
  }
}
.producer__item-movie {
  width: 100%;
  height: 270px;
  position: relative;
}
.producer__item-movie.--ar169 {
  height: auto;
  aspect-ratio: 16/9;
}
.producer__item-movie iframe {
  width: 100%;
  height: 100%;
}
.producer__item-movie a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.producer__item-movie a img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .producer__item-movie a {
    display: none;
  }
}
@media (max-width: 767px) {
  .producer__item-movie {
    height: 41.2vw;
  }
}
.producer__item-text {
  margin-top: 17px;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .producer__item-text {
    margin-top: 2.67vw;
    font-size: 4.27vw;
  }
}
.producer__image-lettuce {
  position: absolute;
  bottom: -86px;
  right: -10.2777777778vw;
  max-width: 466px;
  width: 32.3611111111vw;
  z-index: -1;
}
@media (max-width: 767px) {
  .producer__image-lettuce {
    bottom: -14.93vw;
    right: 7.3333333333vw;
    width: 62.1333333333vw;
  }
}

.modal-video-body {
  max-width: none !important;
  width: 90% !important;
}

.introduction {
  margin: 0 auto;
  max-width: 1440px;
  padding-bottom: 105px;
  position: relative;
}
@media (max-width: 767px) {
  .introduction {
    padding-top: 5.33vw;
    padding-bottom: 5.87vw;
  }
}
.introduction__image-title {
  width: 406px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .introduction__image-title {
    transform: none;
    width: 54.1333333333vw;
    max-width: 406px;
  }
}
.introduction .section__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .introduction .section__title {
    margin-top: 4vw;
  }
}
.introduction__content {
  position: relative;
  margin-top: 58px;
}
@media (max-width: 767px) {
  .introduction__content {
    margin-top: 10.67vw;
  }
}
.introduction__content-text {
  max-width: 688px;
  width: 54%;
  position: absolute;
  top: 0;
  left: calc(50% - 60px);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -1px;
  z-index: 10;
}
@media (max-width: 767px) {
  .introduction__content-text {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    font-size: 3.47vw;
    line-height: 1.54;
  }
}
.introduction__content-image {
  position: relative;
  top: 0;
  left: 0;
  max-width: 1350px;
  width: 93.75vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .introduction__content-image {
    left: -25px;
    margin-top: 12vw;
    max-width: 750px;
    width: calc(100% + 50px);
  }
}
.introduction .modalitem {
  transition: 1s;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  padding: 22px;
  opacity: 0;
  transition: 0.5s;
  z-index: 99;
  pointer-events: none;
}
@media (max-width: 767px) {
  .introduction .modalitem {
    width: 98%;
    top: calc(100% - 20px);
    transform: translate(-50%, -100%);
  }
}
.introduction .modalitem.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}
.introduction .modalitem a:link,
.introduction .modalitem a:visited {
  color: #e75a23;
  text-decoration: underline;
  cursor: pointer;
}
.introduction .modalitem .modalitem-content {
  display: flex;
}
@media (max-width: 767px) {
  .introduction .modalitem .modalitem-content {
    flex-direction: column;
  }
}
.introduction .modalitem .modalitem-content > div {
  width: calc(100% - 360px);
}
@media (max-width: 767px) {
  .introduction .modalitem .modalitem-content > div {
    width: 100%;
  }
}
.introduction .modalitem p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .introduction .modalitem p {
    font-size: 3.47vw;
    line-height: 1.92;
  }
}
.introduction .modalitem .spot__areaname {
  background-color: #e75a23;
  color: #fff;
  padding: 5px 1rem 8px;
  display: inline-block;
  letter-spacing: 0.2em;
  line-height: 1;
  font-weight: 600;
}
.introduction .modalitem .spot__title {
  margin-top: -1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  color: #e75a23;
  font-size: 30px;
  text-align: center;
  position: relative;
  display: block;
  letter-spacing: 0.2em;
  border-bottom: 1px solid #e75a23;
}
@media (max-width: 767px) {
  .introduction .modalitem .spot__title {
    font-size: 3.47vw;
  }
}
.introduction .modalitem figure {
  margin: 0;
  width: 600px;
  display: flex;
  align-items: flex-end;
  padding-left: 20px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .introduction .modalitem figure {
    display: block;
    width: 100%;
  }
}
.introduction .modalitem figure img {
  width: 100%;
  height: auto;
}
.introduction .modalitem .modalclose {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .introduction .modalitem .modalclose {
    top: 15px;
  }
}
.introduction .modalitem .modalclose .modalcloseinner {
  position: relative;
}
.introduction .modalitem .modalclose:after, .introduction .modalitem .modalclose:before {
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #e75a23;
  position: absolute;
  top: 50%;
}
.introduction .modalitem .modalclose:after {
  transform: rotate(-45deg);
  left: 0;
}
.introduction .modalitem .modalclose:before {
  transform: rotate(45deg);
  right: 0;
}

.intro {
  margin-top: 100px;
}
.safety {
  padding-top: 50px;
  padding-bottom: 78px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .safety {
    padding-top: 12vw;
    padding-bottom: 11.47vw;
  }
}
.safety__image-title {
  width: 282px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.safety__image-title.--umatalk {
  width: 400px;
}
@media (max-width: 767px) {
  .safety__image-title {
    width: 37.6vw;
  }
}
.safety .section__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .safety .section__title {
    margin-top: 4.4vw;
    display: block;
  }
}
.safety__image-chive {
  display: block;
  position: absolute;
  left: -12.2222222222vw;
  top: -30px;
  max-width: 312px;
  width: 21.6666666667vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .safety__image-chive {
    left: -8.4vw;
    top: 35px;
    max-width: 247px;
    width: 32.9333333333vw;
  }
}
.safety__image-cauliflower {
  display: block;
  position: absolute;
  right: -18.5416666667vw;
  top: -84px;
  max-width: 338px;
  width: 23.4722222222vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .safety__image-cauliflower {
    right: -10.8vw;
    top: -18px;
    max-width: 268px;
    width: 35.7333333333vw;
  }
}
.safety__content {
  margin-top: 90px;
  position: relative;
}
@media (max-width: 767px) {
  .safety__content {
    margin-top: 10.27vw;
  }
}
.safety__content-text {
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: 2.22;
  letter-spacing: 0.05em;
  width: 46%;
}
@media (max-width: 767px) {
  .safety__content-text {
    font-size: 3.47vw;
    line-height: 1.92;
    width: 100%;
  }
}
.safety__content-btn {
  display: block;
  width: 260px;
  height: 50px;
  margin-top: 45px;
  border-radius: 30px;
  background-color: #00a0e9;
  color: #fff;
  font-size: 17px;
  line-height: 50px;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
}
.safety__content-btn.--w100 {
  width: 100%;
}
@media (max-width: 767px) {
  .safety__content-btn {
    margin: 20px auto 0;
  }
}
.safety__content-btn::after {
  content: "";
  background-image: url(../images/safety/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.safety__content-image1 {
  position: relative;
  left: -4.7222222222vw;
  top: 0;
  margin-top: 35px;
  max-width: 520px;
  width: 36.1111111111vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .safety__content-image1 {
    left: -25px;
    top: 0;
    margin-top: 30.93vw;
    max-width: 302px;
    width: 40.2666666667vw;
  }
}
.safety__content-image2 {
  position: absolute;
  left: 50%;
  top: 0;
  max-width: 720px;
  width: 50vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .safety__content-image2 {
    position: absolute;
    left: auto;
    right: -25px;
    top: auto;
    bottom: 12.93vw;
    max-width: 418px;
    width: 55.7333333333vw;
  }
}

.instagram {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .instagram {
    padding-top: 14vw;
  }
}
@media (max-width: 767px) {
  .instagram .section__title {
    font-size: 5.33vw;
  }
}
.instagram__content {
  margin-top: 45px;
  height: 320px;
}
.instagram__content iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .instagram__content {
    margin-top: 6.93vw;
    height: 27.73vw;
  }
}

.link {
  padding: 93px 0 255px;
  position: relative;
}
@media (max-width: 767px) {
  .link {
    padding: 14.67vw 0 35.33vw;
  }
}
@media (max-width: 767px) {
  .link .section__title {
    font-size: 5.33vw;
  }
}
.link__list {
  margin: 45px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .link__list {
    margin-top: 6.67vw;
  }
}
.link__item {
  width: 31%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .link__item {
    width: 48%;
  }
}
.link__item-content {
  display: block;
  width: 100%;
}
.link__item-content img {
  width: 100%;
  height: auto;
}
.link__image-meat {
  position: absolute;
  right: -5vw;
  bottom: -65px;
  max-width: 496px;
  width: 34.4444444444vw;
  z-index: 1;
}
@media (max-width: 1259px) {
  .link__image-meat {
    right: 0;
  }
}
@media (max-width: 767px) {
  .link__image-meat {
    right: 50%;
    bottom: -9.07vw;
    transform: translateX(50%);
    max-width: 492px;
    width: 65.6vw;
  }
}

@media (max-width: 767px) {
  body.detail_safety .header {
    padding: 30px 25px;
    min-height: auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  body.detail_safety .header .header__logo {
    margin: 0 0 30px;
  }
}
body.detail_safety .header__sitename {
  display: block;
  position: relative;
  width: 325px;
  top: 0;
  left: 0;
  margin: -50px auto 30px;
  z-index: 2;
}
body.detail_safety .header__sitename-img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  body.detail_safety .header__sitename {
    width: 45.0666666667vw;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: auto;
    right: 25px;
  }
}
@media (max-width: 767px) {
  body.detail_safety .safety {
    padding-top: 0;
    padding-bottom: 19.6vw;
  }
}
body.detail_safety .structure {
  margin: 0 auto;
  padding-top: 60px;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 767px) {
  body.detail_safety .structure {
    padding-top: 8vw;
  }
}
body.detail_safety .structure + .structure {
  margin-top: 50px;
  border-top: 1px solid #009944;
}
@media (max-width: 767px) {
  body.detail_safety .structure + .structure {
    margin-top: 9.6vw;
  }
}
body.detail_safety .structure__title {
  width: max-content;
  margin: 0 auto;
  color: #CF2521;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  body.detail_safety .structure__title {
    font-size: 5.33vw;
  }
}
body.detail_safety .structure__title .small {
  font-size: 36px;
}
@media (max-width: 767px) {
  body.detail_safety .structure__title .small {
    font-size: 4vw;
  }
}
body.detail_safety .structure__image {
  display: block;
  margin: 35px auto 0;
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
  background-color: #fff;
}
@media (max-width: 767px) {
  body.detail_safety .structure__image {
    margin-top: 4.93vw;
    border-radius: 13px;
  }
}
body.detail_safety .structure__image.rice {
  padding: 25px 0 30px;
}
@media (max-width: 767px) {
  body.detail_safety .structure__image.rice {
    padding: 3.47vw 0 3.73vw;
  }
}
body.detail_safety .structure__image.rice img {
  display: block;
  margin: 0 auto;
  width: 83.4%;
}
@media (max-width: 767px) {
  body.detail_safety .structure__image.rice img {
    width: 96%;
  }
}
body.detail_safety .structure__image.vege {
  padding: 50px 0 25px;
}
@media (max-width: 767px) {
  body.detail_safety .structure__image.vege {
    padding: 4.27vw 0 3.47vw;
  }
}
body.detail_safety .structure__image__list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.detail_safety .structure__image__item {
  width: 31%;
  position: relative;
}
body.detail_safety .structure__image__item img {
  width: 100%;
  height: auto;
}
body.detail_safety .structure__image__item .caption {
  display: block;
  width: max-content;
  height: 46px;
  margin: 14px auto 0;
  padding: 0 15px;
  background-color: #FDE37C;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 46px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  body.detail_safety .structure__image__item .caption {
    height: 6vw;
    margin: 2.8vw auto 0;
    padding: 0 2vw;
    font-size: 3vw;
    line-height: 6vw;
    letter-spacing: -1px;
  }
}
body.detail_safety .structure__image__item + .structure__image__item ::before {
  content: "";
  background-image: url(../images/detail/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 46px;
  position: absolute;
  bottom: 0;
  left: -1%;
  transform: translateX(-100%);
}
@media (max-width: 767px) {
  body.detail_safety .structure__image__item + .structure__image__item ::before {
    width: 1.6vw;
    height: 6vw;
  }
}
body.detail_safety .structure__text {
  margin: 30px auto 0;
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  body.detail_safety .structure__text {
    margin-top: 5.33vw;
    font-size: 4.4vw;
    text-align: left;
  }
}
body.detail_safety .structure__situ {
  margin-top: 50px;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ {
    margin-top: 5.33vw;
  }
}
body.detail_safety .structure__situ__title {
  margin: 0 auto;
  color: #000;
  font-size: 22.5px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__title {
    font-size: 4.4vw;
    line-height: 1.51;
  }
}
body.detail_safety .structure__situ__title::before, body.detail_safety .structure__situ__title::after {
  position: absolute;
  top: 48%;
  max-width: 180px;
  width: 12.5vw;
  border-top: 3px dotted #009944;
  content: "";
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__title::before, body.detail_safety .structure__situ__title::after {
    max-width: 41px;
    width: 5.4666666667vw;
    top: 23%;
  }
}
body.detail_safety .structure__situ__title::before {
  left: 0;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__title::before {
    left: -2%;
  }
}
body.detail_safety .structure__situ__title::after {
  right: 0;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__title::after {
    right: -2%;
  }
}
body.detail_safety .structure__situ__table {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table {
    margin-top: 4vw;
    display: block;
  }
}
body.detail_safety .structure__situ__table.rice .structure__situ__table__place {
  width: 57%;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table.rice .structure__situ__table__place {
    width: 100%;
    margin: 0 auto;
  }
}
body.detail_safety .structure__situ__table.rice .structure__situ__table__result {
  width: 38%;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table.rice .structure__situ__table__result {
    width: 100%;
    margin: 0 auto;
  }
}
body.detail_safety .structure__situ__table.vege .structure__situ__table__place {
  width: 53%;
}
@media (max-width: 767px) and (max-width: 767px) {
  body.detail_safety .structure__situ__table.vege .structure__situ__table__place {
    width: 100%;
    margin: 0 auto;
  }
}
body.detail_safety .structure__situ__table.vege .structure__situ__table__result {
  width: 43%;
}
@media (max-width: 767px) and (max-width: 767px) {
  body.detail_safety .structure__situ__table.vege .structure__situ__table__result {
    width: 100%;
    margin: 0 auto;
  }
}
body.detail_safety .structure__situ__table .table_title {
  height: 19px;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table .table_title {
    height: auto;
    margin-top: 4.8vw;
    font-size: 4vw;
    white-space: nowrap;
    margin-bottom: 2.67vw;
  }
}
body.detail_safety .structure__situ__table .table_result {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table .table_result {
    margin-left: 0 auto;
  }
}
body.detail_safety .structure__situ__table .table_result tr + tr {
  border-top: 0.5px solid #009944;
}
body.detail_safety .structure__situ__table .table_result th, body.detail_safety .structure__situ__table .table_result td {
  height: 60px;
  padding: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table .table_result th, body.detail_safety .structure__situ__table .table_result td {
    height: 9.07vw;
    padding: 3.07vw;
    font-size: 3.07vw;
  }
}
body.detail_safety .structure__situ__table .table_result th.height2, body.detail_safety .structure__situ__table .table_result td.height2 {
  height: 120px;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table .table_result th.height2, body.detail_safety .structure__situ__table .table_result td.height2 {
    height: 9.07vw;
  }
}
body.detail_safety .structure__situ__table .table_result th {
  width: 150px;
  background-color: #FDE37C;
  text-align: center;
}
body.detail_safety .structure__situ__table .table_result td {
  background-color: #FFF;
}
body.detail_safety .structure__situ__table .table_result td.center {
  text-align: center;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table__place .table_title {
    display: none;
  }
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table__place .table_result th {
    width: 26%;
  }
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table__result .table_result {
    width: 67%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table__result .table_result th {
    width: 36%;
  }
}
body.detail_safety .structure__situ__table .table_notice {
  display: block;
  width: calc(100% - 150px);
  margin: 8px auto 0;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  float: right;
}
@media (max-width: 767px) {
  body.detail_safety .structure__situ__table .table_notice {
    width: 100%;
    font-size: 2.53vw;
  }
}

@media (max-width: 767px) {
  .detail_crop .header {
    padding: 30px 25px;
    min-height: auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  .detail_crop .header .header__logo {
    margin: 0 0 30px;
  }
}
.detail_crop .header__sitename {
  display: block;
  position: relative;
  width: 325px;
  top: 0;
  left: 0;
  margin: -50px auto 30px;
  z-index: 2;
}
.detail_crop .header__sitename-img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .detail_crop .header__sitename {
    width: 45.0666666667vw;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: auto;
    right: 25px;
  }
}
.detail_crop .crop {
  padding-top: 50px;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .detail_crop .crop {
    padding-top: 0;
    padding-bottom: 2vw;
  }
}
.detail_crop .crop .about__heading {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .detail_crop .crop .about__heading + .about_meta {
    display: block;
  }
}
.detail_crop .crop .about__heading + .about_meta .meta__area {
  margin-right: 1em;
}
.detail_crop .crop .about__heading + .about_meta .meta__name {
  text-align: center;
}
.detail_crop .crop .about_meta {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail_crop .crop .about_meta .meta__area span {
  display: inline-block;
  font-size: 17px;
  line-height: 24px;
  background-color: #db6418;
  color: #fff;
  border-radius: 1em;
  letter-spacing: 0.3em;
  padding: 0 0.8em 0.1em 1em;
}
.detail_crop .crop .about_meta .meta__name {
  text-align: left;
}
.detail_crop .crop .about_meta .meta__name span {
  display: inline-block;
  font-weight: 800;
  line-height: 1.7;
  font-size: 22px;
}
.detail_crop .section__title {
  color: #b82521;
}
.detail_crop .hero__image {
  display: flex;
  margin: 35px auto 0;
  width: 100%;
  height: auto;
  align-items: center;
}
.detail_crop .hero__image:before, .detail_crop .hero__image::after {
  content: "";
  background-color: #db6418;
  display: inline-block;
  height: 400px;
  width: 100%;
}
@media (max-width: 767px) {
  .detail_crop .hero__image:before, .detail_crop .hero__image::after {
    height: 40vw;
  }
}
@media (max-width: 767px) {
  .detail_crop .hero__image {
    margin-top: 4.93vw;
    border-radius: 13px;
  }
}
.detail_crop .hero__image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: 533px;
}
@media (max-width: 767px) {
  .detail_crop .hero__image img {
    width: 100%;
    max-width: 96%;
    height: auto;
  }
}
.detail_crop .crop__content-text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.22;
  letter-spacing: 0.05em;
}
.detail_crop .crop__content-text p:not(:last-child) {
  margin-bottom: 2rem;
}
.detail_crop .crop__content-image {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.detail_crop .crop__content-image.col2 img {
  width: calc(50% - 10px);
  height: auto;
}
.detail_crop .crop__content-image img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
}
@media (max-width: 767px) {
  .detail_crop .link__item {
    width: 100%;
  }
}
.detail_crop .structure {
  margin: 0 auto 55px;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 767px) {
  .detail_crop .structure {
    margin: 0 auto 0 !important;
  }
}
.detail_crop .structure.crop__footer {
  max-width: 100%;
  background-color: #db6418;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.detail_crop .structure.crop__footer .crop__footer__content {
  background-color: #dddad1;
  padding: 30px;
  display: flex;
  width: 100%;
  max-width: 800px;
  font-size: 18px;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop__footer .crop__footer__content {
    flex-direction: column;
  }
}
.detail_crop .structure.crop__footer .about_meta {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop__footer .about_meta {
    margin-bottom: 20px;
  }
}
.detail_crop .structure.crop__footer figure {
  width: 374px;
  height: 250px;
  overflow: hidden;
  margin: 0 0 0 24px;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop__footer figure {
    width: 100%;
    height: auto;
    margin: 0;
  }
}
.detail_crop .structure.crop__footer figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail_crop .structure.crop__footer .meta__name {
  color: #d75a24;
  font-size: 30px;
  margin-bottom: 8px;
}
.detail_crop .structure .crop__content-btn {
  display: block;
  width: 260px;
  height: 50px;
  margin-top: auto;
  border-radius: 30px;
  background-color: #d75a24;
  color: #fff;
  font-size: 17px;
  line-height: 50px;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .detail_crop .structure .crop__content-btn {
    margin: 20px auto 0;
  }
}
.detail_crop .structure .crop__content-btn::after {
  content: "";
  background-image: url(../images/safety/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.detail_crop .structure iframe {
  width: 800px;
  height: 450px;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .detail_crop .structure iframe {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .detail_crop .structure + .structure {
    margin-top: 9.6vw;
  }
}
.detail_crop .structure.crop_information {
  max-width: 1300px;
  width: 100%;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop_information {
    width: calc(100% - 100px);
    margin-bottom: 3vw !important;
  }
}
.detail_crop .structure.crop_information .information {
  padding-top: 64px;
  position: relative;
}
.detail_crop .structure.crop_information .information__title {
  text-align: center;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop_information .information__title {
    width: 100%;
    display: inline-block;
  }
}
.detail_crop .structure.crop_information .information__title span {
  font-size: 0.7em;
}
.detail_crop .structure.crop_information .information__item {
  position: relative;
}
.detail_crop .structure.crop_information .information__item a:link,
.detail_crop .structure.crop_information .information__item a:visited {
  color: #333;
  margin-right: 50px;
  display: block;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 767px) {
  .detail_crop .structure.crop_information .information__item a:link,
  .detail_crop .structure.crop_information .information__item a:visited {
    width: 100%;
    margin-right: 0;
    max-width: 100%;
  }
}
.detail_crop .structure.crop_information .information__item .about_meta {
  margin-top: 10px;
}
.detail_crop .structure.crop_information .information__item .about_meta .meta__area.a01 span {
  background-color: #db6418;
}
.detail_crop .structure.crop_information .information__item .about_meta .meta__area.a02 span {
  background-color: #0d804a;
}
.detail_crop .structure.crop_information .information__item .about_meta .meta__area.a03 span {
  background-color: #013f80;
}
.detail_crop .structure.crop_information .information__item .about_meta .meta__area span {
  letter-spacing: 0;
  white-space: nowrap;
}
.detail_crop .structure.crop_information .information__item .about_meta .meta__name span {
  font-size: 22px;
}
.detail_crop .structure.crop_information .information__item-img {
  width: 100%;
}
.detail_crop .structure.crop_information .information__item-title {
  font-size: 25px;
  font-weight: 800;
  margin: 0.3em 0 0.5em;
}
.detail_crop .structure__title {
  width: max-content;
  margin: 0 auto;
  color: #cf2521;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .detail_crop .structure__title {
    font-size: 5.33vw;
  }
}
.detail_crop .structure__title .small {
  font-size: 36px;
}
@media (max-width: 767px) {
  .detail_crop .structure__title .small {
    font-size: 4vw;
  }
}
.detail_crop .structure__text {
  margin: 30px auto 0;
  color: #000;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .detail_crop .structure__text {
    margin-top: 5.33vw;
    font-size: 4.4vw;
    text-align: left;
  }
}
.detail_crop .structure__situ {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .detail_crop .structure__situ {
    margin-top: 5.33vw;
  }
}
.detail_crop .structure__situ__title {
  margin: 0 auto;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .detail_crop .structure__situ__title {
    font-size: 4.4vw;
    line-height: 1.51;
  }
}
.detail_crop .structure__situ__title::after {
  margin-top: 20px;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #db6418;
  content: "";
}
.detail_crop .structure__situ__title::before {
  left: 0;
}
@media (max-width: 767px) {
  .detail_crop .structure__situ__title::before {
    left: -2%;
  }
}
.detail_crop .structure__situ__title::after {
  right: 0;
}
@media (max-width: 767px) {
  .detail_crop .structure__situ__title::after {
    right: -2%;
  }
}
@media (max-width: 767px) {
  .detail_crop #information .about_meta {
    align-items: flex-start;
    flex-direction: column;
  }
}
.detail_crop #information .meta__name {
  color: #333;
}
.detail_crop #information figure {
  aspect-ratio: 16/8.9;
  overflow: hidden;
  margin: 0;
}
.detail_crop #information figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.detail_crop.crop_area02 .hero__image:before, .detail_crop.crop_area02 .hero__image:after {
  background-color: #0d804a;
}
.detail_crop.crop_area02 .about_meta .meta__area span {
  background-color: #0d804a;
}
.detail_crop.crop_area02 .crop__footer__content .about_meta .meta__name {
  color: #0d804a;
}
.detail_crop.crop_area02 .crop__content-btn,
.detail_crop.crop_area02 .structure.crop__footer {
  background-color: #0d804a;
}
.detail_crop.crop_area03 .hero__image:before, .detail_crop.crop_area03 .hero__image:after {
  background-color: #013f80;
}
.detail_crop.crop_area03 .about_meta .meta__area span {
  background-color: #013f80;
}
.detail_crop.crop_area03 .crop__footer__content .about_meta .meta__name {
  color: #013f80 !important;
}
.detail_crop.crop_area03 .crop__content-btn,
.detail_crop.crop_area03 .structure.crop__footer {
  background-color: #013f80;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
}

/* カルーセル画像 */
.slider img {
  width: 100%;
  height: auto;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  max-width: 100%;
  margin: 0 auto;
}

.slider img {
  max-width: 400px;
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}
@media (max-width: 767px) {
  .slider img {
    width: calc(100% - 20px);
  }
}

.slick-slider {
  width: 100%;
  margin: 0 50px;
}
@media (max-width: 767px) {
  .slick-slider {
    margin: 0 10px;
  }
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slick-slide {
  padding: 0 10px;
}
@media (max-width: 767px) {
  .slick-slide {
    width: 100%;
    padding: 0 -1px;
  }
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 37%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  width: 28px;
  height: 28px;
  border-bottom: 24px solid #b82521;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  margin-bottom: 1.6em;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -50px;
  transform: rotate(-90deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -50px;
  transform: rotate(90deg);
}

#producer .producer__item-image,
#umatalk .producer__item-image {
  overflow: hidden;
  display: flex;
}
#producer .producer__item-image img,
#umatalk .producer__item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
#producer .about_meta,
#umatalk .about_meta {
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#producer .about_meta .meta__area,
#umatalk .about_meta .meta__area {
  padding-right: 1rem;
}
#producer .about_meta .meta__area span,
#umatalk .about_meta .meta__area span {
  display: inline-block;
  font-size: 17px;
  line-height: 28px;
  background-color: #db6418;
  color: #fff;
  border-radius: 1em;
  letter-spacing: 0.3em;
  padding: 0 0.9em 0.1em 1em;
}
#producer .about_meta .meta__name span,
#umatalk .about_meta .meta__name span {
  display: inline-block;
  font-weight: 800;
  line-height: 1.7;
  font-size: 28px;
}
#producer .about_meta + .btn-wrap .safety__content-btn,
#umatalk .about_meta + .btn-wrap .safety__content-btn {
  margin-top: 10px;
  width: 100%;
}
#producer .about_meta,
#umatalk .about_meta {
  margin-top: 10px;
}
#producer .about_meta .meta__area.a00 span,
#umatalk .about_meta .meta__area.a00 span {
  background-color: #e31c23;
}
#producer .about_meta .meta__area.a01 span,
#umatalk .about_meta .meta__area.a01 span {
  background-color: #db6418;
}
#producer .about_meta .meta__area.a02 span,
#umatalk .about_meta .meta__area.a02 span {
  background-color: #0d804a;
}
#producer .about_meta .meta__area.a03 span,
#umatalk .about_meta .meta__area.a03 span {
  background-color: #013f80;
}
#producer .about_meta .meta__area span,
#umatalk .about_meta .meta__area span {
  letter-spacing: 0;
  white-space: nowrap;
}
#producer .about_meta .meta__name span,
#umatalk .about_meta .meta__name span {
  font-size: 22px;
}

#producer iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

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

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

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

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

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

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

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

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

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

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

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

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

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

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

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

@media (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0px !important;
  }
  .u-mr0-sp {
    margin-right: 0px !important;
  }
  .u-mb0-sp {
    margin-bottom: 0px !important;
  }
  .u-ml0-sp {
    margin-left: 0px !important;
  }
  .u-pt0-sp {
    padding-top: 0px !important;
  }
  .u-pr0-sp {
    padding-right: 0px !important;
  }
  .u-pb0-sp {
    padding-bottom: 0px !important;
  }
  .u-pl0-sp {
    padding-left: 0px !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mr5-sp {
    margin-right: 5px !important;
  }
  .u-mb5-sp {
    margin-bottom: 5px !important;
  }
  .u-ml5-sp {
    margin-left: 5px !important;
  }
  .u-pt5-sp {
    padding-top: 5px !important;
  }
  .u-pr5-sp {
    padding-right: 5px !important;
  }
  .u-pb5-sp {
    padding-bottom: 5px !important;
  }
  .u-pl5-sp {
    padding-left: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mr10-sp {
    margin-right: 10px !important;
  }
  .u-mb10-sp {
    margin-bottom: 10px !important;
  }
  .u-ml10-sp {
    margin-left: 10px !important;
  }
  .u-pt10-sp {
    padding-top: 10px !important;
  }
  .u-pr10-sp {
    padding-right: 10px !important;
  }
  .u-pb10-sp {
    padding-bottom: 10px !important;
  }
  .u-pl10-sp {
    padding-left: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mr15-sp {
    margin-right: 15px !important;
  }
  .u-mb15-sp {
    margin-bottom: 15px !important;
  }
  .u-ml15-sp {
    margin-left: 15px !important;
  }
  .u-pt15-sp {
    padding-top: 15px !important;
  }
  .u-pr15-sp {
    padding-right: 15px !important;
  }
  .u-pb15-sp {
    padding-bottom: 15px !important;
  }
  .u-pl15-sp {
    padding-left: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mr20-sp {
    margin-right: 20px !important;
  }
  .u-mb20-sp {
    margin-bottom: 20px !important;
  }
  .u-ml20-sp {
    margin-left: 20px !important;
  }
  .u-pt20-sp {
    padding-top: 20px !important;
  }
  .u-pr20-sp {
    padding-right: 20px !important;
  }
  .u-pb20-sp {
    padding-bottom: 20px !important;
  }
  .u-pl20-sp {
    padding-left: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mr25-sp {
    margin-right: 25px !important;
  }
  .u-mb25-sp {
    margin-bottom: 25px !important;
  }
  .u-ml25-sp {
    margin-left: 25px !important;
  }
  .u-pt25-sp {
    padding-top: 25px !important;
  }
  .u-pr25-sp {
    padding-right: 25px !important;
  }
  .u-pb25-sp {
    padding-bottom: 25px !important;
  }
  .u-pl25-sp {
    padding-left: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mr30-sp {
    margin-right: 30px !important;
  }
  .u-mb30-sp {
    margin-bottom: 30px !important;
  }
  .u-ml30-sp {
    margin-left: 30px !important;
  }
  .u-pt30-sp {
    padding-top: 30px !important;
  }
  .u-pr30-sp {
    padding-right: 30px !important;
  }
  .u-pb30-sp {
    padding-bottom: 30px !important;
  }
  .u-pl30-sp {
    padding-left: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mr35-sp {
    margin-right: 35px !important;
  }
  .u-mb35-sp {
    margin-bottom: 35px !important;
  }
  .u-ml35-sp {
    margin-left: 35px !important;
  }
  .u-pt35-sp {
    padding-top: 35px !important;
  }
  .u-pr35-sp {
    padding-right: 35px !important;
  }
  .u-pb35-sp {
    padding-bottom: 35px !important;
  }
  .u-pl35-sp {
    padding-left: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mr40-sp {
    margin-right: 40px !important;
  }
  .u-mb40-sp {
    margin-bottom: 40px !important;
  }
  .u-ml40-sp {
    margin-left: 40px !important;
  }
  .u-pt40-sp {
    padding-top: 40px !important;
  }
  .u-pr40-sp {
    padding-right: 40px !important;
  }
  .u-pb40-sp {
    padding-bottom: 40px !important;
  }
  .u-pl40-sp {
    padding-left: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mr45-sp {
    margin-right: 45px !important;
  }
  .u-mb45-sp {
    margin-bottom: 45px !important;
  }
  .u-ml45-sp {
    margin-left: 45px !important;
  }
  .u-pt45-sp {
    padding-top: 45px !important;
  }
  .u-pr45-sp {
    padding-right: 45px !important;
  }
  .u-pb45-sp {
    padding-bottom: 45px !important;
  }
  .u-pl45-sp {
    padding-left: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mr50-sp {
    margin-right: 50px !important;
  }
  .u-mb50-sp {
    margin-bottom: 50px !important;
  }
  .u-ml50-sp {
    margin-left: 50px !important;
  }
  .u-pt50-sp {
    padding-top: 50px !important;
  }
  .u-pr50-sp {
    padding-right: 50px !important;
  }
  .u-pb50-sp {
    padding-bottom: 50px !important;
  }
  .u-pl50-sp {
    padding-left: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mr55-sp {
    margin-right: 55px !important;
  }
  .u-mb55-sp {
    margin-bottom: 55px !important;
  }
  .u-ml55-sp {
    margin-left: 55px !important;
  }
  .u-pt55-sp {
    padding-top: 55px !important;
  }
  .u-pr55-sp {
    padding-right: 55px !important;
  }
  .u-pb55-sp {
    padding-bottom: 55px !important;
  }
  .u-pl55-sp {
    padding-left: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mr60-sp {
    margin-right: 60px !important;
  }
  .u-mb60-sp {
    margin-bottom: 60px !important;
  }
  .u-ml60-sp {
    margin-left: 60px !important;
  }
  .u-pt60-sp {
    padding-top: 60px !important;
  }
  .u-pr60-sp {
    padding-right: 60px !important;
  }
  .u-pb60-sp {
    padding-bottom: 60px !important;
  }
  .u-pl60-sp {
    padding-left: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mr65-sp {
    margin-right: 65px !important;
  }
  .u-mb65-sp {
    margin-bottom: 65px !important;
  }
  .u-ml65-sp {
    margin-left: 65px !important;
  }
  .u-pt65-sp {
    padding-top: 65px !important;
  }
  .u-pr65-sp {
    padding-right: 65px !important;
  }
  .u-pb65-sp {
    padding-bottom: 65px !important;
  }
  .u-pl65-sp {
    padding-left: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mr70-sp {
    margin-right: 70px !important;
  }
  .u-mb70-sp {
    margin-bottom: 70px !important;
  }
  .u-ml70-sp {
    margin-left: 70px !important;
  }
  .u-pt70-sp {
    padding-top: 70px !important;
  }
  .u-pr70-sp {
    padding-right: 70px !important;
  }
  .u-pb70-sp {
    padding-bottom: 70px !important;
  }
  .u-pl70-sp {
    padding-left: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mr75-sp {
    margin-right: 75px !important;
  }
  .u-mb75-sp {
    margin-bottom: 75px !important;
  }
  .u-ml75-sp {
    margin-left: 75px !important;
  }
  .u-pt75-sp {
    padding-top: 75px !important;
  }
  .u-pr75-sp {
    padding-right: 75px !important;
  }
  .u-pb75-sp {
    padding-bottom: 75px !important;
  }
  .u-pl75-sp {
    padding-left: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mr80-sp {
    margin-right: 80px !important;
  }
  .u-mb80-sp {
    margin-bottom: 80px !important;
  }
  .u-ml80-sp {
    margin-left: 80px !important;
  }
  .u-pt80-sp {
    padding-top: 80px !important;
  }
  .u-pr80-sp {
    padding-right: 80px !important;
  }
  .u-pb80-sp {
    padding-bottom: 80px !important;
  }
  .u-pl80-sp {
    padding-left: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mr85-sp {
    margin-right: 85px !important;
  }
  .u-mb85-sp {
    margin-bottom: 85px !important;
  }
  .u-ml85-sp {
    margin-left: 85px !important;
  }
  .u-pt85-sp {
    padding-top: 85px !important;
  }
  .u-pr85-sp {
    padding-right: 85px !important;
  }
  .u-pb85-sp {
    padding-bottom: 85px !important;
  }
  .u-pl85-sp {
    padding-left: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mr90-sp {
    margin-right: 90px !important;
  }
  .u-mb90-sp {
    margin-bottom: 90px !important;
  }
  .u-ml90-sp {
    margin-left: 90px !important;
  }
  .u-pt90-sp {
    padding-top: 90px !important;
  }
  .u-pr90-sp {
    padding-right: 90px !important;
  }
  .u-pb90-sp {
    padding-bottom: 90px !important;
  }
  .u-pl90-sp {
    padding-left: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mr95-sp {
    margin-right: 95px !important;
  }
  .u-mb95-sp {
    margin-bottom: 95px !important;
  }
  .u-ml95-sp {
    margin-left: 95px !important;
  }
  .u-pt95-sp {
    padding-top: 95px !important;
  }
  .u-pr95-sp {
    padding-right: 95px !important;
  }
  .u-pb95-sp {
    padding-bottom: 95px !important;
  }
  .u-pl95-sp {
    padding-left: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mr100-sp {
    margin-right: 100px !important;
  }
  .u-mb100-sp {
    margin-bottom: 100px !important;
  }
  .u-ml100-sp {
    margin-left: 100px !important;
  }
  .u-pt100-sp {
    padding-top: 100px !important;
  }
  .u-pr100-sp {
    padding-right: 100px !important;
  }
  .u-pb100-sp {
    padding-bottom: 100px !important;
  }
  .u-pl100-sp {
    padding-left: 100px !important;
  }
}
body.detail_recipe .structure__headding01 {
  text-align: center;
  font-size: 21px;
  font-weight: bold;
}
body.detail_recipe .structure__headding01:first-child {
  margin-top: 80px;
}
body.detail_recipe iframe {
  vertical-align: bottom;
}
body.detail_recipe video {
  max-width: 560px;
  aspect-ratio: 16/9;
}
body.detail_recipe img {
  vertical-align: bottom;
}
@media (max-width: 767px) {
  body.detail_recipe .header {
    padding: 30px 25px;
    min-height: auto;
    position: relative;
  }
}
@media (max-width: 767px) {
  body.detail_recipe .header .header__logo {
    margin: 0 0 30px;
  }
}
body.detail_recipe .header__sitename {
  display: block;
  position: relative;
  width: 325px;
  top: 0;
  left: 0;
  margin: -50px auto 30px;
  z-index: 2;
}
body.detail_recipe .header__sitename-img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  body.detail_recipe .header__sitename {
    width: 45.0666666667vw;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: auto;
    right: 25px;
  }
}
body.detail_recipe .section {
  margin-bottom: 40px;
  padding: 40px;
  width: 100%;
  max-width: 100%;
  background-color: #006837;
}
body.detail_recipe .section.--op0 {
  background: transparent;
  color: #000;
}
body.detail_recipe .section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fdfaf1;
}
body.detail_recipe .section__inner.--op0 {
  background: transparent;
  color: #000;
}
body.detail_recipe .section__inner.--rec {
  padding: 40px 40px;
}

.recipe__header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .recipe__header {
    flex-direction: column-reverse;
  }
}
.recipe__image-title {
  width: 251px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recipe__image-title {
    width: 45.4666666667vw;
    max-width: 341px;
  }
}
.recipe__meta {
  position: relative;
  z-index: 1;
  padding: 25px 30px;
}
@media (max-width: 767px) {
  .recipe__meta {
    padding: 4vw;
  }
}
.recipe__meta__fav {
  font-size: 16px;
  font-weight: bold;
}
.recipe__meta__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}
.recipe__meta__title span {
  font-size: 24px;
  display: inline-block;
}
@media (max-width: 767px) {
  .recipe__meta__title span {
    font-size: 4vw;
  }
}
@media (max-width: 767px) {
  .recipe__meta__title {
    font-size: 5.3333333333vw;
  }
}
.recipe__meta__desc {
  margin-top: 20px;
  font-size: 18px;
}
.recipe__meta__image {
  position: absolute;
  right: 0;
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: 0;
}
.recipe__meta__image.--badge {
  width: 200px;
  top: 10px;
  right: 10px;
  left: auto;
  bottom: auto;
}
@media (max-width: 767px) {
  .recipe__meta__image.--badge {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .recipe__meta__image {
    position: relative;
    left: 0;
  }
}
.recipe__meta__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.recipe__table {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767px) {
  .recipe__table {
    flex-direction: column;
  }
}
.recipe__table figure {
  margin: 0;
  margin-top: -3px;
  border: 3px solid #fff;
}
.recipe__table figure img {
  max-width: 400px;
}
@media (max-width: 767px) {
  .recipe__table figure img {
    max-width: none;
    width: 100%;
  }
}
.recipe__table ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  align-content: center;
}
@media (max-width: 767px) {
  .recipe__table ul {
    grid-template-columns: 1fr;
    gap: 20px 200px;
    width: 100%;
  }
}
.recipe__table ul li {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-feature-settings: "palt";
}
.recipe__table ul li span {
  text-align: right;
}
.recipe__step {
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .recipe__step {
    flex-direction: column;
  }
  .recipe__step video {
    max-width: 100% !important;
  }
  .recipe__step iframe {
    width: 100%;
  }
}
.recipe__step__point {
  display: flex;
  gap: 20px;
}
.recipe__step__point__desc {
  padding: 20px;
  line-height: 2;
}
.recipe__step__point__desc__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1em;
}
.recipe__step__point__desc .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  font-size: 1.2em;
}
.recipe__step__desc {
  padding: 20px;
  line-height: 2;
}
.recipe__step__desc__inner {
  display: flex;
  align-items: start;
  gap: 1em;
}
.recipe__step__desc .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-weight: bold;
  font-size: 1.6em;
  white-space: nowrap;
}
.recipe__step__desc .num:after {
  content: ".";
}
.recipe__cookphoto img {
  width: 100%;
}
.recipe__profile {
  display: flex;
  gap: 40px;
  background-color: #fff;
  padding: 20px;
  color: #000;
}
@media (max-width: 767px) {
  .recipe__profile {
    flex-direction: column-reverse;
  }
}
.recipe__profile__text {
  font-size: 16px;
  line-height: 1.6;
}
.recipe__profile__photo img {
  width: 100%;
}
.recipe__profile a {
  color: #000;
}
.recipe__gotomv {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .recipe__gotomv {
    flex-direction: column;
  }
}
.recipe__gotomv__text {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .recipe__gotomv__text {
    font-size: 5.3333333333vw;
  }
}
.recipe__gotomv__btn a {
  cursor: pointer;
  display: inline-block;
  background-color: #ea1c24;
  color: #fff;
  line-height: 1;
  padding: 1.3rem 1.8rem;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .recipe__gotomv__btn a {
    font-size: 4vw;
  }
}
.recipe .about_meta {
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.recipe .about_meta .meta__name.--eqh {
  min-height: 6em;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .recipe .about_meta .meta__name.--eqh {
    min-height: auto;
  }
}
.recipe .about_meta .meta__name span {
  display: inline-block;
  font-weight: 800;
  line-height: 1.4;
  font-size: 24px;
}
.recipe .about_meta + .btn-wrap .safety__content-btn {
  margin-top: 10px;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

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

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

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

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

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

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

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

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

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

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

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

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

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

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

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

@media (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0px !important;
  }
  .u-mr0-sp {
    margin-right: 0px !important;
  }
  .u-mb0-sp {
    margin-bottom: 0px !important;
  }
  .u-ml0-sp {
    margin-left: 0px !important;
  }
  .u-pt0-sp {
    padding-top: 0px !important;
  }
  .u-pr0-sp {
    padding-right: 0px !important;
  }
  .u-pb0-sp {
    padding-bottom: 0px !important;
  }
  .u-pl0-sp {
    padding-left: 0px !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mr5-sp {
    margin-right: 5px !important;
  }
  .u-mb5-sp {
    margin-bottom: 5px !important;
  }
  .u-ml5-sp {
    margin-left: 5px !important;
  }
  .u-pt5-sp {
    padding-top: 5px !important;
  }
  .u-pr5-sp {
    padding-right: 5px !important;
  }
  .u-pb5-sp {
    padding-bottom: 5px !important;
  }
  .u-pl5-sp {
    padding-left: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mr10-sp {
    margin-right: 10px !important;
  }
  .u-mb10-sp {
    margin-bottom: 10px !important;
  }
  .u-ml10-sp {
    margin-left: 10px !important;
  }
  .u-pt10-sp {
    padding-top: 10px !important;
  }
  .u-pr10-sp {
    padding-right: 10px !important;
  }
  .u-pb10-sp {
    padding-bottom: 10px !important;
  }
  .u-pl10-sp {
    padding-left: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mr15-sp {
    margin-right: 15px !important;
  }
  .u-mb15-sp {
    margin-bottom: 15px !important;
  }
  .u-ml15-sp {
    margin-left: 15px !important;
  }
  .u-pt15-sp {
    padding-top: 15px !important;
  }
  .u-pr15-sp {
    padding-right: 15px !important;
  }
  .u-pb15-sp {
    padding-bottom: 15px !important;
  }
  .u-pl15-sp {
    padding-left: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mr20-sp {
    margin-right: 20px !important;
  }
  .u-mb20-sp {
    margin-bottom: 20px !important;
  }
  .u-ml20-sp {
    margin-left: 20px !important;
  }
  .u-pt20-sp {
    padding-top: 20px !important;
  }
  .u-pr20-sp {
    padding-right: 20px !important;
  }
  .u-pb20-sp {
    padding-bottom: 20px !important;
  }
  .u-pl20-sp {
    padding-left: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mr25-sp {
    margin-right: 25px !important;
  }
  .u-mb25-sp {
    margin-bottom: 25px !important;
  }
  .u-ml25-sp {
    margin-left: 25px !important;
  }
  .u-pt25-sp {
    padding-top: 25px !important;
  }
  .u-pr25-sp {
    padding-right: 25px !important;
  }
  .u-pb25-sp {
    padding-bottom: 25px !important;
  }
  .u-pl25-sp {
    padding-left: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mr30-sp {
    margin-right: 30px !important;
  }
  .u-mb30-sp {
    margin-bottom: 30px !important;
  }
  .u-ml30-sp {
    margin-left: 30px !important;
  }
  .u-pt30-sp {
    padding-top: 30px !important;
  }
  .u-pr30-sp {
    padding-right: 30px !important;
  }
  .u-pb30-sp {
    padding-bottom: 30px !important;
  }
  .u-pl30-sp {
    padding-left: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mr35-sp {
    margin-right: 35px !important;
  }
  .u-mb35-sp {
    margin-bottom: 35px !important;
  }
  .u-ml35-sp {
    margin-left: 35px !important;
  }
  .u-pt35-sp {
    padding-top: 35px !important;
  }
  .u-pr35-sp {
    padding-right: 35px !important;
  }
  .u-pb35-sp {
    padding-bottom: 35px !important;
  }
  .u-pl35-sp {
    padding-left: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mr40-sp {
    margin-right: 40px !important;
  }
  .u-mb40-sp {
    margin-bottom: 40px !important;
  }
  .u-ml40-sp {
    margin-left: 40px !important;
  }
  .u-pt40-sp {
    padding-top: 40px !important;
  }
  .u-pr40-sp {
    padding-right: 40px !important;
  }
  .u-pb40-sp {
    padding-bottom: 40px !important;
  }
  .u-pl40-sp {
    padding-left: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mr45-sp {
    margin-right: 45px !important;
  }
  .u-mb45-sp {
    margin-bottom: 45px !important;
  }
  .u-ml45-sp {
    margin-left: 45px !important;
  }
  .u-pt45-sp {
    padding-top: 45px !important;
  }
  .u-pr45-sp {
    padding-right: 45px !important;
  }
  .u-pb45-sp {
    padding-bottom: 45px !important;
  }
  .u-pl45-sp {
    padding-left: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mr50-sp {
    margin-right: 50px !important;
  }
  .u-mb50-sp {
    margin-bottom: 50px !important;
  }
  .u-ml50-sp {
    margin-left: 50px !important;
  }
  .u-pt50-sp {
    padding-top: 50px !important;
  }
  .u-pr50-sp {
    padding-right: 50px !important;
  }
  .u-pb50-sp {
    padding-bottom: 50px !important;
  }
  .u-pl50-sp {
    padding-left: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mr55-sp {
    margin-right: 55px !important;
  }
  .u-mb55-sp {
    margin-bottom: 55px !important;
  }
  .u-ml55-sp {
    margin-left: 55px !important;
  }
  .u-pt55-sp {
    padding-top: 55px !important;
  }
  .u-pr55-sp {
    padding-right: 55px !important;
  }
  .u-pb55-sp {
    padding-bottom: 55px !important;
  }
  .u-pl55-sp {
    padding-left: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mr60-sp {
    margin-right: 60px !important;
  }
  .u-mb60-sp {
    margin-bottom: 60px !important;
  }
  .u-ml60-sp {
    margin-left: 60px !important;
  }
  .u-pt60-sp {
    padding-top: 60px !important;
  }
  .u-pr60-sp {
    padding-right: 60px !important;
  }
  .u-pb60-sp {
    padding-bottom: 60px !important;
  }
  .u-pl60-sp {
    padding-left: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mr65-sp {
    margin-right: 65px !important;
  }
  .u-mb65-sp {
    margin-bottom: 65px !important;
  }
  .u-ml65-sp {
    margin-left: 65px !important;
  }
  .u-pt65-sp {
    padding-top: 65px !important;
  }
  .u-pr65-sp {
    padding-right: 65px !important;
  }
  .u-pb65-sp {
    padding-bottom: 65px !important;
  }
  .u-pl65-sp {
    padding-left: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mr70-sp {
    margin-right: 70px !important;
  }
  .u-mb70-sp {
    margin-bottom: 70px !important;
  }
  .u-ml70-sp {
    margin-left: 70px !important;
  }
  .u-pt70-sp {
    padding-top: 70px !important;
  }
  .u-pr70-sp {
    padding-right: 70px !important;
  }
  .u-pb70-sp {
    padding-bottom: 70px !important;
  }
  .u-pl70-sp {
    padding-left: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mr75-sp {
    margin-right: 75px !important;
  }
  .u-mb75-sp {
    margin-bottom: 75px !important;
  }
  .u-ml75-sp {
    margin-left: 75px !important;
  }
  .u-pt75-sp {
    padding-top: 75px !important;
  }
  .u-pr75-sp {
    padding-right: 75px !important;
  }
  .u-pb75-sp {
    padding-bottom: 75px !important;
  }
  .u-pl75-sp {
    padding-left: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mr80-sp {
    margin-right: 80px !important;
  }
  .u-mb80-sp {
    margin-bottom: 80px !important;
  }
  .u-ml80-sp {
    margin-left: 80px !important;
  }
  .u-pt80-sp {
    padding-top: 80px !important;
  }
  .u-pr80-sp {
    padding-right: 80px !important;
  }
  .u-pb80-sp {
    padding-bottom: 80px !important;
  }
  .u-pl80-sp {
    padding-left: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mr85-sp {
    margin-right: 85px !important;
  }
  .u-mb85-sp {
    margin-bottom: 85px !important;
  }
  .u-ml85-sp {
    margin-left: 85px !important;
  }
  .u-pt85-sp {
    padding-top: 85px !important;
  }
  .u-pr85-sp {
    padding-right: 85px !important;
  }
  .u-pb85-sp {
    padding-bottom: 85px !important;
  }
  .u-pl85-sp {
    padding-left: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mr90-sp {
    margin-right: 90px !important;
  }
  .u-mb90-sp {
    margin-bottom: 90px !important;
  }
  .u-ml90-sp {
    margin-left: 90px !important;
  }
  .u-pt90-sp {
    padding-top: 90px !important;
  }
  .u-pr90-sp {
    padding-right: 90px !important;
  }
  .u-pb90-sp {
    padding-bottom: 90px !important;
  }
  .u-pl90-sp {
    padding-left: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mr95-sp {
    margin-right: 95px !important;
  }
  .u-mb95-sp {
    margin-bottom: 95px !important;
  }
  .u-ml95-sp {
    margin-left: 95px !important;
  }
  .u-pt95-sp {
    padding-top: 95px !important;
  }
  .u-pr95-sp {
    padding-right: 95px !important;
  }
  .u-pb95-sp {
    padding-bottom: 95px !important;
  }
  .u-pl95-sp {
    padding-left: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mr100-sp {
    margin-right: 100px !important;
  }
  .u-mb100-sp {
    margin-bottom: 100px !important;
  }
  .u-ml100-sp {
    margin-left: 100px !important;
  }
  .u-pt100-sp {
    padding-top: 100px !important;
  }
  .u-pr100-sp {
    padding-right: 100px !important;
  }
  .u-pb100-sp {
    padding-bottom: 100px !important;
  }
  .u-pl100-sp {
    padding-left: 100px !important;
  }
}
/* ==============================================
spacing
============================================== */
.u-mt0 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

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

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

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

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

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

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

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

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

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

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

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

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

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

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

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

@media (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0px !important;
  }
  .u-mr0-sp {
    margin-right: 0px !important;
  }
  .u-mb0-sp {
    margin-bottom: 0px !important;
  }
  .u-ml0-sp {
    margin-left: 0px !important;
  }
  .u-pt0-sp {
    padding-top: 0px !important;
  }
  .u-pr0-sp {
    padding-right: 0px !important;
  }
  .u-pb0-sp {
    padding-bottom: 0px !important;
  }
  .u-pl0-sp {
    padding-left: 0px !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mr5-sp {
    margin-right: 5px !important;
  }
  .u-mb5-sp {
    margin-bottom: 5px !important;
  }
  .u-ml5-sp {
    margin-left: 5px !important;
  }
  .u-pt5-sp {
    padding-top: 5px !important;
  }
  .u-pr5-sp {
    padding-right: 5px !important;
  }
  .u-pb5-sp {
    padding-bottom: 5px !important;
  }
  .u-pl5-sp {
    padding-left: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mr10-sp {
    margin-right: 10px !important;
  }
  .u-mb10-sp {
    margin-bottom: 10px !important;
  }
  .u-ml10-sp {
    margin-left: 10px !important;
  }
  .u-pt10-sp {
    padding-top: 10px !important;
  }
  .u-pr10-sp {
    padding-right: 10px !important;
  }
  .u-pb10-sp {
    padding-bottom: 10px !important;
  }
  .u-pl10-sp {
    padding-left: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mr15-sp {
    margin-right: 15px !important;
  }
  .u-mb15-sp {
    margin-bottom: 15px !important;
  }
  .u-ml15-sp {
    margin-left: 15px !important;
  }
  .u-pt15-sp {
    padding-top: 15px !important;
  }
  .u-pr15-sp {
    padding-right: 15px !important;
  }
  .u-pb15-sp {
    padding-bottom: 15px !important;
  }
  .u-pl15-sp {
    padding-left: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mr20-sp {
    margin-right: 20px !important;
  }
  .u-mb20-sp {
    margin-bottom: 20px !important;
  }
  .u-ml20-sp {
    margin-left: 20px !important;
  }
  .u-pt20-sp {
    padding-top: 20px !important;
  }
  .u-pr20-sp {
    padding-right: 20px !important;
  }
  .u-pb20-sp {
    padding-bottom: 20px !important;
  }
  .u-pl20-sp {
    padding-left: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mr25-sp {
    margin-right: 25px !important;
  }
  .u-mb25-sp {
    margin-bottom: 25px !important;
  }
  .u-ml25-sp {
    margin-left: 25px !important;
  }
  .u-pt25-sp {
    padding-top: 25px !important;
  }
  .u-pr25-sp {
    padding-right: 25px !important;
  }
  .u-pb25-sp {
    padding-bottom: 25px !important;
  }
  .u-pl25-sp {
    padding-left: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mr30-sp {
    margin-right: 30px !important;
  }
  .u-mb30-sp {
    margin-bottom: 30px !important;
  }
  .u-ml30-sp {
    margin-left: 30px !important;
  }
  .u-pt30-sp {
    padding-top: 30px !important;
  }
  .u-pr30-sp {
    padding-right: 30px !important;
  }
  .u-pb30-sp {
    padding-bottom: 30px !important;
  }
  .u-pl30-sp {
    padding-left: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mr35-sp {
    margin-right: 35px !important;
  }
  .u-mb35-sp {
    margin-bottom: 35px !important;
  }
  .u-ml35-sp {
    margin-left: 35px !important;
  }
  .u-pt35-sp {
    padding-top: 35px !important;
  }
  .u-pr35-sp {
    padding-right: 35px !important;
  }
  .u-pb35-sp {
    padding-bottom: 35px !important;
  }
  .u-pl35-sp {
    padding-left: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mr40-sp {
    margin-right: 40px !important;
  }
  .u-mb40-sp {
    margin-bottom: 40px !important;
  }
  .u-ml40-sp {
    margin-left: 40px !important;
  }
  .u-pt40-sp {
    padding-top: 40px !important;
  }
  .u-pr40-sp {
    padding-right: 40px !important;
  }
  .u-pb40-sp {
    padding-bottom: 40px !important;
  }
  .u-pl40-sp {
    padding-left: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mr45-sp {
    margin-right: 45px !important;
  }
  .u-mb45-sp {
    margin-bottom: 45px !important;
  }
  .u-ml45-sp {
    margin-left: 45px !important;
  }
  .u-pt45-sp {
    padding-top: 45px !important;
  }
  .u-pr45-sp {
    padding-right: 45px !important;
  }
  .u-pb45-sp {
    padding-bottom: 45px !important;
  }
  .u-pl45-sp {
    padding-left: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mr50-sp {
    margin-right: 50px !important;
  }
  .u-mb50-sp {
    margin-bottom: 50px !important;
  }
  .u-ml50-sp {
    margin-left: 50px !important;
  }
  .u-pt50-sp {
    padding-top: 50px !important;
  }
  .u-pr50-sp {
    padding-right: 50px !important;
  }
  .u-pb50-sp {
    padding-bottom: 50px !important;
  }
  .u-pl50-sp {
    padding-left: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mr55-sp {
    margin-right: 55px !important;
  }
  .u-mb55-sp {
    margin-bottom: 55px !important;
  }
  .u-ml55-sp {
    margin-left: 55px !important;
  }
  .u-pt55-sp {
    padding-top: 55px !important;
  }
  .u-pr55-sp {
    padding-right: 55px !important;
  }
  .u-pb55-sp {
    padding-bottom: 55px !important;
  }
  .u-pl55-sp {
    padding-left: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mr60-sp {
    margin-right: 60px !important;
  }
  .u-mb60-sp {
    margin-bottom: 60px !important;
  }
  .u-ml60-sp {
    margin-left: 60px !important;
  }
  .u-pt60-sp {
    padding-top: 60px !important;
  }
  .u-pr60-sp {
    padding-right: 60px !important;
  }
  .u-pb60-sp {
    padding-bottom: 60px !important;
  }
  .u-pl60-sp {
    padding-left: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mr65-sp {
    margin-right: 65px !important;
  }
  .u-mb65-sp {
    margin-bottom: 65px !important;
  }
  .u-ml65-sp {
    margin-left: 65px !important;
  }
  .u-pt65-sp {
    padding-top: 65px !important;
  }
  .u-pr65-sp {
    padding-right: 65px !important;
  }
  .u-pb65-sp {
    padding-bottom: 65px !important;
  }
  .u-pl65-sp {
    padding-left: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mr70-sp {
    margin-right: 70px !important;
  }
  .u-mb70-sp {
    margin-bottom: 70px !important;
  }
  .u-ml70-sp {
    margin-left: 70px !important;
  }
  .u-pt70-sp {
    padding-top: 70px !important;
  }
  .u-pr70-sp {
    padding-right: 70px !important;
  }
  .u-pb70-sp {
    padding-bottom: 70px !important;
  }
  .u-pl70-sp {
    padding-left: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mr75-sp {
    margin-right: 75px !important;
  }
  .u-mb75-sp {
    margin-bottom: 75px !important;
  }
  .u-ml75-sp {
    margin-left: 75px !important;
  }
  .u-pt75-sp {
    padding-top: 75px !important;
  }
  .u-pr75-sp {
    padding-right: 75px !important;
  }
  .u-pb75-sp {
    padding-bottom: 75px !important;
  }
  .u-pl75-sp {
    padding-left: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mr80-sp {
    margin-right: 80px !important;
  }
  .u-mb80-sp {
    margin-bottom: 80px !important;
  }
  .u-ml80-sp {
    margin-left: 80px !important;
  }
  .u-pt80-sp {
    padding-top: 80px !important;
  }
  .u-pr80-sp {
    padding-right: 80px !important;
  }
  .u-pb80-sp {
    padding-bottom: 80px !important;
  }
  .u-pl80-sp {
    padding-left: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mr85-sp {
    margin-right: 85px !important;
  }
  .u-mb85-sp {
    margin-bottom: 85px !important;
  }
  .u-ml85-sp {
    margin-left: 85px !important;
  }
  .u-pt85-sp {
    padding-top: 85px !important;
  }
  .u-pr85-sp {
    padding-right: 85px !important;
  }
  .u-pb85-sp {
    padding-bottom: 85px !important;
  }
  .u-pl85-sp {
    padding-left: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mr90-sp {
    margin-right: 90px !important;
  }
  .u-mb90-sp {
    margin-bottom: 90px !important;
  }
  .u-ml90-sp {
    margin-left: 90px !important;
  }
  .u-pt90-sp {
    padding-top: 90px !important;
  }
  .u-pr90-sp {
    padding-right: 90px !important;
  }
  .u-pb90-sp {
    padding-bottom: 90px !important;
  }
  .u-pl90-sp {
    padding-left: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mr95-sp {
    margin-right: 95px !important;
  }
  .u-mb95-sp {
    margin-bottom: 95px !important;
  }
  .u-ml95-sp {
    margin-left: 95px !important;
  }
  .u-pt95-sp {
    padding-top: 95px !important;
  }
  .u-pr95-sp {
    padding-right: 95px !important;
  }
  .u-pb95-sp {
    padding-bottom: 95px !important;
  }
  .u-pl95-sp {
    padding-left: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mr100-sp {
    margin-right: 100px !important;
  }
  .u-mb100-sp {
    margin-bottom: 100px !important;
  }
  .u-ml100-sp {
    margin-left: 100px !important;
  }
  .u-pt100-sp {
    padding-top: 100px !important;
  }
  .u-pr100-sp {
    padding-right: 100px !important;
  }
  .u-pb100-sp {
    padding-bottom: 100px !important;
  }
  .u-pl100-sp {
    padding-left: 100px !important;
  }
}
.u-m-a {
  margin: auto;
}

.u-ml-a {
  margin-left: auto;
}

.u-mr-a {
  margin-right: auto;
}

.u-anchor {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

/*# sourceMappingURL=style.css.map */
