@charset "UTF-8";
/* =====================================================
* base
* =================================================== */
body {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 100%;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #303437;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

main {
  padding-top: 130px;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 80px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: #303437;
}

li {
  list-style: none;
}

p {
  word-break: break-all;
}

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

/* =====================================================
* header
* =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 130px;
  background: #FFF;
  z-index: 10;
}
.header .wrap--header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
    align-items: center;
  }
  .header .wrap--header {
    align-items: center;
  }
}

/* logo --------------------------------------------- */
.header__logo {
  width: 29%;
  max-width: 418px;
}
.header__logo a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header__logo h1 {
  margin-left: 10px;
  font-size: clamp(0.875rem, 0.302rem + 0.89vw, 1.375rem);
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: auto;
    max-width: none;
  }
  .header__logo img {
    max-width: 130px;
  }
  .header__logo h1 {
    margin-left: 20px;
    font-size: clamp(0.875rem, 0.62rem + 0.98vw, 1.25rem);
  }
}
@media screen and (max-width: 767px) {
  .header__logo img {
    max-width: 100px;
  }
  .header__logo h1 {
    margin-left: 10px;
  }
}

/* header nav --------------------------------------- */
.header__nav {
  text-align: center;
}
.header__nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav ul li {
  font-size: clamp(0.875rem, 0.732rem + 0.22vw, 1rem);
}
.header__nav ul li:not(:first-of-type, :last-of-type) {
  margin-left: 2.6vw;
}
.header__nav ul li a {
  font-weight: bold;
  color: #3B4043;
  transition: 0.3s;
}
.header__nav ul li a .en {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.17;
  color: #A1A1A1;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav ul li:hover a {
    color: #0B2561;
  }
  .header__nav ul li:hover .en {
    color: #0B2561;
  }
}
.header__nav ul .header__nav--contact {
  margin-left: 3.6vw;
}
.header__nav ul .header__nav--contact a {
  display: flex;
  align-items: center;
  padding: 27px 2.07vw;
  color: #FFF;
  background: #0B2561;
}
.header__nav ul .header__nav--contact a i {
  font-size: clamp(1.125rem, 0.696rem + 0.67vw, 1.5rem);
  margin-right: 17px;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav ul .header__nav--contact a:hover {
    background: #FFF;
  }
}

