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

.dl-item {
  display: flex;
}

.com-txt {
  font-weight: 400;
  line-height: 2.1875;
}
.com-btn {
  width: 480px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--main-color);
  border-radius: 10px;
  border: 2px solid var(--main-color);
  color: var(--white);
  margin: 30px auto 0;
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn span {
  position: relative;
  padding-right: 25px;
}
.com-btn span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  opacity: 1;
  background: #fff;
  color: var(--main-color);
}
.com-btn:hover span::after {
  border-color: var(--main-color);
}
.com-btn.line-btn {
  width: 205px;
  margin: 0;
  border-color: #fff;
  background: #fff;
  color: var(--main-color);
}
.com-btn.line-btn span {
  padding: 10px;
  background: url("../img/common/line-icon.svg") left center/30px no-repeat;
  padding-left: 45px;
  box-sizing: border-box;
}
.com-btn.line-btn span::after {
  border-color: var(--main-color);
}
.com-btn.line-btn:hover {
  opacity: 0.6;
}
.com-btn.site-btn span::after {
  width: 15px;
  border: none;
  height: 15px;
  background: url(../img/common/site-arw.png) center/contain no-repeat;
  transform: rotate(0);
}

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

.ttl01 {
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.25em;
}
.ttl01 .big {
  font-size: 5rem;
}
.ttl01 .mark {
  position: relative;
  z-index: 1;
}
.ttl01 .mark::before {
  content: "";
  display: block;
  width: 110%;
  height: 40%;
  position: absolute;
  background: url("../img/common/ttl-deco.png") center/contain no-repeat;
  bottom: -10px;
  left: -20px;
  background-size: 100%;
  z-index: -1;
}

.ttl02 {
  font-size: 2.6rem;
  font-weight: 900;
}
.ttl02 .big {
  font-size: 3rem;
}

.ttl03 {
  font-weight: 900;
  font-size: 2.4rem;
}

.ttl04 {
  font-weight: 900;
  font-size: 2.2rem;
}

.ttl05 {
  font-size: 1.8rem;
}
.ttl05.big {
  font-size: 2rem;
}

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

.voice-ttl {
  font-size: 5rem;
}

.com-contact-ttl {
  font-size: 3.6rem;
}
.com-contact-ttl .big {
  font-size: 4.6rem;
}

.ttl-deco-onp {
  position: relative;
}
.ttl-deco-onp::before {
  content: "";
  display: block;
  width: 760px;
  height: 170px;
  position: absolute;
  background: url("../img/common/ttl-bg-le.png") center/contain no-repeat;
  top: -55px;
  left: -420px;
}
.ttl-deco-onp::after {
  content: "";
  display: block;
  width: 676px;
  height: 170px;
  position: absolute;
  background: url("../img/common/ttl-bg-ri.png") center/contain no-repeat;
  bottom: -140px;
  right: -420px;
}

.com-onp {
  padding-left: 30px;
  position: relative;
}
.com-onp::before {
  content: "";
  display: block;
  width: 20px;
  height: 30px;
  position: absolute;
  background: url("../img/common/onp.png") center/contain no-repeat;
  inset: 0 auto 0 0;
  margin: auto 0;
}

.bg-deco-01 {
  background: url(../img/common/bg-bd.png) top/100% no-repeat, url(../img/common/bg-bd.png) bottom/100% no-repeat, url(../img/common/bg-pnk.jpg) top/cover;
}

.com-bg-01 {
  background: url(../img/common/bg-le.png) top 190px left/27% no-repeat, url(../img/common/bg-ri.png) top 460px right/30% no-repeat;
}

.com-tel {
  display: grid;
  justify-items: center;
}
.com-tel a {
  font-size: 3rem;
}
.com-tel a small {
  color: var(--main-color);
  font-size: 0.5333em;
}

.com-kado {
  border-radius: 20px;
}
.com-kado > img {
  border-radius: 20px;
}

.img-bd {
  border: 2px solid var(--accent-color);
}

.box-bd {
  position: relative;
  background: var(--bg-color);
}
.box-bd::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  position: absolute;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 5px;
  left: 0;
}

.add-box {
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: var(--main-color);
  padding: 0 10px;
  font-size: 1.4rem;
  line-height: 1;
  border-right: 1px solid var(--main-color);
}
.tag-list .tag:first-child {
  border-left: 1px solid var(--main-color);
}

