@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

/*Flexbox */
.flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し */
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順 */
.flx-rr {
  flex-direction: row-reverse;
}

/*積み重なるように配置 */
.flx-column {
  flex-direction: column;
}

/*水平方向の揃え */
/*初期値 */
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between） */
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around） */
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え */
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え */
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え */
/*水平揃え　上揃え */
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え */
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え */
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え */
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え */
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方 */
/*初期値 */
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え */
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え */
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え */
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置 */
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/* 並び順変更 */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*pcスタイル */
.inbox {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pc-none {
  display: none;
}

.current a {
  color: var(--main-color);
}

a[href*="tel:"] {
  pointer-events: none;
}

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.3;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 12rem;
}

section {
  padding: 12rem 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2.35;
  font-weight: 700;
  font-size: 1.7rem;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 2rem;
}

.com-btn {
  display: grid;
  place-items: center;
  width: 400px;
  height: 70px;
  position: relative;
  border-radius: 0.5rem;
  border: 0.2rem solid #000;
  outline: 0.3rem solid #fff;
  outline-offset: -0.5rem;
  background: var(--accent-blue);
}
.com-btn::after {
  content: "";
  display: block;
  width: 7rem;
  height: 3rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  background: var(--accent-color);
}
.com-btn.mail-btn::after {
  content: none;
}
.com-btn.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/2rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}
.com-btn.mail-btn .line-icon {
  padding: 2rem 0;
  background: url("../img/common/line-icon.svg") left center/30px no-repeat;
  padding-left: 40px;
  box-sizing: border-box;
}

.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  display: grid;
  justify-items: center;
  margin-bottom: 5rem;
  gap: 1rem;
  font-family: var(--ttl-font);
}
.ttl01 .en {
  font-size: 2.8rem;
  text-transform: uppercase;
}
.ttl01 .ja {
  font-weight: 200;
  font-size: 5.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 5px 5px 0 #000;
}
.ttl01.txt-le {
  justify-items: start;
  text-align: left;
}
.ttl01.ft-wt .en {
  color: #fff;
}

.ttl02 {
  font-size: 3rem;
  font-family: var(--ttl-font);
  font-weight: 300;
}

.ttl03 {
  font-size: 2.5rem;
  font-family: var(--ttl-font);
  font-weight: 300;
}

.ttl04 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.ttl05 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.txt-cap {
  font-size: 1.4rem;
}

.ttl-pt {
  background: var(--pt-ora);
  border: 3px solid #000;
  box-shadow: 1rem 1rem 0 #000;
  font-size: 3.9rem;
  padding: 1rem;
}
.ttl-pt span {
  position: relative;
}
.ttl-pt span::after {
  content: "";
  display: block;
  width: 7.3rem;
  height: 5.4rem;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  right: -6rem;
  top: -4rem;
}

.skew {
  transform: skew(-20deg);
}

.skew-inbox {
  transform: skew(20deg);
}

