@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url("../fonts/ZenKakuGothicNew-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url("../fonts/ZenKakuGothicNew-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url("../fonts/ZenKakuGothicNew-Black.ttf");
  font-display: swap;
}
@font-face {
  font-family: "KiwiMaru-Medium";
  src: url("../fonts/KiwiMaru-Medium.ttf");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/*	com parts  PC
------------------------------------ */
.sns-none {
  display: none !important;
}

.over {
  overflow: hidden;
}

.com-ib {
  display: inline-block;
}

.spxs-only {
  display: none;
}
@media screen and (max-width: 390px) {
  .spxs-only {
    display: inherit;
  }
}

.f26 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .f26 {
    font-size: 1.5rem;
  }
}

.pre {
  white-space: pre-line;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .nowrap {
    white-space: nowrap;
  }
}
.no-sb {
  margin: 50px auto 0;
}

.anchor-mp {
  margin: -90px auto 0;
  padding-top: 90px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin: 30px 0 0;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 768px) {
  .com-pd {
    padding: 90px 0 115px;
  }
}

/*  共通パーツ
------------------------------------ */
.com-check li {
  padding-left: 25px;
  background: url(../img/about/howto-check.png) no-repeat left 10px;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .com-check li {
    font-size: 1.5rem;
  }
}
.com-check li:nth-of-type(n+2) {
  margin-top: 13px;
}

.com-voice-item {
  padding: 30px 30px 35px;
}
.com-voice-item:nth-of-type(n+2) {
  margin: 65px auto 0;
}
.com-voice-flx {
  display: flex;
  align-items: center;
}
.com-voice-flx li {
  line-height: 1.5;
}
.com-voice-flx li:nth-of-type(n+2) {
  margin-left: 21px;
  padding-left: 15px;
  border-left: 1px solid #d9d9d9;
}
.com-voice-name {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .com-voice-name {
    font-size: 1.5rem;
  }
}
.com-voice-tag {
  display: flex;
  align-items: center;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .com-voice-tag {
    font-size: 1.5rem;
  }
}
.com-voice-tag-txt {
  width: 85px;
  height: 30px;
  margin-right: 10px;
  background: #f27c48;
  border-radius: 5px;
  text-align: center;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  color: #fff;
  flex-shrink: 0;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .com-voice-tag-txt {
    font-size: 1.5rem;
  }
}
.com-voice-ttl {
  margin-top: 3px;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  border-bottom: 2px solid #442d0b;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .com-voice-ttl {
    font-size: 1.5rem;
  }
}
.com-voice-txt {
  margin-top: 24px;
  font-family: "ZenKakuGothicNew-Regular", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .com-voice-txt {
    font-size: 1.5rem;
  }
}

.com-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 5px 5px #ffe238;
}
.com-box02 {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #ffe238;
}

.news-post {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.news-post-item {
  width: 100%;
  max-width: 330px;
}
@media screen and (min-width: 768px) {
  .news-post-item:not(:nth-of-type(3n-2)) {
    margin-left: 45px;
  }
  .news-post-item:nth-of-type(n+4) {
    margin-top: 40px;
  }
}
.news-post-link {
  display: block;
}
@media screen and (min-width: 768px) {
  .news-post-link:hover img {
    width: 110%;
    height: 110%;
  }
}
.news-post-img {
  width: 100%;
  height: 0;
  padding-top: 72.7%;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}
.news-post-flx {
  margin: 15px auto 0;
}
.news-post-time, .news-post-tag-txt {
  display: inline-block;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: #442d0b;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .news-post-time, .news-post-tag-txt {
    font-size: 1.5rem;
  }
}
.news-post-time {
  flex-shrink: 0;
}
.news-post-tag {
  display: flex;
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid #442d0b;
  flex-wrap: wrap;
}
.news-post-tag li:nth-of-type(n+2)::before {
  content: ",";
}
.news-post-ttl {
  margin-top: 5px;
  font-family: "ZenKakuGothicNew-Regular", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news-post-ttl {
    font-size: 1.5rem;
  }
}

