@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
html {
  font-size: 2.6666666667vw;
}

.inbox {
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

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

/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--main-color);
  border-radius: 0;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 3% 5% 30vw;
  background: var(--pt-01);
}

.drawer-info {
  gap: 2rem;
}
.drawer-info .mail-btn {
  width: 70vw;
  height: 15vw;
}

#drawer-nav .drawer-logo {
  width: 40%;
}

#drawer-nav .nav {
  margin-bottom: 10vw;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .show span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  display: block;
  max-width: none;
  width: 100%;
}

/*rink-list */
.drawer-sub-nav__list {
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 3.5vw;
}

/*フォント */
body {
  font-size: 4vw;
  line-height: 1.5;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 7rem;
}

section {
  padding: 7rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  place-items: center;
  width: 73vw;
  height: 15vw;
  margin: 0 auto;
  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: 4.7rem;
  height: 1.7rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 1rem 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  height: 17vw;
  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: 3rem;
  text-align: center;
  gap: 0.5rem;
  font-family: var(--ttl-font);
}
.ttl01 .en {
  font-size: 2rem;
  position: relative;
  text-transform: uppercase;
}
.ttl01 .ja {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 4px 4px 0 #000;
}
.ttl01.txt-le {
  justify-items: start;
  text-align: left;
}
.ttl01.ft-wt .en {
  color: #fff;
}

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

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

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

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

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

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

.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: 3rem;
  height: auto;
  aspect-ratio: 0.84;
  position: absolute;
  background: url("../img/common/box-deco-le.png") center/contain no-repeat;
  left: -2rem;
  top: -2rem;
}
.box-deco::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1.35;
  position: absolute;
  background: url("../img/common/box-deco-ri.png") center/contain no-repeat;
  right: -1rem;
  bottom: -2rem;
}

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

time {
  line-height: 1;
  padding: 1rem 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 {
  width: 30%;
  padding: 1.5rem 1rem;
  display: grid;
  text-align: left !important;
}
.com-desc-tbl .dl-item dd {
  width: 70%;
  padding: 1.5rem 1rem;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

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

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  position: fixed;
  padding: 5vw;
}
#header .hd-logo {
  width: 40%;
}
#header .hd-logo img {
  display: block;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 7rem;
  aspect-ratio: 2.46;
  display: grid;
  justify-items: center;
  padding: 6rem 0;
  gap: 3rem;
  background: url(../img/top/mv-bg.png) center/cover;
}
.top-mv .mv-box {
  width: 95%;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 5rem 0;
  background: url(../img/top/mv-lb.png) bottom 11% left 4.5%/25% no-repeat, var(--pt-ora);
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  text-align: center;
  width: 90%;
}
.top-mv .mv-img-01 {
  width: 40%;
  position: absolute;
  left: -3.5rem;
  top: -15%;
}
.top-mv .mv-img-02 {
  width: 35%;
  position: absolute;
  bottom: -4.5rem;
  right: -10%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about {
  background: url(../img/top/about-bg.jpg) center/cover;
  padding: 0;
}
#top-about .inbox {
  padding: 5rem 0 5rem;
  z-index: 1;
}
#top-about .inbox .about-ttl {
  width: 80%;
  margin: 0 auto 1rem;
}
#top-about .inbox .about-ttl .en {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
#top-about .inbox ul {
  display: flex;
  justify-content: space-between;
  gap: 0;
}
#top-about .inbox ul li {
  width: 49%;
}
#top-about .inbox ul li img {
  width: 100%;
}
#top-about .inbox .img-01 {
  width: 30%;
  position: absolute;
  left: -2rem;
  top: 2rem;
  z-index: -1;
}
#top-about .inbox .img-02 {
  width: 30%;
  position: absolute;
  bottom: 1.5rem;
  left: -3rem;
  z-index: 1;
}
#top-about .inbox .img-03 {
  width: 30%;
  position: absolute;
  right: -4rem;
  bottom: 15rem;
  z-index: -1;
}

