@charset "UTF-8";
@import url("../css/setting.css");


#lightbox {
  .lb-outerContainer {
    width: 780px !important;
    height: 640px !important;

    .lb-container {
      width: 100%;
      height: 100%;

      .lb-image {
        width: 780px !important;
        height: 640px !important;
        object-fit: contain;
      }
    }
  }
}


/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定 */
  --def-font-size: var(--font-size-16);
  --def-font-family: var(--fot--Noto-Sans);
  --def-font-color: var(--col--txt-01);
  --def-font-weight: 400;
  --def-font-lh: 1;
  --def-font-ls: 0;
  /* 文章(p)の設定 */
  --def-p-lh: calc(30/16);
  --def-p-margin: var(--margin-20);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* 各セクションinboxのデフォルトpadding */
  --def-inbox: 100px 0;
  --com-shadow: 0px 0px 10px 0px rgba(13, 13, 13, 0.5);
}

body {
  font-size: var(--def-font-size);
  font-family: var(--def-font-family);
  color: var(--def-font-color);
  font-weight: var(--def-font-weight);
  line-height: var(--def-font-lh);
  letter-spacing: var(--def-font-ls);
}

.inbox {
  width: 1080px;
  margin: 0 auto;
  padding: var(--def-inbox);
}
@media screen and (max-width: 767px) {
  .inbox {
    width: 90%;
    padding: 15vw 0;
  }
}

.com--text-01 p {
  line-height: var(--def-p-lh);
  margin-bottom: var(--def-p-margin);
}
.com--text-01 p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .com--text-01 p {
    line-height: 2;
    margin-bottom: 3.6vw;
  }
}

/* 共通パーツの設定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* タイトル
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--ttl03-01 {
  gap: 15px;
  width: fit-content;
}
.com--ttl03-01 .en {
  display: block;
  width: fit-content;
  font-size: 80px;
  letter-spacing: 0;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 14px;
}
.com--ttl03-01 .ja {
  display: block;
  width: fit-content;
  font-size: var(--font-size-20);
  letter-spacing: 0;
  font-style: italic;
}

.ttl-center {
  width: fit-content;
  margin: 0 auto;
}

/* ボタン
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通ボタン：フォルム */
.com--btn-01 {
  position: relative;
  --width: 320px;
  --height: 62px;
  --font-size: var(--font-size-16);
  --color: inherit;
  --background: inherit;
  font-weight: 500;
  width: var(--width);
  height: var(--height);
  background: var(--background);
}
.com--btn-01 a {
  width: 100%;
  height: 100%;
}
.com--btn-01 span {
  position: relative;
  font-size: var(--font-size);
  color: var(--color);
}
@media screen and (max-width: 767px) {
  .com--btn-01 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}

.com--btn-02 {
  overflow: hidden;
  z-index: 0;
  position: relative;
  --width: 320px;
  --height: 62px;
  --font-size: var(--font-size-16);
  --color: #fff;
  --background: inherit;
  font-weight: 500;
  width: var(--width);
  height: var(--height);
  background: var(--background);
}
.com--btn-02::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 600px;
  height: 100%;
  transition: ease 0.17s;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
}
.com--btn-02 a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}
.com--btn-02 span {
  position: relative;
  font-size: var(--font-size);
  color: var(--color);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}
@media screen and (max-width: 767px) {
  .com--btn-02 {
    --width: 95%;
    --height: 12.8vw;
    --font-size: 3.9vw;
    margin: 0 auto;
  }
}
.com--btn-02:hover::before {
  content: "";
  position: absolute;
  translate: -240px 0;
}
.com--btn-02:hover span {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 共通ボタン：カラーパック */
.btn-color-orange {
  --color: #fff;
  --background: var(--col--main-01);
  background: var(--background);
  border: 1px solid var(--col--main-01);
  transition: ease 0.2s;
}
.btn-color-orange span {
  transition: ease 0.2s;
  color: var(--color);
}
.btn-color-orange:hover {
  background: var(--color);
}
.btn-color-orange:hover span {
  color: var(--background);
}

.btn-color-white {
  --color: var(--col--main-01);
  --background: #fff;
  background: var(--background);
  border: 1px solid var(--col--main-01);
  transition: ease 0.2s;
}
.btn-color-white span {
  color: var(--color);
  transition: ease 0.2s;
}
.btn-color-white:hover {
  background: var(--color);
}
.btn-color-white:hover span {
  color: var(--background);
}

/* 共通ボタン：装飾パック */
.btn-arrow-01::before {
  content: "";
  position: absolute;
  width: 24px;
  border-bottom: 1px solid #fff;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  transition: ease 0.2s;
}
.btn-arrow-01:hover::before {
  border-bottom: 1px solid var(--col--main-01);
}

.btn-arrow-02::before {
  content: "";
  position: absolute;
  width: 24px;
  border-bottom: 1px solid var(--col--main-01);
  top: 50%;
  translate: 0 -50%;
  right: 20px;
  transition: ease 0.2s;
}
.btn-arrow-02:hover::before {
  border-bottom: 1px solid var(--col--main-01);
}

.btn-mail-01 span {
  position: relative;
  color: #fff;
  padding-left: var(--margin-20);
}
.btn-mail-01 span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 33px;
  height: 27px;
  left: 0;
}

.btn-mail-02 span {
  position: relative;
  color: #fff;
  padding-left: var(--margin-35);
}
.btn-mail-02 span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
  width: 23px;
  height: 18px;
  left: 0;
}

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-30);
  --color: inherit;
  --font-size-small: var(--font-size-20);
  --color-small: inherit;
  font-style: italic;
  position: relative;
  width: fit-content;
  gap: var(--margin-10);
}
.com--tel .tel-num {
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size);
  color: var(--color);
  font-weight: 600;
}
.com--tel .tel-num small {
  font-size: var(--font-size-small);
  color: var(--color-small);
}
.com--tel .com--times {
  background: #f6f6f6;
  padding: 5px 25px;
  font-style: normal;
  width: fit-content;
}
.com--tel .tel-attention {
  margin: 0 auto;
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--tel {
    --font-size: 4vw;
  }
  .com--tel .tel-num {
    font-size: 6vw;
  }
  .com--tel .tel-attention {
    height: 3vw;
  }
}

