@charset "UTF-8";
@import url("../css/setting.css");
:root {
  --pattern__texture__a_w: url(../img/common/pattern__texture__a_w.png);
  --pattern__texture__a_k: url(../img/common/pattern__texture__a_k.png);
  --pattern__texture__a_b: url(../img/common/pattern__texture__a_b.png);
  --separate__shape_b__tl: url(../img/common/separate__shape__a_01.png) left top / 70vw no-repeat;
  --separate__shape_k__br: url(../img/common/separate__shape__b_01.png) right bottom -1vw / 100% no-repeat;
  --separate__shape_w__bl: url(../img/common/separate__shape__w_01.png) right bottom -1vw / 100% no-repeat;
}

.hidden-ttl {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b) {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "img" auto "text" auto/100%;
}
:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b) > .item-img {
  grid-area: img;
  height: fit-content;
}
:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b) > .item-text {
  grid-area: text;
  height: fit-content;
  align-self: start;
}

:is(.lay__img_txt_t, .lay__img_txt_c, .lay__img_txt_b).lay__r:nth-of-type(even) {
  grid-template: "img" auto "text" auto/100%;
}

.lay__img_txt_t {
  align-items: top;
}

.lay__img_txt_c {
  align-items: center;
}

.lay__img_txt_b {
  align-items: bottom;
}

:is(.lay__txt_img_t, .lay__txt_img_c, .lay__txt_img_b) {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "img" auto "text" auto/100%;
  align-items: start;
}
:is(.lay__txt_img_t, .lay__txt_img_c, .lay__txt_img_b) > .item-img {
  grid-area: img;
  height: fit-content;
}
:is(.lay__txt_img_t, .lay__txt_img_c, .lay__txt_img_b) > .item-text {
  grid-area: text;
  height: fit-content;
  align-self: start;
}

:is(.lay__txt_img_t, .lay__txt_img_c, .lay__txt_img_b).lay__r:nth-of-type(even) {
  grid-template: "img" auto "text" auto/100%;
}

.lay__txt_img_t {
  align-items: top;
}

.lay__txt_img_c {
  align-items: center;
}

.lay__txt_img_b {
  align-items: bottom;
}

.lay__ttl_img_txt_c {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "img ttl" auto "img text" auto/max-content 1fr;
  align-items: center;
}
.lay__ttl_img_txt_c > .item-ttl {
  grid-area: ttl;
  height: fit-content;
  align-self: end;
}
.lay__ttl_img_txt_c > .item-img {
  grid-area: img;
  height: fit-content;
}
.lay__ttl_img_txt_c > .item-text {
  grid-area: text;
  height: fit-content;
  align-self: start;
}

.lay__img_ttl_txt_c {
  --column-gap: 0px;
  --row-gap: 0px;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: grid;
  grid-template: "ttl img" auto "text img" auto/1fr max-content;
  align-items: center;
}
.lay__img_ttl_txt_c > .item-ttl {
  grid-area: ttl;
  height: fit-content;
  align-self: end;
}
.lay__img_ttl_txt_c > .item-img {
  grid-area: img;
  height: fit-content;
}
.lay__img_ttl_txt_c > .item-text {
  grid-area: text;
  height: fit-content;
  align-self: start;
}

:is(.lay__ttl_img_txt_t, .lay__ttl_img_txt_c, .lay__ttl_img_txt_b).lay__r:nth-of-type(even) {
  grid-template: "ttl img" auto "text img" auto/1fr max-content;
}

:is(.lay__img_ttl_txt_t, .lay__img_ttl_txt_c, .lay__img_ttl_txt_b).lay__r:nth-of-type(even) {
  grid-template: "img ttl" auto "img text" auto/max-content 1fr;
}

.lay__list_c {
  --column-gap: 1px;
  --row-gap: 1px;
  --num: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: flex;
  flex-wrap: wrap;
}
.lay__list_c > [class*=item] {
  width: calc((100% - (var(--num) - 1) * var(--column-gap)) / var(--num));
}

.lay__list_s {
  --column-gap: 1px;
  --row-gap: 1px;
  --num: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: sta;
  column-gap: var(--column-gap);
  row-gap: var(--row-gap);
  display: flex;
  flex-wrap: wrap;
}
.lay__list_s > [class*=item] {
  width: calc((100% - (var(--num) - 1) * var(--column-gap)) / var(--num));
}

