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

.dl-item {
  display: flex;
}

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

.com-arw {
  display: inline-block;
  padding-right: 6rem;
  position: relative;
}
.com-arw::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 0.9rem;
  position: absolute;
  background: url("../img/common/arw.png") center/contain no-repeat;
  inset: 0 0 0 auto;
  margin: auto 0;
}
.com-arw.ft-wt::after {
  background-image: url(../img/common/arw-wt.png);
}

.com-btn {
  display: grid;
  align-content: center;
  border: 1px solid var(--main-color);
  padding: 0 4rem;
  width: 400px;
  height: 60px;
  background: #fff;
  margin-top: 5rem;
  position: relative;
}
.com-btn.com-arw::after {
  right: 3rem;
}

.mail-btn {
  height: 60px;
  width: 250px;
  outline: 1px solid #fff;
  outline-offset: -0.5rem;
}
.mail-btn span {
  padding-right: 3rem;
  background: url(../img/common/site-arw-wt.png) right no-repeat;
}
.mail-btn.ft-clr02 {
  outline-color: var(--accent-color);
}
.mail-btn.ft-clr02 span {
  background: url(../img/common/site-arw.png) right no-repeat;
}

.shop-btn {
  justify-items: center;
}
.shop-btn span {
  padding: 0 4.6rem;
  background: url("../img/common/shop-icon.png") left center/2.6rem no-repeat;
  padding-left: 4.6rem;
  box-sizing: border-box;
}

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

.ttl01 {
  text-align: center;
  display: grid;
  justify-content: center;
  justify-items: start;
  margin-bottom: 5rem;
}
.ttl01 .en {
  font-size: 10rem;
  transform-origin: left;
  transform: rotate(-15deg) translateX(-50%) translateY(2rem);
  color: var(--accent-color);
  text-transform: capitalize;
  position: relative;
  letter-spacing: 0;
  line-height: 1;
}
.ttl01 .en::before {
  content: "";
  display: block;
  width: 14.2rem;
  height: auto;
  aspect-ratio: 0.88;
  position: absolute;
  background: url("../img/common/ttl-le.png") center/contain no-repeat;
  left: -9rem;
  bottom: -4rem;
}
.ttl01 .ja {
  font-size: 3rem;
  position: relative;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
}
.ttl01 .ja::after {
  content: "";
  display: block;
  width: 15.3rem;
  height: auto;
  aspect-ratio: 1.515;
  position: absolute;
  background: url("../img/common/ttl-ri.png") center/contain no-repeat;
  right: -6.5rem;
  bottom: 0;
}
.ttl01.ft-wt .en {
  color: #fff;
}
.ttl01.txt-le {
  justify-items: start;
  justify-content: start;
}
.ttl01.txt-le .en {
  transform: rotate(-15deg) translateX(-30%);
}
.ttl01.txt-le .ja {
  padding-bottom: 0;
}

#top-page .ttl01 {
  margin-bottom: 3rem;
}
#top-page .ttl01 .en::before {
  content: none;
}
#top-page .ttl01 .ja::after {
  content: none;
}

.ttl02 {
  font-size: 2.4rem !important;
}

