@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

.select-area {
  position: relative;
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
  width: 200px;
  border-bottom: 1px solid #555;
  margin-left: auto;
}
.select-area .select-box {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid #555;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--zen-font);
  color: #262626;
  background: none;
}
.select-area .select-box:has(option:only-child)::after {
  display: none;
}
.select-area .select-box option {
  font-weight: 500;
  font-size: 1.3rem;
}
.select-area::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 10px;
  bottom: 20px;
}

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

/*--------△△フォント△△---------*/
html {
  scroll-padding: 100px;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
.com-txt {
  line-height: 1.65;
  letter-spacing: 0.05em;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 25px;
}

.ttl01 {
  font-size: 4rem;
  font-weight: 500;
  font-family: var(--zen-font);
  letter-spacing: 0.1em;
  text-align: center;
  padding-bottom: 20px;
  background: url(../img/common/ttl-deco.png) bottom center no-repeat;
  margin-bottom: 50px;
}

.ttl02 {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: var(--zen-font);
  letter-spacing: 0.05em;
}

.ttl03 {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--zen-font);
  letter-spacing: 0.05em;
}

.com-maru {
  border-radius: 10px;
  overflow: hidden;
}

.com-sdw {
  box-shadow: 4px 4px 10px rgba(82, 53, 50, 0.1);
}

.com-btn {
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  width: 440px;
  height: 60px;
  font-weight: 700;
  background: url(../img/common/btn-bg.png);
  position: relative;
  margin: 40px auto 0;
}
.com-btn::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  inset: 0 30px 0 auto;
  margin: auto 0;
  transition: 0.3s;
}
.com-btn:hover::after {
  right: 20px;
}