/* 営業時間 定休日
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--times {
  --font-size: var(--font-size-14);
  --color: var(--col--txt-01);
  --background: inherit;
  color: var(--color);
  font-size: var(--font-size);
  background: var(--background);
  font-weight: 500;
  width: fit-content;
  gap: 20px;
  --font-size-dt: inherit;
  --font-size-dd: inherit;
  --color-dt: inherit;
  --color-dd: inherit;
  --background-dt: inherit;
  --background-dd: inherit;
}
.com--times-item {
  width: fit-content;
  gap: 20px;
}
.com--times dt {
  width: fit-content;
  font-size: var(--font-size-dt);
  color: var(--color-dt);
  background: var(--background-dt);
}
.com--times dd {
  width: fit-content;
  font-size: var(--font-size-dd);
  color: var(--color-dd);
  background: var(--background-dd);
}

.com--white {
  --color: #fff;
  --color-dt: #fff;
  --color-dd: #fff;
  --color-small: #fff;
}

/* SNS
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--sns-list {
  width: fit-content;
  gap: 20px;
}
.com--sns-list-item {
  width: fit-content;
}

.com--line {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--line {
    width: 8.2vw;
    min-width: 29px;
  }
}

.com--instagram {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--instagram {
    width: 8.2vw;
    min-width: 29px;
  }
}

.com--facebook {
  width: fit-content;
  display: block;
}
@media screen and (max-width: 767px) {
  .com--facebook {
    width: 8.2vw;
    min-width: 29px;
  }
}

/* 固定(fixed)要素
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.fixed_bnr {
  z-index: 5;
  width: fit-content;
  display: block;
  position: absolute;
  right: 116px;
  bottom: 31px;
  transition: ease 0.2s;
}
.fixed_bnr:hover {
  bottom: 26px;
  opacity: 0.6;
}

.page_top {
  z-index: 5;
  width: fit-content;
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  transition: ease 0.2s;
}
.page_top:hover {
  opacity: 0.7;
  bottom: 8px;
}

/* 共通メッセージ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.post_none {
  font-size: 22px;
  width: fit-content;
  margin: 0 auto;
  color: #666;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .post_none {
    font-size: 4.5vw;
    padding: 7vw 0;
  }
}

.swipe_mess {
  margin: 0 auto;
  width: fit-content;
  position: relative;
  font-size: 3.6vw;
  padding-left: 6vw;
}
.swipe_mess::before {
  content: "";
  position: absolute;
  background: url(../img/common/swipe_note.png) center center/contain no-repeat;
  width: 4.2vw;
  height: 4.2vw;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

/* header グローバルヘッダー
////////////////////////////////////////////////////////////////////////////////////////////////// */
#header .header-wrap {
  z-index: 2;
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  min-width: 1280px;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .header-wrap .cont-left {
  width: fit-content;
  padding-top: var(--margin-40);
}
#header .header-wrap .item-logo {
  transition: ease 0.2s;
}
#header .header-wrap .item-logo:hover {
  opacity: 0.7;
}
#header .header-wrap .cont-right {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #header .header-wrap .cont-right {
    display: none;
  }
}
#header .header-wrap .unit-cont {
  margin-bottom: var(--margin-20);
}
#header .header-wrap .com--tel {
  --color: #fff;
  width: fit-content;
  margin-right: var(--margin-20);
}
#header .header-wrap .wrap-times {
  width: fit-content;
  margin-right: var(--margin-20);
}
#header .header-wrap .wrap-times .com--times {
  --color: #fff;
  margin-bottom: var(--margin-10);
}
#header .header-wrap .com--contact-form {
  position: relative;
  width: 164px;
  height: 75px;
  overflow: hidden;
  transition: ease 0.16s;
}
#header .header-wrap .com--contact-form::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 300px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 50%, #ffd038 100%);
  transition: ease 0.16s;
}
#header .header-wrap .com--contact-form a {
  width: 100%;
  height: 100%;
}
#header .header-wrap .com--contact-form span {
  position: relative;
  color: #fff;
  font-size: var(--font-size-16);
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 34px;
  font-style: italic;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: ease 0.16s;
}
#header .header-wrap .com--contact-form span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 33px;
  height: 27px;
  left: 50%;
  top: 0;
  translate: -50% 0;
}
#header .header-wrap .com--contact-form:hover span {
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4), 0px 0px 14px rgba(255, 255, 255, 0.4), 0px 0px 1px rgba(255, 255, 255, 0.4), 0px 0px 2px rgba(255, 255, 255, 0.4);
}
#header .header-wrap .com--contact-form:hover::before {
  translate: -100px 0;
}
#header .header-wrap #nav .unit-nav-list {
  position: relative;
  gap: 50px;
  padding: 18px 35px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
}
#header .header-wrap #nav .unit-nav-list-item a {
  position: relative;
  color: #fff;
  padding-bottom: var(--margin-10);
  letter-spacing: 0.05em;
  font-size: var(--font-size-18);
  transition: ease 0.2s;
  text-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
#header .header-wrap #nav .unit-nav-list-item a::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__c_01.png) center center/contain no-repeat;
  width: 8px;
  height: 6px;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  transition: ease 0.2s;
}
#header .header-wrap #nav .unit-nav-list-item a:hover {
  text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.4), 0px 0px 14px rgba(255, 255, 255, 0.4), 0px 0px 1px rgba(255, 255, 255, 0.4), 0px 0px 2px rgba(255, 255, 255, 0.4);
}
#header .header-wrap #nav .unit-nav-list-item a:hover::before {
  bottom: -5px;
}

