html {
    font-size: 10px;
    scroll-padding-top: 100px;
  }
body {
  background-color: #fff;
  color: #333333;
  font-family: 'Noto Serif JP', serif;;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; 
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
h2 span,
h3 span,
h4 span {
  display: inline-block;
}
.sp-only,
.small-only {
  display: none;
}
    
/*-- header --*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  padding-left: clamp(20px, 5.2vw, 100px);
  background-image: url(../images/bg_header.jpg);
  background-repeat: repeat;
  background-size: contain;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 8px;
}
.header h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
.header-logo {
  width: 100%;
  max-width: 514px;
}
.header-right {
  display: flex;
  margin-right: 120px;
}
.header-phone {
  width: 396px;
  margin-top: 12px;
  margin-right: 13px;
}
.header-contact {
  width: 370px;
  margin-top: 12px;
}
.header-phone:hover,
.header-contact:hover {
  opacity: 0.8;
  transition: .2s;
}

/*-- nav --*/
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
#g-nav-list {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  background: #6C514E;
}
#g-nav.panelactive #g-nav-list {
  display: block; 
}
#g-nav ul {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-left: 19px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: column;
}
#g-nav.panelactive ul {
  opacity: 1;
}
#g-nav.panelactive ul li {
  position: relative;
  width: 30%;
  margin-top: 44px;
  text-align: left;
  white-space: nowrap;
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#g-nav.panelactive ul li:first-child {
  margin-top: 0;
}
#g-nav.panelactive ul li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 0.5em;
  height: 0.5em;
  background-image: url(../images/g-nav-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@keyframes gnaviAnime {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
#g-nav li {
  text-align: center; 
  list-style: none;
}
#g-nav li a {
  display: block;
  padding-left: 7px;
  margin-left: 13px;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}

.openbtn {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-color: #6C514E;
  z-index: 9999;
}
.openbtn .openbtn-area {
  transition: all .4s;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 35px;
  height: 1px;
  background: #fff;
  width: 30px;
}
.openbtn span:nth-of-type(1) {
  top: 35px;	
}
.openbtn span:nth-of-type(2) {
  top: 50px;
}
.openbtn span:nth-of-type(3) {
  top: 65px;
}
.openbtn.active .openbtn-area {
  transform: rotateX(360deg);
}
.openbtn.active span:nth-of-type(1) {
  top: 34px;
  left: 25px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
  background: #fff;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 46px;
  left: 25px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
  background: #fff;
}

main {
  background-image: url(../images/bg_main.jpg);
  background-repeat: repeat-y;
  background-size: contain;
}

