@charset "UTF-8";
/*
 *
 */
.l-hm {
  width: 32px;
  height: 32px;
}
.l-hm > div {
  position: relative;
  width: inherit;
  height: inherit;
}
.l-hm > div > span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  border-radius: 16px;
  background-color: #E63F23;
  transition: top 0.4s;
}
.l-hm > div > span:nth-child(1) {
  top: 20%;
}
.l-hm > div > span:nth-child(2) {
  top: 50%;
}
.l-hm > div > span:nth-child(3) {
  top: 80%;
}
.l-hm.is-active > div > span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  transition: transform 0.4s;
}
.l-hm.is-active > div > span:nth-child(2) {
  visibility: hidden;
}
.l-hm.is-active > div > span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  transition: transform 0.4s;
}

#page-top {
  display: flex;
  justify-content: right;
  align-items: center;
}
#page-top > a {
  text-decoration: none;
}
#page-top > a > span {
  position: relative;
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  mix-blend-mode: color;
}
#page-top > a > span::before, #page-top > a > span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#page-top > a > span::before {
  top: -5em;
  width: 5em;
  height: 5em;
  border: 1px solid #E63F23;
  border-radius: 50%;
}
#page-top > a > span::after {
  top: -2.5em;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #E63F23;
  border-left: 1px solid #E63F23;
  transform: translateX(-50%) rotate(45deg);
}

a.btn-df {
  display: flex;
}

.l-link-header {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}
.l-link-header > li {
  display: grid;
  place-content: center;
  height: 100%;
  margin-right: 3em;
  z-index: 9;
}
.l-link-header > li:last-of-type {
  margin-right: 0;
}
.l-link-header > li.__sub:hover > ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, top 0.4s, visibility 0.4s;
}
.l-link-header > li > a {
  display: grid;
  place-content: center;
  position: relative;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: border-bottom 0.4s;
  height: 96px;
}
.l-link-header > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
  background-color: #E63F23;
}
.l-link-header > li > a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.l-link-header > li > a.__sub > span {
  position: relative;
  padding-right: 1em;
}
.l-link-header > li > a.__sub > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  border-right: 2px solid #E63F23;
  border-bottom: 2px solid #E63F23;
}
.l-link-header > li > a.__entry {
  position: relative;
  display: block;
  height: auto;
  padding: 0.3em 3em 0.4em;
  border-radius: 32px;
  border: 1px solid #E63F23;
  background-color: #E63F23;
  overflow: hidden;
  z-index: 1;
}
.l-link-header > li > a.__entry > span {
  position: relative;
  color: #fff;
  z-index: 9;
}
.l-link-header > li > a.__entry::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #fff;
  border-radius: 24px;
  background-color: #fff;
  z-index: 2;
}
.l-link-header > li > a.__entry:hover > span {
  color: #E63F23;
}
.l-link-header > li > a.__entry:hover::before {
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
.l-link-header > li > ul.__nav-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  border-top: 1px solid #E63F23;
  background-color: #F0F0F0;
  gap: 3em;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.l-link-header > li > ul.__nav-sub.is-active {
  top: 100%;
  height: 115.2px;
  transition: top 0.4s;
}
.l-link-header > li > ul.__nav-sub > li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.l-link-header > li > ul.__nav-sub > li > a {
  position: relative;
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: border-bottom 0.4s;
}
.l-link-header > li > ul.__nav-sub > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  border-top: 1px solid #E63F23;
  border-right: 1px solid #E63F23;
  transition: right 0.4s;
}
.l-link-header > li > ul.__nav-sub > li > a:hover::before {
  right: -1.4em;
  transition: right 0.4s;
}

.l-link-header-sp {
  position: absolute;
  top: -200vh;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #FCFAF4;
  transition: top 0.4s;
}
.l-link-header-sp.is-active {
  top: 0;
  transition: top 0.4s;
}
.l-link-header-sp > ul {
  width: 320px;
  padding: 5vh 0 0;
  margin: 0 auto;
}
.l-link-header-sp > ul > li {
  padding: 1.6em 0;
  border-bottom: 1px solid #000;
}
.l-link-header-sp > ul > li:last-of-type {
  border-bottom: none;
}
.l-link-header-sp > ul > li.__sub {
  padding-bottom: 0;
}
.l-link-header-sp > ul > li > a {
  display: block;
  text-decoration: none;
}
.l-link-header-sp > ul > li > a > p.__ttl1 {
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: justify;
  width: 100%;
}
.l-link-header-sp > ul > li > a > p.__ttl1 > span {
  color: #E63F23;
}
.l-link-header-sp > ul > li > a > p.__ttl2 {
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-link-header-sp ul.__nav-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 2em;
  gap: 0.6em 0;
}
.l-link-header-sp ul.__nav-sub > li {
  width: 50%;
}
.l-link-header-sp ul.__nav-sub > li > a {
  position: relative;
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  transition: border-bottom 0.4s;
}
.l-link-header-sp ul.__nav-sub > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  border-top: 1px solid #E63F23;
  border-right: 1px solid #E63F23;
  transition: right 0.4s;
}
.l-link-header-sp ul.__nav-sub > li > a:hover::before {
  right: -1.4em;
  transition: right 0.4s;
}

.u-link-arrow-r {
  position: relative;
  width: 292px;
  height: 120px;
  padding-right: 50px;
}
.u-link-arrow-r::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: no-repeat center/contain url(../image/arrow-r.svg);
}
.u-link-arrow-r > a {
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  height: 100%;
  background-color: #E63F23;
}
@media only screen and (max-width: 768px) {
  .u-link-arrow-r {
    height: 60px;
    padding-right: 30px;
  }
  .u-link-arrow-r::before {
    width: 40px;
  }
  .u-link-arrow-r > a {
    font-size: 0.8em;
  }
}

.l-accordion {
  position: relative;
}
.l-accordion .toggle {
  display: none;
}
.l-accordion .toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}
.l-accordion .toggle:checked + .title::before {
  border-top: none;
  border-left: 1px solid #E63F23;
  border-right: none;
  border-bottom: 1px solid #E63F23;
}
.l-accordion .title, .l-accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.l-accordion .title {
  padding: 1em;
  display: block;
}
.l-accordion .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 0;
  width: 0.6em;
  height: 0.6em;
  transform: rotate(135deg);
  border-top: 1px solid #E63F23;
  border-left: none;
  border-right: 1px solid #E63F23;
  border-bottom: none;
  transition: all 0.3s;
}
.l-accordion .content {
  max-height: 0;
  overflow: hidden;
}
.l-accordion .content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}

/*tabの形状*/
.tab-area > li > a {
  text-decoration: none;
}

.c-acd-cont {
  display: none;
}
.c-acd-cont.is-active {
  display: block;
}

/*エリアの表示非表示と形状*/
.data-area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  /*areaにis-activeというクラスがついた時の形状*/
}
.data-area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.u-hl {
  display: inline-block;
  color: #E63F23;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.4em 0.8em 0.5em;
  background-color: #fff;
}
.u-hl.__red {
  color: #fff;
  background-color: #E63F23;
}
.u-hl .__s {
  font-size: 0.6em;
}
@media only screen and (max-width: 768px) {
  .u-hl {
    font-size: 20px;
  }
}

.u-cross {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
}
.u-cross::before, .u-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 1px;
  background-color: #fff;
}
.u-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.u-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.u-ex {
  color: #000;
  font-size: 0.7rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}

.u-president {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  text-align: right;
}
.u-president > span {
  display: inline-block;
  font-size: 0.7em;
  letter-spacing: 0;
  margin-right: 0.5em;
}

.u-appeal {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 1024px) {
  .u-appeal {
    font-size: 20px;
  }
}

.u-lbl-sec {
  position: relative;
  color: #E63F23;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 1em;
}
.u-lbl-sec::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.4em;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #E63F23;
}
@media only screen and (max-width: 768px) {
  .u-lbl-sec {
    font-size: 20px;
  }
}

.u-lbl-simple {
  color: #000;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.u-lbl-simple > span {
  display: block;
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media only screen and (max-width: 768px) {
  .u-lbl-simple {
    font-size: 30px;
  }
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

.modaal-content-container {
  padding: 0;
}

.modaal-container {
  padding: 0;
  max-width: 768px;
}
@media only screen and (max-width: 1200px) {
  .modaal-container {
    max-width: 375px;
    min-width: 320px;
    width: 100%;
  }
}

.slider-ourlife-tv .slick-slide:nth-of-type(odd) {
  padding-top: 0;
  padding-left: 32px;
  padding-right: 0;
  padding-bottom: 83px;
}
.slider-ourlife-tv .slick-slide:nth-of-type(even) {
  padding-top: 24px;
  padding-left: 32px;
  padding-right: 0;
  padding-bottom: 0;
}

.modaal-close {
  position: absolute;
  top: 5px;
  right: 5px;
}
.modaal-close::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  height: 24px;
  background-color: #E63F23;
}
.modaal-close::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 24px;
  background-color: #E63F23;
}
.modaal-close:hover {
  background-color: rgba(255, 255, 255, 0);
}
.modaal-close:hover::before {
  background-color: #E63F23;
}
.modaal-close:hover::after {
  background-color: #E63F23;
}

