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

section {
  padding: 120px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  line-height: 2.25;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 25px;
}

.com-btn {
  z-index: 1;
  height: 60px;
  position: relative;
  display: inline-grid;
  place-items: center;
  padding-left: 30px;
  margin-top: 30px;
}
.com-btn::before {
  content: "";
  display: block;
  width: 60px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: var(--accent-color-02);
  border-radius: 50vw;
  z-index: -1;
  left: 0;
  transition: 0.5s;
}
.com-btn:hover {
  opacity: 1;
}
.com-btn:hover::before {
  transform: scale(1.5);
}
.com-btn:hover::after {
  width: 45px;
  transform: translateX(10px);
}

.com-arw {
  position: relative;
  padding-right: 50px;
}
.com-arw::after {
  content: "";
  display: block;
  width: 38px;
  height: auto;
  aspect-ratio: 6.333;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
  transition: 0.5s;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-weight: 200;
  gap: 10px;
}
.ttl01 .en {
  line-height: 1;
  font-size: 3.4rem;
  color: var(--accent-color);
  padding: 0 55px;
  padding-bottom: 5px;
  background: url(../img/common/ttl-deco-ri.png) right bottom no-repeat, url(../img/common/ttl-deco-le.png) left bottom no-repeat;
}
.ttl01 .ja {
  font-size: 4.6rem;
}
.ttl01.txt-le {
  justify-content: start;
}

#top-greeting .ttl01 .en {
  padding-left: 0;
  background: url(../img/common/ttl-deco-ri.png) right bottom no-repeat;
}

.ttl02 {
  font-size: 2.8rem;
  font-weight: 200;
}
.ttl02 .num {
  color: var(--main-color);
  font-size: 0.857em;
  font-weight: 400;
}

.ttl03 {
  font-size: 2rem;
}

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

.ttl-bd {
  padding-bottom: 5px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid var(--accent-color);
}

.ill-item {
  border-radius: 50vw;
  aspect-ratio: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  outline: 1px solid #fff;
  outline-offset: -12px;
}
.ill-item.bg-wt {
  outline: 1px solid var(--bg-color);
}

.img-deco {
  position: relative;
  z-index: 1;
  top: 20px;
  left: 20px;
}
.img-deco::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--bg-color-02);
  inset: 0;
  z-index: -1;
  top: -20px;
  left: -20px;
}
.img-deco::after {
  content: "";
  display: block;
  width: 78px;
  height: auto;
  aspect-ratio: 0.975;
  position: absolute;
  background: url("../img/common/img-deco.png") center/contain no-repeat;
  left: -20px;
  bottom: 0;
}

.com-add-box {
  gap: 20px;
}
.com-add-box dl {
  display: grid;
  gap: 10px;
}
.com-add-box .dl-item {
  line-height: 1;
  gap: 15px;
}
.com-add-box .dl-item dt {
  background: var(--bg-color);
}

.com-tel {
  display: grid;
  justify-items: start;
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 60px;
  box-sizing: border-box;
}
.com-tel a {
  font-size: 2.8rem;
}

.deco-en {
  font-size: 13.4rem;
  position: absolute;
  line-height: 1;
  font-weight: 100;
  text-transform: uppercase;
  color: var(--main-color);
  font-family: var(--en-font);
}

.txt-sdw {
  text-shadow: 2px 2px 0px #fff;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tag-list .tag {
  color: var(--accent-color);
}

.bg-deco-01 {
  background: var(--bg-color);
  position: relative;
  z-index: 1;
}
.bg-deco-01 .deco-en {
  right: 20px;
  bottom: -20px;
}
.bg-deco-01::after {
  content: "";
  display: block;
  width: 27.6%;
  height: auto;
  aspect-ratio: 0.98;
  position: absolute;
  background: url("../img/common/img-le.png") center/contain no-repeat;
  left: 0;
  bottom: -110px;
  z-index: -1;
}
.bg-deco-01.deco-arw {
  background: linear-gradient(to top, transparent, transparent 80px, var(--bg-color) 80px, var(--bg-color));
}
.bg-deco-01.deco-arw::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  background: var(--bg-color);
  clip-path: polygon(0 0, 0 calc(100% - 80px), 50% 100%, 100% calc(100% - 80px), 100% 0);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.bg-deco-01#top-greeting .deco-en {
  bottom: -45px;
}

