@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.7;
  color: #333333;
  min-width: 375px;
  width: 100%;
  letter-spacing: 0;
}

body.fixed {
  overflow: hidden;
}

@media screen and (max-width: 985px) {
  .visible-pc {
    display: none;
  }
}

.visible-sp {
  display: none;
}
@media screen and (max-width: 985px) {
  .visible-sp {
    display: block;
  }
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[data-width=full] {
  grid-column: span 3; /* 3列全てを使用 */
}
@media screen and (max-width: 985px) {
  [data-width=full] {
    grid-column: auto;
  }
}

[data-width=half] {
  grid-column: span 2; /* 2列を使用 */
}
@media screen and (max-width: 985px) {
  [data-width=half] {
    grid-column: auto;
  }
}

[data-width=full-pc] {
  grid-column: span 3; /* 3列全てを使用 */
}

[data-width=half-pc] {
  grid-column: span 2; /* 2列を使用 */
}

[data-height=full] {
  grid-row: span 3; /* 3行全てを使用 */
}

[data-height=half] {
  grid-row: span 2; /* 2行を使用 */
}

[data-scroll] {
  overflow-x: scroll;
}
[data-scroll] ::-webkit-scrollbar {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.l-footer__container {
  background-color: #F5F5F5;
  padding: 0 10px;
  padding-top: 80px;
  padding-bottom: 108px;
}

.l-footer__grid-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  place-items: start;
  grid-template-columns: repeat(5, auto);
  grid-auto-columns: min-content;
}
@media screen and (max-width: 985px) {
  .l-footer__grid-wrapper {
    grid-template-columns: repeat(2, auto);
    row-gap: 20px;
    place-items: start center;
  }
}

.l-footer__lists {
  display: grid;
  gap: 16px;
}
.l-footer__lists:nth-child(3) {
  transform: translateX(-20px);
}
.l-footer__lists:nth-child(4) {
  transform: translateX(-15px);
}
.l-footer__lists:nth-child(5) {
  transform: translateX(-5px);
}
@media screen and (max-width: 985px) {
  .l-footer__lists:nth-child(3) {
    transform: translateX(0);
  }
  .l-footer__lists:nth-child(4) {
    transform: translateX(0);
  }
  .l-footer__lists:nth-child(5) {
    transform: translateX(0);
  }
}

.l-footer__list {
  font-size: 1.4rem;
  line-height: 16px;
}

.l-footer__list-heading {
  font-size: 1.8rem;
  font-weight: 700;
}

.l-footer__sub-lists {
  margin-top: 8px;
  padding-left: 12px;
  margin-bottom: 10px;
  border-left: 1px solid #DDDDDD;
  display: grid;
  gap: 12px;
}

.l-footer__lists-heading {
  gap: 24px;
}

.l-footer__product-list {
  display: flex;
  gap: 24px;
}

.l-footer__category-lists {
  display: grid;
  gap: 16px;
}

.l-footer__scene-lists {
  display: grid;
  grid-auto-rows: max-content;
  gap: 16px;
}

.l-footer__bottom-wrapper {
  background-color: #333333;
  height: 112px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 985px) {
  .l-footer__bottom-wrapper {
    height: auto;
    padding: 10px;
  }
}

.l-footer__bottom-container {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
@media screen and (max-width: 985px) {
  .l-footer__bottom-container {
    grid-template-columns: 100%;
    place-items: center;
    row-gap: 20px;
  }
}

.l-footer__bottom-lists {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 1.4rem;
}
@media screen and (max-width: 985px) {
  .l-footer__bottom-lists {
    gap: 10px;
  }
}

.l-footer__logo-wrapper {
  display: grid;
  place-items: end;
  transform: translate(1px, -3px);
  gap: 5px;
}

.l-header {
  width: 100%;
  position: fixed;
  height: 80px;
  z-index: 4;
  background-color: #fff;
  top: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 985px) {
  .l-header {
    height: 50px;
  }
}
.l-header[data-not-home] {
  border-bottom: 1px solid #909090;
}

.l-header__container {
  display: grid;
  grid-template-columns: 224px 1fr;
  place-items: center end;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  gap: 19.1%;
  transition: all 0.3s;
}
@media screen and (max-width: 1350px) {
  .l-header__container {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
    gap: 10px;
  }
}
@media screen and (max-width: 985px) {
  .l-header__container {
    width: 100%;
  }
}

.l-header__logo-wrapper {
  width: 100%;
}
.l-header__logo-wrapper svg {
  transform: translateY(-5px);
}
@media screen and (max-width: 985px) {
  .l-header__logo-wrapper {
    padding-left: 10%;
  }
}

.l-header__logo-text {
  color: #333333;
  font-size: 14px;
  line-height: 14px;
}

.l-header__nav-wrapper {
  width: 100%;
}

.l-header__nav-lists {
  display: grid;
  place-items: center start;
  grid-template-columns: 80px 90px 70px 80px 120px 90px 73px;
  gap: 23px;
}
@media screen and (max-width: 1350px) {
  .l-header__nav-lists {
    font-size: 1.4rem;
    gap: 15px;
  }
}

.l-header__nav-list {
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
.l-header__nav-list:hover {
  color: #075B98;
  animation: fadeIn 0.3s ease-in-out;
}
.l-header__nav-list:nth-child(-n+4) {
  grid-template-columns: repeat(2, auto);
  gap: 5px;
  position: relative;
}
.l-header__nav-list:nth-child(-n+4).active {
  color: #fff;
}
.l-header__nav-list:nth-child(-n+4).active::before {
  content: url(/assets/image/component/header-item-bg.webp);
  position: absolute;
  animation: fadeIn 0.3s ease-in-out;
  z-index: -1;
  transform: translate(5px, 5px);
}
.l-header__nav-list:nth-child(-n+4).active::after {
  content: url(/assets/image/component/white-arrow.svg);
}
.l-header__nav-list:nth-child(-n+4)::after {
  content: url(/assets/image/component/header-arrow.svg);
  position: absolute;
  right: -10px;
}
.l-header__nav-list:last-child {
  margin-left: 25px;
  position: relative;
}
.l-header__nav-list:last-child::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  position: absolute;
  background-color: #DDDDDD;
  left: -25px;
}

.l-header__svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.l-header__nav-button {
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  line-height: 16px;
}
.l-header__nav-button.active::after {
  content: url(/assets/image/component/nav-on.svg);
  position: absolute;
  transform: translate(1px, 3px);
}

.l-header__info-wrapper {
  width: 100%;
  padding: 48px 0;
  background-color: rgba(255, 255, 255, 0.92);
  position: absolute;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.l-header__info-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.l-header__info-container {
  display: grid;
  place-items: start;
  grid-template-columns: auto 1fr;
  width: 82.86%;
  margin: 0 auto;
  column-gap: 5.3%;
  row-gap: 10px;
}
@media screen and (max-width: 1350px) {
  .l-header__info-container {
    width: 95%;
  }
}
@media screen and (max-width: 985px) {
  .l-header__info-container {
    width: 100%;
  }
}

.l-header__info-heading-container {
  border-bottom: 2px solid #075B98;
  display: grid;
  place-items: center start;
  grid-template-columns: repeat(2, auto);
  gap: 32px;
  transform: translateY(-6px);
}

.l-header__info-heading {
  font-weight: bold;
  font-size: 3.2rem;
}

.l-header__info-heading-span {
  color: #075B98;
  font-weight: bold;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, auto);
  gap: 5px;
  transform: translateY(8px);
}
.l-header__info-heading-span::after {
  content: url(/assets/image/component/right-arrow.svg);
  margin-top: 3px;
}

.l-header__info-content-lists {
  display: grid;
  place-items: start;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  row-gap: 5px;
  margin-top: 10px;
}

.l-header__info-content-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 5px;
  font-size: 14px;
}
.l-header__info-content-list::before {
  content: url(/assets/image/component/arrow_forward_ios.svg);
}

.l-header__info-category-lists {
  display: grid;
  place-items: center start;
  grid-template-columns: repeat(4, auto);
  gap: 12px;
  grid-row: span 2;
}

.l-header__info-category-list {
  display: grid;
  place-items: center start;
  gap: 5px;
  border-radius: 4px;
  border: 1px solid #075B98;
  background: rgba(7, 91, 152, 0.16);
  width: 168px;
  height: 120px;
  grid-template-columns: 16px auto;
  padding: 8px;
  font-size: 1.4rem;
}
.l-header__info-category-list::before {
  content: url(/assets/image/component/right-arrow.svg);
  margin-top: 5px;
}
@media screen and (max-width: 1350px) {
  .l-header__info-category-list {
    width: 120px;
  }
}

.l-header__search-wrapper {
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.92);
  position: absolute;
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.l-header__search-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.l-header__search-container {
  display: grid;
  place-items: center;
}

.l-header__search-form {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, auto);
}

