@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: 100px;
}

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

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

.com-txt {
  line-height: 2.1875;
  letter-spacing: 0.15em;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 2.5rem;
}

.com-btn {
  display: inline-block;
  line-height: 1;
  padding: 1rem 0;
  padding-right: 3.5rem;
  border-bottom: 1px solid var(--bd-color);
  position: relative;
  font-size: 1.8rem;
}
.com-btn::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1.1rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.img-sdw {
  box-shadow: 0.5rem 0.5rem 1rem 0 rgba(43, 43, 43, 0.2);
}

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

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

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

.ttl01 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  letter-spacing: 0.3em;
}
.ttl01 small {
  font-size: 2.8rem;
  letter-spacing: 0.3em;
}
.ttl01 span {
  letter-spacing: 0.3em;
}

.ttl02 {
  font-size: 2.6rem;
  letter-spacing: 0.15em;
}

.ttl03 {
  font-size: 2.2rem;
  letter-spacing: 0.15em;
}

.ttl04 {
  font-size: 1.8rem;
}

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

.tel-box .tel-ttl {
  margin-bottom: 0.5rem;
}

.com-tel {
  justify-items: end;
  gap: 0.5rem;
}
.com-tel a {
  line-height: 1;
  font-size: 3.2rem;
  color: var(--main-color);
}
.com-tel a::before {
  content: "TEL.";
  font-size: 1.6rem;
  letter-spacing: 0;
  display: inline-block;
  margin-right: -1rem;
}

.bg-01 {
  background: url(../img/common/bg-01-lb.png) left bottom/43.75% no-repeat, url(../img/common/bg-01-rb.png) right bottom/40% no-repeat, var(--bg-pt);
}

.bg-02 {
  background: url(../img/common/bg-01-lb.png) left bottom/43.75% no-repeat, url(../img/common/bg-01-rt.png) right top/40% no-repeat, var(--bg-pt);
}

.bg-03 {
  background: url(../img/common/bg-02-lt.png) left top/49.375% no-repeat, url(../img/common/bg-02-rb.png) right bottom/70% no-repeat, var(--bg-color-02);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  line-height: 1;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.tag-list .tag::before {
  content: "#";
}

time {
  line-height: 1;
  font-weight: 500;
  padding: 0.5rem 0;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
.com-desc-tbl .dl-item dt {
  width: 80px;
}
.com-desc-tbl .dl-item dd {
  width: 430px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: inline-flex;
  margin-left: 2rem;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
.com-add {
  gap: 3.5rem;
}

#header {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 100;
  padding: 1.5rem 3rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right #nav .nav-list {
  margin-top: 1rem;
}
#header .hd-right #nav .nav-list .nav-item {
  padding: 0rem 2.3rem;
  line-height: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item:not(:last-child) {
  border-right: 2px solid var(--font-color);
}
#header .hd-right #nav .nav-list .nav-item:last-child {
  padding-right: 0;
}
#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 {
  padding-top: 14rem;
  gap: 11.4%;
  background: url(../img/top/mv-deco.png) top left/47% no-repeat, url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv img {
  width: 100%;
}
.top-mv video {
  width: 100%;
}
.top-mv .mv-mov {
  width: 73%;
}
.top-mv .mv-ct {
  width: 2%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-about {
  background: url(../img/top/about-bg.png) bottom 6rem right calc(50% - 45rem) no-repeat, url(../img/common/bg-01-lb.png) left bottom/43.75% no-repeat, url(../img/common/bg-01-rb.png) right bottom/40% no-repeat, var(--bg-pt);
}
#top-about .top-box {
  gap: 8rem;
}
#top-about .top-box .txt-box-01 {
  width: 600px;
  order: 2;
}
#top-about .top-box .img-01 {
  width: calc(50% - 14rem);
  height: 560px;
  left: 0;
}
#top-about .btm-box {
  margin-top: 14rem;
  z-index: 1;
}
#top-about .btm-box .txt-box-02 {
  width: 490px;
}
#top-about .btm-box .img-03 {
  top: -170px;
  right: -420px;
  position: absolute;
  z-index: -1;
}

