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

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;
  padding-bottom: 20px;
  background: #FFF;
  z-index: 999;
}
.header .wrap--header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 80px;
    align-items: center;
    padding-bottom: 0;
  }
}

/* logo --------------------------------------------- */
.header__logo {
  width: 22.3%;
  max-width: 320px;
  min-width: 180px;
}
.header__logo a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 30%;
    max-width: 220px;
  }
}

/* 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.1vw;
}
.header__nav ul li a {
  position: relative;
  font-weight: bold;
  color: #3B4043;
  transition: 0.3s;
}
.header__nav ul li:not(:last-of-type) a {
  padding-left: 2.084vw;
}
.header__nav ul li:not(:last-of-type) a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.042vw;
  height: 2px;
  background: #0B2561;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav ul li:hover a {
    color: #0B2561;
  }
}
.header__nav ul .header__nav--contact {
  margin-left: 2.3vw;
}
.header__nav ul .header__nav--contact a {
  width: auto;
  padding: 15px 1.506vw 14px;
  color: #FFF;
}
.header__nav ul .header__nav--contact a i {
  margin-right: 17px;
  font-size: clamp(1.125rem, 0.696rem + 0.67vw, 1.5rem);
}

.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(:last-of-type) a {
    padding-left: 20px;
  }
  .header__nav ul li:not(:last-of-type) a::before {
    width: 10px;
  }
  .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 .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.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: 1460px;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .wrap--header {
    padding-right: 20px;
  }
}
.wrap--contact {
  max-width: 1340px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

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

.bg--lgry {
  background: #F8F9F9;
}

.bg--lbl {
  background: #ECFEFF;
}

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

/* =====================================================
* footer
* =================================================== */
.footer {
  padding: 85px 0 50px;
  background: #0B2561;
  color: #FFF;
}
.footer a {
  color: #FFF;
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 65px;
}
.footer small {
  display: block;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 65px 0 30px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    padding-bottom: 45px;
  }
}

/* footer logo -------------------------------------- */
.footer__logo {
  width: 32%;
  max-width: 320px;
  padding-bottom: 40px;
  margin-right: 145px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    margin-right: 72px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 64%;
    margin-right: 0;
  }
}

/* footer nav --------------------------------------- */
.footer__nav {
  padding-left: 120px;
  font-size: 0.875rem;
  border-left: 1px solid #FFF;
}
.footer__nav li {
  margin-top: 20px;
}
.footer__nav li:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .footer__nav {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 64%;
    padding-top: 40px;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #FFF;
  }
  .footer__nav li {
    margin-top: 10px;
  }
}
/* =====================================================
* 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;
  }
}

/* =====================================================
* button
* =================================================== */
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 25px 8px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #FFF;
  background: #9A031E;
  border: 1px solid #9A031E;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  a.btn:hover {
    color: #9A031E;
    background: #FFF;
  }
  a.btn:hover span::before, a.btn:hover span::after {
    background: #9A031E;
  }
}
a.btn span {
  display: inline-block;
  width: 75px;
  height: 1px;
  margin: 5px 0 0 12px;
  transition: 0.3s;
  position: relative;
}
a.btn span::before, a.btn span::after {
  content: "";
  position: absolute;
  right: 0;
  height: 1px;
  background: #FFF;
}
a.btn span::before {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
a.btn span::after {
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}
@media screen and (max-width: 767px) {
  a.btn {
    font-size: 0.875rem;
  }
}

/* contact btn -------------------------------------- */
a.contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 10px 22px;
  color: #FFF;
  background: #0B2561;
  transition: 0.3s;
}
a.contact-btn i {
  font-size: 1.5rem;
  margin-right: 20px;
}
@media (hover: hover) and (pointer: fine) {
  a.contact-btn:hover {
    background: #FFF;
  }
}
@media screen and (max-width: 767px) {
  a.contact-btn {
    padding-top: 14px;
    padding-bottom: 12px;
  }
  a.contact-btn i {
    font-size: 1.25rem;
  }
}

/* page top btn ------------------------------------- */
.page-top {
  position: relative;
  padding-top: 27px;
  margin-top: -27px;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}
.page-top a {
  display: block;
  padding: 9px 0 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFF;
  background: #707070;
}
.page-top a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1012px;
  height: 948px;
  background: #707070;
  border-radius: 50%;
  z-index: -1;
}
.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 a {
    padding: 6px 0 10px;
  }
  .page-top a::before {
    width: 506px;
    height: 474px;
  }
}