.l-header__search-input {
  width: 600px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #075B98;
  background: #fff;
  position: relative;
  top: 16px;
  padding: 15px;
}

.l-header__search-button {
  background-color: #075B98;
  width: 112px;
  height: 48px;
  color: #fff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: absolute;
  top: 16px;
  transform: translateX(245px);
}
.l-header__search-button::before {
  content: url(/assets/image/component/search.svg);
  transform: translate(-5px, 3px);
}

@media screen and (max-width: 985px) {
  .l-header__hamburger-btn-wrapper {
    grid-area: 1/4/2/5;
  }
  .l-header__hamburger-btn-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 50px;
    background: #075B98;
  }
  .l-header__hamburger-btn-wrapper.open::after {
    background: #909090;
  }
}

@media screen and (max-width: 985px) {
  .l-header__hamburger-btn {
    z-index: 1;
    background-color: transparent;
    background-image: linear-base(to right, #fff, #fff);
    background-position: center;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    border: 0;
    color: transparent;
    cursor: pointer;
    font-size: 0;
    height: 20px;
    padding: 0;
    position: relative;
    transition: transform 0.2s;
    width: 28px;
    margin-right: 16px;
  }
  .l-header__hamburger-btn::before, .l-header__hamburger-btn::after {
    background: #fff;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 100%;
  }
  .l-header__hamburger-btn::before {
    top: 0;
  }
  .l-header__hamburger-btn::after {
    bottom: 0;
  }
  .l-header__hamburger-btn.open {
    transform: rotate(360deg);
    background: none;
  }
  .l-header__hamburger-btn.open::before {
    top: auto;
    transform: rotate(-45deg);
  }
  .l-header__hamburger-btn.open::after {
    bottom: auto;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 985px) {
  .l-header__hamburger-menu {
    opacity: 0;
    display: none;
  }
  .l-header__hamburger-menu.active {
    opacity: 1;
    display: block;
    position: fixed;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #075B98;
    z-index: 1;
    padding-top: 40px;
    animation: fadeIn 0.5s ease-in-out;
    color: #fff;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}

@media screen and (max-width: 985px) {
  .l-header__hamburger-menu-lists {
    display: grid;
    place-items: center start;
    grid-template-columns: 1fr;
    width: 93.6%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 985px) {
  .l-header__hamburger-menu-list {
    width: 100%;
    height: 57px;
    border-bottom: 1px solid #075B98;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    text-indent: 10px;
  }
}

@media screen and (max-width: 985px) {
  .l-header__c-corporate-wrapper {
    display: grid;
    place-items: center;
    margin-top: 57px;
    padding-bottom: 15px;
  }
}

.l-header__hamburger-menu__search-wrapper {
  width: 100%;
  height: 80px;
}

.l-header__hamburger-menu__search-container {
  display: grid;
  place-items: center;
}

.l-header__hamburger-menu__search-form {
  display: grid;
  place-items: end;
}

.l-header__hamburger-menu__search-input {
  width: 300px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #075B98;
  background: #fff;
  position: relative;
  top: 16px;
  padding: 15px;
  font-size: 1.4rem;
}
.l-header__hamburger-menu__search-input::placeholder {
  color: #909090;
}

.l-header__hamburger-menu__search-button {
  background-color: #075B98;
  width: 112px;
  height: 48px;
  color: #fff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
  transform: translateY(-32px);
  border: 1px solid #fff;
}
.l-header__hamburger-menu__search-button::before {
  content: url(/assets/image/component/search.svg);
  transform: translate(-5px, 3px);
}

@media screen and (max-width: 985px) {
  .l-header__form-close-wrapper {
    padding-right: 10%;
  }
}

.l-header__form-close {
  font-size: 1.5rem;
  line-height: 16px;
  /* 106.667% */
}
.l-header__form-close::before {
  content: url(/assets/image/component/close.svg);
  padding-right: 6px;
}

.l-main__back-top {
  z-index: 1;
  position: fixed;
  bottom: 5vh;
  right: 3vw;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #075B98;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s;
  opacity: 0;
}
.l-main__back-top.active {
  opacity: 1;
}
.l-main__back-top:hover {
  opacity: 0.4;
}
@media screen and (max-width: 985px) {
  .l-main__back-top {
    width: 40px;
    height: 40px;
    bottom: 3vh;
    right: 5vw;
  }
  .l-main__back-top.is-footer-reached {
    bottom: 11.5vh;
  }
}

.l-sidebar {
  background: linear-gradient(45deg, #0075FF 0%, #D0EBFF 100%);
  overflow-y: auto;
  width: 375px;
  height: 100%;
  position: fixed;
  opacity: 0;
  display: flex;
  transition: opacity 0.5s ease, visibility 0.5s;
  visibility: hidden;
  flex-direction: column;
  height: 100vh;
  top: 0;
  right: 0;
  border-radius: 16px;
  border: 1px solid #909090;
  box-shadow: 0px 2px 4px 0px rgba(25, 33, 61, 0.08);
  padding-top: 80px;
  padding-bottom: 40px;
  z-index: 2;
}
.l-sidebar a {
  color: #075B98;
  text-decoration: underline;
  overflow-wrap: break-word;
}

.l-sidebar__header {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 20px;
  height: 60px;
  background: #fff;
  border-radius: 8px;
  display: flex;
}

.l-sidebar__container {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 10px;
  max-height: 89%;
}

.l-sidebar__chat-message {
  padding: 10px;
  margin: 5px;
  border-radius: 20px;
  max-width: 80%;
}

.l-sidebar__chat-message-user {
  background: linear-gradient(45deg, #3ACD52 0%, #7DFFA2 100%);
  align-self: flex-end;
  margin-right: 10px;
  margin-top: 10px;
  border-radius: 10px;
  border-top-right-radius: 0;
  padding: 5px;
}

.l-sidebar__chat-message-ai {
  background: linear-gradient(45deg, #F5F5F5 0%, #FFFFFF 100%);
  align-self: flex-start;
  margin-left: 10px;
  margin-top: 10px;
  border-radius: 10px;
  border-top-left-radius: 0;
  padding: 5px;
  max-width: 300px;
}

.l-sidebar__chat-sender-name {
  font-size: 0.8em;
  margin-bottom: 5px;
  opacity: 0.7;
}

.l-sidebar__footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #909090;
  padding: 20px;
}

.l-sidebar__prompt-box {
  display: flex;
}

.l-sidebar--visible {
  opacity: 1;
  visibility: visible;
}

.l-sidebar__prompt-input {
  width: 270px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #075B98;
  font-size: 16px;
  transition: background 0.3s;
}

.l-sidebar__send-button {
  margin-left: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #075B98;
  background: #075B98;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  background: linear-gradient(180deg, #2B7AFB 0%, #2174FD 100%, #213BFD 100%);
  /* Button/Primary */
  box-shadow: 0px 2px 1px 0px rgba(255, 255, 255, 0.22) inset, 0px -2px 0.3px 0px rgba(14, 56, 125, 0.18) inset, 0px 2px 5px 0px rgba(20, 88, 201, 0.17);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-sidebar__spinner {
  border: 4px solid rgba(0, 0, 0, 0.1); /* 外側の円の色 */
  border-radius: 50%;
  border-top: 4px solid #075B98; /* 上側の円の色 */
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  display: none;
}

.c-heading__wrapper {
  display: grid;
  place-items: center;
}

.c-heading {
  color: #075B98;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  position: relative;
  width: fit-content;
}
.c-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-bottom: 4px solid #075B98;
  margin: 0 auto;
  margin-top: 8px;
}

.p-index-recommend .c-heading {
  color: #fff;
}
.p-index-recommend .c-heading::after {
  border-bottom: 4px solid #fff;
}

.p-product-kv__container .c-heading {
  color: #fff;
}
.p-product-kv__container .c-heading::after {
  border-bottom: 4px solid #fff;
}

.c-breadcrumb {
  color: #909090;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: end;
}

.c-breadcrumb__span {
  margin-left: 1em;
}

.c-form__tag-wrapper {
  background: rgba(7, 91, 152, 0.08);
  width: 100vw;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-form__tag-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 985px) {
  .c-form__tag-container {
    transform: translateX(5px);
  }
}

.c-form__tag {
  width: 240px;
  height: 48px;
  display: grid;
  place-items: center;
  background-image: url(/assets/image/pc/form-tag-white.svg);
  background-repeat: no-repeat;
  color: #075B98;
}
.c-form__tag[data-current] {
  background-image: url(/assets/image/pc/form-tag-currant.svg);
  color: #fff;
}
.c-form__tag[data-complete] {
  background-image: url(/assets/image/pc/form-tag.svg);
  color: #333333;
}
.c-form__tag:nth-child(1) {
  width: 216px;
  transform: translateX(22px);
  z-index: 3;
}
.c-form__tag:nth-child(2) {
  background-image: url(/assets/image/pc/form-tag-wide-white.svg);
  transform: translate(1px);
  z-index: 2;
}
.c-form__tag:nth-child(2)[data-current] {
  background-image: url(/assets/image/pc/form-tag-currant-wide.svg);
}
.c-form__tag:nth-child(2)[data-complete] {
  background-image: url(/assets/image/pc/form-tag-wide.svg);
}
.c-form__tag:last-child {
  transform: translateX(-23px);
}
@media screen and (max-width: 985px) {
  .c-form__tag {
    width: 115px;
    background-image: url(/assets/image/sp/form-tag-sp-white.svg);
  }
  .c-form__tag[data-current] {
    background-image: url(/assets/image/sp/form-tag-currant-sp.svg);
  }
  .c-form__tag[data-complete] {
    background-image: url(/assets/image/sp/form-tag-sp.svg);
  }
  .c-form__tag:nth-child(1) {
    width: 115px;
    transform: translateX(5px);
  }
  .c-form__tag:nth-child(2) {
    width: 122px;
    background-image: url(/assets/image/sp/form-tag-wide-sp-white.svg);
    transform: translateX(-5px);
  }
  .c-form__tag:nth-child(2)[data-current] {
    background-image: url(/assets/image/sp/form-tag-currant-wide-sp.svg);
  }
  .c-form__tag:nth-child(2)[data-complete] {
    background-image: url(/assets/image/sp/form-tag-wide-sp.svg);
  }
  .c-form__tag:last-child {
    transform: translateX(-15px);
  }
}

.c-form__tag-text {
  font-size: 1.5rem;
}
@media screen and (max-width: 985px) {
  .c-form__tag-text {
    font-size: 1.3rem;
  }
}

.c-pagination__wrapper {
  width: 100%;
  height: 114px;
  background: rgba(7, 91, 152, 0.08);
  margin-top: 80px;
  display: grid;
  place-items: center;
}

.c-pagination__container {
  display: flex;
  gap: 30px;
}

.c-pagination__prev {
  transform: translate(0px, -6px);
}
.c-pagination__prev[data-disabled] {
  pointer-events: none;
}
.c-pagination__prev[data-disabled] path {
  fill: #909090;
}

.c-pagination__next {
  transform: translate(0px, -6px);
}
.c-pagination__next[data-disabled] {
  pointer-events: none;
}
.c-pagination__next[data-disabled] path {
  fill: #909090;
}

.c-pagination__number {
  color: #075B98;
  line-height: 18px; /* 112.5% */
  text-decoration-line: underline;
  display: grid;
  place-items: center;
}
.c-pagination__number[data-current] {
  color: #333333;
  text-decoration-line: none;
}

.c-search {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
  padding-bottom: 144px;
}

.c-search__wrapper {
  width: 100vw;
  border-bottom: 1px solid #909090;
  height: 200px;
  margin-top: 80px;
  padding-top: 16px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.c-search__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.c-search__current-page {
  color: #909090;
  font-size: 1.4rem;
  line-height: 18px;
}

.c-search__title {
  color: #075B98;
  margin-top: 43px;
  font-size: 4rem;
  line-height: 50px;
}

.c-search__grid-wrapper {
  display: grid;
  place-items: start center;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 28px;
  margin-top: 24px;
}
@media screen and (max-width: 985px) {
  .c-search__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.c-search__grid-item {
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 985px) {
  .c-search__grid-item {
    width: 282px;
  }
}

.c-search__img-wrapper {
  width: 100%;
  display: grid;
  place-items: start end;
}
.c-search__img-wrapper img {
  border-radius: 4px;
}

.c-search__tag-wrapper {
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: grid;
  grid-area: 1/1;
  grid-template-columns: repeat(2, auto);
  gap: 4px;
}

.c-search__tag-recommend {
  display: block;
  color: #075B98;
  font-size: 1.1rem;
  width: 52px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #075B98;
  background: #fff;
}

.c-search__tag-new {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #fff;
  background: #075B98;
}

.c-search__grid-container {
  display: grid;
  gap: 8px;
}

.c-search__subTitle {
  color: #075B98;
  font-size: 1.8rem;
  line-height: 18px;
}
.c-search__subTitle::after {
  content: url(/assets/image/component/right-arrow.svg);
  margin-top: 1px;
  margin-left: 9px;
  transform: scale(1.1);
  position: absolute;
}

.c-search__text {
  font-size: 1.4rem;
  line-height: 18px;
}

.c-search__pagination-wrapper {
  width: 100%;
  height: 114px;
  background: rgba(7, 91, 152, 0.08);
  margin-top: 80px;
  display: grid;
  place-items: center;
}

.c-search__pagination-container {
  display: flex;
  gap: 30px;
}

.c-search__pagination-prev {
  transform: translate(-13px, -5px);
}

.c-search__pagination-next {
  transform: translate(13px, -5px);
}

.c-search__keyword {
  padding-bottom: 144px;
  display: grid;
  place-items: center;
  width: 100%;
}
.c-search__keyword[data-product] {
  margin-top: 80px;
  padding-bottom: 80px;
}

.c-search__keyword-container {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.c-search__keyword-search-wrapper {
  background-color: #075B98;
  width: 100%;
  position: relative;
  padding: 40px;
}
.c-search__keyword-search-wrapper[data-product] {
  margin-top: 48px;
}
@media screen and (max-width: 985px) {
  .c-search__keyword-search-wrapper {
    padding: 40px 20px;
  }
}

.c-search__keyword-subtitle {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}

.c-search__keyword-search-container {
  display: grid;
  place-items: center;
  margin: 0 auto;
  margin-top: 16px;
}

.c-search__keyword-search-form {
  display: grid;
  place-items: end;
}

.c-search__keyword-search-input {
  width: 600px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #075B98;
  background: #fff;
  position: relative;
  padding: 15px;
  font-size: 1.8rem;
}
.c-search__keyword-search-input::placeholder {
  color: #909090;
}
@media screen and (max-width: 985px) {
  .c-search__keyword-search-input {
    width: 300px;
    font-size: 1.4rem;
  }
}

.c-search__keyword-search-button {
  background-color: #075B98;
  width: 112px;
  height: 48px;
  color: #fff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: relative;
  transform: translateY(-48px);
}
.c-search__keyword-search-button::before {
  content: url(/assets/image/component/search.svg);
  transform: translate(-5px, 3px);
}
@media screen and (max-width: 985px) {
  .c-search__keyword-search-button {
    width: 90px;
    font-size: 1.6rem;
  }
}

.c-search__keyword-anchor-wrapper {
  margin-top: 24px;
  border: 8px solid rgba(7, 91, 152, 0.08);
  width: 100%;
  padding: 25px 40px;
  display: grid;
  place-items: center start;
}

.c-search__keyword-anchor-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  flex-wrap: wrap;
}

.c-search__keyword-anchor-link {
  font-size: 1.8rem;
  line-height: normal;
}
.c-search__keyword-anchor-link::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(9px, -1px) rotate(90deg) scale(1.2);
  position: absolute;
}

.c-tag__wrapper {
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: grid;
  grid-area: 1/1;
  grid-template-columns: repeat(2, auto);
  gap: 4px;
}

.c-tag__recommend {
  display: grid;
  place-items: center;
  color: #075B98;
  font-size: 1.1rem;
  width: 52px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #075B98;
  background: #fff;
}

.c-tag__new {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #fff;
  background: #075B98;
}

.c-chatbot {
  position: fixed;
  bottom: 50px;
  right: 50px;
}

.p-index-kv {
  background: url(/assets/image/component/kv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  height: 640px;
}

.p-index-kv__container {
  display: grid;
  place-items: center;
  grid-area: 1/1;
  margin-top: 100px;
}

.p-index-kv__heading {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.24), 0px 0px 8px rgba(0, 0, 0, 0.16);
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 60px;
}
@media screen and (max-width: 985px) {
  .p-index-kv__heading {
    font-size: 3.5rem;
  }
}

.p-index-kv__button-wrapper {
  position: relative;
  margin-top: 30px;
}

.p-index-kv__button {
  width: 400px;
  height: 64px;
  border-radius: 32px;
  background: #075B98;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 985px) {
  .p-index-kv__button {
    width: 300px;
    height: 50px;
  }
}

.p-index-kv__button-text {
  cursor: pointer;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  mix-blend-mode: normal;
  position: absolute;
  width: 400px;
  height: 64px;
  left: 0;
  border: 1px solid #fff;
  border-radius: 32px;
  padding-top: 16px;
}
.p-index-kv__button-text::after {
  content: url(/assets/image/component/arrow_forward_ios-white.svg);
  transform: translate(30px, 1px);
  position: absolute;
}
@media screen and (max-width: 985px) {
  .p-index-kv__button-text {
    width: 300px;
    height: 50px;
    border-radius: 25px;
    padding-top: 11px;
    font-size: 1.8rem;
  }
  .p-index-kv__button-text::after {
    transform: translate(20px, 1px);
  }
}

.p-product-kv {
  padding-top: 80px;
  padding-bottom: 120px;
  background: url(/assets/image/component/product-kv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
}
.p-product-kv::after {
  content: "";
  background: rgba(0, 0, 0, 0.24);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.p-product-kv__container {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-product-kv__text-wrapper {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}

.p-product-kv__text {
  color: #fff;
  font-size: 20px;
  line-height: 36px;
}

.p-product-kv__grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 24px;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #fff;
}
@media screen and (max-width: 985px) {
  .p-product-kv__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-product-kv__grid-item {
  display: grid;
  place-items: center;
  width: 100%;
  height: 304px;
  border-right: 1px solid #fff;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.65);
  position: relative;
}
.p-product-kv__grid-item:last-child {
  border-right: none;
}
@media screen and (max-width: 985px) {
  .p-product-kv__grid-item {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .p-product-kv__grid-item:last-child {
    border-bottom: none;
  }
}

.p-product-kv__svg-wrapper {
  transform: translate(1px, -50px);
}

.p-product-kv__subtitle {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 4.48px;
  z-index: 1;
  position: absolute;
  display: grid;
  place-items: center;
  transform: translateY(68px);
}
@media screen and (max-width: 985px) {
  .p-product-kv__subtitle {
    font-size: 2rem;
  }
}

.p-product-kv__link {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.12px;
  z-index: 1;
  position: absolute;
  display: flex;
  place-items: center;
  transform: translateY(108px);
}
.p-product-kv__link::after {
  content: url(/assets/image/component/product-arrow.svg);
  margin-left: 5px;
}

.p-product-kv__box {
  margin-top: 16px;
  background: url(/assets/image/component/product-kv-box-bg.webp), lightgray 0px -395.087px/100% 499.899% no-repeat;
  background-size: cover;
  border-radius: 4px;
  display: grid;
  place-items: center;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #fff;
  position: relative;
  height: 160px;
}
.p-product-kv__box::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.p-product-kv__box .p-product-kv__subtitle {
  position: static;
  transform: translateY(22px);
}
.p-product-kv__box .p-product-kv__link {
  position: static;
  transform: translateY(-8px);
}

.p-index-topics {
  margin-top: 80px;
}

.p-index-topics__wrapper {
  margin-top: 48px;
  display: grid;
  place-items: center;
}

.p-index-topics__container {
  width: 368px;
  height: 358px !important;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.04));
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
  margin-left: 25px;
  margin-right: 25px;
}
@media screen and (max-width: 985px) {
  .p-index-topics__container {
    width: 300px;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.p-index-topics__img-wrapper {
  border-radius: 3px 3px 0px 0px;
  display: grid;
  place-items: start end;
}
.p-index-topics__img-wrapper img {
  width: 100%;
  height: 240px;
  display: grid;
  grid-area: 1/1;
}

.p-index-topics__card-container {
  padding: 15px 24px 25px 24px;
}

.p-index-topics__card-date {
  color: #909090;
  font-size: 1.4rem;
  line-height: 16px;
}

.p-index-topics__card-text {
  line-height: 24px;
}

.slide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
  margin-top: 30px;
}

.slide-dots li {
  display: inline-block;
  margin: 0 10px;
}

.slide-dots li button {
  position: relative;
  text-indent: -9999px;
}

.slide-dots li button::before {
  background-image: url(/assets/image/component/dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "⚪️";
  cursor: pointer;
  height: 18px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 18px;
  width: 18px;
}

.slide-dots li.slick-active button::before {
  background-image: url(/assets/image/component/dot-select.svg);
}

.slide-dots button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}

.slider-img img {
  height: auto;
  width: 100%;
}

.slide-arrow {
  position: absolute;
}

.prev-arrow {
  left: 50%;
  bottom: -8px;
  transform: translateX(-120px);
}

.next-arrow {
  right: 50%;
  bottom: -8px;
  transform: translateX(120px);
}

.p-index-explore {
  margin-top: 144px;
  background-color: rgba(7, 91, 152, 0.08);
  padding: 80px 10px 144px 10px;
  display: grid;
  place-items: center;
  grid-template-rows: repeat(3, auto);
}

.p-index-explore__search-wrapper {
  width: 100%;
  height: 80px;
  position: relative;
  margin-top: 16px;
}

.p-index-explore__search-container {
  display: grid;
  place-items: center;
}

.p-index-explore__search-form {
  display: grid;
  place-items: end;
}

.p-index-explore__search-input {
  width: 600px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #075B98;
  background: #fff;
  position: relative;
  top: 16px;
  padding: 15px;
  font-size: 1.8rem;
}
.p-index-explore__search-input::placeholder {
  color: #909090;
}
@media screen and (max-width: 985px) {
  .p-index-explore__search-input {
    width: 300px;
    font-size: 1.4rem;
  }
}

.p-index-explore__search-button {
  background-color: #075B98;
  width: 112px;
  height: 48px;
  color: #fff;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  position: relative;
  top: 16px;
  transform: translateY(-48px);
}
.p-index-explore__search-button::before {
  content: url(/assets/image/component/search.svg);
  transform: translate(-5px, 3px);
}
@media screen and (max-width: 985px) {
  .p-index-explore__search-button {
    width: 90px;
    font-size: 1.6rem;
  }
}

.p-index-explore__grid-wrapper {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin-top: 32px;
}
@media screen and (max-width: 985px) {
  .p-index-explore__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-index-explore__grid-item {
  width: 100%;
  max-width: 282px;
  height: 168px;
  background-color: #fff;
  display: grid;
  place-items: center;
  grid-template-rows: 118px auto;
}

.p-index-explore__svg-wrapper {
  transform: translateY(10px);
}

.p-index-explore__text {
  color: #075B98;
  font-size: 1.8rem;
  line-height: 18px;
  transform: translate(-13px, -15px);
}
.p-index-explore__text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(8px, 2px);
  position: absolute;
}

.p-product-scene {
  padding-top: 80px;
  padding-bottom: 145px;
}

.p-product-scene__container {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-product-scene__title {
  color: #075B98;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  width: 100%;
}
@media screen and (max-width: 985px) {
  .p-product-scene__title {
    text-align: center;
  }
}

.p-product-scene__grid-wrapper {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  width: 100%;
}
@media screen and (max-width: 985px) {
  .p-product-scene__grid-wrapper {
    grid-template-columns: 1fr;
    max-width: 355px;
  }
}

.p-product-scene__grid-item {
  width: 100%;
  height: 160px;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr 1fr;
  color: #075B98;
  padding: 20px;
  gap: 12px;
  border-bottom: 1px solid #DDDDDD;
  border-right: 1px solid #DDDDDD;
}
.p-product-scene__grid-item:nth-child(-n+3) {
  border-top: 1px solid #DDDDDD;
}
.p-product-scene__grid-item:nth-child(3n+1) {
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 985px) {
  .p-product-scene__grid-item {
    border-left: 1px solid #DDDDDD;
  }
  .p-product-scene__grid-item:nth-child(-n+3) {
    border-top: none;
  }
  .p-product-scene__grid-item:first-child {
    border-top: 1px solid #DDDDDD;
  }
}

.p-product-scene__box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.p-product-scene__text {
  width: 100%;
  text-align: left;
  font-size: 1.8rem;
  line-height: 18px;
}
.p-product-scene__text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(10px, 2px) scale(1.1);
  position: absolute;
}

.p-product-scene__pickup {
  width: 100%;
  background-color: #F5F5F5;
  display: grid;
  place-items: center;
  grid-template-columns: 114px 1fr;
  padding: 48px;
  margin-top: 144px;
  gap: 54px;
}
@media screen and (max-width: 985px) {
  .p-product-scene__pickup {
    grid-template-columns: 1fr;
  }
}

.p-product-scene__pickup-title {
  color: #075B98;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.p-product-scene__pickup-grid-wrapper {
  display: grid;
  place-items: start center;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 24px;
}
@media screen and (max-width: 985px) {
  .p-product-scene__pickup-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-product-scene__pickup-grid-item {
  width: 100%;
  max-width: 168px;
  min-height: 202px;
  display: grid;
  place-items: center;
  grid-template-rows: 168px auto;
  color: #075B98;
  gap: 16px;
}

.p-product-scene__pickup-box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.p-product-scene__pickup-text {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 18px;
}
.p-product-scene__pickup-text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(8px, 1px) scale(1.1);
  position: absolute;
}

.p-company-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
  border-bottom: 1px solid #909090;
}

.p-company-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-company-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 20px;
}

.p-company-headline__title-sub {
  font-size: 1.4rem;
}

.p-company-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-product-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
}

.p-product-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-product-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 43px;
}

.p-product-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-category-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
  border-bottom: 1px solid #909090;
}

.p-category-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-category-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 43px;
}

.p-category-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-news-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
}

.p-news-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-news-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 43px;
}

.p-news-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-newsDetail-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
  border-bottom: 1px solid #909090;
}

.p-newsDetail-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-newsDetail-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 43px;
}

.p-newsDetail-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-productDetail-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
  border-bottom: 1px solid #909090;
}