#top-reserve {
  background: url(../img/top/rsv.jpg) center/cover;
  padding: 18rem 0 0.1rem;
}
#top-reserve .inbox {
  margin-bottom: -14rem;
  padding: 4rem 7.5rem;
  background: var(--bg-pt-02);
}
#top-reserve .inbox::before {
  content: "";
  display: block;
  width: 24rem;
  height: auto;
  aspect-ratio: 2.46;
  position: absolute;
  background: url("../img/top/rsv-deco-le.png") center/contain no-repeat;
  bottom: 9rem;
  left: -3rem;
}
#top-reserve .inbox::after {
  content: "";
  display: block;
  width: 24rem;
  height: auto;
  aspect-ratio: 2.46;
  position: absolute;
  background: url("../img/top/rsv-deco-ri.png") center/contain no-repeat;
  top: 2rem;
  right: -6rem;
}
#top-reserve .inbox .ttl01 {
  width: auto;
}
#top-reserve .inbox .com-txt-box .tel-box {
  margin-top: 3rem;
}
#top-reserve .inbox .com-txt-box .tel-box .com-tel {
  padding: 1rem 1rem 1.5rem;
  gap: 2rem;
}
#top-reserve .inbox .com-txt-box .tel-box .com-tel a {
  font-size: 3.8rem;
}

#top-commit {
  padding-top: 24rem;
  background: url(../img/top/cmt-bg-lt.png) top left/49% no-repeat, url(../img/top/cmt-bg-rb.png) right bottom/70% no-repeat, var(--bg-color-02);
}
#top-commit .cmt-li {
  gap: 8rem;
}
#top-commit .cmt-li li {
  z-index: 1;
}
#top-commit .cmt-li li .img-bg {
  position: absolute;
  z-index: -1;
  top: -3rem;
}
#top-commit .cmt-li .cmt-01 .txt-box {
  width: 410px;
}
#top-commit .cmt-li .cmt-01 .txt-box .com-btn {
  margin-top: 3rem;
}
#top-commit .cmt-li .cmt-01 .img-bg {
  right: -400px;
}
#top-commit .cmt-li .cmt-02 .txt-box {
  width: 390px;
}
#top-commit .cmt-li .cmt-02 .txt-box .txt-cap {
  font-size: 1.4rem;
}
#top-commit .cmt-li .cmt-02 .txt-box .com-btn {
  width: 100%;
  padding-bottom: 1.5rem;
  margin: 1rem 0;
}
#top-commit .cmt-li .cmt-02 .img-bg {
  left: -400px;
}

#top-other {
  padding: 0;
}
#top-other .other-li li {
  width: 50%;
}
#top-other .other-li li a {
  width: 100%;
  height: 40rem;
  z-index: 1;
  outline: 1px solid var(--bd-color);
  outline-offset: -1rem;
}
#top-other .other-li li a::after {
  content: "";
  display: block;
  width: 3rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
  bottom: 2rem;
  right: 2rem;
}
#top-other .other-li li a .ttl01 {
  margin: 0;
}
#top-other .other-li li a .img-box {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#top-other .other-li li a .img-box img {
  transition: 0.5s;
}
#top-other .other-li li a:hover img {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
  min-height: 210px;
}
#top-news .inbox .ttl01 {
  width: auto;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .news-list {
  width: 820px;
}
#top-news .inbox .news-list .news-item:not(:last-child), #top-news .inbox .news-list .news-item:first-child {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  display: flex;
  gap: 1rem 2rem;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 200px;
  height: 150px;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 700px;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

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

#footer {
  padding: 10rem 0 5rem;
  position: relative;
  background: url(../img/common/ft-bg.png) bottom right/42% no-repeat;
}
#footer .ft-area {
  gap: 5rem 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
}
#footer .ft-area .ft-le {
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-info {
  display: grid;
  gap: 2.5rem;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 5rem;
}
#footer .ft-area .ft-ri .ft-nav {
  gap: 5rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list {
  display: grid;
  gap: 3rem;
}
#footer .ft-area .ft-ri .ft-nav .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .map {
  height: 25rem;
}
#footer .copyright {
  width: 100%;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#commitment ul {
  gap: 7rem;
}

