@charset "UTF-8";

/* 共通部 */
body.active {
  overflow: hidden;
}
.main {
  width: 100%;
  margin: 0 auto;
  padding-top: 90px;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #fff;
  cursor: pointer;
}
a:visited {
  color: #6C757D;
}
/* お問い合わせボタン */
.btn a {
  display: inline-block;
  background-color: #CE0110;
  color: #fff;
  padding: 10px 20px;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
}
.btn a::after {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 5px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-5px) skew(45deg);
  margin-left: 8px;
}

/* header */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #211E28;
  padding: 15px 20px;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 90px;
}
/* ロゴ */
#header .logo {
  max-width: 187px;
  height: auto;
}
/* ナビゲーション */
#header .header-nav {
  display: none;
}
#header .header-nav.active {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #211E28;
  padding-top: 100px;
}
#header .header-nav.active ul {
  display: flex;
  flex-direction: column;
  width: 80%;
}
#header .header-nav.active ul li {
  color: #fff;
  display: block;
  font-size: 16px;
  border-bottom: 2px solid;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
#header .header-nav.active ul li:last-child {
  border: none;
}

/*ハンバーガーメニュー*/
#header .hamburger {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 10000;
}
#header .hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
#header .hamburger span:nth-child(1) {
  top: 0;
}
#header .hamburger span:nth-child(2) {
  margin: 8px 0;
}
#header .hamburger span:nth-child(3) {
  top: 0;
}
#header .hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
#header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
#header .hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* #mv */
#mv {
  position: relative;
  margin-bottom: 74px;
}
#mv h2 {
  /* font-family: "Noto Sans Myanmar", sans-serif; */
  font-weight: 600;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 20px;
  text-align: right;
}
#mv h2 .mv-txt {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
}
#mv h2 .mv-txt::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  margin-right: 5px;
}
#mv .mv-img {
  width: 100%;
}

/* #profile */
#profile {
  padding: 0 30px;
  margin-bottom: 70px;
}
#profile .prof-container {
  max-width: 1175px;
  margin: 0 auto;
  position: relative;
}
#profile h2 {
  font-size: 75px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 20px;
  line-height: 60px;
}
#profile .catchphrase {
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* font-family: TA-礼筆M; */
}
#profile .desc {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
}
#profile .desc .img {
  width: 100%;
  margin-bottom: 20px;
}
#profile .desc .txt {
  width: 100%;
  margin-left: 0;
  font-size: 14px;
  line-height: 2;
}
#profile .desc .txt .name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
  /* font-family: TA-礼筆M; */
}
#profile .desc .txt .name img {
  width: 50%;
  margin-left: 10px;
}
#profile .btn {
  text-align: center;
}

/* #reason */
#reason {
  padding: 64px 0 78px;
  background-image: url(../images/bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}
#reason::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1;
}
#reason h3 {
  display: inline-block;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
#reason h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: -10px;
  left: -20px;
}
#reason h3::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  bottom: 10px;
  right: -20px;
}
#reason h3 .highlight {
  font-size: 40px;
  font-weight: bold;
}
#reason h3 .c_red {
  color: #CE0110;
  font-weight: bold;
}
#reason h3 .c_red span {
  font-size: 60px;
  font-weight: bold;
  /* font-family: DIN 2014; */
}
#reason .reason-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: 350px;
}
#reason .item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #1F1C25;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  width: 150px;
  height: 150px;
  margin: 0 5px;
}
#reason .item:first-child {
  margin: 0 30px;
}
#reason .item .number {
  font-size: 15px;
  /* font-family: DIN 2014; */
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  margin-bottom: 10px;
}
#reason .item .title {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}
#reason .item .txt {
  font-size: 11px;
}

/* #service */
#service {
  padding: 73px 30px 23px;
  background-color: #1F1C25;
  color: #fff;
  overflow: hidden;
  margin-bottom: 60px;
}
#service h3.title {
  color: #000;
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
}
#service h3.title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
}
#service .txt {
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.8;
  font-size: 16px;
}

/* plastics セクション共通部*/
#service .service-section {
  margin: 0 auto;
  margin-bottom: 80px;
  border-bottom: 3px solid #fff;
  font-size: 18px;
}
#service .service-section .title {
  position: relative;
  margin-bottom: 62px;
}
#service .service-section .title h3 {
  position: absolute;
  font-size: 30px;
  font-weight: bold;
  writing-mode: vertical-rl;
  top: 10px;
  left: -10px;
  letter-spacing: 0;
}
#service .service-section .title .img {
  margin-left: 20px;
}
#service .service-section .title .img img {
  max-width: 115%;
}
#service .service-section .txt {
  margin-top: 30px;
  margin-left: 50px;
  margin-bottom: 80px;
  text-align: left;
}
#service .service-section .plus {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  margin-bottom: 80px;
}
#service .service-section .plus-img {
  width: 100%;
  margin-bottom: 20px;
}
#service .service-section .plus-txt {
  width: 100%;
  margin-left: 0;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