.com-tel a {
  font-family: var(--en-font);
  font-size: 3rem;
  letter-spacing: 0.05em;
  background: url("../img/common/tel-icon.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

.box-deco {
  position: relative;
}
.box-deco::before {
  content: "";
  display: block;
  width: 7.3rem;
  height: auto;
  aspect-ratio: 0.84;
  position: absolute;
  background: url("../img/common/box-deco-le.png") center/contain no-repeat;
  left: -8rem;
  top: -6rem;
}
.box-deco::after {
  content: "";
  display: block;
  width: 7.3rem;
  height: auto;
  aspect-ratio: 1.35;
  position: absolute;
  background: url("../img/common/box-deco-ri.png") center/contain no-repeat;
  right: -6rem;
  bottom: -5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: var(--main-color);
  line-height: 1;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  background: #fff;
  border: 1px solid var(--main-color);
}

time {
  line-height: 1;
  padding: 0.5rem 1rem;
  color: #fff;
  background: var(--main-color);
  font-family: var(--en-font);
}

/*infotableスタイル*/
.com-desc-tbl {
  gap: 0.5rem;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 230px;
  padding: 1.5rem 1rem;
  display: grid;
  align-content: center;
}
.com-desc-tbl .dl-item dd {
  width: 850px;
  padding: 1.5rem 1rem;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

.map {
  height: 420px;
  margin-top: 5rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  position: fixed;
  padding: 1rem 2rem 2.5rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 1.2rem;
  margin-bottom: 1rem;
}
#header .hd-right .hd-top .mail-btn {
  width: 180px;
  height: 50px;
  outline: none;
}
#header .hd-right #nav .nav-list {
  gap: 5rem;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  position: absolute;
  background: var(--bd-color);
  transform: rotate(30deg);
  top: -0.3rem;
  right: -2.5rem;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 12rem;
  padding: 2rem 0;
  background: url(../img/top/mv-bg.png) center/cover;
}
.top-mv .mv-box {
  width: 87.5%;
  aspect-ratio: 2.625;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  z-index: 1;
  margin: 0 auto;
  border: 3.1rem solid #000;
  outline: 1rem solid var(--main-color);
  outline-offset: -2rem;
  position: relative;
  z-index: 1;
  background: url(../img/top/mv-lb.png) bottom 11% left 4.5%/25% no-repeat, var(--pt-ora);
}
.top-mv .mv-box::before {
  content: "";
  display: block;
  width: calc(100% + 2.3rem);
  height: calc(100% + 2.3rem);
  position: absolute;
  border: 0.8rem solid #fff;
  z-index: -1;
  top: -1.2rem;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 67.5%;
  margin-bottom: 5%;
}
.top-mv .mv-img-01 {
  width: 20%;
  position: absolute;
  left: -3.5rem;
  top: 7%;
}
.top-mv .mv-img-02 {
  width: 15%;
  position: absolute;
  bottom: -1.5rem;
  right: 12%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about {
  background: url(../img/top/about-bg.jpg) center/cover;
  padding: 0;
}
#top-about .inbox {
  padding: 15rem 0 18rem;
  z-index: 1;
}
#top-about .inbox .about-ttl .en {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 1080px;
}
#top-about .inbox ul {
  gap: 3rem;
}
#top-about .inbox .img-01 {
  position: absolute;
  left: -190px;
  top: 200px;
  z-index: -1;
}
#top-about .inbox .img-02 {
  position: absolute;
  bottom: 1.5rem;
  left: -320px;
  z-index: -1;
}
#top-about .inbox .img-03 {
  position: absolute;
  right: -330px;
  bottom: 5rem;
  z-index: -1;
}

#top-works {
  padding: 18rem 0;
  background: url(../img/top/work-bd-top.png) top/100% no-repeat, url(../img/top/work-bd-btm.png) bottom/100% no-repeat, var(--pt-01);
}
#top-works .ttl01 {
  gap: 2rem;
}
#top-works .ttl01 .en {
  color: var(--font-color);
}
#top-works .ttl01 .ja {
  padding-left: 5rem;
  padding-right: 9rem;
  font-size: 6rem;
  text-shadow: -4px -4px 0 #000, 4px -4px 0 #000, -4px 4px 0 #000, 4px 4px 0 #000, 7px 7px 0 #000;
  background: url(../img/top/work-deco-le.png) left top no-repeat, url(../img/top/work-deco-ri.png) bottom right no-repeat;
}
#top-works .ttl01 .ja .ft-clr01 {
  padding-bottom: 0.5rem;
  display: inline-block;
  background: linear-gradient(to top, var(--accent-yell), var(--accent-yell) 3rem, transparent 3rem, transparent);
}
#top-works .ttl01 .ttl02 {
  font-size: 3.5rem;
  font-weight: 300;
  background: var(--accent-red);
  padding: 1rem 2rem;
  transform: skew(-15deg);
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff, 3px 3px 0 #fff;
}
#top-works .ttl01 .ttl02 span {
  display: inline-block;
  transform: skew(15deg);
}
#top-works .work-box {
  width: 520px;
  padding: 3rem 0 0;
  display: grid;
  justify-items: center;
  align-content: space-between;
}
#top-works .work-box .ttl02 {
  line-height: 1.8;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
