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

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

section {
  padding: 14rem 0;
}

.dl-item {
  display: flex;
}

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

.com-btn {
  display: grid;
  justify-items: center;
  align-content: center;
  border-radius: 50vw;
  width: 240px;
  height: 80px;
  background: var(--accent-color);
  position: relative;
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 2rem 0 auto;
  margin: auto 0;
}
.com-btn.mail-btn {
  background: var(--bg-grd);
}
.com-btn.mail-btn::after {
  background-image: url(../img/common/btn-arw-02.png);
}
.com-btn.mail-btn-02 {
  background: var(--bg-grd);
}
.com-btn.mail-btn-02::after {
  background-image: url(../img/common/mail-icon.png);
  inset: 0 auto 0 1.5rem;
}
.com-btn.insta-btn {
  background: url(../img/common/insta-bg.png) center/100% 100%;
  font-size: 1.6rem;
  height: 6rem;
}
.com-btn.insta-btn::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  background: url("../img/common/site-arw.png") center/contain no-repeat;
}
.com-btn.insta-btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/common/insta-icon.svg") center/contain no-repeat;
  inset: 0 auto 0 2rem;
  margin: auto 0;
}
.com-btn-li .com-btn {
  width: 340px;
}

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

.ttl01 {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 7rem;
}
.ttl01.txt-le {
  text-align: left;
}

.ttl02 {
  font-size: 3rem;
}

.ttl03 {
  font-size: 2.5rem;
}

.ttl04 {
  font-size: 2rem;
}

.cap-01 {
  font-size: 1.6rem;
}

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

.num {
  display: grid;
  justify-items: center;
  align-content: center;
  color: #fff;
  line-height: 1;
  border-radius: 50vw;
  background: var(--accent-color);
  width: 6rem;
  aspect-ratio: 1;
}

.ttl-bg {
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  background: var(--main-color);
  margin-bottom: 2.5rem;
}

.ttl-sdw {
  text-shadow: 3px 3px 5px #FFF, -3px -3px 5px #FFF, -3px 3px 5px #FFF, 3px -3px 5px #FFF, 0px 3px 5px #FFF, -3px 5px #FFF, -3px 0 5px #FFF, 3px 0 5px #FFF;
}

.num-ttl {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ttl-deco span {
  display: inline-block;
  padding: 0 4rem;
  position: relative;
}
.ttl-deco span::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: var(--main-color);
  border-radius: 50vw;
  inset: 0 auto 0 0;
  margin: auto 0;
}
.ttl-deco span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  background: var(--main-color);
  border-radius: 50vw;
  inset: 0 0 0 auto;
  margin: auto 0;
}

#contact-page .ttl-deco {
  font-size: 4rem;
}
#contact-page .ttl-deco span::before {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-color);
}
#contact-page .ttl-deco span::after {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--accent-color);
}

#top-contact .ttl-deco span::before {
  background: var(--sub-color);
}
#top-contact .ttl-deco span::after {
  background: var(--sub-color);
}

.ttl-dot span {
  position: relative;
  padding-top: 1.2rem;
}
.ttl-dot span::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  border-radius: 50vw;
  inset: 0 0 auto 0;
  margin: 0 auto;
}
.ttl-dot .ft-clr01::before {
  background: var(--main-color);
}
.ttl-dot .ft-clr03::before {
  background: var(--sub-color);
}