#top-works {
  background: url(../img/top/work-bd-top.png) top/200% no-repeat, url(../img/top/work-bd-btm.png) bottom/200% no-repeat, var(--pt-01);
}
#top-works .ttl01 {
  gap: 1rem;
}
#top-works .ttl01 .en {
  color: var(--font-color);
}
#top-works .ttl01 .ja {
  padding: 0rem 0 2rem;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000, 5px 5px 0 #000;
  background: url(../img/top/work-deco-le.png) left top/10% no-repeat, url(../img/top/work-deco-ri.png) bottom right/10% 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-weight: 300;
  background: var(--accent-red);
  padding: 0.3rem 1.5rem;
  transform: skew(-15deg);
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, 2px 2px 0 #fff;
}
#top-works .ttl01 .ttl02 span {
  display: inline-block;
  transform: skew(15deg);
}
#top-works .work-box {
  padding: 2rem 0 0;
  display: grid;
  justify-items: center;
  align-content: space-between;
  box-shadow: #fff 0 0 3rem;
  margin-top: 3rem;
}
#top-works .work-box .ttl02 {
  line-height: 1.8;
  margin-bottom: 1rem;
}
#top-works .work-box .ttl02 .bg-wt {
  padding: 0 1rem;
}
#top-works .work-box .ill-box {
  margin-top: auto;
  height: 15rem;
}
#top-works .work-box .ill-box img {
  height: 100%;
}
#top-works .work-box .com-btn {
  font-family: var(--ttl-font);
  width: 100%;
  height: 6rem;
  background: none;
  border: none;
  outline: none;
  border-top: 3px solid #000;
}
#top-works .work-01 {
  background: url(../img/top/work-bg-01.png) bottom/cover;
}
#top-works .work-02 {
  background: url(../img/top/work-bg-02.png) bottom/cover;
}

#top-recruit {
  padding-bottom: 15rem;
  background: url(../img/top/rec.jpg) bottom left/50% no-repeat, var(--pt-dot);
}
#top-recruit .txt-box {
  margin-left: auto;
}
#top-recruit .txt-box .ttl01 .ja {
  position: relative;
}
#top-recruit .txt-box .ttl01 .ja::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3rem;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  right: -6rem;
  top: -4rem;
}
#top-recruit .com-btn {
  margin-top: 3rem;
}