.sp-menu {
  position: relative;
  z-index: 999;
  display: none;
  width: 30px;
  height: 22px;
}
.sp-menu-bar {
  display: inline-block;
  transition: all 0.3s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: #0B2561;
}
.sp-menu-bar__top {
  top: 0;
}
.sp-menu-bar__mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp-menu-bar__btm {
  bottom: 0;
}
.sp-menu.show .sp-menu-bar__top, .sp-menu.show .sp-menu-bar__btm {
  top: 50%;
}
.sp-menu.show .sp-menu-bar__top {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp-menu.show .sp-menu-bar__mid {
  opacity: 0;
}
.sp-menu.show .sp-menu-bar__btm {
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 1024px) {
  .header__nav {
    position: fixed;
    top: 80px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    height: calc(100vh - 80px);
    padding-top: 20px;
    background: #FFF;
    transform: translateX(130%);
    transition: 0.3s;
  }
  .header__nav ul {
    align-items: flex-start;
    flex-direction: column;
    width: 90%;
  }
  .header__nav ul li {
    width: 100%;
    font-size: 1rem;
  }
  .header__nav ul li:first-of-type {
    border-top: 1px solid #0B2561;
  }
  .header__nav ul li:not(:last-of-type) {
    border-bottom: 1px solid #0B2561;
  }
  .header__nav ul li:not(:first-of-type, :last-of-type) {
    margin-left: 0;
  }
  .header__nav ul li a {
    display: flex;
    align-items: baseline;
    padding: 20px 0;
  }
  .header__nav ul li a .en {
    margin-left: 10px;
  }
  .header__nav ul .header__nav--contact {
    margin: 40px 0 0 0;
    border: 1px solid #0B2561;
  }
  .header__nav ul .header__nav--contact a {
    justify-content: center;
  }
  .header__nav ul .header__nav--contact a i {
    margin-right: 10px;
  }
  .header__nav ul .header__nav--contact a .en {
    display: inline-block;
    margin-left: 5px;
  }
  .header__nav.show {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    width: 80%;
  }
}
/* =====================================================
* content
* =================================================== */
.wrap {
  width: 100%;
  max-width: 1130px;
  padding: 0 15px;
  margin: 0 auto;
}
.wrap--header {
  width: 100%;
  max-width: 1667px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrap--top-wide {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}
.wrap--maker-wide {
  max-width: 1448px;
  margin: 0 auto;
  padding: 0 15px;
}
.wrap--contact {
  max-width: 1118px;
}

.bg--wh {
  background: #FFF;
}

.fa-phone {
  margin-left: 5px;
  transform: rotate(15deg);
}

/* =====================================================
* footer
* =================================================== */
.footer {
  padding: 107px 0 30px;
  background: #303437;
  font-weight: bold;
  color: #FFF;
}
.footer a {
  color: #FFF;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 75px 90px 55px;
}
.footer small {
  display: block;
  width: 100%;
  font-family: "Noto Sans Armenian", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    padding: 0 15px 90px 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 80px 0 20px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 70px;
  }
}
.footer small {
  font-size: 0.625rem;
}

/* footer info -------------------------------------- */
.footer__info {
  font-size: 0.9375rem;
  line-height: 1.67;
}
.footer__info p:first-of-type {
  margin: 35px 0 15px;
  letter-spacing: 0.1em;
}

/* footer nav --------------------------------------- */
.footer__nav {
  padding-left: 40px;
  font-size: 0.9375rem;
  border-left: 1px solid #FFF;
}
.footer__nav li {
  margin-top: 10px;
}

/* footer contact ----------------------------------- */
.footer__contact-tel {
  margin-bottom: 30px;
}
.footer__contact-tel p:first-of-type {
  margin-left: calc(1.5625rem + 10px);
  font-size: 0.9375rem;
}
.footer__contact-tel span {
  font-size: 1.5625rem;
  letter-spacing: 0.1em;
}
.footer__contact-tel p:last-of-type {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}
.footer__contact-mail {
  padding: 15px 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFF;
  transition: 0.3s;
}
.footer__contact-mail i {
  font-size: 1.5rem;
  margin-right: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .footer__contact-mail:hover {
    background: #FFF;
    color: #303437;
  }
}

@media screen and (max-width: 1024px) {
  .footer__nav {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__info {
    margin-bottom: 40px;
  }
  .footer__info p:first-of-type {
    margin: 15px 0 5px;
  }
  .footer__nav {
    padding: 20px 20px 0;
    margin-bottom: 40px;
    border-left: none;
    border-top: 1px solid #FFF;
  }
  .footer__nav li:first-of-type {
    margin-top: 0;
  }
  .footer__contact {
    text-align: center;
  }
  .footer__contact-tel p:first-of-type {
    margin-left: 0;
  }
}
/* =====================================================
* layout - etc
* =================================================== */
/* 改行 ---------------------------------------------- */
@media screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br-tab {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .br-pc-tab {
    display: none;
  }
}

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

/* 表示/非表示 ---------------------------------------- */
.none-pc {
  display: none;
}
@media screen and (max-width: 1024px) {
  .none-pc {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .none-tab-sp {
    display: none;
  }
}

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

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

/* =====================================================
* section triangle
* =================================================== */
.section {
  position: relative;
}
.section.section--r::after, .section.section--l::after {
  content: "";
  position: absolute;
  top: 0;
  width: 38.45vw;
  height: 28.05vw;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .section.section--r::after, .section.section--l::after {
    width: 70vw;
    height: 60vw;
  }
}
.section.section--r::after {
  right: 0;
  background-image: url(../img/triangle_r.png);
  background-position: top right;
}
.section.section--l::after {
  left: 0;
  background-image: url(../img/triangle_l.png);
  background-position: top left;
}

/* =====================================================
* section title
* =================================================== */
.section__title {
  font-family: "Noto Sans Armenian", sans-serif;
  letter-spacing: 0.1em;
}
.section__title h2 {
  position: relative;
  width: fit-content;
  padding-bottom: 46px;
  font-size: 2.5rem;
  font-weight: 400;
}
.section__title h2::before, .section__title h2::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section__title h2::before {
  content: "";
  top: 64%;
  width: 78px;
  height: 1px;
  background: #0B2561;
}
.section__title h2::after {
  bottom: 0;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.section__title.center h2 {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .section__title h2 {
    padding-bottom: 35px;
    font-size: clamp(1.75rem, 1.24rem + 1.97vw, 2.5rem);
  }
  .section__title h2::before {
    top: 61%;
  }
  .section__title h2::after {
    font-size: 0.75rem;
  }
}

#about .section__title h2::after {
  content: "Nプロ電材について";
}

#products .section__title h2::after {
  content: "取扱い商品";
}

#greeting .section__title h2::after {
  content: "ごあいさつ";
}

#service .section__title h2::after {
  content: "Nプロ電材の事業領域";
}

