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

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

section {
  padding: 180px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2.5;
}
.com-btn {
  display: grid;
  place-items: center;
  height: 30px;
  color: var(--white);
  background: var(--accent-color);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn span {
  padding: 0 25px;
}
.com-btn span::after {
  content: "»";
}
.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  display: grid;
  justify-items: center;
  margin-bottom: 70px;
}
.ttl01 .en {
  font-size: 4.5rem;
  color: var(--main-color);
  text-transform: uppercase;
}
.ttl01 .ja {
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 2rem;
  padding: 0 20px;
  background: url(../img/common/ttl-le.png) left no-repeat, url(../img/common/ttl-ri.png) right no-repeat;
}
.ttl01.flex {
  display: flex;
  align-items: center;
  gap: 35px;
}

.ttl02 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.15em;
}
.ttl02 small {
  font-size: 0.857em;
  letter-spacing: 0.15em;
}

.ttl03 {
  font-weight: 700;
  font-size: 2.5rem;
}

.ttl04 {
  font-weight: 600;
  font-size: 2rem;
}

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

.txt-small {
  font-size: 1.2rem;
}

.ttl-en-deco {
  position: absolute;
  top: -50px;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}
.tag-list .tag {
  color: var(--main-color);
  font-size: 1.4rem;
  display: inline-block;
}
.tag-list .tag:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--main-color);
}

/*infotableスタイル*/
.com-desc-tbl {
  width: 460px;
  padding: 60px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 500;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--main-color);
}
.com-desc-tbl .dl-item dt {
  width: 110px;
  padding: 0 5px;
}
.com-desc-tbl .dl-item dd {
  width: 230px;
}

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

.insta-btn {
  width: 30px;
  height: 30px;
}
.insta-btn img {
  width: 100%;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  height: 51vw;
  min-height: 652px;
  background: url(../img/top/mv-img.jpg) center/cover;
  /*---------------------------△△---MV---△△------------------------*/
}
.top-mv .mv-ct {
  width: 45%;
  position: absolute;
  left: 0;
  bottom: 16.3%;
}
.top-mv .mv-ct img {
  width: 100%;
}

#top-concept .inbox {
  min-height: 540px;
}
#top-concept .txt-box {
  width: 540px;
  margin-left: auto;
  padding-top: 50px;
}
#top-concept .txt-box .ttl-en-deco {
  left: -30px;
}
#top-concept .com-img {
  position: absolute;
  left: 0;
  top: 180px;
  height: 540px;
  width: calc(50% - 100px);
}

#top-banner {
  padding: 0;
}
#top-banner a {
  width: 1280px;
  height: 600px;
  padding-left: 280px;
  padding-top: 40px;
  background: url(../img/top/bnr-bg.jpg) no-repeat;
}
#top-recommend {
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 490px, #fff 490px, #fff);
}
#top-recommend .inbox {
  width: clamp(1180px, 87.5%, 1680px);
}
#top-recommend .inbox ul {
  gap: 2.4%;
}
#top-recommend .inbox ul li {
  width: 23.2%;
}
#top-recommend .inbox ul li a {
  position: relative;
}
#top-recommend .inbox ul li a::after {
  content: "";
  display: block;
  width: 70px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/reco-btn.png") center/contain no-repeat;
  right: -15px;
  bottom: 30px;
  z-index: 100;
}
#top-recommend .inbox ul li a .com-img {
  width: 100%;
  aspect-ratio: 0.7222;
  margin-bottom: 20px;
}

#top-enjoy {
  padding: 200px 0;
  background: url(../img/top/enjoy-bg.jpg) center/cover;
}
#top-enjoy .inbox .ttl02 .ttl-en-deco {
  left: 120px;
}
#top-enjoy .inbox .ttl02 .bd-wt {
  display: inline-block;
  padding: 1px 5px;
  margin-right: 10px;
  border: 2px solid #fff;
}

.item-item .com-img {
  aspect-ratio: 0.706;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 60px 40px;
}
.item-list .item-item {
  width: 240px;
}
.item-list .item-item .item-tag-list {
  margin-bottom: 2px;
}
.item-list .item-item .com-img {
  width: 100%;
}
.item-list .item-item h4 {
  min-height: 60px;
  margin: 10px 0 0;
}
.item-list .item-item .com-btn {
  margin-top: 20px;
  background: var(--main-color);
}

.item-tag-list {
  background: var(--font-color-02);
  display: inline-flex;
  gap: 10px;
  padding: 2px 10px;
  border-radius: 5px;
  position: relative;
}
.item-tag-list::after {
  content: "";
  display: block;
  width: 10px;
  height: auto;
  aspect-ratio: 1.42;
  position: absolute;
  clip-path: polygon(0 0, 100% 100%, 90% 0);
  right: 10px;
  bottom: -7px;
  background: var(--font-color-02);
  z-index: 100;
}
.item-tag-list .tag {
  font-size: 1.4rem;
  color: #fff;
}
.item-tag-list .tag::before {
  content: "#";
  color: var(--main-color);
}

#item-detail .detail-box {
  position: relative;
  gap: 60px 0;
}
#item-detail .detail-box .txt-box {
  width: 500px;
  min-height: 680px;
  order: 1;
  margin-left: auto;
}
#item-detail .detail-box .txt-box .com-img {
  width: 480px;
  position: absolute;
  left: 0;
  top: 0;
}
#item-detail .detail-box .item-tag-list {
  margin-bottom: 20px;
}
#item-detail .detail-box h3 {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--main-color);
}
#item-detail .detail-box .com-txt {
  margin-top: 30px;
}
#item-detail .detail-box .img-li {
  order: 2;
  width: 100%;
  gap: 30px;
}
#item-detail .detail-box .img-li .com-img {
  width: 340px;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  margin: 60px auto;
  padding: 100px 0;
  width: clamp(1280px, 87.5%, 1920px);
}
#top-news .inbox .news-list {
  width: 100%;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
