<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("../css/setting.css");
/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定 */
  --def-font-size: var(--font-size-18);
  --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.04;
  /* 文章(p)の設定 */
  --def-p-lh: calc(40/18);
  --def-p-margin: var(--margin-20);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* 各セクションinboxのデフォルトpadding */
  --def-inbox: 100px 0;
}

html {
  scroll-padding-top: 130px;
}

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 .ja {
  display: block;
  width: fit-content;
}
.com--ttl03-01 .en {
  display: block;
  width: fit-content;
}

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

/* ボタン
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通ボタン：フォルム */
.com--btn-01 {
  position: relative;
  --width: 200px;
  --height: 60px;
  --font-size: var(--font-size-18);
  --color: #fff;
  --background: #000;
  width: var(--width);
  height: var(--height);
  background: var(--background);
  transition: ease 0.2s;
}
.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;
  }
}

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

.btn-color-purple-02 {
  --color: #fff;
  --background: var(--col--acc-01);
  background: var(--background);
  border: 1px solid var(--col--acc-01);
}
.btn-color-purple-02 span {
  position: relative;
  color: var(--color);
}
.btn-color-purple-02:hover {
  background: #fff;
}
.btn-color-purple-02:hover span {
  color: var(--col--acc-01);
}

.btn-color-purple-03 {
  z-index: 0;
  position: relative;
  --color: #fff;
  background: #9d538d;
}
.btn-color-purple-03::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: url(../img/common/bg__img_04_02.png) center center/cover no-repeat;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: ease 0.2s;
}
.btn-color-purple-03 span {
  position: relative;
  color: var(--color);
}
.btn-color-purple-03:hover {
  background: #9d538d;
}
.btn-color-purple-03:hover::after {
  content: "";
  position: absolute;
  opacity: 0;
}

/* 共通ボタン：カラーパック */
.btn-color-blue-01 {
  --color: #fff;
  --background: var(--col--main-01);
  background: var(--background);
  border: 1px solid var(--col--main-01);
}
.btn-color-blue-01 span {
  position: relative;
  color: var(--color);
}
.btn-color-blue-01:hover {
  background: #fff;
  opacity: 0.8;
}
.btn-color-blue-01:hover span {
  color: var(--col--main-01);
}

/* 共通ボタン：装飾パック */
.btn-arrow-01::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  translate: 100% -50%;
  transition: ease 0.2s;
}
.btn-arrow-01:hover::before {
  background: url(../img/common/icon__arrow__a_02.png) center center/contain no-repeat;
  right: 20px;
}

.btn-arrow-02::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  translate: 100% -50%;
  transition: ease 0.2s;
}
.btn-arrow-02:hover::before {
  background: url(../img/common/icon__arrow__a_04.png) center center/contain no-repeat;
  right: 20px;
}

.btn-arrow-03::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  translate: 100% -50%;
  transition: ease 0.2s;
}
.btn-arrow-03:hover::before {
  background: url(../img/common/icon__arrow__a_01.png) center center/contain no-repeat;
  right: 20px;
}

.btn-mail-01 span {
  margin-left: 12px;
}
.btn-mail-01 span::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__mail__a_01.png) center center/contain no-repeat;
  width: 18px;
  height: 13px;
  top: 56%;
  left: -5px;
  translate: -100% -50%;
  transition: ease 0.2s;
}
.btn-mail-01:hover span::before {
  background: url(../img/common/icon__mail__a_02.png) center center/contain no-repeat;
}

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-30);
  --color: #111;
  width: fit-content;
  gap: 6px;
}
.com--tel .tel-num {
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size);
  color: var(--color);
  font-weight: 700;
}
.com--tel .tel-num small {
  font-size: var(--font-size-20);
  color: var(--col--main-02);
}
.com--tel .tel-attention {
  margin: 0 auto;
  width: fit-content;
  display: block;
  margin-left: 0;
}
@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: inherit;
  --color: var(--col--txt-01);
  --background: inherit;
  color: var(--color);
  font-size: var(--font-size);
  background: var(--background);
  width: fit-content;
  gap: 0;
  --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;
}
.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;
}

