/*------------------------------------------------------------------------------ 
  Base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.7; }

[v-cloak] {
  display: none; }

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

body {
  color: #131414;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(16px, 2vw, 17px);
  letter-spacing: .05em; }

.en {
  font-family: "Work Sans", sans-serif; }

.uppercase {
  text-transform: uppercase; }

a {
  color: #131414;
  text-decoration: none;
  transition: .3s; }
  a:hover {
    opacity: .8; }

h1 {
  font-size: clamp(24px, 3vw, 26px); }

h2 {
  font-size: clamp(22px, 2.5vw, 24px); }

h3 {
  font-size: clamp(20px, 2vw, 22px); }

h4 {
  font-size: clamp(18px, 2vw, 20px); }

h5 {
  font-size: clamp(17px, 2vw, 18px); }

h6 {
  font-size: clamp(16px, 2vw, 17px); }

.f-500 {
  font-weight: 500; }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.disc {
  list-style: disc;
  padding-left: clamp(20px, 3vw, 40px); }

ol {
  padding-left: clamp(20px, 3vw, 40px); }
  ol li {
    padding-left: 5px; }
    ol li:not(:last-of-type) {
      margin-bottom: 10px; }

.in-bl {
  display: inline-block; }

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

.container {
  padding: 0 25px; }
  @media screen and (min-width: 768px) {
    .container {
      margin: 0 auto;
      max-width: 1300px;
      padding: 0;
      width: 80%; } }

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important; } }

@media screen and (min-width: 768px) {
  .tab-under {
    display: none !important; } }

@media (max-width: 767px) {
  .tab-over {
    display: none !important; } }

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important; } }

.grecaptcha-badge {
  visibility: hidden; }

/*------------------------------------------------------------------------------ 
  Common
------------------------------------------------------------------------------*/
/* Flex
-----------------------------------------------------------*/
.flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  row-gap: clamp(20px, 3vw, 40px); }

.between {
  justify-content: space-between; }

.around {
  justify-content: space-around; }

/* Pc Flex
-----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .pc-flex {
    align-items: center;
    display: flex;
    flex-wrap: wrap; } }

@media screen and (min-width: 1025px) {
  .pc-between {
    justify-content: space-between; } }

/* Grid
-----------------------------------------------------------*/
.grid {
  display: grid; }
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: 1fr 2fr; } }

/* Button
-----------------------------------------------------------*/
.btn a {
  background: #fff;
  border: 2px solid #3397a3;
  display: block;
  padding: 15px 20px; }
  .btn a:hover {
    background: #3397a3;
    color: #fff;
    opacity: 1; }

.border-btn a {
  display: inline-block; }
  .border-btn a:hover {
    opacity: 1; }
    .border-btn a:hover .arrow {
      width: calc(clamp(200px, 23vw, 250px) + 8px); }
  .border-btn a .arrow {
    background: #4d5454;
    height: 1px;
    margin-top: 5px;
    position: relative;
    transition: width .3s;
    width: clamp(200px, 23vw, 250px); }
    .border-btn a .arrow:before {
      border: 1px solid #4d5454;
      border-left: 0;
      border-top: 0;
      content: '';
      height: 8px;
      position: absolute;
      right: -3px;
      top: 50%;
      transform: rotate(-45deg) translateY(-68%);
      width: 8px; }

.arrow-btn {
  margin-top: clamp(45px, 5vw, 60px);
  text-align: right; }
  .arrow-btn a {
    padding-right: 75px;
    position: relative; }
    .arrow-btn a:after {
      background: #fff;
      border: 1px solid #3397a3;
      border-radius: 50%;
      content: '';
      height: 60px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: .3s;
      width: 60px; }
    .arrow-btn a:hover:after {
      background: #3397a3;
      border-color: #3397a3;
      opacity: 1; }
    .arrow-btn a:hover .txt:after {
      transform: scale(1, 1); }
    .arrow-btn a:hover .arrow:after {
      transform: translateX(0); }
    .arrow-btn a .txt {
      position: relative; }
      .arrow-btn a .txt:after {
        background: #4d5454;
        bottom: -5px;
        content: '';
        height: 1px;
        position: absolute;
        left: 0;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: .3s;
        width: 100%; }
    .arrow-btn a .arrow {
      height: 13px;
      overflow: hidden;
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      width: 13px;
      z-index: 10; }
      .arrow-btn a .arrow:before, .arrow-btn a .arrow:after {
        content: '';
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        mask-image: url(../img/common/arrow.svg) no-repeat center/cover;
        -webkit-mask: url(../img/common/arrow.svg) no-repeat center/cover; }
      .arrow-btn a .arrow:before {
        background: #3397a3; }
      .arrow-btn a .arrow:after {
        background: #fff;
        transform: translateX(-100%);
        transition: .3s; }

/* Button Area
-----------------------------------------------------------*/
.btn-area .btn a,
.btn-area_2 .btn a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center; }

.btn-area {
  display: grid;
  gap: 20px clamp(30px, 3vw, 40px); }
  @media (min-width: 1025px) {
    .btn-area {
      grid-template-columns: repeat(3, 1fr); } }

.btn-area_2 {
  display: flex;
  flex-wrap: wrap;
  gap: 25px clamp(20px, 3vw, 40px);
  justify-content: space-around;
  margin-top: clamp(50px, 5vw, 60px); }
  .btn-area_2 .btn {
    max-width: 450px;
    width: 100%; }
    @media (min-width: 600px) {
      .btn-area_2 .btn {
        width: 45%; } }
    .btn-area_2 .btn a {
      padding: 25px 20px; }

/* Sns List
-----------------------------------------------------------*/
.sns-li {
  align-items: center;
  display: flex;
  gap: 25px; }
  .sns-li li {
    width: 27px; }

/* Circle List
-----------------------------------------------------------*/
.circle-li a {
  display: block;
  font-size: 16px;
  padding: 7px 10px 7px 17px;
  position: relative; }
  .circle-li a:hover {
    opacity: 1; }
    .circle-li a:hover:before {
      transform: translateY(-50%) scale(1.5); }
  .circle-li a:before {
    background: #80d8d0;
    border-radius: 50%;
    left: 0;
    content: '';
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    width: 10px; }

/* Image Transform
-----------------------------------------------------------*/
.img-transform {
  aspect-ratio: 3 / 2;
  border-radius: 7px;
  overflow: hidden;
  position: relative; }
  .img-transform img {
    position: absolute;
    height: 100%;
    inset: 0;
    object-fit: cover;
    transform: translate3d(0, 0, 0) scale(1);
    width: 100%;
    will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .img-transform img {
    transition: none !important; } }
/* Philosophy-cont
-----------------------------------------------------------*/
.philosophy-cont {
  border-bottom: 1px solid #adb3b2;
  border-top: 1px solid #adb3b2;
  padding: clamp(55px, 7vw, 90px) 20px; }
  @media (min-width: 1025px) {
    .philosophy-cont ul {
      margin-left: auto;
      max-width: 815px;
      width: 85%; } }
  .philosophy-cont ul li {
    display: flex;
    gap: 0 35px; }
    .philosophy-cont ul li:not(:last-of-type) {
      margin-bottom: clamp(55px, 7vw, 90px) !important; }
    @media (min-width: 1025px) {
      .philosophy-cont ul li:nth-of-type(2) {
        margin-left: clamp(80px, 8vw, 120px); } }
    .philosophy-cont ul li .num {
      color: #3397a3;
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1; }
    .philosophy-cont ul li .txt {
      font-size: clamp(17px, 1.8vw, 23px);
      font-weight: 500; }
      @media (max-width: 599px) {
        .philosophy-cont ul li .txt {
          margin-top: 20px; } }

/*------------------------------------------------------------------------------ 
  Loading
------------------------------------------------------------------------------*/
@property --feather {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px; }
#loading {
  align-items: center;
  display: flex;
  height: 100dvh;
  inset: 0;
  justify-content: center;
  position: fixed;
  width: 100%;
  z-index: 1000; }
  #loading .bg {
    background: #f5f7f7;
    inset: 0;
    opacity: 1;
    position: absolute;
    z-index: -1;
    --feather: 0px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - var(--feather)), transparent 100%);
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - var(--feather)), transparent 100%);
    mask-size: 100% 100%;
    mask-repeat: no-repeat; }
  #loading .bg.fade-out {
    animation: upAndFeather .4s ease-in forwards; }
@keyframes upAndFeather {
  0% {
    transform: translateY(0);
    --feather: 0px; }
  50% {
    transform: translateY(-50%);
    --feather: 100px; }
  100% {
    transform: translateY(-100%);
    --feather: 400px; } }
  #loading img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(250px, 28vw, 300px);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .7s ease-in-out; }