.hd-tel-box {
  border-radius: 0 0 0 10px;
  width: 266px;
  height: 124px;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
}
.hd-tel-box .sub-ttl {
  position: absolute;
  font-size: 1.4rem;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  left: -20px;
  top: -24px;
}
.hd-tel-box .tel-ttl {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.com-tel {
  font-family: var(--zen-font);
  letter-spacing: 0.03em;
  font-size: 3.4rem;
  font-weight: 500;
}
.com-tel a {
  display: block;
  line-height: 1;
  background: url("../img/common/tel-icon.png") left bottom/auto no-repeat;
  padding-left: 20px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
}
.com-desc-tbl .dl-item:not(:last-child) dt, .com-desc-tbl .dl-item:first-child dt {
  border-bottom: 1px solid #fff;
}
.com-desc-tbl .dl-item:not(:last-child) dd, .com-desc-tbl .dl-item:first-child dd {
  border-bottom: 1px solid var(--sub-color);
}
.com-desc-tbl .dl-item dt {
  color: #fff;
  width: 220px;
  padding: 15px 20px;
  background: linear-gradient(to left, #ffc8c3, #fd968d);
}
.com-desc-tbl .dl-item dd {
  width: 860px;
  padding: 15px 20px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 33px 50px;
  align-items: center;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-weight: 700;
  letter-spacing: 0.05em;
}
#header .hd-tel-box {
  border-radius: 0 0 0 10px;
  position: fixed;
  right: 0;
  top: 120px;
}
/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  width: 100%;
  height: 42.7vw;
  min-height: 546px;
  background: url(../img/top/mv-bg.jpg) center/cover;
  display: grid;
  align-items: center;
}
.top-mv .mv-ct {
  width: 32.3%;
  margin-top: 5%;
  margin-left: 9.5%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
.txt-box-deco {
  position: relative;
  z-index: 1;
}
.txt-box-deco::after {
  content: "";
  display: block;
  width: 269px;
  height: 261px;
  position: absolute;
  background: url("../img/common/txt-box-deco.png") center/contain no-repeat;
  right: -160px;
  bottom: -100px;
  z-index: -1;
}

#top-about {
  margin-bottom: 215px;
}
#top-about .inbox {
  width: 1280px;
  align-items: center;
  gap: 70px;
}
#top-about .inbox .txt-box {
  width: 540px;
}
#top-about .inbox .txt-box .about-ttl {
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
#top-about .inbox .txt-box .about-ttl::after {
  content: "";
  display: block;
  width: clamp(0px, 22.4vw, 430px);
  height: auto;
  position: absolute;
  background: url("../img/top/about-bg.png") center/contain no-repeat;
  aspect-ratio: 3;
  left: 350px;
  bottom: 0;
  z-index: -1;
}
#top-about .inbox .txt-box .about-ttl .grd-01 {
  padding: 5px 15px;
}
#top-reason {
  padding-bottom: 100px;
  position: relative;
  background: url(../img/top/reason-le.png) left top no-repeat, url(../img/top/reason-ri.png) right top no-repeat, linear-gradient(var(--sub-color), #fff);
}
#top-reason::before {
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  position: absolute;
  background: url("../img/top/reason-bg.png") center/contain no-repeat;
  top: -150px;
  background-size: 100% 100%;
}
#top-reason .inbox {
  width: 1280px;
}
#top-reason .inbox .reason-img {
  position: absolute;
  inset: -220px 0 auto 0;
  text-align: center;
}
#top-reason .inbox .rsn-list {
  gap: 30px;
}
#top-reason .inbox .rsn-list .rsn-item {
  width: 360px;
}
#top-reason .inbox .rsn-list .rsn-item .rsn-img-box {
  position: relative;
  z-index: 1;
}
#top-reason .inbox .rsn-list .rsn-item .txt-box {
  min-height: 344px;
  padding: 135px 35px 35px;
  margin-top: -115px;
}
.rsn-list .rsn-item .rsn-img-box {
  width: 360px;
  height: 360px;
  border: 20px solid #fff;
  padding: 30px 0;
  display: grid;
  justify-items: center;
  border-radius: 50%;
}
.rsn-list .rsn-item .rsn-img-box .num {
  text-align: center;
  line-height: 1;
  font-size: 6rem;
  padding: 0 10px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rsn-list .rsn-item .txt-box .ttl02 {
  margin-bottom: 15px;
}

#top-era {
  padding: 100px 0;
}
#top-era .inbox {
  width: 1280px;
}
#top-era .inbox::before {
  right: 176px;
  top: -120px;
}
#top-era .inbox .ttl01 .era-ttl-deco {
  padding: 0 30px;
  background: url(../img/top/era-ttl-li.png) left no-repeat, url(../img/top/era-ttl-ri.png) right no-repeat;
  font-size: 0.75em;
}
#top-era .inbox .era-list {
  gap: 30px;
}
#top-era .inbox .era-list li {
  width: 360px;
  background: url(../img/top/era-ri.png) right top no-repeat, url(../img/top/era-le.png) left bottom no-repeat, #fff;
}
#top-era .inbox .era-list li a {
  width: 360px;
  height: 100%;
  padding: 30px 0;
}
#top-era .inbox .era-list li a::after {
  bottom: 20px;
  right: 20px;
}
#top-era .inbox .era-list li a .ttl02 {
  width: 283px;
  border-radius: 0 10px 10px 0;
  padding: 20px 0 45px;
  text-align: center;
  line-height: 1;
}
#top-era .inbox .era-list li a .ttl02 .ft-clr02 {
  font-size: 1.5em;
}
#top-era .inbox .era-list li a .ttl02 .ft-clr02 small {
  font-size: 0.666em;
}
#top-era .inbox .era-list li a .era-img {
  width: 320px;
  height: 220px;
  border-radius: 10px 0 0 10px;
  margin-top: -30px;
  margin-left: auto;
  overflow: hidden;
}
#top-era .inbox .era-list li a .era-img img {
  transition: 0.3s;
  max-width: none;
}
#top-era .inbox .era-list li a .com-txt {
  margin-top: 20px;
  padding: 0 40px;
}
#top-era .inbox .era-list li a:hover .era-img img {
  transform: scale(1.1);
}