.l-member-modal {
  display: flex;
  justify-content: space-between;
  align-items: start;
  height: 600px;
}
@media only screen and (max-width: 1200px) {
  .l-member-modal {
    flex-wrap: wrap;
    max-width: 375px;
    min-width: 320px;
    width: 100%;
    height: 100%;
  }
}
.l-member-modal > div.__l {
  width: 55%;
  height: inherit;
  padding: 90px 80px;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media only screen and (max-width: 1200px) {
  .l-member-modal > div.__l {
    width: 100%;
    padding: 30px;
    order: 2;
  }
}
.l-member-modal > div.__l .__info .__yakuwari {
  color: #000;
  font-size: 0.7rem;
  font-weight: 100;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-member-modal > div.__l .__info .__name {
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-member-modal > div.__l .__info .__katagaki {
  color: #000;
  font-size: 0.7rem;
  font-weight: 100;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1em;
  letter-spacing: 0.2em;
}
.l-member-modal > div.__l .__info .__message {
  color: #000;
  font-size: 0.8rem;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1em;
}
.l-member-modal > div.__l .__info .__tag {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
}
.l-member-modal > div.__l .__info .__tag > span {
  display: block;
  color: #000;
  font-size: 0.7rem;
  font-weight: 100;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 0.2em 1.6em;
  margin-right: 0.4em;
  margin-bottom: 0.4em;
}
.l-member-modal > div.__r {
  width: 45%;
  height: inherit;
}
@media only screen and (max-width: 1200px) {
  .l-member-modal > div.__r {
    width: 100%;
    height: 400px;
    order: 1;
  }
}
.l-member-modal > div.__r .__img {
  height: inherit;
}
.l-member-modal > div.__r .__img > img {
  object-position: top;
}

/*
 *
 */
.l-sub-view {
  position: relative;
  height: 596px;
  padding-top: 96px;
  background-color: #FCFAF4;
}
.l-sub-view > .container {
  position: relative;
  height: 100%;
}
.l-sub-view .__title-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 374px;
  width: 80%;
}
.l-sub-view .__title-wrap.__job {
  background: no-repeat left/contain url(../image/subpage-title-job.svg);
}
.l-sub-view .__title-wrap.__factory {
  background: no-repeat left/contain url(../image/subpage-title-factory.svg);
}
.l-sub-view .__title-wrap.__sdgs {
  height: 187px;
  background: no-repeat left top/contain url(../image/subpage-title-sdgs.svg);
}
.l-sub-view .__title-wrap.__csr {
  height: 187px;
  background: no-repeat left top/contain url(../image/subpage-title-csr.svg);
}
.l-sub-view .__title-wrap.__company {
  background: no-repeat left/contain url(../image/subpage-title-company.svg);
}
.l-sub-view .__title-wrap.__ourlife {
  background: no-repeat left 20%/contain url(../image/subpage-title-ourlife.svg);
}
.l-sub-view .__title-wrap .__title {
  position: absolute;
  top: 50%;
  left: 2em;
  transform: translateY(-50%);
  width: auto;
}
.l-sub-view .__title-wrap .__title > p:nth-child(1) {
  color: #000;
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
.l-sub-view .__title-wrap .__title > p:nth-child(1) > span {
  display: inline-block;
  line-height: 1;
  padding: 0.1em 0.3em;
  margin-right: 0.3em;
  color: #fff;
  background-color: #E63F23;
}
@media only screen and (max-width: 768px) {
  .l-sub-view .__title-wrap .__title > p:nth-child(1) {
    font-size: 0.8em;
  }
}
.l-sub-view .__title-wrap .__title .__jp {
  font-size: 48px;
}
@media only screen and (max-width: 768px) {
  .l-sub-view .__title-wrap .__title .__jp {
    font-size: 27px;
    background-position: top;
  }
}
@media only screen and (max-width: 1200px) {
  .l-sub-view .__title-wrap .__title {
    left: 3%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view .__title-wrap .__title {
    left: 3%;
  }
  .l-sub-view .__title-wrap .__title > p:nth-child(1) {
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 0.1em;
  }
  .l-sub-view .__title-wrap .__title > p:nth-child(1) > span {
    display: inline-block;
    line-height: 1;
    padding: 0.1em 0.3em;
    margin-right: 0.3em;
    color: #fff;
    background-color: #E63F23;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 768px) {
  .l-sub-view .__title-wrap .__title > p:nth-child(1) {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view .__title-wrap {
    top: 0;
    transform: none;
    width: 100%;
    height: 280px;
  }
}
.l-sub-view .__img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40%;
  height: 90%;
}
.l-sub-view .__img.__job {
  background: no-repeat center/contain url(../image/ship-01.svg);
}
@media only screen and (max-width: 1200px) {
  .l-sub-view .__img.__job {
    width: 40%;
    height: 80%;
    top: auto;
    bottom: 1%;
    transform: none;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view .__img.__job {
    width: 40%;
    height: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .l-sub-view .__img.__job {
    width: 50%;
    height: 50%;
  }
}
.l-sub-view .__img.__factory {
  background: no-repeat center/contain url(../image/character-02.svg);
}
@media only screen and (max-width: 1440px) {
  .l-sub-view .__img.__factory {
    top: auto;
    bottom: 0;
    transform: none;
    width: 40%;
    height: 45%;
  }
}
@media only screen and (max-width: 1200px) {
  .l-sub-view .__img.__factory {
    width: 35%;
    height: 45%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view .__img.__factory {
    top: auto;
    width: 40%;
    height: 55%;
  }
}
.l-sub-view .__img.__sdgs {
  background: no-repeat center/contain url(../image/sdgs-logo.svg);
}
@media only screen and (max-width: 1200px) {
  .l-sub-view .__img.__sdgs {
    width: 30%;
    height: 35%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view .__img.__sdgs {
    top: auto;
    bottom: 0;
    width: 40%;
    height: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .l-sub-view .__img.__sdgs {
    transform: none;
    bottom: 10%;
    width: 100%;
    height: 40%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-sub-view {
    height: 352px;
    padding-top: 52px;
  }
}

.l-cutin-l,
.l-cutin-l.__under {
  position: relative;
  height: 390px;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .l-cutin-l,
  .l-cutin-l.__under {
    margin-top: 50px;
  }
}
.l-cutin-l .__cutin,
.l-cutin-l.__under .__cutin {
  position: absolute;
  top: 0;
  left: -100%;
  width: calc(50vw + 720px - 130px);
  height: 100%;
  padding-left: calc((100% - 1440px) / 2);
  background-color: #E63F23;
  z-index: 0;
}
.l-cutin-l .__cutin::before,
.l-cutin-l.__under .__cutin::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -128px;
  transform: translateY(-50%);
  width: 130px;
  height: 100%;
  background: no-repeat center/contain url(../image/arrow-r.svg);
}
.l-cutin-l .__cutin .__inner,
.l-cutin-l.__under .__cutin .__inner {
  display: grid;
  place-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
}
.l-cutin-l .__cutin .__inner > p:nth-child(1),
.l-cutin-l.__under .__cutin .__inner > p:nth-child(1) {
  margin-bottom: 1em;
}
.l-cutin-l .__cutin .__inner .__ex,
.l-cutin-l.__under .__cutin .__inner .__ex {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  .l-cutin-l .__cutin .__inner,
  .l-cutin-l.__under .__cutin .__inner {
    position: absolute;
    top: 0;
    width: 320px;
  }
}
@media only screen and (max-width: 1440px) {
  .l-cutin-l .__cutin,
  .l-cutin-l.__under .__cutin {
    width: calc(50vw + 600px - 130px);
    padding-left: 130px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-cutin-l .__cutin,
  .l-cutin-l.__under .__cutin {
    width: calc(50vw + 512px - 130px);
  }
}
@media only screen and (max-width: 1024px) {
  .l-cutin-l .__cutin,
  .l-cutin-l.__under .__cutin {
    width: calc(50vw + 384px - 130px);
  }
}
@media only screen and (max-width: 768px) {
  .l-cutin-l .__cutin,
  .l-cutin-l.__under .__cutin {
    width: calc(50vw + 187.5px - 130px);
    padding-left: calc((100vw - 375px) / 2);
  }
}
.l-cutin-l .__cutin-02,
.l-cutin-l.__under .__cutin-02 {
  position: absolute;
  left: -100%;
  bottom: -68px;
  width: calc(50vw + 360px - 130px);
  height: 136px;
  padding-left: calc((100% - 1440px) / 2);
  background-color: #EFE8E6;
  z-index: 0;
}
.l-cutin-l .__cutin-02::before,
.l-cutin-l.__under .__cutin-02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background: no-repeat center/contain url(../image/arrow-r-gray.svg);
}
@media only screen and (max-width: 1440px) {
  .l-cutin-l .__cutin-02,
  .l-cutin-l.__under .__cutin-02 {
    width: calc(50vw + 400px - 130px);
  }
}
@media only screen and (max-width: 1200px) {
  .l-cutin-l .__cutin-02,
  .l-cutin-l.__under .__cutin-02 {
    width: calc(50vw + 341.3333333333px - 130px);
  }
}
@media only screen and (max-width: 1024px) {
  .l-cutin-l .__cutin-02,
  .l-cutin-l.__under .__cutin-02 {
    width: calc(50vw + 256px - 130px);
  }
}
@media only screen and (max-width: 768px) {
  .l-cutin-l .__cutin-02,
  .l-cutin-l.__under .__cutin-02 {
    width: calc(50vw + 125px - 130px);
  }
}

.l-highlight > span:nth-child(2) {
  margin: 0 1em;
}
@media only screen and (max-width: 768px) {
  .l-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-highlight > span:nth-child(2) {
    margin: 0 0.2em;
  }
}

.l-video {
  position: relative;
  background-color: #EFE8E6;
  overflow: hidden;
}
.l-video .__start {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 20%;
  background: no-repeat center/contain url(../image/icon-start.svg);
}
.l-video .__start.__hidden {
  pointer-events: none;
  opacity: 0;
}
.l-video > iframe {
  width: 100%;
  height: 100%;
}
.l-video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 768px) {
  .l-video::before {
    width: 10%;
    height: 20%;
  }
}

.l-circle {
  display: grid;
  place-content: center;
  width: 354px;
  height: 354px;
  border: 1px solid #E63F23;
  border-radius: 50%;
}
.l-circle > p:nth-child(1) {
  color: #E63F23;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 0.5em;
}
.l-circle > p:nth-child(2) {
  color: #E63F23;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 0.5em;
}

.l-staff-card {
  display: block;
  text-decoration: none;
}
.l-staff-card > .__img {
  width: 100%;
  height: 360px;
  margin-bottom: 8px;
}
.l-staff-card > .__img > img {
  object-position: top;
}
.l-staff-card > .__name {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 16px;
}
.l-staff-card > .__join {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 8px;
}
.l-staff-card > .__department {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: fit-content;
  padding: 0.2em 1em 0.35em;
  background-color: #E63F23;
}
@media only screen and (max-width: 1440px) {
  .l-staff-card > .__img {
    height: 300px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-staff-card > .__img {
    height: 240px;
  }
}

.l-staff-modal {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  background-color: #FCFAF4;
}
.l-staff-modal > .__01 {
  display: flex;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 420px;
  margin-bottom: 64px;
}
.l-staff-modal > .__01 > div {
  width: 50%;
  height: inherit;
}
.l-staff-modal > .__01 > div.__img > img {
  object-position: top;
}
.l-staff-modal > .__01 > div.__personal {
  padding: 10% 5% 0;
}
.l-staff-modal > .__01 > div.__personal > .__title {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-staff-modal > .__01 > div.__personal > .__name {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 16px;
}
.l-staff-modal > .__01 > div.__personal > .__join {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 8px;
}
.l-staff-modal > .__01 > div.__personal > .__department {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: fit-content;
  padding: 0.2em 1em;
  background-color: #E63F23;
}
@media only screen and (max-width: 768px) {
  .l-staff-modal > .__01 {
    flex-wrap: wrap;
    height: auto;
    padding: 15% 5% 5%;
    margin-bottom: 0;
  }
  .l-staff-modal > .__01 > div {
    width: 100%;
  }
  .l-staff-modal > .__01 > div.__personal > .__title {
    font-size: 24px;
    margin-bottom: 1em;
  }
}
.l-staff-modal > .__02, .l-staff-modal > .__03 {
  width: 50%;
  height: 360px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  .l-staff-modal > .__02, .l-staff-modal > .__03 {
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }
}
.l-staff-modal > .__02 {
  display: grid;
  place-content: center;
  padding: 5%;
}
.l-staff-modal > .__03 > div {
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .l-staff-modal > .__03 {
    padding: 5%;
  }
}

.u-link-factory {
  padding-bottom: 30px;
}
.u-link-factory > a {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-radius: 50%;
}
.u-link-factory > a > span {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.u-link-factory > a.__1 {
  background-color: #72B0C1;
}
.u-link-factory > a.__1::after {
  background-color: #72B0C1;
}
.u-link-factory > a.__2 {
  background-color: #F9C358;
}
.u-link-factory > a.__2::after {
  background-color: #F9C358;
}
.u-link-factory > a.__3 {
  background-color: #79CCBC;
}
.u-link-factory > a.__3::after {
  background-color: #79CCBC;
}
.u-link-factory > a.__4 {
  background-color: #EFB5B4;
}
.u-link-factory > a.__4::after {
  background-color: #EFB5B4;
}
.u-link-factory > a.__5 {
  background-color: #68CCEA;
}
.u-link-factory > a.__5::after {
  background-color: #68CCEA;
}
.u-link-factory > a.__6 {
  background-color: #8AA1E2;
}
.u-link-factory > a.__6::after {
  background-color: #8AA1E2;
}
.u-link-factory > a.__7 {
  background-color: #AED887;
}
.u-link-factory > a.__7::after {
  background-color: #AED887;
}
.u-link-factory > a.__8 {
  background-color: #FFB583;
}
.u-link-factory > a.__8::after {
  background-color: #FFB583;
}
.u-link-factory > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border: 0.12em solid #fff;
  border-radius: 50%;
}
.u-link-factory > a.v1 > span.__pop {
  display: block;
  position: absolute;
  top: -3em;
  left: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transform: translateY(1em);
  color: #E63F23;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 0.5em;
  border: 1px solid #E63F23;
  border-radius: 8px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}
.u-link-factory > a.v1:hover > span.__pop {
  transform: translateY(0);
  transition: opacity 0.8s, transform 0.8s;
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  .u-link-factory > a.v1 > span.__id {
    font-size: 14px;
  }
}
.u-link-factory > a.v2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25%;
  transform: translateX(-50%);
  width: 15%;
  height: 15%;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s;
}
.u-link-factory > a.v3 {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-radius: 8px;
}
.u-link-factory > a.v3::before {
  display: none;
}
.u-link-factory > a.v3 > span {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}
.u-link-factory > a.v3 > span.__id {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.95rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  width: 25%;
}
.u-link-factory > a.v3 > span.__name {
  width: 75%;
}
@media only screen and (max-width: 768px) {
  .u-link-factory > a.v3 {
    height: 60px;
  }
  .u-link-factory > a.v3 > span.__id {
    font-size: 28px;
    width: 25%;
  }
  .u-link-factory > a.v3 > span.__name {
    font-size: 12px;
    width: 75%;
  }
}
.u-link-factory.active > a.v2::after {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s;
}
@media only screen and (max-width: 1024px) {
  .u-link-factory {
    width: calc(50% - 0.5em);
    padding: 0;
  }
}

/*
 *
 */
#g-nav {
  position: fixed;
  display: block;
  visibility: visible;
  width: 100%;
  height: 96px;
  background-color: #fff;
  z-index: 9999;
}
@media only screen and (max-width: 1200px) {
  #g-nav {
    visibility: hidden;
    z-index: -1;
    position: absolute;
    top: -100vh;
  }
}
#g-nav .__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 96px;
  background-color: #fff;
  z-index: 9;
}
#g-nav .__body .__logo {
  width: 220px;
}

#g-nav-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 9999;
}
@media only screen and (max-width: 1200px) {
  #g-nav-sp {
    display: block;
  }
}
#g-nav-sp .__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 52px;
  padding: 0 2%;
  z-index: 9;
}
#g-nav-sp .__body .__logo {
  width: 134px;
  z-index: 9;
}
#g-nav-sp .__body .__hm {
  z-index: 9;
}
#g-nav-sp .__body .__nav {
  overflow: scroll;
  z-index: 1;
}

