@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.8rem;
  line-height: 1.5;
}

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

section {
  padding: 100px 0;
}

#top-page section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 1.8;
  text-align: justify;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 30px;
}

.com-btn {
  border-radius: 5px;
  width: 250px;
  height: 60px;
  font-size: 2rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: var(--main-color);
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: auto;
  aspect-ratio: 2;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 15px 0 auto;
  margin: auto 0;
}

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

.ttl01 {
  font-size: 4rem;
  margin-bottom: 50px;
  text-align: center;
}
.ttl01 .big {
  font-size: 1.25em;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2rem;
}

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

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  font-size: 3rem;
  font-family: var(--en-font);
  color: var(--main-color);
}
.com-tel a::before {
  content: "tel.";
  font-size: 0.666em;
}
.com-tel dl {
  color: var(--main-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: #fff;
  background: var(--bd-color);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.com-pd-box {
  width: 1280px;
  padding: 100px;
  border-radius: 10px;
  margin: 0 auto;
}

.ttl-deco01 {
  border-radius: 5px;
  padding: 15px 30px;
  background: #fff;
  color: var(--sub-color);
  position: relative;
}
.ttl-deco01::before {
  content: "";
  display: block;
  width: 6px;
  height: 40px;
  position: absolute;
  background: var(--sub-color);
  border-radius: 50vw;
  inset: 0 auto 0 0;
  margin: auto 0;
}

.ttl-bg {
  padding: 15px;
}

.ttl-danger {
  position: relative;
}
.ttl-danger::before {
  content: "";
  display: block;
  width: 48px;
  height: auto;
  aspect-ratio: 1.1;
  position: absolute;
  background: url("../img/common/danger-deco.png") center/contain no-repeat;
  top: -20px;
  left: -20px;
}

.mark {
  padding-bottom: 5px;
  display: inline-block;
  background: linear-gradient(to top, var(--accent-color-02), var(--accent-color-02) 35px, transparent 35px, transparent);
}

.check-item {
  padding: 3px 0 7px;
  background: url("../img/common/check.png") left top 5px/auto no-repeat;
  padding-left: 45px !important;
  box-sizing: border-box;
}

.check-item-02 {
  background: url("../img/common/check-02.png") left top 8px/auto no-repeat;
  padding-left: 25px !important;
  box-sizing: border-box;
}

.contact-area {
  background: url(../img/common/contact-bg.jpg) center/cover;
}

.contact-box {
  background: #fff;
  border-radius: 5px;
  gap: 110px;
  padding: 30px 60px;
  position: relative;
  width: 1080px;
}
.contact-box .ill-le {
  left: -125px;
  bottom: -75px;
}
.contact-box .ill-ri {
  right: -115px;
  bottom: -75px;
}
.contact-box .com-tel a {
  font-size: 4rem;
}

#common-contact {
  padding: 100px 0 75px;
}

.line-btn {
  display: grid;
  place-items: center;
  background: var(--accent-color);
  width: 430px;
  height: 90px;
  font-weight: 700;
  border-radius: 5px;
}
.line-btn span {
  background: url("../img/common/line-icon.svg") left center/40px no-repeat;
  padding-left: 70px !important;
  box-sizing: border-box;
}

.map {
  height: 400px;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 200px;
  padding: 17px 20px;
}
.com-desc-tbl .dl-item dd {
  background: #f4fbff;
  width: 880px;
  padding: 17px 20px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 40px 80px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav {
  margin-top: 8px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-weight: 700;
  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);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 300px, #fff 300px, #fff);
}
.top-mv .mv-ct {
  position: absolute;
  width: 37.7%;
  top: 18%;
  left: 0;
  margin: auto 0;
  z-index: 30;
}
.top-mv .mov-box {
  width: 64.84375%;
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  overflow: hidden;
}
.top-mv .mov-box video {
  display: block;
  width: 100%;
  height: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
.side-btn {
  width: 183px;
  align-content: center;
  gap: 20px;
  position: fixed;
  z-index: 200;
  right: 30px;
  bottom: 30px;
}

#top-danger {
  padding-top: 200px;
}
#top-danger .ttl01 {
  margin-bottom: 70px;
}
#top-danger .dng-li {
  gap: 420px 130px;
}
#top-danger .dng-li li {
  width: 265px;
  outline: 8px solid #fff;
  position: relative;
  z-index: 10;
}
#top-danger .img-box {
  margin: 0 auto;
  text-align: center;
  position: absolute;
  inset: auto 0 368px 0;
  z-index: 1;
}
#top-danger .img-box::before {
  content: "";
  display: block;
  width: 660px;
  height: auto;
  aspect-ratio: 0.985;
  position: absolute;
  background: url("../img/top/danger-arw.png") center/contain no-repeat;
  left: 330px;
  top: -165px;
}