.com-arw {
  position: relative;
}
.com-arw::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
}

.com-ill-deco {
  position: relative;
}
.com-ill-deco::before {
  content: "";
  display: block;
  width: 110px;
  height: 241px;
  position: absolute;
  background: url("../img/common/psn.png") center/contain no-repeat;
}

.case-item {
  position: relative;
  overflow: visible;
}
.case-item::before {
  content: "";
  display: block;
  width: 34px;
  height: 24px;
  position: absolute;
  background: url("../img/common/mark.png") center/contain no-repeat;
  top: -11px;
  left: 30px;
}
.case-item a {
  padding: 40px;
}

.case-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.case-tag-list .tag {
  background: var(--accent-color);
  padding: 3px 8px;
  font-size: 1.4rem;
}
.case-tag-list .tag a {
  padding: 0;
}

#top-case {
  padding: 100px 0;
}
#top-case .inbox {
  width: 1280px;
  background: url(../img/top/case-bg-le.png) top left no-repeat, url(../img/top/case-bg-ri.png) bottom right no-repeat, url(../img/common/pt.jpg);
  border-radius: 60px;
  padding: 80px 100px;
}
#top-case .inbox .case-li {
  gap: 30px;
}
#top-case .inbox .case-li .case-item a {
  height: 100%;
  width: 340px;
}
#top-case .inbox .case-li .case-item a .case-ttl {
  font-size: 2rem;
  margin-bottom: 10px;
}
#top-case .inbox .case-li .case-item a .case-tag-list {
  justify-content: end;
}

#top-guide {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
#top-guide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/top/guide-bg-le.png) top left no-repeat, url(../img/top/guide-bg-ri.png) top right no-repeat;
  z-index: -1;
  top: 0;
}
#top-guide .inbox {
  position: relative;
}
#top-guide .inbox::after {
  content: "";
  display: block;
  width: 169px;
  height: 235px;
  position: absolute;
  background: url("../img/top/guide-ill.png") center/contain no-repeat;
  right: -45px;
  bottom: -45px;
}
#top-guide .inbox .txt-box {
  width: 440px;
}
#top-guide .inbox .txt-box .ttl01 {
  margin-bottom: 30px;
}
#top-guide .inbox .txt-box .guide-li li a {
  padding: 20px 45px;
  border-bottom: 1px solid var(--font-color);
}
#top-guide .inbox .txt-box .guide-li li a img {
  position: absolute;
  left: 0;
}
#top-guide .inbox .txt-box .guide-li li a::after {
  width: 30px;
  height: 30px;
  inset: 0 0 0 auto;
  margin: auto 0;
}
#top-guide .inbox .guide-img {
  width: 540px;
  border: 20px solid #fff;
}

.ttl01.txt-le {
  text-align: left;
  background-position: left bottom;
}

#top-news {
  max-width: 1480px;
  margin: 0 auto;
  padding: 100px 0;
  background: url(../img/top/news-bg.png) left top no-repeat;
}
#top-news .inbox {
  width: 1280px;
  gap: 100px;
}
#top-news .inbox .ttl-box {
  width: 260px;
  height: 230px;
  padding: 40px 50px;
  margin-left: 50px;
}
#top-news .inbox .ttl-box .ttl01 {
  font-size: 3rem;
}
#top-news .inbox .ttl-box .news-btn {
  letter-spacing: 0.05em;
}
#top-news .inbox .ttl-box .news-btn::after {
  inset: 0 -32px 0 auto;
  margin: auto 0;
}
#top-news .inbox .news-list {
  width: 760px;
}
#top-news .inbox .news-list .news-item:not(:last-child) {
  margin-bottom: 10px;
}
#top-news .inbox .news-list .news-item a {
  padding: 10px 30px;
  gap: 0 10px;
}
#top-news .inbox .news-list .news-item a time {
  width: 90px;
  font-size: 1.6rem;
  opacity: 0.6;
}
#top-news .inbox .news-list .news-item a .tag-list {
  width: 590px;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}

