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

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

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

.com-kado {
  border-radius: 10px;
}
.com-kado > img {
  border-radius: 10px;
}

.com-txt {
  line-height: 2.125;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 20px;
}
.com-txt.txt-cnt {
  font-size: 1.7rem;
}

.inbox > .com-txt.txt-cnt {
  margin-bottom: 50px;
}

.com-btn {
  display: grid;
  place-items: center;
  width: 380px;
  height: 60px;
  margin: 60px auto 0;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  background: var(--accent-color);
  box-shadow: 7px 7px 0 var(--accent-color-02);
}
.com-btn::after {
  content: "";
  display: block;
  width: 14px;
  height: auto;
  aspect-ratio: 1.27;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 20px 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  background: var(--main-color);
  box-shadow: 7px 7px 0 #295590;
}
.com-btn.mail-btn span {
  background-image: url(../img/flow/mail-icon.png);
}
.com-btn.mail-btn::after {
  background-image: url(../img/common/arw-wt.png);
}
.com-btn:hover {
  opacity: 1;
  transform: translate(7px, 7px);
  box-shadow: none;
}

.mail-btn {
  display: grid;
  place-items: center;
  padding: 10px 30px;
}
.mail-btn span {
  background: url("../img/common/mail-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.flow-btn-box {
  margin-top: 20px;
  gap: 50px;
}
.flow-btn-box .com-btn {
  margin: 0;
}
.flow-btn-box .line-btn span {
  padding: 10px 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;
  text-align: center;
  margin-bottom: 40px;
}
.ttl01 .en {
  font-size: 14rem;
  padding: 10px 20px;
}
.ttl01 .en::first-letter {
  text-transform: capitalize;
}
.ttl01 .ja {
  font-family: var(--ttl-font);
  font-size: 3.6rem;
  font-weight: 700;
  margin-top: -20px;
}
.ttl01 .ttl02 {
  margin: 0;
}
.ttl01.ft-wt .en {
  -webkit-text-fill-color: #fff;
}
.ttl01.ft-wt .ja {
  color: #fff;
}
.ttl01.txt-le {
  justify-content: start;
  justify-items: start;
}

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

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

.ttl04 {
  font-size: 2.2rem;
}

.ttl05 {
  font-size: 1.7rem;
}

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

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  color: #fff;
  font-size: 2.9rem;
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}
.com-tel.flex {
  display: flex;
  gap: 20px;
}
.com-tel.flex a {
  color: var(--font-color);
  background-image: url(../img/flow/tel-icon.png);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tag-list .tag {
  background: var(--sub-color);
  border-radius: 50vw;
  padding: 3px 10px;
  font-size: 1.5rem;
}

time {
  color: var(--accent-color-02);
}

.ttl-bg-grd {
  margin-bottom: 20px;
  padding: 15px 20px;
  background: var(--grd-color);
  color: #fff;
}

.com-li-stl {
  display: grid;
  gap: 50px;
}
.com-li-stl li {
  position: relative;
}
.com-li-stl li .txt-box {
  width: 520px;
  margin-left: auto;
  min-height: 340px;
}
.com-li-stl li .img-box {
  position: absolute;
  left: 0;
  top: 0;
}
.com-li-stl.feat-li li:nth-child(even) .txt-box {
  margin-left: 0;
}
.com-li-stl.feat-li li:nth-child(even) .img-box {
  left: auto;
  right: 0;
}

.com-pd-box {
  padding: 60px;
  background: #fff;
}

/*infotableスタイル*/
.com-desc-tbl {
  overflow: hidden;
  margin-bottom: 60px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 340px;
  padding: 15px 10px;
}
.com-desc-tbl .dl-item dd {
  width: 740px;
  padding: 15px 50px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

.map {
  height: 350px;
  overflow: hidden;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3000;
  padding: 15px 45px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 30px;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
}
.top-mv .bx-wrapper {
  width: 100%;
  height: 44vw;
  min-height: 563px;
}
.top-mv .bx-viewport {
  height: 100% !important;
}
.top-mv #slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.top-mv #slider .slide-item {
  width: 100%;
  height: 100%;
  background: center/cover;
}
.top-mv #slider .slide-01 {
  background-image: url(../img/top/mv01.jpg);
}
.top-mv #slider .slide-02 {
  background-image: url(../img/top/mv02.jpg);
}
.top-mv #slider .slide-03 {
  background-image: url(../img/top/mv03.jpg);
}
.top-mv #slider .slide-04 {
  background-image: url(../img/top/mv04.jpg);
}
.top-mv .mv-ct {
  position: absolute;
  z-index: 1000;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
}
.top-mv .mv-ct span {
  width: 34.6%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#nav {
  background: #fff;
  padding: 20px;
}
#nav ul {
  gap: 60px;
}
#nav ul li {
  position: relative;
}
#nav ul li:not(:first-child)::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  background: var(--main-color);
  inset: 0 auto 0 -35px;
  margin: auto 0;
  border-radius: 50vw;
}

#top-about .ttl01 .en {
  transform: translate(-120px, 20px) rotate(-10deg);
}
#top-about .ttl01 .ft-clr01 {
  border: 4px dashed var(--main-color);
  margin-right: 20px;
  padding: 3px 15px;
  margin-top: 20px;
}
#top-about .ttl01 .ft-clr-grd {
  margin-top: 10px;
  font-size: 5rem;
}
#top-about .about-ill {
  bottom: 100px;
}
#top-about .about-ill01 {
  left: -30px;
}
#top-about .about-ill02 {
  right: 0;
}

