@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: 70px 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  position: relative;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 340px;
  height: 80px;
  margin: 3rem auto 0;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--accent-color);
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--font-color-02);
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: left;
}
.com-btn:hover::after {
  transform: scaleX(1);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
  mix-blend-mode: screen;
  transition: 0.3s;
}
.com-btn:hover {
  opacity: 1;
}
.com-btn:hover::before {
  transform: translateX(1rem);
}
.com-btn.flex {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.mail-btn {
  margin: 0;
  width: auto;
  height: 10rem;
  gap: 1rem;
}
.mail-btn::before {
  right: 1rem;
}
.mail-btn .en {
  color: var(--accent-color) !important;
  position: absolute;
  inset: 0 auto 0 1.5rem;
  display: grid;
  align-content: center;
  font-size: 4.2rem;
  z-index: 1;
  mix-blend-mode: screen;
}
.mail-btn span {
  z-index: 10;
}

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

.ttl01 {
  text-align: center;
  color: var(--main-color);
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 6rem;
}
.ttl01 .ttl02 {
  color: var(--font-color);
}

.ttl02 {
  font-size: 4.2rem;
  font-weight: 900;
}

.ttl03 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--font-color-02);
}
.ttl03.bg-clr02 {
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
}

.ttl04 {
  font-size: 2rem;
}

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

.num-ttl {
  position: relative;
  z-index: 1;
}
.num-ttl .num {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}

.num-list {
  align-items: start;
}
.num-list li {
  display: grid;
  justify-items: center;
}
.num-list li .com-txt {
  margin-top: -2rem;
}
.num-list li .num-ttl {
  display: grid;
  align-content: center;
  text-align: center;
  min-height: 17rem;
}
.num-list li .num-ttl .num {
  inset: 1rem 0 0 0;
}

.en-01 {
  font-size: 14rem;
}

.en-02 {
  font-size: 20rem;
}

.txt-sdw {
  color: transparent;
  text-stroke: 2px var(--main-color);
  -webkit-text-stroke: 2px var(--main-color);
}

.bg-01 {
  background: url(../img/common/bg-01-btm.png) top 610px center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 80rem no-repeat;
}

.bg-02 {
  padding-bottom: 13rem;
  background: url(../img/common/bg-02-top.png) top/100% no-repeat;
}

#top-page .bg-01 {
  background: url(../img/common/bg-01-btm.png) top 440px center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 80rem no-repeat;
}
#top-page .bg-02 {
  background: url(../img/common/bg-02-top.png) top/100% no-repeat, url(../img/common/bg-02-btm.png) bottom -2rem left/58.1% no-repeat;
}

#company-page .bg-01 {
  background: url(../img/common/bg-01-btm.png) top 610px center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 80rem no-repeat, url(../img/company/bg-01.png) right top 34rem no-repeat;
}

.com-tel {
  font-size: 3.8rem;
  color: var(--main-color);
  line-height: 1;
  gap: 1rem;
  align-items: center;
}
.com-tel a {
  display: block;
  background: url("../img/common/tel-icon.png") left center/2.5rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}
.com-tel img {
  width: 23.8rem;
  border-bottom: 1px solid var(--sub-color-02);
}

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

time {
  line-height: 1;
  font-weight: 400;
  padding: 0.5rem 0;
}