/*------------------------------------------------------------------------------ 
  Header
------------------------------------------------------------------------------*/
header {
  padding: 10px; }
  @media screen and (min-width: 1025px) {
    header {
      padding: 10px 0 10px 20px;
      width: calc(100% - 80px); } }
  header h1,
  header .logo {
    font-size: 2em;
    margin: 0; }
    header h1 img,
    header .logo img {
      width: clamp(200px, 20vw, 300px); }
  header #nav {
    position: relative; }
    @media (min-width: 1025px) {
      header #nav {
        margin: 0 auto;
        max-width: 730px;
        width: 68%; } }
    header #nav input[type="checkbox"] {
      display: none; }
      header #nav input[type="checkbox"]:checked ~ .toggle .open {
        opacity: 0;
        visibility: hidden; }
      header #nav input[type="checkbox"]:checked ~ .toggle .close {
        opacity: 1;
        visibility: visible; }
      header #nav input[type="checkbox"]:checked ~ .nav-wrap {
        opacity: 1;
        top: 0;
        visibility: visible; }
        header #nav input[type="checkbox"]:checked ~ .nav-wrap .nav-fade {
          opacity: 1;
          transform: translateY(0); }
    header #nav .toggle {
      background: #b2d6da;
      border-radius: 50%;
      height: 50px;
      position: fixed;
      right: 10px;
      top: 10px;
      transition: transform .2s;
      width: 50px;
      z-index: 200; }
      header #nav .toggle:hover {
        cursor: pointer;
        transform: scale(1.05); }
      @media (min-width: 1025px) {
        header #nav .toggle {
          height: 60px;
          right: 25px;
          top: 20px;
          width: 60px; } }
      header #nav .toggle .en {
        font-size: 15px;
        left: 50%;
        position: absolute;
        text-transform: uppercase;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: .5s; }
        @media (min-width: 1025px) {
          header #nav .toggle .en {
            font-size: 17px;
            letter-spacing: 2px; } }
      header #nav .toggle .close {
        opacity: 0;
        visibility: hidden; }
    header #nav .nav-li li a,
    header #nav .pc-nav li a {
      display: block; }
    header #nav .nav-wrap {
      background: #fbf9f7;
      height: 100vh;
      left: 0;
      overflow-x: hidden;
      overflow-y: scroll;
      padding: 40px 20px 90px;
      position: fixed;
      top: -2000vh;
      transition: .5s;
      width: 100%;
      z-index: 100; }
      @media (min-width: 768px) {
        header #nav .nav-wrap {
          display: flex;
          flex-direction: column; } }
      header #nav .nav-wrap .nav-fade {
        opacity: 0;
        transform: translateY(20px);
        transition: .8s .7s; }
      header #nav .nav-wrap .nav-in {
        display: grid; }
        @media (max-width: 767px) {
          header #nav .nav-wrap .nav-in {
            row-gap: 25px; } }
        @media (min-width: 768px) {
          header #nav .nav-wrap .nav-in {
            gap: 40px;
            grid-template-columns: 1.5fr 1fr;
            margin: auto;
            max-width: 1300px;
            width: 90%; } }
        @media (min-width: 1025px) {
          header #nav .nav-wrap .nav-in {
            grid-template-columns: 1fr 1.5fr 1fr; } }
        @media (max-width: 767px) {
          header #nav .nav-wrap .nav-in .logo-area {
            margin-bottom: 30px; } }
        @media (min-width: 768px) and (max-width: 1024px) {
          header #nav .nav-wrap .nav-in .logo-area {
            grid-column: span 2; } }
        @media (min-width: 1025px) {
          header #nav .nav-wrap .nav-in .logo-area {
            display: flex;
            flex-direction: column; } }
        header #nav .nav-wrap .nav-in .logo-area .logo a:hover,
        header #nav .nav-wrap .nav-in .logo-area .sns-li a:hover {
          opacity: 1; }
          header #nav .nav-wrap .nav-in .logo-area .logo a:hover img,
          header #nav .nav-wrap .nav-in .logo-area .sns-li a:hover img {
            transform: translateY(-3px); }
        header #nav .nav-wrap .nav-in .logo-area .logo a img,
        header #nav .nav-wrap .nav-in .logo-area .sns-li a img {
          transition: transform .3s; }
        @media (min-width: 1015px) {
          header #nav .nav-wrap .nav-in .logo-area .sns-li {
            margin-top: auto; } }
        header #nav .nav-wrap .nav-in .grid-item {
          display: grid; }
          header #nav .nav-wrap .nav-in .grid-item:nth-of-type(2) {
            row-gap: 35px; }
          @media (max-width: 767px) {
            header #nav .nav-wrap .nav-in .grid-item:last-of-type {
              row-gap: 25px; } }
          @media (min-width: 768px) and (max-width: 802px) {
            header #nav .nav-wrap .nav-in .grid-item:last-of-type {
              grid-template-rows: 1.3fr 1fr; } }
          @media (min-width: 1025px) {
            header #nav .nav-wrap .nav-in .grid-item:last-of-type {
              grid-template-rows: 1.3fr 1fr; } }
          @media (min-width: 1138px) {
            header #nav .nav-wrap .nav-in .grid-item:last-of-type {
              grid-template-rows: 1.2fr 1fr; } }
          header #nav .nav-wrap .nav-in .grid-item:last-of-type .nav-li li:not(:last-of-type) {
            margin-bottom: 20px; }
            @media (min-width: 768px) {
              header #nav .nav-wrap .nav-in .grid-item:last-of-type .nav-li li:not(:last-of-type) {
                margin-bottom: 10px; } }
        header #nav .nav-wrap .nav-in .nav-li li .num {
          font-size: 18px; }
        header #nav .nav-wrap .nav-in .nav-li li .nav-li_menu {
          padding: 5px 0 0 15px; }
          header #nav .nav-wrap .nav-in .nav-li li .nav-li_menu li a {
            padding: 7px 10px; }
            header #nav .nav-wrap .nav-in .nav-li li .nav-li_menu li a:hover {
              transform: translateX(5px); }
            header #nav .nav-wrap .nav-in .nav-li li .nav-li_menu li a:before {
              display: none; }
      header #nav .nav-wrap .sns-li.sp {
        justify-content: center;
        margin-top: 50px; }
    header #nav .pc-nav {
      font-size: 14px;
      font-weight: 500; }
      @media (min-width: 1270px) {
        header #nav .pc-nav {
          font-size: 15px; } }
      header #nav .pc-nav li a {
        position: relative; }
        header #nav .pc-nav li a:hover {
          opacity: 1; }
          header #nav .pc-nav li a:hover:before {
            transform: translateX(-50%) scale(1); }
        header #nav .pc-nav li a:before {
          background: #80d8d0;
          border-radius: 50%;
          bottom: -12px;
          content: '';
          height: 10px;
          left: 50%;
          position: absolute;
          transform: translateX(-50%) scale(0);
          transition: .3s;
          width: 10px; }
      header #nav .pc-nav .current a {
        position: relative; }
        header #nav .pc-nav .current a:before {
          background: #3397a3;
          border-radius: 50%;
          bottom: -12px;
          content: '';
          height: 10px;
          left: 50%;
          position: absolute;
          transform: translateX(-50%);
          width: 10px; }

/*------------------------------------------------------------------------------ 
  Animation
------------------------------------------------------------------------------*/
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: scale(1); }
  8% {
    opacity: 1;
    transform: scale(1.015); }
  25% {
    opacity: 1;
    transform: scale(1.05); }
  40% {
    opacity: 0;
    transform: scale(1.05); }
  100% {
    opacity: 0;
    transform: scale(1.05); } }
/*------------------------------------------------------------------------------ 
  Hero
------------------------------------------------------------------------------*/
#hero {
  padding: 15px 10px 10px;
  position: sticky;
  top: 0;
  z-index: -1; }
  @media (min-width: 600px) {
    #hero {
      padding: clamp(20px, 3vw, 40px) clamp(20px, 2vw, 30px) clamp(20px, 2vw, 30px); } }
  #hero p {
    color: #3397a3;
    font-size: clamp(18px, 2.5vw, 30px);
    font-weight: bold;
    left: clamp(20px, 5vw, 50px);
    margin: 0;
    padding-right: 10px;
    position: absolute;
    top: clamp(30px, 5vw, 65px);
    z-index: 100; }
    #hero p span {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 3px;
      padding: 7px clamp(20px, 3vw, 30px); }
      #hero p span:first-of-type {
        display: block;
        margin: 0 10px 10px 0; }
      #hero p span:nth-of-type(2) {
        display: inline-block; }
  #hero .slide {
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    position: relative; }
    #hero .slide span {
      animation: fadeSlide 20s linear infinite both;
      height: 100%;
      left: 0;
      opacity: 0;
      position: absolute;
      top: 0;
      width: 100%;
      will-change: opacity, transform; }
      #hero .slide span:first-of-type {
        background: url(../img/header/slide/slide-1.jpg) no-repeat center/cover; }
      #hero .slide span:nth-of-type(2) {
        background: url(../img/header/slide/slide-2.jpg) no-repeat 60% 50%/cover;
        animation-delay: 4s; }
        @media (min-width: 1280px) {
          #hero .slide span:nth-of-type(2) {
            background: url(../img/header/slide/slide-2.jpg) no-repeat center/cover; } }
      #hero .slide span:nth-of-type(3) {
        background: url(../img/header/slide/slide-3.jpg) no-repeat 35% 50%/cover;
        animation-delay: 8s; }
        @media (min-width: 1280px) {
          #hero .slide span:nth-of-type(3) {
            background: url(../img/header/slide/slide-3.jpg) no-repeat center/cover; } }
      #hero .slide span:nth-of-type(4) {
        background: url(../img/header/slide/slide-4.jpg) no-repeat 35% 50%/cover;
        animation-delay: 12s; }
        @media (min-width: 1280px) {
          #hero .slide span:nth-of-type(4) {
            background: url(../img/header/slide/slide-4.jpg) no-repeat center/cover; } }
      #hero .slide span:last-of-type {
        background: url(../img/header/slide/slide-5.jpg) no-repeat 30% 50%/cover;
        animation-delay: 16s; }