.p-productDetail-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-productDetail-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 43px;
}

.p-productDetail-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-inquiry-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
  border-bottom: 1px solid #909090;
}

.p-inquiry-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-inquiry-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 40px;
}

.p-inquiry-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-form-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
}

.p-form-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-form-headline__text {
  color: #909090;
  text-align: right;
  font-size: 1.4rem;
}

.p-form-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 40px;
}

.p-form-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-confirm-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
}

.p-confirm-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-confirm-headline__text {
  color: #909090;
  text-align: right;
  font-size: 1.4rem;
}

.p-confirm-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 40px;
}

.p-confirm-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-thanks-headline {
  margin-top: 80px;
  padding-top: 16px;
  height: 200px;
}

.p-thanks-headline__container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-thanks-headline__text {
  color: #909090;
  text-align: right;
  font-size: 1.4rem;
}

.p-thanks-headline__title {
  color: #075B98;
  display: grid;
  place-items: center start;
  margin-top: 40px;
}

.p-thanks-headline__title-main {
  font-size: 4rem;
  line-height: 50px;
}

.p-company-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-company-primary__grid-wrapper {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 985px) {
  .p-company-primary__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-company-primary__grid-item {
  display: grid;
  gap: 16px;
}

.p-company-primary__img-wrapper img {
  max-width: 100%;
  aspect-ratio: auto 588/240;
  height: auto;
}

.p-company-primary__grid-text {
  color: #333333;
  font-size: 2.4rem;
  line-height: normal;
}
.p-company-primary__grid-text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(11px, -2px);
  position: absolute;
  scale: 1.5;
}