time {
  line-height: 1;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  text-align: center;
  width: 150px;
  padding: 0 10px;
}
.com-desc-tbl .dl-item dd {
  width: 410px;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
  margin-top: 5px;
}
.com-desc-tbl .dl-item dd .tel-txt img {
  display: block;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 20px 35px 50px;
  background: url(../img/common/hd-bg.png) bottom right/cover;
}
#header .hd-logo {
  margin-top: 10px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav {
  margin-top: 20px;
}
#header .hd-right #nav .nav-list {
  gap: 30px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
  font-weight: 900;
}
#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 {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item.current::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  background: url("../img/common/nav-bg.png") center/contain no-repeat;
  inset: -10px 0 auto 0;
  margin: 0 auto;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  display: grid;
  justify-items: center;
  align-items: center;
  background: url(../img/top/mv-bg.jpg) center/cover;
  height: 48.4vw;
  min-height: 620px;
}
.top-mv .mv-ct {
  width: 52.3%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-greeting {
  background: url(../img/top/gree-bg.png) bottom/cover;
}
#top-greeting .inbox {
  position: relative;
}
#top-greeting .inbox .txt-box {
  width: 620px;
  margin-left: auto;
}
#top-greeting .inbox .txt-box .ttl01 {
  position: relative;
  left: -60px;
  margin-bottom: 30px;
}
#top-greeting .inbox .txt-box .name {
  margin-top: 30px;
}
#top-greeting .inbox .gree-ill {
  position: absolute;
  left: -100px;
  bottom: -40px;
  z-index: 10;
}
#top-greeting .inbox .gree-img {
  width: 360px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#top-greeting .inbox .gree-img::before {
  content: "";
  display: block;
  width: 400px;
  height: 439px;
  position: absolute;
  background: url("../img/top/gree-img-bg.png") center/contain no-repeat;
  left: -16px;
  top: -25px;
  z-index: -1;
}
#top-greeting .inbox .gree-img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--main-color);
  transform: rotate(-5deg);
  border-radius: 20px;
  top: 0;
  left: 0;
  z-index: 10;
}

#top-info {
  padding-top: 100px;
}
#top-info .inbox .info-li {
  display: grid;
  gap: 35px;
}
#top-info .inbox .info-li .info-item:not(:last-child) {
  padding-bottom: 45px;
  background: url(../img/top/info-bd.png) bottom no-repeat;
}
#top-info .inbox .info-li .info-item .txt-box {
  width: 480px;
}
#top-info .inbox .info-li .info-item .txt-box .ttl02 {
  padding: 10px;
  margin-bottom: 20px;
}
#top-info .inbox .info-li .info-item .txt-box .ttl02 span::before {
  content: url(../img/top/info-deco-le.png);
  display: block;
  position: absolute;
  top: -15px;
  left: 20px;
}
#top-info .inbox .info-li .info-item .txt-box .ttl02 span::after {
  content: url(../img/top/info-deco-ri.png);
  display: block;
  position: absolute;
  right: 25px;
  bottom: -15px;
}

#top-voice {
  background: url(../img/top/voice-bg.jpg) center/cover;
}
#top-voice .inbox .ttl01 img {
  display: inline-block;
  margin-bottom: 20px;
}
#top-voice .inbox .com-btn {
  margin-top: 60px;
}
.com-ill {
  position: absolute;
  left: -140px;
  bottom: -60px;
}

#top-class {
  background: url(../img/top/class-bg.png) top right/52.8% no-repeat;
}
#top-class .inbox .txt-box .ttl01 {
  margin-bottom: 60px;
}
#top-class .inbox .txt-box .com-desc-tbl {
  width: 560px;
}
#top-class .inbox .map {
  width: 490px;
  height: 500px;
  overflow: hidden;
  margin-top: 160px;
}

#top-concert {
  background: url(../img/top/concert-bg-btm.png) bottom center/100% no-repeat, url(../img/top/concert-bg.jpg) top center/cover;
}
#top-concert .inbox ul {
  gap: 40px;
  margin-bottom: 55px;
}
#top-concert .inbox ul li {
  display: grid;
  gap: 40px;
  width: 520px;
  padding: 30px 35px;
  background: #ffe5ed;
}
#top-concert .inbox ul li .img-bd {
  position: relative;
}
#top-concert .inbox ul li .img-bd .name {
  position: absolute;
  bottom: -25px;
  width: 100%;
}
#top-concert .inbox ul li .com-onp {
  padding-left: 35px;
}
#top-concert .inbox ul li .com-onp::before {
  width: 27px;
  height: 42px;
}
#top-concert .inbox .concert-arw {
  margin-top: 35px;
}