/*infotableスタイル*/
.com-desc-tbl {
  padding: 5rem 10rem;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 2px solid var(--sub-color);
}
.com-desc-tbl .dl-item dt {
  width: 160px;
}
.com-desc-tbl .dl-item dd {
  width: 670px;
  line-break: loose;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  padding: 0;
  position: fixed;
}
#header .hd-logo {
  margin-left: 3rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 4rem;
}
#header .hd-right #nav {
  margin-top: 2rem;
}
#header .hd-right #nav .nav-list {
  gap: 3.5rem;
}
#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);
}
#header .mail-btn {
  width: 22rem;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 10rem;
  position: relative;
  z-index: 1;
}
.top-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 7.385;
  position: absolute;
  background: var(--bg-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-img {
  width: 66.666%;
  margin-left: auto;
}
.top-mv .mv-ct {
  width: 31.35%;
  position: absolute;
  left: 5.7%;
  top: 8.6%;
}
.top-mv .mv-deco {
  width: 43.6%;
  position: absolute;
  left: 0;
  bottom: 0;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
  min-height: 340px;
}
#top-news .inbox .ttl01 {
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  width: auto;
}
#top-news .inbox .news-list {
  width: 660px;
  display: grid;
  gap: 2rem;
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 140px;
  aspect-ratio: 1.4;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  max-width: 400px;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 500px;
  gap: 1.5rem 0;
}
#top-news .inbox .com-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*------------△△---NEWS---△△---------*/
#top-about {
  position: relative;
}
#top-about .ttl01 {
  margin-top: 8rem;
  margin-bottom: 13rem;
}
#top-about .com-img {
  position: absolute;
  width: calc(50% - 160px);
  height: 530px;
  top: 7rem;
  left: 0;
}
#top-about .com-txt {
  width: 540px;
  margin-top: 6rem;
}
#top-clients {
  position: relative;
}
#top-clients .inbox {
  min-height: 650px;
}
#top-clients .ttl01 .en {
  letter-spacing: 0;
}
#top-clients ul {
  gap: 2rem;
}
#top-clients ul li {
  color: var(--font-color);
  font-weight: 500;
  background: url("../img/common/check.png") left top 1rem/2.8rem no-repeat;
  padding-left: 4rem;
  box-sizing: border-box;
}
#top-clients .com-img {
  position: absolute;
  width: calc(50% - 20px);
  height: 530px;
  right: 0;
  top: 14rem;
  z-index: -1;
}

#top-other {
  padding: 0;
}
#top-other a {
  width: 33.333%;
  position: relative;
  align-content: center;
  justify-items: center;
  z-index: 1;
}
#top-other a img {
  width: 100%;
}
#top-other a::after {
  content: "";
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  position: absolute;
  background: url("../img/top/other-arw.png") center/contain no-repeat;
  inset: 0 1rem 0 auto;
  margin: auto 0;
}
#top-other a .ttl02 {
  position: absolute;
  font-size: clamp(4.6rem, 3.646vw, 7rem);
  inset: 0;
  display: grid;
  align-content: center;
  z-index: 1;
}
#top-other a .ttl02 .en {
  position: absolute;
  top: 5%;
  left: 0;
  font-size: clamp(11rem, 7.29vw, 14rem);
  z-index: -1;
}
#top-other a .img-box {
  width: 100%;
  height: 100%;
}

#common-contact {
  background: url(../img/common/contact-bg.jpg) top/100% no-repeat;
}
#common-contact .ttl01 {
  position: relative;
}
#common-contact .ttl01::after {
  content: "";
  display: block;
  width: 24rem;
  height: 0.2rem;
  position: absolute;
  background: var(--main-color);
  right: 0;
  top: 10rem;
  margin: auto 0;
}
#common-contact .contact-box {
  gap: 0 2rem;
  margin-bottom: 10rem;
}
#common-contact .contact-box .com-tel {
  width: 590px;
  padding: 3rem 2.5rem;
}
#common-contact .contact-box .mail-btn {
  width: 390px;
}
#common-contact .contact-box .mail-btn .en {
  font-size: 7.8rem;
}
#common-contact .contact-box .mail-btn::before {
  width: 4.2rem;
  height: 4.2rem;
}
#common-contact .recruit-box {
  height: 357px;
  position: relative;
  padding: 2rem;
  gap: 1rem;
}
#common-contact .recruit-box .com-btn {
  width: 520px;
}
#common-contact .recruit-box .com-btn .ja {
  padding-right: 5rem;
  margin-right: 5rem;
  background: url(../img/common/site-arw.png) right center/3.6rem no-repeat;
}
#common-contact .recruit-box .com-btn .en {
  font-size: 11.6rem;
}
#common-contact .recruit-box .com-btn::before {
  width: 5.4rem;
  height: 5.4rem;
}
#common-contact .recruit-box .com-btn::after {
  content: none;
}
#common-contact .recruit-box .img-box {
  position: absolute;
  bottom: 0;
  right: -4rem;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
}

