@charset "UTF-8";
/* ===リセット=== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Noto Sans JP", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/*改行*/
.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

@media (max-width: 767px) {
  .pc-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}
/*Color*/
/*font family*/
/*font size（1rem=16px）*/
/*行間*/
/*inner*/
/*パディング*/
/*4引数*/
.l-inner {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    width: min(100% - 80px, 1200px);
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/*追従ヘッダー*/
.header__nav.is-fixed {
  position: fixed;
  top: -10px;
  right: -10px;
  z-index: 999;
  animation: headerFade 0.3s ease;
}
.header__nav.is-fixed .header__nav-list-pc {
  background-color: rgba(30, 44, 91, 0.5);
}

@keyframes headerFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-pc {
  display: flex;
  justify-content: space-between;
}

.header__logo {
  margin-top: 10px;
  margin-left: clamp(25px, -3.5714285714px + 3.7202380952vw, 50px);
}
.header__logo img {
  display: block;
  width: clamp(220px, 71.4285714286px + 19.3452380952vw, 350px);
  height: auto;
}

.header__nav-list-pc {
  display: flex;
  align-items: center;
  list-style: none;
  background-color: rgba(30, 44, 91, 0.2);
  padding: clamp(10px, -1.4285714286px + 1.4880952381vw, 20px) clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
  border-radius: 10px;
  gap: clamp(16px, 0px + 2.0833333333vw, 30px);
  margin-top: 20px;
  margin-right: 20px;
  transition: background-color 0.3s ease;
}

.header__nav-list-pc a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.header__nav-list-pc a:hover {
  color: #E6A826;
  transition: 0.3s;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 10px 12px;
  background-color: #E6A826;
  text-decoration: none;
  transition: 0.3s;
}

.header__contact-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/mail-white.svg") no-repeat center/contain;
  transition: 0.3s;
}

.header__contact:hover {
  background-color: #ffffff;
  color: #E6A826;
  transition: 0.3s;
}

.header__contact:hover .header__contact-icon {
  background-image: url("../images/common/mail-orange.svg");
}

/*ドロップダウンメニュー*/
.header__menu-item--has-child {
  position: relative;
}

.header__sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.header__menu-item--has-child:hover .header__sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__sub-menu a {
  padding: 12px 20px;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}

.header__products {
  display: block;
}

.header__sub-menu a:hover {
  background: #f5f5f5;
}

.header__download {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 12px 20px;
  color: #1E2C5B;
  text-decoration: none;
  transition: 0.3s;
}

.header__download-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/download-black.svg") no-repeat center/contain;
  transition: 0.3s;
}

.header__download:hover {
  color: #C8E3ED;
}

.header__download:hover .header__download-icon {
  background-image: url("../images/common/download-orange.svg");
}

/*===切り替え===*/
.header-pc {
  display: flex;
}

.header-sp {
  display: none;
}

.header-sp-nav {
  display: none;
}

@media (max-width: 767px) {
  .header-pc {
    display: none;
  }
  .header-sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
    background: transparent;
  }
  /* TOPページ */
  .home .header-sp {
    position: fixed;
    background: #ffffff;
  }
  /* 下層ページ：追従したとき */
  .header-sp.is-fixed {
    position: fixed;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .header-sp__logo img {
    width: clamp(144px, 109.5612244898px + 9.1836734694vw, 180px);
  }
}
/*===SP===*/
body.is-fixed {
  overflow: hidden;
}

.header-sp__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header-sp__line {
  display: block;
  width: 30px;
  height: 1px;
  background: #333333;
  transition: 0.3s;
}

.header-sp__text {
  font-size: 11px;
  color: #333333;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.header-sp__button.is-open .header-sp__line:nth-of-type(1) {
  transform: translateY(4px) rotate(45deg);
}
.header-sp__button.is-open .header-sp__line:nth-of-type(2) {
  transform: translateY(-3px) rotate(-45deg);
}
.header-sp__button.is-open .header-sp__text {
  opacity: 0;
}

/*非表示*/
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

/*表示用*/
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/*メニュー*/
.sp-menu__nav {
  height: 100%;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: clamp(20px, 0.8673469388px + 5.1020408163vw, 40px);
}

.sp-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.sp-menu li {
  margin-bottom: 40px;
}

.sp-menu a {
  color: #1E2C5B;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.sp-menu a:hover {
  color: #85C6E0;
  transition: 0.3s;
}

.sp-menu__download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1E2C5B;
  text-decoration: none;
  transition: 0.3s;
}

.sp-menu__icon {
  display: inline-block;
  width: clamp(17px, 16.0433673469px + 0.2551020408vw, 18px);
  height: clamp(17px, 16.0433673469px + 0.2551020408vw, 18px);
  background: url("../images/common/download-navy.svg") no-repeat center/contain;
  transition: 0.3s;
}

.sp-menu__download:hover {
  color: #85C6E0;
}

.sp-menu__download:hover .sp-menu__icon {
  background-image: url("../images/common/download-light-blue.svg");
}

.sp-menu__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 145px;
  height: 40px;
  background: #1E2C5B;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.sp-menu__contact-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/common/mail-white.svg") no-repeat center/contain;
  transition: 0.3s;
}

a.sp-menu__contact {
  color: #ffffff;
}

.sp-menu__contact:hover {
  background-color: #C8E3ED;
  transition: 0.3s;
}

a.sp-menu__contact:hover {
  color: #1E2C5B;
}

.sp-menu__contact:hover .sp-menu__contact-icon {
  background-image: url("../images/common/mail-navy.svg");
}