.ttl03 {
  font-size: 2rem;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tag-list .tag {
  color: #fff;
  background: var(--main-color);
  border-radius: 4px;
  padding: 0 5px;
  font-size: 1.4rem;
}

time {
  color: var(--accent-color);
}

.com-bd-box {
  position: relative;
  z-index: 1;
}
.com-bd-box::after {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: auto;
  border: 2px solid;
  border-image: linear-gradient(45deg, #a57b25, #cba95f, #e9d38b, #cba95f, #a57b25) 1;
}

/*infotableスタイル*/
.com-desc-tbl {
  padding: 3rem 6rem 6rem;
  width: 100%;
  background: url(../img/company/info-bg.png) bottom right no-repeat, #fff;
  border: 2px solid;
  border-image: linear-gradient(45deg, #a57b25, #cba95f, #e9d38b, #cba95f, #a57b25) 1;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
  border-bottom: 1px solid var(--accent-color);
}
.com-desc-tbl .dl-item dt {
  color: var(--accent-color);
  width: 230px;
}
.com-desc-tbl .dl-item dd {
  width: 670px;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 10px 10px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right .hd-top {
  gap: 35px;
}
#header .hd-right #nav {
  margin-top: 2rem;
}
#header .hd-right #nav .nav-list {
  gap: 35px;
}
#header .hd-right #nav .nav-list .nav-item {
  font-size: 1.8rem;
  font-weight: 500;
  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(--accent-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 .current {
  color: var(--accent-color);
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  height: 49vw;
  min-height: 627px;
  background: url(../img/top/mv-img.jpg) center/cover;
}
.top-mv .mv-ct {
  width: 34%;
  position: absolute;
  left: 11.5%;
  top: 5.5%;
}
.top-mv .mv-ct img {
  width: 100%;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news {
  padding: 120px 0;
  background: url(../img/top/news-deco.png) top 2rem right calc(50% + 472px) no-repeat;
}
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 160px;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .ttl01 .en {
  transform: none;
  padding-bottom: 0.5rem;
  background: url(../img/top/news-bd.png) bottom no-repeat;
}
#top-news .inbox .ttl01 .en::before {
  content: none;
}
#top-news .inbox .ttl01 .ja::after {
  content: none;
}
#top-news .inbox .news-list {
  width: 820px;
  gap: 4rem;
}
#top-news .inbox .news-list .news-item {
  border-bottom: 1px solid var(--main-color);
}
#top-news .inbox .news-list .news-item a {
  display: grid;
  gap: 1rem;
  width: 24rem;
}
#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;
}
#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 .txt-box {
  width: 720px;
  gap: 10px 20px;
}
#top-news .inbox .com-arw {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  bottom: 0;
  left: 0;
}
#top-news .inbox .com-arw::after {
  margin: 1rem 0;
}

/*------------△△---NEWS---△△---------*/
#top-concept {
  position: relative;
  background: url(../img/top/ccpt-bg.jpg) center/cover;
}
#top-concept::before {
  content: "";
  display: block;
  width: 32rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/ccpt-02.jpg") center/contain no-repeat;
  bottom: 15rem;
  left: 8rem;
}
#top-concept .inbox .txt-box {
  width: 560px;
  margin-left: auto;
}
#top-concept .inbox .txt-box .ttl01 {
  padding-top: 5rem;
  background: url(../img/top/ccpt-ttl-deco-02.png) left 2rem top no-repeat, url(../img/top/ccpt-ttl-deco.png) left -1rem top 4rem no-repeat;
}
#top-concept .inbox .img-box {
  position: absolute;
  left: 0;
  top: 0;
}
#top-concept .inbox .img-box::before {
  content: "";
  display: block;
  width: 16.3rem;
  height: auto;
  aspect-ratio: 1.55;
  position: absolute;
  background: url("../img/top/ccpt-deco-le.png") center/contain no-repeat;
  left: -2rem;
  bottom: -9rem;
}
#top-concept .inbox .img-box::after {
  content: "";
  display: block;
  width: 15rem;
  height: auto;
  aspect-ratio: 1.19;
  position: absolute;
  background: url("../img/top/ccpt-deco-ri.png") center/contain no-repeat;
  right: -12rem;
  top: -3.5rem;
}
#top-secimg {
  padding: 0;
  height: 41rem;
  background-image: url(../img/top/fix-img.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

#top-service {
  background: url(../img/top/srv-bg-le.png) left top/32.7% no-repeat, url(../img/top/srv-bg-ri.png) right bottom/50% no-repeat, url(../img/top/srv-deco.png) left calc(50% - 570px) bottom 17.5rem no-repeat;
}
#top-service .inbox .txt-box {
  width: 540px;
  margin-left: 4rem;
}
#top-service .inbox .ttl01 {
  position: relative;
  left: -5rem;
  background: url(../img/top/srv-ttl-bg.png) bottom left no-repeat, url(../img/top/srv-ttl-line.png) bottom right no-repeat;
}
#top-service .inbox .ttl01 .en {
  z-index: 1;
  left: 4rem;
}
#top-service .inbox .ttl01 .en::before {
  content: "";
}
#top-service .inbox .ttl01 .en::after {
  content: "";
  display: block;
  width: 8rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/top/srv-ttl-deco.png") center/contain no-repeat;
  top: 1.5rem;
  right: -8rem;
  z-index: -1;
}
#top-service .inbox .ttl01 .ja .ft-wt {
  display: inline-block;
  padding: 0 2rem 1.5rem;
  padding-left: 5rem;
}
#top-service .inbox .img-box {
  position: absolute;
  right: -360px;
  top: 0;
}