.p-category-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-category-primary__title {
  color: #075B98;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 28px;
}

.p-category-primary__grid-wrapper {
  display: grid;
  place-items: start center;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 28px;
  margin-top: 24px;
}
@media screen and (max-width: 985px) {
  .p-category-primary__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-category-primary__grid-item {
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 985px) {
  .p-category-primary__grid-item {
    width: 282px;
  }
}

.p-category-primary__img-wrapper {
  width: 100%;
  display: grid;
  place-items: start end;
}
.p-category-primary__img-wrapper img {
  border-radius: 4px;
  display: grid;
  grid-area: 1/1;
}

.p-category-primary__grid-container {
  display: grid;
  gap: 8px;
}

.p-category-primary__subTitle {
  color: #075B98;
  font-size: 1.8rem;
  line-height: 18px;
}
.p-category-primary__subTitle::after {
  content: url(/assets/image/component/right-arrow.svg);
  margin-top: 1px;
  margin-left: 9px;
  transform: scale(1.1);
  position: absolute;
}

.p-category-primary__text {
  font-size: 1.4rem;
  line-height: 18px;
}

.p-news-primary__tab-wrapper {
  background-color: #075B98;
  height: 68px;
  display: grid;
  place-items: center;
}

.p-news-primary__tab {
  max-width: 1220px;
  padding: 0 10px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 28px;
}

.p-news-primary__tab-item {
  color: #fff;
  font-size: 1.5rem;
}
.p-news-primary__tab-item[data-active] {
  border-bottom: 2px solid #D9D9D9;
}

.p-news-primary__tag-lists {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 985px) {
  .p-news-primary__tag-lists {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-news-primary__container {
  margin: 0 auto;
  margin-top: 40px;
  width: 100%;
  max-width: 1220px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-news-primary__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.p-news-primary__btn {
  width: 200px;
  height: 32px;
  border-radius: 24px;
  border: 1px solid #075B98;
  color: #075B98;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-news-primary__btn::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translateY(2px);
  position: relative;
}

.p-news-primary__lists {
  margin-top: 20px;
  display: block;
  width: 100%;
}

.p-news-primary__list {
  border-bottom: 1px solid #DDDDDD;
  padding: 22px 0;
  display: grid;
  place-items: center start;
  grid-template-columns: 144px 120px auto;
}
@media screen and (max-width: 985px) {
  .p-news-primary__list {
    grid-template-columns: 144px auto;
  }
}

.p-news-primary__date {
  width: 144px;
}

.p-news-primary__tag {
  width: 120px;
  height: 20px;
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid #DDDDDD;
  display: grid;
  place-items: center;
}

.p-news-primary__link {
  margin-left: 16px;
  color: #075B98;
  text-decoration-line: underline;
}
@media screen and (max-width: 985px) {
  .p-news-primary__link {
    grid-column: 1/-1;
    margin-left: 0;
  }
}

.p-news-primary__icon {
  position: absolute;
  margin-left: 7px;
  margin-top: 2px;
  transform: translate(1px, -2px);
}
.p-news-primary__icon svg {
  transform: translate(1px, -5px);
}

.p-news-primary__pagination-wrapper {
  width: 100%;
  height: 114px;
  background: rgba(7, 91, 152, 0.08);
  margin-top: 80px;
  display: grid;
  place-items: center;
}

.p-news-primary__pagination-container {
  display: flex;
  gap: 30px;
}

.p-news-primary__pagination-prev {
  transform: translate(-13px, -5px);
}

.p-news-primary__pagination-next {
  transform: translate(13px, -5px);
}

.p-newsDetail-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 88px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-newsDetail-primary__tag-item {
  width: 144px;
  height: 28px;
  border-radius: 14px;
  border: 1px solid #DDDDDD;
  background: #fff;
  display: grid;
  place-items: center;
}

.p-newsDetail-primary__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 48px;
  margin-top: 19px;
}

.p-newsDetail-primary__date-wrapper {
  display: grid;
  place-items: center end;
  line-height: 24px;
}

.p-newsDetail-primary__article-wrapper {
  display: grid;
  place-items: start center;
  grid-template-columns: 1fr auto;
  margin-top: 38px;
  gap: 40px;
}
.p-newsDetail-primary__article-wrapper p {
  line-height: 24px;
  max-width: 680px;
}

.p-newsDetail-primary__img-wrapper {
  display: block;
  width: 480px;
  height: 320px;
  border-radius: 4px;
}

.p-newsDetail-primary__button {
  width: 292px;
  height: 48px;
  border: 1px solid #909090;
  background: #F5F5F5;
  line-height: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  margin-top: 78px;
}

.p-productDetail-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 87px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-productDetail-primary__tag-wrapper {
  font-weight: 700;
  line-height: 16px;
  display: flex;
  gap: 8px;
}

.p-productDetail-primary__tag-recommend {
  display: grid;
  place-items: center;
  color: #075B98;
  font-size: 1.8rem;
  width: 88px;
  height: 28px;
  border-radius: 2px;
  border: 1px solid #075B98;
  background: #fff;
}

.p-productDetail-primary__tag-new {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2rem;
  width: 67px;
  height: 30px;
  border-radius: 2px;
  border: 1px solid #fff;
  background: #075B98;
}

.p-productDetail-primary__article-wrapper {
  display: grid;
  place-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 16px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__article-wrapper {
    grid-template-columns: 1fr;
    place-items: start center;
  }
}

.p-productDetail-primary__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 48px;
}

.p-productDetail-primary__article-sub-title-wrapper {
  margin-top: 40px;
}

.p-productDetail-primary__sub-title {
  color: #075B98;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 28px;
}

.p-productDetail-primary__article {
  line-height: 24px;
  max-width: 600px;
  margin-top: 16px;
}

.p-productDetail-primary__button-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  text-wrap: nowrap;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__button-wrapper {
    flex-direction: column;
  }
}

.p-productDetail-primary__button-download {
  width: 100%;
  height: 48px;
  border: 1px solid #075B98;
  background: rgba(7, 91, 152, 0.08);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__button-download {
    width: 355px;
    margin: 0 auto;
  }
}

.p-productDetail-primary__button-contact {
  width: 100%;
  height: 48px;
  border: 1px solid #909090;
  background: #F5F5F5;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__button-contact {
    width: 355px;
    margin: 0 auto;
  }
}

