@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: 10rem;
}

section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  place-items: center;
  width: 53rem;
  height: 5rem;
  margin: 5rem auto 0;
  color: #fff;
  background: var(--main-color);
  position: relative;
  border: 1px solid var(--main-color);
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.com-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: left;
}
.com-btn:hover::before {
  transform: scaleX(1);
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 1.2rem 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  transform: scale(0.98);
  opacity: 1;
  border: 1px solid #fff;
}

.mail-btn-box {
  gap: 2rem;
}
.mail-btn-box .com-btn {
  margin: 0;
}

.contact-btn {
  width: 22rem !important;
}

.bg-bd {
  background: url(../img/common/bd.png) bottom repeat-x;
}

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

.tate {
  writing-mode: vertical-rl;
}

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 6rem;
  gap: 2.5rem;
}
.ttl01 .ja {
  font-size: 3.4rem;
}
.ttl01 .en {
  font-size: 1.8rem;
  color: var(--main-color);
}
.ttl01.ft-wt .en {
  color: #fff;
}
.ttl01.txt-le {
  text-align: left;
  justify-items: start;
}
.ttl01.tate {
  text-align: left;
  justify-items: start;
}
.ttl01.tate .ja {
  line-height: 2.05;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2.8rem;
}

.ttl04 {
  font-size: 2.4rem;
}

.ttl05 {
  font-size: 2.2rem;
}

.ttl06 {
  font-size: 2rem;
}

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

.ttl-bd {
  position: relative;
  text-align: center;
  z-index: 1;
  width: 100%;
}
.ttl-bd::before {
  content: "";
  display: block;
  width: 330px;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.ttl-bd::after {
  content: "";
  display: block;
  width: 330px;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.ttl-bd.ft-wt::before {
  background: #fff;
}
.ttl-bd.ft-wt::after {
  background: #fff;
}

.ft-wt .ttl-bd::before {
  background: #fff;
}
.ft-wt .ttl-bd::after {
  background: #fff;
}

.ttl-deco::before {
  content: "";
  display: block;
  width: 8.3rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  position: static;
}

.img-box {
  border: 0.5rem solid #fff;
  outline: 1px solid var(--accent-color);
}

.img-bd-02 {
  border: 1rem solid #fff;
  outline: 1px solid var(--accent-color);
}

.com-tel {
  display: grid;
  justify-items: center;
  color: #fff;
}
.com-tel a {
  font-size: 2.6rem;
}
.com-tel a::before {
  content: "TEL.";
  font-size: 0.57em;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  color: var(--main-color);
  padding: 0 5px;
}

time {
  line-height: 1;
  color: #ccbaac;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--accent-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  width: 130px;
}
.com-desc-tbl .dl-item dd {
  width: 885px;
}

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

#nav .nav-list {
  padding: 3rem 0;
  background: #000;
  gap: 2.5rem;
  justify-content: center;
}
#nav .nav-list .nav-item {
  position: relative;
}
#nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  height: 48.4vw;
  min-height: 62rem;
  gap: 5%;
  background: url(../img/top/mv-bg.jpg) center/cover no-repeat;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-logo {
  width: 31%;
}
.top-mv .mv-ct {
  width: 46.45%;
}

/*---------------------------△△---MV---△△------------------------*/
/*△△---季節更新bg---△△*/
.gree-season-01 {
  background: url(../img/top/gree-01.jpg) center/cover;
}

.gree-season-02 {
  background: url(../img/top/gree-02.jpg) center/cover;
}

.gree-season-03 {
  background: url(../img/top/gree-03.jpg) center/cover;
}

.gree-season-04 {
  background: url(../img/top/gree-04.jpg) center/cover;
}

#top-about .inbox {
  width: 1280px;
}
#top-about .img-box {
  margin-bottom: 7rem;
}

#top-spend {
  background: url(../img/top/spend-deco.png) bottom 55rem right calc(50% - 60rem) no-repeat, url(../img/common/bd.png) bottom repeat-x;
}
#top-spend .inbox {
  width: 1090px;
}
#top-spend ul {
  width: 790px;
  gap: 6rem 0;
  margin-bottom: 9rem;
}
#top-spend ul li:nth-child(even) {
  transform: translateY(4rem);
}
#top-spend ul li .img-box {
  margin-bottom: 1.5rem;
}
#top-spend ul li .ttl06 {
  position: relative;
  padding-top: 3rem;
  line-height: 1.9;
}
#top-spend ul li .ttl06 .ttl02 {
  line-height: 1;
  width: 54px;
  aspect-ratio: 1;
  position: absolute;
  left: 1rem;
  top: 1rem;
}
#top-spend ul li .ttl06 .ttl02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  transform: rotate(45deg);
  left: 0;
  top: 0;
}
#top-spend ul li .ttl06 small {
  font-size: 1.6rem;
  position: absolute;
  display: block;
  top: 0;
  left: 7rem;
  letter-spacing: 0.12;
}

#top-guide .txt-box {
  width: 88.5rem;
  margin-top: 6rem;
}
#top-guide .txt-box .ttl04 {
  margin-bottom: 3rem;
}
#top-guide ul {
  margin-top: 7rem;
  gap: 3rem;
}
#top-guide ul li .img-box {
  width: 34rem;
  aspect-ratio: 1.3;
  margin-bottom: 1rem;
}