#top-workshop {
  background: url(../img/top/work-bg.jpg) center/cover;
}
#top-workshop .inbox {
  background: url(../img/top/work-ttl-bg.png) top 0 left 4rem no-repeat rgba(255, 255, 255, 0.91);
  padding: 4rem 10rem 8rem;
}
#top-workshop .inbox .ttl01 .en {
  left: -18%;
  margin-bottom: -1rem;
  font-size: 8.5rem;
}
#top-workshop .inbox .ttl01 .ft-clr02 {
  padding: 0.5rem;
  display: inline-block;
  margin-right: 1rem;
  border: 1px solid var(--accent-color);
  background: rgba(255, 255, 255, 0.6);
}
#top-workshop .inbox .com-txt {
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--bd-color);
}
#top-insta {
  padding: 20rem 0 15rem;
  background: url(../img/top/insta-bg.png) center bottom no-repeat;
}
#top-insta .txt-box {
  width: 580px;
  padding: 0 6rem 5rem;
  background: url(../img/top/insta-deco-ri.png) bottom right no-repeat, url(../img/top/insta-deco-le.png) left -1rem top no-repeat;
}
#top-insta .txt-box .insta-icon span {
  padding-top: 3.5rem;
  background: url(../img/top/insta-icon-bg.png);
  display: inline-block;
  width: 11rem;
  height: 12rem;
}
#top-insta .txt-box .insta-ttl {
  position: relative;
  width: 62rem;
  left: -9rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
}
#top-insta .btn-box {
  padding: 1.5rem;
}

.side-btn {
  right: 1rem;
  bottom: 11rem;
  position: fixed;
  z-index: 100;
}

.pagetop {
  position: fixed;
  z-index: 100;
  right: 2rem;
  bottom: 1rem;
}

#footer {
  position: relative;
  background: url(../img/common/ft-bg.jpg) center/cover;
}
#footer .ft-area {
  padding: 100px 0;
}
#footer .ft-area .ft-le {
  display: grid;
  justify-items: start;
  gap: 3rem;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
  gap: 0.5rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info .dl-item {
  gap: 1rem;
}
#footer .ft-area .ft-le .ft-info-box .ft-info dt {
  width: 8rem;
  background: rgba(255, 255, 255, 0.5);
}
#footer .ft-area .ft-ri {
  width: 50%;
}
#footer .ft-area .ft-ri .contact-box {
  gap: 3rem;
  margin-bottom: 4rem;
}
#footer .ft-area .ft-ri .nav-box {
  padding: 3rem;
  display: grid;
  gap: 2.5rem;
  justify-content: center;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
#footer .ft-area .ft-ri .nav-list {
  display: flex;
  gap: 2rem;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item:not(:last-child)::after {
  content: "/";
  margin-left: 2rem;
}
#footer .copyright {
  font-size: 1.2rem;
  padding: 1rem;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
.check-li {
  gap: 1rem;
}
.check-li li {
  padding: 2rem 0;
  align-items: center;
}
.check-li .ttl02 {
  width: 50%;
  padding-left: 3rem;
}
.check-li .ttl02 span {
  display: inline-block;
  background: url("../img/common/check.png") left top 0.2rem/3rem no-repeat;
  padding-left: 4rem;
  box-sizing: border-box;
}
.check-li .com-txt {
  width: 50%;
  padding: 0 3rem;
  border-left: 1px solid var(--main-color);
}

#hawaii-charm {
  background: url(../img/hawaii/charm-bg.jpg) top/cover;
}

#hawaii-scene {
  background: url(../img/hawaii/scene-bg-le.png) top left no-repeat, url(../img/hawaii/scene-bg-ri.png) bottom right no-repeat;
}
#hawaii-scene .scene-li {
  margin-top: 5rem;
  gap: 3rem 4rem;
}
#hawaii-scene .scene-li .ttl02 {
  padding-bottom: 2rem;
  background: url(../img/hawaii/scene-ttl-deco.png) bottom no-repeat;
}