#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: 950px;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 100%;
}
#top-news .inbox .com-btn {
  width: 240px;
  height: 40px;
  margin: 50px auto 0;
}

/*------------△△---NEWS---△△---------*/
.side-btn {
  width: 220px;
  height: 150px;
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 1000;
  align-content: center;
  gap: 10px;
  background: #dca4b0;
}
.side-btn::after {
  content: "»";
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.5;
  position: relative;
  top: -5px;
}
.side-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  background: url("../img/common/side-bg.png") center/contain no-repeat;
  left: -10px;
  top: 0;
}
.side-btn p {
  font-size: 1.5rem;
  font-weight: 600;
}
.side-btn .txt-cap {
  padding: 3px 5px;
  font-weight: 600;
}

#footer {
  padding: 20px 0 180px;
  position: relative;
}
#footer .ft-area {
  padding: 50px 0 0;
  position: relative;
  border-top: 1px solid var(--bd-color);
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
}
#footer .ft-area .ft-le .logo-box {
  gap: 20px;
  padding-top: 20px;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 60px;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 30px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-concept .inbox {
  width: 1280px;
}
#about-concept .inbox .img-box {
  margin-bottom: 80px;
}
#about-concept .inbox .txt-box {
  padding: 0 100px;
}
#about-concept .inbox .txt-box .ttl02 {
  padding-top: 40px;
}
#about-concept .inbox .txt-box .com-txt {
  width: 620px;
  padding-left: 60px;
  border-left: 2px solid var(--main-color);
}

#about-feature {
  padding: 0 0 150px;
}
#about-feature .inbox .ttl02 {
  margin-bottom: 70px;
}
#about-feature .inbox .ttl02 small {
  padding: 10px 150px 30px;
  background: url(../img/about/featu-ttl-deco.png) center/contain no-repeat;
}
#about-feature .inbox .ttl02 small .ttl-en-deco {
  left: -85px;
  top: -30px;
}
#about-feature .inbox ol {
  gap: 100px;
}
#about-feature .inbox ol li:nth-child(even) {
  flex-direction: row-reverse;
}
#about-feature .inbox ol li .txt-box {
  margin-top: 20px;
  width: 420px;
}
#about-feature .inbox ol li .txt-box .ttl03 {
  margin-bottom: 40px;
}
#about-feature .inbox ol li .txt-box .ttl03 .num {
  font-weight: 400;
  font-family: var(--en-font-02);
}
#about-feature .inbox ol li .txt-box .ttl03 .num span {
  display: inline-block;
  margin-left: 15px;
  font-size: 5rem;
  font-family: var(--num-font);
}

#about-greeting {
  padding: 60px 0;
}
#about-greeting .inbox {
  width: calc(50% + 280px);
  padding: 110px 0;
  margin-left: auto;
  margin-right: 0;
  background: var(--bg-color);
}
#about-greeting .txt-box {
  width: 600px;
  margin-left: 220px;
}
#about-greeting .ttl01 {
  margin-bottom: 40px;
}
#about-greeting .name {
  margin-top: 40px;
  font-weight: 400;
  font-family: var(--name-font) !important;
}
#about-greeting .img-box {
  position: absolute;
  width: calc(50% - 160px);
  height: 600px;
  inset: 0 auto 0 0;
  margin: auto 0;
}

#item-sec {
  border-bottom: 2px solid var(--main-color);
}
#item-sec .btn-li {
  gap: 30px;
}
#item-sec .btn-li li .sec-btn {
  display: grid;
  justify-items: center;
  place-items: center;
  width: 340px;
  height: 60px;
  color: var(--white);
  background: var(--accent-color);
  position: relative;
}
#item-sec .btn-li li .sec-btn:link, #item-sec .btn-li li .sec-btn:visited {
  color: var(--white);
}
#item-sec .btn-li li .sec-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  inset: 0 auto 0 30px;
  margin: auto 0;
}

#faq ul {
  gap: 60px;
}
#faq ul li {
  padding: 40px;
}
#faq ul li .faq-ttl {
  position: relative;
  padding-left: 70px;
  display: block;
}
#faq ul li .faq-ttl::before {
  content: "";
  display: block;
  width: 50px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  font-size: 3rem;
  left: 0;
  top: -7px;
  color: #fff;
  font-family: var(--en-font);
  border-radius: 50vw;
  display: grid;
  place-items: center;
  line-height: 1;
  font-weight: 700;
}
#faq ul li .ttl04 {
  margin-bottom: 30px;
}
#faq ul li .ttl04 .faq-ttl::before {
  content: "Q";
  background: var(--main-color);
}
#faq ul li .com-txt {
  padding: 40px 60px;
}
#faq ul li .com-txt .faq-ttl::before {
  content: "A";
  background: var(--accent-color);
}

#info .inbox {
  padding-top: 170px;
}
#info .inbox .com-desc-tbl {
  margin-left: auto;
}
#info .inbox .img-box {
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  padding-bottom: 30px;
}
.sv .sv-catch {
  width: 640px;
  height: 200px;
  display: grid;
  justify-items: start;
  justify-content: center;
  position: absolute;
  align-content: center;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.sv .sv-catch .en {
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.sv .sv-catch .ja {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sv .sv-img {
  width: calc(50% + 540px);
  height: 450px;
  margin-left: auto;
}

.faq-sv .sv-catch .en {
  text-transform: capitalize;
}

/*---------------------------△△---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 {
  font-size: 3rem;
  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(--accent-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(--accent-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  padding: 18px 0;
  height: 50px;
  background: var(--accent-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---△△------------------------*/