@charset "UTF-8";
@import url("../css/setting.css");
/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定 */
  --def-font-size: var(--font-size-15);
  --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.05em;
  /* 文章(p)の設定 */
  --def-p-lh: calc(30/15);
  --def-p-margin: var(--margin-20);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* 各セクションinboxのデフォルトpadding */
  --def-inbox: 120px 0;
}

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;
  font-size: var(--font-size-40);
  font-family: var(--fot--Noto-Serif);
  letter-spacing: 0.15em;
}
.com--ttl03-01 .en {
  display: block;
  width: fit-content;
  font-family: var(--fot--Mrs-Saint);
  rotate: -10deg;
  font-size: 120px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.3;
}
.com--ttl03-01 .en b {
  font-weight: inherit;
  font-size: 140px;
}

.ttl03-gradi-01 {
  background: linear-gradient(90deg, #05adff 0%, #cbe8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* ボタン
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* 共通ボタン：フォルム */
.com--btn-01 {
  position: relative;
  --width: 180px;
  --height: 50px;
  --font-size: 15px;
  --color: inherit;
  --background: unset;
  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-blue {
  --color: var(--col--main-01);
  --background: #fff;
  border: 1px solid var(--col--main-01);
  transition: ease 0.2s;
}
.btn-color-blue:hover {
  background: var(--col--main-01);
  --color:#fff;
}

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

/* 電話番号
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--tel {
  --font-size: var(--font-size-25);
  --color: inherit;
  width: fit-content;
  font-family: var(--fot--Noto-Serif);
  gap: 8px;
  margin-bottom: 5px;
}
.com--tel .tel-num {
  margin: 0 auto;
  width: fit-content;
  display: block;
  font-size: var(--font-size);
  color: var(--color);
  letter-spacing: 0.05em;
}
.com--tel .tel-num small {
  font-size: var(--font-size);
  color: var(--color);
}
.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: 13px;
  --color: var(--col--txt-01);
  --background: inherit;
  color: var(--color);
  font-size: var(--font-size);
  background: var(--background);
  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: 15px;
}
.com--times dt {
  position: relative;
  width: fit-content;
  font-size: var(--font-size-dt);
  color: var(--color-dt);
  background: var(--background-dt);
}
.com--times dt::before {
  content: "/";
  position: absolute;
  top: 50%;
  right: -2px;
  translate: 100% -50%;
}
.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;
  margin-right: 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 {
  width: 100%;
  height: 100px;
  min-width: 1280px;
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#header .header-wrap .cont-left {
  width: fit-content;
  padding-left: 20px;
}
#header .header-wrap .item-logo {
  transition: ease 0.2s;
}
#header .header-wrap .item-logo:hover {
  opacity: 0.55;
}
#header .header-wrap .cont-right {
  width: fit-content;
  padding-right: var(--margin-10);
}
@media screen and (max-width: 767px) {
  #header .header-wrap .cont-right {
    display: none;
  }
}
#header .header-wrap .unit-cont {
  width: fit-content;
  margin-bottom: var(--margin-10);
}
#header .header-wrap .unit-cont .unit-info {
  width: fit-content;
  position: relative;
  margin-right: var(--margin-20);
}
#header .header-wrap .unit-cont .unit-info::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__tel__a_01.png) center center/contain no-repeat;
  width: 30px;
  height: 50px;
  left: -40px;
}
#header .header-wrap .unit-cont .com--btn-01 {
  --width:180px ;
}
#header .header-wrap #nav .unit-nav-list {
  gap: 40px;
}
#header .header-wrap #nav .unit-nav-list-item a {
  overflow: hidden;
  position: relative;
  transition: ease 0.2s;
  display: inline-block;
  padding-bottom: 6px;
}
#header .header-wrap #nav .unit-nav-list-item a::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid var(--col--main-01);
  left: 0;
  width: 100%;
  bottom: 0;
  translate: -100% 0;
  transition: ease 0.2s;
}
#header .header-wrap #nav .unit-nav-list-item a:hover {
  color: var(--col--main-01);
  opacity: 0.6;
}
#header .header-wrap #nav .unit-nav-list-item a:hover::before {
  content: "";
  position: absolute;
  border-bottom: 1px solid var(--col--main-01);
  translate: 0 0;
}

#mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 850px;
  background: url(../img/mv/mv__chara.png) right 530px bottom no-repeat, url(../img/mv/mv__img.png) right center no-repeat, url(../img/mv/mv__bg_img.png) center top/100% auto no-repeat;
}
#mv .mv-catch .main {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
#mv .mv-catch .main::before {
  content: "";
  position: absolute;
  background: url(../img/mv/mv__logo.png) center center/contain no-repeat;
  width: 218px;
  height: 235px;
  right: 215px;
  top: -170px;
}
#mv .mv-catch .main span {
  display: block;
  padding: 25px 50px;
  font-size: var(--font-size-50);
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(90deg, #0070ed 0%, #05adff 100%);
  margin-bottom: 10px;
  font-family: var(--fot--Noto-Serif);
  width: fit-content;
}
#mv .mv-catch .main span strong {
  color: var(--col--acc-02);
}
#mv .mv-catch .list {
  gap: 30px;
  margin-left: 30px;
}
#mv .mv-catch .list-item {
  width: 200px;
  height: 200px;
  border: 1px solid;
  border-image: linear-gradient(90deg, #0070ed 0%, #05adff 100%);
  border-image-slice: 1;
  background: #fff;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-30);
  color: var(--col--main-01);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}

#sv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 380px;
  background: #fff;
}
#sv .sv-img {
  position: relative;
  width: 1280px;
  height: 380px;
}
#sv .sv-img .sv-catch {
  position: absolute;
  width: fit-content;
  left: clamp(-170px, -50vw + 600px, 0px);
  padding: 30px 100px;
  font-size: 50px;
  letter-spacing: 0.1em;
  color: #fff;
  font-family: var(--fot--Noto-Serif);
  background: linear-gradient(90deg, #0070ed 0%, #05adff 100%);
}

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

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

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

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

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

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

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

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

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

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

/* TOP トップページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* recommend
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--recommend {
  position: relative;
  overflow: hidden;
  background: url(../img/common/bg__img_01.jpg) bottom center/contain no-repeat;
}
#top--recommend .inbox {
  padding: 150px 0;
}
#top--recommend .ttl03 {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: var(--margin-100);
}
#top--recommend .ttl03 .en {
  position: absolute;
  left: -250px;
  bottom: -20px;
}
#top--recommend .cont-recommend .unit-list {
  gap: 50px 30px;
}
#top--recommend .cont-recommend .unit-list-item {
  position: relative;
  width: 340px;
  height: 170px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(49, 49, 49, 0.1);
  text-align: center;
  font-size: var(--font-size-25);
  font-weight: 400;
  font-family: var(--fot--Noto-Serif);
  line-height: 1.6;
}
#top--recommend .cont-recommend .unit-list-item::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__check__a_01.png) center center/contain no-repeat;
  width: 36px;
  height: 30px;
  top: -10px;
  left: 50%;
  translate: -50% 0;
}

/* person
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--person {
  overflow: hidden;
  position: relative;
  background: url(../img/common/bg__img_02.jpg) center left no-repeat;
}
#top--person::before {
  content: "";
  position: absolute;
  background: url(../img/common/chara__a_01.png) center center/contain no-repeat;
  width: 396px;
  height: 550px;
  left: calc(50vw - 700px);
  bottom: 0;
}
#top--person .inbox {
  padding: 180px 0 150px;
}
#top--person .ttl03 {
  position: relative;
  width: fit-content;
  margin-right: auto;
  margin-bottom: var(--margin-60);
  margin-left: 110px;
}
#top--person .ttl03 .en {
  position: absolute;
  left: -110px;
  bottom: -20px;
}
#top--person .ttl03 .ja {
  color: #fff;
}
#top--person .cont-person .unit-list-item {
  position: relative;
  background: #fff;
  width: 675px;
  height: 85px;
  margin-bottom: var(--margin-10);
  box-shadow: 0px 0px 30px 0px rgba(49, 49, 49, 0.1);
}
#top--person .cont-person .unit-list-item .num {
  position: absolute;
  font-size: var(--font-size-20);
  font-family: var(--fot--Noto-Serif);
  color: var(--col--main-01);
  font-weight: 400;
  left: 10px;
  top: 10px;
}
#top--person .cont-person .unit-list-item .num::before {
  content: "";
  position: absolute;
  rotate: -45deg;
  width: 40px;
  height: 1px;
  border-bottom: 1px solid var(--col--main-01);
  right: -24px;
  bottom: -3px;
}
#top--person .cont-person .unit-list-item .icon {
  margin-left: var(--margin-60);
}
#top--person .cont-person .unit-list-item .ja {
  margin-left: var(--margin-20);
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-30);
}
#top--person .cont-person .unit-list-item .ja strong {
  color: var(--col--acc-01);
}
#top--person .cont-person .unit-list-item:nth-of-type(1) {
  margin-left: 260px;
}
#top--person .cont-person .unit-list-item:nth-of-type(2) {
  margin-left: 310px;
}
#top--person .cont-person .unit-list-item:nth-of-type(3) {
  margin-left: 360px;
}
#top--person .cont-person .unit-list-item:nth-of-type(4) {
  margin-left: 410px;
}

/* greeting
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--greeting {
  overflow: hidden;
  position: relative;
  background: url(../img/common/bg__img_03.jpg) center center/cover no-repeat;
}
#top--greeting::before {
  content: "";
  position: absolute;
  background: url(../img/common/chara__b_01.png) center center/cover no-repeat;
  width: 434px;
  height: 612px;
  right: calc(50vw - 740px);
  bottom: 0;
}
#top--greeting .inbox {
  padding: 150px 0 100px;
}
#top--greeting .ttl03 {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  margin-bottom: var(--margin-60);
}
#top--greeting .ttl03 .en {
  position: absolute;
  left: -165px;
  bottom: -30px;
  opacity: 0.3;
}
#top--greeting .ttl03 .ja {
  color: #fff;
}
#top--greeting .cont-greeting {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  text-align: center;
}

/* recruit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--recruit {
  overflow: hidden;
  z-index: 0;
  position: relative;
  min-height: 570px;
}
#top--recruit .inbox {
  position: relative;
}
#top--recruit .wrap {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #0070ed 0%, #05adff 100%);
  left: -40vw;
  top: 0;
  padding: 150px 0 100px;
  padding-left: 40vw;
  padding-right: 280px;
  height: 510px;
}
#top--recruit .wrap::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__a_01.jpg) center center/contain no-repeat;
  width: 270px;
  height: 200px;
  left: calc(50vw - 320px);
  top: 70px;
}
#top--recruit .ttl03 {
  position: relative;
  width: fit-content;
  margin-bottom: var(--margin-60);
}
#top--recruit .ttl03 .en {
  z-index: -1;
  position: absolute;
  width: 320px;
  right: -210px;
  bottom: -50px;
}
#top--recruit .ttl03 .ja {
  color: #fff;
}
#top--recruit .ttl03 .ja em {
  color: var(--col--acc-02);
}
#top--recruit .item-text {
  width: 500px;
}
#top--recruit .item-text p {
  color: #fff;
}
#top--recruit .item-img {
  position: absolute;
  right: 250px;
  top: 100px;
  translate: 100% 0;
}
/* subpages
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--subpages {
  position: relative;
  overflow: hidden;
  background: url(../img/common/pattern__dot__a_01.png);
}
#top--subpages .inbox {
  position: relative;
  z-index: 0;
  padding: 150px 0 210px;
  gap: 120px 80px;
}
#top--subpages .cont-bnr {
  top: 0;
  position: relative;
  width: 500px;
  height: 300px;
  transition: ease 0.2s;
}
#top--subpages .cont-bnr a {
  position: relative;
  width: 100%;
  height: 100%;
}
#top--subpages .cont-bnr::before {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: -10px;
  bottom: -10px;
  background: var(--col--acc-02);
  transition: ease .2s;
}
#top--subpages .cont-bnr .ttl03 {
  position: relative;
  width: 170px;
  height: 170px;
  background: var(--col--main-01);
  left: 20px;
  bottom: -60px;
  transition: ease 0.2s;
}
#top--subpages .cont-bnr .ttl03 .ja {
  color: #fff;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-25);
  letter-spacing: 0.05em;
}
#top--subpages .cont-bnr .item-btn {
  position: absolute;
  font-size: var(--font-size-15);
  letter-spacing: 0.15em;
  color: var(--col--main-01);
  padding-right: 30px;
  border-bottom: 1px solid var(--col--main-01);
  padding-bottom: var(--margin-10);
  right: 0;
  bottom: -60px;
  transition: ease 0.2s;
}
#top--subpages .cont-bnr .item-btn::before {
  content: "";
  position: absolute;
  width: 20px;
  border-bottom: 1px solid var(--col--main-01);
  rotate: 45deg;
  right: -2px;
  bottom: 6px;
}
#top--subpages .cont-bnr:hover {
  top: -3px;
}
#top--subpages .cont-bnr:hover::before {
  right: 0;
  bottom: 0;
}
#top--subpages .cont-bnr:hover .ttl03 {
  background: #fff;
}
#top--subpages .cont-bnr:hover .ttl03 .ja {
  color: var(--col--main-01);
}
#top--subpages .cont-bnr:hover .item-btn {
  padding-right: 60px;
}
#top--subpages .cont-works {
  background: url(../img/top/top__subpages__img_01.jpg) center center/cover no-repeat;
}
#top--subpages .cont-about {
  background: url(../img/top/top__subpages__img_02.jpg) center center/cover no-repeat;
}
#top--subpages .cont-recruit {
  background: url(../img/top/top__subpages__img_03.jpg) center center/cover no-repeat;
}
#top--subpages .cont-company {
  background: url(../img/top/top__subpages__img_04.jpg) center center/cover no-repeat;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--contact {
  position: relative;
  overflow: hidden;
  background: url(../img/common/bg__img_04.jpg) center center/cover no-repeat;
}
#top--contact .inbox {
  padding: 150px 0;
}
#top--contact .ttl03 {
  z-index: 0;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  margin-bottom: var(--margin-80);
}
#top--contact .ttl03::before {
  content: "";
  position: absolute;
  height: 30px;
  border-right: 1px solid var(--col--acc-02);
  bottom: -50px;
  left: 50%;
  translate: -50% 0;
}
#top--contact .ttl03 .en {
  z-index: -1;
  opacity: 0.4;
  color: #fff;
  position: absolute;
  left: -265px;
  bottom: -35px;
  width: 700px;
}
#top--contact .item-text {
  text-align: center;
  margin-bottom: var(--margin-60);
}
#top--contact .com--btn-01 {
  --width: 300px;
  margin: 0 auto;
}

/* news
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#top--news {
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
  min-height: 440px;
}
#top--news .inbox {
  position: relative;
  padding: 150px 0 100px;
}
#top--news .ttl03 {
  left: 0;
  top: 150px;
  z-index: 0;
  position: absolute;
}
#top--news .ttl03 .en {
  z-index: -1;
  position: absolute;
  left: -85px;
  bottom: 15px;
  width: 700px;
  font-size: 100px;
  background: linear-gradient(45deg, #05adff 0%, #fff 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#top--news .ttl03 .en b {
  font-size: 110px;
}
#top--news .cont-latest {
  width: 580px;
  margin-left: auto;
}
#top--news .unit-latest {
  margin-bottom: var(--margin-30);
  border-bottom: 1px solid rgba(49, 49, 49, 0.3);
  padding-bottom: var(--margin-30);
  transition: ease 0.2s;
}
#top--news .unit-latest:last-child {
  margin-bottom: 0;
  border-bottom: unset;
}
#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: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--margin-10);
}
#top--news .unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  color: var(--col--main-01);
  font-size: var(--font-size-15);
  font-weight: 700;
  padding-left: var(--margin-20);
  font-family: var(--fot--Noto-Serif);
  margin-bottom: var(--margin-10);
}
#top--news .unit-latest .item-time::before {
  --width: 10px;
  --height: 10px;
  --color: var(--col--main-01);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color);
  border-width: calc((var(--width)) / 2) 0px calc((var(--width)) / 2) var(--height);
}
#top--news .unit-latest .tag_list {
  order: 3;
  width: 100%;
  justify-content: end;
}
#top--news .unit-latest .tag_list-item {
  color: var(--col--acc-01);
  font-size: var(--font-size-13);
  margin-right: 10px;
  border-right: 1px solid var(--col--acc-01);
  padding-right: 10px;
  width: fit-content;
  height: fit-content;
}
#top--news .unit-latest .tag_list-item:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: unset;
}
#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.6;
  color: var(--col--main-01);
}
#top--news .com--btn-01 {
  position: absolute;
  top: 300px;
  left: 20px;
  background: unset;
  --width: 300px;
}
#top--news .com--btn-01:hover {
  background: var(--col--main-01);
}

/* footer フッター
////////////////////////////////////////////////////////////////////////////////////////////////// */
#footer {
  background: url(../img/common/bg__img_05.jpg) center center/cover no-repeat;
  border-top: 1px solid var(--col--main-01);
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
#footer .item-logo {
  display: block;
  width: fit-content;
  margin-bottom: var(--margin-30);
  transition: ease 0.2s;
}
#footer .item-logo:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #footer .cont-left {
    width: 100%;
  }
}
#footer .cont-left .item-address {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #footer .cont-right {
    width: 100%;
  }
}
#footer .unit-info {
  position: relative;
  width: fit-content;
  margin-bottom: var(--margin-60);
  margin-left: auto;
}
#footer .unit-info::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon__tel__a_01.png) center center/contain no-repeat;
  width: 30px;
  height: 50px;
  left: -40px;
}
#footer .ft-nav-list {
  width: fit-content;
  margin-bottom: var(--margin-60);
  gap: var(--margin-30);
}
#footer .ft-nav-list-item {
  width: fit-content;
}
#footer .ft-nav-list-item a {
  transition: ease 0.2s;
}
#footer .ft-nav-list-item a:hover {
  color: var(--col--main-01);
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #footer .ft-nav-list {
    display: none;
  }
}
#footer #copyright {
  font-size: var(--font-size-13);
  text-align: center;
  margin-left: auto;
  width: fit-content;
  color: var(--col--main-01);
}
#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
////////////////////////////////////////////////////////////////////////////////////////////////// */
.com--ttl03-02 {
  z-index: 0;
  position: relative;
  width: fit-content;
}
.com--ttl03-02 .en {
  z-index: -1;
  position: absolute;
  display: inline-block;
  font-family: var(--fot--Mrs-Saint);
  font-size: 60px;
  rotate: -10deg;
  line-height: 1.2;
  left: 0;
  top: 0;
}
.com--ttl03-02 .en b {
  font-weight: inherit;
  font-size: 90px;
}
.com--ttl03-02 .ja {
  display: inline-block;
  width: fit-content;
  font-size: var(--font-size-40);
  color: var(--col--main-01);
  letter-spacing: 0.15em;
  font-family: var(--fot--Noto-Serif);
}