.tag-list {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tag-list .tag {
  font-size: 1.4rem;
}

#page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 50;
}

#footer {
  margin-top: 100px;
  padding: 150px 0 0;
  background: url(../img/common/ft-deco-le.png) top 250px left 158px no-repeat, url(../img/common/ft-deco-ri.png) top 242px right 167px no-repeat, url(../img/common/ft-bg.png) top/100% no-repeat;
}
#footer .ft-area {
  width: 1280px;
  position: relative;
}
#footer .ft-area::after {
  content: "";
  display: block;
  width: 110px;
  height: 220px;
  position: absolute;
  background: url("../img/common/contact-ill.png") center/contain no-repeat;
  top: -45px;
  left: 303px;
}
#footer .ft-area .ttl01 {
  font-size: 3rem;
  padding: 0;
  background: none;
}
#footer .ft-area .com-txt {
  margin-bottom: 40px;
}
#footer .ft-area .ft-contact {
  gap: 30px;
  margin-bottom: 40px;
}
#footer .ft-area .ft-contact .contact-box {
  width: 460px;
  min-height: 240px;
  padding: 50px 50px 0;
}
#footer .ft-area .ft-contact .contact-box .ttl02 {
  font-size: 2rem;
}
#footer .ft-area .ft-contact .contact-box p {
  margin-left: 70px;
  margin-top: 30px;
}
#footer .ft-area .ft-contact .contact-box .com-tel {
  font-size: 4rem;
  display: grid;
  justify-items: center;
}
#footer .ft-area .ft-contact .contact-box .line-btn {
  margin-top: 40px;
}
#footer .ft-area .map {
  margin-bottom: 60px;
  height: 300px;
}
#footer .ft-area .map iframe {
  width: 100%;
  height: 100%;
}
#footer .ft-area .ft-box {
  border-radius: 60px 60px 0 0;
  padding: 80px 100px 60px;
}
#footer .ft-area .ft-box .ft-le {
  display: grid;
  align-content: space-between;
}
#footer .ft-area .ft-box .ft-le .ft-logo-box {
  gap: 40px;
}
#footer .ft-area .ft-box .ft-le .ft-logo-box .sns-list {
  gap: 20px;
}
#footer .ft-area .ft-box .ft-le .ft-add {
  margin-top: 50px;
  width: 100%;
}
#footer .ft-area .ft-box .ft-le .copyright {
  width: 100%;
  font-size: 1.4rem;
  opacity: 0.6;
}
#footer .ft-area .ft-box .ft-ri {
  gap: 37px;
}
#footer .ft-area .ft-box .ft-ri .nav-list .nav-item {
  font-weight: 700;
  letter-spacing: 0.05em;
}
#footer .ft-area .ft-box .ft-ri .nav-list .nav-item:not(:last-child) {
  margin-bottom: 15px;
}