/*
 *
 */
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 12%;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(200px);
}

#footer {
  padding: 30px 0 0;
  background-color: #E63F23;
}
#footer .__link {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #FCFAF4;
  background-color: #E63F23;
  overflow: hidden;
  z-index: 1;
}
#footer .__link > span {
  position: relative;
  color: #FCFAF4;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
}
#footer .__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #E63F23;
  border-radius: 24px;
  background-color: #FCFAF4;
  z-index: 2;
}
#footer .__link:hover {
  border-color: rgba(255, 255, 255, 0);
}
#footer .__link:hover > span {
  color: #E63F23;
}
#footer .__link:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
#footer .__head {
  margin-bottom: 30px;
}
#footer .__head .__logo {
  width: 218px;
}
#footer .__body .__nav {
  margin-bottom: 0;
}
#footer .__body .__nav > li {
  margin-bottom: 0.5em;
}
#footer .__body .__nav > li .__link {
  display: inline-block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  text-decoration: none;
  width: 200px;
  border: 1px solid #fff;
  border-radius: 32px;
  padding: 0.2em 1em;
}
#footer .__body .__nav > li .__link.__instagram {
  padding: 0.2em 1em 0.4em;
  margin-top: 2em;
  background-color: #fff;
}
#footer .__body .__nav > li .__link.__instagram::before {
  background-color: #E63F23;
}
#footer .__body .__nav > li .__link.__instagram > span {
  position: relative;
  color: #E63F23;
  padding-left: 2em;
}
#footer .__body .__nav > li .__link.__instagram > span::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: no-repeat center/contain url(../image/icon-instagram-red.svg);
}
#footer .__body .__nav > li .__link.__instagram:hover > span {
  color: #fff;
}
#footer .__body .__nav > li .__link.__instagram:hover > span::before {
  background: no-repeat center/contain url(../image/icon-instagram-white.svg);
}
#footer .__body .c-company {
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#footer .__body .c-address {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
}
#footer .__foot > p {
  color: #fff;
  font-size: 0.6rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

/*
 *
 */
/*
 *
 */
/*
 *
 */
main {
  background-color: #FCFAF4;
  overflow-x: hidden;
}

#l-tv {
  position: relative;
  width: 100vw;
  height: max(100vh, 100%);
  padding-top: 96px;
  overflow-x: hidden;
  z-index: 0;
}
#l-tv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #87C8E1;
  z-index: 2;
}
#l-tv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FCFAF4;
  z-index: 1;
}
#l-tv > .__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 1920px;
  width: 100vw;
  height: max(100vh, 100%);
  z-index: 3;
  overflow: hidden;
}
#l-tv > .__bg .__anime {
  position: absolute;
}
#l-tv > .__bg .__anime > img {
  object-fit: contain;
}
#l-tv > .__bg .__img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation-name: tv-bg;
  animation-duration: 8s;
  animation-fill-mode: forwards;
}
#l-tv > .__bg .__img > img {
  object-position: 50% 68%;
}
#l-tv > .__bg .__bird-a {
  width: max(10%, 80px);
  height: auto;
  z-index: 10;
  animation-name: tv-bird-a;
  animation-duration: 8s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 1200px) {
  #l-tv > .__bg .__bird-a {
    animation-name: tv-bird-a_pc2;
  }
}
@media only screen and (max-width: 768px) {
  #l-tv > .__bg .__bird-a {
    animation-name: tv-bird-a_sp;
  }
}
#l-tv > .__bg .__bird-b {
  width: max(10%, 80px);
  height: auto;
  z-index: 10;
  animation-name: tv-bird-b;
  animation-duration: 8s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 1200px) {
  #l-tv > .__bg .__bird-b {
    animation-name: tv-bird-b_pc2;
  }
}
@media only screen and (max-width: 768px) {
  #l-tv > .__bg .__bird-b {
    animation-name: tv-bird-b_sp;
  }
}
#l-tv > .__bg .__ship-a {
  width: 12%;
  height: auto;
  z-index: 9;
  animation-name: tv-ship-a;
  animation-duration: 16s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  #l-tv > .__bg .__ship-a {
    width: max(12%, 80px);
    animation-name: tv-ship-a_sp;
  }
}
#l-tv > .__bg .__ship-b {
  width: max(20%, 120px);
  height: auto;
  z-index: 9;
  animation-name: tv-ship-b;
  animation-duration: 16s;
  animation-fill-mode: forwards;
}
#l-tv > .__bg .__ship-c {
  width: 10%;
  height: auto;
  z-index: 9;
  animation-name: tv-ship-c;
  animation-duration: 16s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  #l-tv > .__bg .__ship-c {
    width: max(10%, 70px);
    animation-name: tv-ship-c_sp;
  }
}
@media only screen and (max-width: 768px) {
  #l-tv > .__bg {
    height: 100vh;
    min-width: auto;
  }
}
#l-tv .container {
  position: relative;
  z-index: 9;
}
#l-tv .__title {
  width: 50%;
  padding: 5% 0 0 5%;
}
@media only screen and (max-height: 500px) {
  #l-tv .__title {
    width: 30%;
    padding: 2% 0 0 5%;
  }
}
@media only screen and (max-width: 768px) {
  #l-tv {
    height: 100vh;
    min-height: auto;
    padding-top: 52px;
  }
  #l-tv .__title {
    width: 100%;
    padding: 32px 0 0;
  }
}

