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

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

section {
  padding: 12rem 0;
}

.dl-item {
  display: flex;
}

.inbox-02 {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.btn-01 {
  display: inline-grid;
  place-items: center;
  height: 6rem;
  padding: 0 4rem;
  background: var(--font-color);
  transform: skew(-20deg);
  color: var(--white);
}
.btn-01:link, .btn-01:visited {
  color: var(--white);
}
.btn-01 > span {
  transform: skew(20deg);
  position: relative;
  padding-right: 3rem;
}
.btn-01 > span::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url("../img/common/btn-arw-wt.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.btn-02 {
  display: grid;
  place-items: center;
  width: 340px;
  height: 7rem;
  border-radius: 50vw;
  position: relative;
  background: var(--font-color);
  color: var(--white);
}
.btn-02:link, .btn-02:visited {
  color: var(--white);
}
.btn-02::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url("../img/common/btn-arw-wt.png") center/contain no-repeat;
  inset: 0 3rem 0 auto;
  margin: auto 0;
}
.btn-02 > span {
  padding-right: 3rem;
}
.btn-02.bg-wt {
  background: #fff;
  width: 310px;
  color: var(--accent-color);
  border: 0.2rem solid var(--accent-color);
}
.btn-02.bg-wt::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url("../img/common/btn-arw-ao.png") center/contain no-repeat;
}

.btn-03 a {
  display: inline-block;
  border-bottom: 1px solid var(--font-color);
  position: relative;
  padding: 0.5rem 0;
  padding-right: 3rem;
}
.btn-03 a::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.btn-03.ft-wt a {
  border-bottom: 1px solid #fff;
}
.btn-03.ft-wt a::after {
  background-image: url(../img/common/btn-arw-wt.png);
}

.rsv-btn {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 440px;
  height: 8rem;
  border-radius: 50vw;
  background: var(--accent-color);
  color: var(--white);
}
.rsv-btn:link, .rsv-btn:visited {
  color: var(--white);
}
.rsv-btn span {
  padding: 0.5rem 0;
  background: url("../img/common/rsv-icon.png") left center/3rem no-repeat;
  padding-left: 4.5rem;
  box-sizing: border-box;
}
.rsv-btn .psn-icon {
  background: url("../img/common/psn-icon.png") left center/2rem no-repeat;
  padding-left: 3.5rem;
  box-sizing: border-box;
}

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

.ttl01 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 6rem;
  gap: 2rem;
}
.ttl01 .en {
  line-height: 1;
  font-size: 6.6rem;
  text-transform: capitalize;
}
.ttl01 .en::first-letter {
  color: var(--main-color);
}
.ttl01 .ja {
  font-size: 2rem;
}
.ttl01.txt-le {
  justify-items: start;
  text-align: left;
}

.ttl02 {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 6rem;
  gap: 2rem;
}
.ttl02 .en {
  line-height: 1;
  font-size: 2.6rem;
  color: var(--main-color);
}
.ttl02 .ja {
  font-size: 5rem;
}
.ttl02.txt-le {
  justify-items: start;
  text-align: left;
}

.ttl03 {
  font-size: 3rem;
}

.ttl04 {
  font-size: 2.8rem;
}

.ttl05 {
  font-size: 2.4rem;
}

.ttl06 {
  font-size: 2.2rem;
}

.ttl07 {
  font-size: 2rem;
}

.ttl08 {
  font-size: 1.8rem;
}

.ttl-bd {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--main-color);
}

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

.skew {
  transform: skew(-20deg);
}

.skew-inbox {
  transform: skew(20deg);
}

