@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;
}

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

.sp-menu-btn-wrp .sp-menu-btn {
  width: 9rem;
  height: 9rem;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 40%;
  height: 4px;
  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: 4rem 2rem;
  background-color: var(--bg-color-02);
  width: 500px;
}

#drawer-nav .drawer-logo {
  width: 100px;
  margin-bottom: 3rem;
}

#drawer-nav .nav {
  margin-bottom: 3rem;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--main-color);
  color: var(--font-color);
  position: relative;
  font-size: 2rem;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  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);
}

/*rink-list */
.drawer-sub-nav__list {
  font-size: 1.6rem;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-info {
  gap: 2rem;
}
.drawer-info .tel-box {
  gap: 1rem;
}

/*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.5;
}

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

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2.25;
  font-weight: 500;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-txt-02 {
  line-height: 1.75;
  font-weight: 500;
}

.com-btn {
  display: grid;
  place-items: center;
  border-radius: 50vw;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  width: 370px;
  height: 75px;
  background: var(--accent-color);
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.7rem;
  position: absolute;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 2.5rem 0 auto;
  margin: auto 0;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 5rem;
  gap: 1rem;
}
.ttl01 .ja {
  font-size: 4.2rem;
  font-weight: 800;
}
.ttl01 .en {
  color: var(--main-color);
  text-transform: uppercase;
  font-size: 2.8rem;
}
.ttl01.ft-wt .en {
  color: #fff;
}
.ttl01.txt-le {
  justify-items: start;
  text-align: left;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2.8rem;
}

.ttl04 {
  font-size: 2.6rem;
}

.ttl05 {
  font-size: 2.4rem;
}

.ttl06 {
  font-size: 2.2rem;
}

.ttl07 {
  font-size: 2rem;
}

.ttl08 {
  font-size: 1.8rem;
}

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

.num {
  display: grid;
  justify-items: center;
  align-content: center;
  line-height: 1;
  width: 4.5rem;
  background: var(--accent-color);
  color: #fff;
  font-size: 2.2rem;
  aspect-ratio: 1;
  border-radius: 50vw;
  font-family: var(--en-font);
}

.com-tel {
  display: grid;
  justify-items: start;
  position: relative;
  line-height: 1;
  font-family: var(--en-font);
  background: url("../img/common/tel-icon.png") left center/4rem no-repeat;
  padding-left: 5rem;
  box-sizing: border-box;
}
.com-tel a {
  letter-spacing: 0.04em;
  font-size: 3.6rem;
}
.com-tel a::before {
  font-family: var(--sans-font);
  content: "(代表直通)";
  color: var(--main-color);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
.com-tel.ft-wt {
  background-image: url(../img/common/tel-icon-wt.png);
  background-repeat: no-repeat;
}
.com-tel.ft-wt a::before {
  color: #fff;
}

#header .com-tel a, #footer .com-tel a {
  font-size: 2.6rem;
}

.tel-box {
  gap: 1rem;
}

.tel-info {
  line-height: 1;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}
.tel-info dt {
  padding: 0.5rem;
}

.kado-01 {
  border-radius: 5rem;
}

.kado-02 {
  border-radius: 2rem;
}

.kado-03 {
  border-radius: 1rem;
}

.com-pd-01 {
  padding: 4rem;
}

.com-pd-02 {
  padding: 2rem;
}

.com-sdw {
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.1);
}

.bg-01 {
  background: url(../img/common/wave-01.png) bottom/100% no-repeat, var(--bg-01);
}

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

time {
  line-height: 1;
  color: var(--bd-color);
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid #d6e4ef;
}
.com-desc-tbl .dl-item dt {
  width: 130px;
  display: grid;
}
.com-desc-tbl .dl-item dd {
  width: 780px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: calc(100% - 18rem);
  top: 2rem;
  left: 3rem;
  background: #fff;
  z-index: 100;
  padding: 1.5rem 4.5rem;
  position: absolute;
  border-radius: 50vw;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
  margin-bottom: 1rem;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#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);
}

.btm-fix {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  padding: 2rem;
  background: linear-gradient(-25deg, #328bf2 40%, #32d5f2 60%);
}
.btm-fix .tel-box {
  gap: 3.5rem;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  aspect-ratio: 2.06;
  position: relative;
  background: url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv .mv-ct {
  width: 28.4%;
  position: absolute;
  left: 8.2%;
  bottom: 15%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#common-banner {
  background: url(../img/common/bnr-deco.png) bottom right/73% no-repeat, var(--pt-02);
}
#common-banner .line-bnr {
  width: 860px;
  height: 420px;
  padding: 3rem 6.5rem 5rem;
  gap: 3rem 0;
  position: relative;
  background: url(../img/common/bnr-bg.jpg) center/cover;
}
#common-banner .line-bnr .ttl04 {
  width: 100%;
  background: linear-gradient(-25deg, var(--main-color) 40%, var(--sub-color) 60%);
}
#common-banner .line-bnr .txt-box {
  margin-top: 2rem;
}
#common-banner .line-bnr .txt-box .txt-img {
  margin-bottom: 2rem;
}
#common-banner .line-bnr .btm-txt {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1.5rem 6.5rem;
  font-weight: 800;
}
#common-banner .line-bnr .btm-txt span {
  padding-right: 4rem;
  background: url(../img/common/bnr-arw.png) right/2.4rem no-repeat;
}

#top-intro {
  background: #000;
  padding-bottom: 23rem;
  background: url(../img/top/line-bg-btm.png) bottom/100% no-repeat, var(--bg-01);
}
#top-intro #common-banner {
  padding: 0;
  background: none;
}
#top-intro .area-box {
  margin-top: 8rem;
  gap: 3rem;
  padding: 8rem;
}
#top-intro .area-box .ttl01 {
  margin: 0;
  padding-bottom: 4rem;
  background: url(../img/top/area-bd.png) bottom no-repeat;
}
#top-intro .area-box ul {
  gap: 3.5rem;
}
#top-intro .area-box ul li {
  font-size: 3.8rem;
  padding: 0rem 1.5rem;
  position: relative;
}
#top-intro .area-box ul li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: var(--sub-color);
  inset: 0 -2.2rem 0 auto;
  margin: auto 0;
  border-radius: 50vw;
}

#top-step {
  background: url(../img/top/step-bg.jpg) top/cover;
}
#top-step .ttl01 .ja {
  padding: 0 6.5rem;
  background: url(../img/top/step-ttl-le.png) left no-repeat, url(../img/top/step-ttl-ri.png) right no-repeat;
}
#top-step .ttl01 .ft-clr02 {
  font-size: 1.48em;
}
#top-step ol li {
  gap: 1.5rem;
  width: 330px;
  padding: 2.5rem 3rem 2rem;
  position: relative;
  position: relative;
}
#top-step ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3rem;
  height: 6.5rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 -3.8rem 0 auto;
  margin: auto 0;
}
#top-step ol li .ttl05 {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sub-color);
}
#top-step ol li .ttl05 .num {
  font-size: 0.96em;
  width: 6.5rem;
  position: absolute;
  background: url(../img/top/step-num-bg.png) center/contain;
  border-radius: 0;
  left: 1.2rem;
  top: -4.5rem;
}

#top-about {
  background: url(../img/top/about-bg.jpg) center/cover;
  padding: 0;
}
#top-about .inbox {
  padding: 10rem 0 17.5rem;
}
#top-about .inbox .about-le .ttl01 {
  gap: 2rem;
  margin-bottom: 9rem;
  line-height: 1.7;
}
#top-about .inbox .about-le .ttl01 .ja {
  font-size: 5.2rem;
}
#top-about .inbox .about-le .img-box {
  margin-left: -350px;
  width: 884px;
}
#top-about .inbox .txt-box {
  width: 425px;
  padding: 7rem 0;
  margin-top: 7rem;
  position: relative;
  z-index: 1;
}
#top-about .inbox .txt-box::before {
  content: "";
  display: block;
  width: calc(50vw - 7rem);
  height: 100%;
  position: absolute;
  background: var(--bg-color-02);
  border-radius: 5rem 0rem 0rem 5rem;
  top: 0;
  left: -5rem;
  z-index: -1;
}
#top-about .inbox .txt-box ul {
  margin-bottom: 4rem;
  gap: 6rem;
}
#top-about .inbox .txt-box ul li {
  position: relative;
}
#top-about .inbox .txt-box ul li::before {
  content: "";
  display: block;
  width: 5rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/about-check.png") center/contain no-repeat;
  left: -6.7rem;
  top: -1rem;
}
#top-about .inbox .psn-box {
  position: absolute;
  bottom: 0;
  right: -270px;
  z-index: 10;
}

#top-price {
  background: url(../img/top/price-bg.png) bottom/100% no-repeat;
}
#top-price .inbox {
  padding: 6rem;
}
#top-price .inbox .ttl01 {
  margin-bottom: 3rem;
}
#top-price .inbox .ttl01 .ft-clr01 {
  background: linear-gradient(to top, var(--accent-color), var(--accent-color) 3.3rem, transparent 3rem, transparent);
}
#top-price .inbox .ttl01 .ft-clr01 .big {
  font-size: 7.2rem;
  line-height: 1;
}
#top-price .inbox .txt-box {
  display: grid;
  justify-content: center;
  gap: 2rem;
}
#top-price .inbox .txt-box .price-txt {
  font-size: 5rem;
  gap: 0.5rem;
}
#top-price .inbox .txt-box .price-txt .ft-wt {
  padding: 0 1.5rem;
}
#top-price .inbox .txt-box .price-txt .bg-acc {
  background: var(--accent-color-02);
}

#top-service {
  padding-top: 0;
  background: url(../img/top/srv-bg.png) bottom right/73% no-repeat, var(--bg-color);
}
#top-service .ttl01 .ja {
  padding: 4rem 4rem 0;
  background: url(../img/top/srv-ttl-deco.png) left top no-repeat;
}
#top-service .com-btn {
  margin: 8.5rem auto 0;
}
.srv-list {
  margin-top: 6rem;
  gap: 4.5rem;
}
.srv-list .srv-item {
  width: 330px;
}
.srv-list .srv-item .com-img {
  width: 100%;
  aspect-ratio: 1.57;
}
.srv-list .srv-item .txt-box {
  display: grid;
  gap: 1rem;
}

#top-other ul {
  gap: 2%;
}
#top-other ul li {
  width: 30%;
  max-width: 580px;
}
#top-other ul li a {
  width: 100%;
  height: 22rem;
  gap: 2rem;
  background: linear-gradient(-25deg, #1390df 30%, #26b4ce 70%);
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  background: var(--pt-01);
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  gap: 2.6rem;
}
#top-news .inbox .news-list .news-item a {
  width: 25rem;
  display: flex;
  flex-wrap: wrap;
}
#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.25;
  margin-bottom: 5rem;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
  padding: 0.5rem 0;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 150px;
}
#top-news .inbox .news-list .news-item a .txt-box {
  gap: 1rem;
}
#top-news .inbox .com-btn {
  width: 300px;
  position: absolute;
  right: 0;
  top: 0;
}

/*------------△△---NEWS---△△---------*/
.sns-list {
  gap: 2.5rem;
}

.pagetop {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 120px;
}

#footer {
  position: relative;
  margin-bottom: 100px;
}
#footer .ft-area {
  padding: 6rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  align-content: space-between;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 3.5rem 2.5rem;
}
#footer .ft-area .ft-ri .com-btn {
  width: 300px;
}
#footer .ft-area .ft-ri .ft-nav {
  gap: 4.5rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list {
  display: grid;
  gap: 2rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  padding: 2rem;
  font-weight: 400;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-concept {
  padding-bottom: 19rem;
}
#about-concept .img-box {
  margin-left: -100px;
}
#about-concept .txt-box {
  width: 520px;
}
#about-concept .txt-box .ttl01 .ja {
  font-size: 4rem;
}