#hawaii-order {
  background: url(../img/hawaii/order-bg.jpg) center/cover;
}
#hawaii-order .order-box {
  padding: 7rem 6rem 8rem;
  background: url(../img/hawaii/order-deco.png) right bottom no-repeat, #fff;
}
#hawaii-order .order-box .ttl01 {
  background: url(../img/hawaii/order-ttl-bg.png) bottom 7rem center no-repeat;
}
#hawaii-order .order-box .ttl01 .ft-wt {
  margin-bottom: 1rem;
  padding-right: 4rem;
  display: inline-block;
}
#hawaii-order .order-box .ttl01 .en {
  text-transform: unset;
}
#hawaii-order .order-box .order-li {
  gap: 4rem;
  margin-top: 5rem;
}
#hawaii-order .order-box .order-li li {
  width: 210px;
  position: relative;
}
#hawaii-order .order-box .order-li li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1rem;
  position: absolute;
  background: url("../img/hawaii/order-arw.png") center/contain no-repeat;
  inset: 0 -3.5rem 0 auto;
  margin: auto 0;
}
#hawaii-order .order-box .order-li li .ttl03 {
  height: 7rem;
  display: grid;
  align-content: center;
  background: url(../img/hawaii/order-ttl-bg.jpg);
}
#hawaii-order .order-box .order-li li .ttl03 small {
  font-size: 1.6rem;
}
#hawaii-order .mov-ttl {
  margin: 7rem 0 3rem;
}
#hawaii-order .mov-ttl span {
  padding: 2rem 6.5rem;
  background: url(../img/hawaii/mov-le.png) left 2.5rem bottom 1rem no-repeat, url(../img/hawaii/mov-ri.png) right bottom no-repeat;
}
#hawaii-order .mov-box {
  width: 800px;
  height: 45rem;
}
#hawaii-order .mov-box video {
  width: 100%;
  height: 100%;
}

#hawaii-lineup {
  background: url(../img/hawaii/lineup-bg.png) right top no-repeat;
}
#hawaii-lineup .en {
  text-transform: unset;
}

.item-li {
  gap: 3rem;
}
.item-li .item-box {
  width: 330px;
}
.item-li .item-box .img-box {
  margin-bottom: 2rem;
}
.item-li .item-box .ttl03 {
  position: relative;
  z-index: 1;
}
.item-li .item-box .ttl03::before {
  content: "";
  display: block;
  width: 3.8rem;
  height: auto;
  aspect-ratio: 1.18;
  position: absolute;
  background: url("../img/common/lineup-ttl-deco.png") center/contain no-repeat;
  top: 0;
  left: -3rem;
  z-index: -1;
}
.item-box .item-ttl {
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 1rem;
}
.item-box .com-img {
  width: 100%;
  aspect-ratio: 1;
}
.item-box .price small {
  font-size: 0.8em;
}

#hawaii-detail {
  background: url(../img/hawaii/detail-bg.png) bottom right no-repeat;
}

.item-detail {
  padding: 8rem;
}
.item-detail .img-li {
  margin-top: 3rem;
  gap: 1rem;
}
.item-detail .img-li li {
  width: 300px;
}
.item-detail .com-btn {
  margin: 5rem auto;
}
.item-detail > .com-txt {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--accent-color);
}
.item-detail .detail-order {
  margin-top: 12rem;
}
.item-detail .detail-order .ttl03 span {
  position: relative;
  padding: 0 7rem;
}
.item-detail .detail-order .ttl03 span::before {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 auto 0 0;
  margin: auto 0;
}
.item-detail .detail-order .ttl03 span::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  position: absolute;
  background: var(--accent-color);
  inset: 0 0 0 auto;
  margin: auto 0;
}
.item-detail .detail-order .img-box {
  margin: 4rem auto;
}

#item-page #item {
  background: url(../img/item/bg.png) right bottom no-repeat;
}
#item-page #item .en {
  text-transform: unset;
  margin-left: -4rem;
}
#item-page #item .item-warper > .ttl02 {
  padding: 2rem;
  background: #edf9fa;
  position: relative;
  margin-bottom: 4.5rem;
  margin-top: 10rem;
}
#item-page #item .item-warper > .ttl02::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 12px);
  position: absolute;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  left: 0;
  top: -6px;
}