.bd-box {
  border-top: 0.6rem solid var(--main-color);
  border-bottom: 0.6rem solid var(--main-color);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag-list .tag {
  line-height: 1;
  font-size: 1.4rem;
  color: var(--bd-color);
  padding: 0 1rem;
  background: url("../img/common/tag-icon.png") left center/1.4rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}

time {
  font-size: 2rem;
  color: var(--main-color);
  line-height: 1;
}

.com-kado {
  border-radius: 2rem;
}
.com-kado > img {
  border-radius: 2rem;
}

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

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: #fff;
  z-index: 1000;
  padding: 1.8rem 3rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  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);
}
#header .hd-right #nav .nav-list .nav-item .current::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
  margin-top: 10rem;
}
.top-mv img {
  width: 100%;
}
.top-mv .mv-ct {
  position: absolute;
  width: 36.4%;
  left: 10.4%;
  bottom: 15%;
  z-index: 500;
}
.top-mv .mv-mov {
  width: 100%;
  aspect-ratio: 2.82;
  position: relative;
}
.top-mv .mv-mov::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.top-mv .mv-mov iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/*---------------------------△△---MV---△△------------------------*/
.top-btn-box ul {
  padding: 3.5rem 0;
  gap: 3rem;
  background: url(../img/top/btn-bg-le.png) left top no-repeat, url(../img/top/btn-bg-ri.png) right bottom no-repeat;
}
#top-check {
  background: url(../img/top/check-bg.png) bottom/100% no-repeat;
}
#top-check .inbox {
  padding: 1rem 0 8rem;
  position: relative;
  margin-bottom: 8rem;
}
#top-check .inbox::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: auto;
  aspect-ratio: 1.13;
  position: absolute;
  background: url("../img/top/check-arw.png") center/contain no-repeat;
  inset: auto 0 -5rem 0;
  margin: 0 auto;
}
#top-check .inbox .ttl01 {
  margin-top: -4rem;
}
#top-check .inbox ul {
  gap: 1rem;
}
#top-check .inbox ul li {
  background: url("../img/common/check.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}
#top-check .inbox ul li:not(:last-child) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bd-color);
}
#top-check .ttl05 > span {
  display: inline-block;
  padding: 2rem 9rem;
  background: url(../img/top/check-le.png) left no-repeat, url(../img/top/check-ri.png) right no-repeat;
}

#top-about .inbox-02 {
  position: relative;
}
#top-about .inbox-02 .ill-01 {
  position: absolute;
  top: -20rem;
  left: -10rem;
}
#top-about .inbox-02 .ill-02 {
  position: absolute;
  top: -3rem;
  right: -17rem;
}
#top-about .inbox-02 .bd-box {
  background: url(../img/top/about-bg-le.png) left bottom no-repeat, url(../img/top/about-bg-ri.png) right 16rem center no-repeat, #fff;
  margin-top: 16rem;
  padding: 8rem 0;
  position: relative;
}
#top-about .inbox-02 .bd-box::after {
  content: "";
  display: block;
  width: 24rem;
  height: auto;
  aspect-ratio: 1.23;
  position: absolute;
  background: url("../img/top/about-deco.png") center/contain no-repeat;
  bottom: -7rem;
  right: -11.5rem;
}
#top-about .inbox-02 .bd-box .inbox .img-01 {
  margin-top: -16rem;
  margin-left: -25rem;
}
#top-about .inbox-02 .bd-box .inbox .txt-box-01 {
  width: 420px;
  margin-left: auto;
}
#top-about .inbox-02 .bd-box .inbox .ttl03 {
  width: 100%;
  margin: 7rem 0 4rem;
}
#top-about .inbox-02 .bd-box .inbox .ttl03 .bg-main {
  padding: 1rem 6rem;
}
#top-about .inbox-02 .bd-box .inbox .txt-box-02 {
  width: 680px;
}
#top-about .inbox-02 .bd-box .inbox .txt-box-02 .btn-01 {
  margin-top: 3rem;
}

