@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
/*spスタイル */
html {
  font-size: 2.6666666667vw;
}

.inbox {
  width: 86%;
  box-sizing: border-box;
  margin: 0 auto;
}

.sp-none {
  display: none;
}

.current {
  color: var(--main-color);
}

/*すまほセレクトボックス*/
.select-area {
  position: relative;
  width: 70vw;
  height: 15vw;
}
.select-area .select-box {
  font-size: 3.5vw;
  font-weight: 500;
}
.select-area .select-box option {
  font-size: 3vw;
}
/*ここから下がドロワー設定項目 */
/*drawer btn 上下左右で設定可能 */
.sp-menu-btn-wrp {
  top: 10px;
  right: 10px;
  bottom: auto;
  left: auto;
  background: var(--sub-color);
  border-radius: 1rem;
}

.sp-menu-btn-wrp .sp-menu-btn {
  width: 15vw;
  height: 15vw;
  max-width: 75px;
  max-height: 75px;
}

.sp-menu-btn-wrp .sp-menu-btn span {
  width: 50%;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}

.sp-menu-btn-wrp .sp-menu-btn .bottom {
  bottom: 30%;
}

.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: #fff;
}

/*active */
.active .sp-menu-btn-wrp .sp-menu-btn span {
  width: 55%;
}

.sp-menu-btn.active .top {
  top: 48.5%;
  transform: translateY(0) translateX(0) rotate(45deg);
}

.sp-menu-btn.active .middle {
  opacity: 0;
}

.sp-menu-btn.active .bottom {
  bottom: 48.5%;
  transform: translateY(0) translateX(0) rotate(-45deg);
}

/*	drawer inbox */
#drawer-nav {
  padding: 5vw 5vw 30vw;
  background: var(--pt-01);
}

#drawer-nav .drawer-logo {
  width: 40%;
}

#drawer-nav .nav {
  margin-bottom: 10vw;
}

#drawer-nav .nav .drawer-link {
  box-sizing: border-box;
  padding: 3vw 2vw;
  border-bottom: 1px solid var(--main-color);
  font-size: 4vw;
  color: var(--font-color);
  font-weight: 500;
  position: relative;
}
#drawer-nav .nav .drawer-link::after {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3%;
  margin: auto 0;
}
#drawer-nav .nav .drawer-link.drawer-dropdown::after {
  content: none;
}

#drawer-nav .nav .current a {
  color: var(--main-color);
  padding-left: 3%;
}
#drawer-nav .nav .current a::after {
  background-color: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span {
  display: block;
}

#drawer-nav .nav .drawer-dropdown span:before {
  background: var(--main-color);
}

#drawer-nav .nav .drawer-dropdown span:after {
  background: var(--main-color);
}

#drawer-nav .nav .show span:after {
  opacity: 0 !important;
}

#drawer-nav .nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

#drawer-nav .nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}

/*original custom code */
/*sns */
.sns-list {
  margin: 10% auto 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns-list li a {
  display: block;
  width: 100%;
  min-width: 25px;
}
.sns-list li a img {
  display: block;
  max-width: none;
  width: 100%;
}

/*rink-list */
.drawer-sub-nav__list {
  font-size: 3vw;
  margin-top: 10vw;
  display: flex;
  justify-content: center;
  gap: 5%;
  text-decoration: underline;
}
.drawer-sub-nav__list li {
  font-size: 3.5vw;
}

/*フォント */
body {
  font-size: 4vw;
  line-height: 1.8;
}

/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 7rem 0;
}

.dl-item {
  display: flex;
}

/*-------本文-------*/
.com-txt {
  letter-spacing: 0.05em;
  line-height: 1.875;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 3rem;
}

/*-------ボタン-------*/
.com-btn {
  width: 70vw;
  height: 15vw;
  display: grid;
  place-items: center;
  margin: 3rem auto 0;
  border-radius: 50vw;
  position: relative;
  font-size: 1.4rem;
  background: var(--accent-color);
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--white);
}
.com-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50vw;
  background: var(--font-color);
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transition: 0.5s;
  transform-origin: left;
}
.com-btn:hover::before {
  transform: scaleX(1);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  position: absolute;
  background-color: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 2rem 0 auto;
}
.com-btn:hover {
  opacity: 1;
  transform: scale(0.95);
}