.bg-deco-02 {
  background: url(../img/common/bg-02-rt.png) right top 70px no-repeat;
  position: relative;
}
.bg-deco-02::before {
  content: "";
  display: block;
  width: 50%;
  height: 490px;
  position: absolute;
  background: url("../img/common/bg-02-rb.jpg") center/contain no-repeat;
  background-size: cover;
  background-position: center;
  right: 0;
  bottom: -160px;
  z-index: -1;
}

.bg-deco-03 {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
.bg-deco-03 .deco-en {
  text-orientation: sideways;
  writing-mode: vertical-rl;
  left: -20px;
  top: 0;
}
.bg-deco-03::before {
  content: "";
  display: block;
  width: calc(50% + 640px);
  height: 660px;
  position: absolute;
  background: url(../img/common/pat02.jpg);
  left: 0;
  top: 0;
  bottom: -160px;
  z-index: -1;
}

.bg-deco-04 {
  padding-top: 220px;
  position: relative;
  margin-top: -100px;
  z-index: 0;
  background: url(../img/common/bg-04-lt.png) top 150px left 12.6%/16% no-repeat, url(../img/common/bg-04-lb.jpg) left calc(50% - 560px) bottom no-repeat, var(--bg-color-02);
}
.bg-deco-04 .deco-en {
  right: 20px;
  bottom: -20px;
}
.bg-deco-04::after {
  content: "";
  display: block;
  width: 24.8%;
  height: auto;
  aspect-ratio: 0.66;
  position: absolute;
  background: url("../img/common/bg-04-ri.png") center/contain no-repeat;
  right: 0;
  top: -100px;
  z-index: 10;
}

.bg-deco-05 {
  background: url(../img/common/bg-05-rb.png) bottom right/30% no-repeat, var(--bg-color);
  position: relative;
  z-index: 1;
}
.bg-deco-05 .deco-en {
  right: 20px;
  bottom: -20px;
}

/*infotableスタイル*/
.com-desc-tbl {
  padding: 70px 120px;
  display: grid;
  gap: 20px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 120px;
}
.com-desc-tbl .dl-item dd {
  width: 680px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 10px 30px;
  padding-left: 0;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top > div {
  padding: 0 30px;
  border-right: 1px solid var(--bg-color);
}
#header .hd-right .hd-top > div:last-child {
  padding-right: 0;
  border: none;
}
#header .hd-right #nav {
  margin-top: 8px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
  border-right: 1px solid var(--bg-color);
  padding: 5px 20px;
}
#header .hd-right #nav .nav-list .nav-item:last-child {
  padding-right: 0;
  border: none;
}
#header .hd-right #nav .nav-list .nav-item > a {
  display: inline-block;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 140px, transparent 140px, transparent 100%);
}
.top-mv::before {
  content: "";
  display: block;
  width: 401px;
  height: auto;
  aspect-ratio: 0.935;
  position: absolute;
  background: url("../img/sv/deco-le.png") center/contain no-repeat;
  left: 0;
  bottom: -145px;
  z-index: 10;
}
.top-mv::after {
  content: "";
  display: block;
  width: 19.8%;
  height: auto;
  aspect-ratio: 0.83;
  position: absolute;
  background: rgba(234, 194, 194, 0.4);
  right: 0;
  bottom: -90px;
  z-index: 10;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  position: absolute;
  width: 34.7%;
  top: 17.7%;
  left: 6.25%;
}
.top-mv .mv-img {
  width: 68.2%;
  margin-left: auto;
  margin-right: 3.125%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-greeting .inbox {
  width: 1280px;
  gap: 70px;
}

#top-point .inbox {
  width: clamp(1280px, 77%, 1480px);
  position: relative;
}
#top-point .inbox .img-deco {
  position: absolute;
  left: 0;
  top: 140px;
  width: 42%;
  height: 380px;
}
#top-point .inbox .img-deco .deco-en {
  top: -80px;
  left: 0;
  z-index: 10;
}
#top-point .inbox .img-deco .com-img {
  width: 100%;
  height: 100%;
}
#top-point .inbox .txt-box {
  width: 60%;
  padding: 70px 10px;
  margin-left: auto;
  margin-bottom: 200px;
}
#top-point .inbox .txt-box .ja {
  text-transform: none;
}
#top-point .inbox .point-li {
  padding: 0 100px;
}
#top-point .inbox .point-li li {
  width: 340px;
  position: relative;
  gap: 30px;
}
#top-point .inbox .point-li li .num {
  position: absolute;
  display: inline-block;
  inset: -40px 0 auto 0;
  text-align: center;
  margin: 0 auto;
  font-size: 5rem;
}
#top-point .inbox .point-li li .num::before {
  content: "・";
}
#top-point .inbox .point-li li .num::after {
  content: "・";
}