#maker-link .section__title h2::after {
  content: "取扱いメーカー一覧";
}

#company .section__title h2::after {
  content: "企業情報";
}

#profile .section__title h2::after {
  content: "会社概要";
}

#access .section__title h2::after {
  content: "アクセスマップ";
}

#contact .section__title h2::after {
  content: "お問い合わせ";
}

/* =====================================================
* section text
* =================================================== */
.section__text {
  font-family: "ten-mincho-text", serif;
  font-size: 1.875rem;
  line-height: 1.83;
}
@media screen and (max-width: 1024px) {
  .section__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section__text {
    font-size: clamp(1.125rem, 0.87rem + 0.98vw, 1.5rem);
  }
}

/* =====================================================
* button
* =================================================== */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #3B4043;
  font-family: "Noto Sans Armenian", sans-serif;
  font-size: 0.875rem;
  transition: 0.3s;
}
.btn span {
  display: inline-block;
  width: 75px;
  height: 1px;
  margin: 5px 0 0 12px;
  transition: 0.3s;
  position: relative;
}
.btn span::before, .btn span::after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  background: #21897E;
}
.btn span::before {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.btn span::after {
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}

/* page top btn ------------------------------------- */
.page-top {
  padding: 18px 0 10px;
  background: #707070;
  text-align: center;
}
.page-top a {
  font-family: "Noto Sans Armenian", sans-serif;
  font-size: 0.75rem;
  color: #FFF;
}
.page-top a span {
  display: block;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 14px 8px;
  border-color: transparent transparent #FFF transparent;
}
@media screen and (max-width: 767px) {
  .page-top {
    padding: 10px 0 0;
  }
}

/* =====================================================
* page title
* =================================================== */
.page-title {
  position: relative;
}
.page-title span {
  position: absolute;
  left: 0;
  bottom: -35px;
  display: block;
  width: 100%;
  height: 35px;
  background: #F8F9F9;
}
.page-title .section__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -96px;
  padding: 10px 0 18px;
  width: 31%;
  max-width: 575px;
  min-width: 230px;
  text-align: center;
  color: #FFF;
  background: rgba(11, 37, 97, 0.9019607843);
  z-index: 2;
}
.page-title .section__title h2 {
  font-size: 2.1875rem;
  font-weight: 300;
}
.page-title .section__title h2::before {
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .page-title img {
    min-height: 140px;
    object-fit: cover;
  }
  .page-title span {
    bottom: -15px;
    height: 15px;
  }
  .page-title .section__title {
    bottom: -80px;
    padding: 0 0 15px;
  }
}

/* =====================================================
* top
* =================================================== */
/* fv ----------------------------------------------- */
.fv {
  position: relative;
}
.fv__slider {
  overflow: hidden;
}
.fv__slider li img {
  width: 100%;
  height: calc(100vh - 130px);
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .fv__slider li img {
    height: calc(100vh - 80px);
  }
}

