@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: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 5rem;
}

.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-txt {
  line-height: 2.375;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

.com-btn {
  letter-spacing: 0.28em;
  position: relative;
  padding-right: 3rem;
  margin-top: 3rem;
  display: inline-block;
  letter-spacing: 0.28em;
}
.com-btn::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 3;
  position: absolute;
  border-bottom: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  bottom: 0;
  right: 0;
  transform: skewX(45deg);
}
.com-btn:hover {
  transform: translateX(1rem);
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 7rem;
}
.ttl01 .en {
  font-size: 6.4rem;
}
.ttl01 .en::first-letter {
  color: var(--main-color);
}
.ttl01 .ja {
  font-size: 2.6rem;
  line-height: 1.8;
}
.ttl01.txt-le {
  justify-items: start;
}
.ttl01.flex {
  display: flex !important;
  align-items: end;
  gap: 1rem;
}
.ttl01.flex .en {
  font-size: 6rem;
}
.ttl01.flex .ja {
  font-size: 3rem;
}
.ttl01.flex .ja::before {
  content: "/";
  font-size: 1.2em;
}

.ttl02 {
  font-size: 2.6rem;
}

.ttl03 {
  font-size: 2.4rem;
}
.ttl03 .big {
  font-size: 1.66em;
}

.ttl04 {
  font-size: 2rem;
}

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}

.com-stl {
  position: relative;
}
.com-stl .txt-box {
  width: 665px;
}
.com-stl .img-box {
  width: 340px;
  display: grid;
  place-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
.com-stl.rvs .img-box {
  left: 0;
}
.com-stl.rvs .txt-box {
  margin-left: auto;
}

.txt-box.bd-btm {
  padding-bottom: 2rem;
}
.txt-box.bd-btm-wt {
  padding-bottom: 2rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  padding: 0 5px;
  line-height: 1;
}

time {
  line-height: 1 !important;
}

.bd-dbl {
  width: 720px;
  margin: 5rem auto 0;
  padding: 3rem;
}

.mail-btn {
  width: 240px;
  height: 80px;
  font-size: 2rem;
}
.mail-btn span {
  letter-spacing: 0;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.5rem;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 250px;
  padding: 0 1rem;
  border-left: 2px solid var(--main-color);
}
.com-desc-tbl .dl-item dd {
  width: 800px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 0;
}
#header .hd-logo {
  margin-left: 1.7rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right {
  gap: 40px;
}
#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);
}
#header .hd-right #nav .nav-list .nav-item .drop-down {
  transition: 0.3s;
  gap: 5px;
  position: relative;
  cursor: pointer;
}
#header .hd-right #nav .nav-list .nav-item .drop-down::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  position: absolute;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: var(--accent-color);
  inset: 0 -10px 0 auto;
  margin: auto 0;
}
#header .hd-right #nav .nav-list .nav-item .nav-child-list {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  width: 120%;
  position: absolute;
  min-width: 120px;
  top: 30px;
  left: -20px;
  z-index: 50;
  background: #fff;
  border-radius: 6px;
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item .nav-child-list .child-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item .nav-child-list .child-item:not(:last-child) {
  border-bottom: 1px solid var(--accent-color);
}
#header .hd-right #nav .nav-list .nav-item .nav-child-list .child-item a {
  text-align: center;
  display: block;
  padding: 15px 0;
}
#header .hd-right #nav .nav-list .nav-item .nav-child-list .child-item a:hover {
  opacity: 1;
  color: #fff;
  background: var(--main-color);
}
#header .hd-right #nav .nav-list .nav-item:hover .nav-child-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  height: 43.75vw;
  min-height: 560px;
  background: url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  width: 25.8%;
  position: absolute;
  left: 2.8%;
  bottom: 10%;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox-02 {
  position: relative;
}
#top-news .inbox-02 .ttl01 {
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  padding-bottom: 1rem;
}
#top-news .inbox-02 .news-list {
  width: 100%;
  display: grid;
}
#top-news .inbox-02 .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
#top-news .inbox-02 .news-list .news-item a {
  padding: 4rem 0;
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox-02 .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox-02 .news-list .news-item a .com-img {
  width: 220px;
  aspect-ratio: 1.375;
}
#top-news .inbox-02 .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox-02 .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox-02 .news-list .news-item a .tag-list {
  max-width: 670px;
}
#top-news .inbox-02 .news-list .news-item a .txt-box {
  display: flex;
  width: 825px;
  gap: 10px 20px;
}
#top-news .inbox-02 .com-btn {
  position: absolute;
  right: 5rem;
  top: 5rem;
}