.fv {
  width: 100%;
}
.fv .wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.fv .fv-contents {
  opacity: 0;
  transition: opacity 1s ease-out;
}
/* 表示アニメーション開始時に付くクラス */
.fv .fv-contents.show {
  opacity: 1;
}
.fv .fv-contents.one {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: clamp(270px, 35.15vw, 675px);
}
.fv .fv-contents.two {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 800px;
  margin: auto;
  padding: clamp(138px, 18vw, 180px) 0 clamp(92px, 12vw, 120px);
}
.fv .fv-contents.three {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  width: clamp(235px, 30.625vw, 588px);
}
.fv .title {
  font-size: clamp(3.6rem, 4.8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(91 / 48);
  text-align: center;
}
.fv .title span.red {
  font-size: clamp(4.3rem, 5.6vw, 5.6rem);
  color: #C94C62;
}
.fv .lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 24px 85px;
  width: fit-content;
  margin: 32px auto 0;
}
.fv .list {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: start;
  position: relative;
}
.fv .list::before {
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  content: '';
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/checked-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.fv .total-price {
  font-size: clamp(4.6rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 20px;
  vertical-align: baseline;
}
.fv .total-price span.big {
  font-size: clamp(7.8rem, 10.2vw, 10.2rem);
  font-weight: 500;
  letter-spacing: 0;
  color: #C94C62;
  margin: 0 15px 0 8px;
}
.fv .annotation {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 30px;
}
.fv .annotation span {
  display: inline-block;
}
.fv .content {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(40 / 16);
  text-align: center;
  margin-top: 60px;
}
.fv .content span {
  display: inline-block;
}

/* スライド */
.slides {
  width: 100%;
}
.swiper {
  width: 100%;
}
.swiper-wrapper {
  transition-timing-function: linear;
  display: flex;
}
.swiper-slide {
  width: clamp(180px, 30.7vw, 530px);
  height: auto;
}
.swiper-slide img {
  width: 100%;
}

/* fadeinアニメーション */
.fadeIn {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(100px);
}
.fadeIn.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* price */
.price {
  width: 100%;
  padding: 120px 20px 0;
  position: relative;
  z-index: 0;
}
.price::before {
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  width: clamp(240px, 56.8vw, 739px);
  height: clamp(60px, 12.9vw, 168px);
  background-image: url(../images/bg_decorate_01.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.price::after {
  position: absolute;
  bottom: clamp(-360px, -27.6vw, -88px);
  left: 0;
  content: '';
  width: clamp(120px, 29.3vw, 381px);
  height: clamp(154px, 36.9vw, 480px);
  background-image: url(../images/bg_decorate_02.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.price .title {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(40 / 28);
  text-align: center;
}
.price .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
}
.price .tab-menu {
  display: flex;
  column-gap: 20px;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.price .tab-menu-item {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.34;
  color: #ffffff;
  text-align: center;
  width: calc((100% - 40px) / 3);
  padding: 21px 10px;
  cursor: pointer;
  background-color: #B5A58C;
  border-radius: 10px 10px 0 0;
}
.price .tab-menu-item span{
  display: inline-block;
}

.price .tab-menu-item.move {
  background-color: #6C514E;
}
.price .tab-container {
  width: 100%;
  padding: clamp(42px, 5.45vw, 60px);
  background-color: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price .tab-inner-left {
  flex: 1;
}
.price .content {
  line-height: calc(38 / 16);
}
.price .price-box {
  font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho Pro',serif;
  font-size: clamp(2.2rem, 2.8vw, 3.1rem);
  font-weight: 600;
  text-align: center;
  width: 100%;
  border: 1px solid #C7C7C7;
  background-color: #FCFCFC;
  margin-top: 20px;
  padding: 16px;
}
.price .cost {
  font-size: clamp(3.2rem, 4.18vw, 4.6rem);
  margin: 0 4px 0 10px;
}
.price .unit {
  font-size: clamp(2rem, 2.63vw, 2.9rem);
}
.price .tab-inner-right {
  width: 260px;
}
.price .tab-pane {
  display: none;
}
.price .tab-pane.move {
  display: flex;
  column-gap: clamp(50px, 6.36vw, 70px);
}
.price .annotation {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.3;
  color: #C94C62;
  text-align: center;
  margin-top: 20px;
}
.price .annotation span {
  display: inline-block;
}


.composition {
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 0;
}
.composition::after {
  position: absolute;
  bottom: clamp(-420px, -32.3vw, -134px);
  right: 0;
  content: '';
  width: clamp(152px, 36.6vw, 476px);
  height: clamp(200px, 48.15vw, 626px);
  background-image: url(../images/bg_decorate_03.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.composition .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 150px auto 0;
  padding: 50px 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: relative;
}
.composition .title {
  position: absolute;
  top: clamp(-23px, -2vw, -16px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  width: calc(100% - 20px);
  max-width: 528px;
  padding: 7px 10px;
  background-color: #6C514E;
  border-radius: 23px;
}
.composition .container {
  width: 100%;
  max-width: 896px;
  margin: auto;
  display: flex;
  column-gap: clamp(32px, 4vw, 45px);
}
.composition .lists {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 53%;
}
.composition .list {
  width: 100%;
  padding: 16px 20px 20px 30px;
  background-color: #FDFBF9;
  border-radius: 7px;
  border: 1px solid #E3DDD5;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.composition .list-inner {
  display: flex;
  align-items: center;
  column-gap: 9px;
}
.composition .num {
  font-size: clamp(1.5rem, 1.63vw, 1.8rem);
  font-weight: 500;
  color: #fff;
  width: 28px;
  height: 28px;
  background-color: #C94C62;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.composition .name {
  font-size: clamp(1.5rem, 1.63vw, 1.8rem);
  font-weight: 700;
  color: #6C514E;
}
.composition .list-desc {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  line-height: calc(28 / 16);
  color: #3B2A22;
}
.composition .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 42%;
}
.composition .annotation {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(33 / 16);
  color: #3B2A22;
}
.composition .attention {
  font-size: clamp(2rem, 2.18vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: calc(42 / 24);
  color: #C94C62;
  text-align: center;
  margin-top: 30px;
}
.composition .attention span {
  display: inline-block;
}

.point {
  width: 100%;
  padding: 0 20px;
  margin-top: 180px;
  position: relative;
  z-index: 1;
}
.point::before {
  position: absolute;
  top: clamp(100px, 31.5vw, 410px);
  left: 0;
  content: '';
  width: clamp(220px, 52.76vw, 686px);
  height: clamp(216px, 52.15vw, 678px);
  background-image: url(../images/bg_decorate_04.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; 
}
.point .subtitle {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
}
.point .subtitle span {
  display: inline-block;
}
.point .title {
  font-size: clamp(3rem, 3.36vw, 3.7rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 10px;
}
.point span.small {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
}
.point .cards {
  width: 100%;
  max-width: 792px;
  margin: 50px auto 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 40px;
}
.point .card {
  width: clamp(345px, 45vw, 386px);
  padding: 25px 32px;
  border: 1px solid #E2DCD2;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, .16);
  position: relative;
}
.point .card::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
	display: block;
	width: clamp(80px, 10.5vw, 90px);
	height: clamp(90px, 11.7vw, 100px);
	background-color: #6C514E;
  border-radius: 10px 0 0 0;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
.point .card-num {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho Pro',serif;
  font-size: clamp(1.2rem, 1.52vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.point .card-num span {
  display: block;
  font-size: clamp(2.1rem, 2.82vw, 2.4rem);
  margin-top: 4px;
}
.point .card-title {
  font-size: clamp(1.6rem, 2.11vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: calc(26 / 18);
  color: #6C514E;
  width: fit-content;
  margin-left: clamp(40px, 5vw, 50px);
}
.point .card-title span {
  display: inline-block;
}
.point .image-box {
  margin-top: 16px;
}
.point .card-content {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(30 / 14);
  margin-top: 18px;
}

.hakajimai {
  width: 100%;
  margin-top: 150px;
  padding: 0 20px 110px;
  display: flex;
  justify-content: center;
}
.hakajimai .container {
  width: 100%;
  max-width: 870px;
  padding: 80px 0 60px;
  margin: 0 -60px 0;
  position: relative;
}
.hakajimai .image-box.left {
  width: clamp(323px, 23.8vw, 458px);
  align-self: flex-end;
}
.hakajimai .image-box.right {
  width: clamp(285px, 18.9vw, 364px);
  align-self: flex-start;
}
.hakajimai .title {
  font-size: clamp(2.2rem, 1.75vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(40 / 28);
  text-align: center;
}
.hakajimai .content {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(35 / 16);
  text-align: center;
  margin-top: 20px;
}
.hakajimai .content span {
  display: inline-block;
}
.hakajimai .belt {
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.34;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 820px;
  margin: 17px auto 0;
  padding: 11px 10px;
  background: linear-gradient(to right, transparent 0% , #6C514E 33%, #6C514E 66%, transparent 100%);
}
.hakajimai .belt span {
  display: inline-block;
}


.contact {
  width: 100%;
  padding: 80px 20px 90px;
  background-image: url(../images/bg_contact_01.jpg);
  background-repeat: repeat;
  background-size: contain;
}
.contact .title {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #fff;
  text-align: center;
  width: 100%;
}
.contact .content {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(30 / 16);
  color: #fff;
  width: 100%;
  max-width: 810px;
  padding-top: 30px;
  margin: 17px auto 0;
  border-top: 1px solid #fff;
}
.contact .wrapper {
  display: flex;
  column-gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 0;
}
.contact .btn-container {
  width: 100%;
  padding: 32px 10px 40px;
  background-color: #fff;
  border-radius: 10px;
}
.contact .btn-title {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
}
.contact .btn-title span {
  display: inline-block;
}
.contact .phone-image {
  display: block;
  width: 100%;
  max-width: 407px;
  margin: 20px auto 0;
}
.contact .btn-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  row-gap: 10px;
  margin-top: 10px;
}
.contact .time {
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans",Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.contact .workday {
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans",Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  width: 180px;
  padding: 5px;
  background-color: #E84919;
  border-radius: 20px;
}
.contact .annotation {
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans",Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
  margin-top: 10px;
}
.contact .mail-image {
  display: block;
  width: 100%;
  max-width: 373px;
  margin: 15px auto 0;
}
.contact .phone-image:hover,
.contact .mail-image:hover {
  opacity: 0.8;
  transition: .2s;
  cursor: pointer;
}

.about {
  width: 100%;
  padding: 140px 20px 160px;
}
.about .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.about .title {
  font-size: clamp(2.2rem, 1.75vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  color: #6C514E;
  width: fit-content;
  margin: auto;
  position: relative;
}
.about .title::before {
  position: absolute;
  top: -54px;
  left: -76px;
  content: '';
  width: 76px;
  height: 84px;
  background-image: url(../images/quetion-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.about .contents {
  padding-left: 90px;
}
.about .content {
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(38 / 16);
  color: #3B2A22;
  max-width: 820px;
  margin-top: 50px;
}
.about .inner {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-top: 50px;
}
.about .inner-content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(38 / 16);
  color: #3B2A22;
  width: 100%;
  max-width: 560px;
}


.questions {
  width: 100%;
  padding: 80px 0 250px;
  background-image: url(../images/bg_questions_01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 0;
}
.questions::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(227, 221, 213, 0.7);
}
.questions .wrapper {
  width: 100%;
  max-width: 1040px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.questions .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.questions .title {
  font-size: clamp(2.4rem, 2.72vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(50 / 30);
  color: #6C514E;
  text-align: center;
  text-shadow: 
  0 0 10px #fff,
  0 5px 10px #fff,
  5px 0 10px #fff,
  0 0 10px #fff,
  0 5px 10px #fff,
  5px 0 10px #fff,
  0 0 10px #fff,
  0 5px 10px #fff,
  5px 0 10px #fff;
}
.questions .image-box {
  width: clamp(158px, 18vw, 198px);
}
.questions .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 7px;
  row-gap: 23px;
}
.questions .card {
  width: 327px;
  padding: 6px;
  border: 1px solid #FFFFFF;
  border-radius: 24px;
}
.questions .content {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: calc(28 / 16);
  text-align: center;
  width: 100%;
  padding: 23px 10px 20px;
  background-color: #fff;
  border-radius: 19px;
}
.questions .lead {
  font-size: clamp(2.6rem, 3vw, 3.3rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: clamp(34px, 5.2vw, 40px) 20px clamp(67px, 10.93vw, 84px);
  background-image: url(../images/bg_questions_02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}


.resolute {
  width: 100%;
  padding: 75px 20px 80px;
  position: relative;
  z-index: 0;
}
.resolute .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.resolute .subtitle {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(55 / 28);
  text-align: center;
  color: #474747;
}
.resolute .subtitle span {
  display: inline-block;
}
.resolute .title {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.65;
  color: #474747;
  text-align: center;
  margin-top: 15px;
}
.resolute .title span.big {
  font-size: clamp(3.4rem, 3.9vw, 4.3rem);
  font-weight: 600;
  color: #6C514E;
}
.resolute .title span.strong {
  font-size: clamp(3.4rem, 3.9vw, 4.3rem);
  font-weight: 600;
  color: #C94C62;
  position: relative;
}
.resolute .title span.strong::before {
  position: absolute;
  top: -0.7em;
  left: 0;
  content: '・・・・';
}
.resolute .container {
  width: 100%;
  margin-top: 35px;
  display: flex;
  column-gap: 54px;
}
.resolute .inner {
  flex: 1;
  max-width: 667px;
}
.resolute .attention {
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: calc(29 / 20);
  color: #fff;
  text-align: center;
  padding: 10px;
  background-color: #C94C62;
}
.resolute .content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(40 / 16);
  color: #3B2A22;
  margin-top: 25px;
}
.resolute .image-box {
  width: 208px;
}

.support {
  width: 100%;
  padding: 90px 20px 110px;
  background-color: #fff;
}
.support .title {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(50 / 28);
  color: #6C514E;
  text-align: center;
}
.support .container {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  column-gap: clamp(40px, 5.2vw, 68px);
}
.support .contents {
  flex: 1;
  max-width: 483px;
}
.support .content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(40 / 16);
  color: #3B2A22;
}
.support .link {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3B2A22;
  text-decoration: underline;
  margin-top: 20px;
}
.support .message {
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(40 / 20);
  color: #C94C62;
  margin-top: 20px;
}
.support .message span {
  display: inline-block;
}
.support .small {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3B2A22;
  margin-top: 30px;
}
.support .image-box {
  width: 44.9%;
}


.flow {
  width: 100%;
  padding: 100px 20px;
  background-image: url(../images/bg_flow_01.jpg);
  background-repeat: repeat;
  background-size: contain;
}
.flow .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 75px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
.flow .title {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.028em;
  color: #6C514E;
  text-align: center;
}
.flow .steps {
  width: 100%;
  max-width: 724px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.flow .step {
  width: 100%;
  margin: auto;
  display: flex;
  column-gap: 16px;
}
.flow .num {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: calc(17 / 12);
  color: #fff;
  text-align: center;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6C514E;
  border-radius: 50%;
}
.flow .inner {
  width: 100%;
  flex: 1;
}
.flow .flow-title {
  font-size: clamp(1.5rem, 1.63vw, 1.8rem);
  font-weight: 500;
  color: #6C514E;
}
.flow .flow-content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #282828;
  width: 100%;
  padding: 13px 10px;
  margin-top: 16px;
  background-color: #F7F5F0;
}
.flow .flow-content span {
  font-size: 1rem;
  margin-left: -1em;
}
.flow .annotation {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(30 / 16);
  text-align: center;
  color: #C94C62;
  width: 100%;
  max-width: 724px;
  margin: 50px auto 0;
  padding: 21px 10px;
  border: 1px solid #C94C62;
  border-radius: 10px;
}


.reviews {
  width: 100%;
  padding: 100px 20px 200px;
  background-image: url(../images/bg_reviews_01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.reviews::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  content: '';
  width: clamp(222px, 53.3vw, 694px);
  height: clamp(60px, 14.6vw, 190px);
  background-image: url(../images/bg_decorate_05.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  content: '';
  width: clamp(296px, 71.2vw, 926px);
  height: clamp(78px, 18.84vw, 245px);
  background-image: url(../images/bg_decorate_06.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.reviews .title {
  font-size: clamp(2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
.reviews .content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: calc(30 / 16);
  text-align: center;
  margin-top: 30px;
}
.reviews .cards {
  width: 100%;
  max-width: 1000px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.reviews .card {
  width: 100%;
  max-width: 805px;
  padding: 30px 50px 50px 30px;
  background-color: #fff;
  border: 1px solid #E3DDD5;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  display: flex;
  column-gap: 17px;
}
.reviews .card:nth-of-type(2n) {
  align-self: flex-end;
}
.reviews .review-icon {
  width: 98px;
  height: 98px;
}
.reviews .inner {
  width: 100%;
  flex: 1;
  padding-top: 15px;
}
.reviews .review-title {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: calc(36 / 22);
  color: #6C514E;  
}
.reviews .review-content {
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  font-weight: 400;
  line-height: calc(35 / 16);
  color: #333;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #D6DBDB;
}

.inquiry .title {
  font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho Pro',serif;
  font-size: clamp(3.2rem, 3.63vw, 4rem);
  font-weight: 600;
  line-height: calc(80 / 40);
  color: #ffffff;
  text-align: center;
  padding: 96px 10px;
  background-image: url(../images/bg_inquiry_01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.inquiry .submit input {
  border: none;
  background: none;
}
.inquiry .submit input[type="email"] {
  width: 400px;
}
.entryform {
  width: 100%;
  background-color: #fff;
}
.main-entryform-001 {
  padding: 60px 20px 0;
}
.main-entryform-001 p.text-001 {
  font-size: clamp(1.6rem, 1.63vw, 1.8rem);
  font-weight: 500;;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 30px;
}
.entryform table {
  font-family: 'Noto Sans JP', sans-serif;
}
.entryform p {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 50px;
}
.entryform label.error {
  position: absolute;
  margin: -52px 0px 0px 0px;
  display: block;
  background-color: #ee0000;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 15px;
  border-radius: 5px;
  -moz-opacity: 0.60;
  -khtml-opacity: 0.60;
  opacity: 0.60;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=60);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter:alpha(opacity=60);
}
.entryform label.error:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18px;
  border: 5px solid transparent;
  border-top: 5px solid #ee0000;
}
.entryform input.error {
  border: solid 1px #ff7777;
}
.entryform dl {
  margin: 0px;
  padding: 0px;
  display: flex;
  align-items: center;
}
.entryform dl dt {
  float: left;
}
.entryform dl dt:nth-of-type(2) {
  padding: 8px 0px 0px 15px;
  padding: 0px 0px 0px 15px;
  padding: 0px 0px 0px 1em;
}
.entryform dl dd {
  padding: 0px;
  margin: 0px 0px 0px 8px;
  margin: 0px 0px 0px 0.5em;
  float: left;
}
.entryform textarea {
  width: 100%;
  max-width: 480px;
}
.entryform textarea::placeholder {
  color: #9D9D9D;
}
.entryform table {
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 0px;
  border: solid 1px #aaaaaa;
  border-collapse: collapse;
}
.entryform table td:nth-of-type(odd) {
  width: 256px;
  padding: 16px 16px;
  border-right: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  background-color: #E3E3E3;
  vertical-align: middle;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.entryform table td:nth-of-type(even) {
  padding: 16px 16px;
  background-color: #F5F5F5;
  border-bottom: solid 1px #ffffff;
  font-size: clamp(1.5rem, 1.6vw, 1.6rem);
  line-height: 2.4;
}
.entryform table td.bold {
  font-weight: 700;
}
.entryform table td.bold label {
  font-weight: 500;
}
.entryform table tr:last-of-type td {
  border-bottom: solid 1px #aaaaaa;
}
.entryform span {
  padding: 5px 9px;
  font-size: 16px;
  color: #ffffff;
  background-color: #D04343;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  vertical-align: middle;
}
.entryform input,
.entryform select {
  padding: 5px 8px;
  margin: 0 0.5em;
  font-size: clamp(1.5rem, 1.6vw, 1.6rem);
  border: solid 1px #dddddd;
}
.entryform textarea {
  padding: 5px 8px;
  font-size: clamp(1.5rem, 1.6vw, 1.6rem);
}
.entryform small {
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  font-weight: 500;
}
.entryform .annotation-box {
  width: 100%;
  max-width: 540px;
  margin: 50px auto 0;
}
.entryform .annotation {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 1.3;
  text-align: start;
}
.entryform .annotation.last {
  margin-top: 8px;
}
.entryform .submit {
  max-width: 384px;
  margin: 50px auto 0;
}
.entryform .submit input {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  background-color: #30A337;
  border-radius: 41px;
  width: 100%;
  height: 82px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
}
.entryform .submit input:hover {
  cursor: pointer;
  background-color: #3ac343;
}



.present {
  width: 100%;
  background-color: #fff;
  padding: 80px 20px 120px;
}
.present .wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .16);
  background-color: #ffffff;
}
.present .title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 2.18vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  padding: 24px 10px;
  background-color: #6C514E;
}
.present .container {
  width: 100%;
  padding: 0 20px 30px;
}
.present .subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.38;
  text-align: center;
  margin: 25px auto 0;
}
.present .subtitle span.blue {
  color: #2B50B5;
}
.present .phone-image {
  display: block;
  max-width: 412px;
  margin: 16px auto 0;
}
.present .btn-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: 6px;
}
.present .time {
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans",Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.present .workday {
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans",Meiryo, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  width: 180px;
  padding: 5px;
  background-color: #E84919;
  border-radius: 20px;
}
.present .annotation {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 1.45vw, 1.6rem);
  color: #2B50B5;
  text-align: center;
  width: 100%;
  max-width: 508px;
  margin: 20px auto 0;
  padding: 6px;
  background-color: #F8F8F8;
  border: 1px solid #2B50B5;
  border-radius: 23px;
}
.present .annotation span {
  display: inline-block;
}

/* footer */
#footer {
  width: 100%;
  background-image: url(../images/bg_footer_01.jpg);
  background-repeat: repeat;
  background-size: contain;
  font-family: '游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', sans-serif;
  color: #FFFFFF;
}
#footer .top {
  width: 100%;
  padding: 50px 20px 75px;
}
#footer .wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
#footer .footer-logo {
  width: 260px;
}
#footer .box {
  width: 273px;
  padding: 22px 12px 24px 24px;
  margin-top: 32px;
  border: 1px solid #fff;
}
#footer .company {
  font-size: 1.4rem;
  font-weight: 700;
}
#footer ul {
  margin-top: 11px;
  display: flex;
  flex-direction: column;
  row-gap: 11px;
}
#footer ul li {
  font-size: 1.4rem;
  font-weight: 500;
}
#footer .container.right {
  display: flex;
  justify-content: space-between;
  column-gap: 70px;
}
#footer .container.right ul {
  display: flex;
  flex-direction: column;
  row-gap: 23px;
}
#footer .container.right ul li {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;  
}
#footer .container.right ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #ffffff;
}
#footer .container.right ul li::before {
  display: inline-block;
  content: '>';
  margin-right: 1.5em;
}
#footer .bottom {
  width: 100%;
  padding: 16px 10px 32px;
  border-top: 1px solid #867877;
}
#footer .copyright {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#footer .copyright a {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
#footer .copyright span {
  display: inline-block;
}


/* thanks */
#thanks #top-slider .mask {
  position: absolute;
  width: 100%;
  background-color: #1F2C5C;
}
#thanks #top-slider .logo {
  width: 150px;
  margin: 10px auto 0;
}
#thanks .bx-wrapper {
  height: 220px;
}
#thanks #first {
  padding-top: 190px;
}
#thanks #first .text_001 {
  text-align: center;
}
/*-- privacy --*/
.privacy {
  width: 100%;
  padding: 220px 20px;
}
.privacy h2 {
  font-size: clamp(2.2rem, 2.54vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}
.privacy .contents {
  width: 100%;
  max-width: 1000px;
  margin: 120px auto 0;
}
.privacy h3 {
  font-size: clamp(1.6rem, 1.63vw, 1.8rem);
  font-weight: 700;
  border-bottom: solid 1px #303030;
  padding-bottom: 7px;
  margin-top: 50px;
}
.privacy p {
  font-size: clamp(1.6rem, 1.63vw, 1.8rem);
  font-weight: 500;
  line-height: calc(41 / 18);
  margin-top: 20px;
}
.privacy ul li {
  font-size: clamp(1.6rem, 1.63vw, 1.8rem);
  font-weight: 500;
  line-height: calc(41 / 18);
  list-style: disc inside;
}