.p-productDetail-primary__img-wrapper {
  content: "";
  display: block;
  width: 100%;
  max-width: 560px;
  border-radius: 4px;
}
.p-productDetail-primary__img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: auto 560/400;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__img-wrapper {
    padding: 0;
    width: 355px;
    height: 285px;
  }
}

.p-productDetail-primary__specification {
  margin-top: 80px;
}

.p-productDetail-primary__specification-container {
  margin-top: 23px;
}
.p-productDetail-primary__specification-container table {
  border-collapse: collapse;
  /* セルの罫線を重ねる */
  margin-top: 8px;
}
.p-productDetail-primary__specification-container table tr {
  height: 40px;
}
.p-productDetail-primary__specification-container table th, .p-productDetail-primary__specification-container table td {
  border: 1px solid #DDDDDD;
  vertical-align: middle;
  padding: 0 8px;
}
.p-productDetail-primary__specification-container table th {
  min-width: 160px;
  background-color: rgba(7, 91, 152, 0.08);
  font-size: 1.6rem;
  line-height: 24px;
}
.p-productDetail-primary__specification-container table .center {
  text-align: center;
  color: #075B98;
  font-weight: 700;
  line-height: 24px;
  height: 48px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__specification-container[data-scroll] {
    position: relative;
    width: 100vw;
  }
  .p-productDetail-primary__specification-container[data-scroll] table {
    width: 1200px;
  }
  .p-productDetail-primary__specification-container[data-scroll]::before {
    content: url(/assets/image/component/scroll.svg);
    display: block;
    position: absolute;
    top: 0px;
    left: 125px;
  }
  .p-productDetail-primary__specification-container[data-scroll]::after {
    content: "この情報は横方向にスクロールします";
    position: absolute;
    top: 5px;
    left: 145px;
    color: #980F07;
    font-size: 1.2rem;
    line-height: 12px;
  }
  .p-productDetail-primary__specification-container:not([data-scroll]) table,
  .p-productDetail-primary__specification-container:not([data-scroll]) thead,
  .p-productDetail-primary__specification-container:not([data-scroll]) tbody,
  .p-productDetail-primary__specification-container:not([data-scroll]) tr {
    display: block;
  }
  .p-productDetail-primary__specification-container:not([data-scroll]) table tr {
    height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .p-productDetail-primary__specification-container:not([data-scroll]) table th,
  .p-productDetail-primary__specification-container:not([data-scroll]) td {
    display: grid;
    place-items: center start;
    padding: 10px 8px;
  }
}

.p-productDetail-primary__specification-subtitle {
  font-size: 2rem;
  line-height: 20px;
}

.p-productDetail-primary__example-wrapper {
  margin-top: 80px;
}

.p-productDetail-primary__example-container {
  display: flex;
  margin-top: 24px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__example-container {
    flex-direction: column;
    align-items: center;
  }
}

.p-productDetail-primary__example-item {
  width: 400px;
  display: grid;
  place-items: center;
  grid-template-columns: 160px 1fr;
  padding: 20px;
  gap: 12px;
  border: 1px solid #DDDDDD;
}
.p-productDetail-primary__example-item:nth-child(2n) {
  border-left: none;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__example-item:nth-child(2n) {
    border-left: 1px solid #DDDDDD;
    border-top: none;
  }
}

.p-productDetail-primary__example-img-wrapper {
  background-color: #F5F5F5;
  display: grid;
  place-items: center start;
}
.p-productDetail-primary__example-img-wrapper img {
  width: 100%;
  height: 120px;
  aspect-ratio: auto 160/120;
}

.p-productDetail-primary__example-text-wrapper {
  width: 100%;
  text-align: left;
  display: grid;
  gap: 16px;
}

.p-productDetail-primary__example-title {
  font-size: 1.8rem;
  line-height: 18px;
  color: #075B98;
}
.p-productDetail-primary__example-title::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(8px, 0px) scale(1.1);
  position: absolute;
}