.scroll {
  position: absolute;
  left: 20px;
  bottom: 120px;
  display: flex;
  align-items: center;
  font-family: "Noto Sans Armenian", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #173476;
  transform: rotate(90deg);
}
.scroll span:first-of-type {
  margin-right: 10px;
}
.scroll span:last-of-type {
  display: inline-block;
  width: 95px;
  animation: scrollArrow 0.8s linear infinite alternate;
  position: relative;
}
.scroll span:last-of-type::before, .scroll span:last-of-type::after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  background: #21897E;
}
.scroll span:last-of-type::before {
  top: 50%;
  transform: translateY(-50%);
  width: 95px;
}
.scroll span:last-of-type::after {
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(45deg);
  width: 13px;
}
.scroll span:last-of-type::before, .scroll span:last-of-type::after {
  height: 2px;
  background: #173476;
}
.scroll span:last-of-type::after {
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 767px) {
  .scroll {
    bottom: 80px;
    left: -20px;
    font-size: 0.875rem;
  }
  .scroll span:last-of-type {
    width: 55px;
  }
  .scroll span:last-of-type::before {
    width: 55px;
  }
}

@keyframes scrollArrow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
/* fv text ------------------------------------------ */
.fv__inner {
  width: 100%;
  position: absolute;
  top: 36.5%;
}
.fv__inner p {
  font-family: "ten-mincho-text", serif;
  font-size: 1.875rem;
  color: #173476;
  text-align: center;
}
.fv__inner p.md {
  font-size: 2.5rem;
}
.fv__inner p.lg {
  font-size: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .fv p {
    font-size: clamp(1rem, 0.405rem + 2.3vw, 1.875rem);
  }
  .fv p.md {
    font-size: clamp(1.25rem, 0.4rem + 3.28vw, 2.5rem);
  }
  .fv p.lg {
    font-size: clamp(2rem, -0.891rem + 11.15vw, 6.25rem);
  }
}
@media screen and (max-width: 767px) {
  .fv__inner {
    top: 55%;
    transform: translateY(-50%);
  }
}

/* about -------------------------------------------- */
.about {
  padding: 110px 0 105px;
}
.about__inner {
  width: 87%;
  max-width: 1130px;
  margin: 0 auto;
}
.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54.01%;
  background: #F8F9F9;
  z-index: -1;
}
.about .section__title {
  margin-bottom: 63px;
}
.about .section__text {
  margin-bottom: 100px;
}
.about .wrap {
  padding: 0;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 80px 0 85px;
  }
  .about::before {
    height: 80%;
  }
  .about .section__title {
    margin-bottom: 40px;
  }
  .about .section__text {
    margin-bottom: 60px;
  }
}

/* about list --------------------------------------- */
.about__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 35px;
}
.about__item {
  position: relative;
  width: 29.01%;
  max-width: 320px;
}
.about__item:nth-of-type(2) {
  margin-top: 84px;
}
.about__item:nth-of-type(3) {
  margin-top: 168px;
}
.about__item::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 28px;
  width: 100%;
  height: 100%;
  background: #FFF;
  z-index: -1;
}
.about__text {
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  padding: 30px 5px 40px 30px;
  color: #FFF;
  background: rgba(59, 64, 67, 0.5019607843);
}
.about__text h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.25;
}
.about__text p {
  font-size: 0.9375rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .about__text {
    padding-left: 15px;
    padding: 20px 5px 20px 15px;
  }
  .about__text h3 {
    margin-bottom: 10px;
    font-size: clamp(1rem, 0.745rem + 0.98vw, 1.375rem);
  }
  .about__text p {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .about__list {
    flex-direction: column;
  }
  .about__item {
    width: 70%;
  }
  .about__item:nth-of-type(2) {
    margin: 50px auto 0;
  }
  .about__item:nth-of-type(3) {
    margin: 50px 0 0 auto;
  }
  .about__item::after {
    left: 15px;
    bottom: 15px;
  }
}

/* about more btn ----------------------------------- */
.about__btn {
  width: 220px;
  margin-left: auto;
  padding: 9px 0 9px 22px;
}
.about__btn span::after {
  right: -1px;
}
@media (hover: hover) and (pointer: fine) {
  .about__btn:hover {
    background: #0B2561;
    color: #FFF;
  }
  .about__btn:hover span,
  .about__btn:hover span::before,
  .about__btn:hover span::after {
    background: #FFF;
  }
}

/* products ----------------------------------------- */
.top-products {
  position: relative;
  padding-top: 95px;
  background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 78%, #FFF 78%, #FFF 100%);
}
.top-products .section__title {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .top-products {
    padding-top: 65px;
    background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 87%, #FFF 87%, #FFF 100%);
  }
  .top-products .section__title {
    margin-bottom: 50px;
  }
}

/* products list ------------------------------------ */
.top-products__list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0 15px;
}
.top-products__list::after {
  content: "";
  display: block;
  width: 263px;
  height: 0;
}
.top-products__item {
  width: 263px;
  margin-bottom: 70px;
}
.top-products__item img {
  height: 263px;
}
.top-products__item p {
  padding-top: 10px;
  font-size: 0.9375rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-products__item {
    margin-bottom: 50px;
  }
}