.line-btn {
  background: linear-gradient(to left, #6bb5b7, #82dcde);
  width: 360px;
  height: 80px;
  display: grid;
  place-items: center;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
}
.line-btn span {
  padding: 10px 0;
  background: url("../img/common/line-icon.png") left center/auto no-repeat;
  padding-left: 37px;
  box-sizing: border-box;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
  height: 420px;
}
.sv .sv-catch {
  margin-top: 120px;
  width: 1080px;
  font-weight: 900;
  font-size: 4.8rem;
  font-family: var(--zen-font);
  letter-spacing: 0.12em;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 2px 2px 2px #fff, -2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff;
}

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

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

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

.case-sv {
  background-image: url(../img/sv/case.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---△△------------------------*/
#about-intro {
  padding: 100px 0;
  background: url(../img/about/intro-bg.png) right/contain no-repeat;
}
#about-intro .inbox {
  background: url(../img/about/intro-deco.png) left no-repeat;
}
#about-reason {
  padding: 100px 0;
}
#about-reason .inbox .rsn-list .rsn-item {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: center;
}
#about-reason .inbox .rsn-list .rsn-item .rsn-img-box {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#about-reason .inbox .rsn-list .rsn-item .txt-box {
  width: 890px;
  min-height: 280px;
  padding: 30px 40px;
}
#about-reason .inbox .rsn-list .rsn-item:nth-child(odd) .txt-box {
  margin-left: auto;
  padding-left: 210px;
}
#about-reason .inbox .rsn-list .rsn-item:nth-child(even) .rsn-img-box {
  right: 0;
}
#about-reason .inbox .rsn-list .rsn-item:nth-child(even) .txt-box {
  padding-right: 210px;
}

#about-greeting {
  padding: 100px 0;
}
#about-greeting .inbox {
  background: url(../img/about/greeting-le.png) left top 10px no-repeat, url(../img/about/greeting-ri.png) right 15px bottom 55px no-repeat;
}
#about-greeting .inbox::before {
  right: 0;
  top: 0;
}
#about-info {
  padding: 100px 0;
}
#about-map {
  width: 1280px;
  height: 400px;
  margin: 60px auto 0;
}

.era-item {
  padding: 100px 0;
}
.era-item .inbox .ttl01 {
  width: 100%;
}
.era-item .inbox .era-img {
  position: relative;
  z-index: 1;
}
.era-item .inbox .era-img::before {
  content: "";
  display: block;
  width: 698px;
  height: 589px;
  position: absolute;
  background: url("../img/../img/era/img-deco.png") center/contain no-repeat;
  z-index: -1;
  left: -197px;
  top: -123px;
}
.era-item .inbox .txt-box {
  width: 540px;
}
.era-item .inbox .txt-box .ttl02 {
  margin-bottom: 20px;
}
.era-item .inbox .era-point-box {
  width: 100%;
  margin-top: 60px;
  padding: 70px 40px 40px;
  overflow: visible;
}
.era-item .inbox .era-point-box .ttl02 {
  text-align: center;
  margin-top: -90px;
  margin-bottom: 30px;
}
.era-item .inbox .era-point-box .ttl02 span {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-color);
}
.era-item .inbox .era-point-box .point-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.era-item .inbox .era-point-box .point-item .ttl03 {
  padding: 10px;
}
.era-item .inbox .era-point-box .point-item .com-txt {
  padding: 15px 20px;
}

#guide-price {
  padding: 100px 0;
}
#guide-price .inbox .price-li {
  gap: 30px;
}
#guide-price .inbox .price-li .price-item {
  width: 340px;
}
#guide-price .inbox .price-li .price-item:first-of-type {
  width: 100%;
}
#guide-price .inbox .price-li .price-item .ttl02 {
  padding: 15px;
}
#guide-price .inbox .price-li .price-item .txt-box {
  padding: 25px 30px 30px;
}
#guide-price .inbox .price-li .price-item .txt-box .com-txt {
  margin-bottom: 10px;
  min-height: 56px;
}
#guide-price .inbox .price-li .price-item .txt-box dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#guide-price .inbox .price-li .price-item .txt-box dl dt {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-color);
  display: grid;
  place-items: center;
}
#guide-warning .inbox {
  padding: 100px 0;
  background: url(../img/guide/warning.png) top 44px left 60px no-repeat;
}
#guide-warning .inbox::before {
  right: 0;
  top: 60px;
}
#guide-flow {
  padding: 100px 0;
}
#guide-flow .inbox .flow-li {
  padding: 80px;
}
#guide-flow .inbox .flow-li li {
  display: flex;
  justify-content: space-between;
}
#guide-flow .inbox .flow-li li:not(:last-child) {
  margin-bottom: 35px;
}
#guide-flow .inbox .flow-li li .num {
  position: relative;
}
#guide-flow .inbox .flow-li li .num::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  position: absolute;
  background: var(--font-color);
  inset: 60px 0 auto 0;
  margin: 0 auto;
  opacity: 0.3;
}
#guide-flow .inbox .flow-li li .txt-box {
  width: 770px;
  gap: 0 20px;
}
#guide-flow .inbox .flow-li li .txt-box .ttl02 {
  margin-bottom: 20px;
}
#guide-flow .inbox .flow-li li .txt-box .com-maru {
  margin-top: 40px;
  width: 266px;
  overflow: visible;
}
#guide-flow .inbox .flow-li li .txt-box .com-maru h5 {
  font-size: 1.6rem;
}
#guide-flow .inbox .flow-li li .txt-box .line-box {
  padding: 15px;
}
#guide-flow .inbox .flow-li li .txt-box .line-box .line-btn {
  width: 220px;
  height: 60px;
  margin: 5px auto 0;
}

