@charset "UTF-8";
/*
Theme Name: Twenty Twenty-one Child
Version: 1.6
Template: twentytwentyone
*/
:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

#company .philosophy__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: max(9rem, 30px);
}
@media screen and (max-width: 1000px) {
  #company .philosophy__wrapper {
    gap: max(15rem, 60px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  #company .philosophy__wrapper {
    gap: 40px;
  }
}
#company .philosophy__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#company .philosophy__text h2 {
  font-size: max(2.2rem, 18px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#company .philosophy__text h3 {
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-top: max(2rem, 15px);
}
#company .philosophy__text p {
  font-family: YakuHanJP, "Manrope", "Noto Sans JP", sans-serif;
  font-size: max(1.5rem, 13px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: max(3rem, 15px);
}
#company .philosophy__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: max(69rem, 300px);
}
@media screen and (max-width: 1000px) {
  #company .philosophy__image {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  #company .philosophy__image {
    width: 100%;
  }
}
#company .philosophy__image .company-logo {
  width: 100%;
  height: auto;
}
#company .philosophy__image .company-logo .logo-part-1,
#company .philosophy__image .company-logo .logo-part-2,
#company .philosophy__image .company-logo .logo-part-3 {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  fill-opacity: 0;
  -webkit-transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), fill-opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), fill-opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#company .philosophy__image.active .company-logo .logo-part-1 {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  -webkit-transition-delay: 0s, 0.5s;
          transition-delay: 0s, 0.5s;
}
#company .philosophy__image.active .company-logo .logo-part-2 {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  -webkit-transition-delay: 0s, 0.6s;
          transition-delay: 0s, 0.6s;
}
#company .philosophy__image.active .company-logo .logo-part-3 {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  -webkit-transition-delay: 0s, 0.7s;
          transition-delay: 0s, 0.7s;
}
#company .overview__wrapper {
  padding: max(13rem, 50px) 0;
  background: #002353;
  margin-top: max(12rem, 70px);
  border-radius: 0 max(5rem, 20px) 0 0;
}
#company .overview__title {
  text-align: center;
  margin-bottom: max(7rem, 50px);
  color: #fff;
  font-size: max(3.6rem, 26px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
#company .overview__content dl {
  position: relative;
  display: grid;
  grid-template-columns: max(19rem, 150px) auto;
  width: max(60%, 600px);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  #company .overview__content dl {
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: 85%;
  }
}
#company .overview__content dl:not(:last-child) {
  margin-bottom: max(3rem, 15px);
  padding-bottom: max(3rem, 15px);
}
#company .overview__content dl:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: max(0.2rem, 2px);
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35) max(0.2rem, 2px), transparent max(0.2rem, 2px), transparent max(1rem, 10px));
  background-repeat: repeat-x;
}
#company .overview__content dl dt, #company .overview__content dl dd {
  color: #fff;
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
#company .overview__content dl dt *, #company .overview__content dl dd * {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#company .overview__content dl dt ul li:not(:last-child), #company .overview__content dl dd ul li:not(:last-child) {
  margin-bottom: 2em;
}
#company .overview__content dl dt ul li p, #company .overview__content dl dd ul li p {
  position: relative;
  padding-left: 1em;
}
#company .overview__content dl dt ul li p::before, #company .overview__content dl dd ul li p::before {
  position: absolute;
  left: 0;
  content: "・";
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#company .overview__content dl dt ul.flex, #company .overview__content dl dd ul.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: max(0.5rem, 5px);
     -moz-column-gap: max(0.5rem, 5px);
          column-gap: max(0.5rem, 5px);
}
#company .overview__content dl dt ul.flex li, #company .overview__content dl dd ul.flex li {
  margin-bottom: 0;
}
#company .overview__content dl dt ul.flex li:not(:last-of-type)::after, #company .overview__content dl dd ul.flex li:not(:last-of-type)::after {
  content: "、";
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}