#top-reason .inbox-02 {
  display: grid;
  justify-items: center;
  gap: 6rem;
  padding: 0 6.5rem;
}
#top-reason ol {
  gap: 6rem;
  position: relative;
}
#top-reason ol::before {
  content: "";
  display: block;
  width: 38rem;
  height: auto;
  aspect-ratio: 1.52;
  position: absolute;
  background: url("../img/common/deco-01-le.png") center/contain no-repeat;
  left: -13rem;
  top: -11rem;
}
#top-reason ol::after {
  content: "";
  display: block;
  width: 15.8rem;
  height: auto;
  aspect-ratio: 1.12;
  position: absolute;
  background: url("../img/common/deco-01-ri.png") center/contain no-repeat;
  bottom: -11rem;
  right: -13rem;
}
#top-reason ol li {
  margin-right: auto;
  position: relative;
  padding: 7rem 13rem;
}
#top-reason ol li .img-box {
  position: absolute;
  z-index: 10;
  top: 4.5rem;
  right: -11rem;
}
#top-reason ol li .txt-box .ttl04 .num {
  position: absolute;
  font-size: 4rem;
  line-height: 1;
  border-bottom: 0.6rem solid var(--main-color);
  left: 0;
  top: -9rem;
  padding-bottom: 0.5rem;
}
#top-reason ol li .txt-box .com-txt {
  padding-right: 14rem;
}
#top-reason ol .rsn-02 {
  left: -5rem;
}
#top-reason ol .rsn-03 {
  left: -10rem;
}

#common-reserve {
  padding: 0;
  position: relative;
  z-index: 20;
}
#common-reserve::before {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  position: absolute;
  background: var(--accent-color);
  inset: 0;
  margin: auto 0;
  z-index: -1;
}
#common-reserve .inbox-02 {
  width: 76.5%;
  min-width: 1280px;
}
#common-reserve .inbox-02 .skew-inbox {
  background: url(../img/common/rsv-bg-top.png) top left 27rem no-repeat, url(../img/common/rsv-bg.png) top right 6rem no-repeat, url(../img/common/rsv-bg-btm.png) bottom right 45rem no-repeat;
}
#common-reserve .inbox-02 .skew-inbox .txt-box {
  width: 820px;
  margin-left: auto;
  padding: 7rem 0 8rem;
}
#common-reserve .inbox-02 .skew-inbox .txt-box .ttl02 {
  display: flex;
  gap: 3rem 4rem;
}
#common-reserve .inbox-02 .skew-inbox .txt-box .ttl02 .en {
  font-size: 6.6rem;
  color: #fff;
}
#common-reserve .inbox-02 .skew-inbox .txt-box .ttl02 .ja .dot {
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 13%, transparent 13%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1.05em 0.2em;
  padding-top: 0.1em;
}
#common-reserve .inbox-02 .skew-inbox .txt-box .ttl02 small {
  padding: 1.5rem 0;
  background: url(../img/common/rsv-fuki.png) left no-repeat;
}
#common-reserve .inbox-02 .skew-inbox .txt-box .btn-box {
  gap: 3rem;
}
#common-reserve .inbox-02 .skew-inbox .img-box {
  position: absolute;
  bottom: 0;
  left: -19rem;
}

#top-voice .inbox {
  position: relative;
}
#top-voice .inbox .ttl01 {
  margin: 0;
  width: auto;
}
#top-voice .inbox ul {
  width: 600px;
  gap: 3rem;
}
#top-voice .inbox ul li a {
  width: 180px;
}
#top-voice .inbox ul li a .com-img {
  width: 100%;
  aspect-ratio: 1;
}
#top-voice .inbox ul li a::before {
  content: "";
  display: block;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-left: 2px solid var(--main-color);
  border-top: 2px solid var(--main-color);
  top: -0.8rem;
  left: -0.8rem;
}
#top-voice .inbox .btn-03 {
  position: absolute;
  left: 0;
  bottom: 2rem;
}

.voice-li li a {
  gap: 0.5rem;
  position: relative;
  position: relative;
}
.voice-li li a .com-img {
  width: 100%;
  aspect-ratio: 1;
}
.voice-li li a::before {
  content: "";
  display: block;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  border-left: 2px solid var(--main-color);
  border-top: 2px solid var(--main-color);
  top: -0.8rem;
  left: -0.8rem;
}