@media only screen and (max-width: 768px) {
  #l-tv-ol {
    display: none;
    visibility: hidden;
  }
}

.l-tv-ol {
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: max(100vh, 100%);
  padding-top: 96px;
  background: no-repeat right/cover url(../image/topview-ol.svg);
  overflow: hidden;
  z-index: 10;
}
.l-tv-ol .__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: no-repeat center/contain url(../image/mission.svg);
  z-index: 0;
}
.l-tv-ol .container {
  height: 100%;
  z-index: 19;
}
.l-tv-ol .__title {
  visibility: hidden;
}
.l-tv-ol .__msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4vw;
  letter-spacing: 0.2em;
  line-height: 1.8;
  text-align: center;
  color: #000;
  width: 100%;
  z-index: 12;
}
.l-tv-ol .__chr {
  position: absolute;
  right: 15%;
  bottom: 5%;
  transform: translateY(-200px);
  width: 30%;
  height: 20%;
  background: no-repeat center/contain url(../image/character-01.svg);
  opacity: 0;
  z-index: 13;
  transition: opacity 1.2s, transform 1.2s;
}
.l-tv-ol .__chr.is-visible {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 1.2s, transform 1.2s;
}
@media only screen and (max-width: 768px) {
  .l-tv-ol .__chr {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 45%;
    height: 20%;
    opacity: 1;
  }
}
@media only screen and (max-width: 768px) {
  .l-tv-ol {
    display: block;
    position: relative;
    max-height: 1000px;
    height: auto;
    left: 0;
    padding: 0;
    background: #EFE8E6;
    overflow: visible;
  }
  .l-tv-ol .__msg {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    text-align: center;
    font-size: 13px;
    line-height: 2.4;
    padding: 100px 0;
  }
  .l-tv-ol .__chr {
    left: auto;
    right: 0;
    bottom: -8%;
    transform: none;
    width: 180px;
    height: 120px;
  }
}

.l-top-ttl {
  position: relative;
  width: 100%;
  height: 146px;
}
.l-top-ttl.__aboutjob {
  background: no-repeat center/contain url(../image/title-aboutjob.svg);
}
.l-top-ttl.__aboutjob > p {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .l-top-ttl.__aboutjob > p {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 768px) {
  .l-top-ttl.__aboutjob {
    height: 98px;
  }
}
.l-top-ttl.__ourlife {
  background: no-repeat center/contain url(../image/title-ourlife.svg);
}
.l-top-ttl.__ourlife > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .l-top-ttl.__ourlife {
    height: 98px;
  }
}
.l-top-ttl.__aboutkoshin {
  background: no-repeat top/contain url(../image/title-aboutkoshin.svg);
}
.l-top-ttl.__aboutkoshin > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .l-top-ttl.__aboutkoshin {
    height: 196px;
    background: no-repeat center/contain url(../image/title-aboutkoshin-sp.svg);
  }
}
.l-top-ttl.__aboutfactory {
  height: 292px;
  background: no-repeat top/contain url(../image/title-aboutfactory.svg);
}
.l-top-ttl.__aboutfactory > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .l-top-ttl.__aboutfactory {
    height: 196px;
    background-position: center;
  }
}

#aboutjob,
#ourlife,
#aboutkoshin,
#aboutfactory {
  padding: 120px 0;
}
#aboutjob h3,
#ourlife h3,
#aboutkoshin h3,
#aboutfactory h3 {
  margin-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  #aboutjob h3,
  #ourlife h3,
  #aboutkoshin h3,
  #aboutfactory h3 {
    margin-bottom: 20px;
  }
}
#aboutjob .u-sec-ttl,
#ourlife .u-sec-ttl,
#aboutkoshin .u-sec-ttl,
#aboutfactory .u-sec-ttl {
  color: #000;
  font-size: 2.7rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}
#aboutjob .u-sec-ttl > span,
#ourlife .u-sec-ttl > span,
#aboutkoshin .u-sec-ttl > span,
#aboutfactory .u-sec-ttl > span {
  display: inline-block;
  line-height: 1;
  padding: 0.1em 0.3em;
  margin-right: 0.3em;
  color: #fff;
  background-color: #E63F23;
}
@media only screen and (max-width: 768px) {
  #aboutjob .u-sec-ttl,
  #ourlife .u-sec-ttl,
  #aboutkoshin .u-sec-ttl,
  #aboutfactory .u-sec-ttl {
    font-size: 0.8em;
  }
}
#aboutjob .u-lbl-sec,
#ourlife .u-lbl-sec,
#aboutkoshin .u-lbl-sec,
#aboutfactory .u-lbl-sec {
  margin-bottom: 1em;
}
#aboutjob .u-ex,
#ourlife .u-ex,
#aboutkoshin .u-ex,
#aboutfactory .u-ex {
  margin-bottom: 3em;
}
#aboutjob .__link,
#ourlife .__link,
#aboutkoshin .__link,
#aboutfactory .__link {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #E63F23;
  background-color: #FCFAF4;
  overflow: hidden;
  z-index: 1;
}
#aboutjob .__link > span,
#ourlife .__link > span,
#aboutkoshin .__link > span,
#aboutfactory .__link > span {
  position: relative;
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
  padding-right: 4em;
}
#aboutjob .__link > span::before,
#ourlife .__link > span::before,
#aboutkoshin .__link > span::before,
#aboutfactory .__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #E63F23;
  border-right: 2px solid #E63F23;
  transform: translateY(-50%) rotate(45deg);
}
#aboutjob .__link::before,
#ourlife .__link::before,
#aboutkoshin .__link::before,
#aboutfactory .__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #FCFAF4;
  border-radius: 24px;
  background-color: #E63F23;
  z-index: 2;
}
#aboutjob .__link:hover,
#ourlife .__link:hover,
#aboutkoshin .__link:hover,
#aboutfactory .__link:hover {
  border-color: rgba(255, 255, 255, 0);
}
#aboutjob .__link:hover > span,
#ourlife .__link:hover > span,
#aboutkoshin .__link:hover > span,
#aboutfactory .__link:hover > span {
  color: #FCFAF4;
}
#aboutjob .__link:hover > span::before,
#ourlife .__link:hover > span::before,
#aboutkoshin .__link:hover > span::before,
#aboutfactory .__link:hover > span::before {
  border-top: 3px solid #FCFAF4;
  border-right: 3px solid #FCFAF4;
}
#aboutjob .__link:hover::before,
#ourlife .__link:hover::before,
#aboutkoshin .__link:hover::before,
#aboutfactory .__link:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #aboutjob,
  #ourlife,
  #aboutkoshin,
  #aboutfactory {
    padding: 60px 0 120px;
  }
}

#aboutjob .container {
  width: 100%;
}
#aboutjob .__inner {
  position: relative;
  padding: 5% 5% 9%;
  border: 1px solid #E63F23;
  border-radius: 32px 0 0 32px;
  margin-left: 10%;
  width: 100vw;
}
#aboutjob .__inner h4 {
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
#aboutjob .__inner h4 > span {
  display: inline-block;
  line-height: 1;
  padding: 0.1em 0.3em;
  margin-right: 0.3em;
  color: #E63F23;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #aboutjob .__inner h4 {
    font-size: 0.8em;
  }
}
#aboutjob .__inner .__img {
  position: absolute;
  top: -10%;
  left: 400px;
  width: 600px;
  opacity: 0;
  transform: translateY(-200px);
  transition: opacity 1.2s, transform 1.2s;
}
#aboutjob .__inner .__img.is-visible {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 1.2s, transform 1.2s;
}
@media only screen and (max-width: 1200px) {
  #aboutjob .__inner {
    padding: 5% 5% 5%;
  }
  #aboutjob .__inner .__img {
    width: 500px;
  }
}
@media only screen and (max-width: 1024px) {
  #aboutjob .__inner .__img {
    top: 18%;
    width: 360px;
  }
}
@media only screen and (max-width: 768px) {
  #aboutjob .__inner {
    width: calc(50vw + 160px);
    margin: 0 calc(50% - 160px);
    border-right: none;
    padding-left: 10%;
    padding-right: calc(50vw - 160px);
    padding-bottom: 25%;
  }
  #aboutjob .__inner .__img {
    top: auto;
    left: auto;
    right: auto;
    bottom: -30%;
    width: 200px;
  }
}

#ourlife .__inner {
  padding: 0 15%;
}
#ourlife .__inner .__link {
  margin-bottom: 32px;
}
#ourlife .__inner .l-video {
  height: 472.5px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1440px) {
  #ourlife .__inner .l-video {
    height: 403.2px;
  }
}
@media only screen and (max-width: 1200px) {
  #ourlife .__inner .l-video {
    height: 302.4px;
  }
}
@media only screen and (max-width: 1024px) {
  #ourlife .__inner .l-video {
    height: 210.9375px;
  }
}
@media only screen and (max-width: 768px) {
  #ourlife .__inner .l-video {
    height: 147.65625px;
  }
}
#ourlife .__inner .__link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5%;
}
@media only screen and (max-width: 1024px) {
  #ourlife .__inner {
    padding: 0;
  }
}
#ourlife .l-scroll-r {
  margin-top: 180px;
}
#ourlife .l-scroll-r > ul {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media only screen and (max-width: 768px) {
  #ourlife .__inner .l-video {
    height: 188px;
  }
}