.shop-btn::after {
  content: none;
}
.shop-btn span {
  padding: 0.5rem 0;
  background: url("../img/common/shop-icon.png") left center/2rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

.site-btn::after {
  content: none;
}
.site-btn span {
  background: url("../img/common/site-icon.png") left center/1.6rem no-repeat;
  padding-left: 2.5rem;
  box-sizing: border-box;
}

.mail-btn {
  width: 90%;
  background: var(--main-color);
}
.mail-btn::after {
  content: none;
}
.mail-btn span {
  background: url("../img/common/mail-icon-wt.png") left center/2.1rem no-repeat;
  padding-left: 3rem;
  box-sizing: border-box;
}

/*-------タイトル-------*/
.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  font-family: var(--ttl-font);
  text-align: center;
  color: var(--main-color);
  font-size: 2.6rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  background: url(../img/common/ttl-deco-dot.png) bottom center/5rem no-repeat;
}
.ttl01.txt-le {
  text-align: left;
  background-position: bottom left;
}

.ttl02 {
  font-size: 2.3rem;
  font-family: var(--ttl-font);
}

.ttl03 {
  font-size: 2rem;
  font-family: var(--ttl-font);
}

.ttl04 {
  font-size: 1.8rem;
  font-family: var(--ttl-font);
}

.ttl05 {
  font-size: 1.65rem;
}

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

.ttl-bd {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  background: url(../img/common/ttl-bd.png) bottom repeat-x;
}

.num-ttl {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.num-ttl .num {
  font-size: 2rem;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 50vw;
  background: var(--sub-color);
  color: #fff;
  width: 4rem;
  aspect-ratio: 1;
}

/*縁文字*/
.ttl-sdw {
  text-shadow: -2px 2px #fff, -1px 2px #fff, 0px 2px #fff, -1px 0px 2px #fff, 1px 0px 2px #fff, -1px 1px 2px #fff, 0px 1px 2px #fff, 1px 1px 2px #fff;
}

/*-------電話-------*/
.com-tel {
  display: grid;
  justify-content: center;
  justify-items: end;
  color: var(--main-color);
}
.com-tel a {
  font-size: 3.2rem;
  background: url("../img/common/tel-icon.png") left center/1.6rem no-repeat;
  padding-left: 2.6rem;
  box-sizing: border-box;
}

/*-------タグ-------*/
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  display: inline-flex;
  line-height: 1;
  color: #fff;
  padding: 0.7rem 1rem;
  color: var(--main-color);
  font-size: 1.2rem;
}
.tag-list .tag::before {
  content: "#";
}

time {
  font-family: var(--ttl-font);
  line-height: 1;
  padding: 0.5rem 0;
  color: var(--sub-color);
}

/*-------角丸-------*/
.com-kado {
  border-radius: 3rem;
}

/*-------背景-------*/
.bg-01 {
  padding: 8rem 0;
  background: url(../img/common/bg-01-btm.png) bottom -1rem left/100% 10rem no-repeat, url(../img/common/bg-01-small.png) top 7.8rem right 1rem/20% no-repeat, url(../img/common/bg-01-big.png) top 14.6rem right 3rem/80% no-repeat, var(--pt-01);
}

.bg-02 {
  padding: 5rem 0;
  background: url(../img/common/bg-02-btm.png) bottom -0.1rem center/100% 6rem no-repeat, url(../img/common/bg-deco-le.png) bottom left/40% no-repeat, url(../img/common/bg-deco-ri.png) bottom right/40% no-repeat, var(--pt-02);
}

.bg-03 {
  padding-top: 4rem;
}

/*-------その他-------*/
.txt-box-01.box-le {
  margin-left: auto;
}

.big-img {
  width: 100%;
  margin: 0 auto 2rem;
  height: 20rem;
  border-radius: 3rem;
  filter: blur(1px);
}
.big-img.img-ri {
  left: auto;
  right: 0;
}

.list-style-01 {
  display: grid;
  gap: 6rem;
}
.list-style-01 li .img-box {
  text-align: center;
  margin-bottom: 1rem;
}

/*infotableスタイル*/
.com-desc-tbl .dl-item {
  font-size: 3.2vw;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 3rem;
}
.com-desc-tbl .dl-item dt {
  color: var(--main-color);
  width: 30%;
}
.com-desc-tbl .dl-item dd {
  line-break: loose;
  width: 70%;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: var(--pt-01);
  z-index: 100;
  padding: 5vw;
}
#header .hd-logo {
  width: 40%;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .mail-btn-box {
  gap: 3rem;
}

#nav {
  background: var(--pt-02);
  padding: 3rem;
}
#nav .nav-list {
  justify-content: center;
  gap: 10rem;
}
#nav .nav-list .nav-item {
  line-height: 1;
  font-size: 1.65rem;
  color: var(--main-color);
  position: relative;
}
#nav .nav-list .nav-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  border-radius: 50vw;
  background: var(--sub-color);
  inset: 0 -5rem 0 auto;
  margin: auto 0;
}
#nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sub-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---エントランス---▽▽------------------------*/
.ent-mv a {
  display: grid;
  align-content: center;
  justify-items: center;
  height: 50%;
  position: relative;
}
.ent-mv a .txt-box {
  width: 90%;
  height: 15rem;
  border-radius: 0 3rem 0 3rem;
  display: grid;
  align-content: center;
  padding: 2rem;
  gap: 1rem;
  position: absolute;
  inset: 0;
  z-index: 10;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
}
.ent-mv a .txt-box::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  position: absolute;
  background: url("../img/ent/arw.png") center/contain no-repeat;
  right: 1.5rem;
  bottom: 1.5rem;
  margin: auto 0;
  transition: 0.3s;
}
.ent-mv a h2 {
  font-family: var(--ttl-font);
  line-height: 1;
  font-size: 2.5rem;
}
.ent-mv a p {
  font-size: 1.5rem;
}
.ent-mv a .img-box {
  width: 100%;
  min-height: 26rem;
}
.ent-mv a .img-box img {
  transition: 0.6s;
}
.ent-mv a:hover {
  opacity: 1;
}
.ent-mv a:hover .img-box img {
  filter: blur(2px) brightness(1.2);
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}
.ent-mv a:hover .txt-box::after {
  transform: translateX(1rem);
}
/*---------------------------△△---エントランス---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  padding: 1rem 0 14rem;
  position: relative;
  background: url(../img/top/mv-bg.jpg) center bottom/100% no-repeat;
}
.top-mv::before {
  content: "";
  display: block;
  width: 35%;
  height: auto;
  aspect-ratio: 0.57;
  position: absolute;
  background: url("../img//top/mv_deco-le.png") center/contain no-repeat;
  bottom: 1rem;
  left: 0;
  z-index: 100;
}
.top-mv::after {
  content: "";
  display: block;
  width: 35%;
  height: auto;
  aspect-ratio: 0.59;
  position: absolute;
  background: url("../img//top/mv_deco-ri.png") center/contain no-repeat;
  bottom: 1rem;
  right: 0;
  z-index: 100;
}
.top-mv img {
  width: 100%;
}
.top-mv .bx-wrapper {
  width: 90%;
  margin: 0 auto;
  aspect-ratio: 1.669;
  border-radius: 3rem;
  overflow: hidden;
  filter: blur(1px);
}
.top-mv .bx-viewport {
  height: 100% !important;
}
.top-mv #slider {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.top-mv #slider .slide-item {
  position: static;
  width: 100% !important;
  height: 100%;
  background: center/cover;
}
.top-mv #slider .slide-01 {
  background-image: url(../img/top/mv01.png);
}
.top-mv #slider .slide-02 {
  background-image: url(../img/top/mv02.png);
}
.top-mv #slider .slide-03 {
  background-image: url(../img/top/mv03.png);
}
.top-mv #slider .slide-04 {
  background-image: url(../img/top/mv04.png);
}
.top-mv .mv-ct {
  width: 80%;
  position: absolute;
  left: 3rem;
  top: 36%;
  z-index: 2000;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.7));
}

/*---------------------------△△---MV---△△------------------------*/
/*---------------------------▽▽---top---▽▽------------------------*/
#top-about .img-box {
  margin-top: 3rem;
}
#top-about .img-box img {
  width: 100%;
}
#top-commitment {
  padding: 5rem 0;
}
#top-commitment .ttl01 {
  margin-bottom: 6rem;
}
#top-commitment ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top-commitment ol li {
  width: 60%;
}
#top-commitment ol li:nth-child(even) {
  margin-left: -7em;
}
#top-commitment ol li:nth-child(even) {
  margin-top: 16rem;
}
#top-commitment ol li:nth-child(odd) {
  margin-top: -2rem;
}
#top-item {
  background: url(../img/top/item-bg-01.png) top 8.5rem right -4rem/100% no-repeat, url(../img/top/item-bg-02.png) bottom 8.5rem left -4rem/100% no-repeat;
}
#top-item ul {
  gap: 6rem;
}
#top-item .txt-box-01 .ill {
  display: inline-block;
  width: 30vw;
}