#top-contact {
  background: url(../img/top/contact-bg.jpg) center/cover no-repeat;
}
#top-contact .inbox .contact-info {
  gap: 3.5rem;
  padding: 3.5rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-top: 5rem;
}
#top-contact .inbox .com-btn {
  width: 34rem;
  margin: 0;
}
#top-contact .inbox dl {
  gap: 1rem;
  line-height: 1;
}
#top-contact .inbox dl dt {
  padding-right: 0.5rem;
  border-right: 1px solid #fff;
  margin-right: 0.5rem;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
  min-height: 20rem;
}
#top-news .inbox .ttl01 {
  width: auto;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .news-list {
  width: 80rem;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--accent-color);
}
#top-news .inbox .news-list .news-item:first-child {
  border-top: 1px solid var(--accent-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
#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: 66rem;
}
#top-news .inbox .com-btn {
  position: absolute;
  width: 230px;
  top: 160px;
  left: 0;
  margin: 0;
}

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

#footer {
  padding: 100px 0;
  position: relative;
  background: #000;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  width: 475px;
  gap: 3.5rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 2rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info dt {
  min-width: 7rem;
}
#footer .ft-area .ft-le .ft-contact-box {
  margin-top: 3rem;
  gap: 3rem 0;
}
#footer .ft-area .ft-le .com-btn {
  width: 306px;
  margin: 0;
}
#footer .ft-area .ft-le .sns-list {
  gap: 4.5rem;
}
#footer .ft-area .ft-ri {
  width: 475px;
  display: grid;
  justify-items: end;
  align-content: space-between;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-page .com-txt:first-of-type {
  margin-top: 6rem;
}
#about-page .ttl-bd {
  margin-bottom: 4rem;
}

#about-02 {
  background: url(../img/about/spi-bg.jpg) center/cover;
}

#about-04 {
  background: url(../img/about/tgtr-bg.jpg) center/cover;
}

#about-03 .parent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
#about-03 .parent img {
  width: 100%;
}
#about-03 .parent .div1 {
  width: 62rem;
  grid-area: 1/1/3/2;
}
#about-03 .parent .div2 {
  grid-area: 1/2/2/3;
}
#about-03 .parent .div3 {
  grid-area: 2/2/3/3;
}

#spend ol {
  gap: 10rem;
}
#spend ol .spend-item {
  gap: 7rem 0;
}
#spend ol .spend-item .txt-box {
  width: 590px;
}
#spend ol .spend-item .txt-box .ttl02 {
  display: grid;
  justify-items: start;
  margin-bottom: 3rem;
}
#spend ol .spend-item .txt-box .ttl02 .num::after {
  content: "─";
  color: var(--accent-color);
}
#spend ol .spend-item .voice-box {
  padding: 5.5rem 7rem;
}
#spend ol .spend-item .voice-box ul {
  margin-top: 5rem;
  gap: 3.5rem;
}
#spend ol .spend-item .voice-box ul li {
  width: 290px;
  padding: 2rem 1.3rem;
}
#spend ol .spend-item .voice-box ul li .ttl05 {
  margin-bottom: 1rem;
}
#spend ol .spend-item .voice-box ul li .person {
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}

#guide .sec-btn-li {
  gap: 3rem;
  margin-top: 10rem;
}
#guide .sec-btn-li .com-btn {
  margin: 0;
  width: 340px;
}
#guide .guide-area {
  margin-top: 16rem;
  gap: 11rem;
}
#guide .guide-area .guide-box .guide-li li {
  padding: 5rem 0;
  position: relative;
}
#guide .guide-area .guide-box .guide-li li .txt-box {
  min-height: 280px;
  width: 520px;
}
#guide .guide-area .guide-box .guide-li li .txt-box .ttl02 {
  margin-bottom: 4rem;
}
#guide .guide-area .guide-box .guide-li li .img-box {
  position: absolute;
  right: 0;
  top: 5rem;
  width: 465px;
  aspect-ratio: 1.66;
}

#foreign-greeting .ttl02 {
  margin-bottom: 3rem;
}

#foreign-about {
  background: url(../img/foreign/about-bg.jpg) center/cover;
}
#foreign-about ul {
  gap: 5rem;
}
#foreign-about ul li {
  padding-bottom: 5rem;
}
#foreign-about ul li .ttl02 {
  margin-bottom: 3rem;
}

#foreign-stay ul li {
  width: 340px;
}
#foreign-stay ul li .img-box {
  margin-bottom: 2rem;
}

#foreign-faq ul {
  gap: 9rem;
}
#foreign-faq ul li .ttl04 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  padding-left: 3rem;
}
#foreign-faq ul li .ttl04::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
}

#foreign-other ul li a {
  width: 510px;
  height: 326px;
  padding: 6.5rem 3.5rem;
  background: url(../img/foreign/other-01.jpg) center/cover;
  position: relative;
}
#foreign-other ul li a::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1.5;
  position: absolute;
  background: url("../img/foreign/other-arw.png") center/contain no-repeat;
  bottom: 3.5rem;
  right: 3.5rem;
}
#foreign-other ul li .ttl02 {
  margin-bottom: 2rem;
}
#foreign-other ul .other-company {
  background: url(../img/foreign/other-02.jpg) center/cover;
}

#company-map .map {
  margin-top: 5rem;
  height: 50rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: center;
  justify-items: center;
  height: 660px;
}
.sv .sv-catch {
  width: 976px;
  padding: 2.5rem;
  font-size: 3.6rem;
  text-align: center;
  background: #000;
  color: #fff;
  display: grid;
  justify-items: center;
}
.sv .sv-catch small {
  font-size: 2.6rem;
}

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

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

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

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

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

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

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

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

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

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

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

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

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