#top-works .work-box .ttl02 .bg-wt {
  padding: 0 0.3rem;
}
#top-works .work-box .ill-box {
  margin-top: auto;
  margin-bottom: -0.5rem;
}
#top-works .work-box .com-btn {
  font-family: var(--ttl-font);
  font-size: 2.5rem;
  width: 100%;
  height: 9rem;
  background: none;
  border: none;
  outline: none;
  border-top: 3px solid #000;
}
#top-recruit {
  background: url(../img/top/rec.jpg) top right calc(50% + 54rem)/auto 100% no-repeat, var(--pt-dot);
}
#top-recruit .txt-box {
  width: 550px;
  margin-left: auto;
}
#top-recruit .txt-box .ttl01 .ja {
  position: relative;
}
#top-recruit .txt-box .ttl01 .ja::after {
  content: "";
  display: block;
  width: 7.3rem;
  height: 5.4rem;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  right: -6rem;
  top: -4rem;
}
#top-recruit .com-btn {
  margin-top: 5rem;
}

#top-area {
  background: url(../img/top/area-bg.jpg) bottom/100% no-repeat, var(--pt-01);
}
#top-area .inbox {
  gap: 4rem;
  position: relative;
}
#top-area .txt-box {
  width: 495px;
  padding: 4rem 2rem;
  margin-top: 11rem;
  position: relative;
}
#top-area .txt-box .ttl02 {
  margin-bottom: 2rem;
  position: relative;
  font-size: 3.5rem;
}
#top-area .txt-box .ttl02::after {
  content: "";
  display: block;
  width: 20rem;
  height: 0.2rem;
  position: absolute;
  background: #000;
  margin: auto 0;
  inset: 0 0 0 auto;
}
#top-area .txt-box ul {
  position: static;
  gap: 0.5rem;
}
#top-area .txt-box ul li {
  font-size: 2.5rem;
  font-family: var(--sans-font);
  font-weight: 700;
  padding: 0.5rem 1.5rem;
}
#top-area .img-box {
  position: relative;
}
#top-area .img-box::after {
  content: "";
  display: block;
  width: 9rem;
  height: auto;
  aspect-ratio: 0.61;
  position: absolute;
  background: url("../img/top/area-bd.png") center/contain no-repeat;
  left: -4rem;
  top: 6rem;
}
#top-area .ill-box {
  position: absolute;
  bottom: -6rem;
  left: -10rem;
  z-index: 20;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ill-box {
  position: absolute;
  bottom: -6rem;
  left: -16rem;
}
#top-news .inbox .ttl01 {
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  width: auto;
}
#top-news .inbox .ttl01 .en {
  position: relative;
}
#top-news .inbox .ttl01 .en::after {
  content: "";
  display: block;
  width: 6rem;
  height: auto;
  aspect-ratio: 1.5;
  position: absolute;
  background: url("../img/top/news-ttl-deco.png") center/contain no-repeat;
  right: -6rem;
  top: -4rem;
}
#top-news .inbox .ttl01 .ja {
  font-size: 4.5rem;
}
#top-news .inbox .news-list {
  width: 840px;
  gap: 3rem;
}
#top-news .inbox .news-list .news-item a {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 260px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1;
}
#top-news .inbox .news-list .news-item a .com-img img {
  z-index: -1;
}
#top-news .inbox .news-list .news-item a time {
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 100;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-btn {
  position: absolute;
  bottom: 10rem;
  left: 0;
  width: 200px;
  justify-items: start;
  background: none;
  border: none;
  outline: none;
}
#top-news .inbox .news-btn::after {
  background-image: url(../img/top/news-arw.png);
}