#top-risk {
  background: url(../img/common/bg-deco-le.png) left bottom/32% no-repeat, url(../img/common/bg-deco-ri.png) right top/46% no-repeat;
}
#top-risk .txt-box {
  width: 580px;
}
#top-risk .txt-box .ft-clr02 {
  font-weight: 900;
}
#top-risk .ill-box {
  left: -145px;
  bottom: -55px;
}

#top-service {
  padding: 0;
  background: linear-gradient(to top, #fff4b7, #fff 60%);
}
#top-service ul {
  width: auto;
  gap: 0.5%;
}
#top-service ul li {
  width: clamp(410px, 32%, 616px);
}
#top-service ul li a {
  position: relative;
}
#top-service ul li a::after {
  content: "";
  display: block;
  width: 78px;
  height: 78px;
  position: absolute;
  background: url("../img/top/bnr-arw.png") center/contain no-repeat;
  inset: 0 45px 0 auto;
  margin: auto 0;
}
#top-service ul li a .ttl01 {
  gap: 10px;
  font-weight: 700;
  margin: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9.7%;
  z-index: 10;
  align-content: center;
}
#top-service ul li a .ttl01 small {
  font-size: 2rem;
}

#top-fail {
  padding: 170px 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 170px), 50% 100%, 0 calc(100% - 170px));
  background: linear-gradient(to bottom, #fff4b7, var(--accent-color-02) 40%);
}
#top-fail .ttl01 .ft-clr02 {
  font-size: 1.75em;
}
#top-fail ul {
  gap: 10px;
  width: 584px;
}
#top-fail ul li {
  padding: 25px 20px;
}

#top-point {
  position: relative;
}
#top-point::before {
  content: "";
  display: block;
  width: 88px;
  height: auto;
  aspect-ratio: 0.814;
  position: absolute;
  background: url("../img/common/sec-arw.png") center/contain no-repeat;
  inset: -35px 0 auto 0;
  margin: 0 auto;
}
#top-point .ttl01 {
  margin-bottom: 85px;
}
#top-point ol {
  gap: 80px 0;
}
#top-point ol li {
  width: 340px;
  padding: 35px 15px 15px;
}
#top-point ol li .ttl02 {
  margin-bottom: 20px;
  min-height: 90px;
  align-content: center;
}
#top-point ol li .ttl02 .num {
  width: 62px;
  inset: -33px 0 auto 0;
  margin: 0 auto;
}
#top-point ol li .txt-box {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 25px 20px 20px;
}
#top-point ol li .txt-box .ill-box {
  display: grid;
  align-content: center;
  text-align: center;
  min-height: 192px;
}
#top-point ol li .txt-box .com-txt {
  letter-spacing: 0.005em;
}

#top-contact .txt-box {
  width: 550px;
}
#top-contact .txt-box ul {
  margin-top: 40px;
  gap: 25px;
}
#top-contact .txt-box ul li {
  margin: 0;
  width: 150px;
  border: 1px solid #fff;
  align-content: center;
  gap: 10px;
}
#top-contact .txt-box ul li::before {
  content: "";
  display: block;
  width: 32px;
  height: auto;
  aspect-ratio: 1.39;
  position: absolute;
  background: url("../img/top/contact-check.png") center/contain no-repeat;
  position: static;
}
#top-contact .contact-box {
  margin-top: 65px;
  width: 100%;
}