/* safety */
#service .service-section.safety .txt {
  margin: 30px 40px 80px 0;
}
#service .service-section.safety .title h3 {
  right: 0;
}
#service .service-section.safety .title .img {
  display: flex;
  justify-content: flex-end;
  margin-left: 0;
  margin-right: 20px;
}
#service .service-section.safety .plus {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-bottom: 80px;
}
#service .service-section.safety .plus-txt {
  width: 100%;
  margin-right: 40px;
  line-height: 2;
}
/* resin */
#service .service-section.resin {
  border-bottom: none;
}
#service .service-section.resin h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#service .service-section.resin .resin-txt {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
}
/* スライダー部 */
#service .service-section.resin ul.resin-slider {
  display: flex;
  align-items: stretch;
}
#service .service-section.resin li.slider-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #707070;
  padding: 20px 5px;
  margin: 0 10px;
  border-radius: 5px;
  height: auto;
}
#service .service-section.resin li.slider-item .img {
  max-width: 140px;
  max-height: 140px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#service .service-section.resin li.slider-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}
#service .service-section.resin li.slider-item p {
  flex-grow: 1;
  text-align: left;
  line-height: 1.8;
  font-size: 12px;
}
#service .service-section.resin .slick-list {
  margin: 0;
}
#service .service-section.resin .slick-track {
  display: flex;
}
#service .service-section.resin .slick-dots {
  display: none;
}
#service .service-section.resin .slick-prev {
  left: -15px;
  transform: translate(0, -50%) rotate(225deg);
}
#service .service-section.resin .slick-next {
  right: -15px;
  transform: translate(0, -50%) rotate(45deg);
}
#service .service-section.resin .slick-prev:before, #service .service-section.resin .slick-next:before {
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  color: transparent;
}

/* #instagram */
#instagram {
  margin-bottom: 100px;
}
#instagram h3 {
  color: rgba(0, 0, 0, 0.1);
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#instagram h3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 18px;
}
#instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 0 30px;
}
#instagram li {
  width: 33%;
  padding: 5px;
}
#instagram .btn {
  text-align: center;
}
#instagram .btn a {
  background-color: #000;
}

/* #topics */
#topics {
  padding: 0 30px 100px;
}
#topics h3 {
  color: rgba(0, 0, 0, 0.1);
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#topics h3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 18px;
}
#topics ul {
  margin: 0 auto;
}
#topics li {
  font-size: 11px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
}
#topics li:last-child {
  border-bottom: none;
}
#topics li a {
  display: flex;
  align-items: center;
  color: #000;
}
#topics li a p {
  margin-right: 15px;
  line-height: 2;
}
#topics li a .cat-tag {
  color: #fff;
  background-color: #000;
  padding: 3px;
  margin-right: 10px;
  flex-shrink: 0;
}
#topics li a .cat-tag a[href*="uncategorized"] {
  display: none;
}
#topics .btn {
  text-align: center;
}
#topics .btn a {
  background-color: #000;
}

/* #faq */
#faq {
  background-color: #F2F2F2;
  padding: 30px 0;
}
#faq h3 {
  color: rgba(0, 0, 0, 0.1);
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
#faq h3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 18px;
}
#faq ul {
  padding: 0 30px;
}
#faq li {
  margin: 0 auto;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
}
#faq .question {
  display: flex;
  align-items: center;
  padding: 35px 40px 35px 10px;
  position: relative;
}
#faq .question span {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
#faq .question p {
  width: 80%;
}
#faq .question::before, #faq .question::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #000;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.5s ease;
}
#faq .question::after {
  transform: translateY(-50%) rotate(90deg);
}
#faq .question.open::after {
  transform: translateY(-50%) rotate(0deg);
}
#faq .answer {
  display: flex;
  align-items: flex-start;
  padding: 35px 30px 35px 10px;
  color: #000;
}
#faq .answer .icon span {
  background-color: #CE0110;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
#faq .answer .answer-text {
  width: 80%;
}
#faq .btn {
  text-align: center;
}
#faq .btn a {
  background-color: #000;
}