.com-tag {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 0;
  flex-wrap: wrap;
}
.com-tag-item {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .com-tag-item:nth-of-type(n+4) {
    margin-top: 30px;
  }
  .com-tag-item:not(:nth-of-type(3n-2)) {
    margin-left: 60px;
  }
}
.com-tag-link {
  display: flex;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 14.5px 50px;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
}

/* =========================================

  main layout  all

========================================= */
/* top-worries  PC
------------------------------------ */
#top-worries .worries-bg {
  background: url(../img/top/worries-ico-lg.png) no-repeat calc(50% - 465px) bottom #ffe238;
  position: relative;
}
#top-worries .worries-bg::before, #top-worries .worries-bg::after {
  content: "";
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
}
#top-worries .worries-bg::before {
  width: 100%;
  height: 50px;
  background: url(../img/top/worries-wave.png) no-repeat center bottom/100% 100%;
  bottom: -50px;
}
#top-worries .worries-bg::after {
  width: 560px;
  height: 120px;
  background: url(../img/top/worries-arw.png) no-repeat center/contain;
  bottom: -84px;
}
#top-worries .worries-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #top-worries .worries-ttl-ja {
    font-size: 2.4rem;
  }
}
#top-worries .worries-list {
  display: flex;
  margin: 88px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
#top-worries .worries-list-item {
  width: 100%;
  max-width: 340px;
  height: 200px;
  padding-top: 110px;
  background: #fbf8f2;
  border-radius: 20px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  #top-worries .worries-list-item:not(:nth-of-type(3n-2)) {
    margin-left: 29px;
  }
  #top-worries .worries-list-item:nth-of-type(n+4) {
    margin-top: 82px;
  }
  #top-worries .worries-list-item:last-of-type {
    padding-top: 130px;
  }
}
#top-worries .worries-list-ico {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}
#top-worries .worries-list-ico01 {
  top: -34px;
}
#top-worries .worries-list-ico02 {
  top: -53px;
}
#top-worries .worries-list-ico03 {
  top: -53px;
}
#top-worries .worries-list-ico04 {
  top: -40px;
}
#top-worries .worries-list-ico05 {
  top: -40px;
}
#top-worries .worries-list-ttl {
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #top-worries .worries-list-ttl {
    font-size: 1.5rem;
  }
}
#top-worries .worries-list-ttl .sm {
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #top-worries .worries-list-ttl .sm {
    font-size: 1.5rem;
  }
}
#top-worries .worries-txt-box {
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  #top-worries .worries-txt-box {
    text-align: center;
  }
}
#top-worries .worries-txt-box p {
  font-size: 1.8rem;
  line-height: 1.88;
}
@media screen and (max-width: 768px) {
  #top-worries .worries-txt-box p {
    font-size: 1.5rem;
  }
}
#top-worries .worries-btn {
  margin: 35px auto 0;
}

/* top-reason  PC
------------------------------------ */
#top-reason .reason-list {
  display: flex;
  margin: 70px auto 0;
  justify-content: space-between;
  align-items: flex-start;
}
#top-reason .reason-list-item {
  width: 100%;
  max-width: 340px;
}
#top-reason .reason-list-ttl {
  display: flex;
  height: 110px;
  border-radius: 999px;
  background: #ffe238;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
#top-reason .reason-list-ttl::before {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #ffe238 transparent transparent transparent;
  border-width: 16px 12px 0px 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
}
#top-reason .reason-list-ttl-num {
  width: 61px;
  height: 51px;
  margin: auto;
  background: url(../img/top/reason-num.png) no-repeat center top/contain;
  text-align: center;
  padding-top: 15px;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: -37px;
  right: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-ttl-num {
    font-size: 1.5rem;
  }
}
#top-reason .reason-list-ttl-txt {
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-ttl-txt {
    font-size: 1.5rem;
  }
}
#top-reason .reason-list-ttl-txt .lg {
  font-size: 3.2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-ttl-txt .lg {
    font-size: 1.6rem;
  }
}
#top-reason .reason-list-ttl-txt .sm {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-list-ttl-txt .sm {
    font-size: 1.5rem;
  }
}
#top-reason .reason-list-ico {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}
#top-reason .reason-list-txt {
  margin: 23px auto 0;
  text-align: center;
}
#top-reason .reason-box {
  max-width: 685px;
  margin: 110px auto 0;
  padding: 65px 0 41px;
  position: relative;
}
#top-reason .reason-box-ttl {
  max-width: 580px;
  margin: auto;
  padding: 13px 49px;
  background: #ffe238;
  border-radius: 999px;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0;
  line-height: 1.5;
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  #top-reason .reason-box-ttl {
    font-size: 1.6rem;
  }
}
#top-reason .reason-box-ttl::before {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #ffe238 transparent transparent transparent;
  border-width: 16px 12px 0px 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
}
#top-reason .reason-box-txt {
  text-align: center;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
}
#top-reason .reason-box-btn {
  max-width: 260px;
  margin: 22px auto 0;
  background-position: 17px center;
  padding-left: 10px;
}
#top-reason .reason-box-ico {
  position: absolute;
  right: -92px;
  bottom: -21px;
}