/*------------------------------------------------------------------------------ 
  Top Page
------------------------------------------------------------------------------*/
#top-page {
  background: #fff; }
  #top-page section {
    padding: clamp(50px, 8vw, 100px) 0; }
    #top-page section h2 {
      font-size: clamp(16px, 2vw, 20px);
      font-weight: 400;
      padding-left: clamp(20px, 2vw, 25px);
      position: relative; }
      #top-page section h2:before {
        background: #80d8d0;
        border-radius: 50%;
        left: 0;
        content: '';
        height: clamp(15px, 2vw, 18px);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: clamp(15px, 2vw, 18px); }
    #top-page section .en-ttl {
      font-family: "Work Sans", sans-serif;
      font-size: clamp(40px, 6vw, 75px);
      font-weight: 500;
      line-height: 1;
      margin-bottom: clamp(50px, 6vw, 70px);
      text-transform: uppercase; }
  #top-page #info h2 {
    padding: 0; }
    #top-page #info h2:before {
      display: none; }
  @media (min-width: 1025px) {
    #top-page #info .info {
      max-width: 700px;
      width: 75%; } }
  #top-page #info .info article a {
    border-bottom: 1px solid #d2d9d8;
    color: #4d5454;
    gap: 7px 25px;
    padding: 15px 10px; }
    #top-page #info .info article a:hover {
      opacity: 1; }
      #top-page #info .info article a:hover h3 {
        color: #80d8d0; }
    #top-page #info .info article a time {
      font-size: 16px; }
    #top-page #info .info article a h3 {
      font-size: clamp(15px, 2vw, 16px);
      font-weight: 400;
      margin: 0;
      transition: color .3s;
      width: 100%; }
      @media (min-width: 768px) {
        #top-page #info .info article a h3 {
          width: calc(100% - 125px); } }
  #top-page #info .border-btn {
    margin-top: clamp(40px, 5vw, 50px); }
  @media (min-width: 768px) {
    #top-page #philosophy {
      background: #fbf9f7;
      padding-bottom: clamp(100px, 11vw, 140px); } }
  #top-page #feature .cont {
    gap: 30px clamp(50px, 7vw, 90px);
    position: relative; }
    #top-page #feature .cont .left-cont .img {
      aspect-ratio: 3/ 2;
      background: url(../img/top/feature/feature.jpg) no-repeat center/cover;
      border-radius: 5px; }
      @media (min-width: 768px) {
        #top-page #feature .cont .left-cont .img {
          aspect-ratio: 3/ 4;
          position: sticky;
          top: 0; } }
    @media (max-width: 767px) {
      #top-page #feature .cont .right-cont .feature-li li {
        background: #f5f7f7;
        margin: 0 calc(50% - 50vw) 15px;
        padding: 40px 30px; } }
    @media (min-width: 768px) {
      #top-page #feature .cont .right-cont .feature-li li {
        border-bottom: 1px solid #d2d9d8;
        padding: clamp(35px, 4vw, 60px) clamp(15px, 2vw, 20px); }
        #top-page #feature .cont .right-cont .feature-li li:first-of-type {
          border-top: 1px solid #d2d9d8; } }
    #top-page #feature .cont .right-cont .feature-li li .ttl {
      align-items: center;
      display: flex;
      gap: 0 clamp(25px, 3vw, 40px); }
      @media (max-width: 767px) {
        #top-page #feature .cont .right-cont .feature-li li .ttl {
          flex-direction: column;
          margin-bottom: 10px; } }
      @media (min-width: 768px) {
        #top-page #feature .cont .right-cont .feature-li li .ttl {
          margin-bottom: 40px; } }
      #top-page #feature .cont .right-cont .feature-li li .ttl .img {
        background: #fff;
        border: 2px solid #80d8d0;
        border-radius: 50%;
        padding: 35px;
        width: 150px; }
        @media (min-width: 768px) {
          #top-page #feature .cont .right-cont .feature-li li .ttl .img {
            padding: clamp(20px, 3vw, 35px);
            width: clamp(100px, 12vw, 140px); } }
      #top-page #feature .cont .right-cont .feature-li li .ttl h3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 2;
        text-align: center; }
        @media (min-width: 768px) {
          #top-page #feature .cont .right-cont .feature-li li .ttl h3 {
            font-size: clamp(17px, 1.7vw, 20px); } }
        #top-page #feature .cont .right-cont .feature-li li .ttl h3 span {
          font-size: 22px;
          text-decoration: 10px rgba(51, 151, 163, 0.4) underline;
          text-underline-offset: -3px; }
    #top-page #feature .cont .right-cont .feature-li li p {
      margin: auto; }
      @media (max-width: 767px) {
        #top-page #feature .cont .right-cont .feature-li li p {
          max-width: 500px; } }
      @media (min-width: 768px) {
        #top-page #feature .cont .right-cont .feature-li li p {
          width: 90%; } }
  #top-page #business .business {
    margin: 0 auto;
    position: relative;
    width: 90%; }
    #top-page #business .business .item {
      border-radius: 10px;
      height: 70vh;
      min-height: 400px;
      left: 0;
      overflow: hidden;
      position: sticky;
      top: 0; }
      #top-page #business .business .item:before {
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transform: scale(var(--scale, 1.1));
        width: 100%; }
      #top-page #business .business .item:not(:first-of-type) {
        margin-top: -18px; }
        @media (min-width: 1025px) {
          #top-page #business .business .item:not(:first-of-type) {
            margin-top: -30px; } }
      #top-page #business .business .item:first-of-type:before {
        background: url(../img/top/business/recreate.jpg) no-repeat 10% 50%/cover;
        background: url(../img/top/business/recreate.png) no-repeat 0 80%;
        background-size: 250px; }
        @media (min-width: 768px) {
          #top-page #business .business .item:first-of-type:before {
            background: url(../img/top/business/recreate.png) no-repeat 12% 80%;
            background-size: 280px; } }
      #top-page #business .business .item:first-of-type:after {
        background: url(../img/top/business/recreate-bg.jpg) no-repeat center/cover;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1; }
      #top-page #business .business .item:nth-of-type(2) {
        top: 50px; }
        @media (min-width: 1280px) {
          #top-page #business .business .item:nth-of-type(2) {
            top: 60px; } }
        #top-page #business .business .item:nth-of-type(2):before {
          background: url(../img/top/business/recycling.jpg) no-repeat 80% 50%/cover; }
          @media (min-width: 1025px) {
            #top-page #business .business .item:nth-of-type(2):before {
              background: url(../img/top/business/recycling.jpg) no-repeat 80% 0/cover; } }
      #top-page #business .business .item:nth-of-type(3) {
        top: 100px; }
        @media (min-width: 1280px) {
          #top-page #business .business .item:nth-of-type(3) {
            top: 120px; } }
        #top-page #business .business .item:nth-of-type(3):before {
          background: url(../img/top/business/eco.jpg) no-repeat 75% 50%/cover; }
      #top-page #business .business .item:last-of-type {
        top: 150px; }
        @media (min-width: 1280px) {
          #top-page #business .business .item:last-of-type {
            top: 180px; } }
        #top-page #business .business .item:last-of-type:before {
          background: url(../img/top/business/processing.jpg) no-repeat 40% 0/cover; }
        #top-page #business .business .item:last-of-type a:after {
          bottom: 30px; }
      #top-page #business .business .item a {
        display: block;
        height: 100%; }
        #top-page #business .business .item a:hover {
          opacity: 1; }
          @media (min-width: 768px) {
            #top-page #business .business .item a:hover:after {
              transform: scale(1); } }
        #top-page #business .business .item a:before, #top-page #business .business .item a:after {
          position: absolute; }
        #top-page #business .business .item a:before {
          background: rgba(19, 20, 20, 0.4);
          content: '';
          height: 100%;
          left: 0;
          width: 100%;
          z-index: 1; }
        #top-page #business .business .item a:after {
          align-items: center;
          background: rgba(128, 216, 208, 0.6);
          border-radius: 50%;
          bottom: 60px;
          content: 'view more';
          display: flex;
          font-family: "Work Sans", sans-serif;
          font-size: 13px;
          font-weight: 500;
          justify-content: center;
          height: 70px;
          line-height: 1.4;
          right: 20px;
          text-align: center;
          text-transform: uppercase;
          transition: .3s;
          width: 70px;
          z-index: 2; }
          @media (min-width: 768px) {
            #top-page #business .business .item a:after {
              font-size: 15px;
              height: 90px;
              transform: scale(0);
              width: 90px; } }
        #top-page #business .business .item a h3 {
          color: #fff;
          font-size: clamp(18px, 2vw, 23px);
          font-weight: 500;
          left: 20px;
          margin: 0;
          position: absolute;
          top: 10px;
          z-index: 1; }
        #top-page #business .business .item a p {
          color: #fff;
          font-size: clamp(17px, 1.8vw, 21px);
          font-weight: 500;
          left: 50%;
          margin: 0;
          position: absolute;
          text-align: center;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 90%;
          z-index: 1; }
  #top-page #works .en-ttl {
    margin-bottom: 0; }
  #top-page #works .works {
    margin: 0 auto;
    position: relative;
    width: 100%;
    --gap: 25px;
    --perView: 3.3;
    position: relative; }
    @media (max-width: 1024px) {
      #top-page #works .works {
        --perView: 2.6; } }
    @media (max-width: 640px) {
      #top-page #works .works {
        --perView: 1.6; } }
    #top-page #works .works .gallery-controls {
      display: flex;
      gap: 15px;
      justify-content: flex-end;
      margin: 0 5vw clamp(50px, 6vw, 70px); }
      #top-page #works .works .gallery-controls .arrow {
        align-items: center;
        background: #fff;
        border: 1px solid #b2d6da;
        display: flex;
        height: clamp(35px, 4vw, 55px);
        justify-content: center;
        position: relative;
        width: clamp(35px, 4vw, 55px); }
        #top-page #works .works .gallery-controls .arrow:hover {
          cursor: pointer; }
        #top-page #works .works .gallery-controls .arrow span {
          background: #3397a3;
          display: block;
          height: calc(20px / 2 * tan(60deg));
          width: 15px; }
        #top-page #works .works .gallery-controls .arrow .left {
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
          margin-right: 3px; }
        #top-page #works .works .gallery-controls .arrow .right {
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          margin-left: 3px; }
      #top-page #works .works .gallery-controls .arrow[disabled] {
        cursor: default;
        opacity: .4;
        pointer-events: none; }
    #top-page #works .works .works-li {
      display: grid;
      gap: 25px;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - (var(--gap) * (var(--perView) - 1))) / var(--perView));
      overflow-x: auto;
      margin-left: 10%;
      scroll-padding: 0;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      transition: transform .3s ease;
      -webkit-overflow-scrolling: touch; }
      #top-page #works .works .works-li .work-card {
        display: grid; }
        #top-page #works .works .works-li .work-card a {
          background: rgba(128, 216, 208, 0.1);
          background: rgba(178, 214, 218, 0.2);
          border: 1px solid #d2d9d8;
          border-radius: 5px;
          display: block;
          padding: 15px 12px 20px 12px; }
          @media (min-width: 768px) {
            #top-page #works .works .works-li .work-card a {
              padding: 20px; } }
          #top-page #works .works .works-li .work-card a:hover {
            background: none;
            opacity: 1;
            transform: translateY(-10px); }
            #top-page #works .works .works-li .work-card a:hover .term {
              color: #3397a3; }
          #top-page #works .works .works-li .work-card a .card-img .thumb {
            aspect-ratio: 4 / 5;
            position: relative; }
            @media (min-width: 768px) {
              #top-page #works .works .works-li .work-card a .card-img .thumb {
                aspect-ratio: 3 / 4; } }
            #top-page #works .works .works-li .work-card a .card-img .thumb:after {
              background: rgba(19, 20, 20, 0.4);
              content: '';
              height: 100%;
              left: 0;
              position: absolute;
              top: 0;
              width: 100%; }
            #top-page #works .works .works-li .work-card a .card-img .thumb img {
              border-radius: 5px;
              height: 100%;
              object-fit: cover; }
            #top-page #works .works .works-li .work-card a .card-img .thumb h3 {
              bottom: 10px;
              color: #fff;
              font-size: clamp(16px, 2vw, 17px);
              font-weight: 500;
              left: 50%;
              position: absolute;
              transform: translateX(-50%);
              width: 90%;
              z-index: 1; }
          #top-page #works .works .works-li .work-card a .term {
            font-weight: 500;
            font-size: clamp(15px, 1vw, 16px);
            margin-top: 20px;
            transition: color .2s; }
  #top-page #contact {
    background: url(../img/top/contact.jpg) no-repeat center/cover;
    margin-top: clamp(75px, 9vw, 100px);
    padding: 0; }
    @media (min-width: 1025px) {
      #top-page #contact {
        padding: clamp(50px, 7vw, 90px) 0; } }
    #top-page #contact .cont {
      background: rgba(255, 255, 255, 0.8);
      padding: 60px 30px; }
      @media (min-width: 1025px) {
        #top-page #contact .cont {
          background: #fff;
          border-radius: 7px;
          margin-left: auto;
          padding: 50px 90px 75px;
          width: 50%; } }
      #top-page #contact .cont .cta-btn {
        margin-top: clamp(50px, 6vw, 75px); }
        #top-page #contact .cont .cta-btn .btn {
          text-align: center; }
          #top-page #contact .cont .cta-btn .btn a {
            margin: auto;
            max-width: 400px;
            padding: clamp(15px, 2vw, 22px) 20px; }
            @media (min-width: 1025px) {
              #top-page #contact .cont .cta-btn .btn a {
                max-width: 500px; } }
        #top-page #contact .cont .cta-btn .tel {
          line-height: 1.5;
          margin-bottom: 40px;
          text-align: center; }
          #top-page #contact .cont .cta-btn .tel a .en {
            color: #3397a3;
            font-size: clamp(32px, 4vw, 40px); }
          #top-page #contact .cont .cta-btn .tel a .time {
            display: block;
            font-size: 16px; }
        #top-page #contact .cont .cta-btn .mail a {
          align-items: center;
          display: flex;
          height: 90px;
          justify-content: center;
          max-width: 400px; }
          @media (min-width: 768px) {
            #top-page #contact .cont .cta-btn .mail a {
              height: 100%; } }