/*------------△△---NEWS---△△---------*/
#common-contact {
  background: url(../img/common/contact-bd.png) top -0.1rem center/100% no-repeat, url(../img/common/contact-bg.jpg) center/cover;
  padding: 0;
}
#common-contact .inbox {
  padding: 14rem 0 8rem;
  display: grid;
  justify-items: center;
  position: relative;
}
#common-contact .inbox .ttl01 .en {
  font-size: 14rem;
}
#common-contact .inbox .ttl01 .ja {
  margin-top: -8rem;
  position: relative;
}
#common-contact .inbox .ttl01 .ja::before {
  content: "";
  display: block;
  width: 8.1rem;
  height: auto;
  aspect-ratio: 1.02;
  position: absolute;
  background: url("../img/common/contact-ttl-le.png") center/contain no-repeat;
  left: -8rem;
  bottom: -6rem;
}
#common-contact .inbox .ttl01 .ja::after {
  content: "";
  display: block;
  width: 7.3rem;
  height: auto;
  aspect-ratio: 1.35;
  position: absolute;
  background: url("../img/common/contact-ttl-ri.png") center/contain no-repeat;
  right: -6rem;
  bottom: -5rem;
}
#common-contact .line-btn {
  width: 400px;
  height: 80px;
  background: var(--accent-yell);
  font-size: 1.8rem;
}
#common-contact .flex {
  width: 600px;
  margin-top: 4rem;
  border-top: 2px solid #fff;
  padding-top: 4rem;
  gap: 5rem;
}
#common-contact .flex .com-tel a {
  background-image: url(../img/common/tel-icon-02.png);
}
#common-contact .flex .mail-btn {
  width: 250px;
  height: 70px;
}
#common-contact .ill-box {
  position: absolute;
  bottom: 0;
  right: -8rem;
}

.side-btn {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 10px;
}

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 8rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-add {
  background: url("../img/common/map-pin.png") left center/1.5rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-le .ft-info .dl-item {
  gap: 2rem;
}
#footer .ft-area .ft-le .ft-info dt {
  padding: 1rem;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  font-size: 1.4rem;
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item a {
  background: url("../img/common/ft-arw.png") left center/0.8rem no-repeat;
  padding-left: 1.5rem;
  box-sizing: border-box;
}
#footer .copyright {
  font-size: 1.2rem;
  padding: 2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-service {
  background: linear-gradient(to top, #03b72d, #03b72d 24rem, transparent 24rem, transparent), var(--pt-01);
}
#about-service .inbox > h4 {
  margin-top: 10rem;
  margin-bottom: 3rem;
  font-size: 3.9rem;
}
#about-service .srv-li-01 {
  gap: 4rem 0;
}
#about-service .srv-li-01 > .ttl05 {
  width: 1080px;
  padding: 1rem;
  text-align: center;
}
#about-service .srv-li-01 .bg-clr01 {
  width: 520px;
  padding: 3.5rem;
  display: grid;
  align-content: start;
  gap: 4rem;
}
#about-service .srv-li-01 .bg-clr01 .img-box {
  gap: 3rem;
}
#about-service .srv-li-01 .bg-clr01 ul {
  gap: 2rem 0;
}
#about-service .srv-li-01 .bg-clr01 ul li {
  padding: 1rem 0.5rem;
  width: 200px;
}
#about-service .srv-li-02 li {
  width: 330px;
  padding: 3.5rem 3rem;
}
#about-service .srv-li-02 li h5 {
  margin-bottom: 3rem;
}
#about-service .srv-li h5 {
  font-size: 3.6rem;
}
#about-service .srv-li h5 span {
  padding: 0.5rem 5rem;
  background: url(../img/about/ttl-deco-le.png) left top no-repeat, url(../img/about/ttl-deco-ri.png) right 2rem bottom no-repeat;
}
#about-service .bnr-li {
  margin-top: 6rem;
}
#about-service .bnr-li a {
  display: grid;
  padding: 2rem 1.5rem;
  align-content: center;
  justify-items: end;
  width: 520px;
  height: 26rem;
}
#about-service .bnr-li a h4 {
  line-height: 1.4;
  gap: 1rem;
  font-family: var(--ttl-font);
}
#about-service .bnr-li a h4 .bg-wt {
  padding: 0 1rem;
}
#about-service .bnr-li .bnr-01 {
  background: url(../img/about/bnr-01.png) left bottom no-repeat, var(--pt-blue);
}
#about-service .bnr-li .bnr-02 {
  background: url(../img/about/bnr-02.png) left bottom no-repeat, var(--pt-yell);
}

