:root {
  --red: #e7141b;
  --brown: #a57f3d;
  --beige: #e9dfcf;
  --lightbeige: #f2ece3;
  --gray: #595757;
  --lightgray: #eeebe7;
}

body {
  color: var(--gray);
  font-size: 14px;
  font-family: "BIZ UDPGothic", sans-serif;
  background: url(../img/bg-dot-pc.png) left 650px/100% no-repeat #e5e1dc;
  background-attachment: fixed;
}

p {
  line-height: 1.6;
}

picture {
  display: block;
}

img {
  display: block;
  width: 100%;
}

a {
  display: block;
  transition: all 0.2s ease;
}

@media (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default; 
  }
}


a:hover {
  opacity: 0.8;
}

mark {
  background: linear-gradient(transparent 40%, #fff 40%);
  color: inherit;
}

.view-sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .view-sp {
    display: block !important;
  }

  .view-pc {
    display: none !important;
  }
}

.inner {
  width: 85%;
  margin: auto;
}

/* ボタン */
.btn {
  position: relative;
}


.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  vertical-align: middle;
  /* transition: all 0.2s ease; */
}

.btn::before {
  left: 16%;
  width: 24px;
}

.btn.--line::before {
  height: 24px;
  background: url(../img/ico-line.svg) center/cover no-repeat;
  animation: icon-knock 3s infinite;
  display: inline-block;
}

@keyframes icon-knock {
  0%   { transform: translateY(-50%); }
  70%  { transform: translateY(-50%); }

  /* トン */
  75%  { transform: translateY(-60%); }
  80%  { transform: translateY(-50%); }

  /* トン */
  85%  { transform: translateY(-60%); }
  90%  { transform: translateY(-50%); }

  /* 余韻 */
  100% { transform: translateY(-50%); }
}

.btn.--mail::before {
  height: 19px;
  background: url(../img/ico-mail.svg) center/cover no-repeat;
}


.btn:hover::before,
.btn:hover::after {
  opacity: .6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.btn::after {
  right: 5%;
  height: 20px;
  width: 20px;
  background: url(../img/ico-arrow.svg) center/cover no-repeat;
}

.btn-link {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  border-radius: 10px;
  box-shadow: #dedbd8 0 0 8px 0;
}

.btn-link:hover {
  opacity: 1;
  color: rgba(89,87,87,.8);
}


.btn + .btn {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .btn::before {
    left: 90px;
  }
}

.contents {
  width: min(100%, 480px);
  margin: auto;
  background: #fff;
}

/* CTA電話 */
.tel {
  position: relative;
  margin-top: 30px;
  padding: 20px 0 13px;
  text-align: center;
  border-radius: 10px;
  border: 1px var(--gray) solid;
}

.tel-ttl {
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  letter-spacing: 0.1em;
  background: var(--lightgray);
}

.tel-ttl strong {
  font-size: 20px;
}

.tel-num {
  font-weight: bold;
}

.tel-num-spn {
  font-size: 26px;
  display: inline-block;
}
.tel-num-spn:hover {
  opacity: 1;
}

/* スライダー */
.slider {
  margin-top: 25px;
}

.slider-item {
  margin-right: 10px;
}

.slider-img {
  border-radius: 10px;
  width: 140px;
}

/* 波線 */
.wave {
  background: var(--lightgray);
  position: relative;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: url(../img/bg-faq-wave.png) center/contain repeat-x;
  z-index: 10;
}

.wave::before {
  bottom: 99.8%;
}

.wave::after {
  top: 99.8%;
  transform: rotate(180deg);
}

/*-------------------------
header
-------------------------*/
.hdr {
  position: fixed;
  top: 0;
  width: min(100%, 480px);
  background: #fff;
  z-index: 50;
  box-shadow: #dedcd8 2px 2px 5px 0;
}
.hdr-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  padding: 17.5px 0;
}

.hdr-left {
  display: flex;
  align-items: center;
  flex: 0 0 76%;
}