.sp-menu__logo {
  margin-top: 50px;
}
.sp-menu__logo img {
  width: 210px;
}

/*×ボタン*/
.sp-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
}

.sp-menu__close span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #1E2C5B;
}

.sp-menu__close span:first-child {
  transform: rotate(45deg);
}

.sp-menu__close span:last-child {
  transform: rotate(-45deg);
}

.footer-pc {
  padding: clamp(40px, 17.1428571429px + 2.9761904762vw, 60px) 0;
  background: #ffffff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  width: clamp(280px, 188.5714285714px + 11.9047619048vw, 360px);
}

.footer__logo img {
  width: clamp(220px, 145.7142857143px + 9.6726190476vw, 285px);
  display: block;
}

.footer__address {
  margin-top: 10px;
  font-style: normal;
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__nav {
  margin-bottom: 30px;
}

.footer__nav-list {
  display: flex;
  gap: clamp(20px, -8.5714285714px + 3.7202380952vw, 45px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-list a {
  color: #1E2C5B;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
  transition: 0.3s;
}

.footer__nav-list a:hover {
  color: #85C6E0;
}

.footer__buttons {
  display: flex;
  align-items: center;
  gap: clamp(20px, -8.5714285714px + 3.7202380952vw, 45px);
}

.footer__download {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #1E2C5B;
  font-weight: 700;
  text-decoration: none;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
  transition: 0.3s;
}

.footer__download-icon {
  display: inline-block;
  width: clamp(17px, 15.8571428571px + 0.1488095238vw, 18px);
  height: clamp(17px, 15.8571428571px + 0.1488095238vw, 18px);
  background: url("../images/common/download-navy.svg") no-repeat center/contain;
  transition: 0.3s;
}

.footer__download:hover {
  color: #85C6E0;
}

.footer__download:hover .footer__download-icon {
  background-image: url("../images/common/download-light-blue.svg");
}

.footer__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: clamp(126px, 104.2857142857px + 2.8273809524vw, 145px);
  height: clamp(33px, 25px + 1.0416666667vw, 40px);
  background: #1E2C5B;
  color: #ffffff;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.footer__contact-icon {
  display: inline-block;
  width: clamp(17px, 15.8571428571px + 0.1488095238vw, 18px);
  height: clamp(17px, 15.8571428571px + 0.1488095238vw, 18px);
  background: url("../images/common/mail-white.svg") no-repeat center/contain;
  transition: 0.3s;
}

.footer__contact:hover {
  background: #C8E3ED;
  color: #1E2C5B;
}

.footer__contact:hover .footer__contact-icon {
  background-image: url("../images/common/mail-navy.svg");
}

/*---切り替え---*/
.footer-sp {
  display: none;
}

@media (max-width: 767px) {
  .footer-pc {
    display: none;
  }
  .footer-sp {
    display: block;
    padding: 60px 20px 30px;
  }
  .footer-sp__inner {
    max-width: 375px;
    margin: 0 auto;
  }
  .footer-sp__nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer__nav-list {
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 767px) and (max-width: 375px) {
  .footer__nav-list {
    gap: clamp(28px, -41.8181818182px + 21.8181818182vw, 40px);
  }
}
@media (max-width: 767px) {
  .footer__buttons {
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 767px) and (max-width: 375px) {
  .footer__buttons {
    gap: clamp(28px, -41.8181818182px + 21.8181818182vw, 40px);
  }
}
@media (max-width: 767px) {
  .footer-sp__bottom {
    width: 272px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
  }
  .footer-sp__logo img {
    width: 272px;
    margin-bottom: 10px;
  }
  .footer-sp__address {
    font-size: 0.875rem;
    color: #333333;
    font-style: normal;
  }
  .footer-sp__copyright {
    display: block;
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: #777;
  }
}
/*===タイトル===*/
.c-section-title {
  text-align: center;
  margin-bottom: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
}
.c-section-title__en {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(8px, 5.7142857143px + 0.2976190476vw, 10px);
  font-family: "Inter", sans-serif;
  color: #E6A826;
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  font-weight: 400;
  line-height: 1;
}
.c-section-title__en::before, .c-section-title__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(30px, -4.2857142857px + 4.4642857143vw, 60px);
  height: 1px;
  background: #E6A826;
}
.c-section-title__en::before {
  right: calc(100% + 16px);
}
.c-section-title__en::after {
  left: calc(100% + 16px);
}
.c-section-title__ja {
  color: #333333;
  font-size: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
  font-weight: bold;
  line-height: 1.4;
}

/*===詳しく見るボタン===*/
.strength-card__button {
  display: flex;
  justify-content: center;
}

.c-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #1E2C5B;
  font-size: clamp(14px, 13.2957746479px + 0.1877934272vw, 16px);
  font-weight: 500;
}

.c-button__text {
  width: clamp(77px, 73.1267605634px + 1.0328638498vw, 88px);
  height: clamp(77px, 73.1267605634px + 1.0328638498vw, 88px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 60px;
  box-sizing: border-box;
  background: #C8E3ED;
  border-radius: 50%;
  white-space: nowrap;
}

.c-button__icon {
  padding-left: clamp(20px, 16.4788732394px + 0.9389671362vw, 30px);
  transition: transform 0.3s ease;
}

.c-button:hover .c-button__text {
  background: #85C6E0;
  transition: 0.3s;
}

.c-button:hover .c-button__icon {
  transform: translateX(10px);
}

/*オレンジver*/
.c-button--orange .c-button__text {
  background: #F7DFAE;
}

.c-button--orange:hover .c-button__text {
  background: #E6A826;
}

.page-mv {
  position: relative;
  height: clamp(300px, 162.8571428571px + 17.8571428571vw, 420px);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.page-mv__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.page-mv__content {
  margin-top: 30px;
}

.page-mv__title {
  font-size: clamp(36px, 22.2857142857px + 1.7857142857vw, 48px);
  font-weight: bold;
  color: #333333;
}

.page-mv .c-section-title {
  text-align: center;
  transform: translateY(30px);
}

.page-mv__subtitle {
  margin-top: clamp(8px, 5.7142857143px + 0.2976190476vw, 10px);
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  color: #E6A826;
  font-family: "Inter", sans-serif;
}

.page-mv--factory .c-section-title__en {
  color: #1E2C5B;
}
.page-mv--factory .c-section-title__en::before, .page-mv--factory .c-section-title__en::after {
  background-color: #1E2C5B;
}

.page-mv--strength {
  background-image: url("../images/page-mv/page-mv-strength.png");
}
@media (max-width: 767px) {
  .page-mv--strength {
    background-image: url("../images/page-mv/page-mv-strength-sp.png");
  }
}

.page-mv--factory {
  background-image: url("../images/page-mv/page-mv-factory.png");
}
@media (max-width: 767px) {
  .page-mv--factory {
    background-image: url("../images/page-mv/page-mv-factory-sp.png");
  }
}

.page-mv--livestock {
  background-image: url("../images/page-mv/page-mv-livestock.png");
}
@media (max-width: 767px) {
  .page-mv--livestock {
    background-image: url("../images/page-mv/page-mv-livestock-sp.png");
  }
}

@media (max-width: 767px) {
  .page-mv {
    height: clamp(220px, 86.0714285714px + 35.7142857143vw, 360px);
    background-position: center bottom;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .page-mv {
    height: clamp(200px, 83.6363636364px + 36.3636363636vw, 220px);
  }
}
@media (max-width: 767px) {
  .page-mv__title {
    font-size: clamp(24px, 15.4093959732px + 2.6845637584vw, 36px);
  }
}
.cta {
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 1440/424;
  min-height: 260px;
  background: url("../images/common/cta-bg.png") no-repeat center/cover;
}

.cta .l-inner {
  display: flex;
  justify-content: center;
}

.cta__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: clamp(480px, 297.1428571429px + 23.8095238095vw, 640px);
  padding: clamp(30px, 18.5714285714px + 1.4880952381vw, 40px) 0;
  background: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.cta .c-section-title {
  margin-bottom: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
}

.cta .c-section-title__ja {
  color: #333333;
}

.cta__text {
  margin-bottom: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  color: #333333;
  font-size: clamp(26px, 14.5714285714px + 1.4880952381vw, 36px);
  font-weight: 600;
}

.cta__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.8571428571px + 1.1904761905vw, 20px);
  width: clamp(260px, 200.5714285714px + 7.7380952381vw, 312px);
  height: clamp(48px, 41.1428571429px + 0.8928571429vw, 54px);
  background: #E6A826;
  color: #ffffff;
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  font-weight: 500;
  transition: 0.3s;
}

.cta__button-icon {
  width: clamp(12px, 9.7142857143px + 0.2976190476vw, 14px);
  height: clamp(12px, 9.7142857143px + 0.2976190476vw, 14px);
  background: url("../images/common/arrow-white.svg") no-repeat center/contain;
  transition: 0.3s;
}

/* ホバー */
.cta__button:hover {
  background: #1E2C5B;
}

.cta__button:hover .c-section-title__ja {
  color: #ffffff;
}

.cta__button:hover .cta__text {
  color: #ffffff;
}

.cta__button:hover .cta__box {
  color: #E6A826;
  background: #ffffff;
}

.cta__button:hover .cta__button-icon {
  background-image: url("../images/common/arrow-orange.svg");
  transform: translateX(6px);
}

@media (max-width: 767px) {
  .cta {
    background-position: 34% center;
  }
  .cta__text {
    font-size: clamp(24px, 22.0867346939px + 0.5102040816vw, 26px);
  }
}
.product-item {
  width: 100%;
}

.product-item__image {
  width: 100%;
  max-width: 490px;
  aspect-ratio: 490/320;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.product-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.product-item__title {
  margin-bottom: 10px;
  font-size: clamp(20px, 15.4285714286px + 0.5952380952vw, 24px);
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
}

.product-item__text {
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

/*---SP---*/
@media (max-width: 767px) {
  .product-item__image {
    margin: 0 auto 10px;
  }
  .product-item__title,
  .product-item__text {
    width: 100%;
    max-width: 490px;
    margin-inline: auto;
  }
  .product-item__title {
    font-size: clamp(18px, 16.0867346939px + 0.5102040816vw, 20px);
  }
  .product-item__text {
    line-height: 1.6;
  }
}
.download-card {
  display: flex;
  align-items: center;
  gap: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px);
  width: 100%;
  max-width: clamp(500px, 442.8571428571px + 7.4404761905vw, 550px);
  padding: clamp(30px, 18.5714285714px + 1.4880952381vw, 40px) clamp(40px, 17.1428571429px + 2.9761904762vw, 60px);
  margin: auto;
  border: 2px solid #1E2C5B;
  border-radius: 20px;
}

.download-card__image {
  flex-shrink: 0;
  width: 195px;
}

.download-card__image img {
  width: 100%;
  display: block;
}

.download-card__content {
  flex: 1;
}

.download-card__text {
  margin-bottom: clamp(15px, -2.1428571429px + 2.2321428571vw, 30px);
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.download-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: clamp(195px, 177.8571428571px + 2.2321428571vw, 210px);
  height: clamp(45px, 41.5714285714px + 0.4464285714vw, 48px);
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  transition: 0.3s;
}

.download-card__button--factory {
  background: #C8E3ED;
  color: #1E2C5B;
}

.download-card__button--factory:hover {
  background: #1E2C5B;
  color: #ffffff;
}

.download-card__button--livestock {
  background: #F7DFAE;
  color: #1E2C5B;
}

.download-card__button--livestock:hover {
  background: #E6A826;
  color: #ffffff;
}

.download-card__icon {
  width: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  height: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  background: url("../images/common/download-navy.svg") center/contain no-repeat;
}

.download-card__button--factory:hover .download-card__icon {
  background-image: url("../images/factory/download-white.svg");
  transition: 0.3s;
}

.download-card__button--livestock:hover .download-card__icon {
  background-image: url("../images/factory/download-white.svg");
  transition: 0.3s;
}

/*---SP---*/
@media (max-width: 767px) {
  .download-card {
    display: block;
    padding: 40px 45px;
    width: 285px;
  }
  .download-card__image {
    margin: 0 auto;
  }
  .download-card__text {
    line-height: 1.6;
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv__image {
  display: block;
}
.mv__image img {
  display: block;
  width: 100%;
  height: auto;
}

.mv__copy {
  position: absolute;
  z-index: 10;
  top: clamp(100px, 37.1428571429px + 8.1845238095vw, 155px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row-reverse;
}

.mv__copy span {
  writing-mode: vertical-rl;
  background: #fff;
  color: #1E2C5B;
  font-size: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
  font-weight: bold;
  line-height: 1.3;
  padding: 10px 10px 0;
  letter-spacing: 0.1em;
  height: -moz-fit-content;
  height: fit-content;
}

.mv__copy-sub {
  margin-top: clamp(80px, 22.8571428571px + 7.4404761905vw, 130px);
}

.strength {
  position: relative;
  margin-top: clamp(-40px, 17.1428571429px + -7.4404761905vw, -90px);
  z-index: 2;
  margin-bottom: 120px;
}

.strength__lead {
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  text-align: center;
  color: #333333;
  line-height: 1.7;
}

.strength__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, -6.2857142857px + 3.4226190476vw, 43px);
  margin-bottom: 30px;
}

.strength-card {
  display: flex;
  flex-direction: column;
}

.strength-card__image img {
  width: 100%;
  display: block;
  margin-top: 30px;
  margin-bottom: 10px;
}

.strength-card__title {
  font-size: clamp(20px, 15.4285714286px + 0.5952380952vw, 24px);
  color: #333333;
  text-align: center;
}

.top-movie {
  position: relative;
}
.top-movie::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  height: 318px;
  background: url("../images/top/movie-wave.png") center/cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.top-movie .l-inner {
  position: relative;
  z-index: 1;
}

.top-movie__text {
  text-align: center;
  color: #333333;
  line-height: 1.7;
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
}

.top-movie__video {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
  margin: 20px auto 40px;
}
.top-movie__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.products {
  margin-bottom: 120px;
}

.products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, -1.4285714286px + 1.4880952381vw, 20px);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__image,
.product-card__images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: clamp(280px, 165.7142857143px + 14.880952381vw, 380px);
  margin-bottom: 30px;
}

.product-card__image img {
  display: block;
  max-width: 470px;
  width: 100%;
  height: auto;
}

.product-card__body {
  flex: 1;
  padding: 0 clamp(60px, -8.5714285714px + 8.9285714286vw, 120px) 60px;
}

.product-card__title {
  font-size: clamp(24px, 10.2857142857px + 1.7857142857vw, 36px);
  color: #333333;
  margin-bottom: clamp(15px, 3.5714285714px + 1.4880952381vw, 25px);
}

.product-card__text {
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}
.product-card__text span {
  white-space: nowrap;
}

.product-card--factory {
  background: url("../images/top/product-factory.png") no-repeat center/cover;
}

.product-card--livestock {
  background: url("../images/top/product-livestock.png") no-repeat center/cover;
}

.product-card__images {
  position: relative;
  top: 60px;
}

.product-card__img {
  position: absolute;
  display: block;
}

.product-card__img--feed {
  width: clamp(160px, 80px + 10.4166666667vw, 230px);
  top: 0;
  left: clamp(50px, -57.4285714286px + 13.9880952381vw, 144px);
  z-index: 2;
}

.product-card__img--hutch {
  width: clamp(160px, 80px + 10.4166666667vw, 230px);
  top: clamp(30px, -4.2857142857px + 4.4642857143vw, 60px);
  right: clamp(30px, -72.8571428571px + 13.3928571429vw, 120px);
  z-index: 1;
}

.product-card__img--cow {
  width: clamp(180px, 88.5714285714px + 11.9047619048vw, 260px);
  top: clamp(130px, 61.4285714286px + 8.9285714286vw, 190px);
  left: clamp(40px, -51.4285714286px + 11.9047619048vw, 120px);
  z-index: 3;
}

.greeting {
  margin-bottom: 120px;
}

.greeting__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(25px, -3.5714285714px + 3.7202380952vw, 50px);
  padding-inline: clamp(0px, -148.5714285714px + 19.3452380952vw, 130px);
}

.greeting__profile {
  width: 250px;
  flex-shrink: 0;
}

.greeting__image img {
  display: block;
  width: 100%;
  height: auto;
}

.greeting__body {
  flex: 1;
}

.greeting__name {
  margin-top: 10px;
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  color: #333333;
}

.greeting__text {
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.7;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}
.greeting__text p + p {
  margin-top: 20px;
}

.greeting__button {
  display: flex;
}

@media (max-width: 767px) {
  .mv {
    margin-top: 60px;
  }
  .mv__copy {
    top: clamp(40px, -38.7472035794px + 24.6085011186vw, 150px);
  }
  .mv__copy span {
    font-size: clamp(24px, 19.7046979866px + 1.3422818792vw, 30px);
  }
  .strength {
    margin-top: clamp(0px, 38.2653061224px + -10.2040816327vw, -40px);
    margin-bottom: 80px;
  }
  .strength .l-inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .strength__lead {
    text-align: start;
    line-height: 1.6;
  }
  .strength__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }
  .strength-card__image img {
    margin-top: 0;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .strength-card__title {
    font-size: clamp(17px, -0.7777777778px + 5.5555555556vw, 20px);
  }
}
@media (max-width: 767px) {
  .top-movie::before {
    content: "";
    background: none;
  }
  .top-movie .l-inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .top-movie__text {
    line-height: 1.6;
  }
  .top-movie__video {
    margin: 10px auto 20px;
  }
  .products {
    margin-bottom: 80px;
  }
  .products__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card__image,
  .product-card__images {
    align-items: end;
    height: clamp(250px, 154.3367346939px + 25.5102040816vw, 350px);
    margin-bottom: 10px;
  }
  .product-card__image img {
    max-width: clamp(335px, 205.8545918367px + 34.4387755102vw, 470px);
  }
  .product-card__body {
    padding: 0 clamp(20px, -104.362244898px + 33.1632653061vw, 150px) 60px;
  }
  .product-card__images {
    top: 30px;
  }
  .product-card__img--feed {
    width: clamp(148px, 89.2975391499px + 18.3445190157vw, 230px);
    top: 0;
    left: clamp(15px, -88.8031319911px + 32.4384787472vw, 160px);
    z-index: 2;
  }
  .product-card__img--hutch {
    width: clamp(148px, 89.2975391499px + 18.3445190157vw, 230px);
    right: clamp(15px, -88.8031319911px + 32.4384787472vw, 160px);
    z-index: 1;
  }
  .product-card__img--cow {
    width: clamp(175px, 114.1498881432px + 19.0156599553vw, 260px);
    top: clamp(120px, 77.0469798658px + 13.4228187919vw, 180px);
    left: clamp(10px, -83.0648769575px + 29.0827740492vw, 140px);
    z-index: 3;
  }
  .product-card__title {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
    margin-bottom: clamp(10px, 5.2168367347px + 1.2755102041vw, 15px);
  }
  .product-card__text {
    line-height: 1.6;
    margin-bottom: clamp(10px, 0.4336734694px + 2.5510204082vw, 20px);
  }
  .greeting {
    margin-bottom: 80px;
  }
  .greeting .l-inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .greeting__wrapper {
    display: block;
  }
  .greeting__profile {
    margin: auto;
    width: clamp(230px, 210.8673469388px + 5.1020408163vw, 250px);
  }
  .greeting__text {
    line-height: 1.6;
    margin: 20px 0 10px;
  }
}
.strength-page {
  position: relative;
  margin-top: 80px;
  z-index: 2;
  margin-bottom: 120px;
}

.strength-page .l-inner {
  padding-inline: 50px;
}

/*---強みカテゴリー見出し---*/
.strength-category-title {
  margin-bottom: 60px;
}
.strength-category-title .c-section-title__en::before,
.strength-category-title .c-section-title__en::after {
  display: none;
}

/* 熱中症対策 */
.strength-category-title--heatstroke .c-section-title__en {
  color: #1E2C5B;
}

/* 畜産 */
.strength-category-title--livestock {
  margin-top: 120px;
}
.strength-category-title--livestock .c-section-title__en {
  color: #E6A826;
}

.strength-item {
  display: flex;
  align-items: start;
  gap: 30px;
}

.strength-item:not(:last-child) {
  margin-bottom: 80px;
}

.strength-item--reverse {
  flex-direction: row-reverse;
}

.strength-item__title {
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  color: #1E2C5B;
  padding-bottom: 10px;
  border-bottom: 3px solid #1E2C5B;
}

.strength-item--orange .strength-item__title {
  color: #E6A826;
  border-color: #E6A826;
}

.strength-item__text {
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  line-height: 1.7;
  color: #333333;
  padding-top: clamp(10px, -1.4285714286px + 1.4880952381vw, 20px);
}

.strength-item__image {
  flex: 0 0 54%;
}

.strength-item__body {
  flex: 1;
}

/*==選ばれる４つの理由==*/
.strength-reason--pc {
  display: block;
}

.strength-reason--sp {
  display: none;
}

.strength-reason .l-inner {
  padding-inline: 125px;
}

@media (max-width: 767px) {
  .strength-reason .l-inner {
    width: 100%;
  }
}

.strength-reason__heading {
  font-size: clamp(20px, 13.1428571429px + 0.8928571429vw, 26px);
  color: #E6A826;
  text-align: center;
  margin-top: 40px;
}

.strength-reason__list {
  display: grid;
  grid-template-columns: repeat(2, clamp(383px, 277.8571428571px + 13.6904761905vw, 475px));
  justify-content: center;
}

.reason-item {
  width: clamp(383px, 277.8571428571px + 13.6904761905vw, 475px);
  height: clamp(313px, 227.2857142857px + 11.1607142857vw, 388px);
  padding: 50px 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
}

.reason-item--01 {
  background-image: url("../images/strength/reason-card01.svg");
}

.reason-item--02 {
  background-image: url("../images/strength/reason-card02.svg");
}

.reason-item--03 {
  background-image: url("../images/strength/reason-card03.svg");
}

.reason-item--04 {
  background-image: url("../images/strength/reason-card04.svg");
}

.reason-item__icon {
  display: block;
  width: 70px;
  margin: 0 auto clamp(25px, -3.5714285714px + 3.7202380952vw, 50px);
}

.reason-item--01 .reason-item__icon,
.reason-item--02 .reason-item__icon {
  order: 3;
  margin-top: clamp(25px, -3.5714285714px + 3.7202380952vw, 50px);
  margin-bottom: 0;
}

.reason-item--01 .reason-item__icon,
.reason-item--03 .reason-item__icon {
  margin-left: 55px;
}

.reason-item--02 .reason-item__icon,
.reason-item--04 .reason-item__icon {
  margin-right: 55px;
}

.reason-item__title {
  margin-bottom: clamp(15px, 9.2857142857px + 0.744047619vw, 20px);
  text-align: center;
  color: #333333;
  font-size: clamp(18px, 11.1428571429px + 0.8928571429vw, 24px);
  font-weight: bold;
}

.reason-item__text {
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

/*===SP===*/
@media (max-width: 767px) {
  .strength-page {
    margin-top: clamp(40px, 1.7346938776px + 10.2040816327vw, 80px);
    margin-bottom: 80px;
  }
  .strength-page .l-inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .strength-category-title {
    margin-bottom: clamp(30px, 1.3010204082px + 7.6530612245vw, 60px);
  }
  .strength-category-title--livestock {
    margin-top: clamp(80px, 41.7346938776px + 10.2040816327vw, 120px);
  }
  .strength-item {
    display: block;
  }
  .strength-item__title {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
    border-bottom: 2px solid #1E2C5B;
    text-align: center;
  }
  .strength-item__text {
    line-height: 1.6;
    padding-bottom: 15px;
  }
  .strength-item:not(:last-child) {
    margin-bottom: 40px;
  }
  /*選ばれる４つの理由*/
  .strength-reason--pc {
    display: none;
  }
  .strength-reason--sp {
    display: block;
    flex-direction: column;
    align-items: center;
  }
  .strength-reason__heading {
    margin-top: clamp(30px, 39.5663265306px + -2.5510204082vw, 20px);
  }
  .reason-card {
    width: clamp(355px, 311.9515306122px + 11.4795918367vw, 400px);
    height: clamp(318px, 279.7346938776px + 10.2040816327vw, 358px);
    padding: 50px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .reason-card {
    width: clamp(310px, 48.1818181818px + 81.8181818182vw, 355px);
    height: clamp(278px, 45.2727272727px + 72.7272727273vw, 318px);
    padding: 35px;
  }
}
@media (max-width: 767px) {
  .reason-card--01 {
    background-image: url("../images/strength/reason-card-sp01.svg");
  }
  .reason-card--02 {
    background-image: url("../images/strength/reason-card-sp02.svg");
  }
  .reason-card--03 {
    background-image: url("../images/strength/reason-card-sp03.svg");
  }
  .reason-card--04 {
    background-image: url("../images/strength/reason-card-sp04.svg");
  }
  .reason-item__icon {
    width: 60px;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .reason-item__icon {
    width: 50px;
  }
}
@media (max-width: 767px) {
  .reason-card--01 .reason-item__icon,
  .reason-card--03 .reason-item__icon {
    margin-right: 55px;
  }
  .reason-card--02 .reason-item__icon,
  .reason-card--04 .reason-item__icon {
    margin-left: 55px;
  }
  .reason-item__title {
    margin-bottom: clamp(10px, 5.2168367347px + 1.2755102041vw, 15px);
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .reason-item__title {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .reason-item__text {
    line-height: 1.6;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .reason-item__text {
    font-size: 0.8125rem;
  }
}
.factory-products {
  padding-top: 20px;
  padding-bottom: 100px;
  padding-inline: clamp(20px, -54.2857142857px + 9.6726190476vw, 85px);
}

.factory-products__heading {
  margin-bottom: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px);
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: bold;
  color: #1E2C5B;
}

.factory-products__heading span {
  color: #333333;
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
}

.factory-products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: clamp(30px, 7.1428571429px + 2.9761904762vw, 50px);
       column-gap: clamp(30px, 7.1428571429px + 2.9761904762vw, 50px);
  row-gap: clamp(40px, 17.1428571429px + 2.9761904762vw, 60px);
  margin-bottom: 80px;
}

/*---SP---*/
@media (max-width: 767px) {
  .factory-products {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .factory-products__heading {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
  }
  .factory-products__heading span {
    font-size: clamp(14px, 12.0867346939px + 0.5102040816vw, 16px);
  }
  .factory-products__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.livestock-products {
  padding-top: 20px;
  padding-bottom: 100px;
  padding-inline: clamp(20px, -54.2857142857px + 9.6726190476vw, 85px);
}

.livestock-products__heading {
  margin-bottom: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px);
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: bold;
  color: #E6A826;
}

.livestock-products__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: clamp(30px, 7.1428571429px + 2.9761904762vw, 50px);
       column-gap: clamp(30px, 7.1428571429px + 2.9761904762vw, 50px);
  row-gap: clamp(40px, 17.1428571429px + 2.9761904762vw, 60px);
  margin-bottom: 60px;
}

.livestock-products__list--last {
  margin-bottom: 80px;
}

/*---SP---*/
@media (max-width: 767px) {
  .livestock-products {
    padding-top: 40px;
    padding-bottom: 80px;
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .livestock-products__heading {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
  }
  .livestock-products__list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .livestock-products__list--last {
    margin-bottom: 60px;
  }
}
.company {
  margin-top: 80px;
  margin-bottom: 120px;
}

.company-message__heading {
  margin-bottom: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
  padding-inline: clamp(0px, -148.5714285714px + 19.3452380952vw, 130px);
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: bold;
  color: #1E2C5B;
}

.company-profile__heading {
  margin-bottom: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: bold;
  color: #1E2C5B;
}

.company-profile {
  padding: 60px 0;
  background: url("../images/company/profile-bg.png") no-repeat center center/cover;
  margin-bottom: 80px;
}

.company-profile__inner {
  max-width: 820px;
  margin: 0 auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.company-table tr {
  border-bottom: 1px solid #555;
}

.company-table tr:first-child {
  border-top: 1px solid #555;
}

.company-table th,
.company-table td {
  padding: clamp(15px, 9.2857142857px + 0.744047619vw, 20px) 0;
  vertical-align: top;
}

.company-table th {
  width: 190px;
  text-align: left;
  font-weight: bold;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.company-table td {
  color: #333333;
  line-height: 1.7;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.company-table__note {
  display: inline-block;
  margin-left: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.company-table__business--sp {
  display: none;
}

.company-access {
  margin-bottom: 120px;
}

.company-access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .company {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .company .l-inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .company-profile__inner {
    padding-inline: clamp(0px, -66.9642857143px + 17.8571428571vw, 70px);
  }
  .company-message__heading,
  .company-profile__heading {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
  }
  .company-table {
    margin-top: 30px;
  }
  .company-table th {
    width: clamp(80px, -25.2295918367px + 28.0612244898vw, 190px);
  }
  .company-table td {
    line-height: 1.6;
  }
  .company-table__business--pc {
    display: none;
  }
  .company-table__business--sp {
    display: table-row;
  }
  .company-table__business--sp td {
    padding: 20px 0;
  }
  .company-business__heading {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
  }
  .company-access {
    margin-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .company-access__map iframe {
    aspect-ratio: 1/1;
  }
}
.contact-info {
  padding: 60px 0;
  margin: 80px 0;
  background: #EEF6FA;
}

.contact-info__inner {
  margin-inline: clamp(20px, -231.4285714286px + 32.7380952381vw, 240px);
}

.contact-info__lead {
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}

.contact-info__content {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 110px;
}

.contact-info__left {
  line-height: 1.7;
  color: #333333;
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  font-weight: bold;
}

.contact-info__note {
  display: inline-block;
  margin-left: clamp(70px, 58.5714285714px + 1.4880952381vw, 80px);
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-line__title {
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  font-weight: bold;
  color: #333333;
}

.header__lineworks {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 10px 20px;
  background-color: #00C73C;
  border-radius: 15px;
  width: 260px;
  color: #ffffff;
  font-size: clamp(16px, 11.4285714286px + 0.5952380952vw, 20px);
  font-weight: bold;
}

.header__lineworks img {
  width: clamp(40px, 28.5714285714px + 1.4880952381vw, 50px);
  height: auto;
}

.download-list {
  padding-bottom: 120px;
}

.download-list__inner {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px);
}

@media (max-width: 1100px) {
  .download-list__inner {
    flex-direction: column;
    align-items: center;
  }
}
/*お問い合わせフォーム*/
.contact-form {
  padding-bottom: 120px;
}
.contact-form__lead {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}
.contact-form__table {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 30px;
}
.contact-form__row--top {
  align-items: start;
}
.contact-form__label {
  font-weight: bold;
  color: #333333;
}
.contact-form__required {
  margin-left: 5px;
  color: #ff0000;
  font-size: 0.75rem;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: none;
  background: rgba(213, 231, 238, 0.5);
  padding: 20px 25px;
  font-size: 1rem;
  color: #333333;
  border-radius: 0;
}
.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.contact-form__field input {
  height: 60px;
}
.contact-form__field textarea {
  height: 250px;
  resize: vertical;
}
.contact-form__submit {
  margin-top: 80px;
  text-align: center;
}
.contact-form__submit input {
  width: 200px;
  height: 50px;
  border: none;
  border-radius: 999px;
  background: #E6A826;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.125rem;
  display: block;
  margin: 0 auto;
}
.contact-form__submit input:hover {
  background: #F7DFAE;
  color: #1E2C5B;
}

/*reCAPTCHA*/
.recaptcha-terms {
  text-align: center;
}

.recaptcha-terms a {
  color: #E6A826;
}

/* reCAPTCHAバッジの非表示 */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* 追記したreCAPTCHA注記テキストのスタイリング例 */
.download-form__recaptcha {
  margin-top: 15px;
  text-align: center;
  font-size: 11px;
  color: rgba(51, 51, 51, 0.6);
  line-height: 1.5;
}
.download-form__recaptcha a {
  color: #1E2C5B;
  text-decoration: underline;
}
.download-form__recaptcha a:hover {
  opacity: 0.7;
}

/*---SP---*/
@media (max-width: 767px) {
  .contact-info {
    margin: 60px 0 40px;
    padding: 40px 0;
  }
  .contact-info__lead {
    line-height: 1.6;
  }
  .contact-info__content {
    display: block;
    margin-top: 20px;
  }
  .contact-info__left {
    line-height: 1.6;
  }
  .contact-line {
    align-items: center;
  }
  .contact-line__title {
    margin-top: 20px;
    width: 260px;
    text-align: left;
  }
  .download-list {
    padding-bottom: clamp(80px, 41.7346938776px + 10.2040816327vw, 120px);
  }
  /*お問い合わせフォーム*/
  .contact-form .l-inner {
    padding-inline: clamp(20px, 0.8673469388px + 5.1020408163vw, 40px);
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form {
    padding-bottom: 0;
  }
  .contact-form__lead {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .contact-form__row {
    display: block;
    margin-bottom: 24px;
  }
  .contact-form__label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
  }
  .contact-form__required {
    font-size: 10px;
  }
  .contact-form__field input,
  .contact-form__field textarea {
    padding: 19px 20px;
    font-size: 0.875rem;
  }
  .contact-form__field input {
    height: 52px;
  }
  .contact-form__field textarea {
    height: 180px;
  }
  .contact-form__submit {
    margin-top: 40px;
  }
  .contact-form__submit input {
    width: 100%;
    max-width: 195px;
    height: 45px;
    font-size: 1rem;
  }
}
.contact-thanks {
  margin: 80px 0;
  background: #EEF6FA;
}
.contact-thanks__box {
  padding: 60px 0;
}
.contact-thanks__title {
  position: relative;
  max-width: 920px;
  margin: 0 auto 40px;
  padding-bottom: 10px;
  color: #1E2C5B;
  font-size: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  font-weight: bold;
}
.contact-thanks__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 560px;
  height: 3px;
  background: #1E2C5B;
}
.contact-thanks__text {
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333333;
  font-size: clamp(14px, 11.7142857143px + 0.2976190476vw, 16px);
}
.contact-thanks__button {
  margin-bottom: 120px;
  text-align: center;
}

.thanks__button {
  background: #E6A826;
  color: #ffffff;
  padding: 13px 35px;
  border-radius: 999px;
}

.thanks__button:hover {
  background: #F7DFAE;
  color: #1E2C5B;
  transition: 0.3s;
}

/*---SP---*/
@media (max-width: 767px) {
  .contact-thanks {
    margin: 60px 0;
  }
  .contact-thanks__title {
    font-size: clamp(20px, 16.1734693878px + 1.0204081633vw, 24px);
  }
  .contact-thanks__title::after {
    content: "";
    width: clamp(335px, 119.7576530612px + 57.3979591837vw, 560px);
    height: 2px;
  }
}
@media (max-width: 767px) and (max-width: 374px) {
  .contact-thanks__title::after {
    width: clamp(280px, -40px + 100vw, 335px);
  }
}
@media (max-width: 767px) {
  .contact-thanks__text {
    line-height: 1.6;
  }
  .contact-thanks__button {
    margin-bottom: 40px;
  }
}
.download-form {
  padding: 120px 0 60px;
}
.download-form__material {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px 25px;
  background: rgba(213, 231, 238, 0.5);
  text-align: center;
}
.download-form__material-label {
  margin-bottom: 8px;
  color: #1E2C5B;
  font-size: 0.75rem;
  font-weight: 500;
}
.download-form__material-name {
  color: #333333;
  font-size: 1.125rem;
  font-weight: bold;
}
.download-form__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 30px;
}
.download-form__label {
  color: #333333;
  font-weight: bold;
}
.download-form__required {
  margin-left: 5px;
  color: #ff0000;
  font-size: 0.75rem;
}
.download-form__field input,
.download-form__field textarea {
  width: 100%;
  border: none;
  border-radius: 0;
  background: rgba(213, 231, 238, 0.5);
  padding: 20px 25px;
  color: #333333;
  font-size: 1rem;
}
.download-form__field input {
  height: 60px;
}
.download-form__privacy {
  margin-top: 50px;
  text-align: center;
  color: #333333;
  font-size: 0.875rem;
  line-height: 1.8;
}
.download-form__privacy .wpcf7-list-item {
  margin: 0;
}
.download-form__privacy input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
  accent-color: #1E2C5B;
}
.download-form__privacy a {
  color: #1E2C5B;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-form__submit {
  margin-top: 60px;
  text-align: center;
}
.download-form__submit input {
  display: block;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  border: none;
  border-radius: 999px;
  background: #E6A826;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.125rem;
}
.download-form__submit input:hover {
  background: #F7DFAE;
  color: #1E2C5B;
}
.download-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 0.75rem;
}
.download-form .wpcf7-response-output {
  max-width: 900px;
  margin: 30px auto 0;
  padding: 15px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .download-form {
    padding: 60px 0 30px;
  }
  .download-form__material {
    margin-bottom: 30px;
    padding: 16px 20px;
  }
  .download-form__material-label {
    margin-bottom: 6px;
    font-size: 10px;
  }
  .download-form__material-name {
    font-size: 1rem;
  }
  .download-form__row {
    display: block;
    margin-bottom: 24px;
  }
  .download-form__label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.875rem;
  }
  .download-form__required {
    font-size: 10px;
  }
  .download-form__field input,
  .download-form__field textarea {
    padding: 19px 20px;
    font-size: 0.875rem;
  }
  .download-form__field input {
    height: 52px;
  }
  .download-form__privacy {
    margin-top: 30px;
    font-size: 0.75rem;
  }
  .download-form__submit {
    margin-top: 40px;
  }
  .download-form__submit input {
    width: 100%;
    max-width: 195px;
    height: 45px;
    font-size: 1rem;
  }
  .download-form .wpcf7-response-output {
    margin-top: 20px;
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */