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

.inbox-02 {
  width: 1280px;
  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.8rem;
  line-height: 1.5;
}

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

section {
  padding: 15rem 0;
}

.dl-item {
  display: flex;
}

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

.mail-icon {
  background: url("../img/common/mail-icon.png") left center/2.5rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}

.mail-btn {
  width: 270px;
  height: 55px;
  font-size: 2rem;
  display: grid;
  justify-items: center;
  align-content: center;
  border-radius: 50vw;
}
.mail-btn.bg-acc .mail-icon {
  background: url("../img/common/mail-icon-ft.png") left center/2.5rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}

.com-btn {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 280px;
  height: 70px;
  font-size: 2.4rem;
  border-radius: 50vw;
  position: relative;
  background: var(--grd-color);
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 4.7rem;
  height: 4.9rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0.5rem 0 auto;
  margin: auto 0;
}
.flex > .ttl01 {
  width: 100%;
}

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

.ttl02 {
  font-size: 3.5rem;
}

.ttl03 {
  font-size: 2.6rem;
}

.ttl04 {
  font-size: 2.2rem;
}

.txt-cap {
  font-size: 1.6rem;
  line-height: 1;
}

.ttl-stl {
  margin-top: -10rem;
  margin-bottom: 3rem;
}
.ttl-stl span {
  display: inline-block;
  padding: 1rem;
}

.com-num {
  font-size: 3.5rem;
  width: 7rem;
  aspect-ratio: 1;
  line-height: 1;
  color: #fff;
  background: var(--main-color);
  display: grid;
  justify-items: center;
  align-content: center;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.5rem 0rem 1.5rem 0rem;
}

.com-tel {
  width: auto;
  flex-wrap: wrap;
  align-items: center;
}
.com-tel .tel-ttl {
  padding: 0.5rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  display: inline-block;
  transform: translateY(-0.5rem);
}
.com-tel a::before {
  content: "TEL";
  font-size: 0.93em;
}
.com-tel .tel-img {
  display: block;
  margin-top: 1rem;
}

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

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

.pd-box-01 {
  padding: 7rem 8rem;
}

.pd-box-02 {
  padding: 4rem;
}

.com-txt-box {
  width: 540px;
}

.img-box-le {
  margin-left: -10rem;
}

.img-box-ri {
  margin-right: -10rem;
}

.bg-01 {
  position: relative;
  z-index: 1;
}
.bg-01::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 900px);
  position: absolute;
  z-index: -1;
  left: 0;
  top: -470px;
  background: url(../img/common/bg-deco-le.png) left top/55% no-repeat, url(../img/common/bg-deco-ri.png) right bottom no-repeat;
}

.bg-02 {
  width: 92%;
  min-width: 1280px;
  margin: 0 auto;
  background: url(../img/common/bg-02.jpg) top/cover;
  border-radius: 2rem;
  position: relative;
  z-index: 100;
}

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

time {
  font-family: var(--en-font);
  line-height: 1;
  padding: 0.5rem 0;
}

/*infotableスタイル*/
.com-desc-tbl {
  border: 3px solid var(--main-color);
  border-radius: 1rem;
  overflow: hidden;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) dt {
  border-bottom: 3px solid #fff;
}
.com-desc-tbl .dl-item:not(:last-child) dd {
  border-bottom: 3px solid var(--main-color);
}
.com-desc-tbl .dl-item dt {
  color: #fff;
  display: grid;
  align-content: center;
  width: 350px;
  padding: 2.5rem 5rem;
}
.com-desc-tbl .dl-item dd {
  padding: 2.5rem 5rem;
  width: 730px;
  background: #fff;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

.recruit-tbl {
  border-color: var(--font-color);
}
.recruit-tbl .dl-item:not(:last-child) dd {
  border-bottom: 3px solid var(--font-color);
}

.map {
  height: 360px;
  margin-top: 7rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 100;
  padding: 30px 60px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 3rem;
  margin-bottom: 2rem;
}
#header .hd-right .hd-top .com-tel a {
  font-size: 3.2rem;
}
#header .hd-right #nav .nav-list {
  gap: 30px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-size: 2.2rem;
  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: "";
  background: url(../img/common/nav-arw.png) center/contain no-repeat;
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  inset: auto 0 -1rem 0;
  margin: 0 auto;
  transform: translateY(1rem);
  transition: 0.5s;
  opacity: 0;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: translateY(0);
  opacity: 1;
}
#header .hd-right #nav .nav-list .nav-item .current::after {
  transform: translateY(0);
  opacity: 1;
}