#top-service {
  padding-bottom: 120px;
}
#top-service::before {
  height: 100%;
}
#top-service .inbox {
  width: clamp(1180px, 77%, 1480px);
}
#top-service .inbox ul li {
  position: relative;
  width: 31.5%;
}
#top-service .inbox ul li::after {
  content: "";
  display: block;
  width: 48px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/srv-deco.png") center/contain no-repeat;
  top: 10px;
  right: -10px;
}
#top-service .inbox ul li > .dp-b::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--accent-color);
  bottom: -10px;
  right: -10px;
}
#top-service .inbox ul li > .dp-b .ttl02 {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 10;
}
#top-service .inbox ul li > .dp-b .ttl02::after {
  content: "";
  display: block;
  width: 38px;
  height: auto;
  aspect-ratio: 6.333;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 -15px 0 auto;
  margin: auto 0;
}
#top-service .inbox ul li > .dp-b .txt-box {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 10;
}
#top-service .inbox ul li > .dp-b .txt-box .ttl03 {
  margin-left: 30px;
  margin-bottom: 10px;
}
#top-service .inbox ul li > .dp-b .txt-box .bg-acc02 h5 {
  font-size: 2.2rem;
}
#top-service .inbox ul li > .dp-b .txt-box .bg-acc02 h5::before {
  content: "・";
  color: #fff;
}
#top-service .inbox ul li > .dp-b .bg-acc02 {
  min-width: 290px;
  padding: 10px 30px;
}
#top-service .inbox ul li a:hover {
  transform: translateY(-10px);
}
#top-reason {
  padding-bottom: 190px;
  position: relative;
  z-index: 10;
  background: url(../img/common/bg-04-lt.png) top 50px left 12.6%/16% no-repeat;
}
#top-reason::after {
  content: "";
  display: block;
  width: 24.8%;
  height: auto;
  aspect-ratio: 0.66;
  position: absolute;
  background: url("../img/common/bg-04-ri.png") center/contain no-repeat;
  right: 0;
  top: -100px;
  z-index: 10;
}
#top-reason .inbox {
  position: relative;
}
#top-reason .inbox .deco-en {
  bottom: -210px;
  right: 0;
}
#top-reason .inbox .gree-ill {
  position: absolute;
  bottom: -190px;
  right: -200px;
}
#top-reason .inbox ol {
  display: grid;
  justify-content: center;
  gap: 60px;
}
#top-reason .inbox ol li .ttl02 {
  margin-bottom: 10px;
  padding-bottom: 5px;
  padding-left: 100px;
  position: relative;
}
#top-reason .inbox ol li .ttl02 .num {
  position: absolute;
  left: 25px;
  bottom: 3px;
  font-size: 5rem;
  font-weight: 500;
}
#top-reason .inbox ol li .ttl02 .num::after {
  content: "";
  display: block;
  width: 100px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid var(--accent-color);
  border-radius: 50vw;
  right: 0;
  bottom: -25px;
}
#top-reason .inbox ol li .com-txt {
  padding-left: 100px;
}

#top-faq {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
#top-faq::after {
  content: "";
  display: block;
  width: calc(50% - 230px);
  height: 670px;
  position: absolute;
  background: url(../img/top/faq-bg-le.jpg) center/cover no-repeat;
  left: 0;
  top: -120px;
  z-index: 10;
}
#top-faq .inbox {
  z-index: 1;
  width: 1280px;
  padding-top: 70px;
  padding-bottom: 200px;
}
#top-faq .inbox::before {
  content: "";
  display: block;
  width: calc(50% + 640px);
  height: calc(100% - 120px);
  position: absolute;
  background: #fff;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#top-faq .inbox::after {
  content: "";
  display: block;
  width: 22%;
  height: auto;
  aspect-ratio: 1.29;
  position: absolute;
  background: url("../img/top/faq-bg-ri.png") center/contain no-repeat;
  right: 7.2%;
  bottom: 30px;
}
#top-faq .inbox .img-box {
  position: absolute;
  top: 270px;
  left: 60px;
  z-index: 20;
}
#top-faq .inbox .img-box .deco-en {
  left: 0;
  top: -80px;
}
#top-faq .inbox .txt-box {
  z-index: 30;
  position: relative;
  width: 680px;
  margin-left: auto;
  padding: 80px 140px;
}
#top-faq .content-box {
  position: relative;
}