#mv {
  z-index: 0;
  overflow: hidden;
  position: relative;
  height: 950px;
  background: url(../img/mv/mv__img_01.jpg) center center/cover no-repeat;
}
#mv::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__a_01.png) center center/contain no-repeat;
  width: 1920px;
  height: 84px;
  bottom: 0;
  left: 0;
}
#mv::after {
  width: 100%;
  background: var(--col--txt-01);
  top: 0;
  left: 0;
  height: 71px;
  content: "";
  position: absolute;
}
#mv .mv-catch {
  width: fit-content;
  gap: 30px;
  margin-left: 150px;
  align-items: start;
}
#mv .mv-catch .main {
  font-size: 50px;
  color: #fff;
  letter-spacing: 0;
  font-weight: 700;
  font-style: italic;
}
#mv .mv-catch .sub {
  font-style: italic;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  font-size: var(--font-size-23);
}

#sv {
  position: relative;
  height: 545px;
}
#sv::after {
  width: 100%;
  background: var(--col--txt-01);
  top: 0;
  left: 0;
  height: 71px;
  content: "";
  position: absolute;
}
#sv .sv-catch {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  margin-top: var(--margin-90);
}

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

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

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

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

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

.sv-company {
  background: url(../img/sv/sv--company.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;
}

/* TOP トップページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* TOP-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--about {
  position: relative;
  overflow: hidden;
}
#top--about .inbox {
  width: 1280px;
}
#top--about hgroup {
  background: #0d0d0d;
  padding: 80px 0 160px;
  width: 100%;
}
#top--about hgroup .en {
  font-size: 60px;
  color: #fff;
  letter-spacing: 0;
  font-style: italic;
  padding-right: 100px;
  border-right: 1px solid #fff;
  line-height: 1.5;
  margin-right: 70px;
  font-weight: 600;
}
#top--about hgroup .lead-text {
  color: #fff;
  font-style: italic;
  font-weight: 500;
  font-size: var(--font-size-25);
}
#top--about .wrap-text {
  position: relative;
  background: #fff;
  padding: 80px 100px 60px;
  box-shadow: var(--com-shadow);
  margin-top: -170px;
}
#top--about .wrap-text .item-img {
  position: absolute;
  right: -125px;
  top: -45px;
}
#top--about .wrap-text .item-text {
  margin-bottom: var(--margin-50);
}
/* service
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--service {
  position: relative;
  background: url(../img/common/bg_img__01.png) center bottom 360px/100% auto no-repeat;
}
#top--service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 360px;
  background: #000;
  bottom: 0;
  left: 0;
}
#top--service .inbox {
  padding: 140px 0 100px;
}
#top--service .ttl03 {
  margin-bottom: var(--margin-40);
}
#top--service .cont-links {
  gap: 20px;
  margin-bottom: var(--margin-70);
}
#top--service .cont-links .cont-bnr {
  overflow: hidden;
  z-index: 0;
  position: relative;
  width: 346px;
  height: 294px;
}
#top--service .cont-links .cont-bnr::before {
  z-index: 1;
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 52px;
  height: 12px;
  right: 12px;
  bottom: 20px;
}
#top--service .cont-links .cont-bnr a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
#top--service .cont-links .cont-bnr .ttl04 .num {
  position: absolute;
  right: 20px;
  top: -10px;
  color: #fff;
  opacity: 0.2;
  font-weight: 700;
  font-size: 175px;
  font-style: italic;
  line-height: 1;
  transition: ease 0.2s;
}
#top--service .cont-links .cont-bnr .ttl04 .ja {
  position: absolute;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: var(--font-size-25);
  font-style: italic;
  line-height: 1.2;
  left: var(--margin-20);
  bottom: var(--margin-40);
}
#top--service .cont-links .cont-bnr:hover .num {
  opacity: 0.3;
}
#top--service .cont-links .cont-equipment a::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__service__img_01.jpg) center center/cover no-repeat;
  background-blend-mode: normal;
  width: 100%;
  height: 100%;
  transition: ease 0.2s;
}
#top--service .cont-links .cont-equipment a::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: ease 0.25s;
}
#top--service .cont-links .cont-equipment a:hover::after {
  opacity: 0.45;
}
#top--service .cont-links .cont-equipment a:hover::before {
  scale: 1.03;
}
#top--service .cont-links .cont-maintenance a::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__service__img_02.jpg) center center/cover no-repeat;
  background-blend-mode: normal;
  width: 100%;
  height: 100%;
  transition: ease 0.2s;
}
#top--service .cont-links .cont-maintenance a::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: ease 0.25s;
}
#top--service .cont-links .cont-maintenance a:hover::after {
  opacity: 0.45;
}
#top--service .cont-links .cont-maintenance a:hover::before {
  scale: 1.03;
}
#top--service .cont-links .cont-store a::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/top/top__service__img_03.jpg) center center/cover no-repeat;
  background-blend-mode: normal;
  width: 100%;
  height: 100%;
  transition: ease 0.2s;
}
#top--service .cont-links .cont-store a::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.6;
  transition: ease 0.25s;
}
#top--service .cont-links .cont-store a:hover::after {
  opacity: 0.45;
}
#top--service .cont-links .cont-store a:hover::before {
  scale: 1.03;
}

/* case
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--case {
  background: #f6f6f6;
}
#top--case .ttl03 {
  margin-bottom: var(--margin-40);
}
#top--case .cont-example .unit-list {
  gap: var(--margin-20);
  margin-bottom: var(--margin-40);
}
#top--case .cont-example .unit-list-item {
  width: 346px;
  background: #fff;
  box-shadow: var(--com-shadow);
}
#top--case .cont-example .unit-list-item .ttl04 {
  padding: 20px;
}
#top--case .cont-example .unit-list-item .item-img{
  width: 100%;
  height: 240px;
}
#top--case .cont-example .com--btn-01 {
  margin: 0 auto;
}

/* company
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--company {
  background: url(../img/common/bg_img__02.png) right center/contain no-repeat;
}
#top--company .inbox {
  padding: 130px 0 170px;
}
#top--company .ttl03 {
  margin-left: -20px;
  margin-bottom: 75px;
}
#top--company .ttl03 .en {
  padding-right: 16px;
}
#top--company .unit-list-item {
  position: relative;
  width: 500px;
  box-shadow: var(--com-shadow);
  margin-bottom: var(--margin-25);
  background: #fff;
  right: 0;
  transition: ease 0.2s;
}
#top--company .unit-list-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px;
  padding-left: 35px;
  padding-right: 50px;
}
#top--company .unit-list-item a::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__b_01.png) center center/contain no-repeat;
  width: 9px;
  height: 15px;
  top: 50%;
  translate: 0 -50%;
  right: 20px;
}
#top--company .unit-list-item:last-child {
  margin-bottom: 0;
}
#top--company .unit-list-item .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-18);
}
#top--company .unit-list-item .ttl04 .en {
  font-size: var(--font-size-16);
  color: var(--col--main-01);
}
#top--company .unit-list-item:hover {
  opacity: 0.8;
  right: -8px;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--contact {
  background: url(../img/common/bg_img__03.jpg) center center/cover no-repeat;
}
#top--contact .ttl03 {
  margin-bottom: var(--margin-40);
}
#top--contact .ttl03 .en {
  -webkit-text-fill-color: unset;
  color: #fff;
}
#top--contact .ttl03 .ja {
  color: #fff;
}
#top--contact .cont-contact {
  background: #fff;
  padding: 45px;
  margin-bottom: var(--margin-40);
  gap: 100px;
}
#top--contact .com--btn-01 {
  margin: 0 auto;
}

/* recruit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--recruit {
  position: relative;
  overflow: hidden;
}
#top--recruit .inbox {
  padding: 180px 0 200px;
}
#top--recruit .ttl03 {
  position: relative;
  margin-bottom: 100px;
  width: 400px;
  margin-left: auto;
  margin-right: 70px;
}
#top--recruit .ttl03 .ja {
  font-weight: 700;
  font-size: var(--font-size-35);
}
#top--recruit .ttl03 .en {
  position: absolute;
  right: -350px;
  width: 880px;
  top: -50px;
  opacity: 0.6;
}
#top--recruit .item-img {
  position: absolute;
  left: calc(50vw - 724px);
  top: 90px;
}
#top--recruit .item-text {
  width: 400px;
  margin-bottom: var(--margin-70);
  text-align: center;
  margin-left: auto;
  margin-right: 70px;
}
#top--recruit .unit-btn {
  width: 360px;
  margin-left: auto;
  margin-right: 90px;
}
#top--recruit .unit-btn-item {
  margin-bottom: var(--margin-30);
}
#top--recruit .unit-btn-item .com--btn-01 {
  width: 100%;
}
#top--recruit .unit-btn-item:last-child {
  margin-bottom: 0;
}

/* TOP-NEWS お知らせ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--news {
  background: #f6f6f6;
}
#top--news .inbox {
  position: relative;
}
#top--news .ttl03 {
  margin-bottom: var(--margin-50);
}
#top--news .ttl03 .en {
  padding-right: 10px;
}
#top--news .cont-latest {
  width: 860px;
  margin: 0 auto;
}
#top--news .unit-latest {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid var(--col--txt-01);
  transition: ease 0.2s;
  right: 0;
}
#top--news .unit-latest:first-child {
  border-top: 1px solid var(--col--txt-01);
}
#top--news .unit-latest a {
  width: 100%;
  height: 100%;
}
#top--news .unit-latest .unit-latest-text {
  width: 100%;
}
#top--news .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
#top--news .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#top--news .unit-latest .item-time {
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  font-style: italic;
  color: #808080;
  margin-right: 30px;
  margin-bottom: var(--margin-20);
}
#top--news .unit-latest .tag_list {
  order: 2;
  gap: 10px 20px;
  width: 70%;
  margin-bottom: var(--margin-20);
}
#top--news .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: var(--col--main-01);
  font-size: var(--font-size-14);
  font-weight: 500;
}
#top--news .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
#top--news .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
#top--news .unit-latest:hover {
  opacity: 0.8;
  color: var(--col--main-01);
  right: -7px;
}
#top--news .com--btn-01 {
  position: absolute;
  right: 0;
  top: 100px;
}

/* map
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--map {
  width: 100%;
  height: 400px;
  min-height: 200px;
}
#top--map iframe {
  width: 100%;
  height: 100%;
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: #0d0d0d;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#footer .inbox {
  padding: 75px 0 70px;
}
#footer .item-logo {
  display: block;
  width: fit-content;
  transition: ease 0.2s;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #footer .cont-left {
    width: 100%;
  }
}
#footer .wrap-info {
  gap: 40px;
  margin-bottom: var(--margin-60);
}
#footer .wrap-info .com--address {
  width: fit-content;
  gap: 15px;
}
#footer .wrap-info .com--address-item {
  width: fit-content;
  gap: 20px;
  font-size: 12px;
}
#footer .wrap-info .com--address-item dt {
  color: #fff;
  width: fit-content;
}
#footer .wrap-info .com--address-item dd {
  color: #fff;
  width: fit-content;
}
#footer .wrap-contact {
  gap: 46px;
}
#footer .wrap-contact .com--tel {
  --color: #fff;
}
#footer .wrap-contact .com--times {
  margin: 0 auto;
  --color: #fff;
  background: unset;
  padding: unset;
}
#footer .wrap-contact .com--btn-02 {
  --width: 240px ;
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .ft-nav-list {
  width: fit-content;
  gap: 20px 40px;
  height: 155px;
  margin-top: 70px;
}
#footer .ft-nav-list-item {
  width: fit-content;
}
#footer .ft-nav-list-item a {
  overflow: hidden;
  display: inline-block;
  position: relative;
  font-size: var(--font-size-14);
  color: #fff;
  padding-bottom: 5px;
  transition: ease 0.2s;
}
#footer .ft-nav-list-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  translate: -110% 0;
  transition: ease 0.2s;
}
#footer .ft-nav-list-item a:hover {
  opacity: 0.7;
}
#footer .ft-nav-list-item a:hover::before {
  content: "";
  position: absolute;
  translate: 0 0;
}
@media screen and (max-width: 767px) {
  #footer .ft-nav-list {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: center;
  color: #fff;
  padding-bottom: var(--margin-20);
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: #fff;
  background: var(--col--main-01);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}

/* 下層 subpages
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* feature
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* strengths
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--strengths .inbox {
  padding: 130px 0;
}
#feature--strengths .ttl03 {
  margin-bottom: var(--margin-70);
}
#feature--strengths .cont-feature .unit-list-item {
  position: relative;
  min-height: 400px;
  margin-bottom: var(--margin-70);
}
#feature--strengths .cont-feature .unit-list-item:last-child {
  margin-bottom: 0;
}
#feature--strengths .cont-feature .unit-list-item .ttl04 {
  z-index: 0;
  position: relative;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: var(--margin-20);
  width: 525px;
  margin-left: auto;
}
#feature--strengths .cont-feature .unit-list-item .ttl04 .num {
  z-index: -1;
  position: absolute;
  font-size: 80px;
  opacity: 0.25;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-style: italic;
  top: -50px;
  left: -10px;
  padding: 0 10px;
}
#feature--strengths .cont-feature .unit-list-item .ttl04 .ja {
  font-weight: 700;
  font-size: var(--font-size-25);
  font-style: italic;
}
#feature--strengths .cont-feature .unit-list-item .item-img {
  position: absolute;
  left: 0;
  top: -30px;
}
#feature--strengths .cont-feature .unit-list-item .item-text {
  width: 525px;
  margin-left: auto;
}

/* strengths
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--flow {
  background: #f6f6f6;
}
#feature--flow .inbox {
  padding: 140px 0;
}
#feature--flow .ttl03 {
  margin-bottom: var(--margin-40);
}
#feature--flow .cont-flow .unit-list-item {
  position: relative;
  min-height: 280px;
  height: fit-content;
  margin-bottom: var(--margin-20);
}
#feature--flow .cont-flow .unit-list-item::before {
  content: "";
  position: absolute;
  border-right: 3px dotted var(--col--main-01);
  height: 100%;
  left: 120px;
  top: 50px;
  opacity: 0.6;
}
#feature--flow .cont-flow .unit-list-item:last-child {
  margin-bottom: 0;
}
#feature--flow .cont-flow .unit-list-item:last-child::before {
  display: none;
}
#feature--flow .cont-flow .unit-list-item .ttl04 {
  margin-bottom: var(--margin-20);
  width: 740px;
  margin-left: auto;
}
#feature--flow .cont-flow .unit-list-item .ttl04 .num {
  font-weight: 700;
  font-style: italic;
  font-size: var(--font-size-25);
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--margin-15);
  width: fit-content;
  padding: 0 7px;
}
#feature--flow .cont-flow .unit-list-item .ttl04 .ja {
  font-style: italic;
  font-weight: 700;
  font-size: var(--font-size-25);
}
#feature--flow .cont-flow .unit-list-item .item-img {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #fff;
  left: 0;
  top: 0;
}
#feature--flow .cont-flow .unit-list-item .item-text {
  width: 740px;
  margin-left: auto;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* robot
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--robot .inbox {
  padding: 130px 0;
}
#about--robot .ttl03 {
  margin-bottom: var(--margin-60);
}
#about--robot .cont-about {
  position: relative;
  min-height: 400px;
}
#about--robot .cont-about .item-img {
  position: absolute;
  right: 0;
  top: 0;
}
#about--robot .cont-about .item-text {
  width: 530px;
  margin-bottom: var(--margin-40);
}
#about--robot .cont-about .item-example {
  width: 530px;
}
#about--robot .cont-about .item-example dt {
  padding: 15px 10px;
  color: #fff;
  font-size: var(--font-size-18);
  background: var(--col--main-01);
  text-align: center;
  margin-bottom: var(--margin-20);
}
#about--robot .cont-about .item-example dd {
  font-weight: 500;
  letter-spacing: 0;
  font-size: var(--font-size-18);
}

/* maintenance
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--maintenance {
  background: #f6f6f6;
}
#about--maintenance .inbox {
  padding: 130px 0;
}
#about--maintenance .ttl03 {
  margin-bottom: var(--margin-60);
}
#about--maintenance .cont-about {
  position: relative;
  min-height: 400px;
}
#about--maintenance .cont-about .item-img {
  position: absolute;
  left: 0;
  top: 0;
}
#about--maintenance .cont-about .item-text {
  width: 530px;
  margin-left: auto;
}

/* sale
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--sale .inbox {
  padding: 130px 0;
}
#about--sale .ttl03 {
  margin-bottom: var(--margin-60);
}
#about--sale .cont-about {
  min-height: 400px;
  position: relative;
}
#about--sale .cont-about .item-img {
  position: absolute;
  right: 0;
  top: 0;
}
#about--sale .cont-about .item-text {
  width: 530px;
  margin-bottom: var(--margin-40);
}

/* sale
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* robot
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#sale--robot .ttl03 {
  margin-bottom: var(--margin-50);
}
#sale--robot .cont-tags {
  width: 100%;
  padding: 30px;
  border: 2px solid var(--col--main-01);
  margin-bottom: var(--margin-50);
}
#sale--robot .cont-tags .unit-taglist {
  gap: 20px;
}
#sale--robot .cont-tags .unit-taglist-item {
  min-height: 45px;
  min-width: 124px;
  height: fit-content;
  width: fit-content;
  color: #fff;
}
#sale--robot .cont-tags .unit-taglist-item a {
  width: 100%;
  height: 100%;
  padding: 15px 30px;
}
#sale--robot .cont-tags .unit-taglist-item:hover {
  color: var(--col--main-01);
}
#sale--robot .cont-post .unit-post {
  gap: 20px;
}
#sale--robot .cont-post .unit-post-item {
  position: relative;
  top: 0;
  width: calc((100% - 60px) / 4);
  box-shadow: var(--com-shadow);
  transition: ease 0.2s;
}
#sale--robot .cont-post .unit-post-item .ttl04 {
  padding: 20px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sale--robot .cont-post .unit-post-item .item-img {
  width: 100%;
  height: 255px;
}
#sale--robot .cont-post .unit-post-item:hover {
  opacity: 0.8;
  top: -5px;
}

/* in_post
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.sale--in_post .inbox {
  position: relative;
}
.sale--in_post .unit-taglist {
  gap: 10px 15px;
  margin-bottom: var(--margin-20);
}
.sale--in_post .unit-taglist-item {
  padding: 12px 40px;
  background: var(--col--main-01);
  color: #fff;
  font-size: var(--font-size-18);
}
.sale--in_post .ttl03 {
  margin-bottom: var(--margin-50);
}
.sale--in_post .ttl03 .ja {
  font-size: var(--font-size-23);
  letter-spacing: 0;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
}
.sale--in_post .wrap-info {
  position: relative;
  min-height: 424px;
  height: fit-content;
  margin-bottom: var(--margin-60);
}
.sale--in_post .wrap-info .item-img {
  position: absolute;
  width: 510px;
  height: 424px;
  left: 0;
  top: 0;
}
.sale--in_post .wrap-info .item-price {
  width: 520px;
  margin-left: auto;
  padding-bottom: var(--margin-10);
  border-bottom: 2px solid var(--col--main-01);
  margin-bottom: var(--margin-20);
  color: var(--col--main-01);
  font-size: var(--font-size-23);
  text-align: end;
}
.sale--in_post .wrap-info .item-text {
  width: 520px;
  margin-left: auto;
}
.sale--in_post .wrap-info .item-text p {
  font-size: var(--font-size-18);
}
.sale--in_post .unit-imglist {
  gap: 20px;
  margin-bottom: var(--margin-40);
}
.sale--in_post .unit-imglist-item {
  width: calc((100% - 60px) / 4);
  height: 255px;
}
.sale--in_post .com--btn-01 {
  margin-top: var(--margin-40);
  margin: 0 auto;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.sale--contact {
  position: relative;
  background: #f6f6f6;
}
.sale--contact .ttl03 {
  margin-bottom: var(--margin-40);
}
.sale--contact .ttl03 .en {
  font-size: var(--font-size-50);
}
.sale--contact .cont-contact {
  padding: 40px 210px;
  gap: 100px;
  background: #fff;
}
.sale--contact .cont-contact .ttl04 {
  text-align: center;
  margin-bottom: 0;
}
.sale--contact .cont-contact .ttl04 .ja {
  font-size: var(--font-size-16);
  color: var(--col--main-01);
  font-weight: 500;
}

/* works
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* robot
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#works--robot .ttl03 {
  margin-bottom: var(--margin-50);
}
#works--robot .cont-post .unit-post {
  position: relative;
  gap: 20px;
}
#works--robot .cont-post .unit-post-item {
  position: relative;
  width: calc((100% - 60px) / 4);
  box-shadow: var(--com-shadow);
  transition: ease 0.2s;
  top: 0;
}
#works--robot .cont-post .unit-post-item .ttl04 {
  padding: 20px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#works--robot .cont-post .unit-post-item .ttl04 .ja {
  font-weight: 500;
  font-size: var(--font-size-16);
}
#works--robot .cont-post .unit-post-item .item-img {
  width: 100%;
  height: 255px;
}
#works--robot .cont-post .unit-post-item:hover {
  opacity: 0.7;
  top: -5px;
}

/* in_post
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.works--in_post .ttl03 {
  padding-left: var(--margin-20);
  line-height: 1.6;
  border-left: 3px solid var(--col--main-01);
  margin-bottom: var(--margin-30);
}
.works--in_post .ttl03 .ja {
  font-size: var(--font-size-23);
  font-weight: 700;
  font-style: italic;
}
.works--in_post .wrap-info {
  position: relative;
  min-height: 424px;
  height: fit-content;
  margin-bottom: var(--margin-50);
}
.works--in_post .wrap-info .item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 510px;
  height: 424px;
}
.works--in_post .wrap-info .item-text {
  margin-bottom: var(--margin-40);
  width: 530px;
  margin-left: auto;
}
.works--in_post .wrap-info .item-text:last-child {
  margin-bottom: 0;
}
.works--in_post .wrap-info .item-text .ttl04 {
  padding-bottom: var(--margin-10);
  border-bottom: 2px solid var(--col--main-01);
  margin-bottom: var(--margin-10);
}
.works--in_post .wrap-info .item-text .ttl04 .ja {
  font-size: var(--font-size-19);
  color: var(--col--main-01);
}
.works--in_post .unit-imglist {
  gap: 20px;
  margin-bottom: var(--margin-40);
}
.works--in_post .unit-imglist-item {
  width: calc((100% - 60px) / 4);
  height: 255px;
}
.works--in_post .com--btn-01 {
  margin-top: var(--margin-40);
  margin: 0 auto;
}

/* recruit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* message
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.wrap-section-sale {
  position: relative;
  overflow: hidden;
  background: url(../img/common/bg_img__04.png) right center/contain no-repeat;
  padding: 140px 0;
}

.recruit--message {
  position: relative;
}
.recruit--message .inbox {
  position: relative;
}
.recruit--message .ttl03 {
  position: absolute;
  text-align: center;
}
.recruit--message .ttl03 .en {
  text-align: center;
  line-height: 1.1;
  margin-bottom: var(--margin-10);
}
.recruit--message .item-text .ttl04 {
  margin-bottom: var(--margin-40);
}
.recruit--message .item-text .ttl04 .ja {
  color: var(--col--main-01);
  font-style: italic;
  line-height: 1.375;
  font-weight: 700;
  font-size: var(--font-size-40);
}

#recruit--applicant .inbox {
  padding-bottom: 120px;
  border-bottom: 1px solid var(--col--main-01);
  margin-bottom: 120px;
}
#recruit--applicant .ttl03 {
  left: 0;
  top: 180px;
}
#recruit--applicant .item-text {
  width: 512px;
  margin-left: auto;
}

#recruit--president .ttl03 {
  right: 0;
  top: 50px;
}
#recruit--president .item-text {
  width: 512px;
  margin-right: auto;
}

/* info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--table-01 tr th,
.com--table-01 tr td {
  padding: 12px 20px;
  font-size: var(--font-size-18);
  border: 1px solid var(--col--main-01);
  line-height: 1.7;
}
.com--table-01 tr th {
  color: #fff;
  background: var(--col--main-01);
  border-bottom: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
  width: 20%;
}
.com--table-01 tr td {
  border-bottom: 1px solid var(--col--main-01);
  width: 80%;
  background: #fff;
}

#recruit--info {
  background: #f6f6f6;
  width: 100%;
}
#recruit--info .inbox {
  padding: 140px 0;
}
#recruit--info .ttl03 {
  margin-bottom: var(--margin-60);
}
#recruit--info .cont-post {
  width: 100%;
}
#recruit--info .cont-post .item-table {
  width: 100%;
}

/* flow
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--flow .ttl03 {
  margin-bottom: var(--margin-70);
}
#recruit--flow .cont-flow .unit-list {
  gap: 21px;
}
#recruit--flow .cont-flow .unit-list-item {
  position: relative;
  width: calc((100% - 42px) / 3);
}
#recruit--flow .cont-flow .unit-list-item::before {
  --width: 12px;
  --height: 10px;
  --color: #000;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -15px;
  top: 30px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color);
  border-width: calc((var(--width)) / 2) 0px calc((var(--width)) / 2) var(--height);
}
#recruit--flow .cont-flow .unit-list-item:last-child::before {
  display: none;
}
#recruit--flow .cont-flow .unit-list-item .ttl04 {
  position: relative;
  background: var(--col--main-01);
  padding: 25px 100px;
  text-align: center;
  margin-bottom: var(--margin-15);
}
#recruit--flow .cont-flow .unit-list-item .ttl04 .num {
  position: absolute;
  left: 0;
  top: 2px;
  translate: 0 -100%;
  font-size: var(--font-size-35);
  color: var(--col--main-01);
  font-weight: 700;
  font-style: italic;
}
#recruit--flow .cont-flow .unit-list-item .ttl04 .ja {
  color: #fff;
  font-size: var(--font-size-23);
  font-weight: 500;
  font-style: italic;
}
#recruit--flow .cont-flow .unit-list-item .item-text {
  text-align: center;
}
#recruit--flow .cont-flow .unit-list-item .com--btn-02 {
  margin: 0 auto;
  --width: 260px;
}

/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--greeting {
  background: url(../img/common/bg_img__01.png) center bottom/100% auto no-repeat;
}
#company--greeting .inbox {
  padding: 140px 0;
}
#company--greeting hgroup {
  margin-bottom: var(--margin-50);
}
#company--greeting hgroup .ttl03 {
  margin-bottom: var(--margin-50);
}
#company--greeting hgroup .lead-text {
  text-align: center;
  color: var(--col--main-01);
  font-size: var(--font-size-23);
  font-weight: 700;
  line-height: 1.5217391304;
}
#company--greeting .item-text {
  text-align: center;
}
#company--greeting .item-text .sign {
  color: var(--col--main-01);
  font-size: var(--font-size-20);
  font-weight: 700;
}

/* information
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--information {
  background: #f6f6f6;
}
#company--information .inbox {
  padding: 140px 0;
}
#company--information .ttl03 {
  margin-bottom: var(--margin-60);
}
#company--information .item-table {
  margin: 0 auto;
  width: 870px;
}

/* access
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--access .inbox {
  padding: 140px 0;
}
#company--access .ttl03 {
  margin-bottom: var(--margin-60);
}
#company--access .cont-access .unit {
  margin-bottom: var(--margin-60);
}
#company--access .cont-access .unit:last-child {
  margin-bottom: 0;
}
#company--access .cont-access .unit .ttl04 {
  padding-left: var(--margin-10);
  border-left: 4px solid var(--col--main-01);
  margin-bottom: var(--margin-15);
}
#company--access .cont-access .unit .ttl04 .ja {
  font-size: var(--font-size-20);
  font-weight: 700;
  line-height: 1.7;
  color: var(--col--main-01);
}
#company--access .cont-access .unit .item-map {
  width: 100%;
  height: 280px;
}
#company--access .cont-access .unit .item-map iframe {
  width: 100%;
  height: 100%;
}

/* maker
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--maker {
  background: #f6f6f6;
}
#company--maker .ttl03 {
  margin-bottom: var(--margin-60);
}
#company--maker .cont-maker .unit-list {
  gap: 21px;
}
#company--maker .cont-maker .unit-list-item {
  width: calc((100% - 42px) / 3);
}
#company--maker .cont-maker .unit-list-item .ttl04 {
  background: var(--col--main-01);
  padding: 15px;
  margin-bottom: var(--margin-20);
  text-align: center;
}
#company--maker .cont-maker .unit-list-item .ttl04 .ja {
  color: #fff;
  font-size: var(--font-size-20);
  font-weight: 700;
}
#company--maker .cont-maker .unit-list-item .list-item {
  font-size: var(--font-size-18);
  line-height: 1.8;
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u .ttl01,
#contact .ttl01 {
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 60px;
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  display: block;
  width: fit-content;
  font-size: 80px;
  letter-spacing: 0;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(90deg, #ff2b00 0%, #ff8000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 14px;
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  display: block;
  width: fit-content;
  font-size: var(--font-size-20);
  letter-spacing: 0;
  font-style: italic;
}

/* お問い合わせ完了
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.complete .complete-box {
  text-align: center;
  line-height: 1.7;
}
#contents-u.complete .complete-box a {
  color: var(--col--main-01);
}

/* ページが見つかりません
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.notfound {
  text-align: center;
  line-height: 1.6;
}
#contents-u.notfound a {
  color: var(--col--main-01);
}

/* プライバシーポリシー
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.privacy .ttl02 {
  position: relative;
  font-size: 24px;
  color: var(--col--main-01);
  padding-left: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
}
#contents-u.privacy .ttl02::before {
  content: "";
  position: absolute;
  border-left: 2px solid var(--col--main-01);
  width: fit-content;
  height: 100%;
  left: 0;
}
#contents-u.privacy p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
#contents-u.privacy ul {
  margin-top: 10px;
  margin-bottom: 10px;
}
#contents-u.privacy ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  #contents-u.privacy .ttl02 {
    position: relative;
    font-size: 4.6vw;
    color: var(--col--main-01);
    padding-left: 13px;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
  }
  #contents-u.privacy .ttl02::before {
    content: "";
    position: absolute;
    border-left: 2px solid var(--col--main-01);
    width: fit-content;
    height: 100%;
    left: 0;
  }
  #contents-u.privacy p {
    font-size: 4vw;
    font-weight: 400;
    line-height: 2;
  }
  #contents-u.privacy ul {
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
  #contents-u.privacy ul li {
    font-size: 4vw;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 5px;
  }
}

/* お問い合わせ
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td,
#contact table tr th {
  font-size: var(--font-size-15);
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
}
#contact table tr th {
  width: 30%;
  color: #fff;
  background: var(--col--main-01);
}
#contact table tr td {
  width: 70%;
  background: #fff;
}
#contact table .required-mark {
  color: var(--col--main-01);
  font-size: 13px;
  border-radius: 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td,
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
  }
  #contact table tr th {
    width: 100%;
    color: #fff;
    background: var(--col--main-01);
  }
  #contact table tr td {
    width: 100%;
    background: #fff;
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--col--main-01);
    font-size: 3.5vw;
    border-radius: 0;
    background: #fff;
  }
}
#contact label[for=agree] a {
  color: var(--col--main-01);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--col--main-01);
}
#contact .contact-btn.contact-submits-wrap button[type=button] {
  border: unset;
  background: var(--col--main-01);
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover {
  opacity: 0.6;
}
#contact input[type=button],
#contact input[type=submit] {
  color: #fff;
  background: var(--col--main-01);
  font-size: 16px;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  #contact input[type=button],
  #contact input[type=submit] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact input[type=button]:hover,
#contact input[type=submit]:hover {
  opacity: 0.7;
}
#contact button[type=button] {
  color: #fff;
  background: var(--col--main-01);
  font-size: 16px;
  margin: 0 4px;
  padding: 1em 2em;
  cursor: pointer;
  border: unset;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact button[type=button] :hover {
  opacity: 0.7;
}
#contact input[type=button][disabled],
#contact input[type=submit][disabled] {
  color: #777;
  opacity: 0.7;
  background: #ccc;
}

/* お知らせ一覧
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.post .cont-latest .unit-latest {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid var(--col--txt-01);
  transition: ease 0.2s;
  right: 0;
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest:first-child {
  border-top: 1px solid var(--col--txt-01);
}
#contents-u.post .cont-latest .unit-latest a {
  width: 100%;
  height: 100%;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text {
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
#contents-u.post .cont-latest .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#contents-u.post .cont-latest .unit-latest .item-time {
  order: 1;
  width: fit-content;
  font-size: var(--font-size-16);
  font-style: italic;
  color: #808080;
  margin-right: 30px;
  margin-bottom: var(--margin-20);
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 2;
  gap: 10px 20px;
  width: 70%;
  margin-bottom: var(--margin-20);
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  color: var(--col--main-01);
  font-size: var(--font-size-14);
  font-weight: 500;
}
#contents-u.post .cont-latest .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
#contents-u.post .cont-latest .unit-latest .item-thumb {
  height: 130px;
  width: 130px;
}
#contents-u.post .cont-latest .unit-latest:hover {
  opacity: 0.8;
  color: var(--col--main-01);
  right: -7px;
}

.tag-select-box {
  border: unset;
}
.tag-select-box #tag-select {
  border-bottom: unset;
  background: #fff;
  font-size: 13px;
}

/* お知らせ個別記事
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u.s-post .inbox #s-post .s-post-taglist {
  gap: 10px 15px;
}
@media screen and (max-width: 767px) {
  #contents-u.s-post .inbox #s-post .s-post-taglist {
    gap: 1vw 3vw;
  }
}
#contents-u.s-post .inbox #s-post .s-post-taglist .tag-name {
  width: fit-content;
  height: fit-content;
  color: var(--col--main-01);
  font-size: var(--font-size-14);
  font-weight: 500;
}
#contents-u.s-post .inbox #s-post .s-post-ttl {
  margin: unset;
  position: relative;
  font-size: 24px;
  color: var(--col--main-01);
  padding-left: 13px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}
#contents-u.s-post .inbox #s-post .s-post-ttl::before {
  content: "";
  position: absolute;
  border-left: 2px solid var(--col--main-01);
  width: fit-content;
  height: 100%;
  left: 0;
}
#contents-u.s-post .inbox #s-post .post-txt .sb-post-body p {
  font-size: 16px;
  line-height: 1.9;
}
#contents-u.s-post .inbox #s-post .post-txt .s-time-tag {
  margin-top: 50px;
}
#contents-u.s-post .page-btn :is(.left, .text-c, .right) a {
  font-size: 14px;
  color: var(--col--main-01);
}
@media screen and (max-width: 768px) {
  #contents-u.s-post .page-btn :is(.left, .text-c, .right) a {
    font-size: 3.4vw;
  }
}
#contents-u.s-post .page-btn .text-c {
  text-align: center;
}/*# sourceMappingURL=style.css.map */