#guide-question {
  padding: 100px 0;
}
#guide-question .inbox .ttl02 {
  margin-bottom: 25px;
  margin-top: 50px;
}
#guide-question .inbox .question-item {
  padding: 35px 40px 40px 100px;
}
#guide-question .inbox .question-item:not(:last-of-type) {
  margin-bottom: 30px;
}
#guide-question .inbox .question-item .ttl03 {
  font-size: 2.2rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 25px;
  position: relative;
}
#guide-question .inbox .question-item .ttl03::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  background: url("../img/guide/faq-bg.png") center/contain no-repeat;
  content: "Q.";
  display: grid;
  place-items: center;
  color: #fff;
  top: -15px;
  left: -82px;
}
#guide-question .inbox .question-item .com-txt {
  position: relative;
}
#guide-question .inbox .question-item .com-txt::before {
  position: absolute;
  content: "A.";
  font-size: 2.2rem;
  font-weight: 500;
  top: -5px;
  left: -40px;
}

#case .inbox .case-item:not(:last-of-type) {
  margin-bottom: 20px;
}
#case .inbox .case-item a {
  padding: 40px;
  padding-right: 80px;
}
#case .inbox .case-item a::after {
  inset: 0 40px 0 auto;
  margin: auto 0;
}
#case-detail .inbox .case-item {
  padding: 40px;
}

.case-area {
  padding: 100px 0;
}
.case-area .inbox .case-item .ttl03 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(86, 86, 86, 0.3);
  margin-bottom: 10px;
}
.case-area .inbox .case-item .case-tag-list {
  margin-bottom: 15px;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-ttl {
  margin-bottom: 50px;
}
#site-map .site-list {
  padding: 70px 0 0;
}
#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 .ttl01 {
  text-align: center;
}
#notfound .inbox .txt-blc {
  padding: 70px 0 100px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  color: var(--font-color);
}
#notfound .inbox .txt-blc a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .ttl01 {
  margin-bottom: 100px;
}
#privacy .privacy-box {
  margin-bottom: 50px;
}
#privacy .privacy-box .ttl02 {
  font-size: 2.5rem;
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#news .select-area {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}
#news .select-area .select-box {
  width: 200px;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid #555;
  font-size: 1.3rem;
  font-weight: 400;
}
#news .select-area .select-box:has(option:only-child) {
  display: none;
}
#news .select-area .select-box option {
  font-weight: 500;
  font-size: 1.3rem;
}
#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: 80px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list .tag {
  background: var(--main-color);
  border-radius: 5px;
  color: #fff;
  padding: 2px 8px;
}
#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: 80px;
}
#detail .detail-box .data-box .tag-list {
  width: 800px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  color: #fff;
  padding: 3px 8px;
  background: var(--main-color);
  border-radius: 5px;
}
#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;
  background: var(--sub-color);
  padding: 16px 10px;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  background: var(--main-color);
  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---△△------------------------*/