.com--ttl03-03 {
  gap: 10px;
  margin-bottom: var(--margin-60);
}
.com--ttl03-03 .en {
  font-weight: 200;
  font-size: var(--font-size-24);
  font-family: var(--fot--Noto-Serif);
  background: linear-gradient(90deg, #05adff 40%, #cbe8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
.com--ttl03-03 .ja {
  font-size: var(--font-size-40);
  letter-spacing: 0.15em;
  font-family: var(--fot--Noto-Serif);
  color: #1db7ff;
}

.ttl-gradi-02 .en {
  background: linear-gradient(100deg, #05adff 0%, #cbe8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.com--ttl-bg-01 {
  background: url(../img/common/ttl_bg__a_01.png) left center/contain no-repeat, url(../img/common/ttl_bg__a_02.png) right center/contain no-repeat, linear-gradient(90deg, #04a6fd 0%, #84e4f2 100%);
}

/* works
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* electrical
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#works--electrical {
  overflow: hidden;
  position: relative;
}
#works--electrical .inbox {
  padding: 100px 0 300px;
}
#works--electrical .ttl03 {
  margin-top: 80px;
  position: relative;
  margin-bottom: var(--margin-50);
}
#works--electrical .ttl03 .en {
  left: -140px;
  top: -90px;
}
#works--electrical .item-img {
  position: absolute;
  right: clamp(-270px, 50vw - 900px ,0px);
  top: 80px;
}
#works--electrical .item-img::before {
  content: "";
  position: absolute;
  background: url(../img/common/chara__a_01.png) center center/contain no-repeat;
  width: 396px;
  height: 550px;
  left: -170px;
  bottom: -210px;
}
#works--electrical .item-img::after {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgb(0, 112, 237) 0%, rgb(5, 173, 255) 100%);
  width: 450px;
  height: 260px;
  left: -100px;
  bottom: -75px;
}
#works--electrical .item-text {
  width: 440px;
}

/* supported
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#works--supported {
  background: #fafafa;
}
#works--supported .cont-about {
  margin-bottom: var(--margin-80);
}
#works--supported .cont-about .ttl04 {
  height: 60px;
  width: 100%;
  margin-bottom: var(--margin-40);
}
#works--supported .cont-about .ttl04 .ja {
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-30);
  color: #fff;
}
#works--supported .cont-about .unit-list {
  gap: 30px;
}
#works--supported .cont-about .unit-list-item {
  background: #fff;
  width: calc((100% - 40px) / 2);
  box-shadow: 0px 0px 30px 0px rgba(49, 49, 49, 0.1);
  padding: 30px;
}
#works--supported .cont-about .unit-list-item .ttl05 {
  order: 2;
  border-left: 1px solid var(--col--main-01);
  padding-left: 20px;
  margin-bottom: var(--margin-15);
}
#works--supported .cont-about .unit-list-item .ttl05 .ja {
  font-family: var(--fot--Noto-Serif);
  color: var(--col--main-01);
  font-size: var(--font-size-25);
  letter-spacing: 0.05em;
}
#works--supported .cont-about .unit-list-item .item-img {
  order: 1;
  margin-bottom: var(--margin-20);
}
#works--supported .cont-about .unit-list-item .item-text {
  order: 3;
}

/* about
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* feeling
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--feeling {
  background: url(../img/common/bg__img_06.jpg) left bottom no-repeat;
  position: relative;
  overflow: hidden;
}
#about--feeling .inbox {
  width: 1280px;
  position: relative;
}
#about--feeling .inbox::before {
  z-index: 1;
  content: "";
  position: absolute;
  background: url(../img/common/chara__a_01.png) center center/contain no-repeat;
  width: 396px;
  height: 550px;
  left: -160px;
  bottom: 0;
}
#about--feeling .inbox::after {
  z-index: 1;
  content: "";
  position: absolute;
  background: url(../img/common/chara__b_01.png) center center/contain no-repeat;
  width: 434px;
  height: 612px;
  right: -160px;
  bottom: 0;
}
#about--feeling .wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 100px 0 50px;
}
#about--feeling .wrap::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__b_01.png) center center/contain no-repeat;
  width: 92px;
  height: 170px;
  left: 210px;
  top: -25px;
}
#about--feeling .wrap::after {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__b_02.png) center center/contain no-repeat;
  width: 87px;
  height: 161px;
  right: 210px;
  bottom: -35px;
}
#about--feeling .ttl03 {
  margin: 0 auto;
  margin-bottom: var(--margin-50);
}
#about--feeling .ttl03 .en {
  left: -185px;
  top: -70px;
  font-size: 90px;
}
#about--feeling .item-text {
  position: relative;
  text-align: center;
  font-size: var(--font-size-18);
  letter-spacing: 0.12em;
  line-height: 2.3333333333;
}

/* feature
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--feature .cont-feature .unit-list {
  gap: 40px;
}
#about--feature .cont-feature .unit-list-item {
  width: calc((100% - 40px) / 2);
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(49, 49, 49, 0.1);
}
#about--feature .cont-feature .unit-list-item .item-img {
  order: 1;
  margin-bottom: var(--margin-20);
}
#about--feature .cont-feature .unit-list-item .item-text {
  order: 3;
  margin-right: var(--margin-30);
  margin-left: var(--margin-70);
  margin-bottom: var(--margin-20);
}
#about--feature .cont-feature .unit-list-item .ttl04 {
  order: 2;
  position: relative;
  padding-bottom: var(--margin-10);
  margin-bottom: var(--margin-20);
  width: calc(100% - 100px);
  border-bottom: 1px solid #f0f0f0;
  margin-right: var(--margin-30);
  margin-left: var(--margin-70);
  line-height: 1.6;
}
#about--feature .cont-feature .unit-list-item .ttl04 .num {
  position: absolute;
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-25);
  color: var(--col--main-01);
  left: -40px;
}
#about--feature .cont-feature .unit-list-item .ttl04 .ja {
  font-family: var(--fot--Noto-Serif);
  font-size: var(--font-size-25);
  color: var(--col--main-01);
}

/* merit
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--merit {
  position: relative;
  overflow: hidden;
  background: #fafafa;
}
#about--merit .cont-merit .unit-list-item {
  width: 520px;
  padding-bottom: var(--margin-30);
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: var(--margin-30);
}
#about--merit .cont-merit .unit-list-item .ttl04 {
  margin-bottom: var(--margin-10);
}
#about--merit .cont-merit .unit-list-item .ttl04 .num {
  position: relative;
  margin-right: 32px;
  font-size: var(--font-size-20);
  color: var(--col--acc-01);
  font-family: var(--fot--Noto-Serif);
}
#about--merit .cont-merit .unit-list-item .ttl04 .num::before {
  content: "／";
  position: absolute;
  right: -25px;
  top: 0;
}
#about--merit .cont-merit .unit-list-item .ttl04 .ja {
  color: var(--col--main-01);
  font-size: var(--font-size-20);
  font-family: var(--fot--Noto-Serif);
}
#about--merit .cont-merit .unit-list:nth-of-type(1) {
  position: relative;
  margin-bottom: 150px;
}
#about--merit .cont-merit .unit-list:nth-of-type(1) .unit-list-img {
  position: absolute;
  right: -400px;
}
#about--merit .cont-merit .unit-list:nth-of-type(1) .unit-list-item {
  margin-right: auto;
}
#about--merit .cont-merit .unit-list:nth-of-type(2) {
  position: relative;
  margin-left: auto;
  margin-bottom: 100px;
}
#about--merit .cont-merit .unit-list:nth-of-type(2) .unit-list-img {
  position: absolute;
  left: -400px;
}
#about--merit .cont-merit .unit-list:nth-of-type(2) .unit-list-item {
  margin-left: auto;
}

/* welfare
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--welfare {
  background: url(../img/common/bg__img_07.jpg) center center/cover no-repeat;
}
#about--welfare .inbox {
  width: 1280px;
}
#about--welfare .wrap {
  background: rgba(255, 255, 255, 0.8);
  padding: 70px 100px;
}
#about--welfare .ttl03 .en {
  background: linear-gradient(90deg, #ffa735 40%, #fff3cb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#about--welfare .ttl03 .ja {
  color: var(--col--acc-01);
}
#about--welfare .cont-welfare .unit-list {
  gap: 30px;
}
#about--welfare .cont-welfare .unit-list-item {
  width: calc((100% - 60px) / 3);
}
#about--welfare .cont-welfare .unit-list-item .item-img {
  order: 1;
  margin-bottom: var(--margin-20);
}
#about--welfare .cont-welfare .unit-list-item .item-text {
  order: 3;
}
#about--welfare .cont-welfare .unit-list-item .ttl04 {
  order: 2;
  width: 100%;
  background: var(--col--acc-01);
  height: 50px;
  margin-bottom: var(--margin-20);
}
#about--welfare .cont-welfare .unit-list-item .ttl04 .ja {
  font-size: var(--font-size-20);
  color: #fff;
  font-family: var(--fot--Noto-Serif);
}

/* area
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--area {
  background: url(../img/common/pattern__dot__a_01.png);
  border-bottom: 1px solid var(--col--main-01);
}
#about--area .inbox {
  position: relative;
}
#about--area .ttl03 {
  width: fit-content;
  margin: unset;
  margin-top: 130px;
  margin-right: 220px;
  margin-left: auto;
  margin-bottom: var(--margin-50);
}
#about--area .item-img {
  position: absolute;
  top: 100px;
  left: -60px;
}
#about--area .item-text {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-left: auto;
  padding: 40px 50px;
  background: #fff;
  box-shadow: 0px 0px 30px 0px rgba(49, 49, 49, 0.1);
  text-align: center;
  font-size: var(--font-size-18);
  line-height: 2.1666666667;
  margin-bottom: 170px;
}

/* career
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#about--career .cont-career .unit-list {
  position: relative;
  width: 990px;
  margin-left: auto;
}
#about--career .cont-career .unit-list::before {
  content: "";
  position: absolute;
  height: calc(100% - 20px);
  width: 20px;
  left: -40px;
  background: linear-gradient(0deg, #1db7ff 0%, #d5efff 100%);
}
#about--career .cont-career .unit-list::after {
  --width: 50px;
  --height: 20px;
  --color: #1db7ff;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
  left: -55px;
  border-style: solid;
  border-color: var(--color) transparent transparent transparent;
  border-width: var(--height) calc((var(--width)) / 2) 0px calc((var(--width)) / 2);
}
#about--career .cont-career .unit-list-item {
  margin-bottom: var(--margin-30);
}
#about--career .cont-career .unit-list-item:last-child {
  margin-bottom: 0;
}
#about--career .cont-career .unit-list-item .ttl04 {
  position: relative;
  padding: 20px;
  padding-left: 30px;
  width: 100%;
  background: linear-gradient(90deg, #1db7ff 0%, #b2e8ff 100%);
  margin-bottom: var(--margin-15);
}
#about--career .cont-career .unit-list-item .ttl04::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__b_03.png) center center/contain no-repeat;
  width: 87px;
  height: 87px;
  right: -20px;
  bottom: -20px;
}
#about--career .cont-career .unit-list-item .ttl04 .num {
  position: relative;
  margin-right: 50px;
  font-size: var(--font-size-25);
  color: var(--col--acc-02);
  font-family: var(--fot--Noto-Serif);
}
#about--career .cont-career .unit-list-item .ttl04 .num::before {
  content: "／";
  color: #fff;
  right: -40px;
  position: absolute;
}
#about--career .cont-career .unit-list-item .ttl04 .ja {
  font-size: var(--font-size-25);
  color: #fff;
  font-family: var(--fot--Noto-Serif);
}
#about--career .cont-career .unit-list-item .item-text {
  font-size: var(--font-size-18);
  line-height: 1.7777777778;
  padding-left: 30px;
}

/* recruit
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.com--table-01 {
  width: 100%;
}
.com--table-01 tr {
  width: 100%;
}
.com--table-01 tr th,
.com--table-01 tr td {
  line-height: 1.5;
  padding: 20px;
}
.com--table-01 tr th {
  color: var(--col--main-01);
  font-weight: 700;
  border-bottom: 1px solid var(--col--main-01);
  vertical-align: middle;
  width: 30%;
}
.com--table-01 tr td {
  border-bottom: 1px solid #ccc;
  width: 70%;
}

#recruit--about {
  position: relative;
  overflow: hidden;
}
#recruit--about .cont-info {
  margin-bottom: var(--margin-60);
}
#recruit--about .cont-info .ttl04 {
  height: 60px;
  width: 100%;
  margin-bottom: var(--margin-25);
}
#recruit--about .cont-info .ttl04 .ja {
  font-size: var(--font-size-30);
  font-family: var(--fot--Noto-Serif);
  color: #fff;
  line-height: 1.4;
}

/* contact
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#recruit--contact {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
#recruit--contact .inbox {
  padding: 0 0 120px;
}
#recruit--contact .wrap {
  position: absolute;
  background: linear-gradient(90deg, rgb(0, 112, 237) 0%, rgb(5, 173, 255) 100%);
  padding: 160px 290px 255px 420px;
  left: 0;
}
#recruit--contact .wrap .ttl03 {
  position: relative;
  margin-bottom: var(--margin-60);
}
#recruit--contact .wrap .ttl03::before {
  content: "";
  position: absolute;
  background: url(../img/common/deco__shape__a_01.png) center center/contain no-repeat;
  width: 270px;
  height: 200px;
  left: -160px;
  top: -80px;
}
#recruit--contact .wrap .ttl03 .en {
  position: absolute;
  top: -50px;
  width: 300px;
  left: 200px;
  font-size: 120px;
}
#recruit--contact .wrap .ttl03 .en b {
  font-weight: inherit;
  font-size: 140px;
}
#recruit--contact .wrap .ttl03 .ja {
  color: #fff;
}
#recruit--contact .wrap .item-img {
  position: absolute;
  right: -470px;
  top: 120px;
}
#recruit--contact .wrap .item-text p {
  font-size: var(--font-size-20);
  line-height: 1.6;
  line-height: 1.95;
  font-weight: 400;
  color: #fff;
}
#recruit--contact .wrap .item-text p b {
  border-bottom: 1px solid var(--col--acc-02);
  font-weight: inherit;
  padding-bottom: var(--margin-10);
}

/* company
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* about
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
/* access
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#company--access {
  background: linear-gradient(90deg, #0070ed 0%, #05adff 100%);
}
#company--access .ttl03 .en {
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#company--access .ttl03 .ja {
  color: #fff;
}
#company--access .cont-map {
  width: 100%;
  height: 480px;
}
#company--access .cont-map iframe {
  width: 100%;
  height: 100%;
}

/* 共通ページ
////////////////////////////////////////////////////////////////////////////////////////////////// */
/* 共通ページ 共通項目
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 共通
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#contents-u .ttl01,
#contact .ttl01 {
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--margin-60);
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 60px;
}
#contents-u .ttl01 .en,
#contact .ttl01 .en {
  font-weight: 200;
  font-size: var(--font-size-24);
  font-family: var(--fot--Noto-Serif);
  background: linear-gradient(90deg, #05adff 40%, #cbe8ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.4;
}
#contents-u .ttl01 .ja,
#contact .ttl01 .ja {
  font-size: var(--font-size-40);
  letter-spacing: 0.15em;
  font-family: var(--fot--Noto-Serif);
  color: #1db7ff;
}

/* お問い合わせ完了
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#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 {
  margin-bottom: var(--margin-30);
  border-bottom: 1px solid rgba(49, 49, 49, 0.3);
  padding-bottom: var(--margin-30);
  transition: ease 0.2s;
  width: 100%;
}
#contents-u.post .cont-latest .unit-latest:last-child {
  margin-bottom: 0;
  border-bottom: unset;
}
#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: 2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--margin-10);
}
#contents-u.post .cont-latest .unit-latest .item-time {
  position: relative;
  order: 1;
  width: fit-content;
  color: var(--col--main-01);
  font-size: var(--font-size-15);
  font-weight: 700;
  padding-left: var(--margin-20);
  font-family: var(--fot--Noto-Serif);
  margin-bottom: var(--margin-10);
}
#contents-u.post .cont-latest .unit-latest .item-time::before {
  --width: 10px;
  --height: 10px;
  --color: var(--col--main-01);
  left: 0;
  top: 50%;
  translate: 0 -50%;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color);
  border-width: calc((var(--width)) / 2) 0px calc((var(--width)) / 2) var(--height);
}
#contents-u.post .cont-latest .unit-latest .tag_list {
  order: 3;
  width: 100%;
  justify-content: end;
}
#contents-u.post .cont-latest .unit-latest .tag_list-item {
  color: var(--col--acc-01);
  font-size: var(--font-size-13);
  margin-right: 10px;
  border-right: 1px solid var(--col--acc-01);
  padding-right: 10px;
  width: fit-content;
  height: fit-content;
}
#contents-u.post .cont-latest .unit-latest .tag_list-item:last-of-type {
  margin-right: 0;
  padding-right: 0;
  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-thumb {
  height: 130px;
  width: 130px;
}
#contents-u.post .cont-latest .unit-latest:hover {
  opacity: 0.6;
  color: var(--col--main-01);
}

.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 {
  color: var(--col--acc-01);
  font-size: var(--font-size-13);
  margin-right: 10px;
  border-right: 1px solid var(--col--acc-01);
  padding-right: 10px;
  width: fit-content;
  height: fit-content;
}
#contents-u.s-post .inbox #s-post .s-post-taglist .tag-name:last-of-type {
  margin-right: 0;
  padding-right: 0;
  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 */