@charset "UTF-8";

html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) and (min-width: 769px) {
  html {
    font-size: 16px;
    font-size: 1.25vw;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-size: 1rem;
}

p {
  font-size: max(1rem, 14px);
  line-height: 2;
  letter-spacing: 0.05em;
}

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

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
    line-height: 1.7;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* —————————————————
  component
  —————————————————*/
/* ------- title --------- */
.c-ttl {
  font-size: 2.1875rem;
  line-height: 1.7;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}

.u-color {
  color: #EE761B;
}

.u-center {
  text-align: center;
}

.u-bold {
  font-weight: 700;
}

.u-wh {
  color: #fff;
}

.u-desc {
  font-weight: 600;
  font-size: max(1.125rem, 12px);
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.l-wrap {
  width: calc(100% - 40px);
  max-width: 1520px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .u-desc {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* -------------------------------
  page component
  ------------------------------- */
/* -------- page-head -------- */
.c-page-head {
  position: relative;
  z-index: 1;
  width: 100%;
}

.c-page-head__img {
  position: relative;
}

.c-page-head__img img {
  aspect-ratio: 1920/545;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-page-head__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.54;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.c-page-ttl__en {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 3.625rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.7;
  line-height: 0.8;
  z-index: 1;
}

.c-page-ttl__ja {
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .c-page-ttl__en {
    font-size: 2.875rem;
  }

  .c-page-head__img {
    height: 17.5rem;
  }

  .c-page-head__img img {
    height: 100%;
  }
}

/* ----------- breadcrumb -----------*/
.c-breadcrumb {
  position: relative;
  z-index: 1;
  background-color: #EE761B;
  padding: 10px;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 40px);
  max-width: 1720px;
  margin: 0 auto;
  gap: 5px;
  color: #fff;
}

.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: 1px 8px;
}

.c-breadcrumb__list li,
.c-breadcrumb__list a {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.c-breadcrumb .current-item {
  font-size: 12px;
}

@media screen and (max-width: 768px) {

  .c-breadcrumb__list li,
  .c-breadcrumb__list a, .c-breadcrumb .current-item {
    font-size: 0.625rem;
  }
}

/* ---------------------------------------------
  service page
  --------------------------------------------- */
.p-service-section {
  padding: 7.5rem 0;
}

.p-service-section.section-bg {
  padding-top: 12.5rem;
  position: relative;
  margin-top: -13.75rem;
}

.p-service-section.section-bg::before {
  content: "";
  width: 100%;
  height: 89%;
  background: #EE761B;
  position: absolute;
  top: 0;
  left: 0;
}

.p-service-section.section-bg .p-service-ttl {
  color: #fff;
}

.p-service-section.section-mt {
  margin-top: -11.25rem;
}

.p-service-section .l-wrap {
  position: relative;
}

.p-service-ttl {
  color: #EE761B;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.p-service-ttl .en {
  font-size: 6.375rem;
  opacity: 0.3;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-service-ttl .ja {
  font-size: 3.25rem;
  padding-left: 3.75rem;
  letter-spacing: 0.1em;
}

.p-service-ttl .ja.color {
  color: #EE761B;
}

.p-service-ttl.ttl-2 .ja {
  position: absolute;
  bottom: 0;
}

.p-service__block .p-service__img {
  margin-right: calc(50% - 50vw);
  padding-left: 10rem;
  margin-top: -3.75rem;
}

.p-service__block .p-service__img img {
  min-height: 26.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-service__block .p-service__text {
  background-color: #fff;
  padding: 3.75rem;
  width: 62%;
  max-width: 760px;
  margin-top: -13%;
  position: relative;
  z-index: 1;
  min-height: 31.25rem;
}

.p-service__block:not(:last-child) {
  margin-bottom: 5rem;
}

.p-service__block:nth-child(even) .p-service__img {
  padding: 0;
  margin-right: 0;
  margin-left: calc(50% - 50vw);
  padding-right: 10rem;
}

.p-service__block:nth-child(even) .p-service__text {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .p-service-section {
    padding: 80px 0;
  }

  .p-service-section.section-bg {
    padding-top: 12.5rem;
    margin-top: -12.5rem;
  }

  .p-service-section.section-mt {
    margin-top: -6.25rem;
  }

  .p-service-ttl .en {
    font-size: 2.625rem;
    letter-spacing: 0.05em;
  }

  .p-service-ttl .ja {
    font-size: 1.75rem;
    padding-left: 24px;
  }

  .p-service__block .p-service__img {
    padding-left: 0;
    margin-top: -2.5rem;
  }

  .p-service__block .p-service__img img {
    aspect-ratio: 375/200;
    min-height: initial;
  }

  .p-service__block .p-service__text {
    width: calc(100vw - 20px);
    padding: 24px;
    margin-top: -30px;
    background-color: rgba(255, 255, 255, 0.94);
    min-height: initial;
    margin-left: calc(50% - 50vw);
  }

  .p-service__block:nth-child(even) .p-service__img {
    padding-right: 0;
  }

  .p-service__block:nth-child(even) .p-service__text {
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}

/* ---------------- service flow ---------------- */
.p-service-flow {
  position: relative;
}

.p-service-flow .l-wrap {
  position: relative;
}

.p-service-flow__head .p-service__img {
  padding-left: 0;
  margin-top: -7.5rem;
}

.p-service-flow__head .p-service__img img {
  border-radius: 0 0 0 30px;
  min-height: 15.625rem;
}

.p-service-flow__head .p-service-ttl .ja {
  color: #fff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.47);
}

.p-service-flow__container {
  background: #EE761B;
  padding-top: 15.625rem;
  padding: 16.25rem 0 7.5rem;
  margin-top: -13.75rem;
}

.p-service-flow__list {
  max-width: 1430px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-service-flow__list .item {
  background-color: #FFF5D2;
  position: relative;
  z-index: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
  width: 17.875rem;
  padding: 30px 10px;
}

.p-service-flow__list .item:not(:first-child) {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
  margin-left: -3.75rem;
}

.p-service-flow__list .item:first-child {
  -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
}

.p-service-flow__list .item:nth-child(4) .icon {
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.p-service-flow__list .item .text {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.875rem;
}

.p-service-flow__list .item .icon {
  margin-top: auto;
  height: 6.25rem;
}

.p-service-flow__list .item .icon img {
  max-width: 7.375rem;
}

.p-service-step__list {
  margin-top: 100px;
  max-width: 1200px;
  margin: 100px auto 0;
}

.p-service-step__list .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.p-service-step__list .item:not(:last-child) {
  margin-bottom: 50px;
}

.p-service-step__list .item-img {
  width: 34%;
  display: -ms-flexbox;
  display: flex;
}

.p-service-step__list .item-text {
  width: 66%;
  padding: 60px 30px 60px 60px;
  letter-spacing: 0.05em;
}

.p-service-step__list .item-text .step-ttl {
  font-weight: 800;
  color: #EE761B;
  font-size: 2.1875rem;
  line-height: 1.25;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .p-service-flow .p-service__block .p-service__img {
    margin-top: -6.875rem;
  }

  .p-service-flow .p-service__block .p-service__img img {
    border-radius: 0 0 0 20px;
    aspect-ratio: initial;
    min-height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-service-flow .p-service__block .p-service-ttl {
    top: -24px;
  }

  .p-service-flow .p-service__block .p-service-ttl .ja {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }

  .p-service-flow__container {
    padding: 10rem 0 7.5rem;
    margin-top: -11.25rem;
  }

  .p-service-flow__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 300px;
    margin: 0 auto;
  }

  .p-service-flow__list .item {
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 286px;
    min-height: 180px;
    padding: 24px 10px;
  }

  .p-service-flow__list .item:not(:first-child) {
    -webkit-clip-path: none;
    clip-path: none;
    margin: 0;
    margin-top: 50px;
  }

  .p-service-flow__list .item:not(:first-child)::before {
    content: "";
    display: block;
    width: 60px;
    height: 20px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background-color: #FFF5D2;
    position: absolute;
    top: -35px;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .p-service-flow__list .item:first-child {
    -webkit-clip-path: none;
    clip-path: none;
  }

  .p-service-flow__list .item:nth-child(4) .icon {
    -ms-transform: none;
    transform: none;
  }

  .p-service-flow__list .item .text {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .p-service-flow__list .item .icon {
    margin-top: auto;
    height: auto;
    width: 26%;
    margin: 0 auto;
  }

  .p-service-flow__list .item .icon img {
    width: 100%;
  }

  .p-service-step__list {
    margin-top: 60px;
  }

  .p-service-step__list .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-service-step__list .item-img {
    width: 100%;
  }

  .p-service-step__list .item-img img {
    aspect-ratio: 375/200;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-service-step__list .item-text {
    width: 100%;
    padding: 30px 24px;
  }

  .p-service-step__list .item-text .step-ttl {
    font-size: 1.375rem;
    margin-bottom: 16px;
  }
}

/* -------------------------------
  page industrial-waste
  ------------------------------- */
.p-industrial-waste-section {
  padding: 6.25rem 0 7.5rem;
}

.p-industrial-waste__about {
  background-color: #FFF5D2;
  border-radius: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.375rem;
  padding: 3.125rem;
}

.p-industrial-waste__about .block-img {
  width: 50%;
}

.p-industrial-waste__about .block-img img {
  border-radius: 20px;
}

.p-industrial-waste__about .block-text {
  width: 50%;
}

.p-industrial-waste__about .block-text .list {
  font-size: 1.625rem;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .c-page-head__industrial .c-page-ttl__en {
    font-size: 2rem;
    line-height: 1.1;
  }

  .p-industrial-waste-section {
    padding: 80px 0;
  }

  .p-industrial-waste__about {
    border-radius: 20px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .p-industrial-waste__about .block-img {
    width: 100%;
  }

  .p-industrial-waste__about .block-img img {
    border-radius: 20px;
  }

  .p-industrial-waste__about .block-text {
    width: 100%;
  }

  .p-industrial-waste__about .block-text .list {
    font-size: 1.0625rem;
  }
}

/* ---------------- industrial-waste flow ---------------- */
.p-industrial-waste-section.section-bg {
  position: relative;
}

.p-industrial-waste-section.section-bg::before {
  content: "";
  width: 100%;
  height: 46%;
  background: #EE761B;
  position: absolute;
  top: 0;
  left: 0;
}

.p-industrial-waste-section.section-bg .l-wrap {
  max-width: 1720px;
}

.p-industrial-waste-section .l-wrap {
  position: relative;
}

.p-industrial-waste-flow__img {
  width: 80%;
  max-width: 1200px;
  margin: 3.75rem auto 0;
}

.p-industrial-waste__block {
  position: relative;
  margin-top: 7.5rem;
}

.p-industrial-waste__block .p-industrial-waste__img {
  width: 56.5vw;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-industrial-waste__block .p-industrial-waste__img img {
  min-height: 32.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-industrial-waste__block .p-industrial-waste__text {
  background-color: rgba(255, 255, 255, 0.94);
  padding: 3.125rem 3.75rem;
  width: 58%;
  max-width: 900px;
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-industrial-waste__block .p-industrial-waste__text .wrap {
  max-width: 640px;
  margin: 0 0 0 auto;
}

.p-industrial-waste__block .p-industrial-waste__text p:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

.p-industrial-waste__block:not(:last-child) {
  margin-bottom: 11.25rem;
}

.p-industrial-waste__block.right .p-industrial-waste__img {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
  right: 0;
}

.p-industrial-waste__block.right .p-industrial-waste__text {
  padding-right: 6.25rem;
  padding-right: min(5.2vw, 100px);
}

.p-industrial-waste__block.left .p-industrial-waste__img {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
  left: 0;
}

.p-industrial-waste__block.left .p-industrial-waste__text {
  padding-left: 6.25rem;
  padding-left: min(5.2vw, 100px);
  margin-left: auto;
}

.p-industrial-waste__block.left .p-industrial-waste__text .wrap {
  margin: 0 auto 0 0;
  max-width: 700px;
}

@media screen and (max-width: 768px) {
  .p-industrial-waste-section.section-bg::before {
    height: 24%;
  }

  .p-industrial-waste-flow__img {
    width: 100%;
    margin-top: 0;
  }

  .p-industrial-waste__block {
    margin-top: 60px;
  }

  .p-industrial-waste__block .p-industrial-waste__img {
    width: calc(100vw - 20px);
    position: static;
    -ms-transform: none;
    transform: none;
  }

  .p-industrial-waste__block .p-industrial-waste__img img {
    min-height: initial;
  }

  .p-industrial-waste__block .p-industrial-waste__text {
    padding: 0;
    width: calc(100vw - 20px);
    padding: 24px;
    margin-top: -30px;
  }

  .p-industrial-waste__block .p-industrial-waste__text p:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .p-industrial-waste__block:not(:last-child) {
    margin-bottom: 60px;
  }

  .p-industrial-waste__block.right .p-industrial-waste__img {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
  }

  .p-industrial-waste__block.right .p-industrial-waste__text {
    margin-left: calc(50% - 50vw);
  }

  .p-industrial-waste__block.left .p-industrial-waste__img {
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }

  .p-industrial-waste__block.left .p-industrial-waste__text {
    right: 0;
  }
}

/* ---------------- industrial-waste choose ---------------- */
.p-industrial-waste__choose {
  padding-bottom: 60px;
}

.p-choose__block {
  position: relative;
}

.p-choose__block .p-choose__img {
  position: relative;
}

.p-choose__block .p-choose__img img {
  min-height: 31.25rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-choose__block .p-choose__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.54;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}

.p-choose__block .p-choose__text {
  position: absolute;
  top: 24%;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.p-choose__block .p-choose__text .c-ttl {
  margin-bottom: 40px;
}

.p-choose__block.block-2 {
  width: 86%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 5.625rem 24px 40px;
  margin-top: -9%;
  position: relative;
  text-align: center;
}

.p-choose__block.block-2 .u-desc:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-choose__block .p-choose__img img {
    width: 100%;
    min-height: 17.5rem;
  }

  .p-choose__block .p-choose__text {
    top: 24px;
  }

  .p-choose__block .p-choose__text .c-ttl {
    margin-bottom: 20px;
  }

  .p-choose__block.block-2 {
    width: calc(100% - 32px);
    padding: 30px 10px;
  }

  .p-choose__block.block-2 .u-desc {
    font-size: 0.8125rem;
  }

  .p-choose__block.block-2 .u-desc:not(:last-of-type) {
    margin-bottom: 24px;
  }
}

/* ---------------- industrial-waste point ---------------- */
.p-industrial-waste__point {
  background-color: #EE761B;
  padding: 7.5rem 0;
}

.p-industrial-waste__point .l-wrap {
  position: relative;
  max-width: 1200px;
}

.p-industrial-waste__point .c-ttl {
  margin-bottom: 6.25rem;
}

.p-industrial-waste__point .point-ttl {
  font-weight: 800;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #fff;
  position: relative;
  color: #fff;
  padding-bottom: 30px;
}

.p-industrial-waste__point .point-ttl:not(:first-of-type) {
  margin-top: 6.25rem;
}

.p-industrial-waste__point .point-ttl::before {
  content: "";
  width: 20%;
  height: 1px;
  background-color: #FFE926;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.p-industrial-waste__point .point-text {
  background-color: #EE761B;
  padding-top: 30px;
  position: relative;
}

.p-industrial-waste__point .point-text p {
  color: #fff;
}

.p-point__container {
  position: relative;
}

.p-point__container .person-img {
  position: absolute;
  top: -22.5rem;
  right: 0;
  width: 34%;
  max-width: 24.5rem;
}

.p-ec-bnr {
  width: 100%;
  padding: 6.875rem 0;
}

.p-ec-bnr a {
  display: block;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
}

.p-ec-bnr a .text {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

@media (hover: hover) {
  .p-ec-bnr a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .p-industrial-waste__point {
    padding: 60px 0;
  }

  .p-industrial-waste__point .c-ttl {
    margin-bottom: 40px;
  }

  .p-industrial-waste__point .point-ttl {
    font-size: 1.0625rem;
    padding-bottom: 16px;
    letter-spacing: 0;
  }

  .p-industrial-waste__point .point-ttl:not(:first-of-type) {
    margin-top: 60px;
  }

  .p-industrial-waste__point .point-text {
    padding-top: 16px;
  }

  .p-point__container .person-img {
    display: none;
  }

  .p-ec-bnr {
    width: 100%;
    padding: 60px 0;
  }

  .p-ec-bnr a {
    border-radius: 20px;
  }

  .p-ec-bnr a .text {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }

  .p-ec-bnr a .bnr-img img {
    aspect-ratio: 375/180;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* -------------------------------
  page data
  ------------------------------- */
.p-data-section {
  padding: 5rem 0;
}

.p-data__block {
  max-width: 900px;
  margin: 0 auto;
}

.p-data__block:not(:last-of-type) {
  margin-bottom: 5rem;
}

.p-data__block .data-year {
  font-size: 1.125rem;
  font-weight: 800;
  border-bottom: 2px solid #EE761B;
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.p-data__block .data-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem 6.25rem;
}

.p-data__block .data-list a {
  color: #EE761B;
  font-weight: 600;
  font-size: max(1.125rem, 14px);
  transition: 0.3s ease;
  border-bottom: 1px solid #fff;
}

.p-data__block .data-list a::before {
  content: "▼";
  margin-right: 2px;
}

@media (hover: hover) {
  .p-data__block .data-list a:hover {
    opacity: 0.7;
    border-bottom: 1px solid #EE761B;
  }
}

@media screen and (max-width: 768px) {
  .p-data-section {
    padding: 80px 0;
  }

  .p-data__block:not(:last-of-type) {
    margin-bottom: 60px;
  }

  .p-data__block .data-year {
    font-size: 1.125rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .p-data__block .data-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .p-data__block .data-list a {
    font-size: 0.9375rem;
  }

  .p-data__block .data-list a::before {
    font-size: 0.875rem;
  }
}

/* -------------------------------
  page works
  ------------------------------- */
.p-works-section {
  padding: 80px 0;
}

.p-works-section .l-wrap {
  max-width: 1200px;
}

.p-works-category .category-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.p-works-category .category-list a {
  border: 2px solid #EE761B;
  font-size: 1.125rem;
  font-weight: 600;
  color: #EE761B;
  min-width: 130px;
  display: block;
  text-align: center;
  padding: 8px;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-works-category .category-list a:hover {
    background-color: #EE761B;
    color: #fff;
  }
}

.p-works-category .category-list li.is-active a {
  background-color: #EE761B;
  color: #fff;
}

.p-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.875rem 1.875rem;
  margin-top: 80px;
}

.p-works__list .works-img {
  overflow: hidden;
  position: relative;
}

.p-works__list .works-img img {
  aspect-ratio: 380/254;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works__list .works-category {
  font-size: 0.875rem;
  font-weight: 600;
  background-color: #EE761B;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 125px;
  padding: 6px;
  text-align: center;
  line-height: 1.5;
}

.p-works__list .works-ttl {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 700;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: 0.3s ease;
}

.p-works__list a {
  transition: 0.3s ease;
  display: block;
  width: 100%;
  position: relative;
}

@media (hover: hover) {
  .p-works__list a:hover .works-ttl {
    color: #EE761B;
  }
}

/* ------------ pagenation ------------*/
ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 120px;
  gap: 10px;
}

.page-numbers li .page-numbers {
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.875rem;
  transition: 0.3s ease;
  font-weight: 700;
  color: #EE761B;
  border-radius: 50%;
  border: 2px solid #EE761B;
}

.page-numbers li .page-numbers.current {
  color: #fff;
  background-color: #EE761B;
}

@media (hover: hover) {
  .page-numbers li a.page-numbers:hover {
    color: #fff;
    background-color: #EE761B;
  }
}

@media screen and (max-width: 768px) {
  .p-works-section {
    padding: 80px 0;
  }

  .p-works-category .category-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .p-works-category .category-list a {
    font-size: 0.9375rem;
    min-width: 9.375rem;
    padding: 6px;
  }

  .p-works__list {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .p-works__list .works-category {
    font-size: 0.8125rem;
    min-width: 120px;
    padding: 6px;
  }

  .p-works__list .works-ttl {
    font-size: 1rem;
  }

  ul.page-numbers {
    margin-top: 80px;
  }
}

/* ---------------------------------------------
  works article
  --------------------------------------------- */
.p-works-article {
  padding: 5.625rem 0 8.75rem;
}

.p-works-article .c-ttl {
  margin-bottom: 30px;
}

.p-works-article__head {
  background-color: #EE761B;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.p-works-article__head .p-works__ttl {
  font-size: 2.1875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.p-works-article__head .p-works__date {
  font-size: 1.125rem;
  font-weight: 600;
}

.p-works-article__area .l-wrap {
  max-width: 900px;
}

.p-works-article__block {
  margin-top: 80px;
}

.p-before-after__block {
  width: 100%;
  position: relative;
}

.p-before-after__block .tab-list {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
}

.p-before-after__block .tab-list .item {
  cursor: pointer;
  border-bottom: none;
  background: #fff;
  color: #EE761B;
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 162px;
  text-align: center;
  padding: 6px;
}

.p-before-after__block .tab-list .item.is-active {
  background: #EE761B;
  color: #fff;
}

.p-before-after__block .tab-contents .tab-img {
  display: none;
}

.p-before-after__block .tab-contents .tab-img img {
  width: 100%;
  aspect-ratio: 900/600;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-before-after__block .tab-contents .tab-img.is-active {
  display: block;
}

.p-works-info__block {
  background-color: #FFF5D2;
  border-radius: 30px;
  padding: 4.375rem 2.5rem 3.75rem;
}

.p-works-info__block dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 1.7;
  font-size: 1.125rem;
  font-weight: 600;
  gap: 10px;
}

.p-works-info__block dl:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 3px dotted #EE761B;
}

.p-works-info__block dl dt {
  width: 150px;
  font-weight: 600;
  padding-left: 30px;
}

.p-works-info__block dl dd {
  -ms-flex: 1;
  flex: 1;
}

.p-works-detail__block .main-img img {
  width: 100%;
  aspect-ratio: 900/600;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works-detail__block .thumbnail-list {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 20px 14px;
  margin-top: 20px;
}

.p-works-detail__block .thumbnail-list li {
  cursor: pointer;
}

.p-works-detail__block .thumbnail-list li img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-works-other__block {
  padding-bottom: 11.25rem;
}

.p-works-other__block .l-wrap {
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  .p-works-article {
    padding: 60px 0 80px;
  }

  .p-works-article .c-ttl {
    margin-bottom: 20px;
  }

  .p-works-article__head {
    padding: 20px;
  }

  .p-works-article__head .p-works__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
  }

  .p-works-article__head .p-works__date {
    font-size: 1rem;
    margin-top: 10px;
  }

  .p-works-article__block {
    margin-top: 60px;
  }

  .p-before-after__block {
    width: 100%;
    position: relative;
  }

  .p-before-after__block .tab-list {
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
  }

  .p-before-after__block .tab-list .item {
    font-size: 0.9375rem;
    min-width: 100px;
  }

  .p-works-info__block {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .p-works-info__block dl {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    gap: 10px;
  }

  .p-works-info__block dl:not(:last-child) {
    border-bottom: 2px dotted #EE761B;
  }

  .p-works-info__block dl dt {
    width: 100%;
    font-weight: 600;
    padding-left: 0;
  }

  .p-works-info__block dl dd {
    -ms-flex: initial;
    flex: initial;
    width: 100%;
  }

  .p-works-detail__block .thumbnail-list {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 16px;
  }

  .p-works-other__block {
    padding-bottom: 80px;
  }
}

/* -------------------------------
  page fluorocarbon
  ------------------------------- */
.p-fluorocarbon-ttl {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.42;
  color: #EE761B;
  margin-bottom: 30px;
}

.c-ttl-border {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #EE761B;
  border-bottom: 1px solid #D4D4D4;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 40px;
}

.c-ttl-border::after {
  content: "";
  display: block;
  width: 15%;
  height: 1px;
  background-color: #EE761B;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.p-fluorocarbon-section {
  padding: 80px 0;
}

.p-fluorocarbon-section .l-wrap {
  max-width: 1200px;
}

.p-fluorocarbon-section.section-1 .u-desc {
  max-width: 950px;
}

@media screen and (max-width: 768px) {
  .p-fluorocarbon-ttl {
    font-size: 1.625rem;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
  }

  .c-ttl-border {
    font-size: 1.625rem;
    letter-spacing: 0;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
}

/* ---------------- fluorocarbon about ---------------- */
.p-fluorocarbon-about .l-wrap {
  max-width: 1200px;
}

.p-fluorocarbon-about__head .l-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.p-fluorocarbon-about__head .head-img {
  width: 56vw;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}

.p-fluorocarbon-about__container {
  background-color: #EE761B;
  padding: 3.125rem 0 0;
  margin-top: -4%;
}

.p-fluorocarbon-about__container .l-wrap {
  position: relative;
}

.p-fluorocarbon-about__block .block-bubble {
  position: relative;
  display: inline-block;
  padding: 20px 30px;
  border-radius: 26px;
  background-color: #ffffff;
  text-align: left;
  font-size: 2.1875rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 800;
  width: 70%;
  max-width: 840px;
  margin-bottom: 2.5rem;
}

.p-fluorocarbon-about__block .block-bubble::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 92%;
  border-style: solid;
  border-width: 3.125rem 0 0 3.125rem;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
  -ms-transform: skew(35deg);
  transform: skew(35deg);
  -ms-transform-origin: top;
  transform-origin: top;
}

.p-fluorocarbon-about__block .block-text {
  width: 50%;
  max-width: 600px;
  padding-bottom: 50px;
}

.p-fluorocarbon-about__block .block-text p {
  color: #fff;
}

.p-fluorocarbon-about__block .block-text p:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

.p-fluorocarbon-about__block .block-img {
  width: 48%;
  max-width: 577px;
  position: absolute;
  bottom: 0;
  right: -18%;
}

@media screen and (max-width: 1580px) {
  .p-fluorocarbon-about__block .block-img {
    width: 42%;
    right: -4%;
  }
}

@media screen and (max-width: 768px) {
  .p-fluorocarbon-about__head .l-wrap {
    display: block;
  }

  .p-fluorocarbon-about__head .head-img {
    width: calc(100vw - 20px);
    margin-right: calc(50% - 50vw);
  }

  .p-fluorocarbon-about__container {
    margin-top: -3.75rem;
    padding-top: 80px;
  }

  .p-fluorocarbon-about__block {
    display: block;
  }

  .p-fluorocarbon-about__block .block-bubble {
    padding: 16px;
    font-size: 1.125rem;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .p-fluorocarbon-about__block .block-bubble::after {
    left: 15%;
    border-width: 20px 0 0 20px;
    -ms-transform: skew(20deg);
    transform: skew(20deg);
  }

  .p-fluorocarbon-about__block .block-text {
    width: 100%;
    max-width: 100%;
    padding-bottom: 60px;
  }

  .p-fluorocarbon-about__block .block-text p:not(:last-of-type) {
    margin-bottom: 16px;
  }

  .p-fluorocarbon-about__block .block-img {
    width: 88%;
    max-width: 600px;
    margin: 10px 0 20px auto;
    position: static;
  }
}

/* ---------------- fluorocarbon process ---------------- */
.p-fluorocarbon-process {
  padding: 80px 0;
}

.p-fluorocarbon-process .l-wrap {
  max-width: 1200px;
}

.p-fluorocarbon-process .c-ttl:not(:first-of-type) {
  margin-top: 5rem;
}

.p-fluorocarbon-process .c-fBox {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.p-fluorocarbon-process .c-fBox figure {
  max-width: 550px;
}

@media screen and (max-width: 768px) {
  .p-fluorocarbon-process .c-ttl:not(:first-of-type) {
    margin-top: 60px;
  }

  .p-fluorocarbon-process .c-fBox {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
  }

  .p-fluorocarbon-process .c-fBox figure {
    max-width: 360px;
  }
}

/* -------------------------------
  page fbasic knowledge
  ------------------------------- */
.p-knowledge__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  margin-top: 104px;
}

@media screen and (max-width: 768px) {
  .p-knowledge__grid {
    flex-direction: column;
  }
}

.p-knowledge__left {
  min-width: 280px;
  width: 63.1%;
}

.p-knowledge__left .knowledge-category {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.p-knowledge__left .knowledge-category li {
  border-bottom: 1px solid #D4D4D4;
  margin-bottom: 34px;
  position: relative;
}

.p-knowledge__left .knowledge-category li:after {
  display: block;
  content: "";
  width: 134px;
  height: 1px;
  background: #EE761B;
}

.p-knowledge__left .knowledge-category li a {
  font-weight: 900;
  font-size: 18px;
  color: #e26920;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 8px;
  padding-bottom: 34px;
  width: 100%;
}

.p-knowledge__left .knowledge-category li a span {
  margin-right: 4px;
  color: #e26920;
}

.p-knowledge__left .knowledge-category li a:hover {
  opacity: 0.8;
}

.p-knowledge__left .knowledge-banners {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-knowledge__left .knowledge-banners li {
  width: calc(33.333% - 8px);
}

.p-knowledge__left .knowledge-banners img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .p-knowledge__left .knowledge-banners li, .p-knowledge__left {
    width: 100%;
  }
}

.p-knowledge__right {
  flex: 1;
  min-width: 280px;
}

.knowledge-box {
  margin-bottom: 42px;
}

.knowledge-heading {
  font-weight: bold;
  font-size: 18px;
  color: #EE761B;
  border-left: 4px solid #EE761B;
  padding-left: 10px;
  margin-bottom: 25px;
}

.knowledge-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.knowledge-links li {
  border-bottom: 1px solid #ddd;
  margin-bottom: 8px;
}

.knowledge-links li a {
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding-bottom: 8px;
  font-weight: 600;
  letter-spacing: .05em;
  border-bottom: 1px solid #EE761B;
  transition: .3s;
}

.knowledge-links li a:hover {
  color: #EE761B;
}

.knowledge-logo-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 27px;
}

.knowledge-logo-list img {
  max-width: 142px;
  height: auto;
  width: 100%;
}

ul.knowledge-banners a {
  position: relative;
  overflow: hidden;
}

ul.knowledge-banners a img {
  transition: .3s;
}

ul.knowledge-banners a:hover img {
  transform: scale(1.1);
}

.banner-title {
  background: rgba(228, 118, 27, .8);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 9px;
  height: 100%;
  padding: 25px;
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 26px;
  z-index: 1;
}

section.p-knowledge-section {
  padding-bottom: 100px;
}

h2.wp-block-heading {
  font-size: 35px;
  font-weight: 900;
  color: var(--main-color);
  letter-spacing: .1em;
}

.block-editor-content>*:not(:first-child) {
  margin-top: 20px;
}

h2.wp-block-heading:not(:first-child) {
  margin-top: 60px;
}

h3.wp-block-heading {
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  padding-bottom: 8px;
  padding-bottom: 21px;
  border-bottom: 1px solid #D4D4D4;
  position: relative;
  letter-spacing: .05em;
}

h3.wp-block-heading:after {
  display: block;
  content: "";
  width: 134px;
  height: 1px;
  background: #EE761B;
  position: absolute;
  bottom: 0;
}

h3.wp-block-heading:not(:first-child) {
  margin-top: 40px;
}

h2.wp-block-heading+p, h3.wp-block-heading+p, h4.wp-block-heading+p, h5.wp-block-heading+p {
  margin-top: 20px;
}

.wp-block-snow-monkey-blocks-media-text.smb-media-text:not(:first-child) {
  margin-top: 60px;
}

section.c-page-head.block-editor .l-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section.c-page-head.block-editor .c-page-ttl__ja {
  text-align: left;
  color: #fff;
  font-size: 36px;
  font-weight: 900;
}

h4.wp-block-heading {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: #EE761B;
  padding: 20px 25px;
  letter-spacing: .05em;
}

h4.wp-block-heading:not(:first-child) {
  margin-top: 40px;
}

h5.wp-block-heading {
  font-size: 17px;
  color: #fff;
  background: #EC9D66;
  font-weight: 600;
  padding: 21px;
}

h5.wp-block-heading:not(:first-child) {
  margin-top: 20px;
}

p.l-text {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 40px;
}

.smb-items__item.smb-items__item--free {
  border: 1px solid #EE761B;
  height: 100%;
}

h5.wp-block-heading+figure.wp-block-image {
  padding: 40px 20px;
}

h4.wp-block-heading+.wp-block-snow-monkey-blocks-items.smb-items {
  margin-top: 20px;
}

.smb-items__item.smb-items__item--free .wp-block-image img {
  height: 200px;
  object-fit: contain;
}

.smb-items__item.smb-items__item--free figure.wp-block-image {
  text-align: center;
}

form.post-password-form input {
  border: 1px solid;
}

form.post-password-form input[type="submit"] {
  background: var(--main-color);
  color: #fff;
  font-weight: 700;
  padding: 0 20px;
  border-color: var(--main-color) ! IMPORTANT;
}

p.l-text a {
  color: var(--main-color);
  font-weight: 600;
  /* text-decoration: underline; */
}

p.pdf.l-text a {
  display: flex;
  align-items: center;
}

p.pdf.l-text a:after {
  display: inline-block;
  content: "";
  width: 13px;
  height: 17px;
  background-image: url(../images/pdf-icon.png);
  background-size: cover;
  margin-left: 10px;
}

.p-sideber-wrapper {
  flex: 1;
}

.page-id-32 .login-link-wrapper {
  display: none;
}

.page-id-32 .login-link-wrapper+h4.wp-block-heading {
  margin-top: 0;
}

.recruit-link-wrapper {
  margin-top: 21px;
}

/* -------------------------------
  page blog archive
  ------------------------------- */
.p-blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* ← 2列に固定 */
  gap: 30px;
}

.p-blog-item {
  background: #f9f9f9;
  /* border: 1px solid #ddd; */
  transition: 0.3s;
}


.p-blog-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.p-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  padding: 10px 15px;
  color: #666;
}

.p-blog-cat {
  background: #e1edf7;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.75em;
  color: #1a3c72;
}

.p-blog-date {
  color: #888;
}

.p-blog-title {
  font-size: 1.1em;
  font-weight: bold;
  padding: 0 15px 15px;
  color: #333;
}

.p-blog-single {
  background: #fff;
}

.p-blog-single .p-blog-meta {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.p-blog-single .p-blog-title {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--main-color);
}

.p-blog-thumb img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}


.block-editor-content ul {
  padding-left: 1.2em;
  margin-bottom: 1.5em;
}

.block-editor-content li {
  list-style: disc;
  margin-bottom: 0.5em;
}

.p-blog-back {
  margin-top: 40px;
}

.p-blog-back .c-button {
  display: inline-block;
  background: var(--main-color, #1a3c72);
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.p-blog-back .c-button:hover {}

section.p-blog-section {
  padding-bottom: 100px;
}

h1.p-blog-title {
  padding-left: 0;
}

section.policy {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .p-knowledge__grid {
    flex-direction: column;
  }

  .p-knowledge__left,
  .sidebar {
    width: 100%;
  }

  .p-blog-meta {
    flex-direction: column;
    gap: 5px;
  }

  .p-blog-title {
    font-size: 1.4em;
  }
}

/* -------------------------------
  page sdgs
  ------------------------------- */
h2.p-fluorocarbon-ttl.our-action-title {
  margin-top: 164px;
  text-align: center;
  margin-bottom: 131px;
}

.p-fluorocarbon-section.section-1 .u-desc {
  max-width: none;
}
.page-id-34 section.p-fluorocarbon-section:last-child {
    padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
  section.sdgs.sutainability {
    margin-top: 0;
}
h2.p-fluorocarbon-ttl.our-action-title {
    margin-top: 80px;
    margin-bottom: 80px;
}
}