/* top-case  PC
------------------------------------ */
#top-case .case-bg {
  background: #fcf1ba;
}
#top-case .case-list {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
}
#top-case .case-list-item {
  width: 100%;
  max-width: 340px;
}
#top-case .case-list-item:nth-of-type(n+2) {
  margin-left: 30px;
}
#top-case .case-list-link {
  display: block;
}
#top-case .case-list-img {
  width: 100%;
  height: 0;
  padding-top: 129%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
#top-case .case-list-ttl {
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #top-case .case-list-ttl {
    font-size: 1.5rem;
  }
}
#top-case .case-txt {
  margin: 60px auto 0;
}
@media screen and (min-width: 768px) {
  #top-case .case-txt {
    text-align: center;
  }
}
#top-case .case-btn {
  max-width: 260px;
  margin: 35px auto 0;
}

/* top-voice  PC
------------------------------------ */
#top-voice .voice-inner {
  background: url(../img/top/voice-ico.png) no-repeat calc(100% - 160px) 65px;
}
#top-voice .voice-txt {
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  #top-voice .voice-txt {
    text-align: center;
  }
}
#top-voice .voice-list {
  margin: 60px auto 0;
}

/* top-bnr  PC
------------------------------------ */
#top-bnr .bnr-bg {
  position: relative;
  z-index: 1;
}
#top-bnr .bnr-bg::before {
  content: "";
  width: 100%;
  height: 76.7%;
  margin: auto;
  background-color: #ffe238;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
#top-bnr .bnr-list {
  display: flex;
  justify-content: space-between;
}
#top-bnr .bnr-list-item {
  width: 100%;
  max-width: 520px;
}
#top-bnr .bnr-list-link {
  display: block;
  height: 100%;
  padding: 27px 0 40px;
  border: 4px solid #ffe238;
  border-radius: 20px;
  background: #fff;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #top-bnr .bnr-list-link:hover {
    transform: translateY(-5px);
    opacity: 1;
  }
}
#top-bnr .bnr-ttl-ja {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  #top-bnr .bnr-ttl-ja {
    font-size: 1.6rem;
  }
}
#top-bnr .bnr-txt {
  margin: 20px auto 0;
  text-align: center;
}

/* top-news  PC
------------------------------------ */
#top-news .news-ttl {
  text-align: left;
}
#top-news .news-flx {
  width: 100%;
  padding-bottom: 5px;
  border-bottom: 2px solid #442d0b;
}
#top-news .news-btn {
  width: 260px;
  margin: 0;
}
#top-news .news-post {
  margin: 35px auto 0;
}

