@charset "UTF-8";
/* Objects */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&Noto+Serif+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique+Soft&display=swap");
/* base color */
/* orizin color */
/* template color */
/* footer */
/* hamburger menu */
/* pagenavi */
/* contact page Navi*/
/* policy */
/* 404 */
/*.form */
.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}

.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@-webkit-keyframes loop-slide-Right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop-slide-Right {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop-slide-Left {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop-slide-Left {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.f-news {
  margin-top: clamp(80px, 15vw, 240px);
}

.f-news_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .f-news_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

@media screen and (min-width: 901px) {
  .f-news_flex hgroup {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 901px) {
  .f-news_inner {
    -ms-flex-preferred-size: 76.52%;
        flex-basis: 76.52%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.f-news_inner li + li {
  margin-top: clamp(20px, 3.5555555556vw, 32px);
}

.f-news_inner li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  position: relative;
  padding-bottom: clamp(20px, 3.5555555556vw, 32px);
  border-bottom: 1px solid #E7E7E7;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .f-news_inner li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 4px;
  }
}
.f-news_inner li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #880000;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.f-news_inner li a time {
  color: #ddd;
  font-size: 15px;
  line-height: 2;
}
@media screen and (min-width: 901px) {
  .f-news_inner li a time {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.f-news_inner li a span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .f-news_inner li a span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (hover: hover) {
  .f-news_inner li a:hover {
    opacity: 1;
  }
  .f-news_inner li a:hover::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (hover: none) {
  .f-news_inner li a {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-news_inner li a:active {
    opacity: 1;
  }
  .f-news_inner li a:active::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.f-news_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(40px, 5.3333333333vw, 48px);
}

.f-about-tanigen {
  padding-top: clamp(36px, 13.3333333333vw, 120px);
}

.f-about-tanigen hgroup {
  margin-bottom: clamp(40px, 5.3333333333vw, 48px);
}

.f-about-tanigen_headline {
  margin-bottom: clamp(32px, 4.4444444444vw, 40px);
}

@media screen and (min-width: 901px) {
  .f-about-tanigen_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 135px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .f-about-tanigen_info p {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-preferred-size: 510px;
        flex-basis: 510px;
  }
}

@media screen and (max-width: 900px) {
  .f-about-tanigen_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}

.f-company {
  margin-top: clamp(80px, 15vw, 240px);
}

.f-company_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 901px) {
  .f-company_info {
    gap: 64px;
  }
  .f-company_info hgroup {
    -ms-flex-preferred-size: 144px;
        flex-basis: 144px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 901px) {
  .f-company_text {
    -ms-flex-preferred-size: 545px;
        flex-basis: 545px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.f-company_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: repeat(1, 1fr);
  gap: 0;
  margin-top: clamp(40px, 8.8888888889vw, 80px);
}

.f-company_list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.f-company_list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.f-company_list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 900px) {
  .f-company_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}

.f-company_item figure {
  overflow: hidden;
}
.f-company_item figure img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 900px) {
  .f-company_item figure img {
    height: clamp(150px, 35.5555555556vw, 320px);
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.f-company_item .-lead {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media (hover: hover) {
  .f-company_item:hover {
    opacity: 1;
  }
  .f-company_item:hover img {
    scale: 1.05;
  }
}
@media (hover: none) {
  .f-company_item {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .f-company_item:active {
    opacity: 1;
  }
  .f-company_item:active img {
    scale: 1.05;
  }
}

.f-compnay_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(40px, 8.8888888889vw, 80px);
}

.f-recruit {
  margin-top: clamp(80px, 15vw, 240px);
}

.f-recruit hgroup {
  margin-bottom: clamp(40px, 8vw, 72px);
}

.f-recruit_wrap {
  display: contents;
}
@media screen and (max-width: 900px) {
  .f-recruit_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.f-recruit_pic {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .f-recruit_pic {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.f-recruit_pic img {
  min-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 500px) {
  .f-recruit_pic img:nth-of-type(1) {
    display: none;
  }
}
@media screen and (min-width: 501px) {
  .f-recruit_pic img:nth-of-type(2) {
    display: none;
  }
}

.f-recruit_inner {
  max-width: 510px;
  margin-left: auto;
}
.f-recruit_inner p {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .f-recruit_inner {
    display: contents;
  }
  .f-recruit_inner p {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 900px) {
  .f-recruit_btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}