#about-intro .about-box {
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#about-intro .about-box .ttl02 {
  margin-bottom: 30px;
}
#about-intro .about-box .about-ill {
  bottom: 0;
}
#about-intro .about-box .about-ill01 {
  left: 20px;
}
#about-intro .about-box .about-ill02 {
  right: 20px;
}
#about-intro .area-box {
  position: relative;
  padding: 0 90px;
  z-index: 1;
}
#about-intro .area-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 310px;
  position: absolute;
  background: var(--bg-color);
  inset: 0;
  margin: auto 0;
  z-index: -1;
}
#about-intro .area-box .ttl01 {
  margin-bottom: 30px;
}
#about-intro .area-box .area-img {
  width: 270px;
}

#top-area {
  padding: 50px 0;
}

.area-box {
  gap: 50px;
}
.area-box .ill {
  top: -10px;
  left: 280px;
}

#top-service ul {
  gap: 30px 0;
}
#top-service ul li {
  background: linear-gradient(to top, #2f80ed, #79d4f2);
  padding: 20px;
}
#top-service ul li .img-box {
  margin-bottom: 20px;
}
#top-service ul li .img-box img {
  border-radius: 10px 10px 0 0;
}
#top-service ul li .img-box .ill {
  left: -10px;
  bottom: -20px;
}

#top-other .inbox {
  width: 1280px;
  z-index: 1;
}
#top-other ul {
  gap: 40px 0;
}
#top-other ul li a {
  border: 4px dashed var(--main-color);
  outline: 4px solid var(--bg-color);
  outline-offset: -8px;
}
#top-other ul li a .ttl01 {
  z-index: 100;
  align-content: center;
  inset: 0;
  margin: 0;
}
#top-other ul li a::after {
  content: "";
  display: block;
  width: 43px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/other-arw.png") center/contain no-repeat;
  bottom: 30px;
  right: 30px;
}
#top-other ul li a:hover {
  transform: translateY(-10px);
}
#top-other .ill {
  bottom: -100px;
  right: -250px;
  z-index: -1;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  min-height: 300px;
}
#top-news .inbox .ttl01 {
  width: 270px;
  margin: 0;
  padding: 0;
}
#top-news .inbox .news-list {
  width: 745px;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 20px 0;
  gap: 10px 20px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 630px;
  line-height: 1;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  width: 270px;
  left: 0;
  bottom: 0;
}

/*------------△△---NEWS---△△---------*/
#footer {
  padding: 60px 0 15px;
  position: relative;
}
#footer .ft-area {
  margin-bottom: 80px;
}
#footer .ft-area .ft-top {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 4px dashed #fff;
  margin-bottom: 40px;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 20px;
}
#footer .ft-area .ft-le .mail-btn {
  width: 250px;
}
#footer .ft-area .ft-ri {
  gap: 70px;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 30px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
  position: relative;
}
#footer .ft-area .ft-ri .nav-list .nav-item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  background: var(--sub-color);
  inset: 0 auto 0 -15px;
  margin: auto 0;
  border-radius: 50vw;
}
#footer .copyright {
  font-weight: 300;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-greeting {
  padding: 0;
}
#about-greeting .inbox {
  width: 1280px;
}
#about-greeting .inbox .gree-img {
  transform: translateX(-30px);
}
#about-greeting .inbox .txt-box {
  width: 560px;
}

.flow-li {
  gap: 20px;
}
.flow-li li {
  padding: 40px 60px;
}
.flow-li li .ill {
  width: 120px;
  background: linear-gradient(to bottom, #2f80ed, #79d4f2) #000;
}
.flow-li li .txt-box {
  width: 790px;
}
.flow-li li .txt-box .ttl02 {
  margin-bottom: 20px;
}
.flow-li li .txt-box .ttl02 .ft-clr01 {
  font-weight: 500;
}
.flow-li li .txt-box .ttl02 .ft-clr01 .num {
  font-size: 1.3333em;
  display: inline-block;
  margin-left: 10px;
  margin-right: 30px;
}

.faq-li {
  gap: 40px;
}
.faq-li li .faq-num {
  width: 30px;
  position: absolute;
  left: 20px;
  top: 13px;
  line-height: 1;
  padding-bottom: 3px;
}
.faq-li li .ttl05 {
  padding-left: 70px;
  margin-bottom: 10px;
}
.faq-li li .com-txt {
  padding: 10px 20px;
  padding-left: 70px;
}

.cases-list {
  gap: 30px;
}
.cases-list li {
  overflow: hidden;
}
.cases-list li .ttl05 {
  margin: 0;
}
.cases-list li .com-pd-box {
  gap: 30px 0;
}
.cases-list li .com-pd-box .img-box {
  position: relative;
}
.cases-list li .com-pd-box .img-box:first-child::after {
  content: "";
  display: block;
  width: 28px;
  height: auto;
  aspect-ratio: 1.4;
  position: absolute;
  background: url("../img/cases/arw.png") center/contain no-repeat;
  inset: 0 -45px 0 auto;
  margin: auto 0;
}
.cases-list li .com-pd-box .img-box .com-img {
  width: 450px;
  aspect-ratio: 1.323;
}
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  height: 500px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}
.sv .sv-catch {
  padding: 20px 35px;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.16em;
  background: rgba(255, 255, 255, 0.95);
}

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

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

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

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

.cases-sv {
  background-image: url(../img/sv/cases.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---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
  background: var(--bg-pt);
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 0 0 0;
}
#site-map .site-list li {
  font-size: 1.8rem;
}
#site-map .site-list li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  color: var(--font-color);
  position: relative;
}
#site-map .site-list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}
#site-map .site-list li a:hover {
  background: color-mix(in srgb, var(--main-color) 50%, transparent);
}

/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  text-align: center;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  margin-bottom: 50px;
  padding: 0;
}
#privacy .privacy-box .ttl02 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--grd-color);
  color: #fff;
  border-radius: 10px;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#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: 100px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#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;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  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---△△------------------------*/