/* #company */
#company {
  background-color: #211E28;
  padding: 45px 30px 60px;
}
#company .company-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
#company .company-desc {
  width: 100%;
  margin-bottom: 30px;
}
#company .company-desc h3 {
  color: rgb(0, 0, 0);
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
#company .company-desc h3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
}
#company .company-desc dl {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}
#company .company-desc dt {
  width: 20%;
  font-weight: bold;
  margin-bottom: 5px;
}
#company .company-desc dd {
  width: 80%;
  margin: 0;
  margin-bottom: 5px;
  padding-left: 10px;
  flex-grow: 1;
}
#company .company-img {
  width: 100%;
  margin-bottom: 30px;
}
#company .company-bottom .map {
  width: 100%;
  height: 220px;
}
#company .company-bottom .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* #form */
#form {
  background-image: url(../images/form-bg_sp.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 30px;
  position: relative;
}
#form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
#form h3 {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
#form .form-txt {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}
#form .form-info {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#form .mail {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 50px;
}
#form .mail .img {
  width: 60px;
  height: 45px;
  margin-bottom: 20px;
}
#form .mail .btn {
  margin-bottom: 10px;
}
#form .mail .address a {
  color: #000;
}
#form .mail .btn a {
  font-size: 11px;
  margin-left: 0;
}
#form .tel {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 50px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
#form .tel .img {
  width: 60px;
  height: 45px;
  margin-bottom: 20px;
}
#form .tel .address {
  font-size: 15px;
}
#form .tel .address a {
  display: block;
  margin: 0 auto;
  color: #CE0110;
}
#form .tel .address p {
  display: block;
  margin: 0 auto;
  color: #CE0110;
}

/* #footer */
#footer {
  background-color: #211E28;
  color: #fff;
  padding: 40px 20px;
}
#footer .footer-info {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
}
#footer .footer-address {
  width: 80%;
  padding-bottom: 40px;
  border-bottom: 2px solid #fff;
  margin: 0 auto;
  margin-bottom: 40px;
}
#footer .footer-address img {
  max-width: 150px;
  margin-bottom: 20px;
}
#footer .footer-address li {
  margin-bottom: 8px;
}
#footer .footer-address li p {
  display: inline-block;
}
#footer .footer-link {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 20px;
}
#footer .footer-link li {
  margin-bottom: 8px;
}
#footer .footer-link .btn {
  margin-top: 30px;
  text-align: center;
}
#footer .footer-link .btn a {
  margin-left: 0;
}
#footer .footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 20px;
  text-align: center;
}
#footer .footer-copyright img {
  width: 24px;
  margin-bottom: 20px;
}
#footer .copyright {
  font-size: 10px;
  letter-spacing: 0.01em;
}
#footer img {
  max-width: 100%;
  height: auto;
}



/* --------------------------------------------------------------------------------
			コンプライアンス
-------------------------------------------------------------------------------- */

#compliance {
  width: 100%;
  margin: 0 auto;
  padding: 100px 30px;
}
#compliance h2 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
#compliance .ruby {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
#compliance .promiss-txt {
  margin-bottom: 80px;
}
#compliance .article {
  margin-bottom: 30px;
}
#compliance .article h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid #ccc;
  margin-bottom: 30px;
}
#compliance .article p {
  font-size: 14px;
}

/* --------------------------------------------------------------------------------
			ハラスメント
-------------------------------------------------------------------------------- */

#harassment {
  width: 100%;
  margin: 0 auto;
  padding: 100px 30px;
}
#harassment h2 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
#harassment .ruby {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
}
#harassment .promiss-txt {
  margin-bottom: 80px;
}
#harassment .article {
  margin-bottom: 30px;
}
#harassment .article h3 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 3px solid #ccc;
  margin-bottom: 30px;
}
#harassment .article p {
  font-size: 14px;
  margin-bottom: 20px;
}
#harassment .article .desc {
  margin-bottom: 30px;
}
#harassment .article .desc h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;

}

/* --------------------------------------------------------------------------------
			投稿ページ
-------------------------------------------------------------------------------- */

#post {
  width: 100%;
  padding: 0 30px;
  margin: 30px auto;
}
#post .title {
  color: rgba(0, 0, 0, 0.1);
  font-size: 70px;
  /* font-family: Silom; */
  font-family: "Bebas Neue", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 10px;
}
#post .title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 18px;
}
#post .post-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
#post .post-desc {
  display: flex;
  align-items: center;
  line-height: 20px;
}
#post .post-date {
  font-size: 12px;
  margin-right: 10px;
}
#post .post-categories a {
  background-color: #1F1C25;
  font-size: 10px;
  padding: 3px;
}
#post .post-categories a[href*="uncategorized"] {
  display: none;
}
#post .post-content {
  font-size: 16px;
  margin: 30px 0;
}