.mail-btn-box {
  gap: 3rem;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  aspect-ratio: 2.06;
  display: grid;
  align-content: center;
  justify-items: end;
  background: url(../img/top/mv-bg.jpg) center/cover;
  border-top: 5px solid var(--main-color);
}
.top-mv .mv-ct {
  width: 43%;
  margin-right: 7%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about .inbox {
  position: relative;
}
#top-about .inbox .com-txt-box .com-btn {
  margin-top: 6rem;
}
#top-about .inbox .img-ri {
  margin-right: -20rem;
}
#top-about .inbox .img-02 {
  position: absolute;
  left: -22vw;
  top: 570px;
  z-index: -1;
}
#top-about .inbox .area-box {
  margin-top: 10rem;
  border-top: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  width: 100%;
  gap: 11.5rem;
}
#top-about .inbox .area-box .ttl04 {
  font-size: 2.4rem;
}

#top-reason .inbox {
  position: relative;
}
#top-reason ol {
  gap: 6rem 0rem;
}
#top-reason ol li {
  position: relative;
  width: 510px;
}
#top-reason ol li .ttl03 {
  padding: 2.5rem 2rem;
}
#top-reason .com-btn {
  position: absolute;
  right: 0;
  top: 4rem;
}

#top-recruit {
  background: url(../img/top/rec-bg.png) top 12rem center/100% no-repeat;
}
#top-recruit .rec-li {
  margin-top: 8rem;
}
#top-recruit .rec-li a {
  width: 620px;
  height: 300px;
  padding: 5rem;
  position: relative;
}
#top-recruit .rec-li a .ttl01 {
  margin: 0;
}
#top-recruit .rec-li a .ttl01 .en {
  font-size: 2.8rem;
}
#top-recruit .rec-li a .ttl01 .ja {
  font-size: 3.4rem;
}
#top-recruit .rec-li a::after {
  content: "";
  display: block;
  width: 7rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url(../img/common/btn-arw.png) center no-repeat, var(--main-color);
  bottom: 0;
  right: 0;
  border-radius: 1rem 0rem 0rem 0rem;
}

#top-entry {
  background: url(../img/top/entr-bg-le.png) left bottom -1rem no-repeat, url(../img/top/entr-bg-ri.png) right top -1rem no-repeat, url(../img/top/entr-bg.png) bottom right no-repeat, var(--bg-color);
  width: 93%;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
#top-entry .ttl01 .en {
  font-size: 3.5rem;
}
#top-entry .ttl01 .ja {
  font-size: 6.5rem;
}
#top-entry .rntr-box {
  padding: 4rem 6rem;
}
#top-entry .com-tel a {
  font-size: 3.8rem;
}
#top-entry .mail-btn {
  width: 440px;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  gap: 6rem;
}
#top-news .inbox .news-list .news-item a {
  width: 320px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1.14;
  margin-bottom: 2rem;
}
#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 .news-list .news-item a .tag-list {
  width: 200px;
}
#top-news .inbox .news-list .news-item a .txt-box {
  gap: 1rem;
}
#top-news .inbox .com-btn {
  position: absolute;
  right: 0;
  top: 4rem;
}

/*------------△△---NEWS---△△---------*/
.pagetop {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
}

#footer {
  padding: 100px 0;
  position: relative;
  z-index: 10;
  background: url(../img/common/ft-bg.jpg) center/cover;
}
#footer .ft-area {
  gap: 8rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 4rem;
}
#footer .ft-area .ft-le .ft-logo {
  margin-bottom: 2rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .com-tel {
  font-size: 2.4rem;
}
#footer .ft-area .ft-le .ft-info-box .com-tel .tel-ttl {
  margin: 0;
  padding: 0;
  transform: translate(0);
}
#footer .ft-area .ft-le .ft-info-box .com-tel .tel-img {
  margin-top: 0.5rem;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 4rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-sub-nav {
  order: 4;
}
#footer .ft-area .ft-sub-nav .ft-nav-02 {
  display: flex;
}
#footer .ft-area .ft-sub-nav .ft-nav-02 li:not(:last-child) {
  padding-right: 2rem;
  border-right: 1px solid #fff;
  margin-right: 2rem;
}
#footer .ft-area .copyright {
  font-size: 1.5rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-work ul {
  width: 100%;
  margin-top: 7rem;
}
#about-work ul li {
  width: 500px;
  padding: 4rem 6rem;
}
#about-work ul li .ttl02 {
  margin-bottom: 1.5rem;
}

#about-job .com-txt-box {
  width: 500px;
}
#about-job .job-box {
  padding: 7rem 6rem 5rem;
  width: 1200px;
  margin-top: 9rem;
}
#about-job .job-box ul li {
  width: 260px;
  padding: 1rem;
}