/* =====================================================
* title
* =================================================== */
.title {
  display: block;
  margin-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #0B2561;
  position: relative;
  padding-left: 70px;
}
.title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .title {
    padding-left: 45px;
  }
  .title::before {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .title {
    font-size: clamp(1.125rem, 0.955rem + 0.66vw, 1.375rem);
    margin-bottom: 15px;
  }
}

/* =====================================================
* page title
* =================================================== */
.page-title {
  position: relative;
}
.page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .page-title::after {
    bottom: 0;
    height: 20px;
  }
}
.page-title img {
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-title__inner {
  position: absolute;
  bottom: 40px;
  padding-top: 2.3vw;
  padding-bottom: 0.1vw;
  background-image: url(../img/page-top_bg.png);
  background-size: 100% 100%;
  background-position: bottom;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .page-title__inner {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .page-title__inner {
    bottom: 20px;
    padding-top: 4.55vw;
    padding-bottom: 1.1vw;
  }
}
.page-title__inner h2 {
  font-family: "ten-mincho-text", serif;
  font-size: 2.1875rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .page-title__inner h2 {
    font-size: clamp(1.375rem, 0.822rem + 2.13vw, 2.1875rem);
  }
}

.page-desc {
  padding: 60px 0 45px;
  margin-bottom: 75px;
  background: linear-gradient(#ECFEFF 0%, #FFF 100%);
}
@media screen and (max-width: 767px) {
  .page-desc {
    padding: 40px 0 25px;
    margin-bottom: 55px;
  }
}

/* =====================================================
* section title
* =================================================== */
.section__title {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  font-family: "ten-mincho-text", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.83;
}
.section__title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 26px;
}
.section__title.center::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 2px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .section__title.center {
    padding-bottom: 15px;
  }
  .section__title.center::before {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: clamp(1.25rem, 0.74rem + 1.97vw, 2rem);
    margin-bottom: 25px;
  }
}

/* =====================================================
* section text
* =================================================== */
.section__text {
  text-align: center;
}

/* =====================================================
* section list
* =================================================== */
.section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section__list-text {
  font-size: 0.9375rem;
  line-height: 1.54;
}
@media screen and (max-width: 767px) {
  .section__list-text {
    font-size: 0.875rem;
  }
}

/* =====================================================
* btm contact
* =================================================== */
.btm-contact {
  padding: 90px 0 110px;
}
.btm-contact__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.btm-contact__title .title,
.btm-contact__title .section__title {
  margin-bottom: 0;
}
.btm-contact__title .title {
  margin-right: 40px;
}
.btm-contact__text {
  margin-bottom: 50px;
  text-align: center;
}
.btm-contact .contact-btn {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #0B2561;
}
@media (hover: hover) and (pointer: fine) {
  .btm-contact .contact-btn:hover {
    color: #0B2561;
    background: #FFF;
  }
}
@media screen and (max-width: 767px) {
  .btm-contact {
    padding: 70px 0 90px;
  }
  .btm-contact__title {
    margin-bottom: 20px;
  }
  .btm-contact__title .title {
    margin-right: 20px;
  }
  .btm-contact__text {
    margin-bottom: 30px;
  }
}

/* =====================================================
* top
* =================================================== */
.top__outer {
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
}
.top__outer::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 90.3%;
  min-width: 1360px;
  height: 100%;
  z-index: -1;
}
.top__cont {
  position: relative;
  width: 50.5%;
  padding: 95px 0 60px;
  z-index: 10;
}
.top__text {
  margin-bottom: 60px;
}
.top__img {
  position: absolute;
  top: 0;
}
.top--l::after {
  left: 0;
}
.top--l .top__cont {
  margin-left: auto;
}
.top--r::after {
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top__cont {
    width: 100%;
    padding-top: 0;
    margin-top: -8.5vw;
  }
  .top__img {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .top__outer {
    margin-bottom: 60px;
  }
  .top__cont {
    margin-top: 2.5vw;
    padding-bottom: 45px;
  }
  .top__text {
    margin-bottom: 40px;
  }
}

/* fv ----------------------------------------------- */
.fv {
  position: relative;
  margin-bottom: 90px;
}
.fv__slider {
  overflow: hidden;
}
.fv__slider img {
  min-height: 64.8vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-bottom: 70px;
  }
}