/* 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: fixed;
  right: 0;
  bottom: 0;
}

.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: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: #fff;
  min-width: 1280px;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .header-wrap .cont-left {
  width: fit-content;
  padding-left: 50px;
}
#header .header-wrap .item-logo {
  transition: ease 0.2s;
  position: relative;
  top: 0;
}
#header .header-wrap .item-logo:hover {
  top: -3px;
  opacity: 0.6;
}
#header .header-wrap .cont-right {
  width: fit-content;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  #header .header-wrap .cont-right {
    display: none;
  }
}
#header .header-wrap .unit-cont {
  margin-bottom: 20px;
}
#header .header-wrap .unit-cont .com--tel {
  margin-right: 30px;
}
#header .header-wrap .unit-cont .com--contact-form {
  margin-right: 30px;
}
#header .header-wrap .unit-cont .com--contact-another {
  width: 250px;
  height: 60px;
  margin-right: 20px;
  position: relative;
  background: url(../img/common/btn_bg__img_01.jpg) center center/cover no-repeat;
  transition: ease 0.2s;
}
#header .header-wrap .unit-cont .com--contact-another::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__link__a_01.png) center center/contain no-repeat;
  width: 12px;
  height: 12px;
  top: 50%;
  translate: 0 -50%;
  right: 15px;
}
#header .header-wrap .unit-cont .com--contact-another span {
  font-size: var(--font-size-15);
  color: #fff;
  letter-spacing: 0;
  font-weight: 500;
}
#header .header-wrap .unit-cont .com--contact-another:hover {
  opacity: 0.7;
}
#header .header-wrap #nav .unit-nav-list-item {
  position: relative;
  margin-right: 20px;
  padding-right: 20px;
}
#header .header-wrap #nav .unit-nav-list-item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--col--acc-01);
  rotate: 45deg;
  right: -5px;
  top: 55%;
  translate: 0 -50%;
}
#header .header-wrap #nav .unit-nav-list-item:last-of-type {
  margin-right: 0;
}
#header .header-wrap #nav .unit-nav-list-item:last-of-type::before {
  display: none;
}
#header .header-wrap #nav .unit-nav-list-item a {
  font-weight: 500;
  transition: ease 0.15s;
}
#header .header-wrap #nav .unit-nav-list-item a:hover {
  opacity: 0.8;
  color: var(--col--acc-01);
}

#mv {
  position: relative;
  width: 100%;
  margin-top: 130px;
}
#mv .mv-catch {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

#sv {
  height: 370px;
  width: 100%;
  margin-top: 130px;
}
#sv .sv-catch {
  position: relative;
  min-width: 280px;
  width: fit-content;
  height: fit-content;
  background: var(--col--main-01);
  padding: 28px var(--margin-40);
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  font-size: var(--font-size-40);
}
#sv .sv-catch::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid #fff;
  top: 6px;
  width: 96%;
  left: 50%;
  translate: -50% 0;
}
#sv .sv-catch::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #fff;
  bottom: 6px;
  width: 96%;
  left: 50%;
  translate: -50% 0;
}

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

.sv-feature {
  background: url(../img/sv/sv--feature.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 トップページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-01 .en {
  font-size: var(--font-size-20);
  color: var(--col--main-01);
  font-weight: 700;
  font-family: var(--fot--Barlow);
  margin-bottom: var(--margin-15);
}
.com--ttl03-01 .ja {
  font-size: var(--font-size-40);
  font-weight: 700;
}

/* TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━　*/
/* greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--greeting {
  background: url(../img/common/bg__img_01.jpg) center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
#top--greeting .inbox {
  padding: 160px 0 160px;
}
#top--greeting .ttl03 {
  margin-bottom: 30px;
}
#top--greeting .ttl03 .main {
  display: block;
  font-size: var(--font-size-40);
  font-weight: 700;
  margin-bottom: var(--margin-20);
}
#top--greeting .ttl03 .main .em-color-purple {
  position: relative;
  color: var(--col--acc-01);
}
#top--greeting .ttl03 .main .em-color-purple::before {
  content: "";
  position: absolute;
  background: url(../img/common/border__dot__a_01.png) left center/35px repeat-x;
  width: 44px;
  height: 8px;
  left: 20px;
  top: -4px;
}
#top--greeting .ttl03 .sub {
  display: inline-block;
  color: #fff;
  width: fit-content;
  padding: 8px 12px;
  background: var(--col--main-01);
  font-size: var(--font-size-30);
  padding-bottom: 10px;
  font-weight: 600;
}
#top--greeting .cont-intro {
  position: relative;
  width: fit-content;
}
#top--greeting .cont-intro .item-img {
  right: clamp(-115px, -17vw + 209px, -10px);
  top: -200px;
  position: absolute;
  translate: 100% 0;
}
#top--greeting .cont-intro .item-text p {
  font-weight: 500;
}

/* works
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--works {
  background: url(../img/common/bg__img_02.jpg) center center/cover no-repeat;
}
#top--works .ttl03 {
  width: 100%;
  margin-bottom: var(--margin-70);
}
#top--works .ttl03 .ja {
  width: 100%;
  display: flex;
  gap: var(--margin-30);
}
#top--works .ttl03 .ja::before {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}
#top--works .ttl03 .ja::after {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}
#top--works .cont-works .unit-list {
  margin-bottom: var(--margin-50);
  gap: 60px;
}
#top--works .cont-works .unit-list-item {
  width: calc((100% - 60px) / 2);
  background: #fff;
  position: relative;
  top: 0;
  transition: ease 0.2s;
}
#top--works .cont-works .unit-list-item a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: var(--margin-35);
}
#top--works .cont-works .unit-list-item a::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_03.png) center center/contain no-repeat;
  width: 16px;
  height: 17px;
  right: 22px;
  bottom: 50px;
  transition: ease 0.2s;
}
#top--works .cont-works .unit-list-item .ttl04 {
  position: relative;
  order: 2;
  margin-top: -35px;
}
#top--works .cont-works .unit-list-item .ttl04 .num {
  width: 60px;
  font-weight: 700;
  height: 60px;
  background: var(--col--acc-01);
  border-radius: 50%;
  color: #fff;
  font-family: var(--fot--Barlow);
  font-size: var(--font-size-40);
  margin-bottom: var(--margin-20);
}
#top--works .cont-works .unit-list-item .ttl04 .ja {
  font-weight: 700;
  color: var(--col--main-02);
  font-size: var(--font-size-30);
  margin-bottom: var(--margin-10);
}
#top--works .cont-works .unit-list-item .ttl04 .en {
  color: #ccc;
  font-size: var(--font-size-15);
  font-weight: 700;
}
#top--works .cont-works .unit-list-item .item-img {
  order: 1;
}
#top--works .cont-works .unit-list-item:hover {
  opacity: 0.8;
  top: -3px;
}
#top--works .cont-works .unit-list-item:hover a::before {
  background: url(../img/common/icon__arrow__a_03.png) center center/contain no-repeat;
  right: 15px;
}
#top--works .cont-works .com--btn-01 {
  margin: 0 auto;
}

/* reason
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--reason .inbox {
  position: relative;
  padding: 100px 0 50px;
}
#top--reason .ttl03 {
  margin-bottom: var(--margin-50);
}
#top--reason .cont-reason .unit-list {
  gap: 30px;
}
#top--reason .cont-reason .unit-list .unit-list-item {
  position: relative;
  top: 0;
  width: calc((100% - 60px) / 3);
  transition: ease 0.2s;
}
#top--reason .cont-reason .unit-list .unit-list-item a {
  width: 100%;
  height: 100%;
}
#top--reason .cont-reason .unit-list .unit-list-item .item-img {
  order: 1;
}
#top--reason .cont-reason .unit-list .unit-list-item .ttl04 {
  order: 2;
  position: relative;
  margin-top: -60px;
  width: 300px;
  min-height: 80px;
  height: fit-content;
  background: url(../img/common/bg__img_04.png) center center/cover no-repeat;
  margin-left: -40px;
  margin-bottom: var(--margin-10);
}
#top--reason .cont-reason .unit-list .unit-list-item .ttl04 .ja {
  position: relative;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  font-size: var(--font-size-20);
  padding-left: 40px;
}
#top--reason .cont-reason .unit-list .unit-list-item .ttl04 .ja::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 33px;
  translate: -100% -50%;
}
#top--reason .cont-reason .unit-list .unit-list-item .item-text {
  order: 3;
  min-height: 96px;
  height: fit-content;
  margin-bottom: var(--margin-10);
}
#top--reason .cont-reason .unit-list .unit-list-item .item-text p {
  font-weight: 500;
  line-height: 1.6666666667;
}
#top--reason .cont-reason .unit-list .unit-list-item .item-btn {
  position: relative;
  order: 4;
  width: 100%;
  height: 50px;
  border: 1px solid #111;
}
#top--reason .cont-reason .unit-list .unit-list-item .item-btn span {
  font-weight: 500;
}
#top--reason .cont-reason .unit-list .unit-list-item .item-btn::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__arrow__a_03.png) center center/contain no-repeat;
  width: 16px;
  height: 17px;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  transition: ease 0.2s;
}
#top--reason .cont-reason .unit-list .unit-list-item:hover {
  opacity: 0.8;
  top: -3px;
}
#top--reason .cont-reason .unit-list .unit-list-item:hover .item-btn::before {
  right: 5px;
}
#top--reason .com--btn-01 {
  position: absolute;
  right: 0;
  top: 100px;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--contact .inbox {
  padding: 50px 0 100px;
}
#top--contact .cont-wrap {
  z-index: 0;
  padding: 60px;
  padding-top: 100px;
  position: relative;
  background: url(../img/common/bg__img_03.png) center center/cover no-repeat;
}
#top--contact .cont-wrap .ttl03 {
  z-index: -1;
  position: absolute;
  width: fit-content;
  left: 50%;
  top: 40px;
  translate: -50% 0;
}
#top--contact .cont-wrap .ttl03 .en {
  font-style: italic;
  font-family: var(--fot--Barlow);
  font-size: 130px;
  letter-spacing: 0;
  color: #1545a5;
  font-weight: 800;
}
#top--contact .cont-wrap .lead-text {
  margin-bottom: var(--margin-30);
}
#top--contact .cont-wrap .lead-text p {
  color: #fff;
  font-size: var(--font-size-25);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
#top--contact .cont-wrap .lead-text p span {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}
#top--contact .cont-wrap .unit-contact {
  width: 100%;
  width: 740px;
  margin: 0 auto;
  padding: 20px 30px;
  background: #fff;
  gap: 30px;
}
#top--contact .cont-wrap .unit-contact .com--tel .tel-num {
  font-size: var(--font-size-40);
}
#top--contact .cont-wrap .unit-contact .com--tel .tel-num small {
  font-size: var(--font-size-24);
}

/* news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--news {
  background: var(--col--base-01);
  min-height: 500px;
}
#top--news .inbox {
  position: relative;
}
#top--news .inbox .ttl03 {
  position: absolute;
  left: 0;
  width: fit-content;
  top: 120px;
}
#top--news .inbox .ttl03 .en {
  margin-bottom: 5px;
}
#top--news .inbox .cont-latest {
  width: 800px;
  margin-left: auto;
}
#top--news .inbox .unit-latest {
  position: relative;
  right: 0;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-20);
  transition: ease 0.2s;
}
#top--news .inbox .unit-latest:first-of-type {
  padding-top: var(--margin-20);
  border-top: 1px solid #ccc;
}
#top--news .inbox .unit-latest a {
  position: relative;
  width: 100%;
}
#top--news .inbox .unit-latest .unit-latest-text {
  width: 100%;
}
#top--news .inbox .unit-latest .unit-latest-text.on_thumb {
  width: 85%;
}
#top--news .inbox .unit-latest .item-ttl {
  order: 3;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-15);
}
#top--news .inbox .unit-latest .item-time {
  order: 1;
  color: #fff;
  padding: 5px 8px;
  height: fit-content;
  background: var(--col--main-01);
  width: fit-content;
  margin-right: 10px;
  margin-bottom: var(--margin-10);
  border: 1px solid var(--col--main-01);
  font-size: var(--font-size-15);
  transition: ease 0.2s;
}
#top--news .inbox .unit-latest .tag_list {
  order: 2;
  width: 70%;
  margin-bottom: var(--margin-10);
}
#top--news .inbox .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-size: var(--font-size-15);
  padding-right: 10px;
  border-right: 1px solid #111;
  margin-right: 10px;
}
#top--news .inbox .unit-latest .tag_list-item:last-of-type {
  border-right: unset;
}
#top--news .inbox .unit-latest .unit-latest-img {
  height: 130px;
  width: 130px;
  margin-right: 30px;
}
#top--news .inbox .unit-latest .item-thum {
  height: 130px;
  width: 130px;
}
#top--news .inbox .unit-latest:hover {
  color: var(--col--main-02);
  opacity: 0.8;
  right: -5px;
}
#top--news .inbox .unit-latest:hover .item-time {
  background: unset;
  color: var(--col--main-02);
}
#top--news .inbox .com--btn-01 {
  position: absolute;
  left: 0;
  top: 240px;
}

/* atmosphere
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--atmosphere .inbox {
  width: 100%;
}
.com--atmosphere .cont-post {
  margin-bottom: var(--margin-50);
}
.com--atmosphere .cont-post .unit-post {
  gap: clamp(17px, 5vw - 47px, 40px);
}
.com--atmosphere .cont-post .unit-post-item {
  width: clamp(180px, 18vw - 70px, 250px);
  height: clamp(180px, 18vw - 70px, 250px);
  transition: ease 0.2s;
}
.com--atmosphere .cont-post .unit-post-item:hover {
  opacity: 0.8;
}
.com--atmosphere .com--btn-01 {
  margin: 0 auto;
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: var(--col--main-01);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#footer .inbox {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  #footer .inbox {
    flex-wrap: wrap;
  }
}
#footer .item-logo {
  position: relative;
  top: 0;
  display: block;
  width: fit-content;
  transition: ease 0.2s;
  margin-bottom: var(--margin-30);
}
#footer .item-logo:hover {
  top: -3px;
}
@media screen and (max-width: 767px) {
  #footer .cont-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .unit-contact {
  gap: 30px;
  margin-bottom: var(--margin-50);
}
#footer .unit-contact .com--tel {
  --color:#fff;
}
#footer .unit-contact .com--tel small {
  color: #fff;
}
#footer .unit-ft-nav {
  margin-bottom: var(--margin-10);
}
#footer .unit-ft-nav-item {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #fff;
  padding-bottom: 6px;
}
#footer .unit-ft-nav-item a {
  color: #fff;
  transition: ease 0.2s;
  font-size: var(--font-size-15);
}
#footer .unit-ft-nav-item a:hover {
  opacity: 0.6;
}
#footer .unit-ft-nav-item:first-of-type {
  padding-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  #footer .unit-ft-nav {
    display: none;
  }
}
#footer .unit-other-pages-item {
  margin-right: 15px;
}
#footer .unit-other-pages-item a {
  color: #fff;
  font-size: var(--font-size-13);
  transition: ease 0.2s;
}
#footer .unit-other-pages-item a:hover {
  opacity: 0.7;
}
#footer .ft-nav-list {
  width: fit-content;
}
#footer .ft-nav-list-item {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  #footer .ft-nav-list {
    display: none;
  }
}
#footer #copyright {
  color: #fff;
  font-size: var(--font-size-13);
  text-align: center;
  padding-bottom: var(--margin-60);
}
#footer #copyright a {
  margin: 0 2px;
  padding: 0 5px;
  transition: ease 0.12s;
}
#footer #copyright a:hover {
  color: var(--col--main-01);
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  #footer #copyright a {
    margin: unset;
    padding: unset;
  }
  #footer #copyright a:hover {
    color: inherit;
    background: inherit;
  }
}

/* 下層 subpages
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-02 {
  text-align: center;
  margin-bottom: var(--margin-50);
}
.com--ttl03-02 .ja {
  font-size: var(--font-size-40);
  font-weight: 700;
}
.com--ttl03-02 .ja .em-colo-purple {
  color: var(--col--acc-01);
}
.com--ttl03-02 .ja .em-color-blue {
  color: var(--col--main-02);
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* works
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--works {
  background: url(../img/common/pattern__dot__a_01.png) repeat;
}
#about--works .inbox {
  width: 1280px;
}
#about--works .cont-works {
  position: relative;
  background: var(--col--base-01);
  padding: 60px 100px;
  margin-bottom: var(--margin-60);
}
#about--works .cont-works .ttl04 {
  position: relative;
  width: 600px;
  margin-bottom: var(--margin-25);
}
#about--works .cont-works .ttl04 .ja {
  font-size: var(--font-size-30);
  color: var(--col--main-02);
  font-weight: 700;
  gap: 20px;
}
#about--works .cont-works .ttl04 .ja::after {
  content: "";
  position: relative;
  flex: 1;
  border-bottom: 1px solid #111;
}
#about--works .cont-works &gt; .item-img {
  position: absolute;
  top: 60px;
  right: 100px;
}
#about--works .cont-works .item-text {
  width: 630px;
  min-height: 320px;
  height: fit-content;
}
#about--works .cont-works .item-text p {
  font-weight: 500;
  line-height: 1.9444444444;
}
#about--works .cont-works .unit-record {
  padding: 30px;
  background: #fff;
}
#about--works .cont-works .unit-record .ttl05 {
  width: 100%;
  background: var(--col--acc-01);
  text-align: center;
  padding: 12px 0;
  margin-bottom: var(--margin-20);
}
#about--works .cont-works .unit-record .ttl05 .ja {
  position: relative;
  font-weight: 700;
  color: #fff;
  font-size: var(--font-size-25);
}
#about--works .cont-works .unit-record .unit-list {
  gap: 30px;
}
#about--works .cont-works .unit-record .unit-list-item {
  width: 350px;
}
#about--works .cont-works .unit-record .unit-list-item .ttl06 {
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  padding: 10px;
  text-align: center;
  width: 100%;
}
#about--works .cont-works .unit-record .unit-list-item .ttl06 .ja {
  position: relative;
  font-size: var(--font-size-20);
  font-weight: 700;
}
#about--works .cont-works .unit-record .unit-list-item .ttl06 .ja::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--col--main-02);
  rotate: 45deg;
  top: 50%;
  left: -10px;
  translate: -100% -50%;
}
#about--works .cont-works .unit-record .unit-list-item .ttl06 .ja::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--col--main-02);
  rotate: 45deg;
  top: 50%;
  right: -10px;
  translate: 100% -50%;
}
#about--works .cont-works .unit-record .unit-list-item .item-img {
  margin-bottom: var(--margin-20);
}

/* feature
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* philosophy
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--philosophy {
  background: url(../img/common/pattern__dot__a_01.png);
}
#feature--philosophy .cont-about {
  padding: 60px;
  background: #e5e9f1;
  outline: 1px solid #fff;
  outline-offset: -10px;
}
#feature--philosophy .cont-about .ttl04 {
  margin-bottom: var(--margin-15);
}
#feature--philosophy .cont-about .ttl04 .ja {
  display: flex;
  gap: 30px;
  font-size: var(--font-size-30);
  font-weight: 700;
}
#feature--philosophy .cont-about .ttl04 .ja::before {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}
#feature--philosophy .cont-about .ttl04 .ja::after {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}
#feature--philosophy .cont-about .ttl04 .ja &gt; span .em-color-purple {
  position: relative;
  color: var(--col--acc-01);
}
#feature--philosophy .cont-about .ttl04 .ja &gt; span .em-color-purple::before {
  content: "";
  position: absolute;
  background: url(../img/common/border__dot__a_01.png) left center/34px repeat-x;
  width: 57px;
  height: 15.4px;
  left: 10px;
  top: -7px;
}
#feature--philosophy .cont-about .item-text {
  text-align: center;
}

/* reason
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--reason .cont-reason .unit-list-item {
  margin-bottom: var(--margin-50);
}
#feature--reason .cont-reason .unit-list-item:last-child {
  margin-bottom: 0;
}
#feature--reason .cont-reason .unit-list-item .ttl04 {
  background: url(../img/common/bg__img_05.png) center center/cover no-repeat;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
}
#feature--reason .cont-reason .unit-list-item .ttl04 .ja {
  position: relative;
  color: #fff;
  font-size: var(--font-size-30);
  font-weight: 700;
}
#feature--reason .cont-reason .unit-list-item .ttl04 .ja::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_02.png) center center/contain no-repeat;
  width: 25px;
  height: 25px;
  top: 50%;
  left: -14px;
  translate: -100% -50%;
}
#feature--reason .cont-reason .unit-list-item &gt; .wrap {
  gap: var(--margin-30);
}
#feature--reason .cont-reason .unit-list-item &gt; .wrap .item-text p {
  line-height: 1.9444444444;
  font-weight: 500;
}
/* policy
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--policy {
  background: url(../img/common/bg__img_03.png) center center/cover no-repeat;
}
#feature--policy .inbox {
  padding: 65px 0;
}
#feature--policy .ttl03 .ja {
  color: #fff;
}
#feature--policy .cont-info {
  background: #fff;
  padding: 35px 40px;
}
#feature--policy .cont-info .lead-text {
  text-align: center;
  margin-bottom: var(--margin-20);
  font-weight: 500;
}
#feature--policy .cont-info .unit-list {
  width: 100%;
}
#feature--policy .cont-info .unit-list-item {
  width: 100%;
  margin-bottom: var(--margin-10);
  background: var(--col--base-01);
  padding: 10px 14px;
}
#feature--policy .cont-info .unit-list-item .num {
  font-family: var(--fot--Barlow);
  width: 30px;
  height: 30px;
  background: var(--col--main-01);
  color: #fff;
  font-weight: 700;
  padding-bottom: 2.5px;
  border-radius: 50%;
}
#feature--policy .cont-info .unit-list-item .text {
  font-weight: 500;
  padding-left: 7px;
  flex: 1;
}

/* security
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--security {
  background: var(--col--base-01);
}
#feature--security .ttl03 .ja {
  color: var(--col--acc-01);
}
#feature--security .lead-text {
  text-align: center;
  margin-bottom: var(--margin-40);
}
#feature--security .lead-text p{
  font-weight: 500;
  line-height: 1.8;
}
#feature--security .unit-images {
  gap: 30px;
  margin-bottom: var(--margin-40);
}
#feature--security .cont-motto .unit-list-item {
  width: 100%;
  padding-bottom: var(--margin-30);
  border-bottom: 1px solid #111;
  margin-bottom: var(--margin-30);
}
#feature--security .cont-motto .unit-list-item .ttl04 {
  margin-bottom: 7px;
  gap: 10px;
}
#feature--security .cont-motto .unit-list-item .ttl04 .num {
  width: 30px;
  height: 30px;
  background: var(--col--main-02);
  border-radius: 50%;
  color: #fff;
  font-family: var(--fot--Barlow);
  font-weight: 700;
}
#feature--security .cont-motto .unit-list-item .ttl04 .ja {
  font-size: var(--font-size-20);
  font-weight: 700;
  flex: 1;
  color: var(--col--main-02);
}
#feature--security .cont-motto .unit-list-item .item-text {
  width: 100%;
}
#feature--security .cont-motto .unit-list-item .item-text p {
  font-weight: 500;
  line-height: 1.3888888889;
}
#feature--security .cont-motto .unit-list-item:nth-of-type(1) {
  padding-top: var(--margin-30);
  border-top: 1px solid #111;
}

/* area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#feature--area {
  background: url(../img/common/pattern__dot__a_01.png);
}
#feature--area .inbox {
  position: relative;
  padding: 215px 0 100px;
}
#feature--area .ttl03 {
  width: fit-content;
  margin-right: auto;
}
#feature--area .cont-area {
  background: var(--col--base-01);
  padding: 20px;
  min-width: 510px;
  width: fit-content;
  height: fit-content;
  margin-bottom: 240px;
}
#feature--area .cont-area .ttl04 {
  background: var(--col--main-01);
  width: 100%;
  padding: 10px;
  text-align: center;
  margin-bottom: 3px;
}
#feature--area .cont-area .ttl04 .ja {
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-20);
}
#feature--area .cont-area .item-img {
  position: absolute;
  right: 0;
  top: 80px;
}
#feature--area .cont-area p {
  text-align: center;
}
#feature--area .cont-area p em {
  font-weight: 700;
  font-size: var(--font-size-20);
  line-height: 1.4;
}
#feature--area .cont-area p small {
  font-weight: 500;
  font-size: var(--font-size-16);
  display: block;
  line-height: 1.2;
}
#feature--area .cont-contact {
  position: relative;
  background: var(--col--main-01);
  outline: 1px solid #fff;
  outline-offset: -10px;
  padding: 60px 0 40px;
}
#feature--area .cont-contact .ttl04 {
  margin-bottom: var(--margin-30);
  z-index: 0;
}
#feature--area .cont-contact .ttl04 .en {
  z-index: -1;
  position: absolute;
  color: #073190;
  font-weight: 800;
  font-size: var(--font-size-60);
  letter-spacing: 0;
  font-style: italic;
  font-family: var(--fot--Barlow);
  left: 50%;
  translate: -50% 0;
  top: 25px;
}
#feature--area .cont-contact .ttl04 .ja {
  font-size: var(--font-size-25);
  font-weight: 700;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}
#feature--area .cont-contact .com--tel .tel-num {
  color: #fff;
  font-size: var(--font-size-40);
}
#feature--area .cont-contact .com--tel .tel-num small {
  font-size: var(--font-size-20);
  color: #fff;
}

/* recruit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--feature {
  background: url(../img/common/pattern__dot__a_01.png);
}
#recruit--feature .cont-intro {
  background: var(--col--base-01);
  padding: 60px;
  outline: 1px solid #fff;
  outline-offset: -10px;
  margin-bottom: var(--margin-100);
}
#recruit--feature .cont-intro .item-text .sub {
  margin-bottom: var(--margin-30);
  display: block;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-size: var(--font-size-30);
  font-weight: 700;
  padding: 10px 10px;
  background: var(--col--main-01);
}
#recruit--feature .cont-intro .item-text .main {
  font-size: var(--font-size-40);
  font-weight: 700;
}
#recruit--feature .cont-intro .item-text .main .em-color-purple {
  color: var(--col--acc-01);
  position: relative;
}
#recruit--feature .cont-intro .item-text .main .em-color-purple::before {
  content: "";
  position: absolute;
  background: url(../img/common/border__dot__a_01.png) left center/contain repeat-x;
  width: 173px;
  height: 8px;
  left: 15px;
  top: -3px;
}
#recruit--feature .cont-feature .unit-list {
  gap: 20px;
}
#recruit--feature .cont-feature .unit-list-item {
  width: calc((100% - 80px) / 5);
}
#recruit--feature .cont-feature .unit-list-item .item-img {
  margin-bottom: var(--margin-15);
}
#recruit--feature .cont-feature .unit-list-item .item-text {
  text-align: center;
  font-weight: 700;
  font-size: var(--font-size-20);
}
#recruit--feature .cont-feature .unit-list-item .item-text p {
  line-height: 1.4;
}

/* movie
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--movie {
  background: url(../img/common/pattern__line__a_01.png);
}
#recruit--movie .item-movie {
  width: 100%;
  height: 640px;
}
#recruit--movie .item-movie iframe {
  height: 100%;
  width: 100%;
}

/* comics
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--comics {
  position: relative;
}
#recruit--comics .cont-comics {
  overflow: hidden;
  margin: 0 auto;
  width: 1080px;
}
#recruit--comics .swiper-pagination {
  left: 50%;
  translate: -50% 20px;
}
#recruit--comics .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}
#recruit--comics .swiper-button-next {
  right: calc(50vw - 630px);
  top: 385px;
  background: url(../img/common/icon__arrow__b_r.png) center center/contain no-repeat;
  width: 23px;
  height: 37px;
}
#recruit--comics .swiper-button-prev {
  left: calc(50vw - 630px);
  top: 385px;
  background: url(../img/common/icon__arrow__b_l.png) center center/contain no-repeat;
  width: 23px;
  height: 37px;
}

/* info
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--info .inbox {
  background: var(--col--main-01);
  width: 1280px;
  padding: 60px 100px;
}
#recruit--info .ttl03 {
  margin-bottom: 20px;
}
#recruit--info .ttl03 .ja {
  color: #fff;
}
#recruit--info .lead-text {
  text-align: center;
  color: #fff;
  font-size: var(--font-size-20);
  margin-bottom: var(--margin-20);
}
#recruit--info .unit-info {
  gap: 30px;
}
#recruit--info .unit-info-item {
  padding: 30px;
  width: calc((100% - 60px) / 3);
  background: #fff;
}
#recruit--info .unit-info-item .ttl04 {
  background: var(--col--base-01);
  width: 100%;
  padding: 6px 0;
  text-align: center;
  margin-bottom: var(--margin-10);
}
#recruit--info .unit-info-item .ttl04 .ja {
  font-size: var(--font-size-20);
  font-weight: 700;
}
#recruit--info .unit-info-item .item {
  min-height: 150px;
  height: fit-content;
  letter-spacing: 0.1em;
}
#recruit--info .unit-info-item .item p {
  font-size: var(--font-size-30);
  font-weight: 700;
}
#recruit--info .unit-info-item .item p .em-color-purple {
  color: var(--col--acc-01);
  font-size: var(--font-size-60);
  font-family: var(--fot--Barlow);
}

/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--about .inbox {
  padding: 100px 0 50px;
}
#recruit--about .unit-btn {
  gap: 30px;
  margin-bottom: var(--margin-70);
}
#recruit--about .unit-btn .com--btn-01 {
  --width: 350px;
  --height: 60px;
  text-align: center;
}
#recruit--about .cont-info .unit-company {
  margin-bottom: var(--margin-80);
}
#recruit--about .cont-info .unit-company:last-child {
  margin-bottom: 0;
}
#recruit--about .cont-info .unit-company .ttl04 {
  margin-bottom: var(--margin-40);
}
#recruit--about .cont-info .unit-company .ttl04 .ja {
  display: flex;
  width: 100%;
  gap: 30px;
  font-size: var(--font-size-30);
  font-weight: 700;
}
#recruit--about .cont-info .unit-company .ttl04 .ja::before {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}
#recruit--about .cont-info .unit-company .ttl04 .ja::after {
  content: "";
  position: relative;
  border-bottom: 1px solid #111;
  flex: 1;
}

.com--table-01 {
  width: 100%;
}
.com--table-01 tr {
  width: 100%;
}
.com--table-01 tr th,
.com--table-01 tr td {
  padding: 15px 20px;
  line-height: 1.7;
}
.com--table-01 tr th {
  color: #fff;
  border-bottom: 1px solid #fff;
  background: var(--col--main-01);
  text-align: center;
  vertical-align: middle;
  width: 20%;
}
.com--table-01 tr td {
  background: var(--col--base-01);
  border-bottom: 1px solid var(--col--main-02);
  width: 80%;
}
.com--table-01 tr:last-of-type th, .com--table-01 tr:last-of-type td {
  border-bottom: unset;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--contact .inbox {
  padding: 50px 0 100px;
}
#recruit--contact .cont-wrap {
  z-index: 0;
  padding: 60px;
  padding-top: 120px;
  position: relative;
  background: url(../img/common/bg__img_03.png) center center/cover no-repeat;
}
#recruit--contact .cont-wrap .ttl03 {
  z-index: -1;
  position: absolute;
  width: fit-content;
  left: 50%;
  top: 40px;
  translate: -50% 0;
}
#recruit--contact .cont-wrap .ttl03 .en {
  font-style: italic;
  font-family: var(--fot--Barlow);
  font-size: 130px;
  letter-spacing: 0;
  color: #1545a5;
  font-weight: 800;
}
#recruit--contact .cont-wrap .lead-text {
  margin-bottom: var(--margin-30);
}
#recruit--contact .cont-wrap .lead-text p {
  color: #fff;
  font-size: var(--font-size-25);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
#recruit--contact .cont-wrap .lead-text p span {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}
#recruit--contact .cont-wrap .unit-contact {
  width: 100%;
  width: 740px;
  margin: 0 auto;
  padding: 20px 30px;
  background: #fff;
  gap: 30px;
}
#recruit--contact .cont-wrap .unit-contact .com--tel .tel-num {
  font-size: var(--font-size-40);
}
#recruit--contact .cont-wrap .unit-contact .com--tel .tel-num small {
  font-size: var(--font-size-24);
}

/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--info {
  background: url(../img/common/pattern__dot__a_01.png);
}
#company--info .unit-btn {
  gap: 30px;
  margin-bottom: var(--margin-70);
}
#company--info .unit-btn .com--btn-01 {
  --width: 350px;
  --height: 60px;
  text-align: center;
}
#company--info .cont-info {
  margin-bottom: var(--margin-60);
}
#company--info .cont-info:last-child {
  margin-bottom: 0;
}
#company--info .cont-info .ttl04 {
  background: var(--col--main-01);
  width: 100%;
  padding: 12px 10px;
  margin-bottom: var(--margin-30);
  text-align: center;
}
#company--info .cont-info .ttl04 .ja {
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-30);
}
#company--info .cont-info &gt; .wrap {
  gap: 30px;
  margin-bottom: var(--margin-30);
}
#company--info .cont-info &gt; .wrap .item-table {
  flex: 1;
}
#company--info .cont-info &gt; .wrap .item-table tr {
  width: 100%;
}
#company--info .cont-info &gt; .wrap .item-table tr th,
#company--info .cont-info &gt; .wrap .item-table tr td {
  font-size: var(--font-size-20);
  padding-bottom: var(--margin-10);
  border-bottom: 1px solid #111;
  padding: 15px 0;
}
#company--info .cont-info &gt; .wrap .item-table tr th {
  color: var(--col--main-01);
  font-weight: 700;
  width: 20%;
}
#company--info .cont-info &gt; .wrap .item-table tr td {
  width: 80%;
}
#company--info .cont-info .item-map {
  width: 100%;
  height: 400px;
}
#company--info .cont-info .item-map iframe {
  width: 100%;
  height: 100%;
}

/* license
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--license {
  background: var(--col--main-01);
}
#company--license .inbox {
  padding: 60px 0;
}
#company--license .ttl03 {
  margin-bottom: 30px;
}
#company--license .ttl03 .ja {
  display: flex;
  width: 100%;
  position: relative;
  gap: 30px;
  color: #fff;
}
#company--license .ttl03 .ja::before {
  content: "";
  position: relative;
  flex: 1;
  border-bottom: 1px solid #fff;
}
#company--license .ttl03 .ja::after {
  content: "";
  position: relative;
  flex: 1;
  border-bottom: 1px solid #fff;
}
#company--license .cont-license .item-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
#company--license .cont-license .item-table tr {
  width: 100%;
  background: #fff;
}
#company--license .cont-license .item-table tr th,
#company--license .cont-license .item-table tr td {
  padding: 14px 10px;
}
#company--license .cont-license .item-table tr th {
  color: var(--col--main-01);
  font-size: var(--font-size-20);
  font-weight: 700;
  width: 20%;
}
#company--license .cont-license .item-table tr td {
  width: 80%;
}

/* atmosphere
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--atmosphere .inbox {
  margin: 0 auto;
  width: min(100%, 1700px);
}
#company--atmosphere .cont-post {
  margin: 0 auto;
  width: fit-content;
}
#company--atmosphere .cont-post .unit-post {
  gap: 40px;
}
#company--atmosphere .cont-post .unit-post-item {
  width: clamp(180px, 18vw - 70px, 250px);
  transition: ease 0.2s;
}
#company--atmosphere .cont-post .unit-post-item .item-img {
  width: clamp(180px, 18vw - 70px, 250px);
  height: clamp(180px, 18vw - 70px, 250px);
  margin-bottom: var(--margin-10);
}
#company--atmosphere .cont-post .unit-post-item .ttl04 {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#company--atmosphere .cont-post .unit-post-item .ttl04 .ja {
  font-weight: 500;
}
#company--atmosphere .cont-post .unit-post-item:hover {
  opacity: 0.8;
}

.company--in_post {
  background: url(../img/common/pattern__dot__a_01.png);
}
.company--in_post .inbox .cont-wrap {
  padding: 60px;
  background: #fff;
  border: 1px solid var(--col--base-01);
  gap: 20px;
  margin-bottom: var(--margin-40);
}
.company--in_post .inbox .cont-wrap .item-img {
  width: 100%;
  height: 640px;
}
.company--in_post .inbox .cont-wrap .ttl03 {
  position: relative;
  width: 100%;
  padding: 3px;
  border-left: 3px solid var(--col--main-02);
  padding-left: 14px;
}
.company--in_post .inbox .cont-wrap .ttl03 .ja {
  font-size: var(--font-size-24);
  color: var(--col--main-02);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.company--in_post .inbox .com--btn-01 {
  --width:340px;
  --height:60px;
  margin: 0 auto;
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u,
#contact {
  background: url(../img/common/pattern__dot__a_01.png);
}
#contents-u .ttl01,
#contact .ttl01 {
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-70);
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  font-size: var(--font-size-40);
  font-weight: 700;
  color: var(--col--main-02);
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  display: none;
}

/* お問い合わせ完了
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#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;
  right: 0;
  padding-bottom: var(--margin-20);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--margin-20);
  transition: ease 0.2s;
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest:first-of-type {
  padding-top: var(--margin-20);
  border-top: 1px solid #ccc;
}
#contents-u.post .cont-latest .unit-latest a {
  position: relative;
  width: 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;
  font-size: var(--font-size-15);
}
#contents-u.post .cont-latest .unit-latest .item-time {
  order: 1;
  color: #fff;
  padding: 5px 8px;
  height: fit-content;
  background: var(--col--main-01);
  width: fit-content;
  margin-right: 10px;
  margin-bottom: var(--margin-10);
  border: 1px solid var(--col--main-01);
  font-size: var(--font-size-15);
  transition: ease 0.2s;
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 2;
  width: 70%;
  margin-bottom: var(--margin-10);
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  width: fit-content;
  height: fit-content;
  font-size: var(--font-size-15);
  padding-right: 10px;
  border-right: 1px solid #111;
  margin-right: 10px;
}
#contents-u.post .cont-latest .unit-latest .tag_list-item:last-of-type {
  border-right: unset;
}
#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-thum {
  height: 130px;
  width: 130px;
}
#contents-u.post .cont-latest .unit-latest:hover {
  color: var(--col--main-02);
  opacity: 0.8;
  right: -5px;
}
#contents-u.post .cont-latest .unit-latest:hover .item-time {
  background: unset;
  color: var(--col--main-02);
}

.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;
  font-size: var(--font-size-15);
  padding-right: 10px;
  border-right: 1px solid #111;
  margin-right: 10px;
}
#contents-u.s-post .inbox #s-post .s-post-taglist .tag-name:last-of-type {
  border-right: unset;
}
#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 */</pre></body></html>