#top-chart {
  position: relative;
}
#top-chart::before {
  content: "";
  display: block;
  width: 156rem;
  height: calc(100% - 40rem);
  position: absolute;
  background: var(--accent-color);
  inset: auto 0 13rem 0;
  margin: 0 auto;
}
#top-chart .inbox-02 {
  position: relative;
  border-top: 0.6rem solid var(--accent-color);
  width: 73%;
  min-width: 1280px;
  padding: 8rem 0;
  margin-bottom: 10rem;
}
#top-chart .inbox-02 .ill-01 {
  position: absolute;
  left: 10rem;
  top: 12rem;
}
#top-chart .inbox-02 .ill-02 {
  position: absolute;
  top: 6rem;
  right: 12rem;
}
#top-chart .inbox-02 #contents #chart {
  padding: 0;
  margin-top: 5rem;
}
#top-chart .inbox-02 #contents .chart_container article {
  scroll-margin-top: 35rem;
  padding: 0 0 4rem;
}
#top-chart .inbox-02 #contents .chart_container article .ttl05 {
  padding: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}
#top-chart .inbox-02 #contents .chart_container article .ttl05 .en {
  position: absolute;
  left: 3rem;
  font-size: 3.6rem;
  line-height: 1;
  top: 1rem;
}
#top-chart .inbox-02 #contents .chart_container .chart_btn_list {
  padding: 0 5rem;
  gap: 2.5rem;
}
#top-chart .inbox-02 #contents .chart_container .chart_btn_list .btn-02 {
  width: 480px;
}
#top-chart .inbox-02 #contents .chart_container .chart_btn_list:has(> :nth-child(3):last-child) .btn-02 {
  width: 310px;
}
#top-chart .inbox-02 #contents .chart_container .chart_back-btn {
  margin-top: 3rem;
  padding-right: 3rem;
}
#top-chart .inbox-02 #contents .chart_container .chart_back-btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  position: absolute;
  background: url("../img/top/chart-back.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
#top-chart .inbox-02 #contents .chart_container .com_chart {
  cursor: pointer;
}
#top-chart .inbox-02 #contents .chart_container .com_chart:first-of-type {
  display: block;
}
#top-chart .inbox-02 #contents .chart_container .com_chart {
  display: none;
  cursor: pointer;
}
#top-chart .inbox-02 #contents .chart_container .result_chart {
  cursor: pointer;
  display: none;
}
#top-chart .inbox-02 #contents .chart_container .result_chart .bg-clr01 {
  padding: 0 5rem 4rem;
}
#top-chart .inbox-02 #contents .chart_container .result_chart .ttl05 {
  position: relative;
}
#top-chart .inbox-02 #contents .chart_container .result_chart .ttl05::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.3rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -1.2rem 0;
  margin: 0 auto;
}
#top-chart .inbox-02 #contents .chart_container .result_chart .ttl03 {
  font-size: 3.6rem;
  padding: 1rem;
  border-top: 0.3rem dotted var(--main-color);
  border-bottom: 0.3rem dotted var(--main-color);
  margin-bottom: 3.5rem;
}
#top-chart .inbox-02 #contents .chart_container .result_chart .rsv-btn {
  margin: 3rem auto 2rem;
}