#common-bnr a {
  position: relative;
  padding: 75px 0;
  background: url(../img/common/insta-bnr.jpg) center/cover;
}
#common-bnr a .ttl01 {
  display: grid;
  align-content: center;
  justify-items: center;
  inset: 0;
  gap: 30px;
  margin: 0;
  font-weight: 700;
}
#common-bnr a::after {
  content: "";
  display: block;
  width: 78px;
  height: 78px;
  position: absolute;
  background: url("../img/top/bnr-arw.png") center/contain no-repeat;
  inset: 0 50px 0 auto;
  margin: auto 0;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding: 50px 0 150px;
  background: url(../img/top/news-le.png) left bottom/30% no-repeat, url(../img/top/news-ri.png) right bottom/26% no-repeat;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 250px;
  min-height: 200px;
  margin: 0;
  padding: 20px 0;
}
#top-news .inbox .news-list {
  width: 700px;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#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 {
  max-width: 570px;
}
#top-news .inbox .com-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

/*------------△△---NEWS---△△---------*/
#footer {
  padding: 100px 0;
  position: relative;
  background: var(--font-color);
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 50px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  align-content: space-between;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 35px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
  font-size: 2rem;
  font-weight: 500;
}
#footer .copyright {
  font-weight: 300;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.danger-area {
  position: relative;
}
.danger-area .dot {
  background-image: radial-gradient(circle at center, var(--font-color) 15%, transparent 15%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.4em;
  padding-top: 0.4em;
}
.danger-area::after {
  content: "";
  display: block;
  width: 88px;
  height: auto;
  aspect-ratio: 0.814;
  position: absolute;
  background: url("../img/common/sec-arw.png") center/contain no-repeat;
  inset: auto 0 40px 0;
  margin: 0 auto;
}
.danger-area .bg-wt {
  padding: 30px 40px;
}
.danger-area ul {
  width: 670px;
}
.danger-area ul li {
  border-bottom: 1px solid var(--main-color);
  padding: 10px 0 15px;
}
.danger-area .dng-ill {
  position: absolute;
  bottom: 0;
  right: -67px;
}

.risk-area {
  background: url(../img/common/bg-deco-le.png) left bottom/32% no-repeat, url(../img/common/bg-deco-ri.png) right top/46% no-repeat, var(--bg-color);
}
.risk-area ol {
  gap: 30px;
}
.risk-area ol > li {
  padding: 40px;
}
.risk-area .txt-box {
  width: 480px;
}
.risk-area .txt-box .ttl02 {
  margin-bottom: 25px;
}
.risk-area .txt-box .ttl02 .num {
  font-size: 4rem;
  width: 84px;
  left: -10px;
  top: -10px;
}
.risk-area .txt-box ul {
  gap: 10px;
  padding: 25px;
}
.leave-area {
  padding-bottom: 0;
}
.leave-area .com-pd-box {
  background: url(../img/common/leave-bg.png) top/100% no-repeat, var(--main-color);
}
.leave-area .txt-box {
  padding: 40px;
  gap: 30px;
}
.leave-area .txt-box .com-txt {
  width: 380px;
}
.leave-area .txt-box .ill-box {
  bottom: 0;
  right: 40px;
}
.leave-area .ttl02 {
  margin-bottom: 30px;
  margin-top: 50px;
}
.leave-area .srv-li li {
  width: 250px;
  background: url(../img/common/srv-bg.png) center/contain no-repeat;
}
.leave-area .sup-li {
  margin-top: 30px;
  gap: 30px 0;
}
.leave-area .sup-li li {
  width: 525px;
}
.leave-area .sup-li li .com-txt {
  min-height: 170px;
  padding: 20px 30px;
}

#company-greeting .com-pd-box .ttl02 {
  width: 100%;
  margin-bottom: 30px;
}
#company-greeting .com-pd-box .txt-box {
  width: 525px;
}
#company-greeting .com-pd-box .ill-box {
  bottom: 0;
  right: -35px;
}

#contact-contact .com-pd-box {
  padding-bottom: 75px;
}
#contact-contact .com-txt {
  margin-bottom: 35px;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  background: url(../img/sv/bg.png) bottom left/44% no-repeat;
}

.sv-catch {
  position: absolute;
  display: grid;
  align-content: center;
  inset: 0;
  z-index: 20;
  font-size: 4.2rem;
  line-height: 1;
}
.sv-catch span {
  display: block;
  width: 740px;
  height: 150px;
  padding: 50px 0;
  background: linear-gradient(to right, var(--main-color), #2fb6f6);
}

.sv-img {
  border-radius: 10px 0 0 10px;
  height: 400px;
  width: calc(50% + 340px);
  margin-left: auto;
}

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

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