/*------------------------------------------------------------------------------ 
  Sub Header
------------------------------------------------------------------------------*/
#sub-head {
  padding-bottom: clamp(80px, 11vw, 130px);
  padding-top: clamp(80px, 11vw, 130px);
  /* Breadcrumbs
  ------------------------------------------------------------------------------*/ }
  #sub-head .ttl-area {
    margin-bottom: 30px; }
    #sub-head .ttl-area h1 {
      margin: 0; }
      #sub-head .ttl-area h1 .jp {
        display: block;
        font-size: clamp(16px, 2vw, 18px);
        font-weight: 400;
        margin-bottom: 10px;
        padding-left: clamp(22px, 2vw, 27px);
        position: relative; }
        #sub-head .ttl-area h1 .jp:before {
          background: #80d8d0;
          border-radius: 50%;
          left: 0;
          content: '';
          height: clamp(15px, 2vw, 18px);
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: clamp(15px, 2vw, 18px); }
      #sub-head .ttl-area h1 .en {
        display: block;
        font-family: "Work Sans", sans-serif;
        font-size: clamp(50px, 7vw, 85px);
        font-size: clamp(32px, 7vw, 85px);
        font-weight: 500;
        line-height: 1.1;
        text-transform: uppercase; }
  #sub-head .breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    justify-content: flex-end;
    row-gap: 5px; }
    #sub-head .breadcrumbs li {
      position: relative; }
      #sub-head .breadcrumbs li:not(:last-of-type) {
        padding-right: 30px; }
        #sub-head .breadcrumbs li:not(:last-of-type):after {
          background: #adb3b2;
          content: '';
          height: 1px;
          position: absolute;
          right: 10px;
          top: 50%;
          transform: translateY(-50%);
          width: 12px; }
      #sub-head .breadcrumbs li:last-of-type {
        color: #3397a3; }