/* product more btn --------------------------------- */
a.top-products__btn {
  width: 100%;
  height: 263px;
  border-color: #0B2561;
  background: #0B2561;
  color: #FFF;
}
a.top-products__btn span,
a.top-products__btn span::before,
a.top-products__btn span::after {
  background: #FFF;
}
a.top-products__btn span::after {
  right: -1px;
}
@media (hover: hover) and (pointer: fine) {
  a.top-products__btn:hover {
    color: #303437;
    background: #FFF;
    border-color: #3B4043;
  }
  a.top-products__btn:hover span,
  a.top-products__btn:hover span::before,
  a.top-products__btn:hover span::after {
    background: #21897E;
  }
}

/* =====================================================
* about
* =================================================== */
/* greeting ----------------------------------------- */
.greeting {
  padding: 180px 0 90px;
}
.greeting__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
}
.greeting__text {
  width: 68.4%;
}
.greeting__text p:last-of-type {
  margin-top: 40px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 2.33;
}
@media screen and (max-width: 767px) {
  .greeting {
    padding: 160px 0 70px;
  }
  .greeting .section__title {
    margin-bottom: 40px;
  }
  .greeting__inner {
    padding-left: 0;
    flex-direction: column;
  }
  .greeting__text {
    width: 100%;
  }
}

/* service ------------------------------------------ */
.service {
  position: relative;
  padding: 70px 0 125px;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/service_bg.jpg);
  background-size: contain;
}
.service .section__title {
  margin-right: 50px;
}
.service .section__title h2 {
  margin-left: auto;
  color: #FFF;
}
.service .section__title h2::before {
  background: #FFF;
}
.service__inner {
  position: relative;
  margin-top: 9.65vw;
  padding-top: 57px;
  background: linear-gradient(180deg, #F8F9F9 0%, #F8F9F9 82%, transparent 82%, transparent 100%);
}
.service__inner::before, .service__inner::after {
  content: "";
  position: absolute;
  top: 0;
  height: 82%;
  background: #F8F9F9;
}
.service__inner::before {
  width: 160px;
  left: -160px;
}
.service__inner::after {
  width: 50%;
  right: -50%;
}
@media screen and (max-width: 1024px) {
  .service__inner::before, .service__inner::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .service {
    padding: 50px 0 105px;
  }
  .service::before {
    height: 250px;
    background-size: cover;
    background-position: top right;
  }
  .service__inner {
    padding-top: 37px;
    margin-top: 60px;
    background: #F8F9F9;
  }
  .service__inner::before, .service__inner::after {
    content: none;
  }
}

/* service list ------------------------------------- */
.service__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
  margin-top: 60px;
  z-index: 2;
}
.service__item {
  width: 27.28%;
  max-width: 300px;
}
.service__item:nth-of-type(4) {
  margin-left: 7.2vw;
}
.service__item p {
  margin-top: 10px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #3B4043;
}
@media screen and (max-width: 767px) {
  .service__list {
    display: flex;
    justify-content: space-around;
    gap: 30px 10px;
    margin-top: 40px;
  }
  .service__item {
    width: 300px;
  }
  .service__item:nth-of-type(4) {
    margin-left: 0;
  }
  .service__item p {
    margin-top: 5px;
  }
}

