@charset "UTF-8";
html {
  width: 100vw;
  max-width: 1440px;
  color: #505050;
  background-color: #FFF8F1;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: sans-serif;
}

p {
  color: #505050;
}

a {
  text-decoration: none;
  color: #505050;
}

li {
  list-style-type: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.floating-text {
  animation: floatUp 0.8s ease-out;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #7ac4a7;
  z-index: 9999999;
  text-align: center;
  color: #505050;
}
#splash #splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Dancing Script", cursive;
  font-size: 30px;
}

#container {
  position: relative;
  opacity: 0; /*はじめは透過0に*/
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  animation: glow_anime_on 0.5s ease-out forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #ffffff, 0 0 0 #F0AD60;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #ffffff, 0 0 15px #F0AD60;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #ffffff, 0 0 0 #F0AD60;
  }
}
.underline {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-image: linear-gradient(90deg, #F0AD60 47%, #7ac4a7 100%);
}

.underline_animated {
  animation: underline_anim 0.7s linear forwards;
}

@keyframes underline_anim {
  to {
    width: 100%;
  }
}
.fadein-anime {
  animation-name: fadeup;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadein {
  opacity: 0;
}

.fadeup-anime {
  animation-name: fadein;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeup {
  opacity: 0;
}

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.header {
  z-index: 800;
  background-color: #FFF8F1;
  position: fixed;
  width: 100vw;
  max-width: 1440px;
  height: 100px;
  margin: 0 auto;
}
.header .contents {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* ナビ開いてる時のボタン */
}
.header .contents .name h1 {
  font-size: 34px;
  font-weight: 100;
  margin-top: 30px;
  font-family: "Dancing Script", cursive;
}
.header .contents .name h1 img {
  width: 30px;
  height: auto;
  margin-right: 4px;
  margin-bottom: -2px;
}
.header .contents .nav .pcnav {
  margin-top: 6px;
}
.header .contents .nav .pcnav ul {
  display: flex;
  justify-content: space-around;
}
.header .contents .nav .pcnav ul li {
  margin-right: 30px;
}
.header .contents .nav .pcnav ul li a {
  color: #505050;
  height: 100px; /* アンカータグの高さ */
  line-height: 100px;
}
.header .contents .nav .pcnav ul li a:hover {
  color: #7ac4a7;
  transition: color 0.5s ease;
}
.header .contents .hamburger {
  display: block;
  position: relative;
  z-index: 3;
  right: 0px;
  top: 30px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.header .contents .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #434343;
  transition: 0.3s ease-in-out;
}
.header .contents .hamburger span:nth-child(1) {
  top: 10px;
}
.header .contents .hamburger span:nth-child(2) {
  top: 20px;
}
.header .contents .hamburger span:nth-child(3) {
  top: 30px;
}
.header .contents .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.header .contents .hamburger.active span:nth-child(2) {
  width: 0px;
}
.header .contents .hamburger.active span:nth-child(1),
.header .contents .hamburger.active span:nth-child(3) {
  background: #FFF8F1;
  transition-delay: 0.3s;
}
.header .contents .hamburger.active span:nth-child(1) {
  transform: translateY(4px);
}
.header .contents .hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(90deg);
}
.header .contents .globalMenuSp {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.header .contents .globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.header .contents .globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
.header .contents .globalMenuSp ul li:first-child {
  margin-top: 100px;
}
.header .contents .globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
.header .contents .globalMenuSp ul li:hover {
  background: rgba(255, 220, 185, 0.6235294118);
}
.header .contents .globalMenuSp ul li a {
  display: block;
  color: #ffffff;
  padding: 1em 0;
  text-decoration: none;
}
.header .contents nav.globalMenuSp.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.top {
  width: 100vw;
  max-width: 1440px;
  padding-top: 100px;
}
.top__img {
  position: relative;
  height: 55vh;
  min-height: 300px;
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  overflow: hidden;
}
.top__img img {
  height: 55vh;
  min-height: 300px;
  width: 90vw;
  max-width: 1296px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-out;
  transform: scale(1);
}
.top .Breadcrumb {
  padding: 20px;
  font-size: 14px;
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
}
.top .Breadcrumb .Breadcrumb-ListGroup {
  display: flex;
}
.top .Breadcrumb .Breadcrumb-ListGroup .Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.top .Breadcrumb .Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.top .Breadcrumb .Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
.top .ttl {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
}
.top .ttl .big {
  font-size: 100px;
  font-family: serif;
  text-align: center;
  color: #F0AD60;
}
.top .ttl .middle {
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: -30px;
  text-align: center;
  color: #6b6b6b;
}

.points {
  width: 900px;
  margin: 0 auto;
  padding-top: 160px;
}
.points__ttl {
  position: relative;
}
.points__ttl h3 {
  font-size: 24px;
  margin-top: -60px;
  color: #F0AD60;
}
.points__ttl h3 span {
  color: #505050;
  font-size: 22px;
  font-weight: 300;
}
.points__contents .article {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.points__contents .article__sentence .ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: serif;
}
.points__contents .article__sentence .ttl .number {
  font-size: 26px;
  color: #7ac4a7;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
}
.points__contents .article__sentence .ttl .adjust {
  margin-left: 46px;
}
.points__contents .article__sentence p {
  width: 400px;
  font-size: 16px;
  margin-left: 48px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.points__contents .article__img img {
  width: 420px;
  border-radius: 50px 0 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow {
  width: 900px;
  margin: 0 auto;
  padding-top: 160px;
}
.flow__ttl {
  position: relative;
}
.flow__ttl h3 {
  font-size: 24px;
  margin-top: -40px;
  color: #F0AD60;
}
.flow__ttl h3 span {
  color: #505050;
  font-size: 22px;
  font-weight: 300;
}
.flow__contents .article {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.flow__contents .article__img img {
  width: 360px;
  height: 160px;
  border-radius: 0 50px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__contents .article__sentence {
  margin-top: 10px;
}
.flow__contents .article__sentence .ttl {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: serif;
}
.flow__contents .article__sentence .ttl .number {
  font-size: 26px;
  color: #7ac4a7;
  font-family: "Dancing Script", cursive;
  font-weight: bold;
}
.flow__contents .article__sentence .ttl .adjust {
  margin-left: 46px;
}
.flow__contents .article__sentence p {
  width: 490px;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.flow__contents .article__sentence .border {
  padding-bottom: 16px;
  border-bottom: white solid 4px;
  position: relative;
}
.flow__contents .article__sentence .border::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 20px solid rgb(255, 255, 255);
  width: 0;
  height: 0;
}

.price {
  width: 900px;
  margin: 0 auto;
  padding-top: 160px;
}
.price__ttl {
  position: relative;
}
.price__ttl h3 {
  font-size: 24px;
  margin-top: -40px;
  color: #F0AD60;
}
.price__ttl h3 span {
  color: #505050;
  font-size: 22px;
  font-weight: 300;
}
.price__contents {
  margin-top: 40px;
}
.price__contents .recomend {
  text-align: center;
  margin-bottom: 10px;
}
.price__contents .scroll-description {
  display: none;
}
.price__contents ul {
  display: flex;
  justify-content: space-between;
}
.price__contents ul li {
  background-color: #ffffff;
  width: 290px;
}
.price__contents ul li .orange {
  background-color: #F8C055;
}
.price__contents ul li .green {
  background-color: #8ee1c0;
}
.price__contents ul li .red {
  background-color: #F79C9C;
}
.price__contents ul li .ttl-box {
  width: 90%;
  display: inline-block;
  margin: 14px auto 0 15px;
  position: relative;
}
.price__contents ul li .ttl-box p {
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 12px;
  font-size: 18px;
}
.price__contents ul li .ttl-box .description {
  font-size: 12px;
  font-weight: 300;
}
.price__contents ul li .ttl-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 241, 0.3960784314) 100%);
  transform: skewX(-25deg);
}
.price__contents ul li .plan-contents {
  text-align: center;
}
.price__contents ul li .plan-contents p {
  border-bottom: #505050 solid 1px;
  width: 90%;
  margin: 0 auto;
  margin-top: 26px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 16px;
}
.price__contents ul li .plan-contents p .comment {
  font-size: 14px;
}
.price__contents ul li .plan-contents p .number {
  color: #F79C9C;
  font-size: 20px;
  font-weight: bold;
}
.price__contents .nouki {
  margin-left: 20px;
  margin-top: 20px;
  font-size: 16px;
}

.support {
  width: 900px;
  margin: 0 auto;
  padding-top: 160px;
}
.support__ttl {
  position: relative;
}
.support__ttl h3 {
  font-size: 24px;
  margin-top: -40px;
  color: #F0AD60;
}
.support__ttl h3 span {
  color: #505050;
  font-size: 22px;
  font-weight: 300;
}
.support__description {
  padding-top: 30px;
  font-size: 16px;
}
.support__description .number {
  color: #F79C9C;
  font-size: 20px;
  font-weight: bold;
}
.support__contents {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.support__contents__article {
  width: 440px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 0 50px 0 0;
  margin-right: 20px;
  margin-bottom: 20px;
}
.support__contents__article:nth-child(2) {
  margin-right: 0;
}
.support__contents__article:nth-child(4) {
  margin-right: 0;
}
.support__contents__article .ttl {
  padding-top: 20px;
  padding-left: 30px;
  font-size: 20px;
  position: relative;
}
.support__contents__article .ttl img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
.support__contents__article .ttl span {
  position: absolute;
  top: 40px;
  left: 100px;
  font-weight: bold;
  font-family: serif;
}
.support__contents__article .description {
  margin-left: 40px;
  margin-top: 10px;
  width: 360px;
}

.works__ttl {
  width: 900px;
  max-width: 1296px;
  margin: 0 auto;
  padding-top: 160px;
  margin-bottom: 40px;
  position: relative;
}
.works__ttl h3 {
  font-size: 24px;
  margin-top: -40px;
  color: #F0AD60;
}
.works__ttl h3 span {
  color: #505050;
  font-size: 22px;
  font-weight: 300;
}
.works .slider {
  width: 90vw;
  max-width: 1296px;
  margin: 0 auto;
  overflow: hidden;
}
.works .slider .bgDU .mask {
  position: relative;
  display: inline-block;
  line-height: 0;
  width: 330px;
  height: 440px;
  overflow: hidden;
}
.works .slider .bgDU .mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.5);
  width: 300px;
  height: 440px;
  margin-left: 50px;
}
.works .slider .bgDU .mask img {
  position: relative;
  width: 300px;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 50px;
  box-shadow: 0 10px 10px #ccc;
}
.works .slider .bgDU:hover span.mask::before {
  opacity: 1;
  transform: translateY(0);
}
.works .slider .bgDU .cap {
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  word-break: keep-all;
  text-align: left;
  width: 180px;
}
.works .slider .bgDU .cap .small {
  font-size: 12px;
  margin-top: 10px;
}
.works .slider .bgDU:hover span.cap {
  opacity: 1;
}

footer {
  background-color: #ffffff;
  width: 100vw;
  max-width: 1440px;
  height: 60px;
  margin-top: 140px;
}
footer .copy {
  font-size: 14px;
  text-align: center;
  line-height: 60px;
}
footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  writing-mode: vertical-rl;
  white-space: nowrap;
  animation: arrowmove 1s ease-in-out infinite;
}
@keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
footer .scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}
footer .scroll-top a {
  text-decoration: none;
  color: #505050;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
footer .js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #505050;
}
footer .js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #505050;
  transform: skewX(-31deg);
}
footer _:-ms-lang(x), footer .js-scroll a::before {
  right: -11px;
}
footer .js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #505050;
}
footer .js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #505050;
  transform: skewX(31deg);
}
footer _:-ms-lang(x), footer .js-pagetop a::before {
  right: 0;
}
footer section {
  padding: 500px 0;
}

