@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-desktop-only {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .u-desktop-only-sm {
    display: none;
  }
}

.u-middle {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-middle {
    display: block;
  }
}

.u-middle-only {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-middle-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-middle-only {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.empty-box {
  height: 5.875rem;
}
@media screen and (max-width: 767px) {
  .empty-box {
    height: 3.125rem;
  }
}

.d-none {
  opacity: 0;
  pointer-events: none;
}

/*  
  375px以下：ルートフォントを画面幅に応じて可変
  768px〜$innerで代入した値（インナー幅）：ルートフォントを画面幅に応じて可変
*/
html {
  /*
  PCファーストの時の記述
  */
  font-size: 16px;
}
@media (max-width: 1400px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

a {
  text-decoration: none;
}

.scroll {
  margin-bottom: 2rem;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .scroll {
    margin-top: 1rem;
  }
}

.bb-unset {
  border-bottom: unset;
}

table {
  line-height: 1.35;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  line-height: 1;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  color: inherit;
}

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  clip: rect(0 0 0 0);
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

input[type=submit],
input[type=button],
label,
button,
select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* パンくず
------------------------------------------ */
.breadcrumb {
  background-color: #DFEEF5;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 0.8125rem;
  }
}

.breadcrumb__inner {
  margin-inline: auto;
  max-width: 100rem;
  padding: 1.375rem 6.25vw;
}
@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    overflow-x: scroll;
    padding: 1.25rem;
  }
}

.breadcrumb__lists {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .breadcrumb__lists {
    overflow-x: scroll;
    white-space: nowrap;
    word-break: keep-all;
  }
}
.breadcrumb__lists::-webkit-scrollbar {
  display: none;
}

.breadcrumb__item {
  align-items: center;
  display: flex;
  margin-right: 0.5em;
}
.breadcrumb__item:not(:first-child)::before {
  content: ">";
  display: block;
  margin-right: 0.5em;
}
@media (hover: hover) {
  .breadcrumb__item a:hover {
    text-decoration: underline;
  }
}

.c-customer-heading {
  border-bottom: 6px solid #EEEEEE;
  font-size: 2.3125rem;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-customer-heading {
    font-size: 1.5rem;
  }
}
.c-customer-heading::after {
  bottom: -6px;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .c-customer-heading::after {
    width: 6.25rem;
  }
}
.c-customer-heading__text {
  font-size: 1.25rem;
  line-height: 1.55;
  margin-top: 4.25rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-heading__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .c-customer-heading__text {
    margin-top: 2.25rem;
  }
}

.c-c-h--blue::after {
  background-color: #0081bf;
}

.c-c-h--green::after {
  background-color: #9FBE48;
}

.c-customer-nav-container {
  margin-bottom: 3.75rem;
  padding-block: 1.375rem;
}
@media screen and (max-width: 767px) {
  .c-customer-nav-container {
    padding-inline: 20px;
  }
}