.p-productDetail-primary__example-text {
  font-size: 14px;
  line-height: 20px;
}

.p-productDetail-primary__support-wrapper {
  margin-top: 80px;
}

.p-productDetail-primary__support-container {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__support-container {
    grid-template-columns: 1fr;
    width: 355px;
    margin: 0 auto;
    margin-top: 24px;
  }
}

.p-productDetail-primary__support-item {
  display: grid;
  place-items: start center;
  gap: 26px;
  border: 8px solid rgba(7, 91, 152, 0.08);
  padding: 25px;
}

.p-productDetail-primary__support-text-wrapper {
  display: grid;
  place-items: center start;
  gap: 24px;
}

.p-productDetail-primary__support-title {
  font-size: 2rem;
  line-height: 20px;
}

.p-productDetail-primary__support-text {
  font-size: 1.6rem;
  line-height: 24px;
  min-height: 48px;
}

.p-productDetail-primary__support-button {
  width: 292px;
  height: 48px;
  border: 1px solid #075B98;
  color: #075B98;
  background: rgba(7, 91, 152, 0.08);
  font-size: 1.6rem;
  line-height: 18px;
  display: grid;
  place-items: center;
}

.p-productDetail-primary__recommendation {
  width: 100%;
  background-color: #F5F5F5;
  display: grid;
  place-items: center;
  grid-template-columns: 114px 1fr;
  padding: 48px;
  margin-top: 140px;
  gap: 54px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__recommendation {
    grid-template-columns: 1fr;
  }
}