/*---------------------------△△---top---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  background: url(../img/top/news-deco.png) top 0rem right 3rem/32% no-repeat;
}
#top-news .inbox .ttl01 {
  margin-left: 2rem;
}
#top-news .inbox .news-list {
  padding: 2rem;
}
#top-news .inbox .news-list .news-item a {
  gap: 0.5rem 1rem;
  padding: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
#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::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  position: absolute;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin: auto 0;
  inset: 0 -1rem 0 auto;
}
/*------------△△---NEWS---△△---------*/
#top-banner {
  background: url(../img/top/bnr-bg.jpg) center/cover;
}
#top-banner .inbox {
  background: url(../img/top/bnr-01.jpg) top/100% 50% no-repeat, url(../img/top/bnr-03.jpg) bottom -5rem center/100% 50% no-repeat, url(../img/top/bnr-02.jpg) center/100% 33.33% no-repeat;
  padding: 10rem 1rem;
  display: grid;
  justify-items: center;
  align-content: center;
}
#top-banner .inbox .txt-box {
  padding: 0 2rem 2rem;
  background: rgba(255, 255, 255, 0.7);
}
#top-banner .inbox .txt-box .ttl01 {
  padding: 0;
  margin-bottom: 2rem;
  margin-top: -3rem;
  background: none;
}
#top-banner .inbox .txt-box .com-txt {
  font-size: 1.4rem;
}
#top-banner .inbox .txt-box .com-btn {
  width: 100%;
  margin-top: 3rem;
}

#common-contact {
  padding: 0;
}
#common-contact .com-img {
  width: 100%;
  height: 15rem;
  filter: blur(2px);
}
#common-contact .inbox {
  padding: 4rem 2rem;
  gap: 3rem 0;
  margin-top: -5rem;
  position: relative;
  z-index: 100;
  display: grid;
}
#common-contact .inbox .ttl01 {
  margin-bottom: 2rem;
}
#common-contact .inbox .mail-btn {
  width: 100%;
}

.side-btn {
  right: 10px;
  bottom: 10px;
  position: fixed;
  z-index: 100;
}

.pagetop {
  width: 50px;
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 120px;
}

#footer {
  padding: 1rem 0 15rem;
  position: relative;
  background: url(../img/common/ft-bg.png) bottom/100% no-repeat;
}
#footer .ft-area {
  padding: 7rem 0 4rem;
}
#footer .ft-area .ft-top {
  margin-bottom: 5rem;
  gap: 4rem;
}
#footer .ft-area .ft-top .nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
#footer .ft-area .ft-top .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-btm {
  display: grid;
  justify-items: center;
  gap: 3rem;
}
#footer .ft-area .ft-btm .ft-logo {
  width: 50%;
}
#footer .ft-area .ft-btm .site-btn {
  margin: 0;
}
#footer .ft-area .ft-btm .ft-info-box {
  display: grid;
  width: 100%;
  gap: 5px;
}
#footer .ft-area .ft-btm .ft-info-box .ft-info {
  display: grid;
  gap: 5px;
}
#footer .copyright {
  font-size: 1.2rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
#about-intro .ill-box {
  width: 30%;
  position: absolute;
}
#about-intro .ill-le {
  left: 0;
  bottom: -10rem;
}
#about-intro .ill-ri {
  right: -3rem;
  top: -5rem;
}

#about-commitment .com-btn {
  width: 100%;
}

#about-interview ul {
  gap: 0;
  padding: 0;
}
#about-interview ul li .txt-box {
  margin-top: 2rem;
  padding: 2rem;
  position: relative;
}
#about-interview ul li .txt-box::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1.4rem;
  position: absolute;
  background: #fff;
}
#about-interview ul li .ttl-box .ill-box {
  width: 20%;
}
#about-interview ul li .ttl-box .txt-box::after {
  clip-path: polygon(0 0, 0 100%, 100% 0);
  left: 5rem;
  top: -1.3rem;
  transform: scale(1, -1);
}
#about-interview ul li .answer-box {
  display: grid;
  gap: 2rem;
}
#about-interview ul li .answer-box .ill-box {
  order: 2;
  width: 30%;
  margin-left: auto;
}
#about-interview ul li .answer-box .ill-box .name {
  font-family: var(--ttl-font);
  margin-top: 1rem;
}
#about-interview ul li .answer-box .txt-box::after {
  bottom: -1.3rem;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  right: 5rem;
}