/* fv text ------------------------------------------ */
.fv__inner {
  width: 100%;
  position: absolute;
  bottom: 40px;
  padding-top: 4.55vw;
  padding-bottom: 2.1vw;
  background-image: url(../img/fv-text_bg.png);
  background-size: 100% 100%;
  background-position: bottom;
}
@media screen and (max-width: 1024px) {
  .fv__inner {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner {
    bottom: 20px;
    padding-top: 6.55vw;
    padding-bottom: 3.1vw;
  }
}
.fv__inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  height: 40px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .fv__inner::after {
    bottom: -20px;
    height: 20px;
  }
}
.fv__inner p {
  font-family: "ten-mincho-text", serif;
  font-size: clamp(1.375rem, 0.659rem + 1.12vw, 2rem);
  font-weight: 400;
  line-height: 1.67;
  text-align: center;
  color: #1A1818;
}
.fv__inner p.lg {
  margin-bottom: 20px;
  font-size: clamp(2.3125rem, 1.597rem + 1.12vw, 2.9375rem);
}
@media screen and (max-width: 1024px) {
  .fv p {
    font-size: clamp(1rem, 0.745rem + 0.98vw, 1.375rem);
  }
  .fv p.lg {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 0.947rem + 2.13vw, 2.3125rem);
  }
}

/* top info ----------------------------------------- */
.info {
  margin-bottom: 90px;
}
.info__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.info__title .title,
.info__title .section__title {
  margin-bottom: 0;
}
.info__title .title {
  margin-right: 40px;
}
.info__text {
  margin-bottom: 50px;
  text-align: center;
  font-weight: 500;
}
.info__text span {
  font-weight: 700;
  background: linear-gradient(transparent 60%, #FFE348 0%);
}
@media screen and (max-width: 767px) {
  .info {
    margin-bottom: 70px;
  }
  .info__title .title {
    margin-right: 20px;
  }
  .info__text {
    margin-bottom: 30px;
  }
}

/* top material ------------------------------------- */
.top-material::after {
  background: #ECFEFF;
}
.top-material .top__img {
  right: 0;
  width: 68.61%;
  min-width: 780px;
}
@media screen and (max-width: 1024px) {
  .top-material .top__img {
    width: 100%;
    min-width: auto;
  }
  .top-material .top__cont {
    margin-top: -16.5vw;
  }
}
@media screen and (max-width: 767px) {
  .top-material .top__cont {
    margin-top: -4.5vw;
  }
}

/* top product ------------------------------------- */
.top-product::after {
  background: #F8F9F9;
}
.top-product .top__img {
  left: 0;
  width: 51.6%;
  min-width: 620px;
}
@media screen and (max-width: 1024px) {
  .top-product .top__img {
    width: 100%;
    min-width: auto;
  }
  .top-product .top__cont {
    margin-top: -23.5vw;
  }
}

/* top rubber ------------------------------------- */
.top-rubber {
  background-image: url(../img/top-rubber_bg.jpg);
  background-size: cover;
}
.top-rubber::after {
  content: none;
}
.top-rubber .top__img {
  top: -1.7vw;
  right: -10.5vw;
  width: 58.16%;
  min-width: 670px;
}
@media screen and (max-width: 1024px) {
  .top-rubber .top__img {
    top: -2vw;
    right: -36.5vw;
    width: 70%;
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .top-rubber .top__img {
    top: -2.4vw;
    right: -26.5vw;
    width: 85%;
  }
}

/* =====================================================
* material
* =================================================== */
.material__item {
  padding: 25px 15px 30px;
  background: #FFF;
  border: 0.5px solid #707070;
}
.material__item h2 {
  margin-bottom: 14px;
  font-size: 1.5rem;
  color: #0B2561;
  text-align: center;
  line-height: 1.7;
}
.material__item h2 span {
  display: block;
  font-size: 1.0625rem;
  color: #303437;
}
@media screen and (max-width: 767px) {
  .material__item h2 {
    margin-bottom: 10px;
    font-size: clamp(1.125rem, 0.87rem + 0.98vw, 1.5rem);
  }
  .material__item h2 span {
    font-size: clamp(0.875rem, 0.747rem + 0.49vw, 1.0625rem);
  }
}

/* ビニル -------------------------------------------- */
.vinyl {
  margin-bottom: 70px;
}
.vinyl .section__text {
  margin-bottom: 60px;
}
.vinyl__item {
  width: calc(50% - 5px);
}
.vinyl__item-inner {
  width: 385px;
  margin: 0 auto;
  max-width: 100%;
}
.vinyl__item-inner h3 {
  position: relative;
  font-size: 1.0625rem;
  color: #0B2561;
}
.vinyl__item-inner h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 79.23%;
  height: 1px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .vinyl {
    margin-bottom: 50px;
  }
  .vinyl .section__text {
    margin-bottom: 40px;
  }
  .vinyl__item {
    width: 100%;
  }
  .vinyl__item-inner h3 {
    font-size: clamp(0.875rem, 0.747rem + 0.49vw, 1.0625rem);
    margin-bottom: 5px;
  }
}

/* 樹脂 ---------------------------------------------- */
.resin {
  padding: 85px 0 110px;
  margin-bottom: 50px;
}
.resin .section__text {
  margin-bottom: 75px;
}
.resin__cont:not(:last-of-type) {
  margin-bottom: 75px;
}
.resin .title {
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
}
.resin__item {
  width: calc(25% - 8px);
}
.resin__item h2 {
  position: relative;
  padding-bottom: 5px;
}
.resin__item h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50px;
  height: 1px;
  background: #0B2561;
}
@media screen and (max-width: 767px) {
  .resin {
    padding: 65px 0 90px;
  }
  .resin .section__text {
    margin-bottom: 55px;
  }
  .resin__item {
    width: 48%;
  }
  .resin__cont:not(:last-of-type) {
    margin-bottom: 55px;
  }
}

