@charset "UTF-8";
/*==================================================
base
==================================================*/
/*==================================================
base
====================================================*/
/*==================================================
  Modern Reset CSS (リセット & ノーマライズ)
==================================================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

body {
  line-height: 1.5;
  font-family: sans-serif;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/*==================================================
global 変数管理用
====================================================*/
/*==================================================
setting カラーやフォントなど
====================================================*/
/*==================================================
setting カラー
====================================================*/
/*==================================================
setting フォント
====================================================*/
/*==================================================
mixin breakpointやparts index
====================================================*/
/*==================================================
mixin breakpointやparts
====================================================*/
/*==================================================
common
====================================================*/
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-feature-settings: "palt" 1, "kern" 1;
          font-feature-settings: "palt" 1, "kern" 1;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
  text-justify: inter-word;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.4;
}

:lang(ja) p,
:lang(ja) li {
  letter-spacing: 0.02em;
}

a {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
a:hover {
  opacity: 0.7;
}

:lang(en) p,
:lang(en) li {
  word-spacing: 0.08em;
}

/*==================================================
global 変数やmixin
==================================================*/
/*==================================================
layout 
==================================================*/
/*==================================================
layout
====================================================*/
/*==================================================
common
====================================================*/
/*====sp/pc====*/
.sp {
  display: block;
}
@media screen and (min-width: 1000px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc {
    display: block;
  }
}

/*====body====*/
body {
  background-color: #F7FCFF;
}

/*====main-title====*/
.main-title {
  font-size: 20px;
  margin: 70px 0 50px 0;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .main-title {
    font-size: 25px;
    margin: 70px 0 70px 0;
  }
}

/*==================================================
  header
====================================================*/
.header__inner {
  width: min(90%, 1720px);
  margin: auto;
}

header {
  width: 100%;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

header img {
  width: 170px;
  height: auto;
  padding-top: 15px;
}
@media screen and (min-width: 1000px) {
  header img {
    width: 260px;
    padding-top: 45px;
  }
}

.pc__nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc__nav {
    display: block;
  }
}

.pc__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.pc__nav li {
  padding-left: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.pc__nav li:first-child {
  padding-left: 0;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ハンバーガーメニュー */
/* overlay-styles.css */
/* ボタンの基本 */
.navButton {
  position: relative;
  width: 30px;
  height: 27px;
  border: none;
  background: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  z-index: 1000; /* メニューより前面に */
}

/* 棒の共通スタイル */
.navButton span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 横ずれを防ぐために、回転の基準点を中央に設定 */
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: relative; /* 子要素のtransform基準にする */
}

/* active状態でのアニメーション */
header.active .navButton span:nth-child(1) {
  -webkit-transform: translateY(17px) rotate(45deg);
          transform: translateY(17px) rotate(45deg);
  background: #fff;
}

header.active .navButton span:nth-child(2) {
  opacity: 0;
}

header.active .navButton span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
  background: #fff;
}

/* メニュー非表示 */
.global__nav {
  display: none;
}

header.active .global__nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  background-color: #368ECE;
  height: 100svh;
  width: 100vw;
}

/* スクロール防止 */
body.is-fixed {
  overflow: hidden;
}

.nav__content--overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1000px) {
  .header__nav {
    display: none;
  }
}

.nav__list--overlay {
  text-align: center;
  color: #fff;
}

.nav__item--overlay {
  padding-bottom: 55px;
  font-weight: 700;
}

.nav__list--overlay li:last-child {
  padding-bottom: 0;
}

/*==================================================
footer
====================================================*/
footer {
  background-color: #004BB1;
  text-align: center;
  color: #fff;
}

.footer__container {
  padding-bottom: 50px;
}