.menu-area .inbox {
  gap: 10rem;
}
.menu-area .inbox .menu-box {
  display: grid;
  gap: 3rem;
}
.menu-area .inbox .menu-box .img-li {
  gap: 1.5rem;
}
.menu-area .inbox .menu-box .img-li .com-img {
  width: 350px;
  aspect-ratio: 1.47;
}
.menu-area .inbox .menu-box .img-li .com-img:first-child {
  width: 750px;
  margin: 0 auto;
}
.menu-area .inbox .menu-box .menu-li {
  padding: 3.5rem 4rem;
  gap: 3rem;
}
.menu-area .inbox .menu-box .menu-li li .ttl03 {
  margin-bottom: 1rem;
}
.explanation-area .inbox .ttl01 {
  width: auto;
}
.explanation-area .inbox .ttl01 small {
  letter-spacing: 0.15em;
}
.explanation-area .inbox .txt-box {
  width: 650px;
}
.explanation-area .inbox .txt-box .btm-box {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--bd-color);
}
.explanation-area .inbox .txt-box .btm-box .txt-box-02 {
  width: 425px;
}

#faq .faq-li {
  gap: 5rem;
}
#faq .faq-li li .ttl03 {
  margin-bottom: 1rem;
  padding-left: 3.5rem;
  position: relative;
}
#faq .faq-li li .ttl03::before {
  content: "Q.";
  color: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
#faq .faq-li li .com-txt {
  padding-left: 3.5rem;
}

#access-guide .img-box {
  margin-top: 4rem;
  margin-bottom: 20rem;
}
#access-guide .access-box .ttl03 {
  margin-bottom: 3rem;
}
#access-guide .access-box .dl-box {
  gap: 3rem;
}
#access-guide .access-box .dl-box dl dt {
  padding: 0.5rem;
}
#access-guide .access-box .dl-box .dl-item {
  gap: 3rem;
}
#access-guide .access-box .dl-box .dl-item dt {
  width: 300px;
}
#access-guide .access-box .dl-box .dp-g {
  gap: 1rem;
}
#access-guide .access-box .dl-box .dp-g dd {
  gap: 2rem;
}
#access-guide .access-box .dl-box .dp-g .com-txt {
  width: 340px;
}
#access-guide .access-box .dl-box .dp-g a {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--main-color);
}
#access-guide .access-box .rosen-img {
  margin-top: 6rem;
  margin-bottom: 8rem;
}

#access-spot .tab_wrp li {
  width: 2570px;
  border-radius: 0.8rem 0.8rem 0 0;
  padding: 1.5rem 0;
  cursor: pointer;
}
#access-spot .tab_wrp .current {
  background-color: var(--main-color);
  color: #fff;
}
#access-spot .tab_txt li {
  padding: 4rem;
  gap: 2.5rem 0;
}
#access-spot .tab_txt li .txt-box {
  width: 620px;
}
#access-info .inbox {
  gap: 3rem 0;
}
#access-info .ttl01 {
  margin: 0;
}
#access-info .com-desc-tbl {
  width: 540px;
}
#access-info .info-map {
  width: 500px;
}
#access-info .calender-box {
  width: 900px;
  margin: 0 auto;
}
#access-info .calender-box .calender {
  height: 675px;
  margin-bottom: 4rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding-top: 14rem;
  background: url(../img/top/mv-deco.png) top left/47% no-repeat, url(../img/top/mv-bg.jpg) center/cover;
}

.sv {
  background-size: cover;
  background-position: center;
  display: grid;
  align-content: center;
  justify-items: center;
  height: 450px;
}
.sv .sv-catch {
  color: #fff;
  font-weight: 200;
  font-size: 5.6rem;
  letter-spacing: 0.2em;
  font-family: var(--ttl-font);
}

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

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

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

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

.access-sv {
  background-image: url(../img/sv/access.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 {
  background: url(../img/common/bg-01-lb.png) left bottom/43.75% no-repeat, url(../img/common/bg-01-rt.png) right top/40% no-repeat, var(--bg-pt);
}
.com-other-page .ttl01 {
  text-align: center;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  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: 120px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 900px;
}
#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;
  font-size: 1.8rem;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  padding: 18px 0;
  height: 50px;
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

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

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

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

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

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

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

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