/* header ヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  /* --------------------------------- */
  /* --------------------------------- */
}
#header .header--wrap {
  width: 100%;
  height: 100px;
  background: var(--pattern__texture__a_k);
}
@media screen and (max-width: 767px) {
  #header .header--wrap {
    height: 70px;
  }
}
#header .header--left {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .header--left {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
}
#header .item-logo {
  display: block;
  width: fit-content;
}
#header .item-logo a {
  width: fit-content;
  display: block;
  transition: ease 0.2s;
}
#header .item-logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  #header .item-logo {
    margin-right: auto;
    max-width: 55dvw;
    max-height: 55px;
  }
  #header .item-logo img {
    height: auto;
    filter: var(--col--fil-white);
    height: 7vw;
    margin-left: 2vw;
  }
}
#header .header--right {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .header--right {
    display: none;
  }
}
#header .cont-info {
  width: fit-content;
}
#header .block-info {
  gap: 3vw;
  margin-bottom: var(--margin-10);
}
#header .block-info .com--btn-02 {
  --width: 240px;
  --height: 45px;
}
#header .com--times {
  gap: 6px;
}

/* nav グローバルナビゲーション
////////////////////////////////////////////////////////////////////////////////////////////////// */
#nav .list-nav {
  width: fit-content;
  gap: 35px;
}
#nav .list-nav-item {
  width: fit-content;
}
#nav .list-nav-item a {
  transition: ease 0.17s;
}
@media screen and (max-width: 767px) {
  #nav {
    display: none;
  }
}

/* mv メインビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#mv {
  position: relative;
  width: 100%;
  height: 840px;
  background: url(../img/mv/mv__deco_lb.png) left bottom/70vw no-repeat, url(../img/mv/mv__img.png) center center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  #mv {
    height: 100vw;
  }
}
#mv .mv-catch {
  position: absolute;
  left: 0vw;
  top: 48vw;
}

/* sv サブビジュアル
////////////////////////////////////////////////////////////////////////////////////////////////// */
#sv {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
}
#sv::before {
  content: "";
  position: absolute;
  background: url(../img/sv/sv__deco_lb.png) center center/contain no-repeat;
  width: 70vw;
  height: 57vw;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  #sv {
    height: 70vw;
  }
}
#sv .sv-catch {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: max-content;
}
#sv .sv-catch img {
  width: 90vw;
  height: 26vw;
  object-fit: contain;
}

.sv-about {
  background: url(../img/sv/sv__about.jpg) center center/cover no-repeat;
}

.sv-environment {
  background: url(../img/sv/sv__environment.jpg) center center/cover no-repeat;
}

.sv-carrier {
  background: url(../img/sv/sv__carrier.jpg) center center/cover no-repeat;
}

.sv-recruit {
  background: url(../img/sv/sv__recruit.jpg) center center/cover no-repeat;
}

.sv-notfound {
  background: url(../img/sv/sv__notfound.jpg) center center/cover no-repeat;
}

.sv-contact {
  background: url(../img/sv/sv__contact.jpg) center center/cover no-repeat;
}

.sv-complete {
  background: url(../img/sv/sv__complete.jpg) center center/cover no-repeat;
}

.sv-news {
  background: url(../img/sv/sv__news.jpg) center center/cover no-repeat;
}

.sv-site {
  background: url(../img/sv/sv__site.jpg) center center/cover no-repeat;
}

.sv-privacy {
  background: url(../img/sv/sv__privacy.jpg) center center/cover no-repeat;
}