/*--------▽▽---MV---▽▽---------- */
#top-news {
  background: url(../img/top/news-bg.jpg) top/cover;
}
#top-news .inbox .news-list {
  gap: 30px;
}
#top-news .inbox .news-list .news-item {
  width: 340px;
}
#top-news .inbox .news-list .news-item a {
  width: 100%;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1.25;
}
#top-news .inbox .news-list .news-item a .txt-box {
  display: flex;
  gap: 10px;
  border: none;
  overflow: hidden;
  margin: 15px 0 0;
  width: 100%;
  height: 74px;
  position: relative;
  padding: 15px;
  padding-right: 50px;
}
#top-news .inbox .news-list .news-item a .txt-box::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  transform: rotate(45deg);
  inset: 0 20px 0 auto;
  margin: auto 0;
}
#top-news .inbox .news-list .news-item a .txt-box::before {
  content: "";
  display: block;
  width: 34px;
  height: 100%;
  position: absolute;
  background: var(--sub-color);
  right: 0;
  top: 0;
}
#top-news .inbox .news-list .news-item a .txt-box time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a .txt-box h4 {
  color: var(--font-color);
  width: 100%;
}
#top-news .inbox .com-btn {
  margin-top: 60px;
}

/*------------△△---MV---△△---------*/
#com-contact {
  margin-bottom: 200px;
}
#com-contact .inbox {
  padding: 70px 50px;
  background: rgba(255, 229, 237, 0.6);
  outline: 2px solid #fff;
  outline-offset: -10px;
  position: relative;
  z-index: 20;
}
#com-contact .inbox .com-contact-ttl {
  font-size: 3.4rem;
  position: relative;
}
#com-contact .inbox .com-contact-ttl::after {
  content: "";
  display: block;
  width: 60px;
  height: 30px;
  position: absolute;
  background: url("../img/common/contact-ttl-deco-03.png") center/contain no-repeat;
  top: 30px;
  right: 160px;
}
#com-contact .inbox .com-contact-ttl img {
  margin-bottom: 10px;
}
#com-contact .inbox .com-contact-ttl .dp-b .mark02 {
  position: relative;
  z-index: 1;
}
#com-contact .inbox .com-contact-ttl .dp-b .mark02::before {
  content: "";
  display: block;
  width: 90%;
  height: 100%;
  position: absolute;
  background: url("../img/common/contact-ttl-deco-02.png") center/contain no-repeat;
  bottom: -30px;
  left: 5px;
  background-size: 100% 100%;
  z-index: -1;
}
#com-contact .inbox .add-box {
  margin-top: 50px;
  padding: 30px 0 40px;
  background: url(../img/common/contact-bd.png) top/100% no-repeat, url(../img/common/contact-bd.png) bottom/100% no-repeat;
}
#com-contact .inbox .contact-ill {
  position: absolute;
  top: -45px;
  left: -200px;
}

#footer {
  padding: 0 0 100px;
  position: relative;
}
#footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 36.7vw;
  position: absolute;
  background: url(../img/common/ft-bg.png) bottom/cover;
  bottom: 300px;
  left: 0;
  z-index: -1;
}
#footer .ft-area .ft-top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #ffc2d5;
}
#footer .ft-area .ft-top .ft-logo {
  margin-bottom: 30px;
}
#footer .ft-area .ft-btm {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 60px;
}
#footer .ft-area .ft-btm .nav-list {
  gap: 30px;
}
#footer .ft-area .copyright {
  font-size: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  display: grid;
  justify-items: center;
  align-items: center;
  height: 660px;
  background-size: cover;
  background-position: center;
}
.sv .sv-catch {
  font-size: 5rem;
  display: grid;
  place-items: center;
  width: 957px;
  height: 275px;
  margin-top: 150px;
  background: url(../img/sv/bg.png) center/contain no-repeat;
  text-shadow: 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff, 0 0 25px #fff;
  position: relative;
}
.sv .sv-catch::before {
  content: "";
  display: block;
  width: 450px;
  height: 402px;
  position: absolute;
  background: url("../img/sv/ill.png") center/contain no-repeat;
  left: -70px;
  bottom: -80px;
}

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

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

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

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

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

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

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

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

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

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

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

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
#rental-charm .charm-li {
  padding: 40px 30px;
  display: grid;
  gap: 13px;
}
#rental-charm .charm-li .charm-item {
  gap: 12px;
  padding: 7px 25px;
}

.num {
  display: grid;
  place-items: center;
  line-height: 1;
  width: 60px;
  aspect-ratio: 1;
  color: #fff;
  font-size: 2rem;
  background: url(../img/common/num-bg.png) center/contain no-repeat;
}

.scene-li::after {
  content: "etc...";
  text-align: right;
  color: var(--main-color);
}
.scene-li li:not(:last-child) {
  border-bottom: 1px solid var(--sub-color);
}

.check-li {
  display: grid;
  justify-content: center;
  padding: 20px 30px;
}
.check-li li {
  font-size: 1.8rem;
  padding: 15px;
}

.check-item {
  background: url("../img/common/check.png") left center/25px no-repeat;
  padding-left: 35px;
  box-sizing: border-box;
}

#rental-equ .inbox .equ-list {
  display: grid;
  gap: 60px;
}
#rental-equ .inbox .equ-list .equ-item .ttl04 {
  width: 100%;
  padding: 15px 60px;
  margin-bottom: 30px;
  border-radius: 12px;
}
#rental-equ .inbox .equ-list .equ-item .img-box {
  width: 440px;
  height: 280px;
  overflow-x: auto;
  display: -webkit-box;
}
#rental-equ .inbox .equ-list .equ-item .img-box .com-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.69;
}
#rental-equ .inbox .equ-list .equ-item .img-box .com-img:not(:last-child) {
  margin-right: 10px;
}
#rental-equ .inbox .equ-list .equ-item .txt-box {
  width: 590px;
}
#rental-equ .inbox .equ-list .equ-item .txt-box .com-txt {
  margin-bottom: 40px;
}
#rental-equ .inbox .equ-list .equ-item .txt-box .equ-box {
  padding: 25px 30px;
}
#rental-equ .inbox .equ-list .equ-item .txt-box .child-li {
  border-radius: 6px;
  margin-top: 15px;
  gap: 25px 15px;
}
#rental-equ .inbox .equ-list .equ-item .txt-box .child-li .child-item {
  gap: 5px;
  width: 160px;
  display: grid;
  justify-content: center;
  justify-items: center;
  align-content: center;
  padding: 10px;
}

#rental-price {
  background: url(../img/top/class-bg.png) top right/52.8% no-repeat, url(../img/common/bg-pnk.jpg);
}
#rental-price .inbox {
  position: relative;
}
#rental-price .inbox .txt-box {
  background: rgba(255, 255, 255, 0.7);
  padding: 60px;
}
#rental-price .inbox .price-ill {
  position: absolute;
  bottom: -77px;
  left: -100px;
}

.condition-area .inbox {
  position: relative;
  padding: 30px 30px 50px;
}
.condition-area .inbox .cond-ill {
  position: absolute;
  left: 70px;
  top: -30px;
}

.concept-area .concept-li {
  display: grid;
  gap: 15px;
}
.concept-area .concept-li .concept-item {
  padding: 30px 50px;
}
.concept-area .concept-li .concept-item .ttl03 {
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--accent-color);
}

.active-area .active-li {
  gap: 35px;
}
.active-area .active-li li {
  width: 335px;
}
.active-area .active-li li .com-img {
  width: 100%;
  aspect-ratio: 1.48;
  text-align: center;
  margin-bottom: 15px;
}
.active-area .active-li li .time {
  margin-bottom: 5px;
}

.recruit-area {
  position: relative;
}
.recruit-area::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff9f8;
  top: 0;
  left: 0;
  z-index: -1;
}
.recruit-area .com-txt {
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.recruit-area .recruit-li {
  padding: 40px;
  gap: 20px;
}
.recruit-area .recruit-li li {
  width: 480px;
  padding: 20px 50px;
}
.recruit-area .recruit-li li h5 {
  margin-bottom: 5px;
}
.recruit-area .rec-ill {
  position: absolute;
  bottom: -20px;
  right: 30px;
}

#voice .ttl01 .mark {
  position: relative;
}
#voice .ttl01 .mark::after {
  content: "";
  display: block;
  width: 70px;
  height: 106px;
  position: absolute;
  background: url("../img/voice/ttl-deco.png") center/contain no-repeat;
  top: -30px;
  right: -60px;
}
#voice .ttl01 .mark::before {
  width: 160%;
  left: -30px;
  bottom: -10px;
}
#voice .voice-li {
  margin-top: 60px;
  display: grid;
  gap: 25px;
}
#voice .voice-li .voice-item {
  padding: 40px;
}
#voice .voice-li .voice-item .img-box {
  width: 140px;
}
#voice .voice-li .voice-item .img-box .voice-ill {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
}
#voice .voice-li .voice-item .img-box .txt-cap {
  padding: 5px 5px;
}
#voice .voice-li .voice-item .txt-box {
  width: 815px;
  padding: 30px;
  border-radius: 12px;
}
#voice .voice-li .voice-item .txt-box .tag-list {
  margin-bottom: 10px;
}
#voice .voice-li .voice-item .txt-box .tag-list .tag {
  padding: 5px 20px;
}
#voice .voice-li .voice-item .txt-box .ttl03 {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--accent-color);
  margin-bottom: 20px;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
  background: url(../img/common/bg-le.png) top 190px left/27% no-repeat, url(../img/common/bg-ri.png) top 460px right/30% no-repeat, var(--bg-color-02);
}
.com-other-page .ttl01 {
  color: var(--main-color);
}

/*---------------------------▽▽---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 30px;
  background: #fff;
}
#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 {
  max-width: 650px;
}
#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;
  align-items: center;
}
#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: 800px;
}
/*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;
  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---△△------------------------*/