#about-reason {
  padding-top: 4rem;
}
#about-reason ol {
  gap: 4rem;
}
#about-reason ol li {
  padding: 5rem 6rem;
}
#about-reason ol li:nth-child(odd) {
  flex-direction: row-reverse;
}
#about-reason ol li .txt-box {
  width: 515px;
}
#about-reason ol li .txt-box .ttl03 {
  gap: 1rem;
  margin-bottom: 2rem;
}

#achieve .achieve-list {
  gap: 4rem;
}
#achieve .com-img {
  width: 330px;
  aspect-ratio: 1.57;
}
#achieve .achieve-txt-box {
  width: 620px;
}
#achieve .achieve-txt-box .com-btn {
  width: 260px;
  height: 55px;
  margin-left: auto;
  margin-top: 1rem;
  justify-items: start;
  padding: 0 3rem;
  font-size: 1.8rem;
}

.achieve-txt-box {
  display: grid;
  gap: 1.5rem;
}

.achieve-detail .com-img {
  width: 100% !important;
  aspect-ratio: 1.78;
  margin-bottom: 3.5rem;
}

#company-greeting .txt-box {
  width: 510px;
}
#company-greeting .img-box {
  margin-right: -100px;
}

#company-interview {
  padding: 6rem 0 19rem;
  background: url(../img/common/wave-02.jpg) bottom/100% no-repeat;
}
#company-interview ul {
  gap: 4rem;
}
#company-interview ul li .ttl05 {
  gap: 2rem;
  padding: 1.5rem 6rem;
}
#company-interview ul li .com-pd-02 {
  padding: 3rem 6rem;
}
#company-interview ul li .com-pd-02 .com-txt {
  width: 610px;
}