.about-area .img-box {
  width: 86%;
  margin: 0 auto 2rem;
}
.about-area .ill-box {
  position: absolute;
  right: -2rem;
  bottom: -10rem;
  width: 40%;
}

.scene-area ul {
  padding: 3rem 2rem;
}
.scene-area ul li {
  padding: 1rem 0 2.5rem;
}
.scene-area ul li span {
  display: inline-block;
  background: url("../img/common/check.png") left top 0.7rem/1.4rem no-repeat;
  padding-left: 2rem;
  box-sizing: border-box;
}
.scene-area .ill-box {
  width: 30%;
  position: absolute;
}
.scene-area .ill-le {
  top: -7rem;
  left: -2rem;
}
.scene-area .ill-ri {
  top: -7rem;
  right: -2rem;
}

.flow-area {
  background: url(../img/common/flow-bg.jpg) center/cover;
}
.flow-area ul {
  gap: 7.5rem;
}
.flow-area ul li {
  padding: 3rem 2rem;
  position: relative;
}
.flow-area ul li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1.6rem;
  position: absolute;
  background-color: var(--main-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin: 0 auto;
  inset: auto 0 -4.5rem 0;
}
.flow-area ul li .num {
  line-height: 1.2;
  display: grid;
  justify-items: center;
}
.flow-area ul li .num span {
  font-size: 3.2rem;
}
.flow-area ul li .txt-box dl {
  gap: 2rem;
}
.flow-area ul li .txt-box dl .dl-item {
  display: grid;
}
.flow-area ul li .txt-box dl dt::before {
  content: "・";
}
#info {
  padding: 8rem 0 0;
}
#info .inbox {
  padding: 3rem 2rem;
}
#info .ill-box {
  width: 30%;
  position: absolute;
}
#info .ill-le {
  left: 2rem;
  top: -8rem;
}
#info .ill-ri {
  right: 0;
  top: -8rem;
}
#info .map {
  margin-top: 8rem;
  height: 45rem;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv-area {
  padding: 1rem 0 7rem;
  position: relative;
  background: url(../img/sv/sv-bg.jpg) center/cover;
}
.sv-area::before {
  content: "";
  display: block;
  width: 20%;
  height: auto;
  aspect-ratio: 0.57;
  position: absolute;
  background: url("../img//top/mv_deco-le.png") center/contain no-repeat;
  bottom: 6rem;
  left: 0;
  z-index: 100;
}
.sv-area::after {
  content: "";
  display: block;
  width: 20%;
  height: auto;
  aspect-ratio: 0.59;
  position: absolute;
  background: url("../img//top/mv_deco-ri.png") center/contain no-repeat;
  bottom: 6rem;
  right: 0;
  z-index: 100;
}

.sv {
  width: 90%;
  aspect-ratio: 2.65;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}
.sv .txt-box {
  min-width: 70%;
  border-radius: 0 3rem 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 200;
  padding: 2rem;
}
.sv .sv-catch {
  font-size: 2rem;
  font-family: var(--ttl-font);
  margin-bottom: 0;
}

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

.cyclamen-sv {
  background-image: url(../img/sv/cyclamen.png);
}

.carnation-sv {
  background-image: url(../img/sv/carnation.png);
}

.info-sv {
  background-image: url(../img/sv/info.png);
}

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

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

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

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

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

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

/*---------------------------△△---SV---△△------------------------*/
/*----------▽▽---breadcrumbs---▽▽-------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  left: 0;
  right: 0;
  top: 2vw;
  font-size: 3vw;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 10px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*その他共通ページ*/