/* main コンテンツ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wrap-allover {
  overflow: hidden;
  position: relative;
}

.com--ttl03-01 {
  width: fit-content;
}
.com--ttl03-01 .en {
  display: block;
  width: fit-content;
}
.com--ttl03-01 .ja {
  display: block;
  width: fit-content;
}

/* worries
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--worries {
  position: relative;
  z-index: 0;
  background: var(--separate__shape_b__tl), url(../img/top/top__worries__bg_img_01.png) right top/70vw no-repeat, var(--pattern__texture__a_k);
  color: var(--col--txt-w);
}
#top--worries .ttl03 {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  margin-bottom: 10vw;
  margin-top: 15vw;
}
#top--worries .ttl03 .ja img {
  width: 90vw;
}
#top--worries .ttl03 .en {
  position: absolute;
  width: 91vw;
  right: 0vw;
  top: -15vw;
}
#top--worries .cont-worries {
  margin-bottom: 10vw;
  position: relative;
}
#top--worries .cont-worries:last-child {
  margin-bottom: 0;
}
#top--worries .cont-worries .ttl04 {
  background: var(--pattern__texture__a_w);
  padding: 2.5vw 3vw;
  margin-bottom: var(--margin-40);
}
#top--worries .cont-worries .ttl04 .ja {
  font-size: var(--font-size-42);
  font-weight: 900;
  font-style: italic;
  color: var(--col--txt-01);
}
#top--worries .cont-worries .ttl04 .ja .str-01 {
  color: var(--col--main-02);
}
#top--worries .cont-worries .ttl04 .ja .weak-01 {
  font-size: var(--font-size-32);
}
#top--worries .cont-worries .item-img {
  position: relative;
  width: 100%;
  margin-bottom: 4vw;
}
#top--worries .cont-worries .list-worries {
  width: fit-content;
}
#top--worries .cont-worries .list-worries-item {
  position: relative;
  padding-left: 8vw;
  margin-bottom: var(--margin-35);
}
#top--worries .cont-worries .list-worries-item::before {
  font-size: var(--font-size-22);
  content: "／";
  position: absolute;
  left: 0;
  top: 10px;
}
#top--worries .cont-worries .list-worries-item .text {
  font-size: var(--font-size-21);
  font-weight: 700;
  line-height: 1.6;
}
#top--worries .cont-worries .list-worries-item .text .str-01 {
  font-size: var(--font-size-26);
  border-bottom: 2px solid var(--col--txt-w);
}

/* recruit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--recruit {
  background: var(--separate__shape_k__br), var(--pattern__texture__a_w);
  position: relative;
  z-index: 0;
}
#top--recruit .inbox {
  padding-top: 20vw;
}
#top--recruit .ttl03 {
  width: fit-content;
  position: relative;
  margin-bottom: var(--margin-80);
}
#top--recruit .ttl03 .en {
  position: absolute;
  width: 70vw;
  right: 0vw;
  top: -8vw;
}
#top--recruit .wrap-recruit {
  position: relative;
}
#top--recruit .wrap-recruit .item-img {
  position: relative;
  margin-bottom: 6vw;
}
#top--recruit .wrap-recruit .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -5vw;
  top: -5vw;
  background: var(--col--txt-01);
  opacity: 0.3;
}
#top--recruit .wrap-recruit .item-text {
  width: 100%;
}
#top--recruit .wrap-recruit .item-text p .str-01 {
  line-height: 1;
  padding: 3px;
  color: #fff;
  background: var(--col--main-01);
}

/* ideal
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--ideal {
  background: url(../img/top/top__ideal__bg_img_01.png) left bottom no-repeat, var(--pattern__texture__a_k);
}
#top--ideal .inbox {
  padding: 25vw 0 15vw;
}
#top--ideal .ttl03 {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-bottom: var(--margin-50);
}
#top--ideal .ttl03 .ja {
  display: block;
  width: 74vw;
}
#top--ideal .ttl03 .en {
  position: absolute;
  right: -5vw;
  top: -9vw;
  width: 57vw;
}
#top--ideal .wrap-ideal {
  position: relative;
}
#top--ideal .wrap-ideal .item-img {
  position: relative;
  margin-bottom: 8vw;
  margin-left: -5vw;
}
#top--ideal .wrap-ideal .list-ideal {
  padding: 5vw;
  background: url(../img/common/deco__crashed__a_01.png) left top no-repeat, var(--pattern__texture__a_w);
  width: fit-content;
  padding-right: 0;
  margin-left: auto;
  position: relative;
  width: 100%;
  margin-right: -5vw;
}
#top--ideal .wrap-ideal .list-ideal-item {
  position: relative;
  padding-left: 6vw;
  margin-bottom: var(--margin-40);
  width: 100%;
  margin-bottom: 9vw;
}
#top--ideal .wrap-ideal .list-ideal-item:last-child {
  margin-bottom: 0;
}
#top--ideal .wrap-ideal .list-ideal-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 4.5vw;
  height: 4.5vw;
  top: 0;
  left: 0;
}
#top--ideal .wrap-ideal .list-ideal-item .text {
  font-size: var(--font-size-22);
  font-size: 4.5vw;
  font-weight: 700;
}
#top--ideal .wrap-ideal .list-ideal-item .text em.str-01 {
  color: var(--col--main-02);
  font-size: var(--font-size-27);
  font-size: 4.8vw;
  font-weight: 700;
  border-bottom: 1px solid var(--col--main-02);
}

/* subpages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--subpages {
  background: var(--pattern__texture__a_k);
}
#top--subpages .inbox {
  padding-bottom: 15vw;
}
#top--subpages .wrap-subpages {
  gap: 10vw;
}
#top--subpages .wrap-subpages .item-subpages {
  width: 100%;
  height: 50vw;
  position: relative;
}
#top--subpages .wrap-subpages .item-subpages:last-child {
  margin-bottom: 0;
}
#top--subpages .wrap-subpages .item-subpages a {
  width: 100%;
  height: 100%;
}
#top--subpages .wrap-subpages .item-subpages a .ttl03 {
  position: absolute;
  left: 0;
  bottom: var(--margin-30);
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 90%;
  padding-bottom: var(--margin-20);
  border-bottom: 2px solid var(--col--txt-w);
}
#top--subpages .wrap-subpages .item-subpages a .ttl03::before {
  content: "";
  position: absolute;
  width: 3vw;
  border-bottom: 2px solid var(--col--txt-w);
  right: 0;
  bottom: 0;
  rotate: 35deg;
  translate: 1px -2px;
}
#top--subpages .wrap-subpages .item-subpages a .ttl03 .en {
  font-size: 10vw;
  display: inline-block;
  opacity: 0.15;
  font-weight: 800;
  color: var(--col--txt-w);
  margin-bottom: var(--margin-20);
  letter-spacing: 0em;
  white-space: nowrap;
}
#top--subpages .wrap-subpages .item-subpages a .ttl03 .en::first-letter {
  color: var(--col--main-02);
}
#top--subpages .wrap-subpages .item-subpages a .ttl03 .ja {
  font-size: var(--font-size-38);
  color: var(--col--txt-w);
  font-weight: 800;
}
#top--subpages .wrap-subpages .item-subpages:nth-of-type(1) {
  background: url(../img/top/top__subpages__img_01.png) center center/cover no-repeat;
}
#top--subpages .wrap-subpages .item-subpages:nth-of-type(2) {
  background: url(../img/top/top__subpages__img_02.png) center center/cover no-repeat;
}
#top--subpages .wrap-subpages .item-subpages:nth-of-type(3) {
  background: url(../img/top/top__subpages__img_03.png) center center/cover no-repeat;
}
#top--subpages .wrap-subpages .item-subpages:nth-of-type(4) {
  background: url(../img/top/top__subpages__img_04.png) center center/cover no-repeat;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--contact {
  background: url(../img/top/top__recruit__bg_img_01.jpg) center center/cover no-repeat;
  position: relative;
  z-index: 0;
}
#top--contact::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  background: var(--pattern__texture__a_k);
}
#top--contact .cont-contact {
  background: var(--pattern__texture__a_w);
  padding: 5vw;
  position: relative;
}
#top--contact .cont-contact .ttl03 {
  position: relative;
  padding-left: 10vw;
  margin-bottom: var(--margin-40);
}
#top--contact .cont-contact .ttl03::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__line.svg) center center/contain no-repeat;
  width: 8vw;
  height: 8vw;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#top--contact .cont-contact .ttl03 .ja {
  font-size: var(--font-size-38);
  font-size: 5vw;
  font-weight: 700;
}
#top--contact .cont-contact .item-img {
  position: relative;
  margin-bottom: 4vw;
}
#top--contact .cont-contact .item-text {
  margin-bottom: var(--margin-30);
}
/* partner
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--partner {
  position: relative;
  z-index: 0;
  background: var(--separate__shape_k__br), var(--pattern__texture__a_w);
}
#top--partner .inbox {
  padding-top: 70px;
}
#top--partner hgroup {
  width: 100%;
  margin-bottom: var(--margin-40);
}
#top--partner hgroup .ttl03 {
  text-align: center;
}
#top--partner hgroup .ttl03 .ja {
  position: relative;
  left: 5vw;
}
#top--partner hgroup .lead-text {
  position: relative;
  z-index: 1;
  color: #fff;
  width: fit-content;
  text-align: center;
  font-size: var(--font-size-22);
  font-size: 4.5vw;
  line-height: 1.7;
  font-weight: 700;
  padding: 4vw 3vw;
  background: var(--col--txt-01);
  margin: 0 auto;
  margin-top: -7vw;
}
#top--partner .item-text {
  margin-bottom: var(--margin-40);
  text-align: left;
}
#top--partner .item-text p br {
  display: none;
}
#top--partner .cont-feature {
  background: #fff;
  padding: 5vw;
  outline: 1px solid var(--col--txt-01);
  outline-offset: -3vw;
}
#top--partner .cont-feature .wrap-feature {
  flex-direction: column;
}
#top--partner .cont-feature .wrap-feature .block-feature {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 7vw;
}
#top--partner .cont-feature .wrap-feature .block-feature:last-child {
  margin-bottom: 0;
}
#top--partner .cont-feature .wrap-feature .block-feature .ttl05 {
  order: 2;
  margin-bottom: var(--margin-30);
  text-align: left;
  flex: 1;
  margin-bottom: 4vw;
}
#top--partner .cont-feature .wrap-feature .block-feature .ttl05 .ja {
  font-size: var(--font-size-20);
  font-size: 4.8vw;
  line-height: 1.4;
  font-weight: 700;
  color: var(--col--main-02);
}
#top--partner .cont-feature .wrap-feature .block-feature .item-img {
  order: 1;
  margin-bottom: var(--margin-30);
  width: 30%;
}
#top--partner .cont-feature .wrap-feature .block-feature .item-img img {
  width: 80%;
  height: 16vw;
  object-fit: contain;
}
#top--partner .cont-feature .wrap-feature .block-feature .item-text {
  order: 3;
  margin-bottom: 0;
  width: 100%;
}
/* news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.unit-latest a {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding: 4vw;
  margin-bottom: var(--margin-40);
}
.unit-latest .unit-latest-text {
  width: 100%;
}
.unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
.unit-latest .item-ttl {
  order: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-16);
  margin-bottom: var(--margin-25);
  color: #fff;
}
.unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  margin-bottom: var(--margin-25);
  color: #fff;
}
.unit-latest .tag_list {
  order: 3;
  width: 100%;
  margin-bottom: var(--margin-15);
  gap: 3vw;
}
.unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: #fff;
  background: var(--col--main-01);
  padding: 1px 4px;
  font-size: var(--font-size-13);
}
.unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .unit-latest .unit-latest-img {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
.unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  .unit-latest .item-thumb {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
.unit-latest:hover {
  color: var(--col--acc-01);
  right: -5px;
}

.s-post-taglist {
  gap: 2vw;
}
.s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  color: #fff;
  background: var(--col--main-01);
  padding: 1px 4px;
  font-size: var(--font-size-13);
}

#top--news {
  background: var(--pattern__texture__a_k);
}
#top--news .inbox {
  position: relative;
}
#top--news .ttl03 {
  position: relative;
  margin-bottom: var(--margin-60);
}
#top--news .ttl03 .en {
  position: absolute;
  width: 70vw;
  top: -4vw;
  left: 50%;
  translate: -50% 0;
}
#top--news .unit-latest a {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding: 4vw;
  margin-bottom: var(--margin-40);
}
#top--news .unit-latest .unit-latest-text {
  width: 100%;
}
#top--news .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .unit-latest-text.on_thumb {
    width: 70%;
  }
}
#top--news .unit-latest .item-ttl {
  order: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-16);
  margin-bottom: var(--margin-25);
  color: #fff;
}
#top--news .unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  margin-bottom: var(--margin-25);
  color: #fff;
}
#top--news .unit-latest .tag_list {
  order: 3;
  width: 100%;
  margin-bottom: var(--margin-15);
  gap: 3vw;
}
#top--news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: #fff;
  background: var(--col--main-01);
  padding: 1px 4px;
  font-size: var(--font-size-13);
}
#top--news .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .unit-latest-img {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#top--news .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
@media screen and (max-width: 767px) {
  #top--news .unit-latest .item-thumb {
    height: 20vw;
    width: 20vw;
    margin-right: 2vw;
  }
}
#top--news .unit-latest:hover {
  color: var(--col--acc-01);
  right: -5px;
}
#top--news .com--btn-01 {
  position: relative;
}

.com--table-01 tr th,
.com--table-01 tr td {
  line-height: 2;
  padding: 4vw 0;
  border-bottom: 1px solid var(--col--main-02);
  font-size: var(--font-size-16);
  font-weight: 500;
}
.com--table-01 tr th {
  padding-left: 3vw;
  color: var(--col--main-02);
  width: 30%;
}
/* company
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--company {
  background: var(--pattern__texture__a_k);
}
#top--company .inbox {
  padding-top: 50px;
}
#top--company .ttl03 {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: var(--margin-50);
}
#top--company .ttl03 .en {
  position: absolute;
  width: 74vw;
  top: -4vw;
  left: 50%;
  translate: -50% 0;
}
#top--company .ttl03 .ja {
  display: inline-block;
  width: 60vw;
}
#top--company .cont-info {
  padding: 5vw;
  background: var(--pattern__texture__a_w);
  margin-bottom: var(--margin-50);
}
#top--company .cont-map {
  width: 100%;
  height: 80vw;
  min-height: 200px;
}
#top--company .cont-map iframe {
  width: 100%;
  height: 100%;
}

/* footer フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#footer {
  position: relative;
  width: 100%;
  background: var(--pattern__texture__a_b);
  /* --------------------------------- */
  /* --------------------------------- */
  /* --------------------------------- */
}
#footer .inbox {
  padding: 8vw 0;
  width: 90%;
  align-items: center;
  flex-direction: column;
}
#footer .item-logo {
  transition: ease 0.2s;
  display: block;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-40);
}
#footer .item-logo img {
  width: 45vw;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