/* com-contact  PC
------------------------------------ */
.com-contact {
  position: relative;
  z-index: 1;
}
.com-contact::before {
  content: "";
  width: 100%;
  height: 69.6%;
  background-color: #ffe238;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.com-contact .contact-box {
  width: 100%;
  max-width: 920px;
  margin: auto;
  padding: 35px 0 45px;
  position: relative;
}
.com-contact .contact-ico {
  position: absolute;
  top: -49px;
  left: -55px;
}
.com-contact .contact-ttl {
  margin: 23px auto 0;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .com-contact .contact-ttl {
    font-size: 1.5rem;
  }
}
.com-contact .contact-txt-box {
  margin: 23px auto 0;
}
@media screen and (min-width: 768px) {
  .com-contact .contact-txt-box {
    text-align: center;
  }
}
.com-contact .contact-list {
  display: flex;
  margin: 44px auto 0;
  justify-content: center;
}
.com-contact .contact-list-item {
  width: 100%;
  max-width: 380px;
}
.com-contact .contact-list-item:nth-of-type(n+2) {
  margin-left: 40px;
}
.com-contact .contact-list-btn {
  display: flex;
  height: 80px;
  border-radius: 999px;
  border: 2px solid #f27c48;
  background: #fff;
  align-items: center;
  font-size: 2rem;
  letter-spacing: 0;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .com-contact .contact-list-btn {
    font-size: 1.5rem;
  }
}
.com-contact .contact-list-btn::before {
  content: "";
  width: 37px;
  height: 37px;
  margin-right: 17px;
}
.com-contact .contact-list-btn-line {
  position: relative;
}
.com-contact .contact-list-btn-line::before {
  background: url(../img/top/contact-line.png) no-repeat left center/contain;
}
.com-contact .contact-list-btn-line-fuki {
  width: 180px;
  height: 30px;
  margin: auto;
  background: #00b900;
  border-radius: 999px;
  text-align: center;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  color: #fff;
  line-height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .com-contact .contact-list-btn-line-fuki {
    font-size: 1.5rem;
  }
}
.com-contact .contact-list-btn-line-fuki::after {
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-color: #00b900 transparent transparent transparent;
  border-width: 6px 6px 0px 6px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
}
.com-contact .contact-list-btn-mail {
  color: #f27c48;
}
.com-contact .contact-list-btn-mail::before {
  background: url(../img/top/contact-mail.png) no-repeat left center/contain;
}

/* =========================================

  sub layout  all

========================================= */
/* about  PC
------------------------------------ */
#about .worries {
  background: #ffe238;
  position: relative;
}
#about .worries::before {
  width: 100%;
  height: 50px;
  background: url(../img/top/worries-wave.png) no-repeat center bottom/100% 100%;
  bottom: -50px;
  content: "";
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
}
#about .worries-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #about .worries-ttl-ja {
    font-size: 2.4rem;
  }
}
#about .worries-box {
  margin: 50px auto 0;
  padding: 38px 0 38px 28px;
  border-radius: 20px;
  background: #fbf8f2;
  position: relative;
}
#about .worries-list:nth-of-type(n+2) {
  margin-left: 23px;
}
#about .worries-list li {
  padding-left: 25px;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  color: #442d0b;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .worries-list li {
    font-size: 1.5rem;
  }
}
#about .worries-list li::before {
  content: "●";
  color: #f27c48;
  position: absolute;
  left: 0;
  top: 0;
}
#about .worries-list li:nth-of-type(n+2) {
  margin-top: 13px;
}
#about .worries-ico {
  position: absolute;
  bottom: -18px;
  right: -32px;
}
@media screen and (min-width: 768px) and (max-width: 1295px) {
  #about .worries-ico {
    right: 0;
  }
}
#about .worries-txt {
  margin: 55px auto 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #about .worries-txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #about .worries-txt {
    text-align: center;
  }
}
#about .worries-btn {
  max-width: 380px;
  margin: 45px auto 0;
}
#about .how-ttl-lg {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #about .how-ttl-lg {
    font-size: 2.4rem;
  }
}
#about .how-txt {
  margin: 50px auto 0;
  text-align: center;
}
#about .how-box {
  margin: 35px auto 0;
  padding: 28px 60px 28px 46px;
  background: #fbf8f2;
}
#about .how-note {
  width: 100%;
  max-width: 840px;
  margin: 88px auto 0;
  padding: 40px 0 40px 200px;
  background: #ffe238;
  border-radius: 999px;
  position: relative;
}
#about .how-note-ico {
  position: absolute;
  left: -60px;
  bottom: -2px;
}
#about .how-btn {
  margin: 70px auto 0;
}
#about .flow {
  background: #ffe238;
}
#about .flow-txt {
  margin: 50px auto 0;
  text-align: center;
}
#about .flow-list {
  margin: 65px auto 0;
}
#about .flow-list-item {
  padding: 39px 35px 39px 260px;
}
#about .flow-list-item:nth-of-type(n+2) {
  margin-top: 131px;
  position: relative;
}
#about .flow-list-item:nth-of-type(n+2)::before {
  content: "";
  width: 96px;
  height: 31px;
  margin: auto;
  background: url(../img/about/flow-arw.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: -79px;
}
#about .flow-list-item01 {
  background: url(../img/about/flow-ico01.png) no-repeat 33px 44px #fbf8f2;
}
#about .flow-list-item02 {
  background: url(../img/about/flow-ico02.png) no-repeat 84px 15px #fbf8f2;
}
#about .flow-list-item03 {
  background: url(../img/about/flow-ico03.png) no-repeat 75px 27px #fbf8f2;
}
#about .flow-list-item04 {
  background: url(../img/about/flow-ico04.png) no-repeat 52px 20px #fbf8f2;
}
#about .flow-list-item05 {
  background: url(../img/about/flow-ico05.png) no-repeat 36px 26px #fbf8f2;
}
#about .flow-list-txt {
  margin: 20px auto 0;
}
#about .faq-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #about .faq-ttl-ja {
    font-size: 2.4rem;
  }
}
#about .faq-list {
  margin: 55px auto 0;
}
#about .faq-list-item:nth-of-type(n+2) {
  margin-top: 66px;
}
#about .faq-list-ttl {
  padding: 24px 94px;
  border-radius: 20px 20px 0 0;
  background: #ffe238;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .faq-list-ttl {
    font-size: 1.5rem;
  }
}
#about .faq-list-ttl::before {
  content: "Q";
  width: 61px;
  height: 51px;
  padding-top: 10px;
  background: url(../img/about/faq-house.png) no-repeat center top/contain;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 18px;
  left: 23px;
}
@media screen and (max-width: 768px) {
  #about .faq-list-ttl::before {
    font-size: 1.5rem;
  }
}
#about .faq-list-txt {
  padding: 25px 95px 45px;
  font-family: "ZenKakuGothicNew-Regular", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 2;
  white-space: pre-line;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .faq-list-txt {
    font-size: 1.5rem;
  }
}
#about .faq-list-txt::before {
  content: "A";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fcf1ba;
  border-radius: 999px;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3rem;
  letter-spacing: 0;
  line-height: 45px;
  color: #f27c48;
  position: absolute;
  top: 20px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  #about .faq-list-txt::before {
    font-size: 1.5rem;
  }
}