#aboutkoshin .__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
#aboutkoshin .__inner .__link {
  margin-bottom: 3em;
}
#aboutkoshin .__inner .l-video {
  height: 567px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1440px) {
  #aboutkoshin .__inner .l-video {
    height: 472.5px;
  }
}
@media only screen and (max-width: 1200px) {
  #aboutkoshin .__inner .l-video {
    height: 405px;
  }
}
@media only screen and (max-width: 1024px) {
  #aboutkoshin .__inner .l-video {
    height: 216px;
  }
}
@media only screen and (max-width: 768px) {
  #aboutkoshin .__inner .l-video {
    height: 147.65625px;
  }
}
#aboutkoshin .__inner > div.__l {
  width: 20%;
  height: 776px;
}
#aboutkoshin .__inner > div.__l > h3 {
  height: 100%;
}
#aboutkoshin .__inner > div.__l > h3 > p {
  height: 100%;
  width: auto;
  writing-mode: vertical-rl;
}
#aboutkoshin .__inner > div.__r {
  width: 80%;
  padding-left: 10%;
}
@media only screen and (max-width: 1024px) {
  #aboutkoshin .__inner > div.__l {
    width: 40%;
  }
  #aboutkoshin .__inner > div.__r {
    width: 60%;
  }
}
@media only screen and (max-width: 768px) {
  #aboutkoshin .__inner {
    flex-wrap: wrap;
  }
  #aboutkoshin .__inner > div.__l {
    width: 100%;
    height: 196px;
  }
  #aboutkoshin .__inner > div.__l > h3 {
    height: 100%;
  }
  #aboutkoshin .__inner > div.__l > h3 > p {
    height: auto;
    width: 100%;
    writing-mode: horizontal-tb;
  }
  #aboutkoshin .__inner > div.__r {
    width: 100%;
    padding-left: 0;
  }
  #aboutkoshin .__inner > div.__r > div {
    margin-bottom: 64px;
  }
  #aboutkoshin .__inner > div.__r > div > a {
    margin: 0 auto;
  }
  #aboutkoshin .__inner > div.__r > div.l-video {
    height: 188px;
  }
}

#aboutfactory {
  border-radius: 128px 128px 0 0;
  background-color: #EFE8E6;
}
#aboutfactory .__inner .__img {
  padding: 10%;
}
@media only screen and (max-width: 768px) {
  #aboutfactory .__inner .__img {
    padding: 10% 0 0;
  }
}
#aboutfactory .__link {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #E63F23;
  background-color: #EFE8E6;
  overflow: hidden;
  z-index: 1;
  margin: 0 auto;
}
#aboutfactory .__link > span {
  position: relative;
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
  padding-right: 4em;
}
#aboutfactory .__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #E63F23;
  border-right: 2px solid #E63F23;
  transform: translateY(-50%) rotate(45deg);
}
#aboutfactory .__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #EFE8E6;
  border-radius: 24px;
  background-color: #E63F23;
  z-index: 2;
}
#aboutfactory .__link:hover {
  border-color: rgba(255, 255, 255, 0);
}
#aboutfactory .__link:hover > span {
  color: #EFE8E6;
}
#aboutfactory .__link:hover > span::before {
  border-top: 3px solid #EFE8E6;
  border-right: 3px solid #EFE8E6;
}
#aboutfactory .__link:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #aboutfactory {
    border-radius: 85px 85px 0 0;
  }
}

/*
 *
 */
.l-job-flow {
  padding: 200px 0;
}
@media only screen and (max-width: 768px) {
  .l-job-flow {
    padding: 50px 0;
  }
}
.l-job-flow ul > li {
  position: relative;
  margin-bottom: 10em;
}
.l-job-flow ul > li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6em;
  transform: translateX(-50%);
  width: 60px;
  height: 42px;
  background: no-repeat center/contain url(../image/arrow-bottom.svg);
}
.l-job-flow ul > li:last-of-type::before {
  display: none;
}

.l-job-flow-detail {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #E63F23;
  border-radius: 32px;
  padding: 5%;
}
.l-job-flow-detail h4 {
  margin-bottom: 16px;
}
.l-job-flow-detail > div:nth-child(1) {
  width: 10%;
}
.l-job-flow-detail > div:nth-child(2) {
  width: 50%;
  padding: 0 3em;
}
.l-job-flow-detail > div.__visible {
  width: 40%;
  opacity: 0;
}
@media only screen and (max-width: 1440px) {
  .l-job-flow-detail > div:nth-child(2) {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 1200px) {
  .l-job-flow-detail {
    padding: 10% 5%;
    align-items: start;
    flex-wrap: wrap;
  }
  .l-job-flow-detail > div:nth-child(1) {
    width: 20%;
  }
  .l-job-flow-detail > div:nth-child(2) {
    width: 80%;
    padding: 0 0 0 5%;
  }
  .l-job-flow-detail > div:nth-child(2) > h4 {
    font-size: 1.5rem;
    padding: 5% 5% 7%;
  }
  .l-job-flow-detail > div:nth-child(3) {
    width: 100%;
    padding: 2em 2em 0 2em;
  }
}

/*
 *
 */
.l-img {
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .l-img {
    height: 400px;
  }
}

.l-sdgs {
  padding: 160px 0 0;
}
.l-sdgs > ul {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2em;
  margin-bottom: 2em;
}
.l-sdgs > p {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 200px;
}

/*
 *
 */
.l-img {
  width: 100%;
  height: 600px;
}
@media only screen and (max-width: 768px) {
  .l-img {
    height: 400px;
  }
}

.l-csr {
  padding: 120px 0 320px;
}
.l-csr > h3 {
  color: #E63F23;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 768px) {
  .l-csr > h3 {
    font-size: 20px;
  }
}

/*
 *
 */
.l-factory-tab {
  overflow: hidden;
}
.l-factory-tab .__tab .tab-area {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.l-factory-tab .__tab.__pc {
  display: block;
}
.l-factory-tab .__tab.__sp {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .l-factory-tab .__tab.__pc {
    display: block;
  }
  .l-factory-tab .__tab.__sp {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .l-factory-tab .__tab.__pc {
    display: block;
  }
  .l-factory-tab .__tab.__sp {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .l-factory-tab .__tab.__pc {
    display: none;
  }
  .l-factory-tab .__tab.__sp {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .l-factory-tab .__tab.__pc {
    display: none;
  }
  .l-factory-tab .__tab.__sp {
    display: block;
  }
}
.l-factory-tab .__map {
  position: relative;
  height: 580px;
  background: no-repeat center/contain url(../image/map.svg);
  margin-top: 30px;
}
.l-factory-tab .__map ul > li > a {
  position: absolute;
}
.l-factory-tab .__map ul > li > a.__1 {
  top: 24%;
  left: 77%;
}
.l-factory-tab .__map ul > li > a.__2 {
  top: 52%;
  left: 67%;
}
.l-factory-tab .__map ul > li > a.__3 {
  top: 21%;
  left: 64%;
}
.l-factory-tab .__map ul > li > a.__4 {
  top: 68%;
  left: 58%;
}
.l-factory-tab .__map ul > li > a.__5 {
  top: 20%;
  left: 51%;
}
.l-factory-tab .__map ul > li > a.__6 {
  top: 5%;
  left: 43%;
}
.l-factory-tab .__map ul > li > a.__7 {
  top: 61%;
  left: 32%;
}
.l-factory-tab .__map ul > li > a.__8 {
  top: 65%;
  left: 18%;
}
@media only screen and (max-width: 1200px) {
  .l-factory-tab .__map ul > li > a {
    font-size: 20px;
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-factory-tab .__map ul > li > a {
    font-size: 18px;
    width: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 1440px) {
  .l-factory-tab .__map {
    height: 491px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-factory-tab .__map {
    height: 368px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-factory-tab .__map {
    height: 180px;
  }
}

.l-factory-area {
  padding: 128px 0;
}

.u-factory-title {
  color: #E63F23;
  font-size: 1.35rem;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 32px;
}

.u-factory-title-s {
  color: #E63F23;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 16px;
}

.u-factory-title-ss {
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 16px;
}

.u-factory-ex {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: clamp(320px, 100%, 600px);
  line-height: 1.8;
  margin: 0 auto;
  margin-bottom: 64px;
}

.u-factory-img {
  margin: 0 auto;
  width: clamp(320px, 100%, 388px);
}
.u-factory-img > p {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 1200px) {
  .u-factory-img {
    padding-right: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .u-factory-img {
    padding-right: 0;
  }
}

.l-factory-table {
  width: min(600px, 100%);
  border: 1px solid #D8D6D2;
  margin: 0 auto;
  margin-bottom: 128px;
}
.l-factory-table > li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  border-bottom: 1px solid #D8D6D2;
  background-color: rgba(249, 166, 0, 0.12);
}
.l-factory-table > li:last-of-type {
  border-bottom: none;
}
.l-factory-table > li > p {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  padding: 1em;
}
.l-factory-table > li > p:nth-of-type(1) {
  width: 40%;
}
.l-factory-table > li > p:nth-of-type(2) {
  width: 60%;
  background-color: #FCFAF4;
}
@media only screen and (max-width: 1024px) {
  .l-factory-table > li > p:nth-of-type(1) {
    width: 50%;
  }
  .l-factory-table > li > p:nth-of-type(2) {
    width: 50%;
  }
}

.l-factory-table-a {
  width: min(600px, 100%);
  border: 1px solid #D8D6D2;
  margin: 0 auto;
  margin-bottom: 32px;
}
.l-factory-table-a.__pc {
  display: block;
}
.l-factory-table-a.__sp {
  display: none;
}
.l-factory-table-a > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 4em;
  border-bottom: 1px solid #D8D6D2;
}
.l-factory-table-a > li span {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-factory-table-a > li > div.__t {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 30%;
  height: inherit;
  border-right: 1px solid #D8D6D2;
  background-color: rgba(249, 166, 0, 0.12);
}
.l-factory-table-a > li > div.__t > span {
  width: 100%;
  padding-left: 1em;
}
.l-factory-table-a > li > div.__d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 70%;
  height: 100%;
}
.l-factory-table-a > li > div.__d > p {
  width: 50%;
  height: 100%;
}
.l-factory-table-a > li > div.__d > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 0.5em 0;
}
@media only screen and (max-width: 1024px) {
  .l-factory-table-a.__pc {
    display: none;
  }
  .l-factory-table-a.__sp {
    display: block;
  }
  .l-factory-table-a > li > div.__t {
    width: 45%;
  }
  .l-factory-table-a > li > div.__d {
    width: 55%;
  }
  .l-factory-table-a > li > div.__d > p {
    width: 100%;
  }
  .l-factory-table-a > li > div.__d > span {
    width: 50%;
  }
}

.l-colspan {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}
.l-colspan > span {
  text-align: center;
  place-content: center;
}
.l-colspan > span:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}
.l-colspan > span:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 2;
}
.l-colspan > span:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
}

.l-factory-isd {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1em;
}
.l-factory-isd > div {
  width: 50%;
}
.l-factory-isd > div > .__img {
  width: max(150px, 100%);
}
.l-factory-isd > div > p {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  padding-top: 8px;
}

.l-list-factory {
  margin-bottom: 32px;
}
.l-list-factory > li {
  margin-bottom: 0.5em;
}
.l-list-factory > li > p {
  color: #000;
  font-size: 0.7rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 0.5em;
}
.l-list-factory > li > p:nth-of-type(2) {
  padding-left: 1em;
}

.l-factory-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 32px;
}
.l-factory-flow > li {
  position: relative;
  border: 1px solid #E63F23;
  border-radius: 4px;
  padding: 0.2em 0.5em;
  margin-right: 64px;
}
.l-factory-flow > li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -42px;
  transform: translateY(-50%);
  width: 16px;
  height: 30px;
  background: no-repeat center/contain url(../image/arrow-r-s.svg);
}
.l-factory-flow > li:last-of-type {
  margin-right: 0;
}
.l-factory-flow > li:last-of-type::before {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .l-factory-flow {
    justify-content: center;
    flex-wrap: wrap;
  }
  .l-factory-flow > li {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.l-half {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 128px;
}
.l-half > div {
  width: 50%;
}
.l-half .l-factory-table {
  margin-bottom: 32px;
}
@media only screen and (max-width: 1200px) {
  .l-half > div:nth-child(1) {
    width: 40%;
  }
  .l-half > div:nth-child(2) {
    width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-half {
    flex-wrap: wrap;
  }
  .l-half > div:nth-child(1) {
    width: 100%;
    margin-bottom: 32px;
  }
  .l-half > div:nth-child(2) {
    width: 100%;
  }
}

/*
 *
 */
main#company {
  overflow-x: hidden;
}

#president,
#philosophy,
#history,
#summary,
#qualitypolicy,
#mainclient {
  padding-top: 36px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 1024px) {
  #president,
  #philosophy,
  #history,
  #summary,
  #qualitypolicy,
  #mainclient {
    padding-bottom: 80px;
  }
}

#president .__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 6%;
}
#president .__inner > div {
  width: 50%;
}
#president .__inner > div.__l {
  padding: 3em 0 0 0;
}
#president .__inner > div.__l > div {
  height: 650px;
  border-radius: 32px;
  overflow: hidden;
}
#president .__inner > div.__l > div > img {
  object-position: bottom;
}
#president .__inner > div.__r > h3 {
  margin-bottom: 1em;
}
#president .__inner > div.__r > p {
  margin-bottom: 1em;
}
#president .__inner > div.__r .u-ex {
  line-height: 2;
}
@media only screen and (max-width: 1024px) {
  #president .__inner {
    flex-wrap: wrap;
  }
  #president .__inner > div {
    width: 100%;
  }
  #president .__inner > div.__l {
    width: 100%;
    padding: 0;
    order: 2;
  }
  #president .__inner > div.__l > div {
    height: 360px;
  }
  #president .__inner > div.__r {
    width: 100%;
    order: 1;
  }
  #president .__inner > div.__r > h3 {
    display: block;
    width: max-content;
    margin: 0 auto 36px;
  }
}