.hdr-logo {
  flex: 0 0 60%;
  margin-right: 6%;
}

.hdr-text {
  font-size: 11px;
  padding-left: 6%;
  line-height: 1.3;
  letter-spacing: 0.1em;
  border-left: 1px solid #e2e2e2;
}

/* ハンバーガー本体 */
.hdr-hamb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

/* 3本線 */
.hdr-icon {
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hdr-icon-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--red);
  transition: 0.3s ease;
}

/* MENU文字 */
.hdr-menu-text {
  margin-top: 2px;
  color: var(--red);
  font-size: 10px;
}

/* ×に変形 */
.hdr-hamb.active .hdr-icon-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hdr-hamb.active .hdr-icon-line:nth-child(2) {
  opacity: 0;
}

.hdr-hamb.active .hdr-icon-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ドロワー */
.hdr-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  padding: min(15vw, 80px) 8% 0;
  font-size: 16px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  background: var(--lightgray);
  z-index: 30;
}

.hdr-drawer.open {
  right: 0;
}

.hdr-drawer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hdr-drawer-item {
  position: relative;
}

.hdr-drawer-item + .hdr-drawer-item {
  border-top: 1px solid #dedcd8;
}

.hdr-drawer-item::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  background: url(../img/ico-arrow-nav.svg) center/cover no-repeat;
}

.hdr-drawer-link {
  display: block;
  padding: 16px 22px;
  font-weight: bold;
}

.hdr-cta {
  margin-top: 15px;
}

@media screen and (min-width: 1280px) {
  .hdr {
    background: transparent;
    box-shadow: none;
    top: 40px;
    left: 40px;
  }

  .hdr-inner {
    flex-direction: column;
    align-items: flex-start;
    width: 258px;
    margin: 0;
    padding: 0;
  }

  .hdr-left {
    display: block;
    flex: auto;
    width: 100%;
  }

  .hdr-text {
    margin-top: 20px;
    padding: 10px 0;
    font-size: 17px;
    text-align: center;
    font-weight: bold;
    background: #fff;
    border-radius: 30px;
  }

  .hdr-hamb {
    display: none;
  }
  .hdr-drawer {
    position: static;
    height: auto;
    margin-top: 20px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .hdr-drawer-list {
    width: 185px;
    margin-left: auto;
    font-size: 18px;
    position: relative;
  }
  .hdr-drawer-list::after {
    position: absolute;
    top: 30px;
    left: -28px;
    content: "";
    width: 1px;
    height: 310px;
    border-left: dotted 1px var(--brown);
  }
  .hdr-drawer-item + .hdr-drawer-item {
    border-top: none;
  }

  .hdr-drawer-item::after {
    content: "";
    right: auto;
    left: -2em;
    background: var(--brown);
    border-radius: 50px;
  }
  .hdr-drawer-link {
    padding: 20px 0;
  }
  .hdr-cta {
    display: none;
  }
}

main {
  margin-top: 70px;
}
.cta-pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  main {
    margin-top: 0;
  }
  .cta.cta-pc {
    display: block;
    position: fixed;
    width: min(29vw,415px);
    padding: 0 0 30px;
    top: 0;
    right: 0;
    border-radius: 50px 0 0 50px;
    background: none;

    .cta-btn {
      width: 315px;
      margin: auto;
    }
    .btn::before {
      left: 45px;
    }
  }

  .cta.cta-pc::after {
    content: '';
    width: min(29vw, 415px);
    height: 447px;
    position: absolute;
    top: 25px;
    z-index: -1;
    background: var(--lightgray) url(../img/bg-dto-cta.png) center top / 100% no-repeat;
    border-radius: 50px 0 0 50px;
  }
}

/*-------------------------
fv
-------------------------*/
.fv {
  padding-top: 20px;
  height: 65vh;
  background: url(../img/bg-mv.jpg) left bottom/cover no-repeat;
}

.fv-copy {
  font-size: 14px;
  text-align: center;
}