/*------------------------------------------------------------------------------ 
  Sub Page
------------------------------------------------------------------------------*/
#sub {
  /* Re Create ------------------------------------------------
  -----------------------------------------------------------*/
  /* Works List 
  -----------------------------------------------------------*/
  /* About Business
  -----------------------------------------------------------*/
  /* Eco Friendly Cliening
  -----------------------------------------------------------*/
  /* Cleac Up
  -----------------------------------------------------------*/
  /* Coating
  -----------------------------------------------------------*/
  /* Business -------------------------------------------------
  -----------------------------------------------------------*/
  /* Recycling
  -----------------------------------------------------------*/
  /* Eco Products
  -----------------------------------------------------------*/
  /* Processing
  -----------------------------------------------------------*/
  /* Company ---------------------------------------------------
  -----------------------------------------------------------*/
  /* Philosophy 
  -----------------------------------------------------------*/
  /* Social Action ---------------------------------------------
  -----------------------------------------------------------*/
  /* Recruit --------------------------------------------------
  -----------------------------------------------------------*/
  /* Contact ---------------------------------------------------
  -----------------------------------------------------------*/
  /* Privacy Policy -------------------------------------------
  -----------------------------------------------------------*/ }
  #sub section,
  #sub .sec {
    padding-bottom: clamp(110px, 12vw, 150px);
    /* heading
    -----------------------------------------------------------*/
    /* Table
    -----------------------------------------------------------*/
    /* Map
    -----------------------------------------------------------*/
    /* Image Transform Area
    -----------------------------------------------------------*/
    /* Numbering
    -----------------------------------------------------------*/
    /* Text Image
    -----------------------------------------------------------*/ }
    #sub section .inner,
    #sub .sec .inner {
      margin: clamp(40px, 6vw, 70px) 0; }
      #sub section .inner:last-of-type,
      #sub .sec .inner:last-of-type {
        margin-bottom: 0; }
    #sub section .disc li:not(:last-of-type),
    #sub .sec .disc li:not(:last-of-type) {
      margin-bottom: 10px; }
    #sub section .red,
    #sub .sec .red {
      color: #d94c4c;
      font-weight: 500; }
    #sub section h2.top-b,
    #sub .sec h2.top-b {
      border-top: 1px solid #adb3b2;
      margin: 0 0 clamp(50px, 7vw, 80px);
      padding-top: 40px; }
      #sub section h2.top-b .en,
      #sub .sec h2.top-b .en {
        color: #80d8d0;
        display: block;
        font-size: clamp(19px, 2vw, 22px);
        font-weight: 500;
        line-height: 1.1;
        text-transform: uppercase;
        position: relative;
        padding-left: clamp(25px, 3vw, 32px); }
        #sub section h2.top-b .en:before,
        #sub .sec h2.top-b .en:before {
          background: #80d8d0;
          border-radius: 3px;
          content: '';
          left: 0;
          content: '';
          height: clamp(13px, 1vw, 15px);
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: clamp(20px, 2vw, 23px); }
      #sub section h2.top-b .jp,
      #sub .sec h2.top-b .jp {
        color: #4d5454;
        font-size: clamp(23px, 3vw, 35px);
        font-weight: 500; }
    #sub section .slogan,
    #sub .sec .slogan {
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 500; }
    #sub section h3.border,
    #sub .sec h3.border {
      border-bottom: 2px solid #131414;
      font-weight: 500;
      margin-bottom: clamp(45px, 5vw, 60px);
      padding-bottom: 7px; }
    #sub section h3.green,
    #sub .sec h3.green {
      color: #3397a3;
      font-weight: 500; }
    #sub section h4.bg,
    #sub .sec h4.bg {
      background: #f0f5f4;
      display: inline-block;
      font-weight: 500;
      padding: 7px 20px; }
    #sub section table th,
    #sub section table td,
    #sub .sec table th,
    #sub .sec table td {
      padding: clamp(20px, 3vw, 30px) 15px; }
      @media screen and (max-width: 767px) {
        #sub section table th,
        #sub section table td,
        #sub .sec table th,
        #sub .sec table td {
          display: block; } }
    #sub section table th,
    #sub .sec table th {
      font-weight: 500;
      text-align: left;
      vertical-align: baseline; }
      @media (max-width: 767px) {
        #sub section table th,
        #sub .sec table th {
          padding-bottom: 0 !important; } }
    @media (max-width: 767px) {
      #sub section table td,
      #sub .sec table td {
        padding-top: 20px !important; } }
    #sub section table td .disc,
    #sub .sec table td .disc {
      padding-left: 25px; }
      @media (min-width: 768px) {
        #sub section table td .disc,
        #sub .sec table td .disc {
          padding-left: 20px; } }
    #sub section table td .link,
    #sub .sec table td .link {
      display: inline-block;
      margin-left: 20px; }
      #sub section table td .link a,
      #sub .sec table td .link a {
        border-bottom: 1px solid #3397a3;
        color: #3397a3;
        font-weight: 500; }
    #sub section .border-table,
    #sub .sec .border-table {
      border-collapse: collapse;
      width: 100%; }
      @media (min-width: 768px) {
        #sub section .border-table,
        #sub .sec .border-table {
          margin: auto;
          width: 95%; } }
      #sub section .border-table th,
      #sub section .border-table td,
      #sub .sec .border-table th,
      #sub .sec .border-table td {
        border-bottom: 1px solid #adb3b2;
        padding: clamp(50px, 5vw, 60px) 15px; }
      #sub section .border-table th,
      #sub .sec .border-table th {
        color: #3397a3; }
        @media (max-width: 767px) {
          #sub section .border-table th,
          #sub .sec .border-table th {
            border-bottom: none !important; } }
    #sub section .map,
    #sub .sec .map {
      height: 0;
      padding-top: 70%;
      position: relative; }
      @media screen and (min-width: 600px) {
        #sub section .map,
        #sub .sec .map {
          padding-top: 40%; } }
      @media screen and (min-width: 1025px) {
        #sub section .map,
        #sub .sec .map {
          height: 350px;
          padding-top: 0; } }
      #sub section .map iframe,
      #sub .sec .map iframe {
        height: 100%;
        position: absolute;
        top: 0;
        width: 100%; }
    #sub section .img-transform_area,
    #sub .sec .img-transform_area {
      display: grid;
      gap: 20px 30px; }
      @media (min-width: 768px) {
        #sub section .img-transform_area,
        #sub .sec .img-transform_area {
          grid-template-columns: repeat(2, 1fr); } }
      #sub section .img-transform_area .vertical-img,
      #sub .sec .img-transform_area .vertical-img {
        aspect-ratio: 2 / 3; }
        @media (max-width: 767px) {
          #sub section .img-transform_area .vertical-img,
          #sub .sec .img-transform_area .vertical-img {
            aspect-ratio: 3 / 4;
            margin-left: auto;
            max-width: 350px;
            width: 75%; } }
      #sub section .img-transform_area .img-cont .img-transform,
      #sub .sec .img-transform_area .img-cont .img-transform {
        width: 65%; }
        #sub section .img-transform_area .img-cont .img-transform:first-of-type,
        #sub .sec .img-transform_area .img-cont .img-transform:first-of-type {
          margin-bottom: clamp(20px, 3vw, 30px); }
        #sub section .img-transform_area .img-cont .img-transform:last-of-type,
        #sub .sec .img-transform_area .img-cont .img-transform:last-of-type {
          margin-left: auto; }
    #sub section .numbering,
    #sub .sec .numbering {
      counter-reset: counter; }
      #sub section .numbering li,
      #sub .sec .numbering li {
        border-bottom: 1px solid #d2d9d8;
        font-weight: 500;
        padding: 30px 30px 30px clamp(60px, 7vw, 80px);
        position: relative; }
        #sub section .numbering li:before,
        #sub .sec .numbering li:before {
          content: counter(counter,decimal-leading-zero);
          counter-increment: counter;
          font-family: "Work Sans", sans-serif;
          font-size: 25px;
          font-weight: 400;
          left: 10px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%); }
    #sub section .txt-img,
    #sub .sec .txt-img {
      display: grid;
      gap: 35px clamp(50px, 8vw, 100px); }
      @media (min-width: 768px) {
        #sub section .txt-img,
        #sub .sec .txt-img {
          grid-template-columns: 2fr 1fr; } }
      #sub section .txt-img img,
      #sub .sec .txt-img img {
        border-radius: 5px;
        margin: 0 auto;
        max-width: 250px; }
        @media (min-width: 768px) {
          #sub section .txt-img img,
          #sub .sec .txt-img img {
            max-width: 300px; } }
  #sub #recreate .recreate {
    padding-top: clamp(65px, 7vw, 90px);
    position: relative; }
    #sub #recreate .recreate:after {
      background: #f5f7f7;
      content: '';
      height: 100%;
      left: 0;
      margin: 0 calc(50% - 50vw);
      position: absolute;
      top: 0;
      width: 100vw;
      z-index: -1; }
    #sub #recreate .recreate .item {
      align-items: center;
      display: grid;
      gap: 25px clamp(50px, 6vw, 80px); }
      @media (max-width: 767px) {
        #sub #recreate .recreate .item:not(:last-of-type) {
          margin-bottom: 90px; } }
      @media (min-width: 768px) {
        #sub #recreate .recreate .item {
          grid-template-columns: 1fr 1.5fr;
          margin-bottom: 70px; }
          #sub #recreate .recreate .item:nth-of-type(even) {
            grid-template-columns: 1.5fr 1fr; }
            #sub #recreate .recreate .item:nth-of-type(even) .img-transform {
              order: 2; } }
      @media (min-width: 768px) {
        #sub #recreate .recreate .item .img-transform {
          aspect-ratio: 3 / 4; } }
      #sub #recreate .recreate .item .right-cont {
        position: relative; }
        #sub #recreate .recreate .item .right-cont .num {
          color: #b2d6da;
          font-family: "Work Sans", sans-serif;
          font-size: clamp(45px, 10vw, 120px);
          line-height: 1;
          position: absolute;
          right: 0;
          top: -20px; }
          @media (min-width: 768px) {
            #sub #recreate .recreate .item .right-cont .num {
              bottom: calc(100% - 50px);
              opacity: .5;
              top: auto; } }
          @media (min-width: 1280px) {
            #sub #recreate .recreate .item .right-cont .num {
              font-size: 200px;
              opacity: .3; } }
        #sub #recreate .recreate .item .right-cont h3 {
          border-bottom: 2px solid #3397a3;
          display: inline-block;
          font-weight: 500;
          line-height: 2;
          margin-bottom: clamp(30px, 4vw, 40px); }
          #sub #recreate .recreate .item .right-cont h3 span {
            display: block;
            font-size: clamp(16px, 2vw, 18px); }
            #sub #recreate .recreate .item .right-cont h3 span .in-bl {
              display: inline-block; }
        #sub #recreate .recreate .item .right-cont .arrow-btn {
          margin: clamp(40px, 6vw, 70px) 0 0 auto; }
          @media (min-width: 768px) {
            #sub #recreate .recreate .item .right-cont .arrow-btn {
              max-width: 300px; } }
          #sub #recreate .recreate .item .right-cont .arrow-btn a {
            font-weight: 500;
            text-transform: uppercase; }
  #sub #recreate-works .works-li {
    display: grid;
    gap: clamp(45px, 5vw, 60px) clamp(60px, 6vw, 90px); }
    @media (min-width: 768px) {
      #sub #recreate-works .works-li {
        grid-template-columns: repeat(2, 1fr); } }
    #sub #recreate-works .works-li li {
      border-bottom: 1px solid #d2d9d8;
      display: flex;
      flex-direction: column;
      margin: 0;
      padding-bottom: clamp(65px, 7vw, 80px); }
      #sub #recreate-works .works-li li .work-ttl {
        font-size: clamp(18px, 2vw, 20px);
        font-weight: 500;
        margin-bottom: clamp(18px, 2vw, 20px); }
      #sub #recreate-works .works-li li .img-area {
        display: flex;
        gap: clamp(10px, 2vw, 20px); }
        #sub #recreate-works .works-li li .img-area .img {
          position: relative;
          width: 50%; }
          #sub #recreate-works .works-li li .img-area .img:before, #sub #recreate-works .works-li li .img-area .img:after {
            bottom: clamp(5px, 1vw, 10px);
            color: #fff;
            font-family: "Work Sans", sans-serif;
            font-size: clamp(20px, 2vw, 22px);
            left: 50%;
            padding: 2px 15px;
            position: absolute;
            text-transform: uppercase;
            transform: translateX(-50%); }
          #sub #recreate-works .works-li li .img-area .img img {
            aspect-ratio: 3 / 4;
            border-radius: 5px;
            height: 100%;
            object-fit: cover; }
        #sub #recreate-works .works-li li .img-area .before:before {
          background: rgba(19, 20, 20, 0.5);
          content: 'before'; }
        #sub #recreate-works .works-li li .img-area .after:before {
          background-image: linear-gradient(45deg, rgba(210, 217, 216, 0.7) 10%, rgba(51, 151, 163, 0.7) 55%);
          content: 'after'; }
      #sub #recreate-works .works-li li p {
        margin-bottom: clamp(40px, 4vw, 50px); }
      #sub #recreate-works .works-li li .arrow-btn {
        margin-top: auto; }
  #sub .about-business h3 {
    font-weight: 500;
    text-decoration: 2px underline #3397a3;
    text-underline-offset: 10px; }
  #sub .about-business .cont .type {
    margin-bottom: clamp(40px, 6vw, 70px); }
  #sub .about-business .cont .merit {
    gap: 0 clamp(25px, 4vw, 50px); }
    @media (min-width: 768px) and (max-width: 1279px) {
      #sub .about-business .cont .merit {
        grid-template-columns: 1fr 1.5fr; } }
    #sub .about-business .cont .merit .heading {
      font-size: clamp(20px, 2vw, 22px);
      font-weight: 500;
      text-decoration: 2px underline #3397a3;
      text-underline-offset: 10px; }
      @media (min-width: 768px) and (max-width: 1024px) {
        #sub .about-business .cont .merit .heading {
          line-height: 1.8;
          text-underline-offset: 5px; } }
      #sub .about-business .cont .merit .heading .br {
        display: none; }
        @media (min-width: 768px) and (max-width: 1024px) {
          #sub .about-business .cont .merit .heading .br {
            display: block; } }
  #sub .about-business .cont .detail {
    counter-reset: counter; }
    #sub .about-business .cont .detail .detail-cont {
      margin-bottom: clamp(40px, 6vw, 70px); }
      #sub .about-business .cont .detail .detail-cont h4.bg {
        padding-left: clamp(50px, 6vw, 65px);
        position: relative; }
        #sub .about-business .cont .detail .detail-cont h4.bg:before {
          content: counter(counter,decimal-leading-zero);
          counter-increment: counter;
          font-family: "Work Sans", sans-serif;
          font-size: clamp(22px, 2vw, 25px);
          font-weight: 400;
          left: 10px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%); }
      #sub .about-business .cont .detail .detail-cont .check-li {
        margin-top: clamp(15px, 2vw, 20px);
        padding-left: clamp(15px, 2vw, 25px); }
        #sub .about-business .cont .detail .detail-cont .check-li li {
          font-size: clamp(16px, 2vw, 18px);
          font-weight: 500;
          margin-bottom: 30px;
          padding-left: 35px;
          position: relative; }
          #sub .about-business .cont .detail .detail-cont .check-li li:before {
            background: url(../img/recreate/regeneration/check.svg) no-repeat center/cover;
            content: '';
            height: 25px;
            left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 25px; }
  #sub .about-business .cont .part {
    margin-top: 50px; }
    #sub .about-business .cont .part h5 {
      font-weight: 500; }
    #sub .about-business .cont .part .part-li {
      display: grid;
      gap: 18px;
      text-align: center; }
      @media (min-width: 600px) {
        #sub .about-business .cont .part .part-li {
          grid-template-columns: repeat(2, 1fr); } }
      @media (min-width: 1025px) {
        #sub .about-business .cont .part .part-li {
          grid-template-columns: repeat(3, 1fr); } }
      @media (min-width: 1440px) {
        #sub .about-business .cont .part .part-li {
          grid-template-columns: repeat(4, 1fr); } }
      #sub .about-business .cont .part .part-li li {
        border: 1px solid #d2d9d8;
        border-radius: 3px;
        padding: 20px clamp(15px, 2vw, 30px); }
  #sub .about-business .flow {
    display: grid;
    margin-top: clamp(90px, 12vw, 150px);
    row-gap: 40px; }
    @media (min-width: 1025px) {
      #sub .about-business .flow {
        grid-template-columns: 1fr 3fr; } }
    #sub .about-business .flow h3 {
      font-size: clamp(22px, 2vw, 23px);
      margin: 0; }
    #sub .about-business .flow .flow-li {
      counter-reset: counter; }
      #sub .about-business .flow .flow-li li {
        align-items: center;
        border-top: 1px solid #d2d9d8;
        display: grid;
        gap: 30px 70px;
        padding: 60px clamp(15px, 2vw, 20px);
        position: relative; }
        @media (max-width: 1024px) {
          #sub .about-business .flow .flow-li li:first-of-type {
            border: none; } }
        @media (min-width: 768px) {
          #sub .about-business .flow .flow-li li {
            grid-template-columns: repeat(2, 1fr); } }
        #sub .about-business .flow .flow-li li:before {
          color: #d2d9d8;
          content: counter(counter,decimal-leading-zero);
          counter-increment: counter;
          font-family: "Work Sans", sans-serif;
          font-size: clamp(50px, 5.5vw, 70px);
          left: 10px;
          line-height: 1;
          position: absolute;
          top: clamp(10px, 2vw, 15px); }
        #sub .about-business .flow .flow-li li .txt h4 {
          font-size: clamp(20px, 2vw, 21px);
          font-weight: 500; }
        #sub .about-business .flow .flow-li li .img img {
          aspect-ratio: 3 / 2;
          border-radius: 5px;
          object-fit: cover; }
  #sub #eco-friendly-cleaning .type {
    margin-bottom: clamp(80px, 12vw, 130px); }
  #sub #eco-friendly-cleaning .detail .detail-cont {
    display: grid;
    gap: 20px 50px;
    margin: clamp(80px, 12vw, 130px) 0 0; }
    @media (min-width: 768px) {
      #sub #eco-friendly-cleaning .detail .detail-cont {
        grid-template-columns: 1fr 7fr; } }
    @media (min-width: 1025px) {
      #sub #eco-friendly-cleaning .detail .detail-cont {
        grid-template-columns: 1fr 5fr; } }
    #sub #eco-friendly-cleaning .detail .detail-cont .num:before {
      color: #80d8d0;
      content: counter(counter,decimal-leading-zero);
      counter-increment: counter;
      font-family: "Work Sans", sans-serif;
      font-size: clamp(60px, 7vw, 80px);
      line-height: 1; }
    #sub #eco-friendly-cleaning .detail .detail-cont .detail-body h4 {
      font-size: clamp(23px, 2vw, 25px);
      font-weight: 500;
      margin-top: 0; }
    #sub #eco-friendly-cleaning .detail .detail-cont .detail-body .part h5 {
      color: #4d5454; }
    @media (min-width: 1025px) {
      #sub #eco-friendly-cleaning .detail .detail-cont .detail-body .part .part-li {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1280px) {
      #sub #eco-friendly-cleaning .detail .detail-cont .detail-body .part .part-li {
        grid-template-columns: repeat(3, 1fr); } }
    #sub #eco-friendly-cleaning .detail .detail-cont .detail-body .part .part-li li {
      padding: 20px 15px; }
  #sub #clean-up h3 {
    color: #3397a3;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    margin-bottom: clamp(30px, 4vw, 40px);
    text-decoration: none; }
  #sub #clean-up .cont .type {
    margin-top: clamp(40px, 6vw, 70px); }
  #sub #clean-up .cont #recreate-works .bg {
    font-size: clamp(20px, 2vw, 22px); }
  #sub #clean-up .cont #recreate-works .works-li li {
    border: none;
    padding-bottom: 0; }
  #sub #coating .about-business .feature-li {
    margin: 55px auto;
    max-width: 1000px; }
    #sub #coating .about-business .feature-li li {
      align-items: center;
      border: 1px solid #80d8d0;
      border-radius: 5px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
      row-gap: 5px;
      width: 100%; }
      @media (min-width: 600px) {
        #sub #coating .about-business .feature-li li {
          aspect-ratio: 1 / 1;
          border: 2px solid #80d8d0;
          border-radius: 50%;
          max-width: 250px;
          width: 30%; } }
      @media (min-width: 1025px) {
        #sub #coating .about-business .feature-li li {
          width: 25%; } }
      #sub #coating .about-business .feature-li li .feature {
        font-size: 18px;
        font-weight: 500; }
      #sub #coating .about-business .feature-li li p {
        font-size: 16px;
        margin: 0;
        text-align: center; }
        @media (max-width: 1024px) {
          #sub #coating .about-business .feature-li li p {
            line-height: 1.5; } }
  #sub #coating .about-business .detail .detail-cont h4 {
    padding: 7px 20px; }
    #sub #coating .about-business .detail .detail-cont h4:before {
      display: none; }
  #sub #coating .about-business .detail .detail-cont .part {
    margin-top: 20px; }
    @media (min-width: 1025px) {
      #sub #coating .about-business .detail .detail-cont .part .part-li {
        grid-template-columns: repeat(4, 1fr); } }
    #sub #coating .about-business .detail .detail-cont .part .part-li li {
      padding: 10px 10px 20px 10px; }
      #sub #coating .about-business .detail .detail-cont .part .part-li li span {
        border: 1px solid #3397a3;
        border-radius: 3px;
        color: #3397a3;
        display: block;
        font-weight: 500;
        margin-top: 20px;
        padding: 5px 10px; }
  #sub #coating .about-business .img-area {
    margin: clamp(50px, 7vw, 80px) auto 0; }
    @media (min-width: 768px) {
      #sub #coating .about-business .img-area {
        max-width: 900px;
        width: 85%; } }
    #sub #coating .about-business .img-area img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      width: 45%; }
  #sub #coating .structure .cont:last-of-type {
    margin-top: 80px; }
    #sub #coating .structure .cont:last-of-type h3 {
      margin-bottom: 35px; }
  #sub #coating .structure .cont .img-transform_area {
    gap: clamp(15px, 2vw, 30px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: clamp(45px, 5vw, 60px); }
    @media (min-width: 768px) {
      #sub #coating .structure .cont .img-transform_area {
        max-width: 700px;
        width: 85%; } }
  #sub #business .detail .slogan {
    margin-bottom: clamp(70px, 8vw, 90px); }
    #sub #business .detail .slogan .en {
      font-size: clamp(30px, 4vw, 45px); }
  #sub #business .detail .cont {
    display: grid;
    gap: 50px clamp(60px, 9vw, 120px); }
    @media (min-width: 1025px) {
      #sub #business .detail .cont {
        grid-template-columns: 1.5fr 1fr; } }
    @media (max-width: 1024px) {
      #sub #business .detail .cont .numbering {
        order: 2; } }
    @media (max-width: 1024px) {
      #sub #business .detail .cont .img-transform {
        order: 1; } }
    @media (min-width: 1025px) {
      #sub #business .detail .cont .img-transform {
        aspect-ratio: 4 / 5; } }
  #sub #business .business {
    gap: 30px clamp(50px, 7vw, 90px);
    position: relative; }
    @media (min-width: 768px) {
      #sub #business .business .left-cont .img {
        aspect-ratio: 3 / 4;
        border-radius: 5px;
        overflow: hidden;
        position: sticky;
        top: 0;
        top: 50px; }
        #sub #business .business .left-cont .img img {
          height: 100%;
          inset: 0;
          object-fit: cover;
          opacity: 0;
          pointer-events: none;
          position: absolute;
          transition: opacity .5s;
          width: 100%;
          will-change: opacity; }
          #sub #business .business .left-cont .img img.is-active {
            opacity: 1;
            z-index: 1; } }
    #sub #business .business .right-cont .business-li li {
      border-bottom: 1px solid #adb3b2;
      padding: 60px clamp(15px, 2vw, 20px); }
      @media (max-width: 767px) {
        #sub #business .business .right-cont .business-li li:first-of-type {
          padding-top: 0; } }
      @media (min-width: 768px) {
        #sub #business .business .right-cont .business-li li:first-of-type {
          border-top: 1px solid #adb3b2; } }
      #sub #business .business .right-cont .business-li li .img-transform {
        border-radius: 5px;
        margin-bottom: 40px; }
      #sub #business .business .right-cont .business-li li h2 {
        font-weight: 500;
        margin: 0 0 clamp(30px, 4vw, 50px); }
      @media (min-width: 768px) {
        #sub #business .business .right-cont .business-li li p {
          margin: auto;
          width: 90%; } }
      #sub #business .business .right-cont .business-li li .arrow-btn {
        text-align: right; }
  #sub #recycling .other {
    margin-bottom: clamp(60px, 8vw, 95px); }
    #sub #recycling .other .recycling-li li:first-of-type .before:after {
      display: none !important; }
  #sub #recycling .recycling-li li {
    margin-bottom: 10px; }
    #sub #recycling .recycling-li li .before,
    #sub #recycling .recycling-li li .after {
      padding: 15px; }
      @media (min-width: 1025px) {
        #sub #recycling .recycling-li li .before,
        #sub #recycling .recycling-li li .after {
          padding: clamp(18px, 2vw, 25px) 35px; } }
    #sub #recycling .recycling-li li .before {
      position: relative;
      width: 100%; }
      @media (min-width: 1025px) {
        #sub #recycling .recycling-li li .before {
          padding-right: 40px;
          width: 180px; } }
      #sub #recycling .recycling-li li .before:after {
        background: #3397a3;
        bottom: -15px;
        content: '';
        height: 15px;
        left: 30px;
        position: absolute;
        transform: rotate(90deg);
        width: 15px;
        mask-image: url(../img/common/arrow.svg) no-repeat center/cover;
        -webkit-mask: url(../img/common/arrow.svg) no-repeat center/cover; }
        @media (min-width: 1025px) {
          #sub #recycling .recycling-li li .before:after {
            left: auto;
            right: 0;
            top: 50%;
            transform: translateY(-50%); } }
  #sub #recycling .general {
    margin-bottom: clamp(65px, 8vw, 80px); }
    #sub #recycling .general h3 {
      background: #f0f5f4;
      display: inline-block;
      font-weight: 500;
      padding: 7px 20px;
      text-decoration: none; }
    #sub #recycling .general .how {
      margin: clamp(45px, 5vw, 60px) 0; }
      #sub #recycling .general .how h4 {
        color: #3397a3; }
      #sub #recycling .general .how .disc li {
        margin-bottom: 30px; }
        #sub #recycling .general .how .disc li span {
          color: #4d5454;
          display: block;
          font-weight: 500;
          margin-bottom: 5px; }
    #sub #recycling .general .txt-img .border-table th,
    #sub #recycling .general .txt-img .border-table td {
      padding: 30px 15px; }
    @media (min-width: 768px) {
      #sub #recycling .general .txt-img .border-table th {
        width: 30%; } }
    @media (min-width: 1280px) {
      #sub #recycling .general .txt-img .border-table th {
        width: 23%; } }
    #sub #recycling .general .txt-img img {
      max-width: 100%;
      width: clamp(200px, 20vw, 250px); }
  #sub #recycling .station h3 {
    text-decoration: none; }
  #sub #recycling .station .grid {
    margin-bottom: clamp(20px, 3vw, 40px); }
    @media (min-width: 768px) {
      #sub #recycling .station .grid {
        grid-template-columns: 1fr; } }
    @media (min-width: 1025px) {
      #sub #recycling .station .grid {
        align-items: center;
        gap: clamp(30px, 3vw, 50px);
        grid-template-columns: 1fr 1.5fr; } }
    @media (min-width: 1025px) and (max-width: 1279px) {
      #sub #recycling .station .grid table th,
      #sub #recycling .station .grid table td {
        display: block;
        padding: 15px; }
      #sub #recycling .station .grid table th {
        padding-bottom: 0; } }
    #sub #recycling .station .grid table th {
      color: #3397a3; }
    #sub #recycling .station .grid .map {
      border-radius: 5px;
      overflow: hidden; }
      @media (min-width: 1025px) {
        #sub #recycling .station .grid .map {
          height: clamp(250px, 22vw, 300px); } }
  @media (min-width: 768px) {
    #sub #recycling .station .img-transform_area {
      grid-template-columns: 3fr 3fr 1fr; } }
  @media (max-width: 767px) {
    #sub #recycling .station .img-transform_area .flag {
      width: 180px; } }
  #sub #recycling .flow {
    gap: 40px 70px; }
    @media (min-width: 1025px) and (max-width: 1279px) {
      #sub #recycling .flow {
        grid-template-columns: 1fr 2.2fr; } }
    #sub #recycling .flow h3 {
      line-height: 1.8;
      text-underline-offset: 5px; }
    @media (min-width: 1025px) {
      #sub #recycling .flow .flow-li li {
        column-gap: clamp(55px, 5vw, 70px); } }
  #sub #eco .spec-area {
    display: grid;
    gap: 40px;
    margin: 50px 0 35px; }
    @media (min-width: 768px) {
      #sub #eco .spec-area {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1025px) {
      #sub #eco .spec-area {
        column-gap: clamp(70px, 7vw, 90px); } }
    #sub #eco .spec-area .spec h5 {
      color: #4d5454; }
    @media (max-width: 767px) {
      #sub #eco .spec-area .spec .border-table thead {
        display: none; } }
    #sub #eco .spec-area .spec .border-table thead th {
      color: #131414; }
    #sub #eco .spec-area .spec .border-table th,
    #sub #eco .spec-area .spec .border-table td {
      padding: 20px clamp(20px, 2vw, 30px); }
      @media (min-width: 768px) and (max-width: 1024px) {
        #sub #eco .spec-area .spec .border-table th,
        #sub #eco .spec-area .spec .border-table td {
          padding: 20px 10px; } }
    @media (max-width: 767px) {
      #sub #eco .spec-area .spec .border-table td:first-of-type {
        border: none;
        padding-bottom: 0; } }
  #sub #eco .sugoeco-flow {
    margin-top: clamp(50px, 6vw, 75px); }
    #sub #eco .sugoeco-flow h5 {
      color: #3397a3;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 500;
      margin-bottom: clamp(35px, 4vw, 45px);
      text-align: center; }
    #sub #eco .sugoeco-flow .img-area {
      margin: auto; }
      @media (min-width: 768px) {
        #sub #eco .sugoeco-flow .img-area {
          max-width: 900px;
          width: 90%; } }
      #sub #eco .sugoeco-flow .img-area .flex-img {
        margin-bottom: 60px;
        position: relative;
        row-gap: 60px; }
        #sub #eco .sugoeco-flow .img-area .flex-img:after {
          background: #3397a3;
          content: '';
          height: clamp(25px, 3vw, 35px);
          left: 50%;
          position: absolute;
          top: 48%;
          transform: translate(-50%, -50%) rotate(90deg);
          width: clamp(25px, 3vw, 35px);
          mask-image: url(../img/common/arrow.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/arrow.svg) no-repeat center/cover; }
          @media (min-width: 600px) {
            #sub #eco .sugoeco-flow .img-area .flex-img:after {
              top: 50%;
              transform: translate(-50%, -50%); } }
        #sub #eco .sugoeco-flow .img-area .flex-img .img {
          position: relative;
          width: 100%; }
          @media (min-width: 600px) {
            #sub #eco .sugoeco-flow .img-area .flex-img .img {
              width: 40%; } }
          #sub #eco .sugoeco-flow .img-area .flex-img .img:last-of-type:after {
            background: #3397a3;
            bottom: -40px;
            content: '';
            height: clamp(25px, 3vw, 35px);
            left: 50%;
            position: absolute;
            transform: translateX(-50%) rotate(90deg);
            width: clamp(25px, 3vw, 35px);
            mask-image: url(../img/common/arrow.svg) no-repeat center/cover;
            -webkit-mask: url(../img/common/arrow.svg) no-repeat center/cover; }
            @media (min-width: 600px) {
              #sub #eco .sugoeco-flow .img-area .flex-img .img:last-of-type:after {
                bottom: -40px; } }
            @media (min-width: 1025px) {
              #sub #eco .sugoeco-flow .img-area .flex-img .img:last-of-type:after {
                bottom: -50px; } }
          #sub #eco .sugoeco-flow .img-area .flex-img .img img {
            border-radius: 5px; }
          #sub #eco .sugoeco-flow .img-area .flex-img .img p {
            font-size: clamp(15px, 2vw, 17px); }
  #sub #processing .img-area {
    margin-top: 50px;
    row-gap: 10px; }
    #sub #processing .img-area img {
      aspect-ratio: 4 / 3;
      border-radius: 3px;
      object-fit: cover;
      width: 48%;
      width: calc((100% / 2) - 5px); }
      @media (min-width: 1025px) {
        #sub #processing .img-area img {
          width: calc((100% / 4) - 5px); } }
  #sub #processing .flow-li .txt .in-bl {
    margin-bottom: 7px; }
  #sub #company #slogan .slogan {
    font-size: clamp(20px, 3vw, 35px); }
  #sub #company #overview .border-table {
    margin-bottom: clamp(50px, 5vw, 60px); }
    @media (min-width: 768px) {
      #sub #company #overview .border-table th {
        width: 25%; } }
    @media (min-width: 1280px) {
      #sub #company #overview .border-table th {
        width: 20%; } }
    #sub #company #overview .border-table td ul {
      width: fit-content; }
  #sub #company #overview .inner {
    margin-top: clamp(70px, 8vw, 100px); }
    #sub #company #overview .inner .btn-area {
      margin: clamp(40px, 4vw, 50px) auto 0;
      width: 95%; }
    @media (min-width: 768px) {
      #sub #company #overview .inner .history {
        padding-left: 30px; } }
    #sub #company #overview .inner .history .circle {
      align-items: flex-start;
      gap: 10px clamp(30px, 5vw, 60px);
      padding: 0 0 90px clamp(45px, 6vw, 90px);
      position: relative; }
      #sub #company #overview .inner .history .circle:before {
        background: #80d8d0;
        border-radius: 50%;
        left: 0;
        content: '';
        height: 18px;
        position: absolute;
        top: 5px;
        transition: .3s;
        width: 18px; }
        @media (min-width: 768px) {
          #sub #company #overview .inner .history .circle:before {
            height: 22px;
            width: 22px; } }
      #sub #company #overview .inner .history .circle:not(:last-of-type):after {
        background: #80d8d0;
        content: '';
        height: calc(100% + 20px);
        left: 8px;
        position: absolute;
        top: 10px;
        width: 2px; }
        @media (min-width: 768px) {
          #sub #company #overview .inner .history .circle:not(:last-of-type):after {
            left: 10px; } }
      #sub #company #overview .inner .history .circle .year {
        font-size: clamp(18px, 2vw, 20px);
        font-weight: 500;
        margin: 0;
        width: 100%; }
        @media (min-width: 600px) {
          #sub #company #overview .inner .history .circle .year {
            width: 90px; } }
      #sub #company #overview .inner .history .circle .item-right .month {
        font-size: clamp(18px, 2vw, 20px);
        font-weight: 500;
        margin: 0; }
      #sub #company #overview .inner .history .circle .item-right .disc {
        margin-top: 35px;
        padding-left: 25px; }
        #sub #company #overview .inner .history .circle .item-right .disc li:not(:last-of-type) {
          margin-bottom: 25px; }
  #sub #company #equipment table th,
  #sub #company #equipment table td {
    padding: clamp(20px, 3vw, 30px) clamp(15px, 3vw, 30px); }
  #sub #company #equipment .img-transform_area {
    display: grid;
    gap: 20px 30px;
    margin-bottom: clamp(65px, 8vw, 90px); }
    #sub #company #equipment .img-transform_area .img-cont .img-transform {
      width: 65%; }
      #sub #company #equipment .img-transform_area .img-cont .img-transform:first-of-type {
        margin-bottom: clamp(20px, 3vw, 30px); }
      #sub #company #equipment .img-transform_area .img-cont .img-transform:last-of-type {
        margin-left: auto; }
  #sub #company #equipment .track-li {
    display: grid;
    gap: 18px; }
    @media (min-width: 768px) {
      #sub #company #equipment .track-li {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1280px) {
      #sub #company #equipment .track-li {
        grid-template-columns: repeat(3, 1fr); } }
    #sub #company #equipment .track-li li {
      align-items: center;
      border: 1px solid #d2d9d8;
      border-radius: 3px;
      display: flex;
      justify-content: space-between;
      min-height: 80px;
      padding: 20px clamp(15px, 2vw, 30px); }
  @media (min-width: 600px) and (max-width: 1024px) {
    #sub #company #links .btn-area {
      grid-template-columns: repeat(2, 1fr); } }
  #sub #company #links .btn-area .btn {
    min-height: 88px; }
  #sub #philosophy .philosophy {
    padding-bottom: clamp(110px, 12vw, 150px); }
  #sub #philosophy #greeting h2 {
    border: none; }
  #sub #philosophy #greeting .cont {
    display: grid;
    gap: 30px 90px; }
    @media (min-width: 1025px) {
      #sub #philosophy #greeting .cont {
        grid-template-columns: 1fr 2fr; } }
    #sub #philosophy #greeting .cont .img {
      max-width: 300px; }
      @media (max-width: 1024px) {
        #sub #philosophy #greeting .cont .img {
          width: 70%; } }
      @media (min-width: 1025px) {
        #sub #philosophy #greeting .cont .img {
          max-width: 270px; } }
      #sub #philosophy #greeting .cont .img img {
        border-radius: 5px; }
      #sub #philosophy #greeting .cont .img .name {
        font-size: clamp(18px, 2vw, 20px); }
        #sub #philosophy #greeting .cont .img .name .ceo {
          color: #4d5454;
          font-size: clamp(14px, 2vw, 15px); }
    #sub #philosophy #greeting .cont .txt .name {
      margin-top: 50px;
      text-align: right; }
  #sub #social-contribution #slogan .txt-img {
    gap: 0; }
    @media (min-width: 1280px) {
      #sub #social-contribution #slogan .txt-img {
        grid-template-columns: 1.5fr 1fr; } }
    #sub #social-contribution #slogan .txt-img .copy {
      color: #4d5454;
      font-size: clamp(20px, 2vw, 28px); }
    #sub #social-contribution #slogan .txt-img img {
      max-width: 400px; }
      @media (max-width: 767px) {
        #sub #social-contribution #slogan .txt-img img {
          margin: 0 0 0 auto;
          width: 85%; } }
      @media (min-width: 768px) {
        #sub #social-contribution #slogan .txt-img img {
          max-width: 100%; } }
  #sub #social-contribution #slogan .activity-li {
    align-items: normal; }
    #sub #social-contribution #slogan .activity-li li {
      border: 1px solid #adb3b2;
      display: flex;
      flex-direction: column;
      text-align: center;
      width: 100%; }
      @media (min-width: 600px) {
        #sub #social-contribution #slogan .activity-li li {
          width: 45%; } }
      @media (min-width: 1280px) {
        #sub #social-contribution #slogan .activity-li li {
          width: 22%; } }
      #sub #social-contribution #slogan .activity-li li .ttl {
        background: #80d8d0;
        font-size: clamp(17px, 1.5vw, 18px);
        font-weight: 500;
        margin: 0;
        padding: 10px; }
      #sub #social-contribution #slogan .activity-li li .txt {
        margin: auto;
        padding: 15px 10px; }
  #sub #social-contribution #initiatives .cont:last-of-type {
    margin-top: clamp(70px, 8vw, 90px); }
  #sub #social-contribution #initiatives .cont h3 {
    margin-bottom: clamp(25px, 3vw, 40px); }
  #sub #social-contribution #initiatives .cont .flow .numbering {
    margin-left: auto; }
    @media (min-width: 768px) {
      #sub #social-contribution #initiatives .cont .flow .numbering {
        max-width: 800px;
        width: 90%; } }
  #sub #social-contribution #initiatives .cont .img-btn {
    align-items: flex-end;
    gap: 10px clamp(45px, 7vw, 90px);
    margin-top: clamp(45px, 5vw, 60px); }
    #sub #social-contribution #initiatives .cont .img-btn img {
      width: 100%; }
      @media (min-width: 600px) {
        #sub #social-contribution #initiatives .cont .img-btn img {
          max-width: 500px;
          width: 50%; } }
  #sub #social-contribution #sdgs {
    border-top: 1px solid #adb3b2;
    padding-top: clamp(50px, 6vw, 75px); }
    #sub #social-contribution #sdgs h2 {
      font-size: clamp(22px, 2.5vw, 28px); }
    #sub #social-contribution #sdgs .img {
      margin: clamp(40px, 6vw, 70px) auto clamp(30px, 3vw, 40px); }
      @media (min-width: 1025px) {
        #sub #social-contribution #sdgs .img {
          max-width: 800px;
          width: 90%; } }
    #sub #social-contribution #sdgs .icon-area {
      display: grid;
      gap: 8px;
      grid-template-columns: repeat(2, 1fr); }
      @media (min-width: 600px) {
        #sub #social-contribution #sdgs .icon-area {
          grid-template-columns: repeat(3, 1fr); } }
      @media (min-width: 768px) {
        #sub #social-contribution #sdgs .icon-area {
          grid-template-columns: repeat(4, 1fr); } }
      @media (min-width: 1025px) {
        #sub #social-contribution #sdgs .icon-area {
          grid-template-columns: repeat(6, 1fr); } }
  #sub #recruit h2 {
    font-weight: 500;
    margin-bottom: clamp(50px, 7vw, 90px); }
    @media (min-width: 768px) {
      #sub #recruit h2 {
        font-size: clamp(27px, 3vw, 35px);
        letter-spacing: .08em;
        line-height: 2.2;
        margin-left: auto;
        width: fit-content; } }
  #sub #recruit table th {
    font-size: clamp(17px, 2vw, 18px);
    letter-spacing: 2px; }
  #sub #recruit table td h3 {
    font-weight: 500;
    font-size: clamp(16px, 2vw, 17px);
    margin: 0 0 10px;
    padding-left: 20px;
    position: relative; }
    #sub #recruit table td h3:before {
      background: #80d8d0;
      border-radius: 50%;
      content: '';
      height: 15px;
      left: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 15px; }
  #sub #recruit table td .disc {
    margin-top: 25px; }
  #sub #recruit table td .inner {
    margin: 20px 0 clamp(55px, 6vw, 70px); }
    #sub #recruit table td .inner .btn {
      margin: 30px auto;
      max-width: 300px;
      text-align: center; }
      @media (min-width: 1025px) {
        #sub #recruit table td .inner .btn {
          margin: clamp(30px, 3vw, 35px) 0; } }
  #sub #recruit .img-transform_area {
    margin-bottom: clamp(50px, 10vw, 130px); }
    @media (min-width: 768px) {
      #sub #recruit .img-transform_area {
        grid-template-columns: 1fr 1.8fr; } }
  #sub #contact {
    display: grid;
    gap: 50px clamp(80px, 8vw, 100px); }
    @media (min-width: 1025px) {
      #sub #contact {
        grid-template-columns: 1fr 1.5fr;
        max-width: 1500px;
        width: 90%; } }
    #sub #contact .left-cont h2 {
      color: #3397a3;
      font-size: clamp(22px, 3vw, 26px);
      margin: 0 0 clamp(30px, 4vw, 40px); }
    #sub #contact .right-cont .form .caution {
      margin: 0 auto clamp(30px, 5vw, 45px); }
      #sub #contact .right-cont .form .caution span {
        color: #d94c4c;
        font-weight: bold; }
    #sub #contact .right-cont .form .wpcf7 label {
      display: block;
      margin: 0 auto clamp(30px, 4vw, 45px); }
      #sub #contact .right-cont .form .wpcf7 label:last-of-type .form-txt {
        margin-bottom: auto; }
      #sub #contact .right-cont .form .wpcf7 label .form-txt .en {
        font-size: clamp(15px, 2vw, 16px); }
      #sub #contact .right-cont .form .wpcf7 label .form-txt .required {
        color: #d94c4c;
        font-weight: bold;
        padding: 5px; }
      #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap {
        display: block;
        margin-top: 7px; }
        @media screen and (min-width: 768px) {
          #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap {
            margin-top: 12px; } }
        #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
        #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
          background: #f5f7f7;
          border: 1px solid #f5f7f7;
          border-radius: 2px;
          padding: 8px;
          padding: clamp(13px, 1.6vw, 18px);
          width: 100%; }
          @media screen and (min-width: 768px) {
            #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
            #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
              padding: clamp(13px, 1.5vw, 18px); } }
        #sub #contact .right-cont .form .wpcf7 label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
          color: #fff; }
    #sub #contact .right-cont .form .wpcf7 input[type="checkbox"] {
      display: inline-block;
      height: 18px;
      vertical-align: -3px;
      width: 35px; }
    #sub #contact .right-cont .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
      display: block;
      margin: 0; }
      #sub #contact .right-cont .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item label {
        margin: 45px auto 20px; }
      #sub #contact .right-cont .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item .policy {
        display: block;
        font-size: clamp(14px, 1vw, 15px);
        margin-top: 10px;
        text-decoration: underline #3397a3;
        text-underline-offset: 5px; }
    #sub #contact .right-cont .form .wpcf7 .check {
      margin: 0 auto clamp(50px, 6vw, 70px); }
    #sub #contact .right-cont .form .wpcf7 input.wpcf7-submit {
      background: #fff;
      border: 2px solid #3397a3;
      border-radius: 2px;
      color: #131414;
      display: block;
      font-size: clamp(17px, 2vw, 19px);
      font-weight: 500;
      letter-spacing: 8px;
      margin: clamp(20px, 3vw, 30px) auto;
      padding: clamp(25px, 2vw, 30px) 0;
      transition: .2s;
      width: 100%; }
      @media screen and (min-width: 768px) {
        #sub #contact .right-cont .form .wpcf7 input.wpcf7-submit {
          width: 90%; } }
      #sub #contact .right-cont .form .wpcf7 input.wpcf7-submit:hover {
        background: #3397a3;
        color: #fff;
        cursor: pointer; }
      #sub #contact .right-cont .form .wpcf7 input.wpcf7-submit:disabled {
        cursor: not-allowed !important; }
    #sub #contact .right-cont .form .wpcf7 .recaptcha {
      font-size: clamp(14px, 2vw, 15px); }
      #sub #contact .right-cont .form .wpcf7 .recaptcha a {
        font-weight: 500; }
    #sub #contact .right-cont .form .wpcf7 .wpcf7-response-output {
      color: #131414;
      font-size: clamp(16px, 2vw, 17px); }
    #sub #contact .right-cont .tel-area {
      background: #f5f7f7;
      border-radius: 5px;
      margin-top: 60px;
      padding: 20px clamp(30px, 3vw, 40px); }
      #sub #contact .right-cont .tel-area h3 {
        color: #3397a3;
        font-size: clamp(18px, 2vw, 20px);
        font-weight: 500; }
  #sub #privacy h2 {
    color: #3397a3;
    margin-bottom: clamp(30px, 4vw, 40px); }
  #sub #privacy h3 {
    font-weight: 500;
    margin-bottom: 35px; }
  #sub #privacy .inner {
    border-bottom: 2px solid #d2d9d8;
    padding: 0 clamp(20px, 3vw, 30px) clamp(40px, 6vw, 70px); }
  #sub #privacy .cta {
    background: #f5f7f7;
    border-radius: 7px;
    margin-bottom: clamp(110px, 12vw, 150px);
    padding: clamp(20px, 3vw, 30px) clamp(30px, 4vw, 50px); }
    #sub #privacy .cta h2 {
      border-bottom: 2px solid #3397a3;
      display: inline-block;
      margin-bottom: clamp(15px, 2vw, 20px);
      padding-bottom: 3px; }