/* =====================================================
* products
* =================================================== */
.products {
  padding: 175px 0 115px;
  background: #F8F9F9;
  overflow-x: hidden;
}
.products a {
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .products a:hover {
    opacity: 0.6;
  }
}
.products__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .products {
    padding: 155px 0 95px;
  }
  .products__inner {
    margin-top: 55px;
  }
}

/* products nav -------------------------------------- */
.products__nav {
  height: 100%;
}
.products__nav-wrap {
  width: 22%;
}
.products__nav ul {
  position: sticky;
  top: 145px;
  border-top: 0.5px solid #A1A1A1;
}
.products__nav li {
  border-bottom: 0.5px solid #A1A1A1;
}
.products__nav li a {
  position: relative;
  display: block;
  padding: 24px 0 24px 18px;
  font-size: 1.125rem;
  font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
  font-weight: bold;
  line-height: 1;
  color: #3B4043;
}
.products__nav li a::before, .products__nav li a::after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  background: #21897E;
}
.products__nav li a::before {
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
}
.products__nav li a::after {
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
}
@media screen and (max-width: 1024px) {
  .products__nav li a {
    padding-left: 10px;
  }
}

/* products list ------------------------------------- */
.products__list {
  width: 71.55%;
  margin-left: auto;
}
.products__item {
  position: relative;
  display: flex;
  padding: 44px 0 44px 42px;
  color: #3B4043;
  background: #FFF;
}
.products__item:not(:last-of-type) {
  margin-bottom: 24px;
}
.products__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: -52%;
  width: 52%;
  height: 100%;
  background: #FFF;
}
.products__desc {
  width: 52.89%;
  margin-right: 50px;
}
.products__desc h2 {
  position: relative;
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 17px;
}
.products__desc h2::before, .products__desc h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}
.products__desc h2::before {
  width: 100%;
  background: #A1A1A1;
}
.products__desc h2::after {
  width: 22.4%;
  background: #21897E;
}
.products__desc p {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.14;
}
.products__img {
  position: relative;
  width: 80.5%;
  margin-bottom: 65px;
  z-index: 2;
}
.products__img::after {
  content: "";
  position: absolute;
  left: 15.5%;
  bottom: -12.5%;
  width: 367px;
  width: 115.7%;
  height: 285px;
  height: 88.84%;
  background: #F8F9F9;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .products__list {
    width: 100%;
  }
  .products__item {
    flex-direction: column;
    padding: 20px;
  }
  .products__img {
    margin-bottom: 45px;
  }
  .products__img::after {
    left: 7.5%;
    bottom: -9.5%;
  }
  .products__desc {
    width: 100%;
    margin-left: 0;
  }
  .products__desc h2 {
    font-size: 1.125rem;
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
}

/* products maker ----------------------------------- */
.products__maker {
  position: relative;
  padding-top: 5px;
  z-index: 2;
}
.products__maker h3 {
  display: inline-block;
  padding: 3px 23px 3px 18px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: #FFF;
  background: #0B2561;
}
.products__maker li {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.14;
}
.products__maker li a {
  color: #3B4043;
}
@media screen and (max-width: 767px) {
  .products__maker {
    margin-top: 15px;
  }
  .products__maker h3 {
    margin-bottom: 10px;
  }
}

/* =====================================================
* maker-link
* =================================================== */
.maker-link {
  padding: 180px 0 70px;
  background: #F8F9F9;
}
.maker-link .wrap {
  position: relative;
  z-index: 2;
}
.maker-link__nav ul {
  display: flex;
  justify-content: space-between;
}
.maker-link__nav ul li {
  width: 9.35%;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  background: #A1A1A1;
  transition: 0.3s;
}
.maker-link__nav ul li.current {
  background: #0B2561;
}
.maker-link__nav ul li a {
  display: block;
  color: #FFF;
}
@media (hover: hover) and (pointer: fine) {
  .maker-link__nav ul li:hover {
    background: #0B2561;
  }
}
@media screen and (max-width: 767px) {
  .maker-link {
    padding: 160px 0 50px;
  }
  .maker-link__nav ul {
    flex-wrap: wrap;
  }
  .maker-link__nav ul li {
    width: 47%;
    font-size: 1.125rem;
  }
  .maker-link__nav ul li:not(:nth-last-of-type(2), :last-of-type) {
    margin-bottom: 15px;
  }
}