.elastomer {
  padding-bottom: 27px;
}
.elastomer p {
  font-size: 1.5rem;
  color: #0B2561;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .elastomer p {
    font-size: clamp(1.125rem, 0.87rem + 0.98vw, 1.5rem);
  }
}

/* 着色剤 ------------------------------------------- */
.colorant {
  margin-bottom: 60px;
}
.colorant .section__text {
  margin-bottom: 70px;
}
.colorant__item {
  display: flex;
  width: calc(50% - 5px);
  padding: 9px 20px 9px 8px;
}
.colorant__item h2 {
  text-align: left;
  margin-bottom: 10px;
}
.colorant__desc {
  width: 108%;
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .colorant__item {
    flex-direction: column;
    padding-right: 8px;
  }
  .colorant__desc {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .colorant {
    margin-bottom: 40px;
  }
  .colorant .section__text {
    margin-bottom: 50px;
  }
  .colorant__item {
    width: 100%;
  }
}

/* =====================================================
* product
* =================================================== */
.product {
  margin-bottom: 80px;
}
.product .section__text {
  margin-bottom: 45px;
}
.product__cont:not(:last-of-type) {
  margin-bottom: 60px;
}
.product .title {
  margin-bottom: 10px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
}
.product .title span {
  margin-left: 20px;
  color: #303437;
}
.product__item {
  width: calc(20% - 8px);
}
.product .section__list {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .product {
    margin-bottom: 60px;
  }
  .product .section__text {
    margin-bottom: 30px;
  }
  .product__cont:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .product .title::before {
    top: 17px;
    transform: translateY(0);
  }
  .product .title span {
    display: block;
    margin-left: 0;
  }
  .product .section__list {
    margin-top: 20px;
  }
  .product__item {
    width: calc(33% - 6px);
  }
}

/* =====================================================
* rubber
* =================================================== */
.rubber {
  margin-bottom: 125px;
}
.rubber .section__text {
  margin-bottom: 75px;
}
.rubber__cont:not(:last-of-type) {
  margin-bottom: 80px;
}
.rubber .title {
  margin-bottom: 30px;
  font-family: YuGothic, "游ゴシック体", "Yu Gothic", "游ゴシック", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 700;
}
.rubber .section__list {
  margin-bottom: 80px;
}
.rubber__item {
  width: calc(50% - 5px);
  border: none;
  padding: 0;
}
.rubber__item h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.rubber__item h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #0B2561;
}
.rubber__item p {
  margin-top: 10px;
  text-align: center;
}
.rubber__row {
  display: flex;
}
.rubber-standard .title {
  margin-bottom: 0;
}
.rubber-standard__cont {
  width: 49.61%;
  padding-top: 30px;
  margin-right: 8.6%;
}
.rubber-standard__cont table {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  border-collapse: collapse;
  border: 0.5px solid #707070;
}
.rubber-standard__cont table tr th:first-of-type,
.rubber-standard__cont table tr td:first-of-type {
  width: 59.5%;
  border-right: 0.5px solid #707070;
}
.rubber-standard__cont table th,
.rubber-standard__cont table td {
  padding: 8px 0;
}
.rubber-standard__cont table th {
  background: #ECFEFF;
}
.rubber-standard__cont table td {
  border-top: 0.5px solid #707070;
}
.rubber-standard__img {
  width: 36.64%;
}
@media screen and (max-width: 767px) {
  .rubber {
    margin-bottom: 105px;
  }
  .rubber .section__text {
    margin-bottom: 55px;
  }
  .rubber__cont:not(:last-of-type) {
    margin-bottom: 60px;
  }
  .rubber .title {
    margin-bottom: 20px;
  }
  .rubber .section__list {
    margin-bottom: 60px;
  }
  .rubber__item {
    width: 100%;
  }
  .rubber__item h2 {
    margin-bottom: 10px;
  }
  .rubber__item:first-of-type {
    margin-bottom: 30px;
  }
  .rubber__row {
    flex-direction: column;
  }
  .rubber-standard__cont, .rubber-standard__img {
    width: 100%;
  }
  .rubber-standard__cont {
    order: 2;
    margin-right: 0;
  }
  .rubber-standard__cont table {
    margin-bottom: 15px;
  }
}