.p-productDetail-primary__recommendation-title {
  color: #075B98;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.p-productDetail-primary__recommendation-grid-wrapper {
  display: grid;
  place-items: start center;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 24px;
}
@media screen and (max-width: 985px) {
  .p-productDetail-primary__recommendation-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-productDetail-primary__recommendation-grid-item {
  width: 100%;
  max-width: 168px;
  min-height: 202px;
  display: grid;
  place-items: center;
  grid-template-rows: 168px auto;
  color: #075B98;
  gap: 16px;
}

.p-productDetail-primary__recommendation-box {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.p-productDetail-primary__recommendation-text {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 18px;
}
.p-productDetail-primary__recommendation-text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(8px, 1px) scale(1.1);
  position: absolute;
}

.p-inquiry-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-inquiry-primary__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 24px;
}

.p-inquiry-primary__text {
  font-size: 1.8rem;
  line-height: 26px;
  /* 144.444% */
  margin-top: 24px;
}

.p-inquiry-primary__lists {
  border-top: 2px solid #075B98;
  margin-top: 48px;
}

.p-inquiry-primary__list {
  border-bottom: 1px solid #DDDDDD;
  padding: 0 20px;
  padding-top: 35px;
  padding-bottom: 26px;
  display: grid;
  place-items: center start;
  gap: 8px;
}

.p-inquiry-primary__link {
  color: #075B98;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 24px;
}
.p-inquiry-primary__link::after {
  content: url(/assets/image/component/inquiry.svg);
  transform: translate(8px, -1px);
  position: absolute;
}

.p-form-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-form-primary__title {
  color: #075B98;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 28px;
}

.p-form-primary__text-wrapper {
  margin-top: 24px;
}

.p-form-primary__text {
  line-height: 24px;
  /* 144.444% */
  position: relative;
  padding-left: 22px;
}
.p-form-primary__text::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  left: 9px;
  top: 9px;
}

.p-form-primary__link {
  text-decoration-line: underline;
  margin-left: 3px;
  margin-right: 3px;
}

.p-form-primary__lists {
  border-top: 1px solid #075B98;
  display: grid;
  margin-top: 50px;
}

.p-form-primary__list {
  display: grid;
  place-items: center start;
  grid-template-columns: 260px 1fr;
  padding: 25px 20px;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 985px) {
  .p-form-primary__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.p-form-primary__label {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 985px) {
  .p-form-primary__label {
    font-size: 1.6rem;
  }
}

.p-form-primary__required {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  border-radius: 2px;
  background: #980F07;
  margin-left: 8px;
  padding: 0px 6px;
  transform: translateY(-10px);
  position: absolute;
  right: -44px;
  top: 50%;
}

.p-form-primary__input {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #075B98;
  padding: 10px 16px;
  background-color: rgba(7, 91, 152, 0.08);
}

.p-form-primary__postal-wrapper {
  display: grid;
  place-items: center start;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}

.p-form-primary__button {
  width: 120px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #075B98;
  background: rgba(7, 91, 152, 0.68);
  display: grid;
  place-items: center;
  color: #fff;
}

.p-form-primary__textarea {
  width: 100%;
  height: 160px;
  border-radius: 4px;
  border: 1px solid #075B98;
  padding: 16px;
  background-color: rgba(7, 91, 152, 0.08);
}

.p-form-primary__privacy-wrapper {
  margin-top: 80px;
  padding: 22px 20px 32px 20px;
  background-color: #F5F5F5;
  display: grid;
  place-items: start center;
}

.p-form-primary__privacy-label-wrapper {
  transform: translateX(-24px);
}

.p-form-primary__privacy-text {
  font-size: 14px;
  line-height: normal;
  margin-top: 18px;
}

.p-form-primary__privacy-link-wrapper {
  display: flex;
  gap: 45px;
  margin-top: 10px;
  transform: translateX(-10px);
}

.p-form-primary__privacy-link {
  color: #075B98;
  font-size: 14px;
  line-height: normal;
}
.p-form-primary__privacy-link::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(3px, 2px);
  position: absolute;
}

.p-form-primary__privacy-text {
  text-align: center;
}

.p-form-primary__privacy-checkbox-wrapper {
  border-radius: 4px;
  border: 1px solid #075B98;
  background: #fff;
  width: 344px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
  margin-top: 24px;
  padding-left: 10px;
}

.p-form-primary__privacy-checkbox {
  display: none;
}
.p-form-primary__privacy-checkbox:checked + .p-form-primary__privacy-checkbox-image {
  background-image: url(/assets/image/component/checkbox-checked.svg);
}