#top-other {
  padding-top: 0;
}
#top-other .inbox ul li a {
  width: 510px;
  position: relative;
}
#top-other .inbox ul li a:hover {
  transform: scale(0.95);
}
#top-other .inbox ul li a .ttl01 {
  position: absolute;
  margin: auto;
  display: grid;
  align-content: center;
  inset: 0;
}
#top-other .inbox ul li a .ttl01 .other-en {
  position: absolute;
  font-family: var(--en-font-02);
  font-size: 12rem;
  transform: rotate(-10deg);
  color: var(--bg-color);
  opacity: 0.4;
  right: -20px;
  bottom: -50px;
}
#top-other .inbox ul li a::after {
  content: "";
  display: block;
  width: 38px;
  height: auto;
  aspect-ratio: 6.333;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 auto 0 30px;
  margin: auto 0;
  transition: 0.5s;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  background: var(--bg-color-02);
  position: relative;
  z-index: 1;
}
#top-news::before {
  content: "";
  display: block;
  width: 15%;
  height: auto;
  aspect-ratio: 0.61;
  position: absolute;
  background: url("../img/top/news-bg.png") center/contain no-repeat;
  left: 0;
  bottom: -100px;
  z-index: -1;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  margin: 0;
  min-height: 310px;
  padding-top: 20px;
  align-content: flex-start;
}
#top-news .inbox .news-list {
  width: 750px;
  gap: 20px;
}
#top-news .inbox .news-list .news-item:nth-child(odd) {
  transform: translateX(-40px);
}
#top-news .inbox .news-list .news-item a {
  gap: 20px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 140px;
  aspect-ratio: 1.4;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 590px;
  gap: 20px 10px;
}
#top-news .inbox .news-list .news-item a .txt-box time {
  color: var(--font-color-02);
  line-height: 1;
  padding-right: 5px;
  border-right: 1px solid var(--font-color-02);
}
#top-news .inbox .news-list .news-item a .txt-box .tag-list {
  max-width: 400px;
  line-height: 1;
}
#top-news .inbox .news-list .news-item a .txt-box h4 {
  padding: 10px 20px;
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  left: 0;
  bottom: 0;
}

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

.side-line {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 20px;
  width: 70px;
}
.side-line img {
  width: 30px;
}

#footer {
  padding: 90px 0;
  position: relative;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 40px;
  width: 50%;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 5px;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
  line-height: 1;
}
#footer .ft-area .ft-le .ft-info-box .ft-info dt {
  padding-right: 5px;
  border-right: 1px solid var(--accent-color);
  margin-right: 10px;
}
#footer .ft-area .ft-le .sns-link-box {
  gap: 20px;
  line-height: 1;
}
#footer .ft-area .ft-le .sns-link-box .com-bd {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
#footer .ft-area .ft-le .sns-link-box .hot-pp {
  width: 100px;
}
#footer .ft-area .ft-le .sns-link-box .hot-pp img {
  width: 100%;
}
#footer .ft-area .ft-ri {
  width: 50%;
}
#footer .ft-area .ft-ri .ft-nav {
  gap: 75px;
  padding: 40px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--sub-color);
  border-bottom: 1px solid var(--sub-color);
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 30px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item a::before {
  content: "ー";
  display: inline-block;
  margin-right: 5px;
  color: var(--sub-color);
}
#footer .ft-area .ft-ri .off-btn {
  width: 210px;
  height: 62px;
  display: grid;
  align-content: center;
  padding: 15px;
  margin-bottom: 20px;
}
#footer .ft-area .ft-ri .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  position: relative;
  background: linear-gradient(to top, var(--bg-color), var(--bg-color) 70px, transparent 70px, transparent 100%);
}
.sv-area::before {
  content: "";
  display: block;
  width: 401px;
  height: auto;
  aspect-ratio: 0.935;
  position: absolute;
  background: url("../img/sv/deco-le.png") center/contain no-repeat;
  left: 0;
  bottom: -145px;
  z-index: 10;
}
.sv-area::after {
  content: "";
  display: block;
  width: 19.8%;
  height: 250px;
  position: absolute;
  background: rgba(234, 194, 194, 0.4);
  right: 0;
  bottom: -90px;
  z-index: 10;
}
.sv-area .sv {
  width: clamp(1180px, 87.5%, 1680px);
  margin: 0 auto;
  height: 400px;
  display: grid;
  align-content: center;
  position: relative;
  z-index: 1;
}
.sv-area .sv .sv-catch {
  font-size: 5rem;
  font-weight: 100;
  width: 720px;
  height: 120px;
  display: grid;
  justify-items: center;
  align-content: center;
  background: rgba(236, 166, 166, 0.6);
  position: relative;
}
.sv-area .sv .sv-catch::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #fff;
  left: 10px;
  top: 10px;
}
.sv-area .sv .sv-img {
  position: absolute;
  width: 67.3%;
  height: 100%;
  right: 0;
  z-index: -1;
}