.c-customer-nav {
  display: flex;
  gap: 2.125rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1023px) {
  .c-customer-nav {
    gap: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-nav {
    flex-wrap: wrap;
    gap: 1rem;
    width: unset;
  }
}

@media screen and (max-width: 767px) {
  .c-customer-link {
    width: 47%;
  }
}

.c-customer-link > a {
  border: 1px solid #fff;
  border-radius: 11px;
  color: #fff;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.8125rem 0rem;
  text-align: center;
  transition: 0.3s;
  width: 15.6875rem;
}
.c-customer-link > a.blue:hover {
  background-color: #fff;
  color: #0081bf;
}
.c-customer-link > a.green:hover {
  background-color: #fff;
  color: #9FBE48;
}
@media screen and (max-width: 1439px) {
  .c-customer-link > a {
    width: 15rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-customer-link > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-link > a {
    border-radius: 4px;
    padding: 1rem 0rem;
    width: unset;
  }
}

.c-customer-section {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-section {
    margin-left: 6.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-section {
    margin-bottom: 1.75rem;
    margin-left: unset;
  }
}

.c-customer-section-title--blue {
  color: #1F46AB;
  font-size: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-customer-section-title--blue {
    font-size: 1.9rem;
    line-height: 1.2;
    padding-top: 1.9em;
  }
}
.c-customer-section-title--blue::before {
  background-color: #1F46AB;
  border-radius: 50%;
  color: #fff;
  content: "0" counter(li_count);
  counter-increment: li_count;
  display: block;
  font-size: 2.3125rem;
  font-weight: 700;
  left: -11.25rem;
  padding: 3.125rem;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .c-customer-section-title--blue::before {
    font-size: 2rem;
    left: -6.625rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-section-title--blue::before {
    font-size: 1.4rem;
    left: 0;
    padding: 0.8rem;
  }
}

.c-customer-section-title--green {
  color: #9FBE48;
  font-size: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-customer-section-title--green {
    font-size: 1.9rem;
    line-height: 1.2;
    padding-top: 1.9em;
  }
}
.c-customer-section-title--green::before {
  background-color: #9FBE48;
  border-radius: 50%;
  color: #fff;
  content: "0" counter(li_count);
  counter-increment: li_count;
  display: block;
  font-size: 2.3125rem;
  font-weight: 700;
  left: -11.25rem;
  padding: 3.125rem;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .c-customer-section-title--green::before {
    font-size: 2rem;
    left: -6.625rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-section-title--green::before {
    font-size: 1.4rem;
    left: 0;
    padding: 0.8rem;
  }
}

.c-customer-section-title__sub {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-section-title__sub {
    font-size: 16px;
  }
}

.c-customer-recomend {
  background-color: #EEEEEE;
  flex-wrap: wrap;
  padding-block: 2.9375rem 6.1875rem;
}
@media screen and (max-width: 767px) {
  .c-customer-recomend {
    padding-block: 2.9375rem 4rem;
  }
}
.c-customer-recomend__h2 {
  font-size: 2.3125rem;
  margin-bottom: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__h2 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.c-customer-recomend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.375rem;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__list {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__list {
    flex-direction: column;
  }
}
.c-customer-recomend__list-item {
  width: 48%;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__list-item {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__list-item {
    width: 100%;
  }
}
.c-customer-recomend__link {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__link {
    flex-direction: column;
    gap: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__link {
    gap: 1.25rem;
  }
}
.c-customer-recomend__link:hover {
  opacity: 0.7;
}
.c-customer-recomend__image {
  aspect-ratio: 1/0.825;
  width: 12.5rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__image {
    width: 28.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__image {
    height: 14rem;
    width: 100%;
  }
  .c-customer-recomend__image > img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
  }
}
.c-customer-recomend__text-box {
  flex: 1;
}
.c-customer-recomend__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__title {
    font-size: 18px;
  }
}
.c-customer-recomend__description {
  font-size: 1rem;
  line-height: 1.5625;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__description {
    font-size: 15px;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__description {
    margin-bottom: 1.5rem;
  }
}
.c-customer-recomend__promote {
  font-size: 1.25rem;
  line-height: 1.35;
  padding-right: 2.5625rem;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__promote {
    font-size: 16px;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-customer-recomend__promote {
    font-size: 16px;
    padding-right: 1.5rem;
  }
}
.c-customer-recomend__promote::after {
  aspect-ratio: 1/1.688;
  background-image: url(../img/customer/customer-arrow.svg);
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  line-height: 1;
  position: absolute;
  right: 0;
  width: 1rem;
}
@media screen and (max-width: 1023px) {
  .c-customer-recomend__promote::after {
    width: 12px;
  }
}

.low-company {
  padding-block: 6.5rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .low-company {
    padding-block: 3rem 5rem;
  }
}

.c-company-container {
  margin-inline: auto;
  width: 68.125rem;
}
@media screen and (max-width: 1023px) {
  .c-company-container {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .c-company-container {
    width: 100%;
  }
}

.c-company-heading {
  margin-bottom: 4.875rem;
  padding-bottom: 2.875rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-company-heading {
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
  }
}
.c-company-heading::after {
  border-top: 0.3125rem solid #0081bf;
  bottom: 0;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  translate: -50%;
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .c-company-heading::after {
    border-top: 0.1875rem solid #0081bf;
    width: 10rem;
  }
}
.c-company-heading__title {
  background-color: #0081bf;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: 2.5rem;
  margin-inline: auto;
  padding-block: 0.5rem;
  text-align: center;
  width: 15.625rem;
}
@media screen and (max-width: 1023px) {
  .c-company-heading__title {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-company-heading__title {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    width: 11.25rem;
  }
}
.c-company-heading__text {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .c-company-heading__text {
    font-size: 2.875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-company-heading__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-company-heading__text--small {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
  }
}

.c-company-title {
  color: #EB500B;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.34;
  margin-bottom: 1.25rem;
}
.c-company-title--mb-unset {
  margin-bottom: unset;
}
@media screen and (max-width: 1023px) {
  .c-company-title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-company-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.c-heading {
  margin-bottom: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .c-heading {
    margin-bottom: 3.5rem;
  }
}

body.is-fixed {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
}

.br {
  display: inline-block;
}

.footer-fixed {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.footer-fixed__content {
  flex: 1 1 auto;
}

/* ページトップのバナー
------------------------------------------ */
.corporation-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .corporation-banner {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
}
.corporation-banner__list {
  position: relative;
  transition: 0.3s;
  width: 48%;
}
.corporation-banner__list::before {
  background-image: url(../img/corporation/banner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  left: 0;
  outline: 2px solid #D4D4D4;
  outline-offset: -2px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.corporation-banner__list::after {
  aspect-ratio: 1/1.615;
  background-image: url(../img/corporation/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 7.5%;
  content: "";
  position: absolute;
  right: 4%;
  transition: 0.3s;
  width: 1.125rem;
}
@media screen and (max-width: 767px) {
  .corporation-banner__list::after {
    width: 0.625rem;
  }
}
.corporation-banner__list:hover::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .corporation-banner__list {
    width: 100%;
  }
}
.corporation-banner__list:hover {
  opacity: 0.7;
}
.corporation-banner__flex {
  align-items: center;
  display: flex;
  gap: 4.0625rem;
  gap: 9.5%;
}
@media screen and (max-width: 1439px) {
  .corporation-banner__flex {
    gap: 7.5%;
  }
}
@media screen and (max-width: 767px) {
  .corporation-banner__flex {
    gap: 10.5%;
  }
}
.corporation-banner__image {
  aspect-ratio: 1/1;
  margin-left: 1rem;
  padding: 0.7rem;
  width: 26.7%;
}
@media screen and (max-width: 767px) {
  .corporation-banner__image {
    margin-left: 0.25rem;
  }
}
.corporation-banner__text {
  flex: 1;
  padding-block: 1rem;
  padding-right: 1rem;
}
.corporation-banner__title {
  color: #fff;
  font-size: clamp(1.25rem, 1.156rem + 0.47vw, 1.625rem);
  line-height: 1.25;
  margin-bottom: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .corporation-banner__title {
    font-size: clamp(0.75rem, 0.391rem + 1.79vw, 1.25rem);
    margin-bottom: 0.625rem;
  }
}
.corporation-banner__description {
  color: #fff;
  font-size: clamp(0.938rem, 0.891rem + 0.23vw, 1.125rem);
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .corporation-banner__description {
    font-size: clamp(0.5rem, 0.141rem + 1.79vw, 1rem);
  }
}

.footer {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.8888888889;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 1rem;
  }
}

/* フッター（お問い合わせ）
------------------------------------------ */
.footer-contact {
  background-color: #EB500B;
  padding-block: 4.375rem;
}
@media screen and (max-width: 767px) {
  .footer-contact {
    padding-block: 2.1875rem 3.4375rem;
  }
}

.footer-contact__inner {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .footer-contact__inner {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__inner {
    display: block;
    text-align: center;
  }
}

.footer-contact__title {
  flex-shrink: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1333333333;
}
@media screen and (max-width: 1023px) {
  .footer-contact__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__title {
    font-size: 1.875rem;
  }
}

.footer-contact__tel {
  flex-shrink: 0;
  line-height: 1;
  margin-left: 3.5%;
}
@media screen and (max-width: 1023px) {
  .footer-contact__tel {
    font-size: 14px;
    margin-bottom: 2.25rem;
    margin-left: unset;
    margin-top: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__tel {
    margin-inline: auto;
    margin-top: 3.3125rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer-contact__tel span {
  align-items: center;
  display: flex;
  font-size: 2.25rem;
  line-height: 1;
  margin-block: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .footer-contact__tel span {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__tel span {
    font-size: 2.125rem;
  }
}
.footer-contact__tel a {
  display: block;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .footer-contact__tel a {
    margin-left: 0;
  }
}

.footer-contact__btns {
  display: flex;
  margin-left: 2.75%;
  max-width: 820px;
  width: 51.875vw;
}
@media screen and (max-width: 1023px) {
  .footer-contact__btns {
    margin-left: 0;
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__btns {
    display: block;
    margin-left: 0;
    margin-top: 1.25rem;
    width: 100%;
  }
}

.footer-contact__btn {
  max-width: 395px;
  width: 24.6875vw;
}
@media screen and (max-width: 1023px) {
  .footer-contact__btn {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__btn {
    margin-inline: auto;
    max-width: unset;
    width: 100%;
  }
}
.footer-contact__btn:not(:first-child) {
  margin-left: 3.8%;
}
@media screen and (max-width: 767px) {
  .footer-contact__btn:not(:first-child) {
    margin: 1.25rem auto 0;
  }
}
.footer-contact__btn a {
  align-items: center;
  border: 3px solid #fff;
  border-radius: 66px;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .footer-contact__btn a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-contact__btn a {
    border: 2px solid #fff;
    border-radius: 66px;
    font-size: 1.125rem;
    padding-block: 2rem;
  }
}
@media (hover: hover) {
  .footer-contact__btn a:hover {
    background-color: #fff;
    color: #EB500B;
  }
  .footer-contact__btn a:hover::before {
    background-color: #EB500B;
  }
}
.footer-contact__btn a::before {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  background-color: #fff;
  content: "";
  display: inline-block;
  margin-right: 0.9375rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s;
}
.footer-contact__btn--mail a::before {
  -webkit-mask-image: url(../img/icon/footer-mail.svg);
  height: 2.125rem;
  mask-image: url(../img/icon/footer-mail.svg);
  width: 2.125rem;
}
@media screen and (max-width: 767px) {
  .footer-contact__btn--mail a::before {
    height: 1.625rem;
    width: 1.625rem;
  }
}
.footer-contact__btn--download a::before {
  -webkit-mask-image: url(../img/icon/footer-download.svg);
  height: 1.9375rem;
  mask-image: url(../img/icon/footer-download.svg);
  width: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .footer-contact__btn--download a::before {
    height: 1.625rem;
    width: 1.4375rem;
  }
}

/* フッター（グレー背景）
------------------------------------------ */
.footer-main {
  background-color: #727272;
  padding-block: 5.625rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer-main {
    padding-block: 3.75rem 1.5625rem;
  }
}

.footer-main__inner {
  padding-inline: 6% 6%;
}
@media screen and (max-width: 767px) {
  .footer-main__inner {
    padding-inline: 20px;
  }
}

.footer-main__logo {
  max-width: 100%;
  width: 7.9375rem;
}
@media screen and (max-width: 767px) {
  .footer-main__logo {
    margin-inline: auto;
    width: 10.5rem;
  }
}

.footer-main__container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .footer-main__container {
    flex-direction: column;
    gap: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-main__container {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .footer-main__address {
    font-size: 12px;
  }
}
.footer-main__address address {
  display: block;
  font-style: normal;
  margin-top: 2em;
}
@media screen and (max-width: 1023px) {
  .footer-main__address address {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-main__address address {
    margin-top: 0.625rem;
  }
}

.footer-main__lists {
  display: flex;
  gap: 36px;
  width: 75%;
}
@media screen and (max-width: 1023px) {
  .footer-main__lists {
    font-size: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-main__lists {
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 0;
    margin-top: 1.875rem;
    width: 100%;
  }
}

.footer-main__list-title {
  font-weight: 700;
}

.footer-main__list-my-business {
  line-height: 2.5;
}

.footer-main-list {
  width: 25%;
}
@media (hover: hover) {
  .footer-main-list a:hover {
    text-decoration: underline;
  }
}

/* その他メニュー
------------------------------------------ */
.footer-bottom__others {
  display: flex;
  line-height: 1;
  margin-top: 5.625rem;
}
@media screen and (max-width: 1023px) {
  .footer-bottom__others {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .footer-bottom__others {
    flex-wrap: wrap;
    margin-top: 3.75rem;
    row-gap: 1em;
  }
}
@media screen and (max-width: 600px) {
  .footer-bottom__others {
    display: block;
  }
}

.footer-bottom__other {
  align-items: center;
  display: flex;
  margin-right: 1em;
}
@media screen and (max-width: 600px) {
  .footer-bottom__other {
    display: block;
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer-bottom__other:not(:first-child) {
    margin-top: 0.625rem;
  }
}
.footer-bottom__other:not(:first-child)::before {
  content: "｜";
  display: inline-block;
  margin-right: 1em;
}
@media screen and (max-width: 600px) {
  .footer-bottom__other:not(:first-child)::before {
    display: none;
  }
}
@media (hover: hover) {
  .footer-bottom__other a:hover {
    text-decoration: underline;
  }
}

/* コピーライト
------------------------------------------ */
.footer-bottom__copy {
  display: block;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .footer-bottom__copy {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer-bottom__copy {
    font-size: 14px;
    text-align: center;
  }
}

.header {
  background: #fff;
  border-bottom: 1px solid #707070;
  height: 5.875rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.125rem;
  }
}

.header__inner {
  align-items: center;
  display: flex;
  height: inherit;
  margin-inline: auto;
  max-width: 1600px;
  padding-left: 6.25%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__inner {
    justify-content: space-between;
    padding-left: 15px;
  }
}

.header__left {
  align-items: center;
  display: flex;
  height: inherit;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__left {
    justify-content: right;
  }
}

.header__logo {
  flex-shrink: 0;
  max-width: 100%;
  width: 11.9375rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 6rem;
  }
}
.header__logo a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__logo a:hover {
    opacity: 0.6;
  }
}

/* 日本語・英語切り替え
------------------------------------------ */
.header__ja-en {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__ja-en {
    font-size: 0.75rem;
    margin-left: 0.625rem;
  }
}

/* 検索・メール・カタログ
------------------------------------------ */
.header-iconMenu {
  height: inherit;
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu {
    margin-left: 0.625rem;
  }
}

.header-iconMenu__items {
  align-items: center;
  display: flex;
  height: inherit;
}

.header-iconMenu__item {
  border-left: 1px solid #707070;
  height: inherit;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item {
    align-items: center;
    display: flex;
    width: 3.125rem;
  }
}
.header-iconMenu__item__span {
  color: #ED6D00;
  font-size: 0.8125rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item__span {
    -webkit-transform: scale(0.9);
    font-size: 8px;
    margin-top: 0.2rem;
    padding-bottom: unset;
    transform: scale(0.9);
  }
}
.header-iconMenu__item--search {
  cursor: pointer;
}
.header-iconMenu__item--search__span {
  color: #1F46AB;
  font-size: 0.8125rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item--search__span {
    -webkit-transform: scale(0.9);
    font-size: 8px;
    margin-top: 0.2rem;
    padding-bottom: unset;
    transform: scale(0.9);
  }
}
.header-iconMenu__item__search {
  -webkit-transform: translateY(100%);
  background-color: #fff;
  bottom: 0;
  display: none;
  padding: 1rem;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  width: 40%;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item__search {
    padding: 0.5rem;
    width: 100%;
  }
}
.header-iconMenu__item a {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: inherit;
  justify-content: center;
  transition: background-color 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item a {
    gap: unset;
    height: unset;
  }
}
@media (hover: hover) {
  .header-iconMenu__item a:hover {
    background-color: #ddd;
  }
}
.header-iconMenu__item img {
  flex-grow: 1;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item img {
    padding-top: unset;
  }
}
.header-iconMenu__item:nth-child(1) img {
  height: 1.9375rem;
  width: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item:nth-child(1) img {
    height: 1.25rem;
    width: 1rem;
  }
}
.header-iconMenu__item:nth-child(2) img {
  height: 1.3125rem;
  width: 1.75rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item:nth-child(2) img {
    height: 1.25rem;
    width: 0.875rem;
  }
}
.header-iconMenu__item:nth-child(3) img {
  height: 1.75rem;
  width: 1.375rem;
}
@media screen and (max-width: 767px) {
  .header-iconMenu__item:nth-child(3) img {
    height: 1.25rem;
    width: 0.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .header__drawer {
    background-color: #EB500B;
    display: flex;
    height: 3.0625rem;
    margin-bottom: auto;
    width: 3.125rem;
  }
}

.gsc-results-wrapper-overlay {
  height: 200% !important;
  left: 6% !important;
  width: 85% !important;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    padding: 0;
    z-index: 9999;
  }
}

.header__drawer .hamburger .js-hamburger {
  padding: 0;
}

.hamburger span {
  background: #fff;
  display: block;
  height: 2px;
  margin-inline: auto;
  position: relative;
  transition: ease 0.3s;
  width: 24px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin-block: 4px;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/*is-OPEN時の動き*/
.hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
  opacity: 0;
  transform: translateY(-50%);
}

.hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  top: -7px;
  transform: rotate(-45deg);
}

.inner {
  margin-inline: auto;
  max-width: 100rem;
  padding-inline: 6.25vw;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .inner {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding-inline: 20px;
  }
}
.inner--result {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .inner--result {
    margin-top: 5rem;
  }
}

.lightBox {
  border: 1px solid #707070;
  margin-inline: auto;
  padding: 3.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lightBox {
    padding: 1.5rem;
    width: 100%;
  }
}
.lightBox--certification {
  border: unset;
  flex-grow: 1;
  padding: unset;
}
@media screen and (max-width: 767px) {
  .lightBox--certification {
    padding: unset;
    width: 49%;
  }
}
.lightBox--certification--last {
  border: unset;
  padding: unset;
}
@media screen and (max-width: 767px) {
  .lightBox--certification--last {
    padding: unset;
    width: 32%;
  }
}
.lightBox > p {
  font-size: 1.3rem;
  font-weight: 700;
  padding-left: 1.375rem;
  padding-top: 1.5rem;
  position: absolute;
  right: 8px;
  top: 8px;
}
@media screen and (max-width: 767px) {
  .lightBox > p {
    font-size: 0.7rem;
    padding-left: 0.875rem;
    right: 4px;
    top: 4px;
  }
}
.lightBox > p::before {
  -webkit-transform: translate(0, -100%);
  aspect-ratio: 1/1;
  background-image: url(../img/group/glass.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 100%;
  transform: translate(0, -100%);
  width: 1.2rem;
}
@media screen and (max-width: 767px) {
  .lightBox > p::before {
    width: 0.8rem;
  }
}

p.ecoheal__lightbox-text {
  padding-top: unset;
}

/* ページトップ
------------------------------------------ */
.page-top {
  background-color: #1F46AB;
  cursor: pointer;
  display: inline-block;
  height: 62px;
  padding: 10px;
  right: 0;
  width: 62px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .page-top {
    height: 45px;
    width: 45px;
  }
}
.page-top::before {
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  border-right: solid 4px #fff;
  border-top: solid 4px #fff;
  content: "";
  height: 26px;
  left: 61%;
  position: absolute;
  top: 44%;
  transform: rotate(-45deg) translate(-50%, -50%);
  width: 26px;
}
@media screen and (max-width: 767px) {
  .page-top::before {
    height: 18px;
    left: 60%;
    width: 18px;
  }
}
@media (hover: hover) {
  .page-top:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

.pagenation {
  margin-top: 2.25rem;
}
.pagenation .nav-links {
  align-items: center;
  display: flex;
  gap: 1.1875rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagenation .nav-links {
    gap: 0.9375rem;
  }
}
.pagenation a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .pagenation a:hover {
    background-color: #707070;
    color: #fff;
  }
}
.pagenation .page-numbers {
  align-items: center;
  border: 1px solid #707070;
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 33px;
}
@media screen and (max-width: 767px) {
  .pagenation .page-numbers {
    font-size: 1rem;
    height: 32px;
    width: 26px;
  }
}
.pagenation .page-numbers.current {
  background-color: #707070;
  color: #fff;
  text-decoration: none;
}
.pagenation .page-numbers.next, .pagenation .page-numbers.prev {
  width: 67px;
}
@media screen and (max-width: 767px) {
  .pagenation .page-numbers.next, .pagenation .page-numbers.prev {
    width: 54px;
  }
}

.pc-nav {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav__items {
  align-items: end;
  display: flex;
  height: inherit;
  margin-left: 2.25rem;
}

.pc-nav__item {
  padding-block: 1.75rem;
}
.pc-nav__item:not(:first-child) {
  margin-left: 2.25rem;
}
@media screen and (max-width: 1439px) {
  .pc-nav__item:not(:first-child) {
    margin-left: 1.4rem;
  }
}

.pc-nav__item a {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  height: inherit;
  justify-content: center;
  position: relative;
  transition: color 0.3s;
}
@media (hover: hover) {
  .pc-nav__item a:hover {
    color: #EB500B;
  }
}
.pc-nav__item a .pc-nav-item__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1111111111;
}
.pc-nav__item a .pc-nav-item__subText {
  font-size: 0.8125rem;
  line-height: 1.2;
  margin-right: auto;
}

.dropdown-content {
  background-color: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  display: none;
  padding: 1.4375rem;
  position: absolute;
  top: 5.6rem;
  z-index: 2;
}
.dropdown-content ul {
  line-height: 2;
}
.dropdown-content ul li {
  padding-left: 1rem;
  position: relative;
}
.dropdown-content ul li a {
  display: block;
  font-weight: 700;
}
.dropdown-content ul li::before {
  background-color: #1F46AB;
  content: "";
  display: inline-block;
  height: 1px;
  left: -7px;
  position: absolute;
  top: calc(50% - 0px);
  width: 16px;
}
.dropdown-content .triangle {
  border-bottom: 15px solid #FFF;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  position: absolute;
  top: -0.8rem;
}
.dropdown-content .triangle::before {
  -webkit-filter: blur(1.5px);
  border-bottom: 12px solid rgba(0, 0, 0, 0.2); /* 影の透明度をさらに上げて薄くする */
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  content: "";
  filter: blur(1.5px); /* ぼかしを控えめに */
  height: 0;
  left: -12px;
  position: absolute;
  top: 0px; /* 影を下に配置 */
  width: 0;
  z-index: -1; /* 元の三角形の後ろに影を配置 */
}

.dropdown-content ul li:not(:first-child) {
  margin-top: 0.4rem;
}

.dropdown .dropbtn {
  display: block;
  height: 100%;
  line-height: calc(3.5rem + 20px);
  padding: 0;
}

.dropdown .dropbtn .pc-nav-item__text {
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
  font-size: 1rem;
}

.sp-nav {
  -webkit-transform: translateX(100%);
  background: #fff;
  height: 100vh;
  left: 0;
  overflow-y: scroll; /* スクロールを可能にする */
  position: fixed;
  right: 0;
  top: 3.125rem;
  transform: translateX(100%);
  transition: 0.4s;
  visibility: hidden;
  width: 100%;
  z-index: 9999;
}

.sp-nav.is-show {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: 0.4s;
  visibility: visible;
}

.sp-nav__items {
  margin-top: 1.25rem;
  max-height: calc(100vh - 3.125rem); /* 上部からの距離を引いた高さを設定 */
  overflow-y: auto; /* スクロール可能に */
  padding-inline: 15px;
}

.sp-nav__item {
  position: relative;
}
.sp-nav__item a {
  border-bottom: 1px solid #EB500B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4rem;
  padding-block: 0.875rem;
  position: relative;
}
.sp-nav__item a::after {
  -webkit-transform: translateY(-50%);
  color: #EB500B;
  content: "＞";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sp-nav__item.no-mark a::after {
  content: "";
}

.sp-nav__item.no-mark .sp-dropdown-content a::after {
  content: "＞";
}

.sp-nav-item__text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1111111111;
}

.sp-accordion-icon {
  -webkit-transform: translateY(-50%);
  background-color: transparent; /* 背景色を透明に */
  display: inline-block;
  height: 12px;
  position: absolute; /* アイコンを親要素内で絶対位置に固定 */
  right: 0.3rem; /* 右端からの位置を指定 */
  top: 50%; /* 上下中央に配置 */
  transform: translateY(-50%); /* 上下中央に揃える */
  width: 12px;
  z-index: 10; /* 他の要素より上に表示 */
}

.sp-accordion-icon::before,
.sp-accordion-icon::after {
  background-color: #EB500B; /* マークの色をナビゲーションに合わせる */
  content: "";
  position: absolute;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.sp-accordion-icon::before {
  -webkit-transform: translateY(-50%);
  height: 2px;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sp-accordion-icon::after {
  -webkit-transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
}

/* メニューが開いたときの - マーク */
.sp-trigger.is-active .sp-accordion-icon::after {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

/* ドロップダウンメニュー */
.sp-dropdown-content {
  display: none; /* 初期状態では非表示 */
  list-style: none;
  margin: 1rem 0 6rem 0;
}

.sp-nav__item.sp-trigger.is-active .sp-dropdown-content {
  display: block; /* 開いたときに表示 */
}

.sp-nav__item .sp-dropdown-content li {
  padding: 0 0 0 1rem;
}

.sp-nav__item .sp-dropdown-content li:not(:first-child) {
  margin-top: 0.4rem;
}

.sp-nav__item .sp-dropdown-content li a {
  border-bottom: 0;
  min-height: 2.5rem;
  padding-block: 0.4rem;
}

.sp-nav__item a .sp-dropdown-content a {
  color: #000; /* リンクの色 */
  display: block;
  min-height: 2rem;
  padding: 0.875rem;
  text-decoration: none;
}

.sub-page-fv {
  background: linear-gradient(90deg, #0081bf 0%, #1f46ab 100%);
  border: 1px solid #707070;
  margin-top: 5.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-page-fv {
    margin-top: 3.125rem;
  }
}

.sub-page-fv__title {
  color: #fff;
  font-size: 2.3125rem;
  font-weight: 700;
  padding: 6rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-page-fv__title {
    font-size: 1.625rem;
    padding: 1.5625rem 0 4.0625rem;
  }
}
.sub-page-fv__title--sub {
  bottom: 3.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .sub-page-fv__title--sub {
    bottom: unset;
    font-size: 0.875rem;
    top: 3.75rem;
  }
}
.sub-page-fv__title span {
  -webkit-transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.27);
  display: block;
  font-size: 7.6875rem;
  line-height: 1.3577235772;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 47%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sub-page-fv__title span {
    -webkit-transform: translateY(0);
    font-size: 2.625rem;
    transform: translateY(0);
  }
}

.sp-nav-item__subText {
  display: block;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* 下層の共通パーツ
------------------------------------------ */
/* 下層のファーストビジュアル 
------------------------------------------ */
/* Swiper
------------------------------------------ */
.slider {
  aspect-ratio: 1/0.591;
  margin-bottom: 0.625rem;
}

.swiper-slide > img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
}

.slider-thumbnail .swiper-slide {
  aspect-ratio: 1/0.592;
  border: 1px solid #DFDFDF;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.slider-thumbnail .swiper-slide > img {
  -o-object-fit: contain;
  object-fit: contain;
}
.slider-thumbnail .swiper-slide.only-one {
  opacity: 1;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.tags {
  -ms-grid-columns: 1fr 0.625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}

.tag {
  background-color: aliceblue;
  border-radius: 20px;
  padding-block: 0.3125rem;
  text-align: center;
}

.conecta__items {
  -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1.25rem;
}

.conecta__item,
.conecta-tax__item {
  border: 1px solid #333;
  padding: 1.25rem;
}

.conecta-tax__items {
  -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.25rem;
}

.csv-head {
  display: flex;
}

.csv-head__swiper {
  width: 45%;
}

.csv-head__block {
  margin-left: 1.25rem;
  width: 50%;
}

.csv-head__text,
.csv-head__subText {
  margin-top: 1.25rem;
}

.csv-head__text {
  font-size: 1.25rem;
  font-weight: 700;
}

.csv-head__catalog-download {
  text-align: right;
}
.csv-head__catalog-download a {
  align-items: center;
  border: 1px solid #EB500B;
  color: #EB500B;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.8888888889;
  max-width: 100%;
  padding-block: 0.875rem;
  transition: background-color 0.3s, color 0.3s;
  width: 14.375rem;
}
.csv-head__catalog-download a::before {
  -webkit-mask: url(../img/icon/catalog.svg) no-repeat center center/contain;
  background-color: #EB500B;
  content: "";
  display: block;
  height: 1.75rem;
  margin-right: 0.625rem;
  mask: url(../img/icon/catalog.svg) no-repeat center center/contain;
  transition: background-color 0.3s;
  width: 1.375rem;
}
@media (hover: hover) {
  .csv-head__catalog-download a:hover {
    background-color: #EB500B;
    color: #fff;
  }
  .csv-head__catalog-download a:hover::before {
    background-color: #fff;
  }
}

/* csv-content
------------------------------------------ */
.csv-content {
  padding-block: 3.125rem;
}

.csv-content-list {
  -ms-grid-columns: 1fr 0.625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}

.csv-content-list__wrap {
  border: 1px solid #ccc;
  display: flex;
  font-size: 1rem;
  line-height: 1.4;
}

.csv-content-list__title,
.csv-content-list__desc {
  align-items: center;
  display: flex;
  padding: 1.875rem 1.25rem;
}

.csv-content-list__title {
  background-color: #f4f4f4;
  width: 35%;
}

.csv-content-list__desc {
  width: 65%;
}

.csv-content__box {
  padding-block: 1.875rem;
}

/* csv-content__table
------------------------------------------ */
.csv-content__table {
  border-collapse: collapse;
  margin-top: 1.25rem;
  width: 100%;
}
.csv-content__table th {
  background-color: #f4f4f4;
}
.csv-content__table th,
.csv-content__table td {
  border: 1px solid #ccc;
  padding: 1.875rem 1.25rem;
}

.download {
  font-size: 2.3125rem;
  margin-bottom: 6.75rem;
}
.download__customer {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .download__customer {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .download {
    font-size: 27px;
    margin-bottom: 3.5rem;
  }
}
.download__container {
  display: flex;
  flex-wrap: wrap;
  gap: 4.375rem 5.75rem;
}
@media screen and (max-width: 767px) {
  .download__container {
    gap: 2rem;
  }
}
.download__list {
  display: flex;
  gap: 2.875rem;
  width: 46%;
}
@media screen and (max-width: 1023px) {
  .download__list {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .download__list {
    gap: 1.5rem;
    width: 100%;
  }
}
.download__image {
  width: 35%;
}
@media screen and (max-width: 1023px) {
  .download__image {
    width: 100%;
  }
}
.download__text {
  display: flex;
  flex-direction: column;
  width: 65%;
}
@media screen and (max-width: 1023px) {
  .download__text {
    text-align: center;
    width: 85%;
  }
}
.download__h3 {
  font-size: 1.5625rem;
  margin-bottom: 0.8125rem;
}
@media screen and (max-width: 1023px) {
  .download__h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.download__p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  flex-grow: 1;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1023px) {
  .download__p {
    font-size: 16px;
  }
}
.download__btn {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .download__btn {
    gap: 1.25rem;
    margin-inline: auto;
  }
}
.download__btn > a {
  align-items: center;
  aspect-ratio: 1/0.295;
  border: 1px solid #EB500B;
  display: flex;
  font-size: 1.25rem;
  padding-left: 0.75rem;
  position: relative;
  width: 10.875rem;
}
@media screen and (max-width: 1023px) {
  .download__btn > a {
    aspect-ratio: 1/0.25;
    font-size: 16px;
    width: 140px;
  }
}
.download__btn > a:hover {
  opacity: 0.7;
}
.download__btn > a[href=""] {
  display: none;
}
.download__link::after {
  aspect-ratio: 1/1.8;
  background-image: url(../img/download/arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  right: 0.75rem;
  width: 0.625rem;
}
.download__pdf::after {
  aspect-ratio: 1/0.857;
  background-image: url(../img/download/after.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  width: 1.75rem;
}

.error {
  margin-top: 5.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .error {
    margin-top: 3.125rem;
  }
}
.error__title {
  font-size: 3rem;
  padding-block: 7.5rem 2.5rem;
}
.error__subtitle {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.error__text {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1023px) {
  .error__text {
    font-size: 15px;
  }
}
.error__btn > a {
  align-items: center;
  background-color: #EB500B;
  border: 3px solid #fff;
  border-radius: 66px;
  color: #fff;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 60%;
}
@media screen and (max-width: 1023px) {
  .error__btn > a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .error__btn > a {
    border: 2px solid #fff;
    border-radius: 66px;
    font-size: 1.125rem;
    padding-block: 2rem;
    width: 90%;
  }
}
@media (hover: hover) {
  .error__btn > a:hover {
    background-color: #fff;
    border: 3px solid #EB500B;
    color: #EB500B;
  }
  .error__btn > a:hover::before {
    background-color: #EB500B;
  }
}
.error__btn > a::before {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  background-color: #fff;
  content: "";
  display: inline-block;
  margin-right: 0.9375rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s;
}

.result-btn {
  color: #fff;
  padding-block: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .result-btn {
    padding-block: 3rem;
  }
}
.result-btn > a {
  align-items: center;
  background-color: #EB500B;
  border: 3px solid #fff;
  border-radius: 66px;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 60%;
}
@media screen and (max-width: 1023px) {
  .result-btn > a {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .result-btn > a {
    border: 2px solid #fff;
    border-radius: 66px;
    font-size: 1.125rem;
    padding-block: 2rem;
  }
}
@media (hover: hover) {
  .result-btn > a:hover {
    background-color: #fff;
    border: 3px solid #EB500B;
    color: #EB500B;
  }
  .result-btn > a:hover::before {
    background-color: #EB500B;
  }
}
.result-btn > a::before {
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  background-color: #fff;
  content: "";
  display: inline-block;
  margin-right: 0.9375rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: background-color 0.3s;
}

.activity__sec {
  border-bottom: 2px solid #0081bf;
  display: flex;
  gap: 2.875rem;
  margin-bottom: 4.25rem;
  padding-bottom: 2.375rem;
}
@media screen and (max-width: 767px) {
  .activity__sec {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
}
.activity__sec:last-child {
  border-bottom: unset;
  margin-bottom: 10.9375rem;
  padding-bottom: unset;
}
@media screen and (max-width: 767px) {
  .activity__sec:last-child {
    margin-bottom: 5rem;
  }
}
.activity__left {
  width: 14.5rem;
}
@media screen and (max-width: 767px) {
  .activity__left {
    width: 100%;
  }
}
.activity__image {
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .activity__image {
    width: 100%;
  }
}
.activity__image > img {
  aspect-ratio: 1.182/1;
}
.activity__right {
  flex: 1;
}
.activity__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .activity__text {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .activity__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.company {
  padding-block: 4.625rem 7.625rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 3.125rem 6.25rem;
  }
}

.company__fv img {
  border-radius: 10px;
}

.company__head {
  margin-top: 3.625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company__head {
    margin-top: 2.1875rem;
  }
}

.company__title {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
}
@media screen and (max-width: 767px) {
  .company__title {
    font-size: 1.7rem;
  }
}

.company__text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .company__text {
    font-size: 1rem;
    margin-top: 0.9375rem;
    text-align: left;
  }
}

.company__list {
  -ms-grid-columns: 1fr 4.375rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 7.1875rem 4.375rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    -ms-grid-columns: 1fr;
    gap: 3.125rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 5.3125rem;
  }
}

.company__item {
  display: flex;
  height: 100%;
  width: 100%;
}
.company__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 14.0625rem;
  padding-bottom: 1.5625rem;
  position: relative;
  transition: all 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__item a {
    min-height: 9.875rem;
  }
}
.company__item a::before {
  -webkit-transform: scale(1, 1);
  -webkit-transform-origin: left;
  background-color: #0081BF;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(1, 1);
  transform-origin: left;
  width: 100%;
}
@media (hover: hover) {
  .company__item a:hover {
    color: #0081BF;
    opacity: 0.6;
  }
}

.company__item-title {
  font-size: 2.3125rem;
  font-weight: 700;
  line-height: 1.25;
  padding-left: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__item-title {
    font-size: 1.6rem;
    padding-left: 2.8125rem;
  }
}
.company__item-title::before {
  background: url(../img/company/company-list-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 4rem;
  left: 0;
  position: absolute;
  top: 0.625rem;
  width: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .company__item-title::before {
    height: 3.0625rem;
    top: 0;
    width: 1.6875rem;
  }
}
.company__item-title span {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .company__item-title span {
    font-size: 0.8rem;
  }
}

.company__item-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .company__item-text {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.greeting__textarea {
  font-size: 1.25rem;
  line-height: 2.5;
  margin-bottom: 8.5625rem;
  margin-inline: auto;
  max-width: 62.3125rem;
}
@media screen and (max-width: 1023px) {
  .greeting__textarea {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting__textarea {
    font-size: 0.9375rem;
    margin-bottom: 5rem;
  }
}
.greeting__greeting-container {
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .greeting__greeting-container {
    margin-bottom: 4.375rem;
  }
}
.greeting__greeting {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .greeting__greeting {
    margin-bottom: 2.25rem;
  }
}
.greeting__indent {
  font-weight: 400;
  text-indent: 1em;
}
.greeting__department {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .greeting__department {
    margin-bottom: 2.25rem;
  }
}
.greeting__department-name {
  font-weight: 700;
}
.greeting__thanks {
  margin-bottom: 4.875rem;
}
@media screen and (max-width: 767px) {
  .greeting__thanks {
    margin-bottom: 2.5rem;
  }
}
.greeting__signature {
  font-family: "kozuka-mincho-pr6n", serif;
  font-weight: 700;
  text-align: right;
}
.greeting__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 16.6%);
}
@media screen and (max-width: 1023px) {
  .greeting__list {
    grid-auto-flow: unset;
    grid-template-columns: repeat(auto-fit, 33.3%);
  }
}
@media screen and (max-width: 767px) {
  .greeting__list {
    grid-auto-flow: unset;
    grid-template-columns: repeat(auto-fit, 50%);
  }
}
.greeting__item {
  border: 1px solid #707070;
  display: block;
  max-width: 14.625rem;
  min-height: 6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .greeting__item {
    max-width: unset;
    min-height: 5.125rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting__item {
    max-width: unset;
    min-height: 4rem;
  }
}
.greeting__item-title {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  height: 100%;
  line-height: 1.43;
  padding: 1.375rem 0 0 1.125rem;
  transition: 0.3s;
  width: 100%;
}
.greeting__item-title::before {
  background: url(../img/company/company-list-arrow.svg) no-repeat center center/contain;
  bottom: 1.375rem;
  content: "";
  display: block;
  height: 1.25rem;
  position: absolute;
  right: 1.25rem;
  width: 0.75rem;
}
@media screen and (max-width: 1023px) {
  .greeting__item-title::before {
    bottom: 0.75rem;
    right: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting__item-title::before {
    bottom: 0.5rem;
    height: 1rem;
    right: 0.5rem;
    width: 0.5rem;
  }
}
@media (hover: hover) {
  .greeting__item-title:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1023px) {
  .greeting__item-title {
    font-size: 1.25rem;
    left: 0.5rem;
    padding: 0.625rem 0 0 0.5rem;
    top: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .greeting__item-title {
    font-size: 0.8rem;
  }
}

.group-heading {
  margin-bottom: 3.125rem;
  margin-inline: auto;
  max-width: 70rem;
  text-align: center;
}
.group-heading__text--sub {
  font-size: 1.25rem;
  line-height: 2.5;
  margin-top: 4.0625rem;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .group-heading__text--sub {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .group-heading__text--sub {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.5rem;
  }
}

.group__image {
  margin-bottom: 10rem;
  margin-inline: auto;
  max-width: 68.75rem;
}
@media screen and (max-width: 1023px) {
  .group__image {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 1023px) {
  .group__image__pc {
    display: none;
  }
}
.group__image__sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .group__image__sp {
    display: block;
    margin-bottom: 4rem;
    margin-inline: auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .group__image__sp {
    margin-bottom: 3rem;
  }
}
.group__image__list {
  display: none;
}
@media screen and (max-width: 1023px) {
  .group__image__list {
    display: block;
  }
}
.group__image__title {
  color: #0081bf;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .group__image__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.group__image__text {
  font-size: 1.625rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .group__image__text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.group__business {
  margin-bottom: 8.125rem;
}
@media screen and (max-width: 1023px) {
  .group__business {
    margin-bottom: 5rem;
  }
}
.group__container {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5625rem;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .group__container {
    align-items: center;
    flex-direction: column;
  }
}
.group__list {
  width: 43%;
}
@media screen and (max-width: 1023px) {
  .group__list {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .group__list {
    width: 100%;
  }
}
.group__list__image {
  height: 18.25rem;
  margin-bottom: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .group__list__image {
    height: unset;
  }
}
.group__list__image--l {
  height: 18.25rem;
  margin-bottom: 1.375rem;
  margin-inline: auto;
  width: 22.25rem;
}
@media screen and (max-width: 1023px) {
  .group__list__image--l {
    height: unset;
    width: 80%;
  }
}
.group__title--sub {
  font-size: 1rem;
  line-height: 1.31;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 1023px) {
  .group__title--sub {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .group__title--sub {
    font-size: 0.875rem;
    line-height: 1;
  }
}
.group__title--main {
  border-bottom: 5px solid #1F46AB;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3.25rem;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .group__title--main {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .group__title--main {
    font-size: 1.125rem;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
}
.group__image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.375rem;
}
.group__card {
  width: 37%;
}
@media screen and (max-width: 1023px) {
  .group__card {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .group__card {
    width: 45%;
  }
}
.group__name {
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.0625rem;
  margin-bottom: 0.375rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .group__name {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .group__name {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.group__text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .group__text {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .group__text {
    font-size: 1rem;
    line-height: 2;
  }
}
.group__about__title {
  margin-bottom: 4.5rem;
  width: 20.625rem;
}
@media screen and (max-width: 1023px) {
  .group__about__title {
    width: 28.125rem;
  }
}
@media screen and (max-width: 767px) {
  .group__about__title {
    margin-bottom: 2.5rem;
    width: 16.875rem;
  }
}
.group__about table {
  width: 100%;
}
.group__about table th {
  font-size: 1.25rem;
  line-height: 1.7;
  padding-block: 2.25rem 1.25rem;
  padding-left: 1.5rem;
  position: relative;
  text-align: left;
  width: 8.125rem;
}
@media screen and (max-width: 1023px) {
  .group__about table th {
    font-size: 1.625rem;
    width: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .group__about table th {
    font-size: 1rem;
    padding-block: 1.125rem 0.625rem;
    padding-left: 0.75rem;
    width: 5rem;
  }
}
.group__about table th::before {
  background-color: #DFEEF5;
  content: "";
  display: block;
  height: 3.125rem;
  left: -8.375rem;
  position: absolute;
  width: 8.375rem;
}
@media screen and (max-width: 1023px) {
  .group__about table th::before {
    left: -5.625rem;
    width: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .group__about table th::before {
    height: 2.25rem;
    left: -0.5rem;
    width: 0.625rem;
  }
}
.group__about table td {
  border-bottom: 5px solid #E8ECF7;
  font-size: 1.25rem;
  line-height: 1.7;
  padding-block: 2.25rem 1.25rem;
}
@media screen and (max-width: 1023px) {
  .group__about table td {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .group__about table td {
    font-size: 1rem;
    padding-block: 1.125rem 0.625rem;
    padding-left: 0.75rem;
  }
}
.group__about__image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .group__table--second .th-second {
    width: 6.875rem;
  }
}
.group__table--second .th-second::before {
  left: -0.6875rem;
  top: 3.125rem;
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .group__table--second .th-second::before {
    top: 1.875rem;
  }
}
.group__table--second td {
  width: 28.125rem;
}
.group__table--third {
  margin-bottom: 2.75rem;
}
.group__table--third .th-third::before {
  left: -0.6875rem;
  top: 2.1875rem;
  width: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .group__table--third .th-third::before {
    top: 1.25rem;
  }
}
.group__base {
  margin-bottom: 9.25rem;
  margin-inline: auto;
  max-width: 65.625rem;
}
@media screen and (max-width: 1023px) {
  .group__base {
    margin-bottom: 5rem;
    max-width: 100%;
  }
}
.group__location {
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .group__location {
    margin-bottom: 4rem;
  }
}
.group__branch {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75rem 3rem;
}
@media screen and (max-width: 767px) {
  .group__branch {
    flex-direction: column;
    gap: 2rem;
  }
}
.group__branch__list {
  border-bottom: 5px solid #E8ECF7;
  padding-bottom: 1.5625rem;
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .group__branch__list {
    padding-bottom: 2rem;
    width: 100%;
  }
}
.group__branch__name {
  border-bottom: 5px solid #0081bf;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 1.5625rem;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 1023px) {
  .group__branch__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .group__branch__name {
    font-size: 1.25rem;
  }
}
.group__branch__info {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .group__branch__info {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .group__branch__info {
    font-size: 1rem;
  }
}
.group__table {
  margin-bottom: 5rem;
}

.achievements__left--group {
  background-color: #DFEEF5;
  width: 8.375rem;
}
@media screen and (max-width: 767px) {
  .achievements__left--group {
    width: 2.5rem;
  }
}

.achievements__right--group {
  flex: 1;
}

.achievements__right--title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .achievements__right--title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__right--title {
    font-size: 1rem;
  }
}

.achievements__list--group {
  font-size: 1.25rem;
  line-height: 1.7;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .achievements__list--group {
    font-size: 1.625rem;
    justify-content: space-between;
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .achievements__list--group {
    font-size: 0.875rem;
    line-height: 2;
    width: 12.5rem;
  }
}
.achievements__list--group > span {
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .achievements__list--group > span {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__list--group > span {
    font-size: 0.75rem;
  }
}

.usb {
  background-color: #4F81BC;
}

.type-c {
  background-color: #953735;
}

.hdmi {
  background-color: #9BBB58;
}

.btb {
  background-color: #8064A1;
}

.cable {
  background-color: #4AACC6;
}

.automotive {
  background-color: #000000;
}

.history-heading {
  margin-bottom: 4.625rem;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .low-policy__h3 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__h3 {
    font-size: 1.5rem;
  }
}
.low-policy__list {
  border-bottom: 2px solid #0081bf;
  display: flex;
  gap: 3.3125rem;
  margin-bottom: 3rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__list {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__list {
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 2.5rem;
  }
}
.low-policy__right {
  flex: 1;
}
@media screen and (max-width: 1023px) {
  .low-policy__right {
    padding-left: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__right {
    padding-left: 1.3125rem;
  }
}
.low-policy__text {
  counter-increment: cnt;
  font-size: 1.25rem;
  line-height: 2.5;
  list-style-type: none;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .low-policy__text {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__text {
    font-size: 0.95rem;
  }
}
.low-policy__text::before {
  content: "" counter(cnt) "、";
  left: -1.9375rem;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .low-policy__text::before {
    left: -1.3125rem;
  }
}
.low-policy__table {
  border-bottom: 2px solid #0081bf;
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.75rem;
  overflow: hidden;
  padding-bottom: 5rem;
}
.low-policy__table-unset {
  border-bottom: unset;
}
@media screen and (max-width: 1023px) {
  .low-policy__table {
    flex-direction: column;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .scroll {
    overflow-x: scroll;
  }
}
.low-policy__table .table {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .low-policy__table .table {
    width: 650px;
  }
}
.low-policy__table .table .tr {
  border-bottom: 1px solid #A4C8D9;
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr {
    padding-bottom: 0.875rem;
    padding-top: 0.875rem;
  }
}
.low-policy__table .table .tr:first-child, .low-policy__table .table .tr:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}
.low-policy__table .table .tr:first-child, .low-policy__table .table .tr:nth-child(2) {
  padding-top: unset;
}
.low-policy__table .table .tr .th {
  background-color: #DFEEF5;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 0.75rem;
  padding-block: 0.8125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .th {
    padding-block: 0.375rem;
  }
}
.low-policy__table .table .tr .th:nth-child(1), .low-policy__table .table .tr .th:nth-child(2), .low-policy__table .table .tr .th:nth-child(3) {
  width: 12.5625rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .th:nth-child(1), .low-policy__table .table .tr .th:nth-child(2), .low-policy__table .table .tr .th:nth-child(3) {
    font-size: 1.75rem;
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .th:nth-child(1), .low-policy__table .table .tr .th:nth-child(2), .low-policy__table .table .tr .th:nth-child(3) {
    font-size: 1rem;
  }
}
.low-policy__table .table .tr .th:nth-child(4), .low-policy__table .table .tr .th:nth-child(5) {
  width: 5.875rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .th:nth-child(4), .low-policy__table .table .tr .th:nth-child(5) {
    font-size: 1.75rem;
    width: 12%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .th:nth-child(4), .low-policy__table .table .tr .th:nth-child(5) {
    font-size: 1rem;
  }
}
.low-policy__table .table .tr .table-left {
  align-items: center;
  background-color: #EEEEEE;
  display: flex;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .table-left {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .table-left {
    width: 23%;
  }
}
.low-policy__table .table .tr .table-right {
  flex: 1;
}
.low-policy__table .table .tr .line {
  border-bottom: 1px solid #A4C8D9;
  display: flex;
  gap: 0.75rem;
}
.low-policy__table .table .tr .line:last-child {
  border-bottom: unset;
}
.low-policy__table .table .tr .name {
  display: inline-block;
  font-weight: 700;
  line-height: 1.37;
  width: 12.5625rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .name {
    font-size: 1.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .name {
    font-size: 0.8125rem;
  }
}
.low-policy__table .table .tr .td {
  display: inline-block;
  font-weight: 700;
  line-height: 1.37;
  padding-block: 1.125rem;
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .td {
    padding-block: 0.625rem;
  }
}
.low-policy__table .table .tr .td:nth-child(1), .low-policy__table .table .tr .td:nth-child(2) {
  width: 12.5625rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .td:nth-child(1), .low-policy__table .table .tr .td:nth-child(2) {
    font-size: 1.5rem;
    font-weight: 400;
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .td:nth-child(1), .low-policy__table .table .tr .td:nth-child(2) {
    font-size: 0.875rem;
  }
}
.low-policy__table .table .tr .td:nth-child(3), .low-policy__table .table .tr .td:nth-child(4) {
  text-align: center;
  width: 5.875rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__table .table .tr .td:nth-child(3), .low-policy__table .table .tr .td:nth-child(4) {
    font-size: 1.5rem;
    font-weight: 400;
    width: 16%;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__table .table .tr .td:nth-child(3), .low-policy__table .table .tr .td:nth-child(4) {
    font-size: 0.875rem;
  }
}
.low-policy__table table {
  border-spacing: 0.75rem 3rem;
  flex: 1;
}
.low-policy__table table th {
  background-color: #DFEEF5;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.33;
  padding-block: 0.8125rem;
  padding-inline: 0.75rem;
}
.low-policy__table table td[rowspan] {
  background-color: #EEEEEE;
  font-weight: 700;
  padding-inline: 0.375rem;
  position: relative;
  text-align: center;
}
.low-policy__table table td[rowspan]::before {
  border-bottom: 1px solid red;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 52.5625rem;
}
.low-policy__category {
  display: flex;
  gap: 4.1875rem;
  margin-bottom: 7.75rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__category {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__category {
    gap: 1.25rem;
    margin-bottom: 5rem;
  }
}
.low-policy__log-container {
  display: flex;
  gap: 2.9375rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__log-container {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__log-container {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.low-policy__log-box {
  text-align: center;
}
.low-policy__log {
  align-items: center;
  display: flex;
  height: 6rem;
  margin-bottom: 0.75rem;
  width: 6rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__log {
    height: 9.375rem;
    width: 9.375rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__log {
    height: 6.875rem;
    width: 6.875rem;
  }
}
.low-policy__log-name {
  line-height: 1.37;
}
@media screen and (max-width: 1023px) {
  .low-policy__log-name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__log-name {
    font-size: 0.875rem;
  }
}
.low-policy__quality {
  align-items: center;
  border-bottom: 2px solid #0081bf;
  display: flex;
  gap: 8.125rem;
  margin-bottom: 3.75rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__quality {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__quality {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.low-policy__quality__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__quality__text {
    font-size: 16px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__quality__text {
    font-size: 1rem;
  }
}
.low-policy__direction {
  border-bottom: 2px solid #0081bf;
  display: flex;
  gap: 5.3125rem;
  margin-bottom: 2.9375rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__direction {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__direction {
    gap: 1.25rem;
  }
}
.low-policy__direction__list-container {
  margin-inline: auto;
}
.low-policy__direction__list {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .low-policy__direction__list {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__direction__list {
    font-size: 0.875rem;
  }
}
.low-policy__card {
  margin-bottom: 5.75rem;
  width: 50%;
}
.low-policy__card:nth-child(1), .low-policy__card:nth-child(3) {
  border-right: 1px solid #707070;
  padding-right: 6.5rem;
}
@media screen and (max-width: 767px) {
  .low-policy__card:nth-child(1), .low-policy__card:nth-child(3) {
    border-right: unset;
    padding-right: unset;
  }
}
.low-policy__card:nth-child(2), .low-policy__card:nth-child(4) {
  padding-left: 6.5rem;
}
@media screen and (max-width: 767px) {
  .low-policy__card:nth-child(2), .low-policy__card:nth-child(4) {
    padding-left: unset;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__card {
    margin-bottom: 2.5rem;
    width: 100%;
  }
}
.low-policy__security {
  text-align: center;
}
.low-policy__security__contents {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10.4375rem;
  margin-top: -1.875rem;
}
@media screen and (max-width: 767px) {
  .low-policy__security__contents {
    flex-direction: column;
    margin-bottom: 5rem;
    margin-top: unset;
  }
}
.low-policy__security-title {
  border-bottom: 5px solid #0081bf;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.625rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .low-policy__security-title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__security-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }
}
.low-policy__security-text {
  font-size: 1.25rem;
  line-height: 2.5;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .low-policy__security-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .low-policy__security-text {
    font-size: 1rem;
    line-height: 2;
  }
}

.business__heading {
  padding-block: 4rem 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business__heading {
    padding-block: 2rem 4.5rem;
  }
}
.business__heading-h2 {
  font-size: 3.125rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .business__heading-h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.business__heading-text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .business__heading-text {
    font-size: 16px;
    text-align: left;
  }
}
.business__model {
  margin-bottom: 5.75rem;
}
.business__model-cable {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .business__model-cable {
    margin-bottom: 2.5rem;
  }
}
.business__h2 {
  margin-bottom: 2.5rem;
}
.business__h3 {
  color: #1F46AB;
  font-size: 2.3125rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .business__h3 {
    font-size: 1.25rem;
  }
}
.business__dl {
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 1.625rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .business__dl {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .business__dl {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.business__dl-line {
  display: flex;
}
@media screen and (max-width: 767px) {
  .business__dl-line {
    flex-direction: column;
  }
}
.business__dl dl {
  background-color: #DFEEF5;
  padding: 0.75rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .business__dl dl {
    padding: 0.75rem 1.25rem;
  }
}
.business__dl dd {
  border: 1px solid #DFEEF5;
  padding: 0.75rem 3.25rem;
}
@media screen and (max-width: 767px) {
  .business__dl dd {
    padding: 0.75rem 1.25rem;
  }
}
.business__h4 {
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .business__h4 {
    font-size: 18px;
  }
}
.business__model-text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .business__model-text {
    font-size: 16px;
  }
}
.business__model-list {
  counter-reset: li_count;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}
@media screen and (max-width: 1439px) {
  .business__model-list {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .business__model-list {
    gap: 1rem;
  }
}
.business__model-item {
  align-items: center;
  aspect-ratio: 4/1;
  background-color: #DFEEF5;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6666666667;
  padding-block: 0.5rem;
  padding-inline: 4.5rem 1.5625rem;
  position: relative;
  width: 31%;
}
@media screen and (max-width: 1023px) {
  .business__model-item {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .business__model-item {
    aspect-ratio: unset;
    padding-block: 1rem;
    padding-inline: 3rem 1rem;
    width: 100%;
  }
}
.business__model-item::before {
  aspect-ratio: 1/1;
  background-color: #1F46AB;
  border-radius: 50%;
  color: #DFEEF5;
  content: counter(li_count);
  counter-increment: li_count;
  display: block;
  font-size: 1.875rem;
  left: 1rem;
  line-height: 1.2;
  position: absolute;
  text-align: center;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .business__model-item::before {
    font-size: 16px;
    line-height: 1.5;
    width: 24px;
  }
}
.business__quality {
  margin-bottom: 5rem;
}
.business__quality-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1023px) {
  .business__quality-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .business__quality-text {
    margin-bottom: 2.5rem;
  }
}
.business__quality-flex {
  display: flex;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .business__quality-flex {
    flex-direction: column;
    gap: 40px;
  }
}
.business__quality-image {
  width: 36.5%;
}
@media screen and (max-width: 1023px) {
  .business__quality-image {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .business__quality-image {
    width: 100%;
  }
}
.business__quality-image__supplement {
  font-size: 1rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .business__quality-image__supplement {
    font-size: 13px;
  }
}
.business__quality-dl {
  flex: 1;
}
.business__quality-line {
  border-bottom: 1px solid #707070;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2.25rem;
}
.business__quality-line:last-child {
  border-bottom: unset;
  margin-bottom: unset;
  padding-bottom: unset;
}
@media screen and (max-width: 1023px) {
  .business__quality-line {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
.business__quality-line > dt {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.36;
  width: 14em;
}
@media screen and (max-width: 1023px) {
  .business__quality-line > dt {
    font-size: 20px;
  }
}
.business__quality-line > dd {
  flex: 1;
  font-size: 16px;
  line-height: 1.5625;
}
@media screen and (max-width: 1023px) {
  .business__quality-line > dd {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .business__quality-line > dd {
    width: 100%;
  }
}
.business__about {
  margin-bottom: 8.1875rem;
}
@media screen and (max-width: 767px) {
  .business__about {
    margin-bottom: 3rem;
  }
}
.business__about-dl {
  margin-bottom: 2.625rem;
}
@media screen and (max-width: 767px) {
  .business__about-dl {
    margin-bottom: unset;
  }
}
.business__about-line {
  display: flex;
  font-size: 1.5625rem;
  font-weight: 700;
  gap: 1em;
  line-height: 1.36;
}
@media screen and (max-width: 1023px) {
  .business__about-line {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .business__about-line {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1em;
  }
}
.business__about-line > dt {
  padding-right: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .business__about-line > dt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.business__about-line > dt::after {
  content: "：";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.business__about-list {
  counter-reset: li_count;
  display: flex;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .business__about-list {
    flex-direction: column;
    gap: 1rem;
  }
}
.business__about-item {
  align-items: center;
  aspect-ratio: 5/1;
  background-color: #DFEEF5;
  display: flex;
  font-size: 1.25rem;
  line-height: 1.7;
  padding-left: 4.3125rem;
  padding-right: 1.5625rem;
  position: relative;
  width: 34.0625rem;
}
@media screen and (max-width: 1023px) {
  .business__about-item {
    font-size: 14px;
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .business__about-item {
    padding-left: 3rem;
    padding-right: 1rem;
    width: 100%;
  }
}
.business__about-item::before {
  aspect-ratio: 1/1;
  background-color: #1F46AB;
  border-radius: 50%;
  color: #DFEEF5;
  content: counter(li_count);
  counter-increment: li_count;
  display: block;
  font-size: 1.875rem;
  left: 1.125rem;
  line-height: 2.5rem;
  position: absolute;
  text-align: center;
  width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .business__about-item::before {
    font-size: 16px;
    line-height: 1.5;
    width: 24px;
  }
}
.business__location {
  margin-bottom: 6.3125rem;
}
@media screen and (max-width: 767px) {
  .business__location {
    margin-bottom: 3rem;
  }
}
.business__location-image {
  aspect-ratio: 1/0.53;
  margin-block: 5.625rem 3.875rem;
  margin-inline: auto;
  width: 77.3125rem;
}
@media screen and (max-width: 767px) {
  .business__location-image {
    margin-block: 3.675rem 2.875rem;
    width: 100%;
  }
}
.business__location-dl {
  margin-inline: auto;
  width: 67rem;
}
@media screen and (max-width: 1023px) {
  .business__location-dl {
    width: 100%;
  }
}
.business__location-line {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4375rem;
  position: relative;
}
.business__location-line:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 767px) {
  .business__location-line {
    flex-direction: column;
  }
}
.business__location-line::before {
  aspect-ratio: 1/0.657;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 8.375rem;
}
@media screen and (max-width: 1023px) {
  .business__location-line::before {
    height: 100%;
    width: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .business__location-line::before {
    width: 1rem;
  }
}
.business__location-line--orange::before {
  background-color: #EB500B;
}
.business__location-line--deep-blue::before {
  background-color: #1F46AB;
}
.business__location-line--blue::before {
  background-color: #0081bf;
}
.business__location-line > dt {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 1rem 0 2.75rem 10.0625rem;
  position: relative;
  width: 33%;
}
@media screen and (max-width: 1023px) {
  .business__location-line > dt {
    font-size: 16px;
    padding: 1rem 0 2.75rem 3rem;
    width: 26%;
  }
}
@media screen and (max-width: 767px) {
  .business__location-line > dt {
    font-size: 16px;
    padding: 0 0 1rem 1.5rem;
    width: 100%;
  }
}
.business__location-dd-box {
  border-bottom: 5px solid #E8ECF7;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 1.25rem;
  justify-content: center;
  line-height: 1.7;
  padding-bottom: 1.6875rem;
}
@media screen and (max-width: 1023px) {
  .business__location-dd-box {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .business__location-dd-box {
    padding-left: 1em;
  }
}
.business__location-dd-box dd {
  padding-left: 1em;
  position: relative;
}
.business__location-dd-box dd::before {
  content: "・";
  display: block;
  left: 0;
  position: absolute;
}
.business__location-responsive {
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 1023px) {
  .business__location-responsive {
    flex-direction: column;
    gap: 0;
  }
}

.overview__line {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.71875rem;
}
.overview__table {
  margin-bottom: 2.625rem;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .overview__table {
    margin-bottom: 1.5rem;
  }
}
.overview__table dt {
  border-bottom: 5px solid #0081bf;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  padding-bottom: 1.25rem;
  vertical-align: top;
  width: 9.375rem;
}
@media screen and (max-width: 1023px) {
  .overview__table dt {
    font-size: 1.625rem;
    width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .overview__table dt {
    font-size: 0.875rem;
    padding-bottom: 1rem;
    width: 6.25rem;
  }
}
.overview__table dd {
  border-bottom: 5px solid #E8ECF7;
  display: block;
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .overview__table dd {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .overview__table dd {
    font-size: 0.875rem;
    padding-bottom: 1rem;
  }
}
.overview__image {
  margin-bottom: 1.75rem;
  margin-inline: auto;
  width: 65rem;
}
@media screen and (max-width: 767px) {
  .overview__image {
    width: 100%;
  }
}

.achievements {
  margin-top: 4rem;
}
.achievements__table {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .achievements__table {
    margin-bottom: 2.5rem;
  }
}
.achievements__left {
  align-items: center;
  background-color: #DFEEF5;
  display: flex;
  justify-content: center;
  width: 8.375rem;
}
@media screen and (max-width: 767px) {
  .achievements__left {
    width: 5.5rem;
  }
}
.achievements__me {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .achievements__me {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__me {
    font-size: 0.875rem;
  }
}
.achievements__right {
  border-bottom: 5px solid #E8ECF7;
  flex: 1;
  padding-bottom: 1.75rem;
}
.achievements__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .achievements__container {
    gap: 0.625rem;
  }
}
.achievements__list {
  font-size: 1.25rem;
  line-height: 1.7;
  width: 32%;
}
@media screen and (max-width: 1023px) {
  .achievements__list {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__list {
    font-size: 0.875rem;
    line-height: 2;
    width: 12.5rem;
  }
}
.achievements__download {
  color: #ED6D00;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .achievements__download {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__download {
    font-size: 0.875rem;
    margin-bottom: 5rem;
  }
}
.achievements__download > a {
  border: 1px solid #ED6D00;
  display: inline-block;
  line-height: 3.55;
  position: relative;
  transition: 0.3s;
  width: 20.625rem;
}
@media screen and (max-width: 1023px) {
  .achievements__download > a {
    width: 27.5rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__download > a {
    font-size: 0.875rem;
    width: 18.75rem;
  }
}
.achievements__download > a:hover {
  opacity: 0.7;
}
.achievements__download > a::before {
  background-image: url("../img/overview/file.png");
  background-size: contain;
  content: "";
  display: block;
  height: 1.6875rem;
  left: 2.3125rem;
  position: absolute;
  top: 1.25rem;
  width: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .achievements__download > a::before {
    top: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .achievements__download > a::before {
    height: 1.375rem;
    top: 1rem;
    width: 1.125rem;
  }
}

.philosophy__image {
  margin-bottom: 10rem;
  margin-inline: auto;
  width: 61.1875rem;
}
@media screen and (max-width: 767px) {
  .philosophy__image {
    margin-bottom: 5rem;
    width: 100%;
  }
}
.philosophy__image > img {
  aspect-ratio: 3.653/1;
}
.philosophy__guideline {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .philosophy__guideline {
    height: unset;
    margin-bottom: 5rem;
    width: 100%;
  }
}
.philosophy__h2 {
  margin-bottom: 2.25rem;
}
.philosophy__image--guideline {
  margin-inline: auto;
  width: 56.875rem;
}
@media screen and (max-width: 767px) {
  .philosophy__image--guideline {
    width: 100%;
  }
}
.philosophy__image--guideline > img {
  aspect-ratio: 1.556/1;
}

/* コンテンツ
------------------------------------------ */
.contact__container {
  display: flex;
  gap: 6.3571428571%;
  padding-block: 3.6875rem 2.625rem;
}
@media screen and (max-width: 767px) {
  .contact__container {
    display: block;
    padding-block: 1.875rem 5rem;
  }
}

.contact-head {
  width: 40.3%;
}
@media screen and (max-width: 767px) {
  .contact-head {
    width: 100%;
  }
}

.contact-head__logo {
  transition: opacity 0.3s;
  width: 136px;
}
@media (hover: hover) {
  .contact-head__logo:hover {
    opacity: 0.7;
  }
}

.contact-head__title {
  color: #1F46AB;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .contact-head__title {
    font-size: 1.875rem;
  }
}
.contact-head__title span {
  color: #333;
  display: block;
  font-size: 1rem;
  line-height: 1.375;
  margin-top: 1.0625rem;
  text-transform: uppercase;
}

.contact-head__text {
  font-size: 1.25rem;
  line-height: 2.5;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .contact-head__text {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.contact-form {
  margin-top: 1.375rem;
  width: 46.5625rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    width: 100%;
  }
}

/* フッター
------------------------------------------ */
.contact__footer {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.contact__footer small {
  border-top: 1px solid #707070;
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  padding-block: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__footer small {
    font-size: 0.75rem;
  }
}

/* 確認画面
------------------------------------------ */
.confirm {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
/* サンクスページ
------------------------------------------ */
.thanks {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.thanks__container {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks__container {
    text-align: left;
  }
}

.thanks-head__title {
  color: #1F46AB;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .thanks-head__title {
    font-size: 1.5rem;
  }
}

.thanks-head__text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.2222222222;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .thanks-head__text {
    font-size: 1rem;
  }
}

.thanks__topBack {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .thanks__topBack {
    margin-top: 1.875rem;
    text-align: center;
  }
}

/* フォームパーツ
------------------------------------------ */
form {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  form {
    font-size: 1rem;
  }
}

.form-item {
  display: flex;
  gap: 2.1476510067%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form-item {
    display: block;
  }
}
.form-item:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .form-item:not(:first-child) {
    margin-top: 1.875rem;
  }
}
.form-item--policy {
  margin-top: 2.25rem !important;
}
@media screen and (max-width: 767px) {
  .form-item--policy {
    width: 100%;
  }
}
.form-item--column {
  align-items: flex-start;
  flex-direction: column;
}
.form-item--column .inputWrap {
  width: 100%;
}
.form-item--column .inputLabel {
  justify-content: left;
  width: 100%;
}
.form-item--column .inputLabel__require,
.form-item--column .inputLabel__optional {
  margin-left: 1.25rem;
}
.form-item--column .inputLabel + .inputWrap {
  margin-left: 0;
  width: 100%;
}
.form-item--textarea {
  margin-top: 1.5rem !important;
}
.form-item--textarea .inputWrap {
  margin-top: 0.5rem;
}

.inputLabel {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 29.5302013423%;
}
@media screen and (max-width: 767px) {
  .inputLabel {
    justify-content: left;
    width: 100%;
  }
}

.inputLabel__title {
  flex-shrink: 0;
  font-weight: 700;
}

.inputLabel__require,
.inputLabel__optional {
  border: 1px solid currentColor;
  color: #EB500B;
  display: block;
  margin-left: auto;
  max-width: 100%;
  padding-block: 0.4375rem 0.5rem;
  text-align: center;
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .inputLabel__require,
  .inputLabel__optional {
    margin-left: 0.625rem;
    padding-block: 0.3125rem 0.375rem;
    width: 3.125rem;
  }
}

.inputLabel__optional {
  color: #c3c3c3;
}

.inputLabel__text {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .inputLabel__text {
    font-size: 0.875rem;
  }
}

.inputWrap {
  width: 68.8590604027%;
}
@media screen and (max-width: 767px) {
  .inputWrap {
    margin-top: 0.625rem;
    width: 100%;
  }
}
.inputWrap--inquiry-type {
  display: flex;
  flex-wrap: wrap;
  margin-block: 2.1875rem 1.5625rem;
  row-gap: 1em;
  width: 100%;
}
.inputWrap--inquiry-type .mwform-checkbox-field {
  display: block;
  white-space: nowrap;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .inputWrap--inquiry-type .mwform-checkbox-field {
    width: 50%;
  }
}
.inputWrap--inquiry-type .mwform-checkbox-field input[type=checkbox] {
  width: 1px;
}
.inputWrap--inquiry-type .mwform-checkbox-field:nth-child(3) .mwform-checkbox-field-text, .inputWrap--inquiry-type .mwform-checkbox-field:nth-child(4) .mwform-checkbox-field-text {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .inputWrap--inquiry-type .mwform-checkbox-field:nth-child(3) .mwform-checkbox-field-text, .inputWrap--inquiry-type .mwform-checkbox-field:nth-child(4) .mwform-checkbox-field-text {
    margin-left: 0;
    width: auto;
  }
}
.inputWrap--inquiry-type .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.inputWrap--inquiry-type .mwform-checkbox-field-text {
  font-weight: 700;
}

/*----------------------------------------
	Form Parts
----------------------------------------*/
input:not([type=submit]),
textarea,
select {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  border-radius: 0;
  color: inherit;
  padding: 0.625rem 1.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  input:not([type=submit]),
  textarea,
  select {
    padding: 0.625rem 0.9375rem;
  }
}

input + input {
  border-top: 0px;
}

input:not([type=submit]),
select {
  height: 45px;
}

textarea {
  height: 120px;
  line-height: 2;
}

/*フォーカス時*/
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*select
--------------------------*/
.selectWrap {
  position: relative;
}

.selectWrap::after {
  background-color: #e5ebff;
  bottom: 0;
  content: "";
  cursor: pointer;
  display: block;
  height: 24px;
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 10px;
  width: 24px;
}

select::-ms-expand {
  /*IEでもselectの矢印を消す*/
  display: none;
}

/*radio, checkbox
------------------------------------*/
input[type=radio],
input[type=checkbox] {
  /*本来の配置から切り離す*/
  max-width: 100%;
  opacity: 0;
  /*透明にして見えなくする*/
  position: absolute;
}

/*クリック範囲*/
input[type=radio] + span,
input[type=checkbox] + span {
  align-items: center;
  cursor: pointer;
  display: flex;
  line-height: 1;
  position: relative;
  vertical-align: middle;
}

/*チェックボックススタイル*/
input[type=checkbox] + span:before {
  background: #fff;
  border: 1px solid #333;
  content: "";
  flex-shrink: 0;
  height: 0.8em;
  line-height: 1;
  margin-right: 0.5em;
  margin-top: 0.2em;
  vertical-align: middle;
  width: 0.8em;
}

/*チェックボックス未チェック時*/
input[type=checkbox] + span:after {
  content: "";
  display: none;
}

/*チェックボックスチェック時*/
input[type=checkbox]:checked + span:after {
  -webkit-transform: rotate(45deg);
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  display: block;
  height: 0.65em;
  left: 0.25em;
  position: absolute;
  top: 0.2em;
  transform: rotate(45deg);
  width: 0.35em;
}

/* プレースホルダー
------------------------------------------ */
::-webkit-input-placeholder {
  color: #c2c2c2;
}
:-ms-input-placeholder {
  color: #c2c2c2;
}
::-ms-input-placeholder {
  color: #c2c2c2;
}
::placeholder {
  color: #c2c2c2;
}

/* 個人情報保護の同意
------------------------------------------ */
.policy {
  align-items: center;
  background-color: #DFEEF5;
  display: flex;
  padding: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .policy {
    display: block;
  }
}
.policy .policy__check-area {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0.625rem;
  padding: 1.25rem;
  width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .policy .policy__check-area {
    margin-top: 1.25rem;
    text-align: center;
    width: 100%;
  }
}
.policy .policy__check-area input {
  width: 1px;
}
.policy .error {
  margin: 0.3125rem 0.3125rem 0 0.3125rem !important;
}
@media screen and (max-width: 767px) {
  .policy .error {
    margin: 0 0 0 0.3125rem !important;
  }
}

.policy__title {
  font-size: 1.125rem;
}

.policy__text {
  font-weight: 400;
  line-height: 1.6666666667;
  margin-top: 0.8125rem;
}
.policy__text a {
  text-decoration: underline;
  transition: color 0.3s;
}
@media (hover: hover) {
  .policy__text a:hover {
    color: #EB500B;
  }
}

/*ボタン
-----------------------------------*/
.form-btn__wrap {
  margin-top: 1.125rem;
  text-align: center;
}

.form-btn,
input[type=submit] {
  background-color: #EB500B;
  border: 1px solid #EB500B;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  padding-block: 1.5rem;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
  width: 22.8125rem;
}
@media (hover: hover) {
  .form-btn:hover,
  input[type=submit]:hover {
    background-color: #fff;
    color: #EB500B;
  }
}

.form-btn--confirm-submit {
  margin-inline: 1.5625rem;
  margin-top: 0;
  padding-block: 1.125rem;
  width: 12.5rem;
}
.form-btn--confirm-back {
  background-color: #fff;
  border-color: #333;
  color: #333;
  margin-inline: 1.5625rem;
  margin-top: 0;
  padding-block: 1.125rem;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .form-btn--confirm-back {
    margin-top: 1.25rem;
  }
}
@media (hover: hover) {
  .form-btn--confirm-back:hover {
    background-color: #fff;
    border-color: currentColor;
    color: #333;
  }
}
@media (hover: none) {
  .form-btn--confirm-back:active {
    background-color: #fff;
    border-color: currentColor;
    color: #333;
  }
}

.form-btns {
  display: none;
}

/* MW WP formカスタマイズ
------------------------------------------ */
.mw_wp_form .error {
  font-size: 0.875rem !important;
  margin: 0.625rem 0 0 0.3125rem;
}

.form-item--column .inputWrap--inquiry-type .error {
  margin: 0;
}

/* 確認画面
------------------------------------------ */
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-item {
  gap: 5em;
  line-height: 2;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-item:not(:first-child) {
  margin-top: 1.25rem;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-item--column {
  flex-direction: row;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-item--textarea {
  margin-top: 0;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputWrap {
  margin-top: 0;
  width: 100%;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputWrap--inquiry-type {
  margin-block: 0;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputLabel {
  width: 29.5302013423%;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputLabel__text {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputLabel__require,
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .inputLabel__optional {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .selectWrap::after {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .policy {
  display: none;
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-btns {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-btns {
    flex-direction: column-reverse;
  }
}
.mw_wp_form.mw_wp_form_confirm.mw_wp_form_preview .form-btn.form-btn--post-code {
  display: none;
}

.grecaptcha-badge {
  bottom: 80px !important;
}

/* 検索・カタログダウンロード
------------------------------------------ */
.corporation__bottom {
  display: flex;
  margin-top: 10.9375rem;
}
@media screen and (max-width: 767px) {
  .corporation__bottom {
    display: block;
    margin-top: 4.6875rem;
  }
}
.corporation__bottom--primary {
  margin-top: 4.6875rem;
}
.corporation__bottom--secondary {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .corporation__bottom--secondary {
    margin-top: 4.6875rem;
  }
}

.corporation-bottom__content {
  border: 1px solid #707070;
  border-radius: 10px;
}

.corporation-bottom__title {
  font-size: 1.5625rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .corporation-bottom__title {
    font-size: 1.125rem;
  }
}

.corporation-serch {
  padding: 2.1875rem 3.4375rem 3.4375rem;
  width: 59%;
}
@media screen and (max-width: 767px) {
  .corporation-serch {
    padding: 1.25rem;
    width: 100%;
  }
}
.corporation-serch__window {
  margin-top: 1.25rem;
}

.gsc-control-cse {
  margin-top: 1.25rem;
  padding: 0 !important;
}

.gsc-search-box {
  display: block !important;
}

.gsib_a {
  padding: 0 !important;
}

.table.gsc-search-box {
  margin-bottom: 0 !important;
}

.gsc-input-box {
  border-color: #0081BF !important;
}

input.gsc-input {
  height: 3.875rem !important;
  padding: 1.4375rem 1.625rem !important;
}
@media screen and (max-width: 767px) {
  input.gsc-input {
    height: 2.875rem !important;
    padding: 1.0625rem 1.25rem !important;
  }
}

::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.33) !important;
}

:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.33) !important;
}

::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.33) !important;
}

::placeholder {
  color: rgba(51, 51, 51, 0.33) !important;
}

td.gsc-input {
  padding-right: 0 !important;
}

.gsc-search-button {
  background-color: #1F46AB !important;
  height: 3.875rem !important;
  margin-left: 0px !important;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .gsc-search-button {
    height: 2.875rem !important;
  }
}
@media (hover: hover) {
  .gsc-search-button:hover {
    opacity: 0.8;
  }
}

.gsc-search-button-v2 {
  border-color: transparent !important;
  padding: 0.875rem 1.6875rem !important;
}
@media screen and (max-width: 767px) {
  .gsc-search-button-v2 {
    padding: 0.625rem 1.0625rem !important;
  }
}
.gsc-search-button-v2 svg {
  height: 2.1875rem !important;
  width: 2.1875rem !important;
}
@media screen and (max-width: 767px) {
  .gsc-search-button-v2 svg {
    height: 1.625rem !important;
    width: 1.625rem !important;
  }
}

.gsst_b {
  padding: 0 10px !important;
}

.gscb_a {
  font: 35px/13px arial, sans-serif !important;
  line-height: 35px !important;
}

.corporation-download {
  margin-left: 2%;
  padding: 2.1875rem 3.125rem 3.4375rem 2.1875rem;
  width: 39%;
}
@media screen and (max-width: 767px) {
  .corporation-download {
    margin-left: 0;
    margin-top: 1.25rem;
    padding: 1.25rem;
    width: 100%;
  }
}

.corporation-download__block {
  align-items: center;
  display: flex;
  margin-top: 1.25rem;
}

.corporation-download__text {
  font-size: 1.125rem;
  line-height: 1.1111111111;
  width: 42.7%;
}
@media screen and (max-width: 767px) {
  .corporation-download__text {
    font-size: 0.875rem;
  }
}

.corporation-download__link {
  margin-left: 5.5%;
  width: 51.8%;
}
.corporation-download__link a {
  align-items: center;
  background-color: #1F46AB;
  border: 1px solid #1F46AB;
  color: #fff;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
  max-width: 100%;
  padding-block: 1.25rem;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .corporation-download__link a {
    font-size: 0.875rem;
    padding-block: 1rem;
  }
}
@media (hover: hover) {
  .corporation-download__link a:hover {
    background-color: #fff;
    color: #1F46AB;
  }
}

/* 法人のお客さま 共通パーツ
------------------------------------------ */
.single .breadcrumb__lists li:nth-last-child(2) {
  display: none;
}

.corporation-head {
  background: url(../img/corporation/corporation-head-bg.jpg) no-repeat center center/cover;
  margin-top: 5.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .corporation-head {
    margin-top: 3.125rem;
  }
}
.corporation-head::before {
  background-color: rgba(31, 70, 171, 0.33);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.corporation-head-title {
  color: #fff;
  font-weight: 700;
  padding-block: 7.1875rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .corporation-head-title {
    padding-block: 3.625rem;
  }
}
.corporation-head-title span {
  display: block;
}

.corporation-head-title__small {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .corporation-head-title__small {
    font-size: 1.25rem;
  }
}

.corporation-head-title__large {
  font-size: 3.0625rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .corporation-head-title__large {
    font-size: 2.25rem;
    margin-top: 0.75rem;
  }
}

.corporation {
  padding-block: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .corporation {
    padding-block: 4.6875rem;
  }
}

.corporation-section {
  scroll-margin-top: 9rem;
}
.corporation-section:not(:first-child) {
  margin-top: 6.5625rem;
}
@media screen and (max-width: 767px) {
  .corporation-section:not(:first-child) {
    margin-top: 4.0625rem;
  }
}

.corporation-section__title {
  font-size: 2.1875rem;
  font-weight: 700;
  padding-bottom: 1.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .corporation-section__title {
    font-size: 1.625rem;
    padding-bottom: 1rem;
  }
}
.corporation-section__title::before {
  background-color: #eeeeee;
  bottom: 0;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .corporation-section__title::before {
    height: 4px;
  }
}
.corporation-section__title::after {
  background-color: #1f46ab;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 10rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .corporation-section__title::after {
    height: 4px;
    width: 7.5rem;
  }
}

.corporation-section__subTitle {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6666666667;
  margin-top: 1.87em;
}
@media screen and (max-width: 767px) {
  .corporation-section__subTitle {
    font-size: 1.375rem;
  }
}

.corporation-section__text {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .corporation-section__text {
    font-size: 1rem;
  }
}

.corporation__navigation {
  display: flex;
  gap: 2.25rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .corporation__navigation {
    flex-wrap: wrap;
    gap: 1.125rem;
    justify-content: start;
  }
}
.corporation__navigation-list {
  border: 1px solid #d4d4d4;
  border-radius: 11px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .corporation__navigation-list {
    font-size: 15px;
  }
}
.corporation__navigation-list > a {
  display: block;
  padding: 1.8125rem 6.125rem;
}
@media screen and (max-width: 767px) {
  .corporation__navigation-list > a {
    padding: 16px 48px;
  }
}
.corporation__navigation-list:hover {
  opacity: 0.7;
}

/* 共通アンカーリンク一覧
------------------------------------------ */
.corporation__menus {
  -ms-grid-columns: 1fr 2.25rem 1fr 2.25rem 1fr 2.25rem 1fr 2.25rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 2.25rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .corporation__menus {
    -ms-grid-columns: 1fr 1.125rem 1fr;
    gap: 1.125rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.4375rem;
  }
}
.corporation__menus--not-thumbnail {
  margin-top: 1.25rem;
}
.corporation__menus--not-thumbnail .corporation-menu {
  border-radius: 11px;
  height: 5.4375rem;
}
.corporation__menus--not-thumbnail .corporation-menu a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 1.5em;
}

.corporation-menu a {
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1.944444em;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .corporation-menu a {
    padding: 0.9375rem;
  }
}
@media (hover: hover) {
  .corporation-menu a:hover {
    border-color: #1f46ab;
  }
  .corporation-menu a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.corporation-menu figure {
  overflow: hidden;
}
.corporation-menu img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  transition: 0.3s;
}
.corporation-menu h3 {
  font-size: 1.125rem;
  margin-top: 1.944444em;
}
@media screen and (max-width: 767px) {
  .corporation-menu h3 {
    font-size: 0.875rem;
  }
}

/* 中分類ページ 各ターム一覧
------------------------------------------ */
.corporation-term-section {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
  .corporation-term-section {
    margin-top: 2.625rem;
  }
}

.corporation-term-section__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .corporation-term-section__title {
    font-size: 1rem;
  }
}

.corporation-term-section__cards {
  -ms-grid-columns: 1fr 2.0625rem 1fr 2.0625rem 1fr 2.0625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 2.0625rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .corporation-term-section__cards {
    -ms-grid-columns: 1fr;
    gap: 0.625rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.corporation-term-section-card {
  border: 2px solid #dbdbdb;
  border-radius: 5px;
  transition: 0.3s;
}
.corporation-term-section-card a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.8888888889;
}
@media screen and (max-width: 767px) {
  .corporation-term-section-card a {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .corporation-term-section-card:hover {
    opacity: 0.8;
  }
  .corporation-term-section-card:hover .corporation-term-section-card__bottom::after {
    -webkit-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg);
  }
}

.corporation-term-section-card__top {
  padding: 1.88888em 1em 1.2222em;
}
.corporation-term-section-card__top img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.65;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .corporation-term-section-card__top img {
    margin-inline: auto;
    width: 60%;
  }
}

.corporation-term-section-card__bottom {
  padding: 1em 1em 3em;
  position: relative;
}
.corporation-term-section-card__bottom::after {
  -webkit-transform: translateX(-50%);
  background: url(../img/icon/under-arrow-blue.svg) no-repeat center center/contain;
  bottom: 1.4375rem;
  content: "";
  display: block;
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.4s;
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .corporation-term-section-card__bottom::after {
    bottom: 1.0625rem;
    height: 0.625rem;
    width: 1rem;
  }
}

figure {
  overflow: hidden;
}

img {
  transition: 0.3s;
}

.corporation-term-section-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .corporation-term-section-card__title {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.corporation-term-section-card__tags {
  -ms-grid-columns: 1fr 0.625rem 1fr;
  display: -ms-grid;
  display: grid;
  font-size: 1rem;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 1.125em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .corporation-term-section-card__tags {
    font-size: 0.75rem;
  }
}

.corporation-term-section-card__tag a {
  align-items: center;
  background-color: #dfeef5;
  border: 2px solid #dfeef5;
  border-radius: 22px;
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  padding-block: 0.125rem;
  transition: background-color 0.3s;
  width: 100%;
}
@media (hover: hover) {
  .corporation-term-section-card__tag a:hover {
    background-color: #fff;
  }
}

/* 産業・用途別セクション
------------------------------------------ */
.corporation-industry__lists {
  -ms-grid-columns: (1fr)[3];
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .corporation-industry__lists {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.4375rem;
  }
}

.corporation-industry-list a {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .corporation-industry-list a:hover .corporation-industry-list__thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .corporation-industry-list a:hover .corporation-industry-list__category::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.corporation-industry-list__block {
  position: relative;
}

.corporation-industry-list__thumbnail {
  aspect-ratio: 1/0.704;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.corporation-industry-list__thumbnail img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 100%;
}
.corporation-industry-list__thumbnail::before {
  background-color: rgba(51, 51, 51, 0.27);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s ease-in-out;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .corporation-industry-list__thumbnail::before {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.corporation-industry-list__category {
  -webkit-transform: translate(-50%, -50%);
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.875rem;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  transition-delay: 0.4s;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .corporation-industry-list__category {
    opacity: 1;
  }
}
.corporation-industry-list__category::after {
  background: url(../img/icon/under-arrow-white.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.8125rem;
  margin-top: 1.125rem;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 1.3125rem;
}

/* 製品詳細ページ
------------------------------------------ */
.corporation__grid {
  -ms-grid-rows: auto;
  -ms-grid-columns: 77.14% 2.86% 20%;
  display: -ms-grid;
  display: grid;
  gap: 2.86%;
  grid-template: "article sideber" auto/77.14% 20%;
}
@media screen and (max-width: 767px) {
  .corporation__grid {
    display: block;
  }
}

article {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: article;
}

.corporation-sidebar {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: sideber;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar {
    margin-top: 2.5rem;
  }
}

.corporation-sidebar-section {
  display: block;
}
.corporation-sidebar-section:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.corporation-sidebar-section__title {
  color: #1f46ab;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 1.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section__title {
    font-size: 1rem;
    padding-bottom: 0.875rem;
  }
}
.corporation-sidebar-section__title::before {
  background-color: #eeeeee;
  bottom: 0;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section__title::before {
    height: 4px;
  }
}
.corporation-sidebar-section__title::after {
  background-color: #1f46ab;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 7.5rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section__title::after {
    height: 4px;
    width: 5.625rem;
  }
}

.corporation-sidebar-section__term,
.corporation-sidebar-section__post {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section__term,
  .corporation-sidebar-section__post {
    margin-top: 1.25rem;
  }
}
.corporation-sidebar-section__term a,
.corporation-sidebar-section__post a {
  display: block;
  font-size: 1.125rem;
  padding-left: 1.25rem;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .corporation-sidebar-section__term a,
  .corporation-sidebar-section__post a {
    font-size: 0.875rem;
    padding-left: 0.9375rem;
  }
}
@media (hover: hover) {
  .corporation-sidebar-section__term a:hover,
  .corporation-sidebar-section__post a:hover {
    color: #0081bf;
    text-decoration: underline;
  }
}

.current {
  color: #0081bf;
  text-decoration: underline;
}

.corporation-post-head {
  display: flex;
}
@media screen and (max-width: 767px) {
  .corporation-post-head {
    display: block;
  }
}

.corporation-post-head__swiper {
  width: 45.55555%;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__swiper {
    width: 100%;
  }
}

.corporation-post-head__block {
  margin-left: 5.8%;
  width: 48.611111%;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__block {
    margin-left: 0;
    margin-top: 1.875rem;
    width: 100%;
  }
}

.corporation-post-head__title {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__title {
    font-size: 1.625rem;
  }
}

.corporation-post-head__text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6666666667;
  margin-top: 0.75rem;
}
.corporation-post-head__text--regular {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__text {
    font-size: 1.375rem;
  }
}

.corporation-post-head__subText {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__subText {
    font-size: 1rem;
  }
}

.corporation-post-head__catalog-download {
  margin-top: 0.9375rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__catalog-download {
    text-align: left;
  }
}
.corporation-post-head__catalog-download a {
  align-items: center;
  border: 1px solid #eb500b;
  color: #eb500b;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.8888888889;
  max-width: 100%;
  padding-block: 0.875rem;
  transition: background-color 0.3s, color 0.3s;
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-head__catalog-download a {
    font-size: 0.875rem;
    padding-block: 0.625rem;
    width: 11.875rem;
  }
}
.corporation-post-head__catalog-download a::before {
  -webkit-mask: url(../img/icon/catalog.svg) no-repeat center center/contain;
  background-color: #eb500b;
  content: "";
  display: block;
  height: 1.75rem;
  margin-right: 0.625rem;
  mask: url(../img/icon/catalog.svg) no-repeat center center/contain;
  transition: background-color 0.3s;
  width: 1.375rem;
}
@media (hover: hover) {
  .corporation-post-head__catalog-download a:hover {
    background-color: #eb500b;
    color: #fff;
  }
  .corporation-post-head__catalog-download a:hover::before {
    background-color: #fff;
  }
}

/* 製品案内
------------------------------------------ */
.corporation-post {
  padding-block: 4.0625rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .corporation-post {
    padding-block: 2.5rem 4.0625rem;
  }
}

.corporation-post-content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-content {
    margin-top: 4.0625rem;
  }
}

.corporation-post-content-head {
  align-items: flex-end;
  display: flex;
  padding-bottom: 1.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-head {
    padding-bottom: 0.875rem;
  }
}
.corporation-post-content-head::before {
  background-color: #eeeeee;
  bottom: 0;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-head::before {
    height: 4px;
  }
}
.corporation-post-content-head::after {
  background-color: #1f46ab;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 10rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-head::after {
    height: 4px;
    width: 7.5rem;
  }
}

.corporation-post-content-head__title {
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-head__title {
    font-size: 1.75rem;
  }
}

.corporation-post-content__subTitle {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .corporation-post-content__subTitle {
    font-size: 1rem;
  }
}

.corporation-post-content-head__textBlue {
  color: #1f46ab;
  display: block;
  font-size: 1.125rem;
  line-height: 1;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-head__textBlue {
    font-size: 0.875rem;
    margin-left: 0.6875rem;
  }
}

.corporation-post-content-list {
  -ms-grid-columns: 1fr 0.625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.corporation-post-content-list--sub {
  margin-top: 1.25rem;
}

.corporation-post-content-list__wrap {
  border: 1px solid #d4d4d4;
  display: flex;
  font-size: 1.125rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-list__wrap {
    font-size: 0.875rem;
    line-height: 1.4;
    min-height: 3.875rem;
  }
}

.corporation-post-content-list__title,
.corporation-post-content-list__desc {
  align-items: center;
  display: flex;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-content-list__title,
  .corporation-post-content-list__desc {
    padding: 0.625rem;
  }
}

.corporation-post-content-list__title {
  background-color: #eeeeee;
  width: 35%;
}

.corporation-post-content-list__desc {
  width: 65%;
}

.corporation-post-content__box--primary {
  margin-top: 2.5rem;
}
.corporation-post-content__box--secondary {
  margin-top: 4.0625rem;
}
.corporation-post-content__box--tertiary {
  margin-top: 3rem;
}

/* 詳細規格（表組み）
------------------------------------------ */
.corporation-post-content__table {
  border-collapse: collapse;
  margin-top: 1.25rem;
  width: 100%;
}
.corporation-post-content__table th {
  background-color: #eeeeee;
  width: 0%;
}
.corporation-post-content__table th,
.corporation-post-content__table td {
  border: 1px solid #d4d4d4;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1.875rem 1.25rem;
  text-align: center;
}

/* WYSIWYG
------------------------------------------ */
.aligncenter {
  margin-top: 1.25rem;
  text-align: center;
}
.aligncenter td,
.aligncenter th {
  border: 1px solid #d4d4d4;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 1.875rem 1.25rem;
  text-align: center;
}
.aligncenter th {
  background-color: #eeeeee;
}

/* アプリケーション
------------------------------------------ */
.corporation-post-content__tags {
  -ms-grid-columns: 1fr 1.5625rem 1fr 1.5625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem 1.5625rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .corporation-post-content__tags {
    -ms-grid-columns: 1fr 0.9375rem 1fr;
    gap: 0.625rem 0.9375rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.corporation-post-content__tag {
  align-items: center;
  background-color: #eeeeee;
  border: 1px solid #d4d4d4;
  border-radius: 41px;
  display: flex;
  font-size: 1.125rem;
  justify-content: center;
  line-height: 1.2;
  padding: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .corporation-post-content__tag {
    border-radius: 30px;
    font-size: 0.875rem;
    padding: 1.125rem;
  }
}

.ev__list-item-image {
  aspect-ratio: 1/0.554;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .ev__list-item-image {
    margin-inline: auto;
    width: 80%;
  }
}

.ev__list-item-flex {
  display: flex;
  gap: 11%;
}
@media screen and (max-width: 767px) {
  .ev__list-item-flex {
    flex-direction: column;
  }
}

.ev__intro-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .ev__intro-flex {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.ev__intro-flex__item {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.125rem;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .ev__intro-flex__item {
    width: 100%;
  }
}

.ev__case-country {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25rem;
  gap: 3.125rem;
  margin-top: 2.25rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .ev__case-country {
    gap: 1.125rem;
  }
}

.ev__case-image {
  width: 29.6%;
}
@media screen and (max-width: 767px) {
  .ev__case-image {
    width: 46%;
  }
}
.ev__case-image > span {
  font-size: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .ev__case-image > span {
    font-size: 14px;
  }
}

.ev__case-figcaption {
  font-size: 1.25rem;
  font-weight: 700;
  margin-block: 1rem;
}
@media screen and (max-width: 1023px) {
  .ev__case-figcaption {
    font-size: 15px;
    margin-block: 0.5rem;
  }
}

.fan__feature {
  margin-top: 3.75rem;
}

.fan__intro-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5625rem 0;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .fan__intro-flex {
    gap: 2rem 0;
  }
}

.fan__item {
  border: 1px solid #DBDBDB;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.125rem;
  width: 31%;
}
@media screen and (max-width: 1023px) {
  .fan__item {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .fan__item {
    width: 100%;
  }
}

.fan__item-title {
  flex-grow: 1;
}

.fan__item-image {
  margin-bottom: 3.5rem;
  margin-inline: auto;
  width: 96%;
}
@media screen and (max-width: 767px) {
  .fan__item-image {
    margin-bottom: 1rem;
  }
}

.fun__relation-caption {
  padding-left: 1em;
  position: relative;
}
.fun__relation-caption::before {
  content: "※";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}
.fun__relation-caption > a {
  text-decoration: underline;
}
.fun__relation-caption > a:hover {
  opacity: 0.7;
}

.fan__feature-title {
  color: #1F46AB;
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  .fan__feature-title {
    font-size: 1.9rem;
    line-height: 1.2;
  }
}

.motech__video {
  margin-block: 3.875rem 4.8125rem;
}
.motech__video > video {
  aspect-ratio: 1/0.557;
  width: 100%;
}

.motech__feature,
.motech__intro,
.motech__case,
.motech__relation-item,
.motech__certificate {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .motech__feature,
  .motech__intro,
  .motech__case,
  .motech__relation-item,
  .motech__certificate {
    margin-bottom: 3.75rem;
  }
}

.motech__list-item-flex {
  display: flex;
  gap: 9%;
}
@media screen and (max-width: 767px) {
  .motech__list-item-flex {
    flex-direction: column;
    gap: 1rem;
  }
}

.motech__list-item-text {
  flex: 1;
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .motech__list-item-text {
    font-size: 15px;
  }
}

.motech__list-item-image {
  width: 41.2%;
}
@media screen and (max-width: 767px) {
  .motech__list-item-image {
    margin-inline: auto;
    width: 80%;
  }
}

.motech__feature-text {
  position: relative;
}
.motech__feature-text__image {
  aspect-ratio: 1/0.63;
  position: absolute;
  right: 0;
  top: 0;
  width: 42.875rem;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .motech__feature-text__image {
    top: 50%;
  }
}
@media screen and (max-width: 767px) {
  .motech__feature-text__image {
    top: 100%;
    width: 100%;
  }
}

.motech__list-item3__table-container {
  margin-top: 32%;
}
@media screen and (max-width: 1023px) {
  .motech__list-item3__table-container {
    margin-top: 38%;
  }
}
@media screen and (max-width: 767px) {
  .motech__list-item3__table-container {
    margin-top: 66%;
  }
}

.motech__list-item3__h4 {
  font-size: 1.6875rem;
  line-height: 1.2592592593;
  margin-bottom: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .motech__list-item3__h4 {
    font-size: 20px;
  }
}

.motech__list-item3__table {
  border-spacing: 1px 1.375rem;
  font-size: 16px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .motech__list-item3__table {
    width: 1080px;
  }
}
.motech__list-item3__table th {
  background-color: #7E7E7E;
  color: #fff;
  font-weight: 400;
  padding-block: 1.1875rem;
  width: 20%;
}
.motech__list-item3__table .unset {
  background-color: unset;
}
.motech__list-item3__table td {
  border: 1px solid #CECECE;
  padding-block: 1.1875rem;
  width: 20%;
}

.motech__list-item4-image {
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767px) {
  .motech__list-item4-image {
    margin-bottom: 1.125rem;
    padding-top: 3rem;
  }
}

.motech__list-item4-caption {
  color: #EB500B;
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-caption {
    font-size: 15px;
  }
}

.motech__list-item4-detail {
  display: flex;
  gap: 1.1875rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail {
    flex-direction: column;
  }
}
.motech__list-item4-detail__image {
  width: 24%;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail__image {
    margin-inline: auto;
    width: 40%;
  }
}
.motech__list-item4-detail__description {
  flex: 1;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail__description {
    width: 100%;
  }
}
.motech__list-item4-detail__heading {
  align-items: center;
  display: flex;
  gap: 1.625rem;
  margin-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .motech__list-item4-detail__heading {
    flex-direction: column;
    gap: 1rem;
  }
}
.motech__list-item4-detail__h4 {
  background-color: #1F46AB;
  color: #fff;
  font-size: 1.25rem;
  padding: 1.25rem 1.8125rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail__h4 {
    font-size: 16px;
  }
}
.motech__list-item4-detail__caption {
  color: #1F46AB;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.36;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail__caption {
    font-size: 18px;
  }
}
.motech__list-item4-detail__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0;
  justify-content: space-between;
}
.motech__list-item4-detail__ul > li {
  align-items: center;
  aspect-ratio: 1/0.284;
  border: 1px solid #1F46AB;
  color: #1F46AB;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.4117647059;
  padding: 0.5em;
  text-align: center;
  width: 32%;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-detail__ul > li {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .motech__list-item4-detail__ul > li {
    width: 48%;
  }
}

.motech__list-item4-h4 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-h4 {
    font-size: 18px;
  }
}

.motech__list-item4-table {
  border-spacing: 0.1875rem 0.3125rem;
  font-size: 1rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-table {
    font-size: 15px;
    width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .motech__list-item4-table {
    margin-top: unset;
  }
}
.motech__list-item4-table th {
  color: #fff;
  font-weight: 400;
  line-height: 1.4375;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .motech__list-item4-table th {
    padding-block: 0.75rem;
  }
}
.motech__list-item4-table th:first-child, .motech__list-item4-table th:nth-child(2) {
  background-color: #7E7E7E;
  width: 13.375rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-table th:first-child, .motech__list-item4-table th:nth-child(2) {
    width: 214px;
  }
}
.motech__list-item4-table th:nth-child(3) {
  background-color: #1F46AB;
  width: 13.375rem;
}
@media screen and (max-width: 1023px) {
  .motech__list-item4-table th:nth-child(3) {
    width: 214px;
  }
}
.motech__list-item4-table th:last-child {
  background-color: #ED6D00;
}
.motech__list-item4-table td {
  border: 1px solid #CECECE;
  height: 4.75rem;
  padding-block: 1rem;
}
.motech__list-item4-table td > span {
  color: #ED6D00;
}
@media screen and (max-width: 767px) {
  .motech__list-item4-table td {
    padding-block: 0.75rem;
  }
}
.motech__list-item4-table .left {
  padding-left: 2rem;
  text-align: left;
}

.motech__list-item4-table-caption {
  color: #ED6D00;
  font-size: 2.3125rem;
  font-weight: 700;
  margin-top: -1.25rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .motech__list-item4-table-caption {
    font-size: 1.5rem;
  }
}

.motech__case-country {
  border-bottom: 1px solid #1F46AB;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25rem;
  margin-top: 2.25rem;
  padding-bottom: 2.25rem;
  padding-left: 12.2%;
}
@media screen and (max-width: 1023px) {
  .motech__case-country {
    font-size: 18px;
    padding-left: unset;
    padding-top: 2em;
  }
}
@media screen and (max-width: 767px) {
  .motech__case-country {
    flex-direction: column;
  }
}
.motech__case-country:first-child {
  margin-top: unset;
}

.motech__case-figcaption {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 1023px) {
  .motech__case-figcaption {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .motech__case-figcaption {
    margin-top: 0.5rem;
  }
}

.motech__case-taiwan {
  gap: 3rem 0.875rem;
  position: relative;
}
.motech__case-taiwan::before {
  content: "台湾";
  display: block;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
}
.motech__case-taiwan-image {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .motech__case-taiwan-image {
    width: 100%;
  }
}

.motech__case-japan {
  gap: 1.9375rem 1.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .motech__case-japan {
    gap: 1rem 0.875rem;
  }
}
.motech__case-japan-image {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .motech__case-japan-image {
    width: 100%;
  }
}
.motech__case-japan-image > img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.667;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .motech__case-japan-image > img {
    aspect-ratio: 1/0.444;
    width: 100%;
  }
}
.motech__case-japan::before {
  content: "日本";
  display: block;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
}

.motech__case-other {
  gap: 2.5rem 1.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .motech__case-other {
    gap: 1rem 0.875rem;
  }
}
.motech__case-other-image {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .motech__case-other-image {
    width: 100%;
  }
}
.motech__case-other-image > img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.444;
  object-fit: cover;
}
.motech__case-other::before {
  content: "その他";
  display: block;
  font-weight: 700;
  left: 0;
  position: absolute;
  top: 0;
}

.motech__relation-item__li {
  border-bottom: 1px solid #707070;
  padding-block: 2rem;
}
.motech__relation-item__li:first-child {
  border-top: 1px solid #707070;
}
.motech__relation-item__title {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 1023px) {
  .motech__relation-item__title {
    font-size: 18px;
  }
}
.motech__relation-item__flex {
  display: flex;
  gap: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .motech__relation-item__flex {
    flex-direction: column;
  }
}
.motech__relation-item__image {
  width: 29%;
}
@media screen and (max-width: 1023px) {
  .motech__relation-item__image {
    width: 100%;
  }
}
.motech__relation-item__text {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1023px) {
  .motech__relation-item__text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .motech__relation-item__text {
    margin-inline: auto;
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .motech__relation-item__download {
    text-align: center;
  }
}

.motech__certificate-list-item {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .motech__certificate-list-item {
    width: 100%;
  }
}
.motech__certificate-list-item--last {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .motech__certificate-list-item--last {
    width: 100%;
  }
}

.solar__feature {
  margin-top: 3.75rem;
}

.solar__list-item {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .solar__list-item {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .solar__list-item-section {
    margin-left: unset;
  }
}
.solar__list-item-title {
  line-height: 1.35;
  margin-bottom: 5rem;
  padding-left: 11.25rem;
}
@media screen and (max-width: 1023px) {
  .solar__list-item-title {
    padding-left: 8.25rem;
  }
}
@media screen and (max-width: 767px) {
  .solar__list-item-title {
    margin-bottom: unset;
    padding-left: unset;
  }
}
.solar__list-item-title::before {
  -webkit-transform: translateY(-25%);
  left: 0;
  transform: translateY(-25%);
}
.solar__list-item-text {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 2.875rem;
}
@media screen and (max-width: 1023px) {
  .solar__list-item-text {
    font-size: 15px;
  }
}
.solar__list-item-flex {
  display: flex;
  gap: 5.7%;
}
@media screen and (max-width: 767px) {
  .solar__list-item-flex {
    flex-direction: column;
  }
}
.solar__list-item-text-box {
  flex: 1;
}
.solar__list-item-image1 {
  aspect-ratio: 1/1.289;
  width: 28%;
}
@media screen and (max-width: 767px) {
  .solar__list-item-image1 {
    margin-inline: auto;
    overflow: unset;
    text-align: center;
    width: 40%;
  }
}
.solar__list-item-image1 > figcaption {
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .solar__list-item-image1 > figcaption {
    font-size: 12px;
  }
}

.solar__etfe-image {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .solar__etfe-image {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .solar__etfe-image {
    padding-top: 3rem;
  }
}
.solar__etfe-image > figcaption {
  font-size: 1.25rem;
  line-height: 2;
  margin-top: 3.3125rem;
}
@media screen and (max-width: 1023px) {
  .solar__etfe-image > figcaption {
    font-size: 15px;
  }
}

.solar__h4 {
  font-size: 1.875rem;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 1023px) {
  .solar__h4 {
    font-size: 18px;
  }
}

.solar__etfe-table {
  border-spacing: 0.375rem 1.25rem;
  font-size: 1.25rem;
  margin-top: 6.875rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .solar__etfe-table {
    font-size: 15px;
    width: 800px;
  }
}
@media screen and (max-width: 767px) {
  .solar__etfe-table {
    border-spacing: 0.375rem;
    font-size: 14px;
    margin-top: unset;
  }
}
.solar__etfe-table th {
  color: #fff;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .solar__etfe-table th {
    padding-block: 0.75rem;
  }
}
.solar__etfe-table th:first-child {
  width: 23.875rem;
}
@media screen and (max-width: 1023px) {
  .solar__etfe-table th:first-child {
    width: 332px;
  }
}
@media screen and (max-width: 767px) {
  .solar__etfe-table th:first-child {
    width: 295px;
  }
}
.solar__etfe-table th:first-child, .solar__etfe-table th:nth-child(2) {
  background-color: #7E7E7E;
}
.solar__etfe-table th:nth-child(3) {
  background-color: #1F46AB;
}
.solar__etfe-table th:last-child {
  background-color: #ED6D00;
}
.solar__etfe-table td {
  border: 1px solid #CECECE;
  height: 5.4375rem;
  padding-block: 1rem;
}
@media screen and (max-width: 767px) {
  .solar__etfe-table td {
    height: 4rem;
    padding-block: 0.75rem;
  }
}
.solar__etfe-table td:nth-child(3), .solar__etfe-table td:last-child {
  font-weight: 700;
}

.solar__intro {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .solar__intro {
    margin-bottom: 2.875rem;
  }
}
.solar__intro-heading {
  margin-bottom: 1.75rem;
}
.solar__intro-download {
  text-align: left;
}
.solar__intro-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .solar__intro-flex {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.solar__item {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.125rem;
  width: 29%;
}
@media screen and (max-width: 767px) {
  .solar__item {
    width: 100%;
  }
}
.solar__item-image {
  margin-bottom: 1.875rem;
  margin-inline: auto;
  width: 56%;
}
@media screen and (max-width: 767px) {
  .solar__item-image {
    margin-bottom: 1rem;
  }
}
.solar__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4166666667;
  margin-bottom: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .solar__item-title {
    font-size: 18px;
  }
}
.solar__item-text {
  flex-grow: 1;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8888888889;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .solar__item-text {
    font-size: 15px;
    line-height: 1.4166666667;
  }
}
.solar__item-supplement {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
  padding-left: 1em;
  position: relative;
}
.solar__item-supplement > p > a {
  text-decoration: underline;
}
.solar__item-supplement > p > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .solar__item-supplement {
    font-size: 15px;
    line-height: 1.4166666667;
  }
}
.solar__item-supplement::before {
  content: "※";
  display: block;
  left: 0;
  position: absolute;
}

.solar__case-h3 {
  color: #1F46AB;
  font-size: 1.875rem;
  line-height: 1.1333333333;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .solar__case-h3 {
    font-size: 1.25rem;
  }
}
.solar__case-gallery {
  display: flex;
  flex-direction: column;
  gap: 2.3125rem;
  margin-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .solar__case-gallery {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
}
.solar__case-line {
  display: flex;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .solar__case-line {
    gap: 0.5rem;
  }
}
.solar__case-image-upper {
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .solar__case-image-upper {
    margin-bottom: 0.5rem;
  }
}
.solar__case-caption {
  font-size: 1.25rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .solar__case-caption {
    font-size: 0.8125rem;
  }
}
.solar__case-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3125rem 1.375rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .solar__case-flex {
    gap: 1.25rem 0.75rem;
    margin-bottom: 2rem;
  }
}
.solar__case-flex__image {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .solar__case-flex__image {
    width: 47%;
  }
}
.solar__case-carport {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .solar__case-carport {
    flex-direction: column;
    gap: 1.125rem;
    margin-bottom: 2rem;
  }
}
.solar__case-carport__image {
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .solar__case-carport__image {
    width: 40%;
  }
}
@media screen and (max-width: 1023px) {
  .solar__case-carport__image {
    width: 60%;
  }
}
.solar__case-carport__text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .solar__case-carport__text {
    font-size: 14px;
  }
}
.solar__case-carport__dl-block {
  margin-bottom: 1em;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .solar__case-carport__dl-block {
    margin-top: unset;
  }
}
.solar__case-lev {
  display: flex;
  gap: 0.8125rem;
  margin-bottom: 3.375rem;
}
@media screen and (max-width: 767px) {
  .solar__case-lev {
    margin-bottom: 2rem;
  }
}

.solar__certificate-flex {
  border-bottom: 1px solid #1F46AB;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 2.625rem;
  padding-top: 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .solar__certificate-flex {
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.25rem;
  }
}

.solar__certificate-image {
  width: 47%;
}

.solar__certificate-caption {
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .solar__certificate-caption {
    font-size: 15px;
  }
}

.customer-head {
  background: url(../img/customer/customer-header.jpg) no-repeat center center/cover;
  margin-top: 5.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .customer-head {
    background: url(../img/customer/customer-header-sp.jpg) no-repeat center center/cover;
    margin-top: 3.125rem;
  }
}
.customer-head::before {
  background-color: rgba(31, 70, 171, 0.33);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}

.customer__main-header {
  align-items: center;
  display: flex;
  gap: 3.3125rem;
  padding-block: 5.5rem;
}
@media screen and (max-width: 767px) {
  .customer__main-header {
    flex-direction: column;
    gap: 2rem;
    padding-block: 3rem 5.5rem;
  }
}
.customer__main-header-image {
  aspect-ratio: 1/0.473;
  width: 47%;
}
@media screen and (max-width: 1023px) {
  .customer__main-header-image {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .customer__main-header-image {
    width: 100%;
  }
}
.customer__main-header-textarea {
  flex: 1;
}
.customer__h2 {
  font-size: 4.375rem;
  letter-spacing: -0.04em;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 1439px) {
  .customer__h2 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .customer__h2 {
    font-size: 2rem;
  }
}
.customer__text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .customer__text {
    font-size: 16px;
  }
}
.customer__list {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .customer__list {
    margin-bottom: 2.5rem;
  }
}
.customer__list-item {
  margin-bottom: 8.25rem;
}
.customer__list-item:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 767px) {
  .customer__list-item {
    margin-bottom: 4rem;
  }
}
.customer__link {
  display: flex;
  gap: 2.25rem;
}
.customer__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .customer__link {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.customer__item-image {
  aspect-ratio: 1/0.825;
  width: 28.625rem;
}
@media screen and (max-width: 767px) {
  .customer__item-image {
    height: 14rem;
    width: 100%;
  }
  .customer__item-image > img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
  }
}
.customer__item-textarea {
  flex: 1;
  padding-top: 2rem;
}
@media screen and (max-width: 1023px) {
  .customer__item-textarea {
    padding-top: unset;
  }
}
.customer__textarea-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .customer__textarea-flex {
    flex-direction: column;
    gap: 1rem;
  }
}
.customer__item-title {
  font-size: 2.3125rem;
  line-height: 1.2162162162;
  width: 5em;
}
@media screen and (max-width: 1439px) {
  .customer__item-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .customer__item-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .customer__item-title {
    font-size: 28px;
  }
}
.customer__item-title span {
  display: block;
  font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .customer__item-title span {
    font-size: 12px;
  }
}
.customer__item-description {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 2.8125rem;
  padding-left: 1em;
  width: 72%;
}
@media screen and (max-width: 1439px) {
  .customer__item-description {
    width: 34rem;
  }
}
@media screen and (max-width: 1023px) {
  .customer__item-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 1rem;
    width: 100%;
  }
}
.customer__item-tag {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  margin-bottom: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .customer__item-tag {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .customer__item-tag {
    flex-wrap: wrap;
  }
}
.customer__item-tag > p {
  background-color: #DFEEF5;
  border-radius: 45px;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.35;
  padding-block: 1.25rem;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .customer__item-tag > p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .customer__item-tag > p {
    padding-block: 0.7rem;
  }
}
.customer__tsubaki-tag {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .customer__tsubaki-tag {
    width: 48%;
  }
}
.customer__ecoheal-tag {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .customer__ecoheal-tag {
    width: 48%;
  }
}

.ecoheal__fv {
  padding-block: 3.3125rem 3.5625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__fv {
    padding-block: 1.625rem 3rem;
  }
}
.ecoheal__mainvisual {
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__mainvisual {
    margin-bottom: unset;
    margin-top: 1.625rem;
    width: 100%;
  }
}
.ecoheal__h1 {
  font-size: 2rem;
  line-height: 1.56;
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__h1 {
    font-size: 1.3125rem;
    margin-bottom: 1.375rem;
  }
}
.ecoheal__discription {
  color: #EB500B;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.8125rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__discription {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__discription {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.ecoheal__discription__sub {
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__discription__sub {
    margin-bottom: 1.375rem;
  }
}
.ecoheal__discription__sub > li {
  font-size: 1rem;
  line-height: 1.56;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .ecoheal__discription__sub > li {
    font-size: 14px;
  }
}
.ecoheal__discription__sub > li::before {
  content: "・";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
}
.ecoheal__download {
  border: 1px solid #EB500B;
  border-radius: 8px;
  color: #ED6D00;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 1.375rem 2.0625rem 1.375rem 4rem;
  position: relative;
  transition: 0.3s;
}
.ecoheal__download:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .ecoheal__download {
    font-size: 16px;
    line-height: 1;
    padding: 16px 24px 16px 46px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__download {
    display: block;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.ecoheal__download::before {
  background-image: url("../img/overview/file.png");
  background-size: contain;
  content: "";
  display: block;
  height: 1.6875rem;
  left: 1.9375rem;
  position: absolute;
  top: 1.375rem;
  width: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__download::before {
    height: 20px;
    left: 23px;
    top: 16px;
    width: 16px;
  }
}
.ecoheal__nav {
  background-color: #0081bf;
}
.ecoheal__intro {
  margin-bottom: 6.875rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__intro {
    margin-bottom: 4rem;
  }
}
.ecoheal__intro-title {
  margin-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__intro-title {
    margin-bottom: 2.5rem;
  }
}
.ecoheal__item {
  display: flex;
  gap: 1.4375rem;
  margin-bottom: 4.0625rem;
}
.ecoheal__item:last-child {
  margin-bottom: unset;
}
@media screen and (max-width: 767px) {
  .ecoheal__item {
    flex-direction: column;
    gap: 2rem;
  }
}
.ecoheal__img-side {
  width: 24.5714285714%;
}
@media screen and (max-width: 767px) {
  .ecoheal__img-side {
    margin-inline: auto;
    width: 85%;
  }
}
.ecoheal__text-side {
  flex: 1;
}
.ecoheal__item-title {
  display: block;
  margin-bottom: 1.875rem;
}
.ecoheal__item-for {
  background-color: #DFEEF5;
  border-radius: 45px;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1.25rem 4.625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__item-for {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 2.25rem;
  }
}
.ecoheal__item-name {
  display: inline-block;
  font-size: 2.3125rem;
  margin-left: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__item-name {
    display: block;
    font-size: 1.75rem;
    margin-left: unset;
  }
}
.ecoheal__item-features {
  margin-bottom: 0.875rem;
}
.ecoheal__item-feature {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.89;
  margin-left: 1em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .ecoheal__item-feature {
    font-size: 14px;
  }
}
.ecoheal__item-feature::before {
  content: "●";
  display: block;
  font-size: 0.6em;
  left: -1em;
  position: absolute;
  top: 0.7em;
}
.ecoheal__item-table {
  display: flex;
  gap: 0.875rem;
}
@media screen and (max-width: 1439px) {
  .ecoheal__item-table {
    flex-direction: column;
    gap: 1.75rem;
  }
}
.ecoheal__item-h4 {
  background-color: #DFEEF5;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  padding-block: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__item-h4 {
    font-size: 14px;
  }
}
.ecoheal__item-table-left {
  display: flex;
  flex-direction: column;
  width: 45.6921587609%;
}
@media screen and (max-width: 1439px) {
  .ecoheal__item-table-left {
    width: 100%;
  }
}
.ecoheal__item-table-right {
  flex: 1;
}
.ecoheal__item-table-container {
  border: 1px solid #D5D5D5;
  flex-grow: 1;
}
.ecoheal__table-left {
  padding: 2.3125rem 2.0625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__table-left {
    padding: 1.5rem;
  }
}
.ecoheal__table-right {
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__table-right {
    padding: 1.8rem 1.5rem 2rem;
  }
}
.ecoheal__item-range {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 1439px) {
  .ecoheal__item-range {
    font-size: 14px;
  }
}
.ecoheal__item-example {
  font-size: 0.9375rem;
  line-height: 1.33;
}
@media screen and (max-width: 1439px) {
  .ecoheal__item-example {
    font-size: 14px;
  }
}
.ecoheal__standard {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__standard {
    gap: 1rem;
  }
}
.ecoheal__box {
  border-bottom: 1px solid #707070;
  display: flex;
  font-size: 0.9375rem;
  line-height: 1.33;
  width: 48%;
}
@media screen and (max-width: 1439px) {
  .ecoheal__box {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__box {
    width: 100%;
  }
}
.ecoheal__box > dt {
  font-weight: 300;
  padding-bottom: 0.59375rem;
  position: relative;
  width: 72px;
}
.ecoheal__box > dt::before {
  -webkit-transform: translateY(50%);
  background-color: #707070;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  transform: translateY(50%);
  width: 100%;
}
.ecoheal__box > dd {
  padding-bottom: 0.59375rem;
  padding-left: 1.09375rem;
}
.ecoheal__btn-flex {
  display: flex;
  gap: 1.375rem;
  justify-content: right;
  line-height: 1.3125;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 600px) {
  .ecoheal__btn-flex {
    align-items: center;
    flex-direction: column;
  }
}
.ecoheal__btn {
  border: 1px solid #0081bf;
  border-radius: 8px;
  font-weight: 700;
  position: relative;
}
.ecoheal__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .ecoheal__btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .ecoheal__btn {
    width: 100%;
  }
}
.ecoheal__btn > span {
  font-size: 13px;
}
@media screen and (max-width: 600px) {
  .ecoheal__btn > span {
    padding-right: 0.5em;
  }
}
.ecoheal__btn::before {
  -webkit-transform: translateY(-50%);
  aspect-ratio: 1/0.234;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 0.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .ecoheal__btn::before {
    -webkit-transform: translateX(-50%);
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
  }
}
.ecoheal__btn--yamada {
  padding: 0.75rem 2.5rem 0.75rem 6.875rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__btn--yamada {
    padding: 0.75rem 2.5rem 0.75rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__btn--yamada {
    padding: 0.75rem 2.5rem 0.75rem 6rem;
  }
}
@media screen and (max-width: 600px) {
  .ecoheal__btn--yamada {
    padding: 15% 1rem 0.75rem 1rem;
    text-align: center;
  }
}
.ecoheal__btn--yamada::before {
  background-image: url(../img/tsubaki/yamada.png);
  width: 28%;
}
@media screen and (max-width: 600px) {
  .ecoheal__btn--yamada::before {
    width: 40%;
  }
}
.ecoheal__btn--qoo10 {
  padding: 0.75rem 2.5rem 0.75rem 5.125rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__btn--qoo10 {
    padding: 0.75rem 2.5rem 0.75rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__btn--qoo10 {
    padding: 0.75rem 2.5rem 0.75rem 4.5rem;
  }
}
@media screen and (max-width: 600px) {
  .ecoheal__btn--qoo10 {
    padding: 15% 1.25rem 0.75rem 1.25rem;
    text-align: center;
  }
}
.ecoheal__btn--qoo10::before {
  background-image: url(../img/tsubaki/qoo10.png);
  width: 34%;
}
@media screen and (max-width: 600px) {
  .ecoheal__btn--qoo10::before {
    left: 57%;
    width: 40%;
  }
}
.ecoheal__feature__list {
  counter-reset: li_count;
}
.ecoheal__list-item {
  margin-bottom: 5rem;
  padding-left: 11.25rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .ecoheal__list-item {
    padding-left: unset;
  }
}
.ecoheal__feature-description {
  font-size: 1rem;
  line-height: 1.5625;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__feature-description {
    font-size: 15px;
    margin-bottom: 4rem;
    margin-left: 6.625rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__feature-description {
    margin-bottom: 3rem;
    margin-left: unset;
  }
}
.ecoheal__merito {
  display: flex;
  flex-wrap: wrap;
  gap: 2.375rem 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ecoheal__merito {
    gap: 1rem;
  }
}
.ecoheal__merito-list {
  border: 5px solid #DFEEF5;
  border-radius: 10px;
  padding-block: 1.375rem;
  padding-inline: 0.5rem;
  text-align: center;
  width: 31%;
}
@media screen and (max-width: 1023px) {
  .ecoheal__merito-list {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__merito-list {
    width: 100%;
  }
}
.ecoheal__merito-title {
  font-size: 1.5625rem;
  line-height: 1.36;
  margin-bottom: 0.875rem;
  margin-inline: auto;
  width: 18.75rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__merito-title {
    font-size: 18px;
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__merito-title {
    width: 100%;
  }
}
.ecoheal__merito-description {
  letter-spacing: -0.06em;
  line-height: 1.5625;
}
@media screen and (max-width: 1023px) {
  .ecoheal__merito-description {
    font-size: 14px;
  }
}
.ecoheal__merito-supplement {
  bottom: 0;
  left: 71%;
  line-height: 1.5625;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .ecoheal__merito-supplement {
    font-size: 12px;
    left: 56%;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__merito-supplement {
    position: unset;
  }
}
.ecoheal__merito-image {
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  margin-inline: auto;
  width: 6.875rem;
}
.ecoheal__fix-images {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__fix-images {
    flex-direction: column;
  }
}
.ecoheal__fix-image-1 {
  width: 27.375rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__fix-image-1 {
    width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__fix-image-1 {
    width: 100%;
  }
}
.ecoheal__fix-image-2 {
  width: 17.9375rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__fix-image-2 {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__fix-image-2 {
    width: 100%;
  }
}
.ecoheal__fix-effect {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__fix-effect {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__fix-effect {
    margin-bottom: 1.5rem;
  }
}
.ecoheal__effect {
  background-color: #DFEEF5;
  padding: 1.125rem 1.5625rem 2rem;
  width: 48%;
}
@media screen and (max-width: 1023px) {
  .ecoheal__effect {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__effect {
    padding: 1.5rem;
    width: 100%;
  }
}
.ecoheal__effect-title {
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 1.125rem;
}
.ecoheal__effect-description {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__effect-description {
    font-size: 15px;
  }
}
.ecoheal__effect-images {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__effect-images {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__effect-images {
    gap: 0.625rem;
  }
}
.ecoheal__effect-images figure {
  width: 9.5625rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__effect-images figure {
    width: 13.75rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__effect-images figure {
    width: 32%;
  }
}
.ecoheal__effect-images figure > img {
  aspect-ratio: 1/1;
  clip-path: circle(50% at center);
  margin-bottom: 0.625rem;
}
.ecoheal__effect-images figure > figcaption {
  line-height: 1.40625;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__effect-images figure > figcaption {
    font-size: 12px;
  }
}
.ecoheal__fix-text {
  font-size: 1.5625rem;
  letter-spacing: -0.06em;
  line-height: 1.36;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__fix-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__fix-text {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-inline: auto;
    text-align: left;
    width: 90%;
  }
}
.ecoheal__comparison-image {
  margin-bottom: 2.5rem;
}
.ecoheal__comparison-text {
  font-size: 1.5625rem;
  line-height: 1.36;
  margin-bottom: 2.5rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__comparison-text {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.ecoheal__comparison-flex {
  display: flex;
  gap: 2.875rem;
  margin-bottom: 1.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-flex {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__comparison-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.ecoheal__comparison-box {
  border: 5px solid #DFEEF5;
  border-radius: 10px;
  padding: 2.5rem 5rem;
  text-align: center;
  width: 36.0625rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__comparison-box {
    padding: 1.6rem 2rem 1.8rem;
    width: 100%;
  }
}
.ecoheal__comparison-box > p {
  font-size: 1.25rem;
  line-height: 1.3513513514;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-box > p {
    font-size: 18px;
  }
}
.ecoheal__comparison-box > p > .red {
  color: #EB500B;
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-box > p > .red {
    font-size: 24px;
  }
}
.ecoheal__comparison-box > p > .gray {
  color: #737373;
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-box > p > .gray {
    font-size: 24px;
  }
}
.ecoheal__comparison-box > p > .fz-l-bold {
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-box > p > .fz-l-bold {
    font-size: 24px;
  }
}
.ecoheal__comparison-box > p > .fz-l {
  font-size: 2.3125rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-box > p > .fz-l {
    font-size: 24px;
  }
}
.ecoheal__comparison-title {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-title {
    font-size: 18px;
  }
}
.ecoheal__comparison-supplement {
  font-size: 1rem;
  line-height: 1.375;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1023px) {
  .ecoheal__comparison-supplement {
    font-size: 14px;
    width: 80%;
  }
}
.ecoheal__case-h4 {
  color: #1F46AB;
  font-size: 1.875rem;
  margin-bottom: 2.875rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-h4 {
    font-size: 20px;
    padding-top: 1.5rem;
    text-align: center;
  }
}
.ecoheal__case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.875rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-list {
    gap: 3rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-list {
    flex-direction: column;
  }
}
.ecoheal__case-list-item {
  width: 46%;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-list-item {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-list-item {
    width: 100%;
  }
}
.ecoheal__case-title {
  font-size: 1.5625rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-title {
    font-size: 1.0625rem;
  }
}
.ecoheal__case-beforeafter {
  display: flex;
  gap: 1.6875rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-beforeafter {
    gap: 1rem;
  }
}
.ecoheal__case-beforeafter figure {
  width: 47%;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-beforeafter figure {
    width: 50%;
  }
}
.ecoheal__case-beforeafter figure span {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5625;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-beforeafter figure span {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-beforeafter figure span {
    margin-bottom: 0.75rem;
  }
}
.ecoheal__case-beforeafter figure figcaption {
  background-color: #A4C8D9;
  font-size: 1.4375rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  padding-block: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-beforeafter figure figcaption {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-beforeafter figure figcaption {
    font-size: 0.9375rem;
    padding: 0.6rem;
  }
}
.ecoheal__case-beforeafter figure img {
  -o-object-fit: cover;
  height: 12.625rem;
  margin-bottom: 1.25rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .ecoheal__case-beforeafter figure img {
    height: 8rem;
  }
}
.ecoheal__case-beforeafter figure .h-128 {
  -o-object-fit: contain;
  height: 8rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .ecoheal__case-beforeafter figure .h-128 {
    height: 5rem;
  }
}
.ecoheal__case-description {
  color: #EB500B;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.55;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__case-description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__case-description {
    font-size: 0.9375rem;
    text-align: left;
  }
}
.ecoheal__certificate-lightBoxText {
  padding-left: 1.5em;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .ecoheal__certificate-lightBoxText {
    font-size: 0.8125rem;
  }
}
.ecoheal__certificate-lightBoxText::before {
  -webkit-transform: translate(0, -100%);
  aspect-ratio: 1/1;
  background-image: url(../img/group/glass.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 100%;
  transform: translate(0, -100%);
  width: 1.2rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__certificate-lightBoxText::before {
    width: 0.8rem;
  }
}
.ecoheal__image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.125rem 8%;
  margin-bottom: 3.25rem;
  padding-top: 3.5em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .ecoheal__image-list {
    margin-bottom: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .ecoheal__image-list {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
  }
}
.ecoheal__image-list-item {
  width: 28%;
}
@media screen and (max-width: 767px) {
  .ecoheal__image-list-item {
    width: 100%;
  }
}
.ecoheal__image-list-item--last {
  width: 41.7%;
}
@media screen and (max-width: 767px) {
  .ecoheal__image-list-item--last {
    width: 100%;
  }
}
.ecoheal__certification-images {
  border-bottom: 1px solid #1F46AB;
  display: flex;
  gap: 0.3125rem;
  justify-content: center;
  margin-bottom: 1.375rem;
  padding-bottom: 1.375rem;
  padding-inline: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ecoheal__certification-images {
    flex-wrap: wrap;
  }
}
.ecoheal__certification {
  aspect-ratio: 1/1.356;
}
.ecoheal__certificate-name {
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .ecoheal__certificate-name {
    font-size: 14px;
  }
}

.mask__fv {
  margin-bottom: 2.0625rem;
  margin-top: 3.3125rem;
}
.mask__fv-flex {
  display: flex;
  gap: 2.375rem;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .mask__fv-flex {
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
  }
}
.mask__fv-image {
  aspect-ratio: 1/0.603;
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .mask__fv-image {
    width: 100%;
  }
}
.mask__heading {
  color: #1F46AB;
  font-weight: 700;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .mask__heading {
    margin-top: unset;
  }
}
.mask__heading > p {
  font-size: 1.125rem;
  line-height: 1.8888888889;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .mask__heading > p {
    font-size: 1rem;
    margin-bottom: unset;
  }
}
.mask__heading > h2 {
  font-size: 3.1875rem;
  line-height: 1.1764705882;
}
@media screen and (max-width: 1023px) {
  .mask__heading > h2 {
    font-size: 2.9rem;
  }
}
@media screen and (max-width: 767px) {
  .mask__heading > h2 {
    font-size: 2rem;
  }
}
.mask__fv-h3 {
  font-size: 2.3125rem;
  line-height: 1.3513513514;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .mask__fv-h3 {
    font-size: 1.25rem;
  }
}
.mask__fv-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1023px) {
  .mask__fv-text {
    font-size: 16px;
  }
}
.mask__download {
  margin-bottom: 2.5rem;
}
.mask__section-title {
  margin-bottom: 1.5625rem;
}
.mask__section-title--sub {
  font-weight: normal;
  max-width: 62.5rem;
}
.mask__feature-image {
  max-width: 62.5rem;
}
@media screen and (max-width: 1023px) {
  .mask__feature-image {
    margin-inline: auto;
  }
}
.mask__item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 2.375rem;
}
@media screen and (max-width: 1439px) {
  .mask__item-list {
    gap: 2.59375rem;
  }
}
@media screen and (max-width: 1023px) {
  .mask__item-list {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .mask__item-list {
    flex-direction: column;
  }
}
.mask__item {
  display: flex;
  gap: 1.4375rem;
  width: 47%;
}
@media screen and (max-width: 1023px) {
  .mask__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .mask__item {
    width: 100%;
  }
}
.mask__item-image {
  aspect-ratio: 1/0.758;
  width: 15.5rem;
}
@media screen and (max-width: 1023px) {
  .mask__item-image {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .mask__item-image {
    margin-inline: auto;
    width: 100%;
  }
}
.mask__item-text-container {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .mask__item-text-container {
    padding-inline: 10px;
  }
}
.mask__item-title {
  align-items: center;
  display: flex;
  gap: 1.1875rem;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .mask__item-title {
    margin-bottom: 15px;
  }
}
.mask__item-for {
  background-color: #DFEEF5;
  border-radius: 30px;
  font-size: 0.9375rem;
  line-height: 1.875rem;
  text-align: center;
  width: 5.875rem;
}
@media screen and (max-width: 1023px) {
  .mask__item-for {
    font-size: 12px;
    line-height: 18px;
    width: 60px;
  }
}
.mask__item-name {
  font-size: 1.5625rem;
}
@media screen and (max-width: 1023px) {
  .mask__item-name {
    font-size: 22px;
  }
}
.mask__h4 {
  color: #1F46AB;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.25;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1023px) {
  .mask__h4 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.mask__item-description {
  font-size: 1rem;
  line-height: 1.5625;
  padding-left: 0.7em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .mask__item-description {
    font-size: 15px;
  }
}
.mask__item-description::before {
  content: "●";
  display: block;
  font-size: 0.5em;
  left: 0;
  position: absolute;
  top: 1em;
}
.mask__image-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3.25rem;
  padding-top: 3.5em;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .mask__image-list {
    margin-bottom: 9rem;
  }
}
@media screen and (max-width: 767px) {
  .mask__image-list {
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
  }
}
.mask__list-certification {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mask__list-certification {
    width: 100%;
  }
}
.mask__certification-odd {
  padding-bottom: 1.375rem;
  width: 10.9375rem;
}
.mask__certification-odd > img {
  aspect-ratio: 1/1.356;
}
@media screen and (max-width: 767px) {
  .mask__certification-odd {
    border-bottom: unset;
    margin-inline: auto;
  }
  .mask__certification-odd + .mask__certificate-name {
    border-top: 1px solid #1F46AB;
  }
}
.mask__certification-coincidence {
  padding-bottom: 1.375rem;
  width: 23.25rem;
}
.mask__certification-coincidence > img {
  aspect-ratio: 1/0.469;
}
@media screen and (max-width: 767px) {
  .mask__certification-coincidence {
    width: 100%;
  }
}
.mask__certificate-name {
  border-top: 1px solid #1F46AB;
  padding-top: 1.375rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .mask__certificate-name {
    font-size: 12px;
  }
}

.tsubaki__award {
  background-color: #E1EFBA;
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  margin-bottom: 2.25rem;
  padding-block: 1.875rem 3.125rem;
  padding-inline: 1rem;
}
@media screen and (max-width: 1439px) {
  .tsubaki__award {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__award {
    padding-block: 1.875rem 4rem;
  }
}
.tsubaki__award-title-container {
  align-items: center;
  display: flex;
  gap: 1.875rem;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 1439px) {
  .tsubaki__award-title-container {
    gap: 1rem;
    justify-content: center;
    margin-bottom: unset;
    padding-right: 1rem;
  }
}
.tsubaki__award-image {
  aspect-ratio: 1/1.633;
  background-color: #E1EFBA;
  width: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__award-image {
    width: 3rem;
  }
}
.tsubaki__award-title {
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .tsubaki__award-title {
    font-size: 1.625rem;
  }
}
.tsubaki__award-evaluation {
  background-color: #fff;
  padding: 1.125rem 1.625rem 1.125rem 5.375rem;
}
@media screen and (max-width: 1439px) {
  .tsubaki__award-evaluation {
    padding: 1.125rem 1.625rem 1.125rem 6.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 1023px) {
  .tsubaki__award-evaluation {
    padding: 1.125rem 1.625rem 1.125rem 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__award-evaluation {
    margin-inline: auto;
    padding: 1.5rem 1rem 1.125rem;
  }
}
.tsubaki__award-evaluation > p {
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .tsubaki__award-evaluation > p {
    line-height: 2;
  }
}
@media screen and (max-width: 1023px) {
  .tsubaki__award-evaluation > p {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__award-evaluation > p {
    line-height: 2.5;
    margin-top: 0.3rem;
  }
}
.tsubaki__award-evaluation--three::before {
  content: "★★★";
  display: inline-block;
  left: -1.6875rem;
  position: absolute;
  translate: -100%;
}
@media screen and (max-width: 767px) {
  .tsubaki__award-evaluation--three::before {
    left: 0;
    top: -15px;
    translate: unset;
  }
}
.tsubaki__award-evaluation--two::before {
  content: "★★";
  display: inline-block;
  left: -1.6875rem;
  position: absolute;
  translate: -150%;
}
@media screen and (max-width: 767px) {
  .tsubaki__award-evaluation--two::before {
    left: 0;
    top: -15px;
    translate: unset;
  }
}
.tsubaki__award-evaluation--one::before {
  content: "★";
  display: inline-block;
  left: -1.6875rem;
  position: absolute;
  translate: -300%;
}
@media screen and (max-width: 767px) {
  .tsubaki__award-evaluation--one::before {
    left: 0;
    top: -15px;
    translate: unset;
  }
}
@media screen and (max-width: 1439px) {
  .tsubaki__award-left {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__award-left {
    flex-direction: column;
    gap: 1rem;
  }
}
.tsubaki__award-right {
  font-size: 1.25rem;
  line-height: 1.75;
  width: 52rem;
}
@media screen and (max-width: 1439px) {
  .tsubaki__award-right {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .tsubaki__award-right {
    font-size: 1rem;
  }
}
.tsubaki__shop-flex {
  background-color: #F8F8F8;
  border-radius: 13px;
  display: flex;
  gap: 2.75rem;
  margin-top: 1.75rem;
  padding: 2.75rem 1.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__shop-flex {
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .tsubaki__shop-flex {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .tsubaki__shop-flex {
    gap: 2.25rem;
  }
}
.tsubaki__link-list {
  -ms-grid-columns: 17.5rem 1.25rem 17.5rem 1.25rem 17.5rem 1.25rem 17.5rem;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 17.5rem);
}
@media screen and (max-width: 1023px) {
  .tsubaki__link-list {
    -ms-grid-columns: (260px)[2];
    grid-template-columns: repeat(2, 260px);
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__link-list {
    -ms-grid-columns: (280px)[1];
    grid-template-columns: repeat(1, 280px);
  }
}
.tsubaki__link-list--shop {
  display: flex;
  gap: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tsubaki__link-list--shop {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop {
    flex-direction: unset;
    padding-left: unset;
    padding-top: 5rem;
  }
}
.tsubaki__link-list--shop::before {
  aspect-ratio: 1/0.356;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 1rem;
  position: absolute;
  top: 0;
  width: 8.3125rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__link-list--shop::before {
    top: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop::before {
    top: 0rem;
  }
}
.tsubaki__link-list--shop::after {
  bottom: 0;
  font-weight: 700;
  left: 1rem;
  letter-spacing: -0.1em;
  position: absolute;
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 1023px) {
  .tsubaki__link-list--shop::after {
    bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__link-list--shop::after {
    bottom: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop::after {
    -webkit-transform: translateX(-50%);
    bottom: unset;
    left: 50%;
    top: 3rem;
    transform: translateX(-50%);
  }
}
.tsubaki__link-list--shop--yamada {
  padding-left: 12.625rem;
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop--yamada {
    padding-left: unset;
  }
}
.tsubaki__link-list--shop--yamada::before {
  background-image: url("../img/tsubaki/yamada.png");
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop--yamada::before {
    -webkit-transform: translateX(-50%);
    left: 50%;
    transform: translateX(-50%);
  }
}
.tsubaki__link-list--shop--yamada::after {
  content: "[ヤマダモール] 販売ページ";
}
.tsubaki__link-list--shop--qoo10 {
  padding-left: 10rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__link-list--shop--qoo10 {
    padding-left: 12.625rem;
  }
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop--qoo10 {
    padding-left: unset;
  }
}
.tsubaki__link-list--shop--qoo10::before {
  background-image: url("../img/tsubaki/qoo10.png");
}
@media screen and (max-width: 600px) {
  .tsubaki__link-list--shop--qoo10::before {
    -webkit-transform: translateX(-50%);
    left: 57%;
    transform: translateX(-50%);
  }
}
.tsubaki__link-list--shop--qoo10::after {
  content: "[QOO10] 販売ページ";
}
.tsubaki__link-item {
  align-items: center;
  aspect-ratio: 1/0.229;
  border: 1px solid #EB500B;
  border-radius: 8px;
  display: flex;
  justify-content: right;
  position: relative;
}
.tsubaki__link-item > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1439px) {
  .tsubaki__link-item {
    width: unset;
  }
}
.tsubaki__link-item::before {
  aspect-ratio: 1/0.753;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 1rem;
  position: absolute;
  top: 0rem;
  width: 5.3125rem;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .tsubaki__link-item::before {
    left: 16px;
    width: 78px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__link-item::before {
    width: 83px;
  }
}
.tsubaki__download {
  align-items: center;
  color: #EB500B;
  display: flex;
  font-size: 1.125rem;
  height: 100%;
  padding-left: 4rem;
  padding-right: 1em;
  position: relative;
  transition: 0.3s;
}
.tsubaki__download:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .tsubaki__download {
    font-size: 16px;
    padding-left: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__download {
    padding-left: 5rem;
    padding-right: 1.5em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tsubaki__btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  transition: 0.3s;
}
.tsubaki__btn > span {
  display: block;
  font-size: 0.8125rem;
}
.tsubaki__btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .tsubaki__btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.tsubaki__btn--shop {
  font-size: 1.125rem;
  padding: 1.25rem 1rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__btn--shop {
    font-size: 15px;
  }
}
.tsubaki__btn--shop span {
  font-weight: 700;
}
.tsubaki--download::before {
  background-image: url("../img/tsubaki/file.png");
}
.tsubaki--line > a {
  align-items: center;
  display: flex;
  height: 100%;
  padding-left: 5rem;
  padding-right: 1.5em;
}
@media screen and (max-width: 1023px) {
  .tsubaki--line > a {
    font-size: 15px;
    padding-left: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki--line > a {
    padding-left: 6rem;
  }
}
.tsubaki--line::before {
  background-image: url("../img/tsubaki/line.png");
}
.tsubaki__nav {
  background-color: #9FBE48;
}
.tsubaki__heading {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__heading {
    margin-bottom: 1.75rem;
  }
}
.tsubaki__section {
  margin-bottom: 6.25rem;
}
.tsubaki__oil-container {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__oil-container {
    flex-direction: column;
    gap: 3.5rem;
    margin-bottom: 1.5rem;
  }
}
.tsubaki__oil-left {
  width: 31.9375rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__oil-left {
    width: 100%;
  }
}
.tsubaki__oil-right {
  width: 52.25rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__oil-right {
    width: 100%;
  }
}
.tsubaki__left-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625rem 0.6875rem;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__left-images {
    margin-bottom: 1.125rem;
  }
}
.tsubaki__left-image {
  width: 48%;
}
.tsubaki__left-image > img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.538;
  object-fit: cover;
}
.tsubaki__left-image > p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__left-image > p {
    font-size: 12px;
  }
}
.tsubaki__left-description {
  line-height: 1.5625;
  padding-left: 1em;
  position: relative;
}
.tsubaki__left-description > p::before {
  content: "・";
  display: block;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .tsubaki__left-description {
    font-size: 14px;
  }
}
.tsubaki__right-description {
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.7;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__right-description {
    font-size: 16px;
  }
}
.tsubaki__right-description--mb {
  margin-bottom: 1.5rem;
}
.tsubaki__right-images {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__right-images {
    flex-direction: column;
  }
}
.tsubaki__right-images-box-left {
  border: 1px solid #9FBE48;
  border-radius: 16px;
  padding: 1.375rem 1.875rem;
  width: 29.5625rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__right-images-box-left {
    padding-left: 1.25rem;
    width: 100%;
  }
}
.tsubaki__right-images-box-right {
  border: 1px solid #9FBE48;
  border-radius: 16px;
  padding-block: 1.375rem;
  padding-left: 1.875rem;
  width: 20.1875rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__right-images-box-right {
    width: 29.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__right-images-box-right {
    padding-left: 1.25rem;
    width: 100%;
  }
}
.tsubaki__figcap {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__figcap {
    font-size: 14px;
  }
}
.tsubaki__box-image-left {
  display: flex;
  gap: 0.6875rem;
}
.tsubaki__box-image-left--left {
  width: 49%;
}
.tsubaki__box-image-left--right {
  width: 49%;
}
.tsubaki__box-image-right > img {
  width: 68%;
}
@media screen and (max-width: 1023px) {
  .tsubaki__box-image-right > img {
    width: 45%;
  }
}
.tsubaki__oil-video-container {
  background-color: #E1EFBA;
  padding-block: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__oil-video-container {
    padding-block: 1rem;
  }
}
.tsubaki__video-text {
  background-color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  padding-block: 1.25rem;
  text-align: center;
  width: 70.875rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__video-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__video-text {
    line-height: 1.1333333333;
    margin-bottom: 0.625rem;
    padding-block: 0.75rem;
    width: 90%;
  }
}
.tsubaki__video {
  margin-inline: auto;
  width: 70.875rem;
}
.tsubaki__video > video {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tsubaki__video {
    width: 90%;
  }
}
.tsubaki__merito-image-1 {
  aspect-ratio: 1/1.297;
  margin-bottom: 1.4375rem;
  margin-inline: auto;
  width: 4.625rem;
}
.tsubaki__merito-image-2 {
  aspect-ratio: 1/1;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  width: 6.375rem;
}
.tsubaki__merito-image-3 {
  aspect-ratio: 1/0.536;
  margin-bottom: 2.375rem;
  margin-inline: auto;
  margin-top: 1.125rem;
  width: 7.6875rem;
}
.tsubaki__merito-image-4 {
  aspect-ratio: 1/1.083;
  margin-bottom: 1rem;
  margin-inline: auto;
  margin-top: -0.3125rem;
  width: 6rem;
}
.tsubaki__merito-image-5 {
  aspect-ratio: 1/0.561;
  margin-bottom: 0.5rem;
  margin-inline: auto;
  width: 11.875rem;
}
.tsubaki__feature-h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__feature-h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__feature-h4 {
    line-height: 1.3888888889;
    text-align: center;
  }
}
.tsubaki__feature-table-flex {
  display: flex;
  gap: 3.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__feature-table-flex {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__feature-table-flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.tsubaki__feature-flex-left {
  width: 37.0625rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__feature-flex-left {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__feature-flex-left {
    width: 100%;
  }
}
.tsubaki__table {
  margin-bottom: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table {
    font-size: 14px;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__table {
    margin-inline: -10px;
  }
}
.tsubaki__table th {
  background-color: #E1EFBA;
  padding-block: 1rem;
  width: 11.25rem;
}
.tsubaki__table th:first-child {
  background-color: unset;
  width: 13.25rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table th:first-child {
    width: 20rem;
  }
}
.tsubaki__table td {
  border: 1px solid #D5D5D5;
  padding-block: 0.5rem;
}
.tsubaki__table-supplement {
  line-height: 1.5625;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table-supplement {
    font-size: 14px;
  }
}
.tsubaki__dl {
  border-left: 1px solid #333333;
  line-height: 1.35;
  padding-left: 3.4375rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__dl {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__dl {
    border-left: unset;
    padding-left: unset;
  }
}
.tsubaki__dl-line {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.tsubaki__dl-line > dt {
  border: 1px solid #D5D5D5;
  padding: 1.25rem;
  padding-block: 0.5rem;
  width: 20.125rem;
}
.tsubaki__dl-line > dd {
  align-items: center;
  border: 1px solid #D5D5D5;
  display: flex;
  justify-content: center;
  padding-block: 0.5rem;
  width: 7.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__dl-line > dd {
    width: 10rem;
  }
}
.tsubaki__dl-line:first-child > dt, .tsubaki__dl-line:first-child > dd {
  background-color: #E1EFBA;
  border: unset;
  font-weight: 700;
  padding-block: 0.7rem;
  text-align: center;
}
.tsubaki__dl-line:nth-child(3) > dt, .tsubaki__dl-line:nth-child(3) > dd {
  background-color: #EB500B;
  color: #fff;
}
.tsubaki__merito {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem 2.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__merito {
    gap: 1.5rem;
  }
}
.tsubaki__merito-list {
  border-radius: 10px;
  padding: 2.5rem 1.25rem;
  text-align: center;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .tsubaki__merito-list {
    padding: 1rem 1rem;
    width: 100%;
  }
}
.tsubaki__bo-green {
  border: 5px solid #E1EFBA;
}
.tsubaki__bo-orange {
  border: 5px solid #F5EBDF;
}
.tsubaki__merito-title {
  font-size: 1.5625rem;
  line-height: 1.36;
  margin-bottom: 2.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .tsubaki__merito-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__merito-title {
    margin-bottom: 1rem;
  }
}
.tsubaki__merito-flex {
  align-items: center;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__merito-flex {
    flex-direction: column;
  }
}
.tsubaki__merito-icon {
  border-radius: 28px;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem;
  width: 10.125rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__merito-icon {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__merito-icon {
    padding: 0.5rem;
    width: 100%;
  }
}
.tsubaki__bg-green {
  background-color: #E1EFBA;
  color: #547005;
}
.tsubaki__bg-orange {
  background-color: #F5EBDF;
  color: #ED6D00;
}
.tsubaki__merito-description {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
}
.tsubaki__merito-description > .green {
  color: #547005;
}
.tsubaki__merito-description > .orange {
  color: #ED6D00;
}
@media screen and (max-width: 1023px) {
  .tsubaki__merito-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__merito-description {
    margin-top: 0.625rem;
  }
}
.tsubaki__merito-supplement {
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}
.tsubaki__merito-supplement::before {
  content: "※";
  display: block;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .tsubaki__merito-supplement {
    font-size: 14px;
  }
}
.tsubaki__intro-container {
  display: flex;
  gap: 4.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__intro-container {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__intro-container {
    flex-direction: column;
  }
}
.tsubaki__intro-image {
  width: 18.5625rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__intro-image {
    margin-inline: auto;
    width: 70%;
  }
}
.tsubaki__intro-description {
  flex: 1;
}
.tsubaki__intro-title {
  font-size: 2.3125rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__intro-title {
    font-size: 24px;
  }
}
.tsubaki__intro-h4 {
  margin-bottom: 0.5rem;
}
.tsubaki__farm-flex {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__farm-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__farm-flex {
    margin-bottom: 2.5rem;
  }
}
.tsubaki__farm-description {
  flex: 1;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1023px) {
  .tsubaki__farm-description {
    font-size: 14px;
  }
}
.tsubaki__farm-bold {
  color: #547005;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .tsubaki__farm-bold {
    font-size: 16px;
  }
}
.tsubaki__farm-image {
  aspect-ratio: 1/0.373;
  width: 24.625rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__farm-image {
    width: 30rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__farm-image {
    width: 100%;
  }
}
.tsubaki__process-images {
  display: flex;
  gap: 0.5rem 1.125rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__process-images {
    flex-wrap: wrap;
  }
}
.tsubaki__process-image {
  text-align: center;
  width: 9.75rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__process-image {
    width: 16.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__process-image {
    width: 47%;
  }
}
.tsubaki__process-image > img {
  aspect-ratio: 1/0.628;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__process-image > p {
    font-size: 14px;
  }
}
.tsubaki__table-2 {
  margin-bottom: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table-2 {
    font-size: 14px;
    margin-bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__table-2 {
    width: 800px;
  }
}
.tsubaki__table-2 th {
  background-color: #E1EFBA;
  padding-block: 1rem;
  width: 8.3125rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table-2 th {
    width: 11rem;
  }
}
.tsubaki__table-2 th:first-child, .tsubaki__table-2 th:nth-child(5) {
  width: 5.9375rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__table-2 th:first-child, .tsubaki__table-2 th:nth-child(5) {
    width: 9rem;
  }
}
.tsubaki__table-2 th:last-child {
  width: 24.25rem;
}
.tsubaki__table-2 td {
  border: 1px solid #D5D5D5;
  padding-block: 1rem;
}
.tsubaki__table-2 td:last-child {
  padding-left: 0.9375rem;
  text-align: left;
}
.tsubaki__table-2 .td-orange {
  color: #EB500B;
  font-weight: 700;
}
.tsubaki__purpose-text {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6923076923;
  padding-block: 3.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tsubaki__purpose-text {
    font-size: 16px;
    padding-block: 1.5rem;
  }
}
.tsubaki__purpose-image {
  margin-inline: auto;
  position: relative;
  width: 76.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__purpose-image {
    padding-block: 5rem;
    width: 100%;
  }
}
.tsubaki__men {
  aspect-ratio: 1/1;
  clip-path: circle(50% at center);
  left: 0.75rem;
  position: absolute;
  top: 3.46875rem;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__men {
    left: 0rem;
    top: 1.25rem;
    width: 5rem;
  }
}
.tsubaki__women {
  aspect-ratio: 1/1;
  clip-path: circle(50% at center);
  position: absolute;
  right: 0.75rem;
  top: 3.46875rem;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__women {
    right: 0rem;
    top: 1.25rem;
    width: 5rem;
  }
}
.tsubaki__mother {
  aspect-ratio: 1/1;
  bottom: 3.46875rem;
  clip-path: circle(50% at center);
  position: absolute;
  right: 0.75rem;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__mother {
    bottom: 1.25rem;
    right: 0rem;
    width: 5rem;
  }
}
.tsubaki__baby {
  aspect-ratio: 1/1;
  bottom: 3.46875rem;
  clip-path: circle(50% at center);
  left: 0.75rem;
  position: absolute;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__baby {
    bottom: 1.25rem;
    left: 0rem;
    width: 5rem;
  }
}
.tsubaki__recipi-btn {
  border: 1px solid #EB500B;
  border-radius: 8px;
  color: #ED6D00;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-left: 1.75rem;
  position: relative;
  transition: 0.3s;
}
.tsubaki__recipi-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-btn {
    font-size: 14px;
    line-height: 1;
    padding-block: 13px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-btn {
    margin-left: 0.5rem;
  }
}
.tsubaki__recipi-btn--download {
  padding: 1.375rem 2.0625rem 1.375rem 4rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-btn--download {
    padding: 1rem 1rem 1rem 2.5rem;
  }
}
.tsubaki__recipi-btn--download::before {
  background-image: url("../img/overview/file.png");
  background-size: contain;
  content: "";
  display: block;
  height: 1.6875rem;
  left: 1.9375rem;
  position: absolute;
  top: 1.375rem;
  width: 1.375rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-btn--download::before {
    height: 20px;
    left: 1.25rem;
    top: 1.3rem;
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-btn--download::before {
    top: 0.9rem;
  }
}
.tsubaki__recipi-container {
  padding-left: 12.5rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-container {
    padding-left: unset;
  }
}
.tsubaki__recipi-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-text {
    font-size: 15px;
  }
}
.tsubaki__recipi-images {
  display: flex;
  gap: 1.625rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-images {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
}
.tsubaki__recipi-images > img {
  width: 25%;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-images > img {
    width: 23%;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-images > img {
    width: 47%;
  }
}
.tsubaki__recipi-images-2 {
  display: flex;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-images-2 {
    flex-direction: column;
    gap: 1rem;
  }
}
.tsubaki__recipi-images-2 > img {
  width: 33%;
}
@media screen and (max-width: 1023px) {
  .tsubaki__recipi-images-2 > img {
    width: 31%;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__recipi-images-2 > img {
    width: 100%;
  }
}
.tsubaki__relation {
  background-color: #E1EFBA;
  margin-bottom: unset;
  padding-block: 2rem 4.125rem;
}
.tsubaki__relation-heading {
  border-bottom: 6px solid #fff;
}
.tsubaki__relation-text {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.tsubaki__relation-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-list {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.tsubaki__relation-item {
  background-color: #fff;
  border-radius: 24px;
  width: 48%;
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-item {
    width: 100%;
  }
}
.tsubaki__relation-item-link {
  display: flex;
  gap: 1.625rem;
  padding: 2.875rem 1.5rem 5.5rem 2.5rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .tsubaki__relation-item-link {
    flex-direction: column;
    padding: 2rem 1.5rem 2rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-item-link {
    gap: 0;
    padding: 1rem 1.5rem 6rem 1.5rem;
  }
}
.tsubaki__relation-image {
  aspect-ratio: 1/0.9;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-image {
    margin-inline: auto;
  }
}
.tsubaki__relation-description {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-description {
    text-align: center;
  }
}
.tsubaki__relation-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__relation-title {
    font-size: 18px;
  }
}
.tsubaki__relation-item-text {
  line-height: 1.5625;
}
@media screen and (max-width: 1023px) {
  .tsubaki__relation-item-text {
    font-size: 14px;
  }
}
.tsubaki__relation-btn {
  bottom: 1.5rem;
  display: flex;
  gap: 2rem;
  position: absolute;
  right: 1.8125rem;
  transition: 0.3s;
  width: 16.8125rem;
}
@media screen and (max-width: 1023px) {
  .tsubaki__relation-btn {
    bottom: unset;
    top: 6rem;
    width: 21rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-btn {
    -webkit-transform: translateX(50%);
    bottom: 1.5rem;
    justify-content: center;
    right: 45%;
    top: unset;
    transform: translateX(50%);
    width: 70%;
  }
}
.tsubaki__relation-btn > a:hover {
  opacity: 0.7;
}
.tsubaki__relation-btn::before {
  content: "販売ページはこちら";
  font-weight: 700;
  left: 0;
  position: absolute;
  top: -2em;
}
@media screen and (max-width: 1439px) {
  .tsubaki__relation-btn::before {
    top: -1.5em;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-btn::before {
    -webkit-transform: translateX(-60%);
    left: 50%;
    transform: translateX(-60%);
    width: -webkit-max-content;
    width: max-content;
  }
}
.tsubaki__relation-link {
  font-size: 1.3125rem;
  gap: 1.1875rem;
  justify-content: center;
  margin-inline: auto;
  max-width: 1210px;
}
@media screen and (max-width: 1023px) {
  .tsubaki__relation-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-link {
    align-items: center;
    flex-direction: column;
    font-size: 0.875rem;
  }
}
.tsubaki__relation-link__item {
  aspect-ratio: 1/0.249;
  background-color: #fff;
  border-radius: 59px;
  margin-inline: auto;
  position: relative;
  transition: 0.3s;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .tsubaki__relation-link__item {
    width: 285px;
  }
}
.tsubaki__relation-link__item > a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  padding-left: 5.625rem;
  position: relative;
  width: 100%;
  z-index: 2;
}
.tsubaki__relation-link__item > a::before {
  aspect-ratio: 1/0.876;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  left: 2.5rem;
  position: absolute;
  top: 0;
  width: 28.4%;
  z-index: -1;
}
.tsubaki__relation-link__item:hover {
  opacity: 0.7;
}
.tsubaki__relation-line > a::before {
  background-image: url(../img/tsubaki/line.png);
}

.industry {
  padding-block: 4.375rem 7.1875rem;
}
@media screen and (max-width: 767px) {
  .industry {
    padding-block: 2.8125rem 4.6875rem;
  }
}

.industry__title {
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .industry__title {
    font-size: 2.375rem;
  }
}

.industry__menus {
  -ms-grid-columns: 1fr 4.5rem 1fr 4.5rem 1fr 4.5rem 1fr 4.5rem 1fr 4.5rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 3.4375rem 4.5rem;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .industry__menus {
    -ms-grid-columns: 1fr 1.25rem 1fr;
    gap: 1.875rem 1.25rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.8125rem;
  }
}

@media (hover: hover) {
  .industry-menu a:hover .industry-menu__thumbnail {
    opacity: 0.7;
  }
  .industry-menu a:hover .industry-menu__thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.industry-menu__thumbnail {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.industry-menu__thumbnail::before {
  content: "";
  display: block;
  padding-top: 80.8%;
}
.industry-menu__thumbnail img {
  -o-object-fit: cover;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.3s;
  width: 100%;
}

.industry-menu__title {
  font-size: 1.875rem;
  font-weight: 400;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .industry-menu__title {
    font-size: 1.375rem;
    margin-top: 0.625rem;
  }
}

.industry-section {
  margin-top: 2.5rem;
}
.industry-section:not(:first-child) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .industry-section:not(:first-child) {
    margin-top: 2.8125rem;
  }
}

.industry-section__title {
  font-size: 2.1875rem;
  font-weight: 700;
  padding-bottom: 1.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .industry-section__title {
    font-size: 1.625rem;
    padding-bottom: 1.4375rem;
  }
}
.industry-section__title::before {
  background-color: #EEEEEE;
  bottom: 0;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .industry-section__title::before {
    height: 4px;
  }
}
.industry-section__title::after {
  background-color: #1F46AB;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 6px;
  left: 0;
  position: absolute;
  width: 10rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .industry-section__title::after {
    height: 4px;
    width: 7.5rem;
  }
}

.industry-section__cards {
  -ms-grid-columns: 1fr 2.125rem 1fr 2.125rem 1fr 2.125rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 2.625rem 2.125rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .industry-section__cards {
    -ms-grid-columns: 1fr;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }
}

.industry-section-card {
  border: 2px solid #DBDBDB;
  border-radius: 5px;
  transition: 0.3s;
}
.industry-section-card a {
  display: block;
  font-size: 1.125rem;
  line-height: 1.8888888889;
  padding: 1.88888em 1em 3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .industry-section-card a {
    font-size: 0.875rem;
  }
}
.industry-section-card a::after {
  -webkit-transform: translateX(-50%);
  background: url(../img/icon/under-arrow-blue.svg) no-repeat center center/contain;
  bottom: 1.4375rem;
  content: "";
  display: block;
  height: 0.8125rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .industry-section-card a::after {
    bottom: 1.0625rem;
    height: 0.625rem;
    width: 1rem;
  }
}
.industry-section-card img {
  -o-object-fit: cover;
  aspect-ratio: 1/0.65;
  object-fit: cover;
}
@media (hover: hover) {
  .industry-section-card:hover {
    border-color: #1F46AB;
  }
  .industry-section-card:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

figure {
  overflow: hidden;
}

img {
  transition: 0.3s;
}

.industry-section-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .industry-section-card__title {
    font-size: 1rem;
  }
}

.industry-section-card__text {
  margin-top: 0.8em;
}

@media screen and (max-width: 767px) {
  .industry-section-card__thumbnail img {
    margin-inline: auto;
    width: 60%;
  }
}

.news-archive {
  padding-block: 5rem 3.4375rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding-block: 3.125rem;
  }
}

.news-archive__list {
  padding-inline: 8.5714285714%;
}
@media screen and (max-width: 767px) {
  .news-archive__list {
    padding-inline: 0;
  }
}

.news-archive__item:not(:first-child) {
  margin-top: 1.25rem;
}
.news-archive__item a {
  border: 1px solid #707070;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  padding: 2.9375rem 2.375rem 4.125rem 2.75rem;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-archive__item a {
    flex-direction: column;
    gap: 1.375rem;
    padding: 1.25rem;
  }
}
@media (hover: hover) {
  .news-archive__item a:hover {
    color: #EB500B;
  }
}

.news-archive__block {
  width: 74.4142455483%;
}
@media screen and (max-width: 767px) {
  .news-archive__block {
    width: 100%;
  }
}

.news-archive__row {
  align-items: center;
  display: flex;
}

.news-archive__time {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .news-archive__time {
    font-size: 0.875rem;
  }
}

.news-archive__tag {
  background-color: #1F46AB;
  border: 1px solid #1F46AB;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 1.25rem;
  min-width: 9.6875rem;
  padding-block: 0.4375rem;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-archive__tag {
    font-size: 0.875rem;
    margin-left: 0.625rem;
    min-width: 6.25rem;
    padding-block: 0.1875rem;
  }
}

.news-archive__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.8125rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .news-archive__title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.news-archive__content {
  font-size: 1.25rem;
  line-height: 2.5;
  margin-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .news-archive__content {
    font-size: 1rem;
    margin-top: 0.875rem;
  }
}

.news-archive__tumbnail {
  width: 22.5866916589%;
}
@media screen and (max-width: 767px) {
  .news-archive__tumbnail {
    width: 100%;
  }
}

.news-archive__dummy-image {
  align-items: center;
  background-color: #eee;
  display: flex;
  justify-content: center;
  padding: 4.6875rem 3.125rem;
  width: 100%;
}

.news-single {
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-single {
    padding-block: 3.125rem 5.3125rem;
  }
}

.news-single__wrapper {
  padding-inline: 8.5714285714%;
}
@media screen and (max-width: 767px) {
  .news-single__wrapper {
    padding-inline: 0;
  }
}

.news-single__content {
  border: 1px solid #707070;
  padding: 2.9375rem 4.6875rem 6.9375rem 3.375rem;
}
@media screen and (max-width: 767px) {
  .news-single__content {
    padding: 1.25rem;
  }
}

.news-archive__row {
  align-items: center;
  display: flex;
}

.news-single__time {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .news-single__time {
    font-size: 0.875rem;
  }
}

.news-archive__tag {
  background-color: #1f46ab;
  border: 1px solid #1f46ab;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 1.25rem;
  min-width: 9.6875rem;
  padding-block: 0.4375rem;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .news-archive__tag {
    font-size: 0.875rem;
    margin-left: 0.625rem;
    min-width: 6.25rem;
    padding-block: 0.1875rem;
  }
}

.news-single__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.8125rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.news-single__media {
  display: flex;
  gap: 4.9514563107%;
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .news-single__media {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.news-single__tumbnail {
  width: 35.145631068%;
}
@media screen and (max-width: 767px) {
  .news-single__tumbnail {
    width: 100%;
  }
}

.news-single__dummy-image {
  align-items: center;
  background-color: #eee;
  display: flex;
  justify-content: center;
  padding: 6.25rem 3.125rem;
  width: 100%;
}

.news-single__block-editor {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.5;
  width: 59.9029126214%;
}
@media screen and (max-width: 767px) {
  .news-single__block-editor {
    font-size: 1rem;
    width: 100%;
  }
}
.news-single__block-editor .wp-block-gallery.has-nested-images {
  margin-block: 1.25rem;
}
.news-single__block-editor .wp-block-image {
  margin-block: 1.25rem;
}
.news-single__block-editor ul > li {
  padding-left: 1.5em;
  position: relative;
}
.news-single__block-editor ul > li::before {
  -webkit-transform: translateY(-50%);
  content: "⚫️";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.news-single__block-editor ol > li {
  list-style: decimal;
  list-style-position: inside;
}
.news-single__block-editor p + p {
  margin-top: 1.875rem;
}
.news-single__block-editor a {
  color: #eb500b;
  text-decoration: underline;
  word-break: break-all;
}
.news-single__block-editor a:hover {
  opacity: 0.8;
}

.news-single__pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__pagination {
    margin-top: 2.1875rem;
  }
}

.news-single__pagination-item a {
  transition: all 0.3s;
}
@media (hover: hover) {
  .news-single__pagination-item a:hover {
    color: #eb500b;
  }
}
.news-single__pagination-item--center {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-single__pagination-item--right {
  margin-left: auto;
}

.news-single__pagination-text {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .news-single__pagination-text {
    font-size: 0.875rem;
  }
}

.privacy-policy {
  padding-block: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy {
    padding-block: 5.3125rem;
  }
}

.privacy-policy__content {
  margin-inline: auto;
  max-width: 66rem;
}

.privacy-policy__title {
  font-size: 2.3125rem;
  font-weight: 700;
  margin-bottom: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .privacy-policy__title {
    font-size: 1.625rem;
    margin-bottom: 3.125rem;
  }
}

.privacy-policy__block {
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .privacy-policy__block {
    font-size: 1rem;
  }
}
.privacy-policy__block:not(:first-child) {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__block:not(:first-child) {
    margin-top: 2.1875rem;
  }
}
.privacy-policy__block ul {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .privacy-policy__block ul {
    margin-top: 2.1875rem;
  }
}
.privacy-policy__block li {
  padding-left: 2em;
  text-indent: -2em;
}

.entryform {
  padding-block: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .entryform {
    padding-block: 2rem;
  }
}
.entryform h2 {
  border-bottom: 5px solid #1F46AB;
  font-size: 1.25rem;
  margin-bottom: 2.4375rem;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .entryform h2 {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
.entryform h2 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .entryform h2 br {
    display: block;
  }
}
.entryform__lead {
  margin-bottom: 2.5rem;
}
.entryform__lead p {
  font-size: 1.25rem;
  font-weight: bold;
  padding-bottom: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .entryform__lead p {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 2rem;
  }
}
.entryform__lead .entryform__item {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .entryform__lead .entryform__item {
    align-items: baseline;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.entryform__profile {
  margin-bottom: 3.375rem;
}
.entryform__profile .entryform__item {
  align-items: center;
  display: flex;
  margin-bottom: 0.875rem;
}
@media screen and (max-width: 767px) {
  .entryform__profile .entryform__item {
    align-items: baseline;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.entryform__item {
  background-color: #F3F3F3;
  padding: 0 1rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .entryform__item {
    padding: 0.5rem 1rem;
  }
}
.entryform__item select {
  position: relative;
  width: 21.25rem;
}
@media screen and (max-width: 767px) {
  .entryform__item select {
    width: 100%;
  }
}
.entryform__item input[type=text],
.entryform__item input[type=email] {
  width: 26.875rem;
}
@media screen and (max-width: 767px) {
  .entryform__item input[type=text],
  .entryform__item input[type=email] {
    width: 100%;
  }
}
.entryform__item-name {
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0 0 0 1.5625rem;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .entryform__item-name {
    font-size: 1rem;
    padding: 1rem 0 1rem 0;
    width: 100%;
  }
}
.entryform__item-input {
  padding: 1.625rem 0 1.625rem 0;
}
.entryform__item-input.entry-type {
  position: relative;
}
.entryform__item-input.entry-type::after {
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 2px));
  border-bottom: 3px solid #c3c3c3;
  border-right: 3px solid #c3c3c3;
  content: "";
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(45deg) translateY(calc(-50% - 2px));
  width: 8px;
}
@media screen and (max-width: 767px) {
  .entryform__item-input.entry-type::after {
    -webkit-transform: rotate(45deg) translateY(calc(-50% - 15px));
    right: 30px;
    transform: rotate(45deg) translateY(calc(-50% - 15px));
  }
}
@media screen and (max-width: 767px) {
  .entryform__item-input {
    padding: 0 0 1rem 0;
    width: 100%;
  }
}
.entryform__item-input.textarea {
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .entryform__item-input.textarea {
    line-height: 1.7;
    padding: 1rem 0 1rem 0;
  }
}
.entryform__item-ex {
  font-size: 1rem;
  line-height: 1.8;
  padding-top: 0.625rem;
}
.entryform .entryform__item-input02 {
  align-self: flex-start;
  display: flex;
  padding: 2rem 0 0 1.0625rem;
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
}
@media screen and (max-width: 1023px) {
  .entryform .entryform__item-input02 {
    padding: 2rem 0 0 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .entryform .entryform__item-input02 {
    padding: 0 0 1rem 0;
  }
}
.entryform .entryform__item-input02 label {
  display: inline-block;
  padding: 0px 1.75rem 0px 0px;
  width: auto;
}
.entryform .entryform__item-input02 input[type=radio] + span {
  padding: 5px 0px 0px 35px;
}
@media screen and (max-width: 1023px) {
  .entryform .entryform__item-input02 input[type=radio] + span {
    padding: 4px 0px 0px 20px;
  }
}
@media screen and (max-width: 767px) {
  .entryform .entryform__item-input02 input[type=radio] + span {
    padding: 5px 0px 0px 35px;
  }
}
.entryform .entryform__item-input02 input[type=radio] + span:before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  content: "";
  height: 1.375em;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0.25em;
  width: 1.375em;
}
.entryform .entryform__item-input02 input[type=radio] + span:after {
  content: "";
  display: none;
}
.entryform .entryform__item-input02 input[type=radio]:checked + span:after {
  background: #1F46AB;
  border-radius: 50%;
  display: block;
  height: 1em;
  left: 0.2em;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0.45em;
  width: 1em;
}
.entryform__uploads {
  margin-bottom: 3.375rem;
}
.entryform__uploads .entryform__item {
  padding: 0 1.5625rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .entryform__uploads .entryform__item {
    padding: 0 1rem 0 1rem;
  }
}
.entryform__uploads .entryform__item .entryform__item-txt {
  font-size: 1.125rem;
  line-height: 1.8;
  padding: 1.5625rem 0 1.5625rem 0;
}
@media screen and (max-width: 767px) {
  .entryform__uploads .entryform__item .entryform__item-txt {
    font-size: 1rem;
  }
}
.entryform__uploads .entryform__item .entryform__item-uploads {
  align-items: center;
  display: flex;
}
.entryform__uploads .entryform__item .entryform__item-uploads-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 15px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entryform__uploads .entryform__item .entryform__item-uploads-item {
    flex-direction: column;
  }
}
.entryform__uploads .entryform__item .entryform__item-uploads p {
  padding: 0px 1.25rem 0px 0px;
}
.entryform .imgattached {
  align-items: center;
  background-color: #FFF;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0.625rem 0 0.625rem 1.875rem;
  position: relative;
  width: calc(50% - 0.75rem);
}
@media screen and (max-width: 767px) {
  .entryform .imgattached {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 0.625rem 0 0.625rem 0;
    width: 100%;
  }
}
.entryform .imgattached input[type=file] {
  display: none !important;
}
.entryform .imgattached label {
  background-color: #1F46AB;
  background-position: left 20px center, right 20px center;
  background-repeat: no-repeat;
  background-size: 29px auto, 12px auto;
  color: #FFF;
  cursor: pointer;
  font-size: 1.125rem;
  padding: 10px 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .entryform .imgattached label {
    margin: 0 1rem 0 1rem;
  }
}
.entryform .imgattached__name {
  width: 45%;
}
.entryform .imgattached label .mwform-file-delete {
  display: none;
}
.entryform .imgattached__status {
  color: #999999;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .entryform .imgattached__status {
    line-height: 1.7;
    padding: 0.625rem;
  }
}
.entryform .imgattached__delete {
  cursor: pointer;
  display: block;
  display: none;
  height: 42px;
  position: absolute;
  right: 0;
  top: 1.2rem;
  width: 100px;
}
.entryform .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.entryform .mw-wp-form_file {
  line-height: 1.7;
  margin-bottom: 0.625rem;
}
.entryform .at-txt {
  font-size: 1rem;
  padding-bottom: 30px;
  text-align: right;
}
.entryform__other {
  margin-bottom: 2.625rem;
}
.entryform__other .entryform__item-ex {
  padding: 2.5625rem 1.5625rem 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .entryform__other .entryform__item-ex {
    font-size: 0.8rem;
    line-height: 1.8;
    padding: 0.2rem 0 1rem 0;
  }
}
.entryform__other textarea {
  height: 16.875rem;
  margin: 0 1.5625rem 0 1.5625rem;
  width: calc(100% - 3.125rem);
}
@media screen and (max-width: 767px) {
  .entryform__other textarea {
    height: 12rem;
    margin: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .entryform .entryform__item-ex {
    font-size: 0.8rem;
    line-height: 1.8;
    padding: 0.2rem 0 1rem 0;
  }
}
.entryform__privacy {
  display: flex;
  font-size: 1.25rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .entryform__privacy {
    font-size: 1rem;
  }
}
.entryform__privacy-link {
  padding: 0px 1.25rem 0px 0px;
}
.entryform__privacy-link a {
  text-decoration: underline;
}
.entryform__btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 5.0625rem;
}
@media screen and (max-width: 767px) {
  .entryform__btn {
    margin-bottom: 3rem;
  }
}
.entryform__btn input[type=submit] {
  align-items: center;
  background-color: #FFF;
  border: 3px solid #EB500B;
  border-radius: 66px;
  color: #EB500B;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 24.75rem;
}
@media screen and (max-width: 767px) {
  .entryform__btn input[type=submit] {
    font-size: 1.1rem;
    padding-block: 1rem;
  }
}
.entryform__btn input[type=submit]:hover {
  background-color: #EB500B;
  color: #FFF;
}
.entryform__btn .back {
  align-items: center;
  background-color: #FFF;
  border: 3px solid #727272;
  border-radius: 66px;
  color: #333;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 24.75rem;
}
@media screen and (max-width: 767px) {
  .entryform__btn .back {
    font-size: 1.1rem;
    padding-block: 1rem;
  }
}
.entryform__btn .back:hover {
  background-color: #727272;
  color: #FFF;
}
.entryform .mw_wp_form .error {
  text-align: left;
}
.entryform .mw_wp_form_confirm .entryform__lead p,
.entryform .mw_wp_form_confirm .entryform__item-ex,
.entryform .mw_wp_form_confirm .entryform__uploads .entryform__item .entryform__item-txt,
.entryform .mw_wp_form_confirm .at-txt,
.entryform .mw_wp_form_confirm .entryform__privacy,
.entryform .mw_wp_form_confirm .imgattached__status,
.entryform .mw_wp_form_confirm .entryform__privacy,
.entryform .mw_wp_form_confirm .label-inner,
.entryform .mw_wp_form_confirm .entryform__item-input.entry-type::after {
  display: none;
}
.entryform .mw_wp_form_confirm .imgattached {
  margin-top: 1.25rem;
}
.entryform .mw_wp_form_confirm .entryform__item-input02 {
  -ms-grid-row-align: center;
  align-self: center;
  padding: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .entryform .mw_wp_form_confirm .entryform__item-input02 {
    -ms-grid-row-align: auto;
    align-self: auto;
    padding: 0 0 1rem 0;
  }
}
.entryform .mw_wp_form_confirm .entryform__item-input02 span::before {
  content: "（";
}
.entryform .mw_wp_form_confirm .entryform__item-input02 span::after {
  content: "）";
}
.entryform .entryform__privacy .error {
  display: inline-block;
  margin: 1rem 0 0 0.3125rem;
}

.recruit {
  margin: 0 auto;
  max-width: 88rem;
  padding-block: 6.3125rem;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-block: 3rem;
  }
}
.recruit__title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 5.125rem;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 1.625rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .recruit__tab-wrap {
    background-color: #EEE;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
.recruit__tab-neme {
  display: none;
}
@media screen and (max-width: 767px) {
  .recruit__tab-neme {
    border-bottom: solid 2px #1F46AB;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
  }
}
.recruit .tab-menu {
  width: 100%;
}
.recruit .tab-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .recruit .tab-links {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.recruit .tab-links li {
  font-size: 1.1875rem;
  margin: 0 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .recruit .tab-links li {
    font-size: 1rem;
    margin: 0px 0px 1rem 0px;
  }
}
.recruit .tab-links a {
  background: #fff;
  border: 3px solid #1F46AB;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  color: #333;
  display: block;
  padding: 1.4375rem 1.1875rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .recruit .tab-links a {
    border-bottom: 5px solid #1F46AB;
    border-radius: 8px;
    padding: 1.1875rem 1.1875rem;
    text-align: center;
  }
}
.recruit .tab-links a:hover,
.recruit .tab-links .active a {
  background: #1F46AB;
  color: #FFF;
}
.recruit .tab-content {
  border-top: 4px solid #1F46AB;
  padding-top: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .recruit .tab-content {
    border-top: 0;
    padding-top: 3rem;
  }
}
.recruit .tab-content .tab {
  display: none;
}
.recruit .tab-content .tab.active {
  display: block;
}
.recruit #tab1::before,
.recruit #tab2::before,
.recruit #tab3::before {
  content: "";
  display: block;
  height: 7.5rem;
  margin-top: -7.5rem;
}
@media screen and (max-width: 767px) {
  .recruit #tab1::before,
  .recruit #tab2::before,
  .recruit #tab3::before {
    height: 1rem;
    margin-top: -1rem;
  }
}
.recruit__description {
  display: flex;
  margin-bottom: 3.9375rem;
}
@media screen and (max-width: 767px) {
  .recruit__description {
    flex-direction: column;
    flex-wrap: wrap;
    line-height: 1.7;
  }
}
.recruit__description-txt {
  font-size: 1.25rem;
  line-height: 2;
  padding-right: 5.875rem;
}
@media screen and (max-width: 767px) {
  .recruit__description-txt {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    padding-right: 0;
  }
}
.recruit__description-contact h3 {
  font-size: 1.75rem;
  margin-bottom: calc(20px + 2rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit__description-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 3.75rem;
  }
}
.recruit__description-contact h3::after {
  background-color: #1F46AB;
  bottom: -1.25rem;
  content: "";
  display: inline-block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 230px;
}
.recruit__description-contact p {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .recruit__description-contact p {
    font-size: 1rem;
    margin-top: 2.5rem;
  }
}
.recruit__description-contact p em {
  font-family: sans-serif;
  font-size: 2.25rem;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .recruit__description-contact p em {
    font-size: 1.6rem;
  }
}
.recruit__description-contact p em a {
  font-weight: 600;
}
.recruit__contents h3 {
  background-color: #1F46AB;
  color: #FFF;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 2.8125rem;
  padding: 0.625rem 1.4375rem 0.625rem 1.4375rem;
}
@media screen and (max-width: 767px) {
  .recruit__contents h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}
.recruit__item {
  align-items: baseline;
  border-bottom: 2px solid #1F46AB;
  display: flex;
  margin: 0 1.75rem 2.3125rem 1.75rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .recruit__item {
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 0 2.3125rem 0;
    padding-bottom: 2rem;
  }
}
.recruit__item:last-of-type {
  border-bottom: 0;
}
.recruit__item:nth-of-type(3) {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .recruit__item:nth-of-type(3) {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.recruit__item-name {
  font-size: 1.25rem;
  font-weight: bold;
  width: 150px;
}
@media screen and (max-width: 767px) {
  .recruit__item-name {
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
    width: 100%;
  }
}
.recruit__item-txt {
  width: calc(100% - 150px);
}
@media screen and (max-width: 767px) {
  .recruit__item-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit__item-txt .overview__line:first-child {
    margin-top: 0;
  }
}
.recruit__item-txt .overview__line {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .recruit__item-txt .overview__line {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.recruit__item-txt .overview__line:nth-of-type(1) {
  margin-top: 0;
}
.recruit__item-txt .overview__table {
  margin-bottom: 1rem;
  max-width: 53rem;
}
@media screen and (max-width: 767px) {
  .recruit__item-txt .overview__table {
    margin-top: 1.1rem;
  }
}
.recruit__item-txt .overview__table dl {
  max-width: 49.375rem;
}
.recruit__item-txt .overview__table dt {
  border-bottom: solid 5px #1F46AB;
  line-height: 1.3;
  padding-bottom: 0.6rem;
  width: 6.875rem;
}
.recruit__item-txt .overview__table dd {
  padding-bottom: 0.6rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit__item-txt .overview__table dd {
    padding-left: 0;
  }
}
.recruit__item-txt .overview__table dt,
.recruit__item-txt .overview__table dd {
  font-size: 1.125rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .recruit__item-txt .overview__table dt,
  .recruit__item-txt .overview__table dd {
    font-size: 1rem;
  }
}
.recruit__item-txt p {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .recruit__item-txt p {
    font-size: 0.95rem;
  }
}
.recruit__item-txt p em {
  font-style: normal;
  font-weight: bold;
}
.recruit__item-txt p span {
  text-decoration: underline;
}
.recruit__btn {
  display: flex;
  justify-content: center;
}
.recruit__btn p {
  width: 24.75rem;
}
.recruit__btn a {
  align-items: center;
  border: 3px solid #EB500B;
  border-radius: 66px;
  color: #EB500B;
  display: inline-flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.1363636364;
  padding-block: 2rem;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit__btn a {
    font-size: 1.25rem;
  }
}
.recruit__btn a:hover {
  background-color: #EB500B;
  color: #FFF;
}

.site-map {
  padding-block: 7.1875rem 6.5625rem;
}
@media screen and (max-width: 767px) {
  .site-map {
    padding-block: 1.875rem 5.3125rem;
  }
}

.site-map__block {
  border-bottom: 2px solid #0081BF;
  display: flex;
  padding-block: 1.875rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .site-map__block {
    flex-direction: column;
    padding-block: 1.875rem;
  }
}

.site-map__title {
  font-size: 1.5625rem;
  font-weight: 700;
  padding-block: 1.3125rem 1.375rem;
  width: 25.7142857143%;
}
@media screen and (max-width: 767px) {
  .site-map__title {
    font-size: 1.375rem;
    padding-block: 0.9375rem 0.625rem;
    width: 100%;
  }
}

.site-map__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 74.2857142857%;
}
@media screen and (max-width: 767px) {
  .site-map__list {
    gap: 0.625rem 1.25rem;
    width: 100%;
  }
}
.site-map__list--column-4 {
  width: 100%;
}
.site-map__list--column-4 .site-map__item {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .site-map__list--column-4 .site-map__item {
    width: calc((100% - 20px) / 2);
  }
}

.site-map__item {
  font-size: 1rem;
  line-height: 1.5625;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .site-map__item {
    font-size: 0.875rem;
    width: calc((100% - 20px) / 2);
  }
}
.site-map__item a {
  display: block;
  padding: 1.375rem 1.9375rem 1.375rem 1.0625rem;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .site-map__item a {
    padding: 0.9375rem 0;
  }
}
.site-map__item a::after {
  -webkit-transform: translateY(-50%);
  background: url(../img/site-map/site-map-arrow.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  right: 1.9375rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
  width: 9px;
}
@media screen and (max-width: 767px) {
  .site-map__item a::after {
    right: 0;
  }
}
@media (hover: hover) {
  .site-map__item a:hover {
    color: #0081BF;
  }
  .site-map__item a:hover::after {
    -webkit-transform: translate(5px, -50%);
    transform: translate(5px, -50%);
    transition: all 0.5s;
  }
}

.top-about {
  margin-block: 5.625rem 5rem;
}
@media screen and (max-width: 767px) {
  .top-about {
    margin-block: 3.75rem;
  }
}

.top-about__lists {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1875rem 0;
  justify-content: space-between;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-about__lists {
    gap: 0.625rem;
  }
}

.top-about__list {
  width: 24%;
}
.top-about__list--overview {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .top-about__list:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-about__list:nth-child(2), .top-about__list:nth-child(4), .top-about__list:nth-child(3), .top-about__list:nth-child(5), .top-about__list:nth-child(7), .top-about__list:nth-child(6) {
    width: calc((100% - 10px) / 2);
  }
}
.top-about__list a {
  display: flex;
  height: 100%;
  position: relative;
  transition: opacity 0.3s;
}
.top-about__list a::before {
  background-color: rgba(0, 0, 0, 0.36);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
@media (hover: hover) {
  .top-about__list a:hover {
    opacity: 0.6;
  }
}

.top-about-list__thumbnail img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.top-about-list__text {
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
  display: block;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.2em;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.top-about-list__text--small {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .top-about-list__text--small {
    font-size: 14px;
  }
}
.top-about-list__text--large {
  font-size: 1.875rem;
}
@media screen and (max-width: 1023px) {
  .top-about-list__text--large {
    font-size: 20px;
  }
}

.top-achievement {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-achievement {
    margin-top: 3.75rem;
  }
}

.top-achievement__lists {
  -ms-grid-columns: 1fr 14.4375rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 14.4375rem;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  margin-top: 4.6875rem;
  width: 73.75rem;
}
@media screen and (max-width: 1023px) {
  .top-achievement__lists {
    gap: 9.375rem;
  }
}
@media screen and (max-width: 767px) {
  .top-achievement__lists {
    -ms-grid-columns: 1fr;
    gap: 3.125rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3.3125rem;
    width: 100%;
  }
}

.top-achievement__list {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  width: 29.625rem;
}
@media screen and (max-width: 1023px) {
  .top-achievement__list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-achievement__list {
    margin-inline: auto;
    width: 100%;
  }
}

.top-achievement__head {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-achievement__head {
    margin-top: 1.0625rem;
  }
}

.top-achievement__title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.36;
}
@media screen and (max-width: 1023px) {
  .top-achievement__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-achievement__title {
    font-size: 1.25rem;
    margin-inline: auto;
    text-align: center;
    width: 85%;
  }
}

.top-achievement__text {
  font-size: 1rem;
  line-height: 1.5625;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 1439px) {
  .top-achievement__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-achievement__text {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .top-achievement__img {
    margin-inline: auto;
    width: 66%;
  }
}

/* オレンジのテキストの上下にあるテキスト
------------------------------------------ */
.anime-wrapper {
  display: inline-block;
  overflow: hidden;
}

.anime-delay-02 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.slideAnimeTextDownUp {
  -webkit-animation-name: slideTextY100;
  -webkit-animation-duration: 1s;
  -webkit-animation-delay: 1.6s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-delay: 1.6s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-name: slideTextY100;
  animation-timing-function: ease-in-out;
  display: inline-block;
  line-height: 1.1;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    -webkit-transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
    transform: translateY(0);
  }
}
/* オレンジのテキスト 
------------------------------------------ */
.slideAnimeTextFadeInLeft {
  -webkit-animation-name: slideAnimeTextFadeInLeft;
  -webkit-animation-duration: 0.8s;
  -webkit-animation-delay: 2.7s;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 2.7s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-name: slideAnimeTextFadeInLeft;
  opacity: 0;
}

@-webkit-keyframes slideAnimeTextFadeInLeft {
  from {
    -webkit-transform: translateX(-160px);
    opacity: 0;
    transform: translateX(-160px);
    visibility: hidden;
  }
  to {
    -webkit-transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes slideAnimeTextFadeInLeft {
  from {
    -webkit-transform: translateX(-160px);
    opacity: 0;
    transform: translateX(-160px);
    visibility: hidden;
  }
  to {
    -webkit-transform: translateX(0);
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
}
/* ファーストビジュアル画像
------------------------------------------ */
.slideAnimeImageDownUp {
  -webkit-animation-name: slideAnimeImageDownUp;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-name: slideAnimeImageDownUp;
  animation-timing-function: ease-in-out;
  opacity: 0;
}

@-webkit-keyframes slideAnimeImageDownUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideAnimeImageDownUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-corporation {
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .top-corporation {
    margin-top: 3.75rem;
  }
}

.top-corporation__lists {
  -ms-grid-columns: 1fr 1.5625rem 1fr 1.5625rem 1fr 1.5625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 1.25rem 1.5625rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .top-corporation__lists {
    -ms-grid-columns: 1fr 0.9375rem 1fr;
    gap: 0.625rem 0.9375rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
  }
}

.top-corporation-list {
  border: 1px solid #707070;
  border-radius: 5px;
  display: flex;
}
.top-corporation-list a {
  display: flex;
  flex-direction: column;
  padding: 2.1875rem 1.5625rem 2.8125rem;
  position: relative;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .top-corporation-list a {
    padding: 1.25rem;
  }
}
.top-corporation-list a::after {
  -webkit-transform: translateX(-50%);
  background: url(../img/icon/under-arrow-blue.svg) no-repeat center center/contain;
  bottom: 1.75rem;
  content: "";
  display: block;
  height: 1.0625rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.4s;
  width: 1.75rem;
}
@media screen and (max-width: 767px) {
  .top-corporation-list a::after {
    bottom: 1.25rem;
    height: 0.75rem;
    width: 1.25rem;
  }
}
@media (hover: hover) {
  .top-corporation-list a:hover {
    opacity: 0.6;
  }
  .top-corporation-list a:hover::after {
    -webkit-transform: translateX(-50%) rotate(-90deg);
    transform: translateX(-50%) rotate(-90deg);
  }
}

.top-corporation-list__text {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5625rem;
  margin-top: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-corporation-list__text {
    font-size: 1rem;
  }
}

.top-corporation-banner {
  margin-top: 2rem;
}

.top-customer {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-customer {
    margin-top: 3.75rem;
  }
}

.top-customer__lists {
  -ms-grid-columns: 1fr 2.1875rem 1fr 2.1875rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 2.1875rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-customer__lists {
    -ms-grid-columns: 1fr;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.25rem;
  }
}

.top-customer__list a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .top-customer__list a:hover {
    opacity: 0.6;
  }
}

.top-fv {
  margin-top: 5.875rem;
}
@media screen and (max-width: 767px) {
  .top-fv {
    margin-top: 3.125rem;
  }
}

.top-fv__media {
  margin-left: auto;
  max-width: 2080px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-fv__media {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}

.top-fv-title > img {
  width: 92%;
}

.top-fv__block {
  -webkit-transform: translateY(-50%);
  padding-left: 6.25vw;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 57.8125%;
}
@media screen and (max-width: 1023px) {
  .top-fv__block {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .top-fv__block {
    width: 100%;
  }
}

.top-fv-title__normal {
  display: block;
  font-size: 1.6875rem;
  font-weight: 700;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-fv-title__normal {
    color: #fff;
    font-size: clamp(1.125rem, 1.035rem + 0.45vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.9375rem;
  }
}

.top-fv-title__strong {
  color: #EB500B;
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 8.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top-fv-title__strong {
    color: #ED6D00;
    display: none;
    font-size: clamp(50px, 14.6vw, 99px);
  }
}

.top-fv__text {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: clamp(17px, 2.25vw, 57px);
  line-height: 1.6976744186;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-fv__text {
    color: #fff;
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.36;
  }
}

.top-fv__img {
  margin-left: auto;
  position: relative;
  width: 61.25%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-fv__img {
    height: 36.8125rem;
    width: 100%;
  }
}
.top-fv__img img {
  border-radius: 0 0 0 50px;
}
@media screen and (max-width: 767px) {
  .top-fv__img img {
    -o-object-fit: cover;
    border-radius: 0;
    height: 100%;
    object-fit: cover;
  }
}

.top-industry {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-industry {
    margin-top: 3.75rem;
  }
}

.top-industry__lists {
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 2rem 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .top-industry__lists {
    -ms-grid-columns: 1fr 0 1fr 0 1fr;
    gap: 3rem 0;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .top-industry__lists {
    display: none;
  }
}
.top-industry__lists::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.top-industry__lists::after {
  background-color: #DFEEF5;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  margin-inline: calc(50% - 50vw);
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .top-industry__lists::after {
    background-color: unset;
  }
}

.top-industry__lists--mobile {
  background-color: #fff;
  display: none;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-industry__lists--mobile {
    -ms-grid-columns: (1fr)[2];
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }
}

.top-industry-list a {
  display: block;
  position: relative;
}
@media (hover: hover) {
  .top-industry-list a:hover .top-industry-list__thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .top-industry-list a:hover .top-industry-list__category::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.top-industry-list__block {
  position: relative;
}

.top-industry-list__thumbnail {
  aspect-ratio: 1/0.704;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-industry-list__thumbnail img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 100%;
}
.top-industry-list__thumbnail::before {
  background-color: rgba(51, 51, 51, 0.27);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s ease-in-out;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-industry-list__thumbnail::before {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.top-industry-list__category {
  -webkit-transform: translate(-50%, -50%);
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  transition-delay: 0.4s;
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .top-industry-list__category {
    opacity: 1;
  }
}
.top-industry-list__category::after {
  background: url(../img/icon/under-arrow-white.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.8125rem;
  margin-top: 1.125rem;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 1.3125rem;
}

.top-industry-list__text {
  font-size: 1rem;
  line-height: 1.5625;
  padding: 0.5rem 2rem 0;
}
@media screen and (max-width: 1023px) {
  .top-industry-list__text {
    font-size: 14px;
    padding: 16px 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .top-industry-list__text {
    font-size: 0.875rem;
    padding: 1.25rem 0.9375rem 0;
  }
}

.top-introduction {
  margin-top: 3.75rem;
}

.top-introduction__lists {
  -ms-grid-columns: 1fr 0.625rem 1fr 0.625rem 1fr 0.625rem 1fr 0.625rem 1fr;
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem 0.625rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top-introduction__lists {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-jbqc {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .top-jbqc {
    margin-top: 2.875rem;
  }
}

.top-jbqc__media {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-jbqc__media {
    align-items: initial;
    flex-direction: column-reverse;
    position: relative;
  }
}

.top-jbqc-imgBox {
  margin-left: -4.6875%;
  overflow: hidden;
  position: relative;
  width: 51.875%;
}
@media screen and (max-width: 767px) {
  .top-jbqc-imgBox {
    margin-left: -4.3125rem;
    width: 66.9333333333%;
  }
}

@media screen and (max-width: 767px) {
  .top-jbqc-imgBox__img {
    position: relative;
  }
  .top-jbqc-imgBox__img::before {
    background-color: #333333;
    border-radius: 6%;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.25;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
  }
}

.top-jbqc-imgBox__img > img {
  aspect-ratio: 1/0.825;
}
@media screen and (max-width: 767px) {
  .top-jbqc-imgBox__img > img {
    aspect-ratio: 1/0.637;
  }
}

.top-jbqc-imgBox__text {
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 4.875rem;
  font-weight: 900;
  left: 6.25vw;
  position: absolute;
  top: 21.4375rem;
}
@media screen and (max-width: 767px) {
  .top-jbqc-imgBox__text {
    -webkit-transform: translateY(-50%);
    font-size: clamp(1.5rem, -0.538rem + 8.7vw, 3.625rem);
    left: 6.625rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
}

.top-jbqc__block {
  margin-left: 2.5%;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top-jbqc__block {
    margin: 1.6rem auto 0;
    max-width: 37.5rem;
    padding-inline: 20px;
    width: 100%;
  }
}

.top-jbqc__title-container {
  align-items: center;
  display: flex;
  gap: 1.125rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .top-jbqc__title-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    left: 52%;
    position: absolute;
    top: 0%;
  }
}

.top-jbqc__title {
  font-family: "Noto Sans", sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-jbqc__title {
    font-size: clamp(3.75rem, 1.952rem + 7.67vw, 5.625rem);
  }
}

.top-section-head__textBlue {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 1023px) {
  .top-section-head__textBlue {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__textBlue {
    font-size: 18px;
  }
}

.top-jbqc__text-sub {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
}
@media screen and (max-width: 1023px) {
  .top-jbqc__text-sub {
    font-size: 14px;
  }
}

.top-jbqc__text {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-jbqc__text {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4210526316;
    text-align: center;
  }
}

.top-jbqc-list {
  margin-top: 3.75rem;
  padding-left: 3.125%;
}
@media screen and (max-width: 767px) {
  .top-jbqc-list {
    margin-top: 1.6rem;
    padding-left: 0;
  }
}

.top-jbqc-list__row {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .top-jbqc-list__row {
    align-items: unset;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.top-jbqc-list__row:not(:last-child) {
  border-bottom: 1px solid #707070;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-jbqc-list__row:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}
.top-jbqc-list__row:not(:first-child) {
  margin-top: 1.5rem;
}

.top-jbqc-list__title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.36;
  width: 45%;
}
@media screen and (max-width: 1023px) {
  .top-jbqc-list__title {
    font-size: 18px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-jbqc-list__title {
    font-size: 16px;
  }
}

.top-jbqc-list__desc {
  font-size: 1rem;
  line-height: 1.5625;
  margin-left: 1.8%;
  width: 48%;
}
@media screen and (max-width: 1023px) {
  .top-jbqc-list__desc {
    font-size: 14px;
    margin-left: 0;
    width: 100%;
  }
}

.top-news {
  margin-top: 9.0625rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    margin-top: 3.75rem;
  }
}

.top-news__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    display: block;
  }
}

.top-news__head {
  width: 24%;
}
@media screen and (max-width: 1023px) {
  .top-news__head {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .top-news__head {
    width: 100%;
  }
}

.top-news__more a {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  margin-top: 1.5625rem;
  transition: color 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .top-news__more a {
    font-size: 0.875rem;
    margin-top: 1.125rem;
  }
}
.top-news__more a::after {
  background: url(../img/icon/under-arrow-blue.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 0.8125rem;
  margin-left: 1.0625rem;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .top-news__more a::after {
    -webkit-transform: rotate(-90deg);
    height: 0.5625rem;
    margin-left: 0.75rem;
    margin-top: 0.125rem;
    transform: rotate(-90deg);
    width: 0.9375rem;
  }
}
@media (hover: hover) {
  .top-news__more a:hover {
    color: #1F46AB;
  }
  .top-news__more a:hover::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.top-news__lists {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .top-news__lists {
    margin-left: 0;
    margin-top: 2.5rem;
    width: 100%;
  }
}

.top-news-list:not(:first-child) {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 1023px) {
  .top-news-list:not(:first-child) {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top-news-list:not(:first-child) {
    margin-top: 2.5rem;
  }
}
.top-news-list a {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-news-list a {
    gap: 0.8rem;
  }
}
@media (hover: hover) {
  .top-news-list a:hover .top-news-list__content,
  .top-news-list a:hover .top-news-list__title {
    color: #1F46AB;
    text-decoration: underline;
  }
  .top-news-list a:hover .top-news-list__content::before,
  .top-news-list a:hover .top-news-list__title::before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.top-news-list__block {
  margin-left: 1.875rem;
  width: 68%;
}
@media screen and (max-width: 767px) {
  .top-news-list__block {
    margin-left: 0;
    width: 75%;
  }
}

.top-news-list__row {
  align-items: center;
  display: flex;
}

.top-news-list__date {
  flex-shrink: 0;
  font-size: 1.125rem;
  transition: color 0.3s;
}
@media screen and (max-width: 1023px) {
  .top-news-list__date {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-news-list__date {
    font-size: 0.875rem;
  }
}

.top-news-list__tag {
  background-color: #1F46AB;
  border: 1px solid #1F46AB;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 1.25rem;
  min-width: 9.6875rem;
  padding-block: 0.4375rem;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .top-news-list__tag {
    font-size: 0.6875rem;
    margin-left: 0.625rem;
    min-width: 6.25rem;
    padding-block: 0.1875rem;
  }
}

.top-news-list__title {
  font-size: 1.6rem;
  margin-top: 1.125rem;
  text-decoration: underline;
  transition: color 0.3s;
}
@media screen and (max-width: 1023px) {
  .top-news-list__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-news-list__title {
    font-size: 1rem;
    margin-top: 0.6rem;
  }
}

.top-news-list__content {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0.9375rem;
  position: relative;
  transition: color 0.3s;
}
@media screen and (max-width: 1023px) {
  .top-news-list__content {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .top-news-list__content {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
}
.top-news-list__content::before {
  background: url(../img/icon/under-arrow-blue_sub.svg) no-repeat center center/contain;
  bottom: -1.875rem;
  content: "";
  display: block;
  height: 0.8125rem;
  left: 0;
  position: absolute;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .top-news-list__content::before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top-news-list__tumbnail-container {
    width: 30%;
  }
}

.top-news-list__tumbnail {
  border: 1px solid #EEEEEE;
  max-width: 15.75rem;
}
.top-news-list__tumbnail > img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.top-news-list__dummy-image {
  align-items: center;
  background-color: #eee;
  display: flex;
  justify-content: center;
  padding: 4.6875rem 3.125rem;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .top-news-list__dummy-image {
    aspect-ratio: 1/0.765;
    height: 100%;
    padding: unset;
  }
}
.top-news-list__dummy-image > img {
  width: 90%;
}

/* トップ 共通
------------------------------------------ */
.top-section-head--sub .top-section-head__text {
  margin-bottom: 0.9375rem;
}

.top-section-head__title {
  font-size: 2.3125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-section-head__title {
    font-size: 1.875rem;
    position: relative;
  }
  .top-section-head__title::before {
    background-color: #DFEEF5;
    content: "";
    display: block;
    height: 100%;
    left: -10%;
    position: absolute;
    top: 0;
    width: 0.8125rem;
  }
}

.top-section-head__text {
  display: block;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .top-section-head__text {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__text {
    font-size: 1.875rem;
  }
}

.top-section-head__textSmall {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .top-section-head__textSmall {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__textSmall {
    font-size: 1.125rem;
  }
}

.top-section-head__textBlue {
  color: #1F46AB;
  display: block;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .top-section-head__textBlue {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__textBlue {
    font-size: 1.125rem;
  }
}

.top-section-head__desc {
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .top-section-head__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-section-head__desc {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
/*# sourceMappingURL=sourcemaps/styles.css.map */