/*------------△△---NEWS---△△---------*/
#top-concept {
  padding: 0;
  position: relative;
}
#top-concept::before {
  content: "";
  display: block;
  width: 4rem;
  height: 100%;
  position: absolute;
  background: var(--bg-color-02);
  top: 0;
  left: 12%;
}
#top-concept::after {
  content: "";
  display: block;
  width: 4rem;
  height: 100%;
  position: absolute;
  background: var(--bg-color-02);
  top: 0;
  right: 10%;
}
#top-concept .inbox-02 {
  padding-bottom: 0;
  position: relative;
  z-index: 10;
}

#top-story {
  margin-top: 20rem;
  background: url(../img/top/our-bg-top.png) top/100% 1080px no-repeat, url(../img/top/our-bg-btm.png) bottom/100% no-repeat, url(../img/top/our-bg.png) center no-repeat;
}
#top-story .ttl01 {
  position: absolute;
  inset: -6.5rem 0 auto 0;
  margin: 0 auto;
}
#top-story ol {
  gap: 28rem;
  display: grid;
}
#top-story ol li .ttl02 {
  gap: 1rem;
  margin-bottom: 4rem;
}
#top-story ol li .ttl02 .flex {
  gap: 1.6rem;
}
#top-story ol li .num {
  background: linear-gradient(160deg, var(--font-color) 50%, var(--main-color) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#top-story ol .ft-wt .num {
  background: linear-gradient(160deg, #fff 50%, var(--main-color) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#top-sns .inbox {
  gap: 5rem 2rem;
}
#top-sns a {
  padding: 3.5rem 3rem;
  position: relative;
  z-index: 1;
}
#top-sns a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  right: -0.6rem;
  bottom: -0.6rem;
}
#top-sns a .ttl03 {
  margin-bottom: 1.5rem;
}
#top-sns a .ttl03.flex {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
#top-sns a .ttl03 img {
  height: 5.6rem;
}
#top-sns a .com-btn {
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0;
}
#top-sns .line-bnr {
  width: 680px;
  background: url(../img/top/sns-bg-01.jpg) center/cover;
}
#top-sns .inst-bnr {
  width: 530px;
  background: url(../img/top/sns-bg-03.jpg) center/cover;
}
#top-sns .ft-clr02 {
  background: url(../img/top/sns-bg-02.jpg) center/cover;
}

#top-order .ttl-box {
  margin-bottom: 5rem;
}
#top-order .ttl-box .ttl01 {
  width: auto;
}
#top-order .ttl-box .com-txt {
  width: 510px;
}
#top-order .bg-clr01 {
  padding: 5rem;
}
#top-order ul li {
  width: 520px;
  padding: 3rem 2rem 2rem;
}
#top-order ul li a {
  height: 5rem;
}
#top-order ul li .ttl04 {
  margin-bottom: 2rem;
}
#top-order ul li .com-txt {
  margin-bottom: 3rem;
}