/*---------------------------△△---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---△△---------*/
.trouble-area ul {
  padding-bottom: 40px;
  gap: 10px;
}
.trouble-area ul li {
  background: url("../img/common/check.png") left top 12px/auto no-repeat;
  padding-left: 30px;
  box-sizing: border-box;
}
.trouble-area .trbl-ill {
  bottom: 0;
  right: 0;
}

.recom-area .txt-box {
  width: 446px;
}
.recom-area ol {
  width: 100%;
  gap: 40px;
  margin-top: 70px;
}
.recom-area ol li .ill-item {
  width: 210px;
}
.recom-area ol li .txt-box {
  width: 830px;
}
.recom-area ol li .txt-box .ttl02 {
  gap: 10px;
}

.about-area .bg-wt .ttl02 {
  margin-bottom: 40px;
}
.about-area .bg-wt .table-wrapper table th, .about-area .bg-wt .table-wrapper table td {
  padding: 20px 40px;
  padding-right: 30px;
}
.about-area .bg-wt .table-wrapper table td {
  min-width: 330px;
}
.about-area .bg-wt .table-wrapper table td:first-of-type {
  background: var(--bg-color);
}
.about-area .bg-wt .table-wrapper table td:last-of-type {
  background: var(--bg-color-02);
}
.about-area .bg-wt .table-wrapper table th:nth-of-type(2) {
  background: var(--sub-color);
}
.about-area .bg-wt .table-wrapper table th:nth-of-type(3) {
  background: var(--accent-color-03);
}
.about-area .bg-wt .table-wrapper table tbody tr {
  border-top: 1px solid var(--main-color);
}

.bg-deco-03 .inbox > .bg-wt {
  outline: 1px solid var(--accent-color);
  outline-offset: 10px;
  margin-top: 60px;
  padding: 60px 80px;
}

.voice-area ul {
  gap: 40px;
}
.voice-area ul li {
  padding-bottom: 30px;
  gap: 30px;
  justify-content: center;
}
.voice-area ul li .txt-box .ttl02 {
  margin-bottom: 10px;
}

#faq .faq-li {
  gap: 40px;
}
#faq .faq-li li {
  padding: 0 55px 40px;
  position: relative;
}
#faq .faq-li li .ttl02 {
  margin-bottom: 20px;
}
#faq .faq-li li .ttl02::before {
  content: "Q.";
  font-family: var(--en-font);
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: 4.6rem;
}

.sec-btn-li {
  gap: 70px;
}

#info-flow {
  padding-top: 120px;
}
#info-flow ol {
  gap: 40px;
}
#info-flow ol li {
  gap: 40px;
}
#info-flow ol li .ill-item {
  width: 160px;
}
#info-flow ol li .txt-box {
  max-width: 870px;
}

.map {
  height: 420px;
  margin-top: 120px;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 120px 0;
  background: url(../img/common/bg-05-rb.png) bottom right/30% no-repeat, var(--bg-color);
  position: relative;
  z-index: 1;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#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 .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;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#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---△△------------------------*/