/* service  PC
------------------------------------ */
#service .com-ttl01-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #service .com-ttl01-ja {
    font-size: 2.4rem;
  }
}
#service .service-txt {
  margin: 30px auto 0;
  text-align: center;
}
#service .service-reform {
  margin: 50px auto 0;
}
#service .service-reform-ttl {
  padding: 8px;
  background: #ffe238;
  border-radius: 20px;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #service .service-reform-ttl {
    font-size: 1.6rem;
  }
}
#service .service-reform-list {
  display: flex;
  margin: 38px auto 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
#service .service-reform-list-item {
  width: 100%;
  padding-top: 250px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  #service .service-reform-list-item {
    max-width: 520px;
    min-height: 360px;
  }
  #service .service-reform-list-item:nth-of-type(n+3) {
    margin-top: 44px;
  }
}
#service .service-reform-list-ttl {
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  #service .service-reform-list-ttl {
    font-size: 1.5rem;
  }
}
#service .service-reform-list-ttl .ac {
  color: #a37537;
}
#service .service-reform-list-ttl .sm {
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #service .service-reform-list-ttl .sm {
    font-size: 1.5rem;
  }
}
#service .service-reform-list-illu {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #service .service-reform-list-illu {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
  }
  #service .service-reform-list-illu.illu01 {
    top: 46px;
  }
  #service .service-reform-list-illu.illu02 {
    top: 25px;
  }
  #service .service-reform-list-illu.illu03 {
    top: 32px;
  }
  #service .service-reform-list-illu.illu04 {
    top: 22px;
  }
}
#service .service-reform-list-note {
  margin: 67px auto 0;
  text-align: center;
  font-family: "ZenKakuGothicNew-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #service .service-reform-list-note {
    font-size: 1.5rem;
  }
}
#service .service-reform-list-note .sm {
  display: inline-block;
  margin: 10px auto 0;
  font-size: 1.7rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #service .service-reform-list-note .sm {
    font-size: 1.5rem;
  }
}
#service .service-reform-list-note .marker {
  background: linear-gradient(transparent 80%, #ffe238 80%);
  line-height: 1;
}
#service .service-plan {
  margin: 82px auto 0;
}
#service .service-plan-box {
  max-width: 980px;
  margin: 57px auto 0;
  padding: 45px 60px;
  background-color: #fff;
  border-radius: 999px;
  position: relative;
}
#service .service-plan-box-illu {
  position: absolute;
  right: -60px;
  bottom: 0;
}
#service .service-plan .com-check li {
  background: none;
  position: relative;
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  #service .service-plan .com-check li {
    font-size: 1.5rem;
  }
}
#service .service-plan .com-check li::before {
  content: "●";
  color: #f27c48;
  position: absolute;
  left: 0;
  top: 0;
}
#service .service-plan .com-check li:nth-of-type(n+2) {
  margin-top: 26px;
}
#service .service-plan-txt-box {
  margin: 45px auto 0;
}
@media screen and (min-width: 768px) {
  #service .service-plan-txt-box {
    text-align: center;
  }
}
#service .service-plan-btn {
  max-width: 260px;
  margin: 47px auto 0;
  padding-left: 15px;
}
#service .merit {
  background: #ffe238;
}
#service .merit-txt {
  margin: 37px auto 0;
  text-align: center;
}
#service .merit-list {
  display: flex;
  margin: 30px auto 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