.com-tel {
  display: grid;
  justify-items: start;
  border-radius: 1rem;
  background: #fff;
  padding: 1rem;
}
.com-tel .tel-ttl {
  font-size: 1.6rem;
  background: url("../img/common/pin-icon.png") left center/1rem no-repeat;
  padding-left: 1.4rem;
  box-sizing: border-box;
}
.com-tel a {
  font-size: 2.5rem;
  background: url("../img/common/tel-icon.png") left center/1.8rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

.com-info {
  gap: 2rem;
}
.com-info .dl-item {
  gap: 1rem;
  align-items: center;
}
.com-info .dl-item dt {
  padding: 1rem 0.8rem;
}

.com-pd-box {
  padding: 4rem;
}

.box-deco-01 {
  position: relative;
}
.box-deco-01::after {
  content: "";
  display: block;
  width: 5.7rem;
  height: auto;
  aspect-ratio: 1.18;
  position: absolute;
  background: url("../img/common/box-deco-01.png") center/contain no-repeat;
  bottom: 0;
  right: -1rem;
}

.box-deco-02 {
  position: relative;
}
.box-deco-02::after {
  content: "";
  display: block;
  width: 13rem;
  height: auto;
  aspect-ratio: 1.22;
  position: absolute;
  background: url("../img/common/box-deco-02.png") center/contain no-repeat;
  bottom: -1.8rem;
  right: -2rem;
}

.com-deco {
  position: relative;
}
.com-deco::before {
  content: "";
  display: block;
  width: 25rem;
  height: auto;
  aspect-ratio: 2.755;
  position: absolute;
  background: url("../img/common/deco-02-le.png") center/contain no-repeat;
  top: 0;
  left: -10rem;
}
.com-deco::after {
  content: "";
  display: block;
  width: 25rem;
  height: auto;
  aspect-ratio: 2.755;
  position: absolute;
  background: url("../img/common/deco-02-ri.png") center/contain no-repeat;
  top: 0;
  right: -10rem;
}

.bg-01 {
  background: var(--pt-02);
  position: relative;
}
.bg-01::after {
  content: "";
  display: block;
  width: 100%;
  height: 3.1rem;
  position: absolute;
  background: url("../img/common/bg-wave.png") center/contain no-repeat;
  bottom: -3rem;
  left: 0;
  background-size: cover;
}

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

.kado-02 {
  border-radius: 1rem;
}
.kado-02 > img {
  border-radius: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag-list .tag {
  line-height: 1;
  color: #fff;
  background: var(--main-color);
  border-radius: 50vw;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}

time {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent-color);
  padding: 0;
}

/*infotableスタイル*/
.com-desc-tbl {
  display: grid;
  gap: 1rem;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 250px;
  padding: 15px 10px;
  display: grid;
  align-content: center;
}
.com-desc-tbl .dl-item dd {
  width: 810px;
  padding: 15px 0;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

.map {
  margin-top: 6rem;
  height: 400px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  position: fixed;
  z-index: 1000;
  padding: 1.5rem 6rem;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  margin-bottom: 1.5rem;
  gap: 35px;
}
#header .hd-right .hd-top .com-btn {
  height: 60px;
  padding-left: 1.5rem;
}
#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);
}

.nav-item {
  position: relative;
}
.nav-item:not(:last-child)::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  border-radius: 50vw;
  inset: 0 -2rem 0 auto;
  margin: auto 0;
  background: #ffe04d;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  margin-top: 14rem;
  aspect-ratio: 2.4;
  display: grid;
  justify-items: center;
  align-content: center;
  background: url(../img/top/mv-btm.png) bottom -0.5rem center/100% no-repeat, url(../img/top/mv-bg.jpg) center/cover;
}
.top-mv .mv-ct {
  width: 44.4%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
#top-worries {
  background: var(--bg-deco), url(../img/top/worr-bg.png) bottom no-repeat, var(--pt-03);
}
#top-worries .inbox {
  position: relative;
}
#top-worries .inbox::after {
  content: "";
  display: block;
  width: 11.3rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/worr-deco.png") center/contain no-repeat;
  top: -8rem;
  left: -8rem;
}
#top-worries .inbox ul {
  padding: 0 6rem;
  gap: 1.5rem 3rem;
  padding-bottom: 12rem;
  background: url(../img/top/worr-ill-le.png) bottom left 21rem no-repeat, url(../img/top/worr-ill-ri.png) bottom right 25rem no-repeat;
}
#top-worries .inbox ul li {
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  position: relative;
}
#top-worries .inbox ul li::before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  background: url("../img/common/check.png") center/contain no-repeat;
  position: relative;
}
#top-worries .inbox ul li::after {
  content: "";
  display: block;
  width: 3.9rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/worr-list-deco.png") center/contain no-repeat;
  right: 12%;
  top: 1rem;
}
#top-worries .inbox ul li:nth-child(1) {
  width: 220px;
}
#top-worries .inbox ul li:nth-child(2) {
  transform: translateY(4rem);
}
#top-worries .inbox ul li:nth-child(4) {
  width: 310px;
}
#top-worries .inbox ul li:nth-child(6) {
  width: 310px;
  padding: 0;
}
#top-worries .inbox .ill-box {
  text-align: center;
  position: absolute;
  inset: auto 0 -18rem 0;
  margin: 0 auto;
}

#top-about {
  background: url(../img/top/about-bg.png) top right/68% no-repeat, var(--bg-color-03);
}
#top-about .about-box .ttl01 .ttl02 {
  margin-top: 2rem;
  padding: 0 1rem;
}
#top-about .about-box .txt-box .com-btn {
  margin-top: 4rem;
}
#top-about .about-box .img-box img:first-child {
  margin-right: -4rem;
  z-index: 10;
  position: relative;
}
#top-about ul {
  padding-top: 13rem;
  margin-top: 10rem;
}
#top-about ul li {
  width: 520px;
  padding: 3rem;
  position: relative;
  display: grid;
  align-content: start;
  gap: 3rem;
}
#top-about ul li .ttl02 {
  position: absolute;
  inset: -4rem 0 auto 0;
}
#top-about ul li .ttl02 span {
  display: inline-block;
  padding: 2rem;
  width: 30rem;
  height: 13rem;
  background: url(../img/top/otherttl-bg.png) center/100% 100%;
}
#top-about ul li .com-btn {
  margin: 0 auto;
}

#top-contact .inbox {
  width: 1280px;
  position: relative;
}
#top-contact .inbox::after {
  content: "";
  display: block;
  width: 30rem;
  height: auto;
  aspect-ratio: 1.17;
  position: absolute;
  background: url("../img/common/ill-01.png") center/contain no-repeat;
  top: -22rem;
  right: -8rem;
}
#top-contact .inbox .contact-li {
  margin-top: 7.5rem;
  border-radius: 4rem;
  padding: 8rem 10rem 5rem;
  background: url(../img/top/contact-bg.png) top 1rem center no-repeat, url(../img/top/contact-bg.png) bottom 1rem center no-repeat, #fff;
  position: relative;
}
#top-contact .inbox .contact-li::after {
  content: "";
  display: block;
  width: 35rem;
  height: auto;
  aspect-ratio: 4.8;
  position: absolute;
  background: url("../img/top/contact-deco.png") center/contain no-repeat;
  inset: -2rem 0 auto 0;
  margin: 0 auto;
}
#top-contact .inbox .contact-li > li {
  border-radius: 4rem;
  padding: 3rem 2rem;
}
#top-contact .inbox .contact-li > li .ttl03 span {
  padding: 0rem 1.5rem;
}
#top-contact .inbox .contact-li > li .tel-li {
  margin-top: 2rem;
  gap: 0.5rem;
}
#top-contact .inbox .contact-li > li .com-btn {
  width: 340px;
  margin-top: 4rem;
}

/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .news-list {
  width: 100%;
  gap: 3rem;
}
#top-news .inbox .news-list .news-item a {
  width: 340px;
  padding: 3rem 2rem;
  gap: 1rem;
}
#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.5;
}
#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 .com-btn {
  position: absolute;
  right: 0;
  top: 0;
}

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

#footer {
  padding: 6rem 0 9rem;
  position: relative;
}
#footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 9rem;
  position: absolute;
  background: url(../img/common/ft-wave.png) bottom/cover;
  top: -8.9rem;
  left: 0;
}
#footer .ft-area {
  gap: 6rem;
}
#footer .ft-area .ft-info-box {
  gap: 2.5rem;
}
#footer .ft-area .insta-li {
  gap: 2rem;
}
#footer .ft-area .ft-ri {
  gap: 2rem;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  gap: 10px;
  gap: 3rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item::before {
  width: 0.5rem;
  height: 0.5rem;
}
#footer .copyright {
  font-size: 1.4rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-greeting {
  background: var(--bg-deco), var(--pt-01);
}
#about-greeting .inbox {
  position: relative;
}
#about-greeting .inbox::after {
  content: "";
  display: block;
  width: 11.3rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/about/about-deco.png") center/contain no-repeat;
  top: -3rem;
  right: 15rem;
}
#about-greeting .img-box {
  margin-bottom: 5rem;
}
#about-policy .policy-li {
  gap: 6rem 0;
}
#about-policy .policy-li > li {
  width: 510px;
}
#about-policy .policy-li > li .ttl02 {
  margin-bottom: 3rem;
}
#about-policy .policy-li > li:first-child {
  width: 100%;
}
#about-policy .policy-li > li:first-child .txt-box {
  width: 560px;
  margin-top: -1rem;
}
#about-policy .policy-li > li:first-child .check-li {
  padding: 1rem 2.5rem;
  margin-top: 2.5rem;
}
#about-policy .policy-li > li:first-child .check-li li {
  padding: 0.5rem 0;
}
#about-policy .policy-li > li:first-child .check-li li:not(:last-child) {
  border-bottom: 1px solid var(--bd-color);
}
#about-policy .policy-li > li:first-child .check-li li .ttl04 {
  background: url("../img/common/check.png") left center/1.5rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}