.com-other-page {
  padding: 8rem 0;
  background: url(../img/common/bg-01-small.png) top 7.8rem right 1rem/20% no-repeat, url(../img/common/bg-01-big.png) top 14.6rem right 3rem/80% no-repeat, var(--pt-01);
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 10% 0 30%;
}
#site-map .site-list li {
  font-size: 4.2vw;
}
#site-map .site-list li a {
  display: block;
  padding: 6% 0;
  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.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  padding: 10% 0 20%;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  padding: 0;
  margin-bottom: 10vw;
}
#privacy .privacy-box .ttl02 {
  font-size: 5vw;
  text-align: left;
  margin-bottom: 5vw;
  line-height: 1.5;
  padding: 3vw 2vw;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .select-area {
  margin-bottom: 10vw;
  position: relative;
}
#news .select-area .select-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: 500;
}
#news .news-area {
  margin-bottom: 10vw;
}
#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: 8% 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 2vw 3%;
  font-size: 3.5vw;
  margin-bottom: 4vw;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 35%;
  font-weight: 500;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 62%;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 4.2vw;
  margin-bottom: 3vw;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 3.4vw;
  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: 35%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 60%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box {
  flex-wrap: wrap;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box time {
  width: 100%;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 100%;
}

/*detail */
#detail {
  padding-bottom: 30vw;
}
#detail .detail-box {
  margin-bottom: 20vw;
}
#detail .detail-box .data-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  gap: 4%;
  font-size: 3.5vw;
  padding-top: 10%;
  margin-bottom: 5vw;
}
#detail .detail-box .data-box time {
  font-weight: 500;
}
#detail .detail-box .data-box .tag-list {
  width: 68%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw 1vw;
  font-size: 3.3vw;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .detail-ttl {
  letter-spacing: 0.05em;
  text-align: left;
  font-size: 5.5vw;
  font-weight: 500;
  padding: 0 0 4%;
  margin-bottom: 5vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
#detail .detail-box .detail-txt {
  font-size: 4vw;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
#detail .detail-box .detail-txt img {
  margin: 5%;
}

.pagenation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3%;
  margin-top: 10vw;
}
.pagenation li {
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 4vw;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  padding: 20% 35%;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  margin-top: 10%;
}
.pagenation-detail p a {
  background: var(--main-color);
  border-radius: 5px;
  padding: 5% 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 3.5vw;
  letter-spacing: 0.2em;
  position: absolute;
  color: #fff;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 20%;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 20%;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 35%;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .table-wrapper {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20%;
}
#contact .table-wrapper .contact-form-table tr {
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr th {
  width: 100%;
  box-sizing: border-box;
  padding: 3vw 2vw;
  font-size: 3.8vw;
  margin-bottom: 3%;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  font-size: 3.5vw;
  padding: 1% 2%;
  margin: -0.5%;
  float: right;
}
#contact .table-wrapper .contact-form-table tr th .upload-notice {
  display: inline-block;
  margin-top: 5%;
  line-height: 1.5;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 100%;
  box-sizing: border-box;
}
#contact .table-wrapper .contact-form-table tr td .upload-item-wrap .thumb {
  width: 40vw;
  height: 40vw;
  margin-bottom: 5%;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap {
  width: 30vw;
}
#contact .table-wrapper .contact-form-table tr td .ancion-btn-wrap .ancion-btn {
  font-size: 3vw;
  width: 100%;
  box-sizing: border-box;
  padding: 12% 0;
  margin-bottom: 10%;
  line-height: 1;
}
#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 {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 4%;
  font-size: 4vw;
  box-shadow: none;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-size: 4vw;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td textarea {
  height: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 30%;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .select-area {
  padding: 4% 0;
  display: inline;
  position: relative;
}
#contact .table-wrapper .contact-form-table tr .select-area .select-box {
  width: 60%;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 10%;
}
#contact .table-wrapper .contact-form-table tr .select-area::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  position: absolute;
  border-right: 1px solid #262626;
  border-bottom: 1px solid #262626;
  transform: rotate(45deg);
  right: 3vw;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw;
}

.privacy-agree {
  display: block;
}
.privacy-agree a {
  text-decoration: underline;
}

.check {
  margin: 10% auto 0px;
}
.check .contact-recaptcha-wrap {
  margin: 0 auto 15%;
}

.contact-submits-wrap {
  border-radius: 5px;
  width: 80%;
  margin: 0 auto 0;
}
.contact-submits-wrap .contact-check-btn {
  width: 100%;
  height: 15vw;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.2em;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
  margin: 0;
  border-radius: 5px;
  background: var(--main-color);
}
.contact-submits-wrap .contact-back-btn {
  width: 80%;
  border: none;
  background: #bebebe;
  margin-bottom: 10%;
  border-radius: 5px;
  font-size: 4vw;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 5% 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------▽▽---contact.html---▽▽------------------------*/