#footer .block-contact {
  margin-bottom: var(--margin-40);
}
#footer .block-contact .item-address {
  color: var(--col--txt-w);
  margin-bottom: var(--margin-40);
}
#footer .block-contact .com--tel {
  margin: 0 auto;
}
#footer .block-contact .com--tel .tel-num::before {
  filter: var(--col--fil-white);
}
#footer .com--times {
  flex-direction: column;
}
#footer .com--times dt {
  background: #fff;
  color: var(--col--main-02);
}
#footer .com--times dd {
  color: #fff;
}
#footer .footer--wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #footer .footer--wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#footer .footer--left {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .footer--left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#footer .footer--right {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .footer--right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#footer .item-address {
  line-height: 1.6;
}
#footer .list-nav {
  gap: 20px;
  width: 550px;
  justify-content: end;
}
#footer .list-nav-item {
  width: fit-content;
}
#footer .list-nav-item a {
  position: relative;
  transition: ease 0.2s;
  font-size: var(--font-size-14);
  color: var(--col--acc-01);
}
#footer .list-nav-item a:hover {
  color: var(--col--txt-w);
}
@media screen and (max-width: 767px) {
  #footer .list-nav {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: center;
  color: var(--col--main-02);
  background: var(--col--txt-01);
  color: var(--col--acc-01);
  padding: 15px 0;
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: #fff;
  background: var(--col--main-02);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}