@media screen and (max-width: 990px) {
  .header {
    height: 80px;
  }
  .header .contents .name h1 {
    margin-top: 22px;
  }
  .header .contents .hamburger {
    top: 24px;
  }
  .header .nav .pcnav {
    display: none;
  }
  .top .ttl .big {
    font-size: 90px;
  }
  .points {
    width: 90vw;
  }
  .points__contents .article__sentence .ttl {
    font-size: 20px;
  }
  .points__contents .article__sentence p {
    width: 40vw;
    margin-left: 48px;
  }
  .points__contents .article__img img {
    width: 42vw;
    height: 300px;
  }
  .flow {
    width: 90vw;
  }
  .flow__contents .article {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }
  .flow__contents .article__img img {
    width: 36vw;
  }
  .flow__contents .article__sentence p {
    width: 49vw;
  }
  .price {
    width: 90vw;
  }
  .price__contents .recomend {
    display: none;
  }
  .price__contents .scroll-description {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .price__contents ul {
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
  .price__contents ul li {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .price__contents ul li:last-child {
    margin-right: 0;
  }
  .price__contents ul li .plan-contents {
    width: 290px;
  }
  .price__contents ul .delay-time02 {
    animation-delay: 0s;
  }
  .price__contents ul .delay-time04 {
    animation-delay: 0s;
  }
  .support {
    width: 90vw;
  }
  .support__contents__article {
    width: 43vw;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 20px;
  }
  .support__contents__article .description {
    margin-left: 40px;
    margin-top: 10px;
    width: 36vw;
  }
  .works__ttl {
    width: 90vw;
  }
}
@media screen and (max-width: 800px) {
  .points__contents .article {
    flex-direction: column;
  }
  .points__contents .article__sentence p {
    width: 82vw;
    padding-right: 20px;
  }
  .points__contents .article__img {
    width: 82vw;
    padding-right: 20px;
  }
  .points__contents .article__img img {
    width: 82vw;
    margin-top: 20px;
    margin-left: 48px;
    padding-right: 20px;
  }
  .flow__contents .article__img img {
    width: 30vw;
  }
  .flow__contents .article__sentence p {
    width: 56vw;
  }
  .support__contents__article {
    width: 90vw;
    margin-right: 0px;
  }
  .support__contents__article .description {
    margin-left: 40px;
    margin-top: 10px;
    width: 80vw;
  }
}
@media screen and (max-width: 680px) {
  .points__contents .article__img img {
    height: 200px;
  }
  .flow__contents .article__img img {
    height: 160px;
  }
}
@media screen and (max-width: 590px) {
  .top .ttl .big {
    font-size: 60px;
  }
  .top .ttl .middle {
    font-size: 14px;
    padding-top: 20px;
  }
  .flow__contents .article__img img {
    height: 180px;
  }
}
@media screen and (max-width: 550px) {
  .top .Breadcrumb {
    display: none;
  }
  .top .ttl {
    margin-top: 40px;
  }
  .flow__contents .article {
    flex-direction: column-reverse;
  }
  .flow__contents .article__img {
    width: 90vw;
  }
  .flow__contents .article__img img {
    width: 90vw;
    height: 200px;
  }
  .flow__contents .article__sentence p {
    width: 90vw;
  }
  .flow__contents .article__sentence .responsive {
    margin-bottom: 20px;
  }
  .flow__contents .article__sentence .border {
    border-bottom: #FFF8F1 solid 4px;
  }
  .flow__contents .article__sentence .border::after {
    display: none;
  }
  .support__contents__article .description {
    margin-left: 30px;
    width: 80vw;
  }
}
@media screen and (max-width: 420px) {
  .points__contents .article__sentence .ttl .responsive-br {
    display: block;
    margin-left: 46px;
  }
}
@media screen and (max-width: 400px) {
  .top .ttl .big {
    font-size: 40px;
  }
  .top .ttl .middle {
    font-size: 12px;
    padding-top: 30px;
  }
}/*# sourceMappingURL=service.css.map */