#top-access {
  position: relative;
}
#top-access::before {
  content: "";
  display: block;
  width: 73%;
  height: 50%;
  position: absolute;
  min-width: 1208px;
  background: var(--bg-color);
  inset: auto 0 0 0;
  margin: 0 auto;
  z-index: -1;
}
#top-access .inbox {
  position: relative;
}
#top-access .inbox::before {
  content: "";
  display: block;
  width: 32rem;
  height: auto;
  aspect-ratio: 1.1;
  position: absolute;
  background: url("../img/common/deco-02-le.png") center/contain no-repeat;
  top: -15rem;
  left: -10rem;
}
#top-access .inbox::after {
  content: "";
  display: block;
  width: 22rem;
  height: auto;
  aspect-ratio: 0.85;
  position: absolute;
  background: url("../img/common/deco-02-ri.png") center/contain no-repeat;
  top: 0;
  right: -7rem;
  z-index: -1;
}
#top-access .inbox .map {
  width: 520px;
  height: 420px;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: auto;
}
#top-news .inbox .news-list {
  width: 780px;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--bd-color);
}
#top-news .inbox .news-list .news-item a {
  padding: 1.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateX(10px);
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .news-list .news-item a .tag-list {
  margin-bottom: 1rem;
}
#top-news .inbox .news-list .news-item a .txt-box {
  width: 590px;
}
#top-news .inbox .btn-03 {
  position: absolute;
  left: 0;
  top: 17rem;
}

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

#footer {
  padding: 25rem 0 10rem;
  margin-top: -18.2rem;
  position: relative;
  background: var(--font-color);
}
#footer .ft-area {
  gap: 1.5rem 0;
}
#footer .ft-area .ft-logo-box {
  width: 50%;
  gap: 2rem;
}
#footer .ft-area .ft-logo-box .ft-logo {
  margin-right: 2rem;
}
#footer .ft-area .ft-logo-box .sns-icon {
  width: 40px;
}
#footer .ft-area .ft-logo-box .sns-icon img {
  width: 100%;
}
#footer .ft-area .ft-info-box {
  display: grid;
  gap: 1rem;
  width: 50%;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 2rem;
  padding-left: 2rem;
  border-left: 1px solid var(--bd-color);
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .copyright {
  font-size: 1.2rem;
  opacity: 0.5;
  margin-top: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.sec-btn-box {
  padding: 2rem 0 4rem;
}

#reason {
  display: grid;
  gap: 12rem;
}

.reason-area {
  padding: 8rem 10rem;
}
.reason-area > .txt-box .ttl02 {
  position: relative;
}
.reason-area > .txt-box .ttl02 .num {
  position: absolute;
  left: 0;
  font-size: 4rem;
  line-height: 1;
  border-bottom: 0.6rem solid var(--main-color);
  left: 0;
  top: -9rem;
  padding-bottom: 0.5rem;
}
.reason-area > .txt-box .ttl02 .ja {
  font-size: 3.8rem;
}
.reason-area > .txt-box > .img-box {
  position: absolute;
  top: 0;
  right: -5rem;
}
.reason-area > .txt-box .btn-01 {
  margin-top: 2.5rem;
}
.reason-area .bg-wt {
  padding: 5rem 9rem;
  margin-top: 10rem;
  position: relative;
  z-index: 1;
}
.reason-area .bg-wt::before {
  content: "";
  display: block;
  width: 30rem;
  height: auto;
  aspect-ratio: 1.52;
  position: absolute;
  background: url("../img/common/deco-01-le.png") center/contain no-repeat;
  left: -12rem;
  top: -3rem;
  z-index: -1;
}
.reason-area .bg-wt::after {
  content: "";
  display: block;
  width: 15.8rem;
  height: auto;
  aspect-ratio: 1.12;
  position: absolute;
  background: url("../img/common/deco-01-ri.png") center/contain no-repeat;
  bottom: -5rem;
  right: -6rem;
}
.reason-area .bg-wt .ttl03 {
  margin-bottom: 4rem;
}
.reason-area .bg-wt ol {
  gap: 4rem 0;
}
.reason-area .bg-wt ol li {
  width: 430px;
  border-top: 0.6rem solid var(--main-color);
}
.reason-area .bg-wt ol li .ttl06 {
  padding: 1.5rem;
  gap: 1.5rem;
}
.reason-area .bg-wt ol li .ttl06 .num {
  width: 5rem;
  font-size: 2.6rem;
}
.reason-area .bg-wt ol li .com-txt {
  padding: 0 1.5rem 1.5rem;
}
.reason-area .bg-wt .txt-box {
  width: 460px;
  padding-top: 3rem;
}