/* maker link list ---------------------------------- */
.wrap--maker-wide {
  margin-top: -20px;
  background: #FFF;
}
.wrap--maker-wide .wrap {
  padding: 0;
  max-width: 1100px;
}

.maker-link__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0 75px;
}
.maker-link__list > li {
  width: 47.37%;
  margin-bottom: 60px;
}
.maker-link__list h3 {
  background: #F8F9F9;
  padding: 13px 10px 13px 30px;
  margin-bottom: 15px;
  font-size: 1.25rem;
}
.maker-link__list ul li {
  font-size: 0.875rem;
  font-weight: bold;
  border-bottom: 0.5px solid #707070;
}
.maker-link__list ul li a {
  display: flex;
  align-items: center;
  padding-top: 3px;
  padding-left: 30px;
  height: 50px;
  color: #3B4043;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .maker-link__list ul li a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .maker-link__list {
    flex-direction: column;
    padding: 70px 0 55px;
  }
  .maker-link__list > li {
    width: 100%;
    margin-bottom: 40px;
  }
  .maker-link__list h3 {
    font-size: 1.125rem;
    padding: 10px 10px 10px 15px;
    margin-bottom: 10px;
  }
  .maker-link__list ul li a {
    padding-left: 25px;
  }
}

/* =====================================================
* company
* =================================================== */
#company .section {
  background: #F8F9F9;
  padding: 150px 0 100px;
}
@media screen and (max-width: 767px) {
  #company .section {
    padding: 130px 0 80px;
  }
}

/* profile ------------------------------------------ */
.profile {
  padding: 70px 0 105px;
}
.profile__table {
  margin-top: 75px;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 2.33;
  color: #000;
  border-top: 2px solid #3B4043;
}
.profile__row {
  display: flex;
  padding: 35px 0;
}
.profile__row:not(:last-of-type) {
  border-bottom: 1px solid #CDD6DD;
}
.profile__row dt {
  width: 6%;
  min-width: 65px;
  margin-left: 70px;
  margin-right: 165px;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 50px 0 85px;
  }
  .profile__table {
    margin-top: 55px;
  }
  .profile__row {
    flex-direction: column;
    padding: 10px 0 10px 20px;
    line-height: 1.8;
  }
  .profile__row dt {
    width: 100%;
    margin: 0 0 10px;
  }
  .profile__row dd {
    font-size: 0.875rem;
  }
}

/* access map --------------------------------------- */
.access {
  padding-bottom: 145px;
}
.access__map {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .access {
    padding-bottom: 125px;
  }
  .access__map {
    margin-top: 25px;
  }
  .access__map iframe {
    height: 400px;
  }
}

/* =====================================================
* contact
* =================================================== */
#contact .section {
  background: #F8F9F9;
  padding: 150px 0 85px;
}
#contact .bg--wh {
  padding-top: 100px;
}
.wrap--contact h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.wrap--contact h3 i {
  font-size: 1.8125rem;
  margin-right: 20px;
}
.wrap--contact p {
  font-size: 0.9375rem;
  line-height: 2.33;
}

@media screen and (max-width: 767px) {
  #contact .section {
    padding: 130px 0 65px;
  }
  #contact .bg--wh {
    padding-top: 80px;
  }
  .wrap--contact h3 {
    font-size: 1rem;
  }
  .wrap--contact h3 i {
    font-size: 1.625rem;
    margin-right: 10px;
  }
}