/* 共通タイトル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contents-u,
#contact {
  background: var(--separate__shape_b__tl), var(--pattern__texture__a_w);
}
#contents-u .ttl01,
#contact .ttl01 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  font-size: var(--font-size-46);
  font-weight: 700;
  display: inline-block;
  font-style: italic;
  padding-right: 20px;
  background: linear-gradient(360deg, #1b1b1b 0%, #747474 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#contents-u .ttl01 .ja::first-letter,
#contact .ttl01 .ja::first-letter {
  font-size: var(--font-size-60);
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  margin: 0 auto;
  display: none;
}
#contents-u .unit-latest a,
#contact .unit-latest a {
  color: var(--col--txt-01);
}
#contents-u .unit-latest a h4,
#contents-u .unit-latest a time,
#contact .unit-latest a h4,
#contact .unit-latest a time {
  color: var(--col--txt-01);
}
#contents-u #s-post,
#contact #s-post {
  background: var(--pattern__texture__a_w);
  padding: 30px;
}

/* subpage 下層ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-01 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-80);
  margin-top: 15vw;
}
.com--ttl03-01 .ja {
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.com--ttl03-01 .ja img {
  height: 9vw;
}
.com--ttl03-01 .en {
  display: block;
  width: max-content;
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: -7vw;
}
.com--ttl03-01 .en img {
  height: 10vw;
}

.subpages .com--text-01 p {
  line-height: 2.1875;
  font-weight: 400;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about--exterior
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--exterior {
  background: var(--separate__shape_b__tl), var(--separate__shape_w__bl), url(../img/about/about__exterior__bg_img_01.png) right top no-repeat, var(--pattern__texture__a_k);
  color: var(--col--txt-w);
  position: relative;
  z-index: 0;
}
#about--exterior .wrap-intro {
  --column-gap: 70px;
  --row-gap: 0px;
}
#about--exterior .wrap-intro .item-img {
  position: relative;
}
#about--exterior .wrap-intro .item-img::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  left: -4vw;
  top: -4vw;
}
#about--exterior .wrap-intro .item-text {
  margin-top: 20px;
}
#about--exterior .wrap-intro .item-text p {
  color: #fff;
}

/* about--works
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--works {
  background: var(--pattern__texture__a_w);
}
#about--works .cont-works .list-works {
  --num: 1;
  --column-gap: 0px;
  --row-gap: 10vw;
}
#about--works .cont-works .list-works-item .ttl05 {
  order: 2;
  text-align: center;
  padding: 15px;
  background: var(--col--txt-01);
}
#about--works .cont-works .list-works-item .ttl05 .ja {
  font-size: var(--font-size-24);
  color: #fff;
}
#about--works .cont-works .list-works-item .item-img {
  order: 1;
  width: 100%;
}
#about--works .cont-works .list-works-item .item-img img {
  width: 100%;
  max-width: unset;
}


/* about--movie
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--movie {
  background: #111;
}

#about--movie .ttl03 {}

#about--movie .wrap-movie {
  flex-direction: column;
  gap: 15vw;
}

#about--movie .wrap-movie .block-movie {
  gap: 5vw;
}

#about--movie .wrap-movie .block-movie .ttl04 {
  order: 1;
}

#about--movie .wrap-movie .block-movie .ttl04 .ja {
  font-size: var(--font-size-30);
  color: #fff;
  font-weight: 700;
}

#about--movie .wrap-movie .block-movie video {
  order: 2;
  width: 100%;
  height: 120vw;
}


/* environment
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* environment-feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#environment--feature {
  position: relative;
  z-index: 0;
  background: var(--separate__shape_b__tl), url(../img/environment/environment__feature__bg_img_01.png) bottom center/100% auto no-repeat, var(--pattern__texture__a_k);
}
#environment--feature .wrap-feature {
  --column-gap: 60px;
  --row-gap: 0px;
}
#environment--feature .wrap-feature .item-img {
  position: relative;
  margin-bottom: 10vw;
}
#environment--feature .wrap-feature .list-feature {
  margin-top: 30px;
}
#environment--feature .wrap-feature .list-feature-item {
  padding-bottom: var(--margin-40);
  border-bottom: 2px solid #fff;
  margin-bottom: var(--margin-80);
}
#environment--feature .wrap-feature .list-feature-item .ttl04 {
  width: 100%;
  position: relative;
  margin-bottom: var(--margin-20);
}
#environment--feature .wrap-feature .list-feature-item .ttl04 .num {
  z-index: -1;
  position: absolute;
  right: -5vw;
  top: -5vw;
  width: 20vw;
}
#environment--feature .wrap-feature .list-feature-item .ttl04 .ja {
  font-size: var(--font-size-30);
  font-weight: 900;
  line-height: 1.8;
  font-style: italic;
  color: #fff;
}
#environment--feature .wrap-feature .list-feature-item .item-text p {
  color: #fff;
}

/* environment-merit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#environment--merit {
  background: var(--pattern__texture__a_k);
}
#environment--merit .wrap-merit .list-merit-item {
  background: var(--pattern__texture__a_w);
  padding: 5vw;
  margin-bottom: var(--margin-30);
  position: relative;
  flex-direction: column;
  margin-bottom: 8vw;
}
#environment--merit .wrap-merit .list-merit-item .ttl05 {
  width: 100%;
  padding-bottom: var(--margin-30);
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: var(--margin-30);
}
#environment--merit .wrap-merit .list-merit-item .ttl05 .ja {
  display: inline-block;
  font-size: var(--font-size-35);
  font-weight: 800;
  font-style: italic;
}
#environment--merit .wrap-merit .list-merit-item .ttl05 .ja::first-letter {
  color: var(--col--main-02);
}
#environment--merit .wrap-merit .list-merit-item .item-text {
  width: 100%;
}
/* environment-area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#environment--area {
  background: var(--separate__shape_b__tl), url(../img/environment/environment__area__bg_img_01.png) center bottom/100% auto no-repeat, var(--pattern__texture__a_w);
}
#environment--area .wrap-area .item-text {
  margin-top: 5vw;
}
#environment--area .wrap-area .item-text p .str-01 {
  background: var(--col--main-01);
  color: #fff;
  padding: 0 3px;
}

/* environment-staff
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#environment--staff {
  background: var(--pattern__texture__a_k);
}
#environment--staff .cont-staff .post-staff {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--margin-60);
}
#environment--staff .cont-staff .post-staff:last-child {
  margin-bottom: 0;
}
#environment--staff .cont-staff .post-staff .ttl05 {
  width: 100%;
  margin-right: auto;
  padding: 2vw;
  background: var(--pattern__texture__a_w);
  margin-bottom: var(--margin-50);
}
#environment--staff .cont-staff .post-staff .ttl05 .ja {
  font-size: var(--font-size-25);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--col--main-01);
}
#environment--staff .cont-staff .post-staff .item-img {
  position: relative;
  margin-bottom: 4vw;
  width: 100%;
  height: 60vw;
}
#environment--staff .cont-staff .post-staff .item-carrier {
  width: 100%;
  margin-right: auto;
  border-bottom: 1px solid var(--col--main-01);
  padding-bottom: var(--margin-20);
  margin-bottom: var(--margin-20);
  color: #fff;
  line-height: 1.8;
  flex-direction: column;
  align-items: start;
}
#environment--staff .cont-staff .post-staff .item-carrier dt {
  width: 100%;
  border-bottom: 1px solid #fff;
  padding-bottom: 2vw;
  margin-bottom: 2vw;
}
#environment--staff .cont-staff .post-staff .item-carrier dd {
  flex: 1;
}
#environment--staff .cont-staff .post-staff .item-text {
  width: 100%;
  margin-right: auto;
}
#environment--staff .cont-staff .post-staff .item-text p {
  color: #fff;
}

/* carrier
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* carrier-incomes
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#carrier--incomes {
  background: var(--separate__shape_b__tl), url(../img/carrier/carrier__incomes__bg_img_01.png) left bottom/80vw no-repeat, var(--pattern__texture__a_k);
}
#carrier--incomes .wrap-example .list-example {
  --num: 1;
  --column-gap: 0;
  --row-gap: 5vw;
}
#carrier--incomes .wrap-example .list-example-item {
  background: var(--pattern__texture__a_w);
  padding: 5vw;
  width: 100%;
}
#carrier--incomes .wrap-example .list-example-item .ttl04 {
  background: #111111;
  padding: 2vw 0;
  text-align: center;
  margin-bottom: var(--margin-25);
}
#carrier--incomes .wrap-example .list-example-item .ttl04 .ja {
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  font-size: var(--font-size-25);
}


#carrier--incomes .wrap-example .list-example-item .text {
  text-align: center;

  p {
    font-size: var(--font-size-25);
    font-weight: 900;
    margin-bottom: 0;
    line-height: 1.6;
  }

  .price {
    font-size: var(--font-size-35);
    color: #0f3777;
    font-weight: 900;

    .unit {
      color: var(--col--txt-01);
      font-size: var(--font-size-25);
    }
  }

  .bonus {
    font-weight: 900;
  }
}

#carrier--incomes .wrap-example > small{
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  font-size: var(--font-size-16);
  margin: var(--margin-40) 0;
}



/* carrier-step
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#carrier--step {
  background: var(--pattern__texture__a_w);
}
#carrier--step .wrap-step .list-step-item {
  padding: 5vw;
  background: url(../img/carrier/carrier__step__deco_point.png) left top no-repeat, var(--col--txt-01);
  position: relative;
  margin-bottom: var(--margin-40);
  flex-direction: column;
}
#carrier--step .wrap-step .list-step-item:last-child {
  margin-bottom: 0;
}
#carrier--step .wrap-step .list-step-item .ttl05 {
  position: relative;
  width: 100%;
  padding-bottom: 5vw;
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: 5vw;
}
#carrier--step .wrap-step .list-step-item .ttl05 .ja {
  display: inline-block;
  font-size: var(--font-size-35);
  font-weight: 800;
  color: #fff;
  font-style: italic;
}
#carrier--step .wrap-step .list-step-item .ttl05 .ja small {
  font-size: var(--font-size-25);
}
#carrier--step .wrap-step .list-step-item .ttl05 .ja::first-letter {
  color: var(--col--acc-01);
}
#carrier--step .wrap-step .list-step-item .item-text {
  width: 100%;
}
#carrier--step .wrap-step .list-step-item .item-text p {
  color: #fff;
}

/* recruit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* recruit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit {
  background: var(--separate__shape_b__tl), var(--pattern__texture__a_k);
}
#recruit .block-post {
  background: var(--pattern__texture__a_w);
  padding: 5vw;
  margin-bottom: var(--margin-50);
}
#recruit .block-post:last-child {
  margin-bottom: 0;
}
#recruit .block-post .ttl04 {
  background: var(--col--txt-01);
  padding: 5vw;
  text-align: center;
  margin-bottom: var(--margin-30);
}
#recruit .block-post .ttl04 .ja {
  color: #fff;
  font-size: var(--font-size-25);
  font-weight: 800;
}
/* recruit--flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--flow {
  background: var(--pattern__texture__a_w);
}
#recruit--flow .list-flow-item {
  margin-bottom: 8vw;
  padding: 5vw;
  border: 1px solid var(--col--txt-01);
  position: relative;
  flex-direction: column;
}
#recruit--flow .list-flow-item:last-child {
  margin-bottom: 0;
}
#recruit--flow .list-flow-item .ttl04 {
  width: 100%;
  padding-bottom: 5vw;
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: 5vw;
}
#recruit--flow .list-flow-item .ttl04 .num {
  position: absolute;
  left: -5vw;
  top: -10vw;
}
#recruit--flow .list-flow-item .ttl04 .num img {
  height: 17vw;
}
#recruit--flow .list-flow-item .ttl04 .ja {
  font-size: var(--font-size-35);
  font-weight: 800;
  font-style: italic;
  position: relative;
  display: inline-block;
}
#recruit--flow .list-flow-item .ttl04 .ja::first-letter {
  color: var(--col--main-02);
}
#recruit--flow .list-flow-item .item-text {
  position: relative;
  width: 100%;
}/*# sourceMappingURL=style_sp.css.map */