#about-trial .inbox-02 ol {
  margin-top: 7.5rem;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
#about-trial .inbox-02 ol::before {
  content: "";
  display: block;
  width: 32.7rem;
  height: auto;
  aspect-ratio: 1.08;
  position: absolute;
  background: url("../img/about/trial-deco-le.png") center/contain no-repeat;
  left: -11rem;
  top: -25.7rem;
  z-index: -1;
}
#about-trial .inbox-02 ol::after {
  content: "";
  display: block;
  width: 24rem;
  height: auto;
  aspect-ratio: 1.23;
  position: absolute;
  background: url("../img/top/about-deco.png") center/contain no-repeat;
  bottom: -7rem;
  right: -10.5rem;
}
#about-trial .inbox-02 ol li {
  padding: 4rem 10rem;
}
#about-trial .inbox-02 ol li:nth-child(odd) {
  flex-direction: row-reverse;
}
#about-trial .inbox-02 ol li .txt-box {
  width: 660px;
}
#about-trial .inbox-02 ol li .txt-box h4 {
  gap: 1rem;
}
#about-trial .inbox-02 ol li .txt-box h4 .num {
  padding: 0 2rem;
}
#about-trial .inbox-02 ol .trial-05 .txt-box {
  width: 100%;
}

#about-faq ul {
  position: relative;
  z-index: 1;
}
#about-faq ul::before {
  content: "";
  display: block;
  width: 32rem;
  height: auto;
  aspect-ratio: 1.1;
  position: absolute;
  background: url("../img/common/deco-02-le.png") center/contain no-repeat;
  top: -13rem;
  left: -17rem;
  z-index: -1;
}
#about-faq ul::after {
  content: "";
  display: block;
  width: 22rem;
  height: auto;
  aspect-ratio: 0.85;
  position: absolute;
  background: url("../img/common/deco-02-ri.png") center/contain no-repeat;
  right: -18rem;
  bottom: -5rem;
  z-index: -1;
}
#about-faq ul {
  gap: 5rem;
}
#about-faq ul li .ttl07 {
  position: relative;
  padding: 1.5rem 8rem;
}
#about-faq ul li .ttl07::after {
  content: "Q.";
  font-size: 3.6rem;
  font-family: var(--en-font);
  line-height: 1;
  left: 2rem;
  top: 1rem;
  position: absolute;
}
#about-faq ul li .com-txt {
  padding: 1.5rem 4rem 2rem;
}

#about-price {
  position: relative;
}
#about-price::before {
  content: "";
  display: block;
  width: 73%;
  height: calc(100% - 57rem);
  position: absolute;
  min-height: 250px;
  min-width: 1208px;
  background: var(--accent-color);
  inset: auto 0 13rem 0;
  margin: 0 auto;
  z-index: -1;
}
#about-price .inbox {
  padding-bottom: 6rem;
}
#about-price .inbox dl {
  margin-bottom: 5rem;
}
#about-price .inbox dl dt {
  width: 350px;
  padding: 1.5rem 3rem;
}
#about-price .inbox dl dd {
  width: 730px;
  padding: 1.5rem 4rem;
}
#about-price .inbox .ttl03 {
  margin-bottom: 3rem;
}
#about-price .inbox .ttl03 span {
  position: relative;
  padding-right: 13rem;
}
#about-price .inbox .ttl03 span::after {
  content: "";
  display: block;
  width: 8.4rem;
  height: 1px;
  position: absolute;
  background: #fff;
  inset: 0 0 0 auto;
  margin: auto 0;
}