/*------------------------------------------------------------------------------ 
  Footer
------------------------------------------------------------------------------*/
footer {
  background: #fbf9f7; }
  footer .foot-in {
    padding-top: clamp(60px, 7vw, 75px); }
    footer .foot-in .logo {
      margin-bottom: clamp(60px, 7vw, 75px);
      width: clamp(250px, 25vw, 300px); }
    footer .foot-in .foot-nav {
      display: grid;
      gap: 60px clamp(40px, 5vw, 65px);
      margin-bottom: clamp(90px, 10px, 120px); }
      @media (min-width: 768px) {
        footer .foot-in .foot-nav {
          grid-template-columns: 1fr 1.5fr; } }
      @media (min-width: 1025px) {
        footer .foot-in .foot-nav {
          grid-template-columns: 1fr 2fr 1fr; } }
      footer .foot-in .foot-nav .foot-nav_item {
        border-top: 2px solid #d2d9d8; }
        footer .foot-in .foot-nav .foot-nav_item h3 {
          font-size: clamp(17px, 2vw, 18px);
          text-transform: uppercase; }
      footer .foot-in .foot-nav .company-info .address a:hover .map-icon:after {
        transform: translateY(-3px); }
      footer .foot-in .foot-nav .company-info .address a .map-icon {
        position: relative; }
        footer .foot-in .foot-nav .company-info .address a .map-icon:after {
          background: url(../img/footer/map.svg) no-repeat center/cover;
          bottom: 3px;
          content: '';
          height: 18px;
          position: absolute;
          right: -18px;
          transition: transform .3s;
          width: 15px; }
      footer .foot-in .foot-nav .company-info .tel .num {
        font-size: 19px; }
      footer .foot-in .foot-nav .navigation .foot-nav_li {
        display: grid;
        gap: 15px 20px;
        grid-template-columns: repeat(2, 1fr); }
        @media (min-width: 1280px) {
          footer .foot-in .foot-nav .navigation .foot-nav_li {
            grid-template-columns: repeat(3, 1fr); } }
      footer .foot-in .foot-nav .sns .foot-nav_li li:first-of-type {
        margin-bottom: 10px; }
      footer .foot-in .foot-nav .sns .foot-nav_li li a {
        align-items: center;
        display: flex;
        font-size: 16px;
        gap: 12px; }
        footer .foot-in .foot-nav .sns .foot-nav_li li a:hover {
          opacity: 1; }
          footer .foot-in .foot-nav .sns .foot-nav_li li a:hover span {
            transform: translateX(-3px); }
        footer .foot-in .foot-nav .sns .foot-nav_li li a img {
          width: 23px; }
        footer .foot-in .foot-nav .sns .foot-nav_li li a span {
          font-weight: 500;
          transition: transform .3s;
          text-transform: uppercase; }
    @media (min-width: 1280px) {
      footer .foot-in .btn-area {
        margin: auto;
        width: 95%; } }
    footer .foot-in .btn-area .btn {
      min-height: 88px; }
      footer .foot-in .btn-area .btn a {
        margin: auto;
        max-width: 400px; }
        footer .foot-in .btn-area .btn a .br {
          display: none; }
          @media (min-width: 1025px) and (max-width: 1279px) {
            footer .foot-in .btn-area .btn a .br {
              display: inline; } }
    footer .foot-in .kodomo-museum {
      margin-top: 30px;
      text-align: right; }
      footer .foot-in .kodomo-museum img {
        height: clamp(100px, 10vw, 110px);
        width: clamp(100px, 10vw, 110px); }
        @media (min-width: 1280px) {
          footer .foot-in .kodomo-museum img {
            margin-right: 20px; } }
    footer .foot-in .foot-bottom {
      border-top: 1px solid #adb3b2;
      margin-top: clamp(90px, 10px, 120px);
      padding: 60px 0 15px;
      row-gap: 10px; }
      @media (max-width: 767px) {
        footer .foot-in .foot-bottom {
          align-items: flex-end;
          flex-direction: column-reverse; } }
      @media (min-width: 768px) {
        footer .foot-in .foot-bottom {
          padding: 45px 0; } }
      footer .foot-in .foot-bottom #copyrights {
        font-size: clamp(14px, 1.5vw, 16px); }
      footer .foot-in .foot-bottom .privacy .img {
        margin-left: auto;
        width: 70px; }
      footer .foot-in .foot-bottom .privacy p {
        margin: 15px 0 0; }

/*# sourceMappingURL=style.css.map */