/* contact tel -------------------------------------- */
.contact__tel {
  padding-bottom: 60px;
  margin-bottom: 80px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #CDD6DD;
}
p.contact__tel-num {
  font-size: 1.875rem;
  margin-bottom: 5px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact__tel {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
  .contact__tel p {
    line-height: 1.8;
  }
  p.contact__tel-num {
    font-size: 1.5rem;
  }
}

/* contact mail ------------------------------------- */
.contact__mail {
  padding-bottom: 130px;
}
.contact__mail h3 {
  margin-bottom: 20px;
}
.contact__mail-desc {
  padding: 30px 0 50px;
  font-weight: bold;
  text-align: center;
  color: #000;
  border-top: 2px solid #3B4043;
  border-bottom: 2px solid #3B4043;
}
@media screen and (max-width: 767px) {
  .contact__mail {
    padding-bottom: 110px;
  }
  .contact__mail h3 {
    margin-bottom: 15px;
  }
  .contact__mail-desc {
    padding: 20px 0 30px;
  }
}

/* contact form ------------------------------------- */
.contact__form {
  color: #000;
}
.contact__form-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.contact__form-table tr:not(:last-of-type) th, .contact__form-table tr:not(:last-of-type) td {
  border-bottom: 1px solid #CDD6DD;
}
.contact__form-table th {
  width: 26.8%;
  min-width: 210px;
  font-size: 0.9375rem;
  padding-left: 35px;
  text-align: left;
}
.contact__form-table input,
.contact__form-table textarea {
  border: 1px solid #CDD6DD;
  max-width: 100%;
  padding: 4px 5px;
}
.contact__form-table input {
  width: 66.18%;
  margin: 24px 0;
}
.contact__form-table input[name=郵便番号] {
  width: 26.88%;
}
.contact__form-table tr:last-of-type th {
  display: flex;
  padding-top: 20px;
}
.contact__form-table textarea {
  width: 90.16%;
  height: 290px;
  margin-top: 20px;
}
.contact__form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__form-btn input {
  padding: 23px 10px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FFF;
}
.contact__form-btn input[type=submit] {
  background: #0B2561;
  width: 48.806%;
  margin-right: 60px;
}
.contact__form-btn input[type=reset] {
  width: 25.093%;
  background: #98A6B5;
}
@media screen and (max-width: 767px) {
  .contact__form-table tr,
  .contact__form-table th,
  .contact__form-table td {
    display: block;
  }
  .contact__form-table th,
  .contact__form-table td {
    width: 100%;
  }
  .contact__form-table th {
    padding: 0 0 5px;
  }
  .contact__form-table tr {
    padding: 15px 15px 20px;
  }
  .contact__form-table tr:not(:last-of-type) {
    border-bottom: 1px solid #CDD6DD;
  }
  .contact__form-table tr:not(:last-of-type) th,
  .contact__form-table tr:not(:last-of-type) td {
    border-bottom: none;
  }
  .contact__form-table tr:last-of-type th {
    display: flex;
    padding-top: 0;
  }
  .contact__form-table input,
  .contact__form-table textarea {
    width: 100%;
    margin: 0;
  }
  .contact__form-table input[name=郵便番号] {
    min-width: 214px;
  }
  .contact__form-table textarea {
    height: 250px;
  }
  .contact__form-btn {
    flex-direction: column;
  }
  .contact__form-btn input {
    padding: 10px;
    font-size: 1rem;
  }
  .contact__form-btn input[type=submit], .contact__form-btn input[type=reset] {
    width: 100%;
  }
  .contact__form-btn input[type=submit] {
    margin: 0 0 20px;
  }
}

.privacy {
  padding: 40px 7.35% 60px 7.815%;
  margin: 35px 0 65px;
  background: #F8F9F9;
}
.privacy h4,
.privacy ol li {
  font-weight: 500;
}
.privacy p,
.privacy ol li {
  font-size: 0.875rem;
  line-height: 2.14;
}
.privacy h4 {
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 1.25rem;
  line-height: 1;
  border-bottom: 1px solid #CDD6DD;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ol {
  padding-left: 2.5rem;
}
.privacy ol li {
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 20px 15px 40px;
    margin: 15px 0 45px;
  }
  .privacy h4 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
  .privacy ol {
    padding-left: 1.5rem;
  }
}

/* =====================================================
* contact thanks
* =================================================== */
.contact__thanks {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact__thanks {
    font-size: 1rem;
    padding-bottom: 80px;
  }
}