#philosophy {
  text-align: center;
}
#philosophy .__inner {
  position: relative;
  height: 500px;
}
#philosophy .__inner > div {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
#philosophy .__inner > div.__l {
  left: calc(50% - 160px);
}
#philosophy .__inner > div.__r {
  left: calc(50% + 160px);
}
@media only screen and (max-width: 1024px) {
  #philosophy .__inner {
    height: 800px;
  }
  #philosophy .__inner > div {
    position: absolute;
  }
  #philosophy .__inner > div.__l {
    top: calc(50% - 140px);
    left: calc(50% - 40px);
  }
  #philosophy .__inner > div.__r {
    top: calc(50% + 140px);
    left: calc(50% + 40px);
  }
}

#history > h3 {
  margin-bottom: 36px;
}
#history > .l-video {
  width: 1024px;
  height: 576px;
  margin: 0 auto;
  margin-bottom: 36px;
}
@media only screen and (max-width: 1440px) {
  #history > .l-video {
    width: 768px;
    height: 432px;
  }
}
@media only screen and (max-width: 1200px) {
  #history > .l-video {
    width: 537.6px;
    height: 302.4px;
  }
}
@media only screen and (max-width: 1024px) {
  #history > .l-video {
    height: 210.9375px;
  }
}
@media only screen and (max-width: 768px) {
  #history > .l-video {
    height: 147.65625px;
  }
}
#history ul > li {
  display: flex;
  justify-content: left;
  align-items: start;
  padding: 1em 0;
  border-bottom: 1px solid #D8D6D2;
}
#history ul > li > span {
  display: inline-block;
}
#history ul > li > span:nth-child(1) {
  width: 15%;
}
#history ul > li > span:nth-child(2) {
  width: 85%;
}
@media only screen and (max-width: 1024px) {
  #history ul > li > span:nth-child(1) {
    width: 40%;
  }
  #history ul > li > span:nth-child(2) {
    width: 60%;
  }
}
#history .__link {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #E63F23;
  background-color: #FCFAF4;
  overflow: hidden;
  z-index: 1;
  margin: 32px auto;
}
#history .__link > span {
  position: relative;
  color: #E63F23;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
  padding-right: 4em;
}
#history .__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #E63F23;
  border-right: 2px solid #E63F23;
  transform: translateY(-50%) rotate(45deg);
}
#history .__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #FCFAF4;
  border-radius: 24px;
  background-color: #E63F23;
  z-index: 2;
}
#history .__link:hover {
  border-color: rgba(255, 255, 255, 0);
}
#history .__link:hover > span {
  color: #FCFAF4;
}
#history .__link:hover > span::before {
  border-top: 3px solid #FCFAF4;
  border-right: 3px solid #FCFAF4;
}
#history .__link:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
#history .__link.close > span::before {
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 1024px) {
  #history > h3 {
    display: block;
    width: max-content;
    margin: 0 auto 36px;
  }
  #history > .l-video {
    width: 100%;
    height: 205px;
  }
}

#summary > .__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 72px;
  gap: 6%;
}
#summary > .__inner > div {
  width: 50%;
}
#summary > .__inner > div.__l > div {
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
}
#summary > .__inner > div.__r > h3 {
  margin-bottom: 1em;
}
#summary > .__inner > div.__r > p {
  margin-bottom: 1em;
}
#summary > .__inner > div.__r > ul > li {
  display: flex;
  justify-content: left;
  align-items: start;
  padding: 1em 0;
  border-bottom: 1px solid #D8D6D2;
}
#summary > .__inner > div.__r > ul > li > span {
  display: inline-block;
}
#summary > .__inner > div.__r > ul > li > span:nth-child(1) {
  width: 130px;
}
#summary > .__inner > div.__r > ul > li > span:nth-child(2) {
  width: calc(100% - 130px);
}
#summary > .__inner > div.__r > ul > li {
  padding: 1.4em 0;
}
@media only screen and (max-width: 1200px) {
  #summary > .__inner {
    flex-wrap: wrap;
  }
  #summary > .__inner > div {
    width: 100%;
  }
  #summary > .__inner > div.__l {
    padding: 0;
    order: 2;
  }
  #summary > .__inner > div.__l > div {
    height: 600px;
  }
  #summary > .__inner > div.__r {
    margin-bottom: 36px;
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  #summary > .__inner > div.__r > h3 {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 36px;
  }
}
#summary > .__map .__link {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #FCFAF4;
  background-color: #E63F23;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 36px;
}
#summary > .__map .__link > span {
  position: relative;
  color: #FCFAF4;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
  padding-right: 4em;
}
#summary > .__map .__link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #FCFAF4;
  border-right: 2px solid #FCFAF4;
  transform: translateY(-50%) rotate(45deg);
}
#summary > .__map .__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #E63F23;
  border-radius: 24px;
  background-color: #FCFAF4;
  z-index: 2;
}
#summary > .__map .__link:hover {
  border-color: rgba(255, 255, 255, 0);
}
#summary > .__map .__link:hover > span {
  color: #E63F23;
}
#summary > .__map .__link:hover > span::before {
  border-top: 3px solid #E63F23;
  border-right: 3px solid #E63F23;
}
#summary > .__map .__link:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
#summary > .__map > .l-map {
  height: 324px;
}
#summary > .__map > .l-map > iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#qualitypolicy {
  text-align: center;
}
#qualitypolicy > h3 {
  margin-bottom: 1em;
}
#qualitypolicy > p {
  margin-bottom: 1em;
}
#qualitypolicy .__inner {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  padding-top: 36px;
}
#qualitypolicy .__inner > div {
  width: 50%;
}
#qualitypolicy .__inner > div.__l > div {
  width: 200px;
  height: 283px;
  margin: 0 auto;
}
#qualitypolicy .__inner > div.__r > ul {
  text-align: left;
}
#qualitypolicy .__inner > div.__r > ul > li {
  display: flex;
  justify-content: left;
  align-items: start;
  padding: 1em 0;
  border-bottom: 1px solid #D8D6D2;
}
#qualitypolicy .__inner > div.__r > ul > li > span {
  display: inline-block;
}
#qualitypolicy .__inner > div.__r > ul > li > span:nth-child(1) {
  width: 180px;
}
#qualitypolicy .__inner > div.__r > ul > li > span:nth-child(2) {
  width: calc(100% - 180px);
}
@media only screen and (max-width: 1024px) {
  #qualitypolicy .__inner {
    flex-wrap: wrap;
  }
  #qualitypolicy .__inner > div {
    width: 100%;
  }
  #qualitypolicy .__inner > div.__l {
    padding: 0;
    margin-bottom: 32px;
  }
}

#mainclient {
  text-align: center;
}
#mainclient > h3 {
  margin-bottom: 3em;
}
#mainclient > ul {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
}
#mainclient > ul > li {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 33.3333333333%;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1024px) {
  #mainclient > ul > li {
    width: 50%;
  }
}