#about-flow .flow-box {
  background: url(../img/about/flow-bg.jpg) bottom center/cover;
  margin-top: 10rem;
  padding: 12rem 10rem;
}
#about-flow .flow-box .com-txt {
  margin-top: 4rem;
}
#about-flow ol {
  gap: 8rem 5.7rem;
}
#about-flow ol li {
  width: 320px;
  padding: 5rem 2rem 2rem;
  position: relative;
  align-content: start;
}
#about-flow ol li .bg-main {
  width: 260px;
}
#about-flow ol li .ft-clr01 {
  min-height: 7rem;
}
#about-flow ol li .img-box {
  margin-bottom: 2rem;
}
#about-flow ol li:not(:first-child):not(:nth-child(3n+1))::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 auto 0 -4rem;
}

#company-reason ol {
  gap: 7rem;
}
#company-reason ol li:nth-child(even) {
  flex-direction: row-reverse;
}
#company-reason ol li .ttl02 {
  gap: 1rem;
  margin-bottom: 2.5rem;
}
#company-reason ol li .ttl02 .num {
  font-size: 5rem;
}

#company-voice .voice-li {
  gap: 8rem;
}
#company-voice .voice-li .voice-item .ttl-deco {
  position: relative;
  padding-left: 3rem;
}
#company-voice .voice-li .voice-item .ttl-deco::before {
  content: "";
  display: block;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: var(--main-color);
  left: 0;
  top: 1rem;
}
#company-voice .voice-li .voice-item .prf-box {
  width: 300px;
}
#company-voice .voice-li .voice-item .prf-box .img-box {
  margin-bottom: 2rem;
}
#company-voice .voice-li .voice-item .prf-box .prf-li {
  gap: 0.5rem;
}
#company-voice .voice-li .voice-item .txt-li {
  gap: 3rem;
  width: 570px;
}
#company-voice .voice-li .voice-item .txt-li .txt-item .ttl03 {
  margin-bottom: 1.5rem;
}

.recom-area ul {
  gap: 3rem 4rem;
}
.recom-area ul li {
  width: 520px;
  font-size: 2.8rem;
  padding: 1.5rem;
}
.recom-area ul li:last-child {
  width: 650px;
}

.charm-area .inbox-02 {
  width: 1220px;
}
.charm-area ol {
  gap: 6rem;
}
.charm-area ol li {
  padding: 7rem;
}
.charm-area ol li .com-txt-box .ttl02 {
  margin-bottom: 3rem;
}

.career-area ol {
  position: relative;
  margin-top: 13rem;
  padding-bottom: 12.5rem;
}
.career-area ol::after {
  content: "";
  display: block;
  width: 76.2rem;
  height: 11.6rem;
  position: absolute;
  background: url("../img/common/care-line.png") center/contain no-repeat;
  inset: auto 0 0 0;
  margin: 0 auto;
}
.career-area ol li {
  width: 320px;
  padding: 7rem 3rem 3rem;
  position: relative;
}
.career-area ol li::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: auto 0 -8rem 0;
  margin: 0 auto;
  background: var(--main-color);
  border-radius: 50vw;
}
.career-area ol li::after {
  content: "";
  display: block;
  width: 5rem;
  height: 3rem;
  position: absolute;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -2.9rem 0;
  margin: 0 auto;
}
.career-area ol li:first-child {
  transform: translateY(6rem);
}
.career-area ol li:last-child {
  transform: translateY(-6rem);
}
.career-area ol li .ttl-stl {
  font-size: 4rem;
  width: 100%;
}
.career-area ol li .ttl-stl span {
  width: 100%;
}
.career-area ol li .img-box {
  margin-bottom: 2rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  background: url(../img/sv/deco-le.png) bottom left/11% no-repeat, url(../img/sv/deco-ri.png) top right/11% no-repeat, url(../img/sv/bg.jpg) bottom/cover;
}
.sv .sv-catch {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 820px;
  height: 105px;
  font-size: 6rem;
}
.sv .sv-img {
  width: 68%;
}

/*---------------------------△△---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 {
  position: relative;
  z-index: 1;
}
.com-other-page::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 900px);
  position: absolute;
  z-index: -1;
  left: 0;
  top: -470px;
  background: url(../img/common/bg-deco-le.png) left top/55% no-repeat, url(../img/common/bg-deco-ri.png) right bottom no-repeat;
}

/*---------------------------▽▽---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: 150px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 850px;
}
#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: 150px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

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

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

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

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

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

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

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

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