#about-policy .policy-li > li:first-child .check-li li p {
  margin-top: 0.5rem;
  font-weight: 500;
  padding-left: 2.5rem;
}

#about-staff .inbox {
  position: relative;
}
#about-staff .inbox::after {
  content: "";
  display: block;
  width: 30rem;
  height: auto;
  aspect-ratio: 1.17;
  position: absolute;
  background: url("../img/common/ill-01.png") center/contain no-repeat;
  top: -22rem;
  right: -8rem;
}
#about-staff .staff-li {
  gap: 6rem;
}
#about-staff .staff-li li {
  padding: 4rem 6rem;
}
#about-staff .staff-li li .txt-box {
  width: 600px;
}
#about-staff .staff-li li .txt-box .ttl02 {
  margin-bottom: 2rem;
}

#common-sec-btn {
  padding: 10rem 0rem 19rem;
}
#common-sec-btn .com-btn {
  width: 340px;
}

#charm-feature {
  position: relative;
}
#charm-feature::after {
  content: "";
  display: block;
  width: 100%;
  height: 630px;
  position: absolute;
  background: var(--bg-deco);
  bottom: -13rem;
  z-index: 10;
}
#charm-feature ol {
  gap: 6rem;
}
#charm-feature ol li .txt-box {
  width: 790px;
}

#charm-schedule ol {
  margin-top: 5rem;
  gap: 6rem;
}
#charm-schedule ol li {
  position: relative;
  border: 5px solid #fff;
}
#charm-schedule ol li:not(:last-child)::after {
  content: "";
  display: block;
  width: 2rem;
  height: 6rem;
  position: absolute;
  background: var(--main-color);
  inset: auto 0 -6.5rem 0;
  margin: 0 auto;
}

#voice ul {
  gap: 6rem;
}
#voice ul li {
  border: 1px solid #cccccc;
}
#voice ul li .img-box {
  width: 180px;
}
#voice ul li .txt-box {
  width: 790px;
}
#voice ul li .txt-box .bg-acc {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

#voice-gallery {
  background: url(../img/voice/gall-le.png) bottom 30rem left calc(50% - 540px) no-repeat, url(../img/voice/gall-ri.png) bottom 30rem right calc(50% - 540px) no-repeat, var(--pt-02);
}
#company-info {
  padding: 15rem 0;
}
#company-info section {
  padding-bottom: 0;
}
#company-info .company-area {
  width: 1280px;
}
#company-info .company-area .com-pd-box {
  padding: 6rem 10rem;
}
#company-info .com-btn::after {
  transform: rotate(90deg);
}

#contact-about {
  background: var(--bg-deco), var(--bg-color-03);
}
#contact-about .inbox {
  display: grid;
  gap: 6rem;
}
#contact-about .ttl01 {
  margin-bottom: 0;
}
#contact-about .box-deco-02 {
  background: var(--pt-03);
}
#contact-about .box-deco-02 .ttl01 {
  margin-bottom: 3rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  margin-top: 13rem;
  background: url(../img/sv/bg-top.png) left 2rem top 2rem/17.2% no-repeat, url(../img/sv/bg-btm.png) left bottom/57.5% no-repeat, var(--pt-02);
  padding: 2rem;
  gap: 5rem;
  position: relative;
}
.sv .com-img {
  border-radius: 4rem;
  height: 460px;
  width: calc(50% + 260px);
  border: 5px solid #fff;
  margin-left: auto;
}
.sv .sv-catch {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  display: grid;
  height: 100%;
  align-content: center;
  margin-left: 7rem;
  z-index: 100;
}
.sv .sv-catch span {
  display: inline-block;
  position: relative;
  padding: 4rem 5rem;
  border: 2px solid var(--bg-color-02);
}
.sv .sv-catch span::after {
  content: "";
  display: block;
  width: 15rem;
  height: auto;
  aspect-ratio: 1.15;
  position: absolute;
  background: url("../img/sv/ct-deco.png") center/contain no-repeat;
  bottom: -5rem;
  right: -5rem;
}

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

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
/*--------------------その他共通ページ --------------------*/
.com-other-page {
  background: var(--bg-deco), var(--pt-01);
}

/*---------------------------▽▽---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---△△------------------------*/