#footer {
  position: relative;
}
#footer .ft-area {
  padding: 7rem 0;
}
#footer .ft-area .ft-le {
  width: 50%;
  gap: 4rem 0;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info dt {
  padding-right: 1rem;
  border-right: 1px solid var(--main-color);
  margin-right: 1rem;
}
#footer .ft-area .ft-ri {
  gap: 3rem;
  width: 50%;
  align-content: space-between;
}
#footer .ft-area .ft-ri .line-btn {
  width: 290px;
  height: 66px;
  margin: 0;
}
#footer .nav-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2.3rem;
}
#footer .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.job-area {
  padding: 10rem 0;
}
.job-area .txt-box {
  width: 500px;
  order: 1;
}
.job-area .txt-box .ttl01 {
  margin-bottom: 4rem;
}
.job-area .point-box {
  margin-top: 10rem;
  order: 2;
}
.job-area .point-box .ttl02 {
  margin-bottom: 6rem;
}
.job-area .point-box .num-list li {
  width: 34rem;
}

#feature ol {
  gap: 7rem;
}
#feature ol li .txt-box {
  width: 580px;
  padding-left: 6rem;
}
#feature ol li .txt-box .ttl03 {
  margin-bottom: 1rem;
}
#feature ol li .txt-box .num {
  top: -8rem;
  left: -6rem;
}
#feature ol li:nth-child(odd) {
  flex-direction: row-reverse;
}

.case-area {
  padding: 15rem 0;
  background: url(../img/common/bg-01-top.png) top/100% 80rem no-repeat;
}

.case-item .com-img {
  aspect-ratio: 1.3125;
}
.case-item .com-img .txt-cap {
  padding: 0.5rem 1rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 8rem;
  text-align: center;
}
.case-item .bfaf-box {
  position: relative;
  margin-bottom: 2rem;
}
.case-item .bfaf-box::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  background: url("../img/case/arw.png") center/contain no-repeat;
  inset: 0;
  margin: auto;
}

.case-list {
  gap: 4rem 0;
}
.case-list .case-item {
  width: 520px;
  padding: 3rem;
}
.case-list .case-item .com-img {
  width: 21rem;
}

.case-detail {
  padding: 7rem;
}
.case-detail .bfaf-box {
  margin-bottom: 3rem;
}
.case-detail .com-img {
  width: 420px;
}
.case-detail .ttl03 {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--main-color);
}

#company-greeting .txt-box {
  width: 720px;
}

#company-philosophy .inbox {
  gap: 0 7rem;
}
#company-philosophy .txt-box {
  width: 390px;
}
#company-philosophy .txt-box .ttl02 {
  margin-bottom: 4rem;
}

#company-guide ul {
  gap: 4rem;
}
#company-info .com-desc-tbl {
  margin-bottom: 10rem;
}
#company-info .map-box {
  width: 510px;
}
#company-info .map-box .map {
  height: 48rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 10rem;
  position: relative;
}
.sv .com-img {
  width: calc(50% + 320px);
  height: 500px;
  margin-left: auto;
}
.sv::after {
  content: "";
  display: block;
  width: 83.6rem;
  height: auto;
  aspect-ratio: 1.7584;
  position: absolute;
  background: url("../img/top/mv-deco.png") center/contain no-repeat;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.sv::before {
  content: "";
  display: block;
  width: 100%;
  height: 13rem;
  position: absolute;
  background: var(--bg-color);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.sv .sv-catch {
  position: absolute;
  display: grid;
  align-content: center;
  max-width: 1500px;
  width: 78.125%;
  margin: 0 auto;
  inset: 0;
  font-size: 5.4rem;
  z-index: 10;
}
.sv .sv-catch span {
  display: inline-block;
  width: 700px;
  padding: 2rem;
}

/*---------------------------△△---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: 12rem 0;
  background: url(../img/common/bg-01-btm.png) top 610px center/100% no-repeat, url(../img/common/bg-01-top.png) top/100% 80rem no-repeat;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#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(--main-color);
  color: #fff;
  border-radius: 0;
}

/*---------------------------△△---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;
  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;
  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---△△------------------------*/