/* =====================================================
* company
* =================================================== */
#company .page-desc {
  margin-bottom: 0;
}

/* profile ------------------------------------------ */
.profile {
  margin-bottom: 105px;
}
.profile__table {
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 2.33;
  color: #000;
  border-top: 2px solid #3B4043;
}
.profile__row {
  display: flex;
  padding: 28px 0 27px;
  border-bottom: 1px solid #CDD6DD;
}
.profile__row dt {
  width: 9%;
  min-width: 100px;
  margin-left: 70px;
  margin-right: 13.5%;
}
@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 85px;
  }
  .profile__table {
    font-size: clamp(0.875rem, 0.747rem + 0.49vw, 1.0625rem);
  }
  .profile__row {
    flex-direction: column;
    padding: 10px 0 10px 20px;
    line-height: 1.8;
  }
  .profile__row dt {
    width: 100%;
    margin: 0 0 10px;
  }
}

/* access map --------------------------------------- */
.access {
  margin-bottom: 75px;
}
.access__map {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .access {
    margin-bottom: 55px;
  }
  .access__map {
    margin-top: 50px;
  }
  .access__map iframe {
    height: 400px;
  }
}

/* =====================================================
* contact
* =================================================== */
#contact .page-desc {
  margin-bottom: 0;
}
#contact .section__title.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .section__title.center:before {
  width: 100px;
}
#contact .section__title.center img {
  width: 26px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  #contact .section__title.center:before {
    width: 80px;
  }
  #contact .section__title.center img {
    width: 20px;
  }
}

/* contact tel -------------------------------------- */
.contact__tel {
  margin-bottom: 55px;
  text-align: center;
  font-weight: bold;
}
.contact__tel .section__title.center {
  margin-bottom: 25px;
}
p.contact__tel-num {
  font-size: 2rem;
  margin-bottom: 5px;
  line-height: 2;
}

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

/* contact mail ------------------------------------- */
.contact__mail {
  padding-top: 60px;
}
.contact__mail .section__title.center {
  margin-bottom: 40px;
}
.contact__mail .section__title.center i {
  margin-right: 20px;
}
.contact__mail-desc {
  margin-bottom: 60px;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contact__mail {
    padding-top: 40px;
  }
  .contact__mail .section__title.center {
    margin-bottom: 25px;
  }
  .contact__mail-desc {
    margin-bottom: 40px;
  }
}

/* contact form ------------------------------------- */
.contact__form {
  padding: 70px 0 126px;
  color: #000;
}
.contact__form-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid #3B4043;
}
.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;
  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: 65.5%;
  margin: 23px 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: 22px 10px;
  font-size: 1.25rem;
}
.contact__form-btn input[type=submit] {
  color: #FFF;
  background: #0B2561;
  width: 48.806%;
  margin-right: 30px;
}
.contact__form-btn input[type=reset] {
  width: 25.093%;
  background: #E4E4E4;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 50px 0 106px;
  }
  .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% 40px 7.815%;
  margin: 35px 0 50px;
  background: #F8F9F9;
}
.privacy p,
.privacy ol li {
  font-size: 0.9375rem;
  line-height: 1.54;
}
.privacy li {
  margin-bottom: 1em;
}
.privacy h4 {
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 1.25rem;
  line-height: 1;
  border-bottom: 1px solid #A1A1A1;
}
.privacy p {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 20px 15px;
    margin: 15px 0 30px;
  }
  .privacy p,
  .privacy ol li {
    font-size: 0.8125rem;
  }
  .privacy h4 {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.125rem;
  }
}

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