#trainer-about .inbox-02 {
  position: relative;
  z-index: 1;
}
#trainer-about .inbox-02::before {
  content: "";
  display: block;
  width: 38rem;
  height: auto;
  aspect-ratio: 1.52;
  position: absolute;
  background: url("../img/trainer/deco-le.png") center/contain no-repeat;
  left: -5rem;
  bottom: -7rem;
  z-index: -1;
}
#trainer-about .inbox-02::after {
  content: "";
  display: block;
  width: 15.8rem;
  height: auto;
  aspect-ratio: 1.12;
  position: absolute;
  background: url("../img/common/deco-01-ri.png") center/contain no-repeat;
  top: -8.5rem;
  right: -6rem;
  z-index: -1;
}
#trainer-about .inbox-02 .skew {
  width: 1100px;
  margin: 0 auto 7rem;
  position: relative;
}
#trainer-about .inbox-02 .skew .skew-inbox {
  padding: 5rem;
}
#trainer-about .inbox-02 .skew .txt-box {
  width: 560px;
  margin-left: auto;
}
#trainer-about .inbox-02 .skew .txt-box .ttl02 {
  display: flex;
  margin-bottom: 3rem;
}
#trainer-about .inbox-02 .skew .txt-box .ttl02 .ja {
  font-size: 4rem;
}
#trainer-about .inbox-02 .skew .txt-box .ttl02 .en {
  font-size: 2.2rem;
}
#trainer-about .inbox-02 .skew .img-box {
  position: absolute;
  bottom: 0;
  left: 6.5rem;
}
#trainer-about .inbox .trn-box {
  width: 512px;
  padding: 2.5rem;
}
#trainer-about .inbox .trn-box .ttl08 {
  padding: 0.5rem;
  margin-bottom: 2.5rem;
}
#trainer-about .inbox .trn-box ul {
  gap: 0.5rem;
}

#trainer-other ul {
  gap: 5rem;
}
#trainer-other ul li {
  padding: 5rem;
}
#trainer-other ul li .ttl03 {
  width: 680px;
  margin-bottom: 4rem;
  padding: 1rem;
}

#voice .voice-li {
  gap: 6rem 7.5rem;
}
#voice .voice-li li a {
  width: 290px;
}
.voice-ttl {
  padding-left: 2rem;
  position: relative;
}
.voice-ttl::before {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  position: absolute;
  background: var(--main-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}

.voice-pro span {
  display: inline-block;
  padding: 0 1rem;
  background: #e5e5e5;
}

.voice-detail .com-img {
  width: 700px;
  aspect-ratio: 1;
  margin: 0 auto 6rem;
}
.voice-detail .voice-ttl {
  margin-bottom: 2rem;
}
.voice-detail ul {
  margin-top: 4rem;
  gap: 3rem;
}
.voice-detail ul li {
  padding: 5rem;
}

#voice-detail::before {
  content: "";
  display: block;
  width: 73%;
  height: calc(100% - 50rem);
  position: absolute;
  min-width: 1208px;
  background: var(--bg-color);
  inset: auto 0 13rem 0;
  margin: 0 auto;
  z-index: -1;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  display: grid;
  align-content: center;
  margin-top: 10rem;
  height: 410px;
}
.sv .sv-catch {
  width: 80%;
  min-width: 1080px;
  max-width: 1540px;
  font-size: 5vw;
  font-size: 5rem;
  color: #fff;
  position: relative;
  padding-bottom: 1rem;
}
.sv .sv-catch::after {
  content: "";
  display: block;
  width: 10rem;
  height: 2px;
  position: absolute;
  background: #fff;
  bottom: 0;
  left: 0;
}

.reason-sv {
  background: url(../img/sv/reason.jpg) center/cover;
}

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

.trainer-sv {
  background: url(../img/sv/trainer.jpg) center/cover;
}

.voice-sv {
  background: url(../img/sv/voice.jpg) center/cover;
}

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

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

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

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

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

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

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

#reason-page .breadcrumbs {
  top: 15rem;
}

#about-page .breadcrumbs {
  top: 15rem;
}

/*---------------------------△△---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.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 {
  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: 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---△△------------------------*/