.fv-copy-spn {
  position: relative;
}

.fv-copy-spn::before,
.fv-copy-spn::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  top: 3px;
  background: #707070;
}
.fv-copy-spn::before {
  transform: rotate(335deg);
  left: -15px;
}
.fv-copy-spn::after {
  transform: rotate(25deg);
  right: -15px;
}
.fv-copy strong {
  font-size: 16px;
}

.fv-ttl {
  width: 60%;
  margin: 3vw auto 0;
}

@media screen and (min-width: 1024px) {
  .fv {
    height: 600px;
  }
}

/*-------------------------
point
-------------------------*/
.point {
  padding: 25px 0;
  background:
    url("../img/bg-dot.png") center / 100%,
    linear-gradient(to bottom, #f0ebe9, #ffffff);
}

.point-ttl {
  text-align: center;
  color: var(--red);
  font-size: 13px;
  position: relative;
  z-index: 10;
}

.point-ttl-spn {
  position: relative;
}

.point-ttl-spn::before,
.point-ttl-spn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  border-bottom: dotted 1px var(--red);
}

.point-ttl-spn::before {
  left: -50px;
}

.point-ttl-spn::after {
  right: -50px;
}

.point-list {
  width: 260px;
  margin: 15px auto 0;
}

.point-item {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.point-item + .point-item {
  margin-top: 8px;
}

.point-check {
  width: 25px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

/*-------------------------
about
-------------------------*/
.about {
  padding: 35px 0 50px;
}

.about-ttl {
  width: 44px;
  margin: auto;
}
.about-text {
  margin-top: 20px;
  text-align: center;
}
.about-text strong {
  font-size: 18px;
}

.about-list {
  position: relative;
  width: min(85%, 280px);
  margin: 25px auto 0;
}

.about-list::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 122px;
  background: url(../img/img-about.png) center/cover no-repeat;
  display: inline-block;
}

.about-item + .about-item {
  margin-top: 10px;
}

.about-item-span {
  display: inline-block;
  padding: 10px 15px;
  background: var(--beige);
  border-radius: 50px;
}

.about-item-span.--02 {
  background: var(--lightbeige);
}

.about-body {
  margin-top: 30px;
}

.about-body-txt + .about-body-txt {
  margin-top: 10px;
}

.about-pic {
  width: 85%;
  margin: 35px auto 0;
}

.about-text02 {
  margin-top: 25px;
  text-align: center;
}

.about-text02-sub {
  font-size: 20px;
}

/*-------------------------
support
-------------------------*/
.support {
  padding: 50px 0;
  background: var(--lightgray);
  position: relative;
}

.support-inner.--02 {
  margin: 20px auto 0;
}

/* .support::before,
.support::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background: url(../img/bg-faq-wave.png) center left / contain repeat-x;
  color: inherit;
}

.support::before {
  bottom: 100%;
}

.support::after {
  top: 100%;
  transform: rotate(180deg);
} */

.support-ttl {
  width: 114px;
  margin: auto;
}

.support-list {
  margin-top: 35px;
}
.support-item {
  padding: 3.5%;
  text-align: center;
  border-radius: 30px;
  background: #fff;
  box-shadow: #dedbd8 0 0 2px 0;
}

.support-item + .support-item {
  margin-top: 15px;
}

.support-btn {
  margin-top: 30px;
}

/*-------------------------
voice
-------------------------*/
.voice {
  padding: 50px 0;
}

.voice-ttl {
  width: 140px;
  margin: auto;
}

.voice-item {
  margin-top: 30px;
  padding: 25px;
  background: #f2e4d6 url(../img/bg-dot-voice.png) center 10% / contain no-repeat;
  border-radius: 15px;
}

.voice-item.--02 {
  background: #e4ead3 url(../img/bg-dot-voice.png) center 10% / contain no-repeat;
}

.voice-item.--03 {
  background: #f4f0d1 url(../img/bg-dot-voice.png) center 10% / contain no-repeat;
}

.voice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.voice-pic {
  flex: 0 0 45%;
}

.voice-text {
  flex: 0 0 50%;
}

.voice-service {
  margin-top: 3px;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  background: var(--brown);
  border-radius: 30px;
}
.voice-people {
  margin-top: 10px;
  line-height: 1.5;
}

.voice-item-ttl {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.voice-hr {
  margin: 10px 0;
  border: none;
  border-top: 1px dotted #989898;
}

.voice-body {
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.voice-body-sub {
  position: relative;
}

/*-------------------------
cta
-------------------------*/
.cta {
  padding: 20px 0 30px;
  background: var(--lightgray) url(../img/bg-dto-cta.png) center 10% /100% no-repeat;
}

.cta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-header-l {
  flex: 0 0 47%;
}

.cta-header-r {
  flex: 0 0 48%;
  line-height: 1.7;
}

.cta-btn {
  margin-top: 15px;
}

/*-------------------------
flow
-------------------------*/
.flow {
  padding: 55px 0 190px;
  position: relative;

  .btn {
    margin-top: 10px;
  }
  .btn::before {
    left: 15px;
  }
  .btn-link {
    padding: 15px 0 15px 50px;
    font-size: 14px;
    text-align: left;
    line-height: 1.3;
  }
}

.flow-ttl {
  width: 134px;
  margin: auto;
}

.flow-list {
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.flow-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12.5%;
  width: 1px;
  height: 100%;
  border-left: dotted 1px var(--gray);
  z-index: -1;
}
.flow-item {
  display: flex;
  justify-content: space-between;
}

.flow-item + .flow-item {
  margin-top: 30px;
}

.flow-item-pic {
  flex: 0 0 25%;

  img {
    border: solid 4px #fff;
  }
}

.flow-r {
  flex: 0 0 70%;
}

.flow-r-ttl {
  font-size: 16px;
  font-weight: bold;
}

.flow-r-ttl-num {
  margin-right: 10px;
  color: var(--red);
}

.flow-body {
  margin-top: 5px;
}

.flow-pic {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 275px;
  margin: 25px auto 0;
  z-index: 20;
}

/*-------------------------
faq
-------------------------*/
.faq {
  padding: 115px 0 50px;

  .btn-link {
    padding-left: 8%;
    text-align: left;
    line-height: 1.4;
  }
}

.faq-ttl {
  width: 116px;
  margin: auto;
}

.faq-list {
  margin-top: 5px;
}

.faq-q,
.faq-a {
  display: flex;
  align-items: center;
  gap: 5%;
}

.faq-q {
  font-weight: bold;
}

.faq-a {
  margin-top: 10px;
  line-height: 1.6;
}

.faq-q-icon,
.faq-a-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
}

.faq-q-icon {
  background: #fff;
}

.faq-a-icon {
  color: #fff;
  background: var(--brown);
}

.faq-list-inner {
  padding: 30px 0;
}

.faq-list-inner + .faq-list-inner {
  border-top: dotted 1px var(--gray);
}

/*-------------------------
message
-------------------------*/
.message {
  padding: 30% 0 50px;
  background: url(../img/img-message.jpg) top center / 100% no-repeat;
  position: relative;
}

.message-copy {
  display: inline;
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 2;
  background: #fff;
}

.message-body-spn {
  color: var(--brown);
  padding-left: 5px;
}

.message-ttl {
  width: 86px;
  margin-top: 45%;
}

.message-body {
  margin-top: 12px;
  line-height: 1.7;
}

.message-image {
  margin-top: 25px;
}

.message-image + .message-body {
  margin-top: 25px;
}

.message-president {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  position: relative;
  z-index: 10;
  position: relative;
}

.message-president::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -8%;
  width: min(99vw, 480px);
  height: 90%;
  background: url(../img/bg-dot-message.png) center bottom/100% no-repeat;
  z-index: -1;
}

.message-president-l {
  flex: 0 0 50%;
}

.message-president-r {
  text-align: center;
  flex: 0 0 50%;
}

.message-logo {
  width: 140px;
  margin: 0 auto 10px;
}

.message-name-sub {
  margin-left: 10px;
  font-size: 20px;
  letter-spacing: 0.01em;
  vertical-align: baseline;
}

/*-------------------------
insta
-------------------------*/
.insta {
  .btn {
    width: 267px;
    margin: auto;
  }

  .btn::before {
    width: 40px;
    height: 40px;
    left: 5%;
    background: url(../img/ico-instagram.svg) center/cover no-repeat;
  }

  .btn::after {
    content: none;
  }

  .btn-link {
    padding: 20px 0 20px 40px;
    font-size: 14px;
    font-weight: normal;
  }
}

.insta-inner {
  padding: 30px 0 30px;
  background: var(--lightgray);
  border-radius: 15px;
}

.insta-ttl {
  width: 267px;
  margin: auto;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  position: relative;
}

.insta-ttl::before,
.insta-ttl::after {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 1px;
  height: 28px;
  border-left: dotted 1px var(--gray);
}

.insta-ttl::before {
  left: -5px;
  transform: rotate(-15deg);
}

.insta-ttl::after {
  right: -5px;
  transform: rotate(15deg);
}

.insta-body {
  width: 267px;
  margin: 10px auto;
  line-height: 1.7;
}

.insta-slider-item {
  width: 105px;
  margin-right: 5px;
}

.insta-slider-img {
  width: 105px;
}

/*-------------------------
company
-------------------------*/
.company {
  padding: 50px 0 0;
}

.company-ttl {
  width: 106px;
  margin: auto;
}

.company-name {
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
}

.company-url {
  margin-top: 10px;
}

.company-list-inner {
  display: flex;
  padding: 5px;
  line-height: 1.7;
}

.company-list {
  margin-top: 10px;
}

.company-dt {
  flex: 0 0 26%;
}

.company-list-inner + .company-list-inner {
  border-top: dotted 1px var(--gray);
}

.company-map {
  margin-top: 15px;
}

/*-------------------------
footer
-------------------------*/
.ftr {
  padding-bottom: 20px;
  margin-bottom: 50px;
  background: var(--lightgray);

  .cta {
    padding: 20px 0 50px;
  }
  .cta::before,
  .cta::after {
    content: none;
  }
}

.ftr-copy {
  text-align: center;
}

.ftr-copy small {
  font-size: 12px;
}

@media screen and (min-width: 1024px) {
  .ftr {
    margin-bottom: 0;
  }
}

/*-------------------------
fix
-------------------------*/
.fix {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex !important;
  align-items: center;
  height: 50px;
  z-index: 20;
}

.fix-l,
.fix-c {
  flex: 0 0 30%;
}

.fix-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7%;
  height: 50px;
}

.fix-link.--line {
  background: #b8e397;
}

.fix-link.--mail {
  background: var(--beige);
}

.fix-link.--tel {
  gap: 3%;
  background: var(--red);
}

.fix-pic {
  flex: 0 0 24px;
}

.fix-txt {
  font-size: 12px;
  line-height: 1.3;

  strong {
    font-size: 14px;
  }
}

.fix-r {
  flex: 0 0 40%;
}

.fix-l-txt {
  color: #fff;
}

.fix-l-time {
  font-size: 10px;
  line-height: 1;
}


.fix-pic.--line {
  animation: fix-icon-knock 3s infinite;
}
@keyframes fix-icon-knock {
  /* 静止 */
  0%   { transform: translateY(0); }
  70%  { transform: translateY(0); }

  /* トン */
  75%  { transform: translateY(-3px); }
  80%  { transform: translateY(0); }

  /* トン */
  85%  { transform: translateY(-3px); }
  90%  { transform: translateY(0); }

  /* 余韻 */
  100% { transform: translateY(0); }
}


@media screen and (min-width: 769px) {
  .fix.view-sp {
    display: none !important;
  }
}

/* アニメーション */
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}