/*
 *
 */
#p-ourlife .l-scroll-r {
  margin-bottom: 64px;
}
#p-ourlife .l-cutin-l {
  margin-bottom: 128px;
}
#p-ourlife .l-cutin-l .__ex {
  font-size: 24px;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #p-ourlife .l-cutin-l .__ex {
    font-size: 18px;
  }
}

.l-ourlife-person .__title {
  width: 388px;
  margin-bottom: 64px;
}
.l-ourlife-person .__title > div {
  margin-bottom: 8px;
}
.l-ourlife-person .__title > p {
  color: #E63F23;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media only screen and (max-width: 768px) {
  .l-ourlife-person .__title {
    width: 100%;
  }
}
.l-ourlife-person .__list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  margin-bottom: 128px;
  gap: 4em 1em;
}
.l-ourlife-person .__list > li {
  width: calc(33.3333333333% - 1em);
}
@media only screen and (max-width: 1200px) {
  .l-ourlife-person .__list {
    gap: 60px 10px;
  }
  .l-ourlife-person .__list > li {
    width: calc(50% - 10px);
  }
}
.l-ourlife-person .__movie {
  position: relative;
  height: 500px;
  padding: 196px 0 0;
  margin-bottom: 128px;
}
.l-ourlife-person .__movie > .l-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 840px;
  height: 472.5px;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1440px) {
  .l-ourlife-person .__movie > .l-video {
    width: 716.8px;
    height: 403.2px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-ourlife-person .__movie > .l-video {
    width: 537.6px;
    height: 302.4px;
  }
}
@media only screen and (max-width: 1024px) {
  .l-ourlife-person .__movie > .l-video {
    width: 375px;
    height: 210.9375px;
  }
}
@media only screen and (max-width: 768px) {
  .l-ourlife-person .__movie > .l-video {
    width: 262.5px;
    height: 147.65625px;
  }
}
.l-ourlife-person .__movie > ul {
  height: 108px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .l-ourlife-person .__movie {
    height: 200px;
    margin-bottom: 32px;
  }
  .l-ourlife-person .__movie > .l-video {
    width: 355px;
    height: 188px;
    z-index: 2;
  }
  .l-ourlife-person .__movie > ul {
    display: none;
  }
}

.l-ourlife-jd {
  position: relative;
  padding-top: 164px;
}
.l-ourlife-jd h3.__title {
  position: absolute;
  top: 96px;
  left: 0;
  width: 40vw;
  height: 136px;
  background-color: #E63F23;
}
.l-ourlife-jd h3.__title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background: no-repeat center/contain url(../image/arrow-r.svg);
}
.l-ourlife-jd h3.__title > span {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.1rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media only screen and (max-width: 768px) {
  .l-ourlife-jd h3.__title > span {
    font-size: 24px;
    right: 10%;
  }
}
.l-ourlife-jd .__inner {
  padding: 10% 20% 20%;
  background-color: #fff;
}
.l-ourlife-jd .__inner > ul {
  margin-bottom: 100px;
}
.l-ourlife-jd .__inner > ul > li {
  display: flex;
  justify-content: left;
  align-items: start;
  padding: 1em 0;
  border-bottom: 1px solid #E0E0E0;
}
.l-ourlife-jd .__inner > ul > li > span {
  display: inline-block;
}
.l-ourlife-jd .__inner > ul > li > span:nth-child(1) {
  width: 28%;
}
.l-ourlife-jd .__inner > ul > li > span:nth-child(2) {
  width: 72%;
}
.l-ourlife-jd .__inner > ul > li {
  padding: 2em 0;
}
.l-ourlife-jd .__inner > ul > li:last-of-type {
  border-bottom: none;
}
.l-ourlife-jd .__inner .__link {
  display: grid;
  place-content: center;
}
.l-ourlife-jd .__inner .__link > a {
  position: relative;
  display: block;
  height: auto;
  text-decoration: none;
  width: fit-content;
  padding: 0.3em 1.4em 0.5em 2em;
  border-radius: 32px;
  border: 1px solid #fff;
  background-color: #E63F23;
  overflow: hidden;
  z-index: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1em 4em;
  border-radius: 24px;
}
.l-ourlife-jd .__inner .__link > a > span {
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  z-index: 9;
  padding-right: 4em;
}
.l-ourlife-jd .__inner .__link > a > span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.l-ourlife-jd .__inner .__link > a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  bottom: auto;
  margin: auto;
  transform: scale(0, 1) translateY(-50%);
  transform-origin: right top;
  transition: transform 0.3s;
  border: 1px solid #E63F23;
  border-radius: 24px;
  background-color: #fff;
  z-index: 2;
}
.l-ourlife-jd .__inner .__link > a:hover {
  border-color: rgba(255, 255, 255, 0);
}
.l-ourlife-jd .__inner .__link > a:hover > span {
  color: #E63F23;
}
.l-ourlife-jd .__inner .__link > a:hover > span::before {
  border-top: 3px solid #E63F23;
  border-right: 3px solid #E63F23;
}
.l-ourlife-jd .__inner .__link > a:hover::before {
  left: -1px;
  transform-origin: left top;
  transform: scale(1, 1) translateY(-50%);
}
.l-ourlife-jd .__inner .__link > a::before {
  border: 1px solid #E63F23;
}
@media only screen and (max-width: 1200px) {
  .l-ourlife-jd .__inner {
    padding: 10% 8% 20%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-ourlife-jd .__inner > ul > li > span {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) {
  .l-ourlife-jd .__inner {
    padding: 30% 8% 45%;
  }
  .l-ourlife-jd .__inner > ul > li {
    display: flex;
    justify-content: left;
    align-items: start;
    padding: 1em 0;
    border-bottom: 1px solid #E0E0E0;
  }
  .l-ourlife-jd .__inner > ul > li > span {
    display: inline-block;
  }
  .l-ourlife-jd .__inner > ul > li > span:nth-child(1) {
    width: 40%;
  }
  .l-ourlife-jd .__inner > ul > li > span:nth-child(2) {
    width: 60%;
  }
  .l-ourlife-jd .__inner > ul > li > span {
    font-size: 14px;
  }
}

.l-recruitment-btn {
  padding: 100px 0 200px;
}
.l-recruitment-btn ul {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
}
.l-recruitment-btn ul > li {
  padding: 0 5%;
}
.l-recruitment-btn ul > li:nth-child(1) {
  width: 35%;
}
.l-recruitment-btn ul > li:nth-child(2) {
  width: 65%;
}
.l-recruitment-btn ul > li > h4 {
  text-align: center;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1em;
}
@media only screen and (max-width: 1200px) {
  .l-recruitment-btn {
    padding: 10% 0 40%;
  }
  .l-recruitment-btn ul {
    flex-wrap: wrap;
  }
  .l-recruitment-btn ul > li {
    padding: 0;
  }
  .l-recruitment-btn ul > li:nth-child(1) {
    width: 100%;
    margin-bottom: 2em;
  }
  .l-recruitment-btn ul > li:nth-child(1) > a {
    display: block;
    width: 250px;
    margin: 0 auto;
  }
  .l-recruitment-btn ul > li:nth-child(2) {
    width: 100%;
  }
  .l-recruitment-btn ul > li > h4 {
    text-align: center;
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-bottom: 1em;
  }
}

/*
 *
 */
.l-mailsend {
  padding: 196px 0 200px;
}
.l-mailsend h2 {
  margin-bottom: 100px;
}
.l-mailsend .l-tel-wrap {
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  .l-mailsend {
    padding-top: 52px;
  }
}

.l-form-table {
  padding: 10% 5%;
  margin-bottom: 32px;
  background-color: #fff;
}
.l-form-table tr {
  display: flex;
  justify-content: left;
  align-items: start;
  flex-wrap: wrap;
}
.l-form-table tr.textarea {
  height: 300px;
}
.l-form-table tr > th {
  color: #000;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  text-align: left;
  margin-bottom: 0.4em;
}
.l-form-table tr > th > span.require {
  color: #E63F23;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 1em;
}
.l-form-table tr > th > span.__note {
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 1em;
}
.l-form-table tr > th > span.__pref {
  padding-left: 4em;
}
.l-form-table tr > td {
  color: #000;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  height: 100%;
  margin-bottom: 32px;
}
.l-form-table tr > td.__double {
  display: flex;
  justify-content: left;
  align-items: start;
}
.l-form-table tr > td.__double > input[type=text]:nth-child(1) {
  text-align: center;
  width: 120px;
  margin-right: 1em;
}
.l-form-table tr > td.__double > input[type=text]:nth-child(2) {
  width: 140px;
}
.l-form-table tr > td > input, .l-form-table tr > td > textarea {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  padding: 0.2em 1em;
  background-color: #F4F4F4;
}
.l-form-table tr > td > input {
  height: 3em;
}
.l-form-table tr > td > textarea {
  resize: none;
  width: 100%;
  height: 300px;
}
@media only screen and (max-width: 1200px) {
  .l-form-table tr > td > textarea {
    height: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .l-form-table tr > th {
    font-size: 14px;
  }
  .l-form-table tr > th > span.require {
    font-size: 0.8em;
    padding-left: 0.5em;
  }
  .l-form-table tr > th > span.__note {
    font-size: 0.8em;
    padding-left: 0.5em;
  }
  .l-form-table tr > td {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .l-form-table tr > td.__double > input[type=text]:nth-child(1) {
    text-align: center;
    width: 100px;
    margin-right: 1em;
  }
  .l-form-table tr > td.__double > input[type=text]:nth-child(2) {
    width: 100px;
  }
  .l-form-table tr > td > input, .l-form-table tr > td > textarea {
    font-size: 14px;
  }
  .l-form-table tr > td > textarea {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .l-form-table tr > td > textarea {
    height: 280px;
  }
}

.l-tel-wrap > p:nth-child(1) {
  position: relative;
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 40px;
}
.l-tel-wrap > p:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: no-repeat center/contain url(../image/icon-tel.svg);
}
.l-tel-wrap > p:nth-child(2) {
  color: #000;
  font-size: 2.1rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-tel-wrap > p:nth-child(3) {
  color: #000;
  font-size: 0.85rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media only screen and (max-width: 768px) {
  .l-tel-wrap > p:nth-child(1) {
    font-size: 18px;
  }
  .l-tel-wrap > p:nth-child(2) {
    font-size: 32px;
  }
  .l-tel-wrap > p:nth-child(3) {
    font-size: 14px;
  }
}

.l-pp {
  margin-bottom: 64px;
}
.l-pp > p:nth-child(1) {
  color: #E63F23;
  font-size: 0.7rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 0.5em;
}
.l-pp > p:nth-child(2) {
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  height: 160px;
  padding: 0.5em;
  border: 1px solid #E63F23;
  overflow-y: scroll;
}

.l-form-btn .__agree {
  text-align: center;
  margin-bottom: 0.5em;
}
.l-form-btn .__agree > input[type=checkbox] {
  border: 1px solid #E63F23;
  border-radius: 4px;
  accent-color: #E63F23;
}
.l-form-btn .__agree > label {
  color: #E63F23;
  font-size: 0.7rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.l-form-btn .__submit {
  text-align: center;
}
.l-form-btn .__submit > input {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  width: 278px;
  height: 64px;
  border: none;
  border-radius: 32px;
  background-color: #E63F23;
}

/*
 *
 */
#aside-company {
  position: absolute;
  left: 0;
  height: 100vh;
  overflow-y: hidden;
  z-index: 999;
}
#aside-company.is-top {
  position: fixed;
  top: 96px;
}
#aside-company > ul {
  position: relative;
  width: auto;
  padding: 1em;
  padding-left: calc((100vw - 1440px) / 2 + 0px);
  border-radius: 0 36px 36px 0;
  background-color: #E63F23;
}
#aside-company > ul::before {
  position: absolute;
  right: 5em;
  bottom: -160%;
  width: 108px;
  height: 564px;
  background: no-repeat center/cover url(../image/aside-company.svg);
}
#aside-company > ul > li {
  font-size: 14px;
  width: 6em;
  margin-left: 0.5em;
  margin-bottom: 0.8em;
}
#aside-company > ul > li:last-child {
  margin-bottom: 0;
}
#aside-company > ul > li.current {
  position: relative;
  padding-left: 0.8em;
}
#aside-company > ul > li.current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color: #fff;
}
#aside-company > ul > li > a {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
}
@media only screen and (max-width: 1440px) {
  #aside-company > ul {
    padding-left: 1em;
  }
  #aside-company > ul::before {
    right: 7em;
  }
}
@media only screen and (max-width: 1024px) {
  #aside-company {
    display: none;
  }
}