#top-area {
  background: url(../img/top/area-bg.jpg) bottom/100% no-repeat, var(--pt-01);
}
#top-area .inbox {
  display: grid;
  gap: 3rem;
  position: relative;
}
#top-area .txt-box {
  padding: 2rem;
  position: relative;
}
#top-area .txt-box::after {
  content: "";
  display: block;
  width: 7.4rem;
  height: 10rem;
  position: absolute;
  background: url("../img/top/area-bd.png") center/contain no-repeat;
  left: 5rem;
  bottom: -9rem;
}
#top-area .txt-box .ttl02 {
  margin-bottom: 2rem;
  position: relative;
}
#top-area .txt-box .ttl02::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0.2rem;
  position: absolute;
  background: #000;
  margin: auto 0;
  inset: 0 0 0 auto;
}
#top-area .txt-box ul {
  position: static;
  display: grid;
  gap: 0.5rem;
}
#top-area .txt-box ul li {
  font-family: var(--sans-font);
  font-weight: 700;
  text-align: center;
  padding: 0 1.7rem;
}
#top-area .img-box {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#top-area .img-box img {
  width: 100%;
}
#top-area .ill-box {
  position: absolute;
  width: 40%;
  bottom: -2rem;
  left: -1rem;
  z-index: 20;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ill-box {
  position: absolute;
  width: 50%;
  top: 1rem;
  right: 1rem;
}
#top-news .inbox .news-list {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
}
#top-news .inbox .news-list .news-item {
  flex-shrink: 0;
}
#top-news .inbox .news-list .news-item a {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 22rem;
}
#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 time {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-btn {
  background: #fff;
  color: var(--font-color);
  width: 16rem;
  margin-top: 3rem;
  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/150% no-repeat, url(../img/common/contact-bg.jpg) center/cover;
  padding: 0;
}
#common-contact .inbox {
  display: grid;
  justify-items: center;
  position: relative;
  padding: 5rem 0 10rem;
}
#common-contact .inbox .ttl01 .en {
  font-size: 4.5rem;
}
#common-contact .inbox .ttl01 .ja {
  margin-top: -3rem;
  position: relative;
}
#common-contact .inbox .ttl01 .ja::before {
  content: "";
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1.02;
  position: absolute;
  background: url("../img/common/contact-ttl-le.png") center/contain no-repeat;
  left: -4rem;
  bottom: -3rem;
}
#common-contact .inbox .ttl01 .ja::after {
  content: "";
  display: block;
  width: 4rem;
  height: auto;
  aspect-ratio: 1.35;
  position: absolute;
  background: url("../img/common/contact-ttl-ri.png") center/contain no-repeat;
  right: -3rem;
  bottom: -3rem;
}
#common-contact .line-btn {
  width: 70vw;
  height: 7rem;
  background: var(--accent-yell);
}
#common-contact .flex {
  display: grid;
  margin-top: 4rem;
  border-top: 2px solid #fff;
  padding-top: 4rem;
  gap: 3rem;
}
#common-contact .flex .com-tel a {
  background-image: url(../img/common/tel-icon-02.png);
}
#common-contact .flex .mail-btn {
  height: 6rem;
}
#common-contact .ill-box {
  position: absolute;
  width: 35%;
  bottom: 0;
  right: -1rem;
}

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

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 6rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: center;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-logo {
  width: 50%;
}
#footer .ft-area .ft-le .ft-add {
  text-align: center;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info .dl-item {
  gap: 2rem;
}
#footer .ft-area .ft-le .ft-info dt {
  padding: 0 1rem;
}
#footer .ft-area .ft-ri {
  margin-top: 5rem;
  display: grid;
  justify-content: center;
  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: 1rem;
  padding: 2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-service {
  background: linear-gradient(to top, #03b72d, #03b72d 24rem, transparent 24rem, transparent), var(--pt-01);
}
#about-service .inbox > h4 {
  margin-top: 7rem;
  margin-bottom: 3rem;
}
#about-service .srv-li-01 {
  gap: 3rem 0;
  display: grid;
}
#about-service .srv-li-01 > .ttl05 {
  width: 100%;
  padding: 1rem;
  text-align: center;
}
#about-service .srv-li-01 .bg-clr01 {
  padding: 3rem 2rem;
  display: grid;
  align-content: start;
  gap: 2rem;
}
#about-service .srv-li-01 .bg-clr01 .img-box {
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
#about-service .srv-li-01 .bg-clr01 .img-box img {
  width: 45%;
}
#about-service .srv-li-01 .bg-clr01 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 0;
}
#about-service .srv-li-01 .bg-clr01 ul li {
  font-size: 1.4rem;
  padding: 0.5rem 0.5rem;
  width: 48%;
}
#about-service .srv-li-02 li {
  padding: 3rem 2rem;
}
#about-service .srv-li-02 li h5 {
  margin-bottom: 2rem;
}
#about-service .srv-li {
  display: grid;
  gap: 2rem;
}
#about-service .srv-li h5 span {
  padding: 0 3.5rem;
  background: url(../img/about/ttl-deco-le.png) left top/3rem no-repeat, url(../img/about/ttl-deco-ri.png) right 1rem bottom/2rem no-repeat;
}
#about-service .bnr-li {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
}
#about-service .bnr-li a {
  display: grid;
  padding: 2rem;
  align-content: center;
  justify-items: end;
}
#about-service .bnr-li a .ttl03 {
  font-size: 1.8rem;
}
#about-service .bnr-li a h4 {
  line-height: 1.4;
  gap: 0.5rem;
}
#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/30% no-repeat, var(--pt-blue);
}
#about-service .bnr-li .bnr-02 {
  background: url(../img/about/bnr-02.png) left bottom/30% no-repeat, var(--pt-yell);
}

.recom-area {
  padding-bottom: 0;
}
.recom-area .recom-box {
  background: var(--grd-01);
}
.recom-area .recom-box ul {
  padding: 5rem 2rem;
  gap: 1.5rem;
}
.recom-area .recom-box ul li {
  background: url("../img/staff/check.png") left top 0.7rem/1.5rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}
.recom-area .recom-box ul li span {
  display: inline-block;
  padding: 0.3rem 1rem;
}
.recom-area .bnr-box {
  display: grid;
  gap: 2rem;
  margin-top: 5rem;
}
.recom-area .bnr-box a {
  align-content: center;
  position: relative;
  padding: 2rem 0;
}
.recom-area .bnr-box a::after {
  content: "";
  display: block;
  width: 0.2rem;
  height: 2rem;
  position: absolute;
  background: #fff;
  inset: auto 0 -0.5rem 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: url(../img/staff/recom-01.jpg) center/cover;
}
.recom-area .bnr-box .bnr-02 {
  background: url(../img/staff/recom-02.jpg) center/cover;
}