.recom-area {
  padding-bottom: 0;
}
.recom-area .recom-box ul {
  gap: 1rem;
  padding: 4.5rem 0;
}
.recom-area .recom-box ul li {
  background: url("../img/staff/check.png") left center/3.3rem no-repeat;
  padding-left: 5.3rem;
  box-sizing: border-box;
}
.recom-area .recom-box ul li span {
  display: inline-block;
  padding: 0.3rem 1rem;
}
.recom-area .bnr-box {
  margin-top: 5rem;
}
.recom-area .bnr-box a {
  width: 520px;
  height: 210px;
  align-content: center;
  position: relative;
}
.recom-area .bnr-box a::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 3rem;
  position: absolute;
  background: #000;
  inset: auto 0 0 0;
  margin: 0 auto;
}
.recom-area .bnr-box a h4 {
  line-height: 1.8;
}
.recom-area .bnr-box a h4 .bg-wt {
  padding: 0 0.5rem;
}
.recom-area .bnr-box .bnr-01 {
  background: var(--flow-01);
}
.recom-area .bnr-box .bnr-02 {
  background: var(--accent-yell);
}

.attractive-area {
  padding-top: 21rem;
  margin-top: -10rem;
}
.attractive-area ul {
  gap: 13rem;
}
.attractive-area ul li {
  gap: 7rem;
}
.attractive-area ul li .img-box {
  order: 2;
}
.attractive-area ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
.attractive-area ul li .txt-box {
  width: 540px;
}
.attractive-area ul li .txt-box .ttl02 {
  display: grid;
  justify-items: start;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  gap: 0.5rem;
}
.attractive-area ul li .txt-box .ttl02 .num {
  font-size: 4rem;
  position: relative;
}
.attractive-area ul li .txt-box .ttl02 .bd-02 {
  padding: 0rem 1rem;
}

.flow-area .ttl01 .ft-wt {
  padding: 0.5rem 2rem;
  font-weight: 600;
  transform: skew(-15deg);
  font-family: var(--sans-font);
}
.flow-area .ttl01 .ft-wt span {
  display: inline-block;
  transform: skew(15deg);
}
.flow-area .flow-li {
  margin-top: 2rem;
}
.flow-area .flow-li .flow-item {
  width: 500px;
}
.flow-area .flow-li .flow-item .ttl03 {
  padding: 1rem;
}
.flow-area .flow-li .flow-item .flow-box {
  padding: 3rem 4rem;
}
.flow-area .flow-li .flow-item .flow-box ul {
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.flow-area .flow-li .flow-item .flow-box ul li {
  padding: 0.5rem 1.3rem;
}
.flow-area .flow-li .flow-item .flow-box dl {
  gap: 4rem;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item {
  position: relative;
  gap: 3rem;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item:not(:last-child)::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 7rem;
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  background: #000;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item dt {
  font-weight: 600;
  width: 170px;
  padding-left: 3rem;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item dt::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
  border-radius: 50vw;
  background: #000;
}
.flow-area .flow-li .flow-01 {
  background: var(--flow-02);
}
.flow-area .flow-li .flow-01 .ttl03 {
  background: var(--flow-01);
}
.flow-area .flow-li .flow-01 .flow-box ul li {
  background: var(--flow-01);
}
.flow-area .flow-li .flow-01 .flow-box dl .dl-item dt {
  color: var(--accent-blue);
}
.flow-area .flow-li .flow-02 {
  background: var(--flow-03);
}
.flow-area .flow-li .flow-02 .ttl03 {
  background: var(--accent-yell);
}
.flow-area .flow-li .flow-02 .flow-box ul li {
  background: var(--accent-color);
}
.flow-area .flow-li .flow-02 .flow-box dl dt {
  color: var(--accent-color);
}
#recruit-ideal .inbox {
  gap: 2.5rem;
}
#recruit-ideal ul {
  gap: 1rem;
}
#recruit-ideal ul li {
  padding: 1rem 2rem;
  font-weight: 700;
  font-family: var(--sans-font);
}