#service .merit-list-item {
  width: 100%;
  padding: 200px 19px 0;
  background-color: #fbf8f2;
  border-radius: 20px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #service .merit-list-item {
    max-width: 520px;
    min-height: 490px;
  }
  #service .merit-list-item:nth-of-type(n+3) {
    margin-top: 50px;
  }
}
#service .merit-list-illu {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}
#service .merit-list-illu01 {
  top: 21px;
}
#service .merit-list-illu02 {
  top: 35px;
}
#service .merit-list-illu03 {
  top: 16px;
}
#service .merit-list-illu04 {
  top: 17px;
}
#service .merit-list-ttl {
  padding-bottom: 12px;
  border-bottom: 2px solid #442d0b;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0;
  color: #442d0b;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #service .merit-list-ttl {
    font-size: 1.5rem;
  }
}
#service .merit-list-ttl .ac {
  color: #a37537;
}
#service .merit-list-txt {
  margin: 17px auto 0;
  text-align: left;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #service .merit-list-txt {
    font-size: 1.5rem;
  }
}
#service .merit-box {
  margin: 80px auto 0;
  background: url(../img/service/merit-illu.png) no-repeat calc(100% - 49px) bottom #fbf8f2;
  padding: 40px 35px 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}
#service .merit-box-ac {
  display: inline-block;
  width: 130px;
  height: 50px;
  margin: auto;
  line-height: 50px;
  border-radius: 999px;
  background-color: #f27c48;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: -32px;
}
@media screen and (max-width: 768px) {
  #service .merit-box-ac {
    font-size: 1.6rem;
  }
}
#service .merit-box-ttl {
  font-size: 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #service .merit-box-ttl {
    font-size: 1.6rem;
  }
}
#service .merit-check {
  margin-top: 23px;
  text-align: left;
}
#service .merit-check li {
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  #service .merit-check li {
    font-size: 1.5rem;
  }
}
#service .area-box {
  max-width: 990px;
  margin: auto;
  padding: 39px 45px 30px;
  background: url(../img/service/area.png) no-repeat calc(100% - 26px) 60px #fff;
}
#service .area-h {
  max-width: 440px;
}
#service .area-ttl {
  margin-top: 25px;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #service .area-ttl {
    font-size: 1.5rem;
  }
}
#service .area-ttl span {
  color: #a37537;
}
#service .area-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #service .area-ttl-ja {
    font-size: 2.4rem;
  }
}
#service .area-ttl-en {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  #service .area-ttl-en {
    font-size: 1.5rem;
  }
}
#service .area-map {
  margin-top: 10px;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #service .area-map {
    font-size: 1.5rem;
  }
}
#service .area-txt {
  margin-top: 24px;
}