.attractive-area {
  padding-top: 13rem;
  margin-top: -8rem;
}
.attractive-area ul {
  gap: 5rem;
}
.attractive-area ul li {
  gap: 7rem;
}
.attractive-area ul li .img-box {
  width: 50%;
  margin-left: auto;
  margin-bottom: -3.5rem;
  margin-right: 2rem;
}
.attractive-area ul li .txt-box .ttl02 {
  display: grid;
  margin-bottom: 3rem;
}
.attractive-area ul li .txt-box .ttl02 .en {
  font-size: 4rem;
  position: relative;
}
.attractive-area ul li .txt-box .ttl02 .en::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.2rem;
  position: absolute;
  background: var(--grd-02);
  margin: auto 0;
  inset: 0 0 0 auto;
}
.attractive-area ul li .txt-box .ttl02 .bd-02 {
  padding: 0 1rem;
}

.flow-area .ttl01 .ft-wt {
  padding: 0.5rem 2rem;
  transform: skew(-15deg);
  font-family: var(--sans-font);
}
.flow-area .ttl01 .ft-wt span {
  display: inline-block;
  transform: skew(15deg);
}
.flow-area .flow-li {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}
.flow-area .flow-li .flow-item .ttl03 {
  padding: 1rem;
}
.flow-area .flow-li .flow-item .flow-box {
  padding: 3rem 2rem;
}
.flow-area .flow-li .flow-item .flow-box ul {
  display: flex;
  flex-wrap: wrap;
  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: 3rem;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item {
  position: relative;
  gap: 2rem;
}
.flow-area .flow-li .flow-item .flow-box dl .dl-item:not(:last-child)::before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 6rem;
  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: 17rem;
  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 {
  font-weight: 700;
  padding: 1rem 2rem;
  font-family: var(--sans-font);
}
#recruit-ideal .img-box {
  width: 50%;
  margin: 3rem auto 0;
}

#recruit-flow ol {
  gap: 5.5rem;
}
#recruit-flow ol li {
  padding: 3rem 2rem;
  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 .img-box {
  text-align: center;
  width: 40%;
  margin: 0 auto;
}
#recruit-flow ol li .txt-box .ttl02 {
  margin-bottom: 1rem;
}
#recruit-flow ol li .txt-box .ttl02 .en {
  font-weight: 500;
  font-size: 3rem;
  display: inline-block;
  margin-right: 1rem;
}
#recruit-flow ol li .txt-box .add-box {
  display: grid;
  margin-top: 3rem;
  gap: 2rem;
}
#recruit-flow ol li .txt-box .add-box .mail-btn {
  width: 100%;
}

#recruit-description .btn-li {
  display: grid;
  gap: 3rem;
}
#recruit-description .ttl02 {
  margin-bottom: 3rem;
  margin-top: 7rem;
}
#recruit-description .com-desc-tbl {
  background: #fff;
}
#recruit-description .com-desc-tbl .dl-item:nth-child(odd) {
  background: #f7f7f7;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 7rem;
  height: 18rem;
  padding: 2rem 0;
  display: grid;
  align-content: flex-end;
}
.sv .sv-catch {
  width: 90%;
  font-size: 2rem;
}
.sv .sv-catch > span {
  display: inline-grid;
  justify-items: start;
  letter-spacing: normal 0.1rem;
  padding: 0.7rem 2rem;
  background: url(../img/sv/ct-bg.jpg) bottom/cover;
}

.about-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/about.jpg) center/cover;
}
.about-sv .sv-catch {
  font-size: 1.5rem;
}
.about-sv .sv-catch > span {
  line-height: 1.2;
  padding: 0.5rem 1rem;
}

.staff-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/staff.jpg) center/cover;
}

.part-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/part.jpg) center/cover;
}

.recruit-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/recruit.jpg) center/cover;
}

.news-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/news.jpg) center/cover;
}

.contact-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/contact.jpg) center/cover;
}

.complete-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/complete.jpg) center/cover;
}

.privacy-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/privacy.jpg) center/cover;
}

.site-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/site.jpg) center/cover;
}

.e404-sv {
  background: url(../img/sv/ill.png) bottom 6rem left 2rem/28% no-repeat, url(../img/sv/grd.png) bottom left/40% 100% no-repeat, url(../img/sv/e404.jpg) center/cover;
}

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3.5vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*その他共通ページ*/
.com-other-page {
  padding: 20vw 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 35%;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 62%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  font-size: 4vw;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20%;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  padding: 3vw 2vw;
  font-size: 3.8vw;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  padding: 1% 2%;
  margin: -0.5%;
  float: right;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-size: 4vw;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 60%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

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

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

/*---------------------------▽▽---contact.html---▽▽------------------------*/