/*
 *
 */
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(200px);
  }
}
@keyframes tv-bg {
  0% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes tv-bird-a {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  40% {
    top: 90%;
    left: -50%;
    transform: translate(-50%, -50%) scale(4);
  }
  41% {
    top: 30%;
    left: -10%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: 10%;
    left: 130%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 110%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes tv-bird-a_pc2 {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  40% {
    top: 90%;
    left: -50%;
    transform: translate(-50%, -50%) scale(4);
  }
  41% {
    top: 30%;
    left: -10%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: 10%;
    left: 130%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 110%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: 35%;
    left: 55%;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes tv-bird-a_sp {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0);
  }
  40% {
    top: 90%;
    left: -50%;
    transform: translate(-50%, -50%) scale(4);
  }
  41% {
    top: 30%;
    left: -10%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: 10%;
    left: 130%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 110%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: calc(0% + 52px + 141px + 32px + 50px);
    left: 55%;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@keyframes tv-bird-b {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    top: 150%;
    left: 40%;
    transform: translate(-50%, -50%) scale(4);
  }
  51% {
    top: 140%;
    left: 20%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: -10%;
    left: 90%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: 30%;
    left: calc(70% + 20px);
    transform: translate(-50%, -50%) scale(1, 1);
  }
}
@keyframes tv-bird-b_pc2 {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    top: 180%;
    left: 10%;
    transform: translate(-50%, -50%) scale(4);
  }
  51% {
    top: 140%;
    left: 20%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: -10%;
    left: 90%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: 35%;
    left: calc(65% + 20px);
    transform: translate(-50%, -50%) scale(1, 1);
  }
}
@keyframes tv-bird-b_sp {
  0% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  10% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    top: 140%;
    left: 20%;
    transform: translate(-50%, -50%) scale(4);
  }
  51% {
    top: 140%;
    left: 20%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  80% {
    top: -10%;
    left: 90%;
    transform: translate(-50%, -50%) scale(-1, 1);
  }
  81% {
    top: -10%;
    left: 100%;
    transform: translate(-50%, -50%) scale(1, 1);
  }
  100% {
    top: calc(0% + 52px + 141px + 32px + 50px);
    left: calc(55% + 100px);
    transform: translate(-50%, -50%) scale(1, 1.2);
  }
}
@keyframes tv-ship-a {
  0% {
    top: 100%;
    left: -10%;
    transform: translate(-50%, -50%);
  }
  10% {
    top: 100%;
    left: -10%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  20% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  30% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  50% {
    top: 85%;
    left: 20%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  70% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  80% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  90% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  100% {
    top: 85%;
    left: 20%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
}
@keyframes tv-ship-a_sp {
  0% {
    top: 90%;
    left: -30%;
    transform: translate(-50%, -50%);
  }
  10% {
    top: 90%;
    left: -30%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  20% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  30% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  50% {
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  70% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  80% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  90% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  100% {
    top: 80%;
    left: 20%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
}
@keyframes tv-ship-b {
  0% {
    top: 100%;
    left: 16%;
    transform: translate(-50%, -50%);
  }
  10% {
    top: 100%;
    left: 16%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
  20% {
    transform: translate(-50%, -50%) translateY(2%);
  }
  30% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  40% {
    transform: translate(-50%, -50%) translateY(2%);
  }
  50% {
    top: 90%;
    left: 43%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
  60% {
    transform: translate(-50%, -50%) translateY(2%);
  }
  70% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  80% {
    transform: translate(-50%, -50%) translateY(2%);
  }
  90% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  100% {
    top: 90%;
    left: 43%;
    transform: translate(-50%, -50%) translateY(2%);
  }
}
@keyframes tv-ship-c {
  0% {
    top: 80%;
    left: 120%;
    transform: translate(-50%, -50%);
  }
  10% {
    top: 80%;
    left: 120%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  20% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  30% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  50% {
    top: 85%;
    left: 86%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  70% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  80% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  90% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  100% {
    top: 85%;
    left: 86%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
}
@keyframes tv-ship-c_sp {
  0% {
    top: 92%;
    left: 120%;
    transform: translate(-50%, -50%);
  }
  10% {
    top: 92%;
    left: 120%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  20% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  30% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  50% {
    top: 78%;
    left: 90%;
    transform: translate(-50%, -50%) translateY(5%);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  70% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  80% {
    transform: translate(-50%, -50%) translateY(-2%);
  }
  90% {
    transform: translate(-50%, -50%) translateY(5%);
  }
  100% {
    top: 78%;
    left: 90%;
    transform: translate(-50%, -50%) translateY(-2%);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* overflow-x: hidden; */
}

ul,
ol {
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1440px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tl {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .tl {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .tl {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .tl {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .tl {
    display: none;
  }
}

.pctl {
  display: block;
}
@media only screen and (max-width: 1440px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 1200px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .pctl {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pctl {
    display: none;
  }
}

.tlsp {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .tlsp {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .tlsp {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .tlsp {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .tlsp {
    display: block;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1440px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.container {
  width: 100%;
  height: auto;
  max-width: 1440px;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1200px;
    min-width: 1024px;
  }
}
@media only screen and (max-width: 1200px) {
  .container {
    max-width: 1024px;
    min-width: 768px;
  }
}
@media only screen and (max-width: 1024px) {
  .container {
    max-width: 768px;
    min-width: 375px;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    max-width: 375px;
    min-width: 320px;
    padding: 0 20px;
  }
}

.container-s {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .container-s {
    max-width: 1024px;
    min-width: 768px;
  }
}
@media only screen and (max-width: 1200px) {
  .container-s {
    max-width: 768px;
    min-width: 375px;
  }
}
@media only screen and (max-width: 1024px) {
  .container-s {
    max-width: 375px;
    min-width: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .container-s {
    max-width: 375px;
    min-width: 320px;
    padding: 0 20px;
  }
}

.container-ss {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1024px;
  padding: 0;
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .container-ss {
    max-width: 768px;
    min-width: 375px;
  }
}
@media only screen and (max-width: 1200px) {
  .container-ss {
    max-width: 375px;
    min-width: 320px;
  }
}
@media only screen and (max-width: 1024px) {
  .container-ss {
    max-width: 375px;
    min-width: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .container-ss {
    max-width: 375px;
    min-width: 320px;
    padding: 0 20px;
  }
}

.tc-primary {
  color: #E63F23;
}

.ta-c {
  text-align: center;
}

.w-100px {
  width: 100px;
}

.w-100pc {
  width: 100%;
}

.m-0a {
  margin: 0 auto;
}

.fw-b {
  font-weight: bold;
}

.fw-6 {
  font-weight: 600;
}

.fs-15em {
  font-size: 1.5em;
}

.fs-2em {
  font-size: 2em;
}

.fs-17px {
  font-size: 17px;
}

.fs-20px {
  font-size: 20px;
}

.fs-24px {
  font-size: 24px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-1e {
  margin-bottom: 1em;
}

.mb-2e {
  margin-bottom: 2em;
}

.mb-1r {
  margin-bottom: 1rem;
}

.mb-2r {
  margin-bottom: 2rem;
}

.wp-pw {
  white-space: pre-wrap;
}

.width-max {
  width: 100vw;
  height: auto;
  margin: 0 calc(50% - 50vw);
}

::-moz-selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #0085A1;
  text-shadow: none;
}

::placeholder {
  color: #dddddd;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
img::-moz-selection {
  color: #fff;
  background: transparent;
}
img::selection {
  color: #fff;
  background: transparent;
}

hr.__white {
  color: #fff;
}

.outlink {
  position: relative;
}
.outlink::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain url("../img/icon-arrow-04.svg");
}

blockquote {
  font-style: italic;
  color: #868e96;
}

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