/* case  PC
------------------------------------ */
#case .case-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #case .case-ttl-ja {
    font-size: 2.4rem;
  }
}
#case .case-list {
  display: flex;
  margin: 70px auto 0;
  flex-wrap: wrap;
}
#case .case-list-item {
  width: 100%;
  max-width: 340px;
}
@media screen and (min-width: 768px) {
  #case .case-list-item:not(:nth-of-type(3n-2)) {
    margin-left: 30px;
  }
  #case .case-list-item:nth-of-type(n+4) {
    margin-top: 65px;
  }
}
#case .case-list-link {
  display: block;
}
#case .case-list-img {
  width: 100%;
  height: 0;
  padding-top: 91.17%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
#case .case-list-ttl {
  margin: 8px auto 0;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #case .case-list-ttl {
    font-size: 1.5rem;
  }
}
#case .case-box {
  padding: 30px;
}
#case .case-box-ttl {
  padding-bottom: 3px;
  border-bottom: 2px solid #442d0b;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #case .case-box-ttl {
    font-size: 1.5rem;
  }
}
#case .case-scroll {
  margin: 36px auto 0;
  overflow-x: auto;
}
#case .case-scroll-list {
  display: flex;
}
#case .case-scroll-list li {
  width: 100%;
  height: 0;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #case .case-scroll-list li {
    max-width: 50%;
    padding-top: 400px;
  }
}
#case .case-scroll-list li:nth-of-type(n+2) {
  margin-left: 30px;
}
#case .case-scroll-list img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
#case .case-txt {
  margin: 25px auto 0;
  white-space: pre-line;
  line-height: 2.11;
  font-size: 1.7rem;
  letter-spacing: 0;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
}
@media screen and (max-width: 768px) {
  #case .case-txt {
    font-size: 1.5rem;
  }
}

/* voice  PC
------------------------------------ */
#voice .voice-list {
  margin: 55px auto 0;
}
#voice .voice-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #voice .voice-ttl-ja {
    font-size: 2.4rem;
  }
}

/* information  PC
------------------------------------ */
#information .case-img {
  margin-right: 37px;
  flex-shrink: 0;
}
#information .case-flx {
  margin: 55px auto 0;
}
#information .case-ttl {
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #information .case-ttl {
    font-size: 1.6rem;
  }
}
#information .case-ttl span {
  color: #955d09;
}
#information .case-ttl-ja {
  font-size: 4.8rem;
}
@media screen and (max-width: 768px) {
  #information .case-ttl-ja {
    font-size: 2.4rem;
  }
}
#information .case-txt-box {
  margin-top: 20px;
}
#information .case-name {
  text-align: right;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
  color: #955d09;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #information .case-name {
    font-size: 1.5rem;
  }
}
#information .information {
  background-color: #fcf1ba;
}
#information .information-box {
  margin: 55px auto 0;
  padding: 20px 28px;
}
#information .map {
  padding-bottom: 80px;
}
#information .map-bg {
  background-color: #fcf1ba;
}
#information .map-ttl-en {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #information .map-ttl-en {
    font-size: 1.5rem;
  }
}
#information .map-ttl-ja {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #information .map-ttl-ja {
    font-size: 1.5rem;
  }
}
#information .map-ttl-ja::before {
  content: "";
  width: 20px;
  height: 26px;
  margin-right: 10px;
  background: url(../img/information/map.png) no-repeat center/contain;
}
#information .map-list-ttl {
  margin: 13px auto 0;
  background: #ffe238;
  text-align: center;
  font-family: "KiwiMaru-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  #information .map-list-ttl {
    font-size: 1.5rem;
  }
}
#information .map-map {
  margin: 10px auto 0;
}

/* news  PC
------------------------------------ */
#news .news-post {
  margin: 30px auto 0;
}
#news .detail-box {
  display: block;
  margin: auto;
}

/* privacy  PC
------------------------------------ */
#privacy .privacy-box-ttl {
  padding-bottom: 4px;
  font-family: "KiwiMaru-Medium", sans-serif;
}/*# sourceMappingURL=all.css.map */