#recruit-flow ol {
  gap: 5.5rem;
}
#recruit-flow ol li {
  padding: 5rem;
  position: relative;
}
#recruit-flow ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2rem;
  position: absolute;
  background-color: #000;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -4rem 0;
  margin: 0 auto;
}
#recruit-flow ol li .txt-box {
  width: 830px;
}
#recruit-flow ol li .txt-box .ttl02 {
  margin-bottom: 1rem;
}
#recruit-flow ol li .txt-box .ttl02 .en {
  font-weight: 500;
  font-size: 4rem;
  display: inline-block;
  margin-right: 1rem;
}
#recruit-flow ol li .txt-box .add-box {
  margin-top: 3rem;
  gap: 1.5rem;
}
#recruit-flow ol li .txt-box .add-box .line-btn {
  background: var(--accent-yell);
}
#recruit-flow ol li .txt-box .add-box .mail-btn {
  width: 260px;
  height: 60px;
}

#recruit-description .btn-li .com-btn {
  width: 510px;
}
#recruit-description .ttl02 {
  margin-bottom: 3rem;
  margin-top: 10rem;
}
#recruit-description .com-desc-tbl {
  background: #fff;
}
#recruit-description .com-desc-tbl .dl-item:nth-child(odd) {
  background: #f7f7f7;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  background: url(../img/sv/bg-le.png) left bottom/16% no-repeat, url(../img/sv/bg-ri.png) right top/16% no-repeat, var(--pt-yell);
  border: 1.3rem solid #000;
  outline: 1.6rem solid #fff;
  outline-offset: -3rem;
  margin-top: 13rem;
}

.sv {
  width: 1280px;
  height: 550px;
  display: grid;
  align-content: center;
  justify-items: start;
  position: relative;
}
.sv .sv-catch {
  font-size: 4.6rem;
  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 5px 5px 0 #000;
  font-family: var(--ttl-font);
}
.sv .sv-catch > span {
  width: 595px;
  display: inline-grid;
  justify-items: center;
  padding: 2rem 1rem;
  border: 0.5rem solid #000;
  box-shadow: 1rem 1rem 0 #000;
  letter-spacing: 0.18em;
  font-weight: 300;
  line-height: 1.47;
  position: relative;
}
.sv .sv-catch > span::after {
  content: "";
  display: block;
  width: 7.3rem;
  height: auto;
  aspect-ratio: 1.35;
  position: absolute;
  background: url("../img/common/contact-ttl-ri.png") center/contain no-repeat;
  right: -6rem;
  bottom: -5rem;
}
.sv .sv-img {
  position: absolute;
  bottom: -1.3rem;
  right: 0;
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
  background: var(--pt-01);
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  line-height: 1.5;
}
#news .news-area .news-list .news-item a {
  display: block;
  padding: 30px 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 130px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 880px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 130px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  font-size: 1.8rem;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  padding: 18px 0;
  height: 50px;
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  width: 300px;
  box-sizing: border-box;
  padding: 16px 10px;
  font-size: 1.5rem;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 30px 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------△△---contact.html---△△------------------------*/