.side {
  width: 200px;
  height: 80px;
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 20px;
  align-content: center;
  background: linear-gradient(135deg, #434343 90%, var(--main-color) 90%);
}
.side .en {
  font-size: 22px;
}
#footer {
  padding: 10rem 0;
  position: relative;
}
#footer .ft-area .ft-ri {
  gap: 3rem;
}
#footer .ft-area .ft-ri .site-li {
  gap: 1rem;
}
#footer .ft-area .ft-ri .site-li li a {
  width: 18rem;
  height: 5rem;
}
#footer .ft-area .ft-ri .sns-list {
  margin-top: 1rem;
}
#footer .ft-area .ft-ri .sns-list span {
  height: 2.5rem;
  display: inline-block;
  margin-top: 0.5rem;
}
#footer .ft-area .ft-ri .sns-list span img {
  height: 100%;
}
#footer .ft-area .ft-btm {
  width: 100%;
  margin-top: 3rem;
  padding-top: 4rem;
  border-top: 1px solid var(--bd-color);
}
#footer .ft-area .ft-btm .nav-list {
  display: flex;
  justify-content: space-between;
}
#footer .ft-area .ft-btm .nav-list .nav-item {
  line-height: 1;
  color: var(--bd-color);
}
#footer .copyright {
  font-size: 1.2rem;
  margin-top: 4rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#commit-about {
  padding-bottom: 18rem;
}
#commit-about .inbox-02 {
  position: relative;
}
#commit-about .inbox-02::after {
  content: "";
  display: block;
  width: 100%;
  height: 9rem;
  position: absolute;
  background: linear-gradient(to bottom, #fff, var(--bg-color));
  left: 0;
  bottom: -8.9rem;
}
#commit-about .txt-box {
  width: 610px;
}

#commit-brand .img-box {
  margin-bottom: 7rem;
}

#commit-feature ul {
  margin-bottom: 7rem;
  gap: 0.4rem;
}
#commit-feature ul li {
  width: 538px;
  padding: 3rem 2rem;
}
#commit-feature ul li .ttl02 {
  margin-bottom: 3rem;
}

.men-bg {
  position: relative;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.men-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 11rem;
  position: absolute;
  background: linear-gradient(to top, var(--accent-color), var(--bg-color-02));
  left: 0;
  top: -10.9rem;
}
.men-bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 11rem;
  position: absolute;
  background: linear-gradient(to bottom, var(--accent-color), var(--bg-color-02));
  left: 0;
  bottom: -10.9rem;
}

#commit-women .ttl03, #commit-men .ttl03 {
  line-height: 2;
  margin-bottom: 5rem;
}
#commit-women .img-box, #commit-men .img-box {
  order: 1;
}
#commit-women .bd-dbl, #commit-men .bd-dbl {
  order: 2;
}
#commit-women .bd-dbl .ttl03, #commit-men .bd-dbl .ttl03 {
  margin-bottom: 3rem;
}

.best-area .ttl01 .ja img {
  display: inline-block;
  margin-right: 1rem;
  height: 6rem;
}
.best-area .ttl-bd {
  font-size: 3.2rem;
  margin-bottom: 5rem;
}
.best-area .ttl-bd.en {
  font-size: 4rem;
}
.best-area .ttl-bd.en::first-letter {
  color: var(--main-color);
}
.best-area .best-box {
  margin-top: 13rem;
}
.best-area .best-box .best-img {
  width: 340px;
}
.best-area .best-box .txt-box {
  width: 665px;
  display: grid;
  gap: 4rem;
}
.best-area .best-box .ttl03 {
  gap: 2rem;
}
.best-area .best-box .link {
  display: flex;
  gap: 2rem;
}

#company-business .ttl02 {
  margin-top: 7rem;
  margin-bottom: 4rem;
}

.com-stl .ttl02 {
  margin-bottom: 4rem;
}
#company-access {
  padding-bottom: 0;
}
#company-access .map {
  height: 40rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  margin-bottom: 3rem;
}
.sv-area .sv {
  height: 360px;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
}
.sv-area .sv-catch {
  width: 720px;
  height: 130px;
  display: grid;
  justify-items: center;
  align-content: center;
  background: rgba(59, 55, 72, 0.6);
  gap: 2rem;
  line-height: 1;
}
.sv-area .sv-catch .ja {
  font-size: 4.6rem;
  letter-spacing: 0.2em;
}
.sv-area .sv-catch .en {
  font-size: 2.4rem;
}
.sv-area .sv-catch .en::before {
  content: "-";
}
.sv-area .sv-catch .en::after {
  content: "-";
}

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

.men-sv {
  background-image: url(../img/sv/men.jpg);
  background-position: right !important;
}

.women-sv {
  background-image: url(../img/sv/women.jpg);
  background-position: right !important;
}

.company-sv {
  background-image: url(../img/sv/news.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: -25px;
  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;
}

/*---------------------------▽▽---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: 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---△△------------------------*/