.p-form-primary__privacy-checkbox-image {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url(/assets/image/component/checkbox.svg) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.p-form-primary__privacy-checkbox-label {
  color: #075B98;
}

.p-form-primary__recaptcha-wrapper {
  display: grid;
  place-items: center;
  margin-top: 24px;
}

.p-form-primary__submit {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 24px;
  margin: 0 auto;
  margin-top: 80px;
  width: 400px;
  height: 64px;
  border: 1px solid #909090;
  border-radius: 32px;
  display: block;
  background-color: #075B98;
  text-align: center;
}
@media screen and (max-width: 985px) {
  .p-form-primary__submit {
    font-size: 1.8rem;
    line-height: 18px;
    width: 355px;
    height: 48px;
    border-radius: 24px;
  }
}

.p-confirm-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-confirm-primary__title {
  color: #075B98;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 28px;
}

.p-confirm-primary__text {
  line-height: 24px;
  /* 144.444% */
  margin-top: 24px;
}

.p-confirm-primary__lists {
  border-top: 1px solid #075B98;
  display: grid;
  margin-top: 50px;
}

.p-confirm-primary__list {
  display: grid;
  place-items: center start;
  grid-template-columns: 280px 1fr;
  padding: 40px 20px;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 985px) {
  .p-confirm-primary__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.p-confirm-primary__list-title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 985px) {
  .p-confirm-primary__list-title {
    font-size: 1.6rem;
  }
}

.p-confirm-primary__list-text {
  color: #075B98;
  font-size: 1.8rem;
  line-height: 18px;
}
@media screen and (max-width: 985px) {
  .p-confirm-primary__list-text {
    font-size: 1.6rem;
    line-height: 16px;
  }
}

.p-confirm-primary__list-textarea {
  color: #075B98;
  font-size: 1.8rem;
  line-height: 26px;
  /* 144.444% */
}

.p-confirm-primary__btn-wrapper {
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
}
@media screen and (max-width: 985px) {
  .p-confirm-primary__btn-wrapper {
    flex-direction: column;
  }
}

.p-confirm-primary__btn {
  width: 400px;
  height: 64px;
  color: #909090;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 24px;
  border: 1px solid #909090;
  border-radius: 32px;
  display: grid;
  place-items: center;
  text-align: center;
}
@media screen and (max-width: 985px) {
  .p-confirm-primary__btn {
    font-size: 1.8rem;
    line-height: 18px;
    width: 355px;
    height: 48px;
    border-radius: 24px;
  }
}
.p-confirm-primary__btn:nth-child(3) {
  color: #fff;
  background-color: #075B98;
}

.p-thanks-primary {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 144px;
}

.p-thanks-primary__title {
  color: #075B98;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 28px;
}

.p-thanks-primary__subtitle {
  font-size: 2.4rem;
  line-height: 24px;
  margin-top: 24px;
}

.p-thanks-primary__text {
  font-size: 1.8rem;
  line-height: 26px;
  /* 144.444% */
  margin-top: 24px;
}

.p-thanks-primary__btn {
  color: #909090;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 24px;
  margin: 0 auto;
  margin-top: 160px;
  width: 400px;
  height: 64px;
  border: 1px solid #909090;
  border-radius: 32px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 985px) {
  .p-thanks-primary__btn {
    font-size: 1.8rem;
    line-height: 18px;
    width: 355px;
    height: 48px;
    border-radius: 24px;
  }
}

.p-product-category {
  background: rgba(7, 91, 152, 0.08);
  padding-top: 80px;
  padding-bottom: 144px;
}

.p-product-category__container {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

.p-product-category__title {
  color: #075B98;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  width: 100%;
}
@media screen and (max-width: 985px) {
  .p-product-category__title {
    text-align: center;
  }
}

.p-product-category__grid-wrapper {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 985px) {
  .p-product-category__grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-product-category__grid-item {
  width: 100%;
  max-width: 282px;
  height: 194px;
  display: grid;
  place-items: center;
  grid-template-rows: 160px auto;
  color: #075B98;
  gap: 16px;
}

.p-product-category__svg-wrapper {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.p-product-category__text {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 18px;
}
.p-product-category__text::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(9px, 0px) scale(1.1);
  position: absolute;
}

.p-company-summary {
  width: 100%;
}

.p-company-summary__tab-wrapper {
  background-color: #075B98;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 0 10px;
}

.p-company-summary__tab {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(5, auto) 1fr;
  grid-gap: 28px;
}

.p-company-summary__tab-item {
  color: #fff;
  font-size: 1.5rem;
}
.p-company-summary__tab-item[data-active] {
  border-bottom: 2px solid #D9D9D9;
}

.p-company-summary__container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  padding: 0 10px;
  padding-bottom: 120px;
}

.p-company-summary__heading {
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 28px;
}

.p-company-summary__table-wrapper {
  display: grid;
  place-items: center;
}
.p-company-summary__table-wrapper table {
  border-collapse: collapse;
  /* セルの罫線を重ねる */
  width: 100%;
  margin-top: 25px;
}
.p-company-summary__table-wrapper table tr {
  height: 72px;
}
.p-company-summary__table-wrapper table th, .p-company-summary__table-wrapper table td {
  border: 1px solid #DDDDDD;
  vertical-align: middle;
  padding: 0 8px;
}
.p-company-summary__table-wrapper table th {
  width: 240px;
  background-color: #F5F5F5;
  font-size: 1.6rem;
  line-height: 24px;
}
.p-company-summary__table-wrapper a {
  color: #075B98;
  text-decoration-line: underline;
  display: flex;
  width: fit-content;
}
.p-company-summary__table-wrapper a::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(5px, 2px);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 985px) {
  .p-company-summary__table-wrapper {
    overflow-x: scroll;
  }
}

.p-company-summary__history-lists {
  display: grid;
  place-items: center;
  min-width: 800px;
  margin-top: 25px;
}
.p-company-summary__history-lists li {
  height: 72px;
  border-bottom: 1px solid #DDDDDD;
  vertical-align: middle;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 10px;
}
.p-company-summary__history-lists span {
  font-size: 1.6rem;
  line-height: 24px;
  width: 150px;
  font-weight: bold;
  color: #075B98;
}
@media screen and (max-width: 985px) {
  .p-company-summary__history-lists {
    overflow-x: scroll;
  }
}

.p-company-summary__domestic-lists {
  display: grid;
  place-items: center;
  min-width: 800px;
  margin-top: 25px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  border-collapse: collapse;
}
.p-company-summary__domestic-lists li {
  vertical-align: middle;
  padding: 10px;
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 10px;
  border-bottom: 1px solid #DDDDDD;
}
.p-company-summary__domestic-lists li:last-child {
  border-bottom: none;
}
.p-company-summary__domestic-lists li img, .p-company-summary__domestic-lists li iframe {
  margin-left: 100px;
  max-width: 600px;
  width: 100%;
  aspect-ratio: auto 600/416;
  height: auto;
}
@media screen and (max-width: 985px) {
  .p-company-summary__domestic-lists li img, .p-company-summary__domestic-lists li iframe {
    min-width: 200px;
    margin-left: 0;
    width: 80%;
  }
}
.p-company-summary__domestic-lists span {
  font-size: 1.6rem;
  line-height: 24px;
  width: 150px;
  font-weight: bold;
  color: #075B98;
}
@media screen and (max-width: 985px) {
  .p-company-summary__domestic-lists span {
    width: 70px;
  }
}
@media screen and (max-width: 985px) {
  .p-company-summary__domestic-lists {
    min-width: 0;
  }
}

.p-company-summary__group-lists {
  display: grid;
  place-items: center;
  min-width: 800px;
  margin-top: 25px;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  border-collapse: collapse;
}
.p-company-summary__group-lists h3 {
  font-weight: bold;
  color: #075B98;
}
.p-company-summary__group-lists ul {
  width: 100%;
}
.p-company-summary__group-lists li {
  vertical-align: middle;
  padding: 10px;
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 10px;
  border-bottom: 1px solid #DDDDDD;
}
.p-company-summary__group-lists li:last-child {
  border-bottom: none;
}
.p-company-summary__group-lists a {
  color: #075B98;
  text-decoration-line: underline;
  display: flex;
  width: fit-content;
}
.p-company-summary__group-lists a::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translate(5px, 2px);
  display: grid;
  place-items: center;
}
.p-company-summary__group-lists span {
  font-size: 1.6rem;
  line-height: 24px;
  width: 150px;
  font-weight: bold;
  color: #075B98;
}
@media screen and (max-width: 985px) {
  .p-company-summary__group-lists span {
    width: 70px;
  }
}
@media screen and (max-width: 985px) {
  .p-company-summary__group-lists {
    min-width: 0;
  }
}

.p-index-recommend {
  background: #075B98 url(/assets/image/component/recommend-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  gap: 49px;
  padding: 0 20px;
  padding-top: 80px;
  padding-bottom: 144px;
}

.p-index-recommend__grid-wrapper {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(3, auto);
}
@media screen and (max-width: 985px) {
  .p-index-recommend__grid-wrapper {
    grid-template-columns: 100%;
  }
}

.p-index-recommend__grid-item {
  display: grid;
  place-items: center;
  position: relative;
}

.p-index-recommend__img-wrapper img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: auto 400/320;
  height: auto;
}
.p-index-recommend__img-wrapper::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  padding-top: 80%;
  /* アスペクト比を維持 */
  position: absolute;
  top: 0;
}

.p-index-recommend__text-wrapper {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 50px;
}

.p-index-recommend__text {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 4.48px;
}

.p-index-recommend__span {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.12px;
  transform: translateX(-5px);
}
.p-index-recommend__span::after {
  content: url(/assets/image/component/arrow-recommend.svg);
  position: absolute;
  transform: translate(3px, 1px);
}

.p-index-news {
  margin: 0 auto;
  margin-top: 80px;
  width: 100%;
  max-width: 1220px;
  padding: 0 10px;
  padding-bottom: 120px;
}

.p-index-news__top-wrapper {
  display: flex;
  justify-content: space-between;
}

.p-index-news__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.p-index-news__btn {
  width: 200px;
  height: 32px;
  border-radius: 24px;
  border: 1px solid #075B98;
  color: #075B98;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-index-news__btn::after {
  content: url(/assets/image/component/right-arrow.svg);
  transform: translateY(2px);
  position: relative;
}

.p-index-news__lists {
  margin-top: 20px;
  display: block;
  width: 100%;
}

.p-index-news__list {
  border-bottom: 1px solid #DDDDDD;
  padding: 22px 0;
  display: grid;
  place-items: center start;
  grid-template-columns: 144px 120px auto;
}
@media screen and (max-width: 985px) {
  .p-index-news__list {
    grid-template-columns: 144px auto;
  }
}

.p-index-news__date {
  width: 144px;
}

.p-index-news__tag {
  width: 120px;
  height: 20px;
  font-size: 12px;
  border-radius: 10px;
  border: 1px solid #DDDDDD;
  display: grid;
  place-items: center;
}

.p-index-news__link {
  margin-left: 16px;
  color: #075B98;
  text-decoration-line: underline;
}
@media screen and (max-width: 985px) {
  .p-index-news__link {
    grid-column: 1/-1;
    margin-left: 0;
  }
}

.p-index-news__banner-wrapper {
  margin-top: 80px;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 985px) {
  .p-index-news__banner-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.p-index-news__banner {
  width: 282px;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.04));
  border-radius: 4px;
  border: 1px solid #DDDDDD;
  background: #fff;
}

.p-index-news__banner-text p {
  font-size: 14px;
  line-height: 16px;
  padding: 10px;
}
.p-index-news__banner-text a {
  color: #075B98;
  text-decoration-line: underline;
}