#company-info .map-ttl {
  margin-top: 6rem;
}
#company-info .map-ttl span {
  background: url("../img/company/map-icon.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
#company-info .map {
  margin-top: 2rem;
  height: 510px;
}

#contact-about .bg-clr02 {
  padding: 3rem 4rem;
  margin-top: 6rem;
}
#contact-about .bg-clr02 .ttl04 {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #7ec9ff;
}
#contact-about .bg-clr02 .tel-box {
  gap: 4rem;
}
#contact-about .bg-clr02 .tel-box .tel-info {
  width: 27.5rem;
  padding: 1rem;
}
#contact-about .bg-clr02 .com-btn {
  margin: 2.5rem auto 0;
  background: #06c755;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 660px;
  background-position: center;
  background-size: cover;
  position: relative;
}
.sv .sv-catch {
  font-size: 4.4rem;
  width: 780px;
  padding: 2.5rem;
  position: absolute;
  left: 4.5%;
  bottom: 215px;
  line-height: 1;
  background: url(../img/sv/deco.png) top left 2.5rem no-repeat, #fff;
  box-shadow: 1.4rem 1.4rem rgba(33, 159, 224, 0.26);
}

.about-sv {
  background-image: url(../img/sv/about.jpg);
}

.service-sv {
  background-image: url(../img/sv/service.jpg);
}

.achieve-sv {
  background-image: url(../img/sv/achieve.jpg);
}

.company-sv {
  background-image: url(../img/sv/company.jpg);
}

.news-sv {
  background-image: url(../img/sv/news.jpg);
}

.contact-sv {
  background-image: url(../img/sv/contact.jpg);
}

.complete-sv {
  background-image: url(../img/sv/complete.jpg);
}

.privacy-sv {
  background-image: url(../img/sv/privacy.jpg);
}

.site-sv {
  background-image: url(../img/sv/site.jpg);
}

.e404-sv {
  background-image: url(../img/sv/e404.jpg);
}

/*---------------------------△△---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---△△---------*/
/*--------------------その他共通ページ --------------------*/
/*---------------------------▽▽---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: 120px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 900px;
}
#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: 120px;
}
#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 {
  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---△△------------------------*/