#item-detail {
  background: url(../img/item/item-detail) bottom right no-repeat;
}

#workshop-feature {
  background: url(../img/work/feat-bg.jpg) center/cover;
}
#workshop-feature .featu-li {
  gap: 7rem 0;
}
#workshop-feature .featu-li li {
  width: 500px;
  position: relative;
}
#workshop-feature .featu-li li .ttl02 {
  background: url(../img/work/feat-ttl-bg.png) top -0.5rem center no-repeat;
  padding: 4rem 0;
}
#workshop-feature .featu-li li .ttl02 .num {
  width: 7rem;
  height: 7.6rem;
  font-size: 4rem;
  position: absolute;
  left: 1rem;
  top: -1rem;
  background: url(../img/work/num-bg.png) no-repeat;
}

#workshop-point {
  background: url(../img/common/bg-mokume.jpg) center/cover;
}

#workshop {
  background: url(../img/work/bg-le.png) left bottom no-repeat, url(../img/work/bg-ri.png) right top no-repeat;
}
#workshop ul {
  gap: 7rem;
}
#workshop ul li {
  align-items: start;
}
#workshop ul li .workshop-ttl {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--accent-color);
}
#workshop ul li .com-img {
  width: 250px;
  aspect-ratio: 1;
}
#workshop ul li .txt-box {
  width: 780px;
}
#workshop ul li .txt-box .com-btn {
  width: 700px;
  margin: 3rem auto 0;
}
#workshop ul li .txt-box .price small {
  font-size: 0.8em;
}

#company-greeting {
  background: url(../img/company/gree-bg.png) top right no-repeat;
}
#company-greeting .inbox::before {
  content: "";
  display: block;
  width: 25rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/company/gree-02.jpg") center/contain no-repeat;
  bottom: -9rem;
  left: -15rem;
}
#company-greeting .img-box {
  position: relative;
}
#company-greeting .img-box::before {
  content: "";
  display: block;
  width: 15rem;
  height: auto;
  aspect-ratio: 1.11;
  position: absolute;
  background: url("../img/company/gree-dec-le.png") center/contain no-repeat;
  left: -5.4rem;
  top: -0.7em;
}
#company-greeting .img-box::after {
  content: "";
  display: block;
  width: 16.3rem;
  height: auto;
  aspect-ratio: 1.55;
  position: absolute;
  background: url("../img/company/gree-dec-ri.png") center/contain no-repeat;
  right: -5rem;
  bottom: -5rem;
}
#company-greeting .txt-box {
  width: 590px;
}
#company-greeting .txt-box .ft-clr01 {
  position: relative;
}
#company-greeting .txt-box .ft-clr01::after {
  content: "";
  display: block;
  width: 8rem;
  height: auto;
  aspect-ratio: 0.95;
  position: absolute;
  background: url("../img/company/gree-deco.png") center/contain no-repeat;
  right: -6rem;
  top: -3.5rem;
}

#company-info {
  background: url(../img/common/bg-mokume.jpg) center/cover;
}

/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
  padding: 0 5rem 6rem;
  background: url(../img/sv/bg-le.png) left no-repeat, url(../img/sv/bg-ri.png) right bottom no-repeat;
}
.sv .sv-catch {
  font-size: 3.5rem;
  position: absolute;
  inset: 0;
  width: 87.5%;
  max-width: 1680px;
  z-index: 10;
  display: grid;
  align-content: center;
  justify-items: start;
}
.sv .sv-catch span {
  padding: 6rem 4rem;
  margin-bottom: 4rem;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid;
  border-image: linear-gradient(45deg, #a57b25, #cba95f, #e9d38b, #cba95f, #a57b25) 1;
}
.sv .img-box {
  width: calc(50% + 440px);
  height: 420px;
  margin-left: auto;
}

/*---------------------------△△---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: url(../img/top/srv-bg-le.png) left top/32.7% no-repeat, url(../img/top/srv-bg-ri.png) right bottom/50% no-repeat, url(../img/top/srv-deco.png) left calc(50% - 570px) bottom 17.5rem no-repeat;
}

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

/*---------------------------△△---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: 100px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 120px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  width: 300px;
  box-sizing: border-box;
  padding: 16px 10px;
  font-size: 1.5rem;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

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

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

/*---------------------------△△---contact.html---△△------------------------*/