.foot__nav {
  padding-top: 55px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  .foot__nav {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.foot__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .foot__nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.foot__nav--overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.foot__nav li {
  padding-bottom: 55px;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .foot__nav li {
    padding-bottom: 0;
    padding-left: 50px;
    text-align: center;
  }
}

.foot__nav li:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 1000px) {
  .foot__nav li:first-child {
    padding-left: 0;
  }
}

/*==================================================
page
==================================================*/
/*==================================================
layout
====================================================*/
/*==================================================
top
====================================================*/
.header {
  position: absolute;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pc__nav.top-nav a {
  color: #fff;
}

.navButton span.top-line {
  background: #fff;
}

main {
  letter-spacing: 0.5px;
}

.hero {
  background-image: url(../img/top/top-main-img_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
}
@media screen and (min-width: 1000px) {
  .hero {
    background-image: url(../img/top/top-main-img_pc.jpg);
  }
}

.hero__container {
  color: #fff;
  height: 100%;
}

.top__inner {
  width: min(90%, 1520px);
  margin: auto;
  position: relative;
}

.hero__catchcopy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100svh;
}

.hero__img-catchcopy {
  width: clamp(308px, 252.712px + 14.744vw, 400px);
}
@media screen and (min-width: 1000px) {
  .hero__img-catchcopy {
    width: clamp(600px, 239.796px + 36.02vw, 953px);
  }
}

.hero__topics {
  position: absolute;
  bottom: 70px;
  background-color: #004BB1;
  padding: 15px 20px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .hero__topics {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    bottom: 100px;
  }
}

.hero__topics-title {
  font-size: 18px;
  font-weight: 700;
}

.hero__text {
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .hero__text {
    line-height: 1.5;
    font-size: 18px;
  }
}
.hero__text a {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.btn__area {
  margin-bottom: 100px;
}

.top__text {
  letter-spacing: 2.5px;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
  text-align: center;
}

.top__btn {
  color: #004BB1;
  border: 2px solid #004BB1;
  padding: 8px 15px;
  border-radius: 20px;
}

/*==================================================
about
====================================================*/
.about__container {
  width: min(90%, 900px);
  margin: auto;
}

.about__text {
  letter-spacing: 2.5px;
  font-size: 15px;
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 1000px) {
  .about__text {
    text-align: center;
  }
}

.about__container .about__slogan {
  font-size: 25px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 55px;
  text-align: center;
}

.about__border {
  margin-top: 65px;
  margin-bottom: 75px;
  background-color: #707070;
}
@media screen and (min-width: 1000px) {
  .about__border {
    margin-top: 60px;
    margin-bottom: 65px;
  }
}

.about__company-h2 {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .about__company-h2 {
    margin-bottom: 20px;
  }
}

.about__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 75px;
  margin-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  .about__company {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}

@media screen and (min-width: 1000px) {
  .about__company .about__text {
    text-align: left;
  }
}

@media screen and (min-width: 1000px) {
  .about__president-img {
    width: 280px;
    height: auto;
  }
}

.about__company-firstp {
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .about__company-firstp {
    margin-bottom: 15px;
  }
}

.about__btn {
  color: #004BB1;
  border: 2px solid #004BB1;
  padding: 8px 15px;
  border-radius: 20px;
}

/*==================================================
products
====================================================*/
.products {
  padding-top: 90px;
}

.products-detail {
  margin-top: 40px;
}

.products-detail__container {
  width: min(90%, 900px);
  margin: auto;
}

.products-detail__title-area {
  margin-bottom: 20px;
}

.products-detail__category {
  color: #676767;
  font-size: 12px;
}
@media screen and (min-width: 1000px) {
  .products-detail__category {
    font-size: 14px;
    font-weight: 700;
  }
}

.products-detail__title {
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (min-width: 1000px) {
  .products-detail__title {
    font-size: 20px;
    padding: 7px 0;
  }
}

.products-detail__url {
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (min-width: 1000px) {
  .products-detail__url {
    font-size: 15px;
  }
}

.products-detail__eyecatch img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 200px;
  width: 100%;
  border: 1px solid #707070;
}
@media screen and (min-width: 1000px) {
  .products-detail__eyecatch img {
    max-height: 500px;
  }
}

.products-detail__border {
  background-color: #707070;
  margin: 40px 0 50px 0;
}
@media screen and (min-width: 1000px) {
  .products-detail__border {
    margin: 50px 0 50px 0;
  }
}

.products-detail__d-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

.products-detail__border-bot {
  background-color: #707070;
  margin: 40px 0 50px 0;
}
@media screen and (min-width: 1000px) {
  .products-detail__border-bot {
    margin: 50px 0 80px 0;
  }
}

.products-detail__backbtn {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (min-width: 1000px) {
  .products-detail__backbtn {
    margin-bottom: 100px;
  }
}

/*==================================================
news
====================================================*/
.news__container {
  width: min(90%, 800px);
  margin: auto;
}

.news-post {
  padding: 30px 0 25px 0;
  background-image: linear-gradient(to right, #707070 5px, transparent 5px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
}
@media screen and (min-width: 1000px) {
  .news-post {
    padding: 30px 0;
  }
}

.news-post:first-child {
  padding: 0 0 25px 0;
  background-image: none;
}
@media screen and (min-width: 1000px) {
  .news-post:first-child {
    padding: 0 0 30px 0;
  }
}

.news-post:last-child {
  padding: 30px 0 0 0;
}

.news-post__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding: 0 8px;
}
@media screen and (min-width: 1000px) {
  .news-post__text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 30px;
    padding: 0 15px;
  }
}

.news-post__date {
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 1000px) {
  .news-post__date {
    font-size: 18px;
  }
}

.news-post__title {
  line-height: 2;
  text-align: justify;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1000px) {
  .news-post__title {
    font-size: 18px;
  }
}

.no-post {
  line-height: 2;
  text-align: justify;
}
@media screen and (min-width: 1000px) {
  .no-post {
    font-size: 18px;
  }
}

.news__area {
  margin-bottom: 70px;
}

ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-weight: 700;
  margin-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  ul.page-numbers {
    margin-bottom: 110px;
  }
}
ul.page-numbers a {
  text-decoration: underline;
}
ul.page-numbers a.prev,
ul.page-numbers a.next {
  text-decoration: none;
}

.news-detail {
  margin-top: 60px;
}
@media screen and (min-width: 1000px) {
  .news-detail {
    margin-top: 130px;
  }
}

.news-detail__container {
  width: min(90%, 900px);
  margin: auto;
}

.news-detail__title-area {
  margin-bottom: 30px;
}

.news-detail__date {
  font-size: 14px;
}

.news-detail__title {
  font-size: 18px;
  font-weight: 700;
  padding: 10px 0;
}
@media screen and (min-width: 1000px) {
  .news-detail__title {
    font-size: 20px;
    padding: 7px 0;
  }
}

.news-detail__backbtn {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 80px 0 90px 0;
}
@media screen and (min-width: 1000px) {
  .news-detail__backbtn {
    margin: 90px 0 110px 0;
  }
}

/*==================================================
contact
====================================================*/
.contact__container {
  width: min(90%, 800px);
  margin: auto;
}

.contact__text {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .contact__text {
    font-size: 15px;
    margin-bottom: 60px;
    text-align: center;
  }
}

.foem__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  margin-bottom: 35px;
  background-image: linear-gradient(to right, #707070 5px, transparent 5px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  padding-top: 35px;
}
@media screen and (min-width: 1000px) {
  .foem__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 40px;
  }
}

.foem__item:first-child {
  background-image: none;
  padding-top: 0;
}

.foem__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1000px) {
  .foem__area-item {
    font-size: 18px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.foem__area-item .required::after {
  content: "必須";
  font-size: 13px;
  background-color: #004bb1;
  color: #fff;
  padding: 2px 17px 4px 17px;
  border-radius: 3px;
  margin-left: 20px;
}

.input-text {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #004bb1;
  background-color: #f8f8f8;
}
@media screen and (min-width: 1000px) {
  .input-text {
    width: 500px;
  }
}

.input-message {
  width: 100%;
  height: 160px;
  padding: 10px;
  border: 1px solid #004bb1;
  background-color: #f8f8f8;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .input-message {
    width: 500px;
  }
}

.foem__btn-area {
  text-align: center;
  margin: 80px 0 100px 0;
}
@media screen and (min-width: 1000px) {
  .foem__btn-area {
    margin: 90px 0 120px 0;
  }
}

.foem__btn {
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}

.confirm__container {
  width: min(90%, 800px);
  margin: auto;
}

.confirm__text {
  font-size: 14px;
  text-align: justify;
  margin-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .confirm__text {
    font-size: 15px;
    margin-bottom: 60px;
    text-align: center;
  }
}

.confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  margin-bottom: 35px;
  background-image: linear-gradient(to right, #707070 5px, transparent 5px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  padding-top: 35px;
}
@media screen and (min-width: 1000px) {
  .confirm__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 40px;
  }
}

.confirm__item:first-child {
  background-image: none;
  padding-top: 0;
}

.confirm__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1000px) {
  .confirm__area-item {
    font-size: 18px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.confirm__area-text {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .confirm__area-text {
    width: 540px;
  }
}

.confirm__btn-area {
  text-align: center;
  margin: 160px 0 110px 0;
}
@media screen and (min-width: 1000px) {
  .confirm__btn-area {
    margin: 220px 0 120px 0;
  }
}

.confirm__btn {
  display: inline-block;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
  margin-right: 140px;
  color: #000;
}

.confirm__btn:last-child {
  margin-right: 0;
}

.complete__container {
  width: min(90%, 900px);
  margin: auto;
}

.complete__text {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
  margin-bottom: 50px;
}
@media screen and (min-width: 1000px) {
  .complete__text {
    margin-bottom: 40px;
  }
}

.complete__text:last-child {
  margin-bottom: 0;
}

.complete__backbtn {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 170px 0 100px 0;
}
@media screen and (min-width: 1000px) {
  .complete__backbtn {
    margin: 90px 0 120px 0;
  }
}

/*==================================================
notfound
====================================================*/
.notfound__container {
  width: min(90%, 900px);
  margin: auto;
}

.notfound__text {
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}

.notfound__backbtn {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 100px 0 90px 0;
}
@media screen and (min-width: 1000px) {
  .notfound__backbtn {
    margin: 170px 0 140px 0;
  }
}

/*==================================================
policy
====================================================*/
.policy__container {
  width: min(90%, 900px);
  margin: auto;
}

.policy__text {
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .policy__text {
    margin-bottom: 40px;
  }
}

.policy__text:last-child {
  margin-bottom: 100px;
}
@media screen and (min-width: 1000px) {
  .policy__text:last-child {
    margin-bottom: 140px;
  }
}

.policy__title {
  font-size: 15px;
  font-weight: 700;
  text-align: justify;
}

/*==================================================
parts
==================================================*/
/*==================================================
parts
====================================================*/
/*==================================================
list
====================================================*/
.products__inner {
  width: min(90%, 1520px);
  margin: auto;
}

.products-container {
  margin-top: 25px;
}
@media screen and (min-width: 1000px) {
  .products-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
  }
}

.products-title {
  font-size: 20px;
  margin-bottom: 25px;
}

.products__nav-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.products__nav-li {
  padding-right: 30px;
  padding-bottom: 25px;
  text-align: center;
  font-size: 15px;
}

.products__nav-li:last-child {
  padding-right: 0;
}

.products__nav-li--here {
  -webkit-text-decoration: #004bb1 underline 1px;
          text-decoration: #004bb1 underline 1px;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.products__nav-li--hover:hover {
  -webkit-text-decoration: #004bb1 underline 1px;
          text-decoration: #004bb1 underline 1px;
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}

.products-hr {
  margin-bottom: 50px;
  background-color: #707070;
}
@media screen and (min-width: 1000px) {
  .products-hr {
    margin-bottom: 80px;
  }
}

.products-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1000px) {
  .products-content {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px 40px;
  }
}

.products-post img {
  border: 2px solid #004BB1;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 320px;
  aspect-ratio: 5/4;
}

.products-sentence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.products-text {
  font-size: 14px;
  font-weight: 700;
}

.products-post-title {
  font-weight: 400;
  font-size: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
@media screen and (min-width: 1000px) {
  .products-post-title {
    font-size: 18px;
  }
}

/*==================================================
detail
====================================================*/
.detail__container p {
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 25px;
}
.detail__container figure {
  margin: 20px 0 70px;
}
@media screen and (min-width: 1000px) {
  .detail__container figure {
    margin: 30px 0 70px;
  }
}
@media screen and (min-width: 1000px) {
  .detail__container img {
    max-height: 700px;
    width: auto;
  }
}
.detail__container .youtube {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.detail__container .youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.detail__container > *:last-child {
  margin-bottom: 0;
}

/*==================================================
pagenation
====================================================*/