@charset "UTF-8";
/*----------------------------------------------
 * * reset styles
 * *----------------------------------------------*/
main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  display: block;
}

/*----------------------------------------------
 * * CSS Custom Property
 * *----------------------------------------------*/
:root {
  --hdHeight: 96px;
  --minWidth: 1510px;
  --linearGradient01: linear-gradient(90deg, rgba(239, 182, 162, 1) 0%, rgba(239, 181, 162, 1) 0.49%, rgba(229, 138, 156, 1) 23.42%, rgba(223, 112, 152, 1) 41.35%, rgba(221, 102, 151, 1) 51.97%, rgba(228, 122, 168, 1) 86.42%, rgba(231, 131, 175, 1) 99.06%);
  --linearGradient02: linear-gradient(90deg, rgba(214, 202, 224, 1) 0%, rgba(214, 199, 222, 1) 1.42%, rgba(207, 146, 190, 1) 30.04%, rgba(204, 125, 177, 1) 43.98%, rgba(200, 110, 167, 1) 78%, rgba(197, 99, 159, 1) 99.12%);
}
@media screen and (max-width: 767px) {
  :root {
    --hdHeight: 60px;
  }
}

/*----------------------------------------------
 * * scroll animation
 * *----------------------------------------------*/
.scrollani {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.scrollani.show {
  opacity: 1;
  transform: none;
}
.scrollani--lr {
  transform: translate(-100px, 0);
}
.scrollani--rl {
  transform: translate(100px, 0);
}
.scrollani--up {
  transform: translate(0, 100px);
}
.scrollani--down {
  transform: translate(0, -100px);
}
.scrollani--scaleUp {
  transform: scale(0.5);
}
.scrollani--scaleDown {
  transform: scale(1.5);
}
.scrollani--rotateL {
  transform: rotate(180deg);
}
.scrollani--rotateR {
  transform: rotate(-180deg);
}
@media print {
  .scrollani {
    opacity: 1;
    transform: none;
  }
}

/*----------------------------------------------
 * * formatting styles
 * *----------------------------------------------*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  min-width: calc(var(--minWidth) + 40px);
  padding-top: var(--hdHeight);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.8em;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #3E3A39;
}
@media screen and (max-width: 767px) {
  body {
    min-width: initial;
    -webkit-text-size-adjust: 100%;
  }
}

.scroll-prevent {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

a {
  color: inherit;
  transition-duration: 0.3s;
}
a[href^="tel:"] {
  display: inline-block;
  pointer-events: none;
  text-decoration: none;
}

_::-webkit-full-page-media, _:future, :root a {
  text-underline-offset: 2px;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
@media (any-hover: none) {
  a:active {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: inherit;
  }
}

/*----------------------------------------------
 * * clearfix
 * *----------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ----------------------------------------------
 * * header
 * *----------------------------------------------*/
header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: var(--hdHeight);
  padding: 0 calc((100% - var(--minWidth) - 40px) / 2);
  overflow: auto;
  font-family: "Noto Sans JP", sans-serif;
}
header .contactbox {
  flex: 0 0 512px;
  margin-left: auto;
  display: flex;
  color: #e4007f;
  font-size: 1.7rem;
  line-height: 1.1622;
}
header .contactbox .btnContact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 166px;
  margin-right: 8px;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(270deg, rgb(241, 156, 166) 0.02%, rgb(236, 136, 163) 10.01%, rgb(231, 119, 161) 21.99%, rgb(229, 109, 159) 35.22%, rgb(228, 106, 159) 51.97%, rgb(226, 104, 158) 54%, rgb(208, 85, 153) 80.68%, rgb(201, 78, 151) 99.1%) no-repeat 0 0;
  box-shadow: 2px 2px 3px rgba(35, 24, 21, 0.2);
  color: #fff;
  text-decoration: none;
}
header .contactbox .tel {
  flex: 0 0 332px;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.7rem;
}
button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  cursor: pointer;
  transition-duration: 0.3s;
}

.btnHamburger {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  border: none;
  background-color: #fff;
  width: var(--hdHeight);
  height: var(--hdHeight);
}
.btnHamburger::before, .btnHamburger::after {
  content: "";
  position: absolute;
  left: 18.75%;
  top: 33.3333%;
  width: 62.5%;
  height: 2px;
  background-color: #333;
  transition-duration: 0.3s;
}
.btnHamburger::after {
  top: 67.8333%;
}
.btnHamburger span::before {
  content: "";
  position: absolute;
  left: 18.75%;
  top: 50.6667%;
  width: 62.5%;
  height: 2px;
  background-color: #333;
  transition-duration: 0.3s;
}
.open .btnHamburger::before {
  top: 50.6667%;
  rotate: -45deg;
}
.open .btnHamburger::after {
  top: 50.6667%;
  rotate: 45deg;
}
.open .btnHamburger span::before {
  opacity: 0;
}

@media (any-hover: hover) {
  header .contactbox a:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  header .contactbox a:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    transition-duration: 0.3s;
  }
  header .contactbox {
    margin-left: 0;
    width: 100%;
    padding: 0 var(--hdHeight) 0 4.8%;
    flex-basis: var(--hdHeight);
    align-items: center;
    font-size: 3.2vw;
  }
  header .contactbox .btnContact {
    flex-basis: auto;
    margin-right: 0.6667rem;
    padding: 0.75em 1em;
  }
  header .contactbox .tel {
    flex-basis: auto;
    font-size: 4.8vw;
  }
  .btnHamburger {
    display: flex;
  }
  header.open {
    height: 100%;
    padding-bottom: var(--hdHeight);
  }
}

/* ----------------------------------------------
 * * nav
 * *----------------------------------------------*/
nav {
  flex: 0 0 auto;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 0 1.98vw;
  color: #b34993;
  letter-spacing: 0.14em;
}
nav a {
  text-decoration: none;
}
@media (any-hover: hover) {
  nav a:hover {
    text-decoration: underline;
  }
}
@media (any-hover: none) {
  nav a:active {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  nav {
    order: 1;
    width: 90.4%;
    margin: 0 auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition-duration: 0.3s;
  }
  nav ul {
    display: none;
    font-size: 1.6rem;
  }
  nav li {
    border-bottom: 1px solid;
  }
  nav a {
    display: block;
    padding: 10px;
  }
  nav a:active {
    text-decoration: none;
  }
  .open nav {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .open nav ul {
    display: block;
  }
}

/* ----------------------------------------------
 * * main
 * *----------------------------------------------*/
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    scale: 1.1 1.1;
  }
  100% {
    scale: 1 1;
  }
}
main {
  background: url(../img/bg.png) repeat-x 0 3341px;
}
@media screen and (max-width: 767px) {
  main {
    width: 100%;
    overflow: hidden;
    background-image: none;
  }
}

.mainvisual {
  width: 100%;
  padding-top: 62.5%;
  overflow: hidden;
  position: relative;
  z-index: 0;
  color: #d77ead;
  font-size: max(1.9rem, 1.1979vw);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.464;
  animation: opacity 3s ease 0s 1 normal both;
}
.mainvisual .bg {
  position: absolute;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: 100%;
  height: 100%;
  animation: scaleDown 20s ease 0.6s 1 normal both;
  transform-origin: 99% 50%;
}
.mainvisual .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainvisual .mvText {
  position: absolute;
  width: 100%;
  left: 0;
  top: 13.9167%;
  padding-right: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mainvisual h1 {
  width: 27.6648%;
}
.mainvisual h1 img {
  width: 100%;
}
.mainvisual .txt01 {
  width: 27.6648%;
  margin-top: 1.30208vw;
}
.mainvisual .txt02 {
  width: 55.9805%;
  margin-top: 5.7291vw;
}
.mainvisual .txt02 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mainvisual {
    padding-top: 125.6%;
  }
  .mainvisual .bg {
    animation-duration: 6s;
    transform-origin: 50% 50%;
  }
  .mainvisual .mvText {
    padding-right: 0;
    width: auto;
    top: 8.2825%;
    left: 9.0667%;
  }
  .mainvisual h1 {
    width: 33.0667vw;
  }
  .mainvisual .txt01 {
    margin-top: 2vw;
    width: 33.0667vw;
  }
  .mainvisual .txt02 {
    margin-top: 5.3333vw;
    width: 19.4667vw;
  }
}

[id=thoughts] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
[id=thoughts] .inner {
  background: linear-gradient(90deg, rgb(243, 197, 111) 0%, rgb(242, 193, 113) 1.9%, rgb(231, 150, 137) 24.19%, rgb(224, 124, 152) 41.61%, rgb(222, 114, 157) 51.93%, rgb(202, 125, 171) 77.41%, rgb(181, 137, 185) 99.1%) no-repeat 0 0;
  padding: 112px 0 100px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: #fff;
  position: relative;
  z-index: 0;
}
[id=thoughts] .flower01 {
  position: absolute;
  left: calc((100% - var(--minWidth)) / 2);
  top: -235px;
  pointer-events: none;
}
[id=thoughts] .textbox {
  flex: 1 0 0%;
  padding-right: max(18px, 48.6979% - 798px);
  padding-left: 40px;
}
[id=thoughts] h2 {
  margin-bottom: 65px;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.8802;
  letter-spacing: 0.32em;
}
[id=thoughts] .text {
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.2889;
}
[id=thoughts] .photobox {
  align-self: stretch;
  flex: 0 0 auto;
  width: 51.3021%;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.3125;
  font-family: "Noto Sans JP", sans-serif;
}
[id=thoughts] .photobox .photo {
  height: 100%;
}
[id=thoughts] .photobox .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
[id=thoughts] .photobox .text {
  position: absolute;
  right: 85px;
  top: 266px;
  line-height: inherit;
}
[id=thoughts] .photobox .name {
  margin: 20px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  letter-spacing: 0.38em;
}
[id=thoughts] .photobox ul {
  font-weight: 400;
  list-style: none;
}
[id=thoughts] .photobox .sign {
  position: absolute;
  right: 25px;
  bottom: -30px;
}
@media screen and (max-width: 767px) {
  [id=thoughts] .inner {
    display: block;
    padding: 50px 0 0;
  }
  [id=thoughts] .flower01 {
    left: 6.4%;
    top: -21.0667vw;
    width: 40.9333%;
  }
  [id=thoughts] .nosp {
    display: none;
  }
  [id=thoughts] .textbox {
    padding: 0 0 45px;
  }
  [id=thoughts] h2 {
    margin-bottom: 38px;
    padding-left: 0.5em;
    text-align: center;
    font-size: 1.4rem;
    font-size: min(1.7rem, 3.7333vw);
    line-height: 1.7857;
    letter-spacing: 0.3em;
  }
  [id=thoughts] .text {
    width: 78.6667%;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2.15;
  }
  [id=thoughts] .photobox {
    width: auto;
  }
  [id=thoughts] .photobox .photo {
    width: 100%;
  }
  [id=thoughts] .photobox .text {
    width: auto;
    line-height: inherit;
    right: 9.8667%;
    top: 15.798%;
    font-size: 1rem;
  }
  [id=thoughts] .photobox .name {
    margin: 10px 0;
    font-size: min(2.5rem, 5.5053333333vw);
    letter-spacing: 0.38em;
  }
  [id=thoughts] .photobox .sign {
    width: 54.4%;
    bottom: 4.2345%;
  }
}

[id=feature] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
em {
  font-style: normal;
  font-weight: 700;
}

[id=feature] .inner {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 246, 250) 5.22%, rgb(233, 225, 240) 20.22%, rgb(224, 213, 233) 35.06%, rgb(221, 209, 231) 49.48%, rgb(225, 215, 234) 63.39%, rgb(237, 231, 243) 81.59%, rgb(255, 255, 255) 100%) no-repeat 0 160px/100% 1132px;
  padding: 100px 0 20px;
  text-align: center;
}
[id=feature] .ttl {
  margin-bottom: 50px;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6148;
}
[id=feature] .ttl span {
  font-size: 3.3rem;
}
[id=feature] .ttl em {
  font-size: 4.4rem;
  font-weight: 600;
}
[id=feature] .troubles {
  max-width: var(--minWidth);
  min-height: 810px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
[id=feature] .troubles > div {
  flex: 0 0 auto;
  position: absolute;
}
[id=feature] .troubles .img {
  width: 405px;
}
[id=feature] .troubles .text {
  position: absolute;
  left: 55%;
  top: 25%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background-color: rgba(144, 38, 122, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1.8517;
}
[id=feature] .troubles .text em {
  font-size: 2.9rem;
  font-weight: 600;
  line-height: 1.4686;
}
[id=feature] .trouble01 {
  left: 0;
  top: 0;
}
[id=feature] .trouble02 {
  right: 0;
}
[id=feature] .trouble02 .text {
  left: auto;
  right: 55%;
  background-color: rgba(189, 68, 132, 0.75);
}
[id=feature] .trouble03 {
  left: 50%;
  top: 50%;
  translate: -50% -75%;
}
[id=feature] .trouble03 .text {
  background-color: rgba(109, 59, 133, 0.75);
  translate: -50% 0;
  left: 50%;
  top: 70%;
}
[id=feature] .trouble04 {
  top: auto;
  right: 0;
  bottom: 0;
}
[id=feature] .trouble04 .text {
  left: auto;
  right: 55%;
}
[id=feature] .trouble05 {
  top: auto;
  bottom: 0;
}
[id=feature] .trouble05 .text {
  background-color: rgba(189, 68, 132, 0.75);
}
[id=feature] .ylwBox {
  margin-top: 140px;
  display: inline-block;
  padding: 20px 60px;
  position: relative;
  z-index: 0;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}
[id=feature] .ylwBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff9b1;
  border-radius: 100%;
  filter: blur(20px);
}
[id=feature] .ylwBox em {
  font-size: 4.4rem;
}
[id=feature] #reason {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
.sectTtl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px auto 0;
  position: relative;
  color: #d0006c;
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: 0.16em;
  padding-left: 0.16em;
}
.sectTtl::before, .sectTtl::after {
  content: "";
  position: absolute;
  top: -5px;
  right: calc(100% - 5px);
  width: 102px;
  height: 107px;
  background: url(../img/rose.png) no-repeat 0 0/100% auto;
}
.sectTtl::after {
  right: auto;
  left: calc(100% - 5px);
  scale: -1 1;
}

[id=feature] ul {
  list-style: none;
  max-width: 1364px;
  margin: 80px auto 0;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
[id=feature] li:nth-child(n+2) {
  margin-top: 60px;
  letter-spacing: 0.1em;
}
[id=feature] li:nth-child(3) {
  margin-top: 28px;
  letter-spacing: 0.06em;
}
[id=feature] li .img {
  margin-top: 40px;
}
[id=feature] .point {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(250, 236, 243, 0.06) 3.13%, rgba(238, 188, 214, 0.23) 11.79%, rgba(229, 148, 190, 0.39) 20.42%, rgba(221, 117, 171, 0.56) 28.85%, rgba(215, 95, 158, 0.71) 37.04%, rgba(212, 82, 150, 0.86) 44.87%, rgb(211, 77, 147) 51.95%, rgba(212, 79, 148, 0.73) 64.74%, rgba(214, 88, 153, 0.58) 71.94%, rgba(217, 101, 162, 0.45) 77.75%, rgba(222, 121, 174, 0.35) 82.83%, rgba(228, 147, 189, 0.25) 87.42%, rgba(236, 178, 208, 0.16) 91.66%, rgba(245, 215, 230, 0.08) 95.56%, rgba(255, 255, 255, 0) 99.1%);
  padding: 22px 166px 22px 272px;
  position: relative;
}
[id=feature] .point .icon {
  position: absolute;
  left: 66px;
  bottom: 50%;
  translate: 0 50%;
}
[id=feature] .ylwBox02 {
  margin: 50px auto 70px;
  padding: 10px 20px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0;
}
[id=feature] .ylwBox02 span {
  display: block;
  font-size: 3.6rem;
  font-weight: 600;
}
[id=feature] .ylwBox02 .txt01 {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}
[id=feature] .ylwBox02 em {
  display: block;
  font-size: 3.5rem;
  color: #d34d93;
}
[id=feature] .ylwBox02 br {
  display: none;
}
.btnSoudan a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 880px;
  height: 172px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
  background: linear-gradient(0deg, rgb(148, 0, 63) 0%, rgb(236, 109, 116) 100%);
  position: relative;
  z-index: 0;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  font-size: 4.4rem;
  text-decoration: none;
  color: #fff;
}
.btnSoudan a::before {
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  position: absolute;
  z-index: -1;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  background: linear-gradient(0deg, rgb(187, 0, 83) 0%, rgb(209, 54, 100) 100%);
  pointer-events: none;
}
.btnSoudan a::after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: 230px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  right: 50%;
  top: -118px;
  translate: 50% 0;
  pointer-events: none;
}
.btnSoudan a em {
  font-size: 5.5rem;
  font-weight: 600;
}
@media (any-hover: hover) {
  .btnSoudan a:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .btnSoudan a:active {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  [id=feature] .inner {
    padding: 20px 0;
    background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(248, 246, 250) 5.22%, rgb(233, 225, 240) 20.22%, rgb(224, 213, 233) 35.06%, rgb(221, 209, 231) 49.48%, rgb(225, 215, 234) 63.39%, rgb(237, 231, 243) 81.59%, rgb(255, 255, 255) 100%);
    background-position: 0 12vw;
    background-size: 100% 151vw;
  }
  [id=feature] .ttl {
    margin-bottom: 30px;
    font-size: 1.7rem;
  }
  [id=feature] .ttl span, [id=feature] .ttl em {
    display: block;
    font-size: 100%;
  }
  [id=feature] .ttl br {
    display: none;
  }
  [id=feature] .troubles {
    max-width: 100%;
    min-height: 0;
  }
  [id=feature] .troubles > div {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
  [id=feature] .troubles .img {
    width: 43.3333%;
    margin-left: 8vw;
  }
  [id=feature] .troubles .text {
    width: 36.8vw;
    height: 36.8vw;
    top: 50%;
    left: calc(50% - 3.7334vw);
    translate: 0 -50%;
    font-size: 2.48vw;
  }
  [id=feature] .troubles .text em {
    font-size: 3.1333vw;
  }
  [id=feature] .troubles > *:nth-child(even) .img {
    margin-left: auto;
    margin-right: 8vw;
  }
  [id=feature] .troubles > *:nth-child(even) .text {
    left: auto;
    right: calc(50% - 3.7334vw);
  }
  [id=feature] .trouble03 {
    translate: 0 0;
  }
  [id=feature] .ylwBox {
    margin: 20px auto 0;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 10px 20px;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
  }
  [id=feature] .ylwBox::before {
    filter: blur(10px);
  }
  [id=feature] .ylwBox em {
    font-size: 1.7rem;
  }
  .sectTtl {
    margin-top: 30px;
    font-size: 1.7rem;
  }
  .sectTtl::before, .sectTtl::after {
    width: 41px;
    height: 43px;
    right: 100%;
    top: -0.25em;
  }
  .sectTtl::after {
    right: auto;
    left: 100%;
  }
  [id=feature] ul {
    max-width: 100%;
    margin-top: 62px;
    font-size: min(1.5rem, 4vw);
  }
  [id=feature] li:nth-child(n+2) {
    margin-top: 54px;
  }
  [id=feature] li .img {
    margin: 15px auto 0;
    width: 80%;
    max-width: 437px;
  }
  [id=feature] .point {
    display: block;
    padding: 12px 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(211, 77, 147, 0.75) 15%, #d34d93 52%, rgba(211, 77, 147, 0.75) 85%, rgba(255, 255, 255, 0) 100%);
  }
  [id=feature] .point .icon {
    bottom: 100%;
    left: 50%;
    translate: -50% 0;
  }
  [id=feature] li:nth-child(1) .icon {
    width: 74px;
  }
  [id=feature] li:nth-child(2) .icon {
    width: 81px;
  }
  [id=feature] li:nth-child(3) {
    margin-top: 49px;
  }
  [id=feature] li:nth-child(3) .icon {
    width: 83px;
  }
  [id=feature] .ylwBox02 {
    padding: 20px;
    margin-bottom: 12px;
    line-height: 1.3909;
  }
  [id=feature] .ylwBox02 span {
    font-size: 1.7rem;
  }
  [id=feature] .ylwBox02 .txt01 {
    letter-spacing: 0.1em;
    margin-right: 0.25em;
  }
  [id=feature] .ylwBox02 em {
    margin-top: 5px;
    line-height: 1.3954;
    text-align: center;
  }
  [id=feature] .ylwBox02 br {
    display: inline;
  }
  .btnSoudan a {
    width: 85.6%;
    height: 16.8vw;
    border-radius: 4px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.9rem;
  }
  .btnSoudan a::before {
    width: calc(100% - 7px);
    height: calc(100% - 7px);
  }
  .btnSoudan a::after {
    width: calc(100% - 4px);
    height: 22.48vw;
    top: -11.6vw;
  }
  .btnSoudan a em {
    font-size: 2.4rem;
  }
}

[id=job] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
[id=job] .inner {
  position: relative;
  padding: 80px 0 20px;
}
[id=job] h2 {
  margin-top: 0;
  font-size: 3.2rem;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
}
[id=job] h2::before, [id=job] h2::after {
  width: 91px;
  height: 96px;
  top: -8px;
}
[id=job] .joblist {
  list-style: none;
  width: var(--minWidth);
  margin: 84px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
[id=job] .joblist li {
  position: relative;
  flex: 0 0 450px;
  margin-top: 76px;
}
[class^=jobIcon] {
  position: absolute;
  left: -18px;
  top: 0;
  translate: 0 -45%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: #fff;
  padding: 6px 6px 6px calc(6px + 0.12em);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.2);
  color: #e95377;
  font-size: 1.8rem;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.12em;
}
[class^=jobIcon]::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: 100%;
  height: 100%;
  scale: 0.83 0.83;
  border: 0.1em solid #d82c7b;
  border-radius: 50%;
  pointer-events: none;
}

.jobIcon02 {
  color: #3497ce;
}
.jobIcon02::before {
  border-color: #3497ce;
}

[id=job] .joblist .ttl {
  margin: 15px 0 20px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--linearGradient01);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.4em;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
}
[id=job] .joblist .ttl span {
  letter-spacing: 0.12em;
  display: block;
  font-size: 2.5rem;
}
[id=job] .joblist .ttl rt {
  line-height: 1.2;
  font-size: 1.7rem;
}
[id=job] .joblist p {
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #4C4948;
}
[id=job] .joblist li:nth-child(-n+3) {
  margin-top: 0;
}
[id=job] .joblist li:nth-child(even) .ttl {
  background: var(--linearGradient02);
}
[id=job] .joblist li:nth-child(4) .ttl {
  letter-spacing: 0.1em;
}
[id=job] .joblist li:nth-child(5) .ttl, [id=job] .joblist li:nth-child(6) .ttl {
  letter-spacing: 0.2em;
}
[id=job] .joblist li:last-child {
  flex: 0 0 100%;
  background: var(--linearGradient02);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: 35px;
  padding: 70px 156px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.15);
  color: #fff;
}
[id=job] .joblist li:last-child [class^=jobIcon] {
  width: 107px;
  height: 107px;
  font-size: 2.6rem;
}
[id=job] .joblist li:last-child .thumb {
  grid-row: 1/-1;
}
[id=job] .joblist li:last-child .ttl {
  grid-column: 2/-1;
  display: block;
  height: auto;
  margin: 0 0 30px;
  background: transparent none;
  box-shadow: none;
  text-align: left;
  font-size: 3rem;
  letter-spacing: 0.18em;
  line-height: 1.3824;
}
[id=job] .joblist li:last-child .ttl em {
  font-weight: inherit;
  font-size: 3.8rem;
}
[id=job] .joblist li:last-child .ttl span {
  font-size: 2.8rem;
  margin-left: -0.5em;
  letter-spacing: 0.08em;
  color: #fff9b1;
}
[id=job] .joblist li:last-child .ttl span span {
  display: inline;
  margin-left: 0;
  font-size: 2.4rem;
}
[id=job] .joblist li:last-child p {
  grid-column: 2/-1;
  grid-row: 2/-1;
  line-height: 1.8333;
  color: inherit;
}
[id=job] h3 {
  font-size: 3.2rem;
}
[id=job] h3::before, [id=job] h3::after {
  top: -10px;
}
[id=job] .supportWrap {
  display: flex;
  justify-content: space-between;
  width: var(--minWidth);
  margin: 54px auto 0;
  font-family: "Noto Sans JP", sans-serif;
}
[id=job] .supportWrap > section {
  flex: 0 0 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 58px 55px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
}
[id=job] .supportWrap h4 {
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  margin-bottom: 38px;
  padding: 14px 0;
  text-align: center;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.3259;
  color: #fff;
}
[id=job] .supportWrap h4 [class^=jobIcon] {
  width: 98px;
  height: 98px;
  left: -30px;
  top: 50%;
  translate: 0 -50%;
  font-size: 2.4rem;
}
[id=job] .supportWrap h4 .text {
  letter-spacing: 0.12em;
}
[id=job] .supportWrap ul {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  list-style: none;
  font-size: 2.5rem;
  line-height: 1.44;
  counter-reset: support;
}
[id=job] .supportWrap li {
  display: flex;
  align-items: baseline;
  counter-increment: support;
}
[id=job] .supportWrap li::before {
  content: counter(support) ".";
  display: block;
  flex: 0 0 auto;
  margin-right: 0.31em;
  font-size: 2.6rem;
}
[id=job] .supportWrap li:nth-child(n+2) {
  margin-top: 15px;
}
[id=job] .supportKojin {
  background: linear-gradient(180deg, white 0%, rgba(241, 158, 194, 0.5) 100%);
  color: #d22d76;
}
[id=job] .supportKojin h4 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(223, 25, 97, 0.75) 20%, #df1961 54%, rgba(223, 25, 97, 0.75) 80%, rgba(255, 255, 255, 0) 100%);
}
[id=job] .supportHoujin {
  background: linear-gradient(180deg, white 0%, rgba(186, 227, 249, 0.6) 100%);
  color: #136eab;
}
[id=job] .supportHoujin h4 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(52, 151, 206, 0.75) 20%, #3497ce 54%, rgba(52, 151, 206, 0.75) 80%, rgba(255, 255, 255, 0) 100%);
}
[id=job] .movie {
  width: var(--minWidth);
  height: 850px;
  position: relative;
  margin: 60px auto 0;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
[id=job] .movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
[id=job] .btnSoudan {
  margin-top: 128px;
}
@media screen and (max-width: 767px) {
  [id=job] .inner {
    padding-top: 6px;
  }
  [id=job] h2 {
    font-size: 1.7rem;
  }
  [id=job] h2::before, [id=job] h2::after {
    width: 41px;
    height: 43px;
    top: -0.25em;
  }
  [id=job] .joblist {
    width: 100%;
    margin-top: 25px;
    display: block;
  }
  [id=job] .joblist li {
    width: 78.9333%;
    margin-left: auto;
    margin-right: auto;
  }
  [id=job] .joblist li:nth-child(n) {
    margin-top: 0;
  }
  [id=job] .joblist li:nth-child(n+2) {
    margin-top: 25px;
  }
  [class^=jobIcon] {
    width: 9.8667vw;
    height: 9.8667vw;
    padding: 0 0 0 0.1em;
    left: calc(11.9933% - 1em);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
  }
  [id=job] .joblist .thumb {
    width: 76.0135%;
    margin: 0 auto;
  }
  [id=job] .joblist .thumb img {
    width: 100%;
    height: 29.3333vw;
    object-fit: cover;
    object-position: 50% 25%;
  }
  [id=job] .joblist .ttl {
    width: 76.0135%;
    height: 15.6vw;
    margin: 10px auto;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.15);
    font-size: 1.9rem;
  }
  [id=job] .joblist .ttl span {
    font-size: 1.4rem;
  }
  [id=job] .joblist .ttl rt {
    font-size: 1rem;
  }
  [id=job] .joblist p {
    font-size: 1.2rem;
  }
  [id=job] .joblist li:last-child {
    width: 100%;
    display: block;
    padding: 48px 0 42px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.15);
    background: linear-gradient(128.98deg, rgb(214, 202, 224) 0%, rgb(214, 199, 222) 1.42%, rgb(207, 146, 190) 30.04%, rgb(204, 125, 177) 43.98%, rgb(200, 110, 167) 78%, rgb(197, 99, 159) 99.12%);
  }
  [id=job] .joblist li:last-child [class^=jobIcon] {
    width: 14.2667vw;
    height: 14.2667vw;
    left: calc(20.13335% - 1em);
    top: 48px;
    font-size: 3.5333vw;
  }
  [id=job] .joblist li:last-child .thumb {
    width: 59.7333%;
  }
  [id=job] .joblist li:last-child .thumb img {
    height: 34vw;
  }
  [id=job] .joblist li:last-child .ttl {
    width: 78.9333%;
    margin: 18px auto;
    font-size: min(1.6rem, 3.6vw);
    letter-spacing: 0.1em;
  }
  [id=job] .joblist li:last-child .ttl em {
    font-size: min(2.1rem, 4.6173vw);
  }
  [id=job] .joblist li:last-child .ttl span {
    font-size: min(1.5rem, 3.42vw);
    letter-spacing: 0;
  }
  [id=job] .joblist li:last-child .ttl span span {
    font-size: min(1.2rem, 2.8vw);
  }
  [id=job] .joblist li:last-child p {
    width: 78.9333%;
    margin: 0 auto;
  }
  [id=job] h3 {
    font-size: 1.7rem;
  }
  [id=job] h3::before, [id=job] h3::after {
    top: -0.25em;
  }
  [id=job] .supportWrap {
    width: 100%;
    display: block;
    margin-top: 46px;
  }
  [id=job] .supportWrap > section {
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
    padding: 48px 0 42px;
    position: relative;
    display: block;
  }
  [id=job] .supportWrap h4 {
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% -50%;
    width: 84%;
    padding: 8px 0;
    font-size: min(1.3rem, 2.9867vw);
  }
  [id=job] .supportWrap h4 [class^=jobIcon] {
    left: -18px;
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
  [id=job] .supportWrap ul {
    width: 20em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  [id=job] .supportWrap li::before {
    font-size: 1.4rem;
  }
  [id=job] .supportWrap li:nth-child(n+2) {
    margin-top: 8px;
  }
  [id=job] .supportHoujin {
    margin-top: 40px;
  }
  [id=job] .movie {
    width: 94.6667%;
    height: auto;
    padding-top: 53.25%;
    margin-top: 32px;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.3);
  }
  [id=job] .btnSoudan {
    margin-top: 30px;
    position: relative;
    z-index: 1;
  }
}

[id=voice] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
[id=voice] .inner {
  padding-top: 140px;
}
[id=voice] h2 {
  margin-top: 0;
  font-size: 3.2rem;
  letter-spacing: 0.36em;
  padding-left: 0.36em;
}
[id=voice] h2::before, [id=voice] h2::after {
  background-image: url(../img/flower02.png);
  width: 240px;
  height: 240px;
  right: calc(100% + 40px);
  top: 50%;
  translate: 0 -50%;
}
[id=voice] h2::after {
  right: auto;
  left: calc(100% + 40px);
}
[id=voice] ul {
  width: 1350px;
  margin: 125px auto 0;
  list-style: none;
  font-size: 1.9rem;
  line-height: 1.6842;
}
[id=voice] li {
  background-color: #fff;
  position: relative;
  padding: 60px 108px 60px 378px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
}
[id=voice] li:nth-child(n+2) {
  margin-top: 56px;
}
[id=voice] li:nth-child(even) {
  padding-right: 390px;
  padding-left: 152px;
}
[id=voice] h3 {
  color: #b34993;
  font-size: 2.9rem;
  line-height: 1.3103;
}
[id=voice] .photo {
  position: absolute;
  top: -40px;
  right: -56px;
  rotate: 5deg;
}
[id=voice] .text {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: justify;
  letter-spacing: 0.13em;
  color: #4C4948;
}
[id=voice] .text em {
  font-weight: inherit;
  background: linear-gradient(0deg, rgba(255, 247, 153, 0) 0%, rgba(255, 247, 153, 0) 5%, #fff799 5%, #fff799 95%, rgba(255, 247, 153, 0) 95%, rgba(255, 247, 153, 0) 100%);
}
[id=voice] li:first-child {
  padding-right: 0;
}
[id=voice] li:first-child h3 {
  letter-spacing: 0;
}
[id=voice] li:first-child .photo {
  right: auto;
  left: -34px;
  top: -45px;
}
[id=voice] li:first-child .text {
  padding-left: 1em;
  padding-right: 108px;
}
@media screen and (max-width: 767px) {
  [id=voice] {
    background: linear-gradient(180deg, white 28%, #fbe4ee 97.71%);
  }
  [id=voice] .inner {
    padding-top: 10px;
  }
  [id=voice] h2 {
    font-size: inherit;
  }
  [id=voice] h2::before, [id=voice] h2::after {
    width: 120px;
    height: 120px;
    right: calc(100% + 15px);
  }
  [id=voice] h2::after {
    right: auto;
    left: calc(100% + 15px);
  }
  [id=voice] ul {
    width: 100%;
    margin-top: 42px;
    font-size: 1.2rem;
    line-height: 1.76;
  }
  [id=voice] li {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  [id=voice] li:nth-child(n+2) {
    margin-top: 30px;
  }
  [id=voice] li:nth-child(even) {
    padding: 0;
  }
  [id=voice] h3 {
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.5279;
  }
  [id=voice] h3 span {
    display: block;
  }
  [id=voice] .photo {
    position: static;
    rotate: 0deg;
    width: 44%;
    margin: 8px auto 0;
  }
  [id=voice] .text {
    width: 78.9333%;
    margin: 0 auto;
  }
  [id=voice] li:first-child .text {
    padding: 0;
  }
}

[id=workflow] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
[id=workflow] h2 {
  font-size: 3.2rem;
  letter-spacing: 0.36em;
  padding-left: 0.36em;
}
[id=workflow] h2::before, [id=workflow] h2::after {
  top: -15px;
}
[id=workflow] ol {
  list-style: none;
  width: 1350px;
  margin: 45px auto 92px;
  font-size: 2.9rem;
  font-weight: 600;
  color: #b34993;
}
[id=workflow] ol em {
  font-size: 3.6rem;
  color: #d0006c;
}
[id=workflow] li {
  background-color: #fff;
  height: 106px;
  display: flex;
  align-items: center;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1);
}
[id=workflow] li:nth-child(n+2) {
  margin-top: 58px;
  position: relative;
}
[id=workflow] li:nth-child(n+2)::before {
  content: "";
  position: absolute;
  right: 50%;
  top: -32px;
  translate: 50% 0;
  width: 89px;
  height: 44px;
  background: url(../img/arrow.svg) no-repeat center center/100% auto;
}
[id=workflow] .num {
  flex: 0 0 355px;
  text-align: center;
}
[id=workflow] .text {
  flex: 1 0 0%;
}
[id=workflow] .text br {
  display: none;
}
@media screen and (max-width: 767px) {
  [id=workflow] {
    background: linear-gradient(180deg, #fbe4ee 0%, #fadce9 42%, white 100%);
  }
  [id=workflow] h2 {
    font-size: inherit;
  }
  [id=workflow] h2::before, [id=workflow] h2::after {
    top: inherit;
  }
  [id=workflow] ol {
    width: 92.8%;
    margin-top: 18px;
    margin-bottom: 28px;
    font-size: min(1.7rem, 3.8667vw);
    line-height: 1.431;
  }
  [id=workflow] ol em {
    font-size: min(2.2rem, 4.8vw);
  }
  [id=workflow] li {
    display: block;
    padding: 16px 0;
    height: auto;
    box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  [id=workflow] li:nth-child(n+2) {
    margin-top: 18px;
  }
  [id=workflow] li:nth-child(n+2)::before {
    width: 53px;
    height: 27px;
    top: -12px;
  }
  [id=workflow] .num {
    margin: 0 auto;
  }
  [id=workflow] .text br {
    display: inline;
  }
  [id=workflow] li:nth-child(1) .num {
    width: 66px;
  }
  [id=workflow] li:nth-child(2) .num {
    width: 75px;
  }
  [id=workflow] li:nth-child(3) .num {
    width: 77px;
  }
  [id=workflow] li:nth-child(4) .num {
    width: 100px;
  }
}

[id=present] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
}
.book {
  position: relative;
  width: 1240px;
  background-color: #cc4b86;
  margin: 180px auto 110px;
  padding: 60px 80px 40px;
  box-shadow: 9px 9px 18px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.book h2 {
  color: #fff462;
  font-weight: 600;
  font-size: 5.7rem;
  line-height: 1.0471;
  letter-spacing: 0;
}
.book h2 .txt01 {
  font-size: 8.5rem;
}
.book h2 .txt02 {
  font-size: 7.6rem;
}
.book h2 em {
  font-weight: inherit;
  font-size: 9.8rem;
  letter-spacing: 0.44em;
}
.book .thumb {
  position: absolute;
  right: -120px;
  top: -118px;
  pointer-events: none;
}
.book ul {
  list-style: none;
  margin-top: 60px;
  margin-left: 55px;
  display: flex;
  flex-wrap: wrap;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.7rem;
  line-height: 1.4213;
  letter-spacing: 0.22em;
}
.book li {
  flex: 0 0 auto;
  background: url(../img/book-check.svg) no-repeat 0 7px/48px 40px;
  padding-left: 62px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.book li:first-child {
  flex-basis: 100%;
  margin-bottom: 36px;
}
.book li:last-child {
  margin-left: 32px;
}
.book .btn {
  margin-top: 54px;
  text-align: center;
}
.book .btn a {
  display: inline-block;
}
@media (any-hover: hover) {
  .book .btn a:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .book .btn a:active {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .book {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 28px;
    padding: 40px 0 24px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  }
  .book h2 {
    text-align: center;
    font-size: min(3.4rem, 7.6266vw);
  }
  .book h2 .txt01 {
    font-size: min(5.1rem, 11.272vw);
  }
  .book h2 .txt02 {
    font-size: min(4.5rem, 10.133vw);
  }
  .book h2 em {
    font-size: min(5.8rem, 13.05866vw);
    padding-left: 0.44em;
  }
  .book .thumb {
    position: static;
    width: 84.2667%;
    margin: 14px auto 12px;
  }
  .book ul {
    margin: 0 0 0 13.33%;
    font-size: min(1.6rem, 3.5467vw);
  }
  .book li {
    background-size: 24px 20px;
    background-position: 0 2px;
    padding-left: 32px;
    text-underline-offset: 2px;
  }
  .book li:first-child {
    margin-bottom: 16px;
  }
  .book li:last-child {
    margin-left: 3.7333vw;
  }
  .book .btn {
    margin-top: 15px;
  }
  .book .btn a {
    display: block;
    width: 82.9333%;
    margin: 0 auto;
  }
}

.sns h2 {
  font-size: 3.2rem;
  color: #b34993;
}
.sns h2::before, .sns h2::after {
  top: -15px;
}
.sns .fbWrap {
  width: 100%;
  padding: 90px 0 82px;
  margin-top: 36px;
  background: linear-gradient(90deg, rgba(243, 197, 111, 0.5) 0%, rgba(221, 102, 151, 0.5) 52%, rgba(198, 122, 172, 0.5) 99%);
  text-align: center;
}
.sns .fbWrap .inner {
  width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  box-shadow: 10px 10px 15px rgba(145, 92, 163, 0.34);
}
.sns .fbWrap .inner::before, .sns .fbWrap .inner::after {
  content: "";
  position: absolute;
  width: 106.0513%;
  height: 106.6835%;
  border: 2px solid #fff;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  pointer-events: none;
}
.sns .fbWrap .inner::after {
  rotate: 5deg;
}
.sns .fbWrap a {
  display: inline-block;
}
.sns .fbWrap .flower01 {
  width: 32.2382%;
  position: absolute;
  z-index: -1;
  left: -23.1006%;
  bottom: 7.9747%;
}
.sns .fbWrap .flower01 img {
  box-shadow: none;
}
.sns .fbWrap .flower02 {
  width: 31.7248%;
  position: absolute;
  z-index: -1;
  right: -23.1006%;
  top: 10.1266%;
}
.sns .fbWrap .flower02 img {
  box-shadow: none;
}
.snsInfo {
  width: 1495px;
  margin: 150px auto 60px;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.snsInfo > div {
  flex: 0 0 auto;
  background-color: #fff;
  padding: 18px 0 24px;
  border: 1px solid;
  position: relative;
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.snsInfo > div::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 138px;
  width: 89px;
  height: 78px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.snsInfo h3 {
  position: relative;
  z-index: 1;
}
.snsInfo .row {
  display: flex;
  align-items: center;
  margin: 35px auto 26px;
}
.snsInfo .item {
  flex: 0 0 auto;
  position: relative;
  z-index: 0;
}
.snsInfo .item::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: 267px;
  height: 268px;
  background: url(../img/sns-bg.png) no-repeat center center;
}
.snsInfo .item:nth-child(-n+2)::before {
  display: none;
}
.snsInfo .item:nth-child(2) {
  border-radius: 8px;
  border: 1px solid;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
.snsInfo .link {
  margin-top: auto;
  position: relative;
}
.snsInfo .link a {
  display: inline-block;
  cursor: pointer;
}
.sns .line {
  flex-basis: 895px;
  border-color: #00a75b;
}
.sns .line::before {
  background-image: url(../img/line-ribbon.svg);
}
.sns .line .item:nth-child(2) {
  border-color: #22ac38;
  margin-left: 20px;
  padding: 4px;
}
.sns .line .item:nth-child(3) {
  margin-left: 42px;
}
.sns .line .item:nth-child(4) {
  margin-left: 64px;
}
.sns .fb {
  flex-basis: 570px;
  border-color: #036eb8;
}
.sns .fb::before {
  background-image: url(../img/fb-ribbon.svg);
}
.sns .fb h3 {
  padding-top: 25px;
  padding-bottom: 10px;
}
.sns .fb .row {
  margin-bottom: 10px;
}
.sns .fb .item:nth-child(2) {
  border-color: #036eb8;
  margin-left: 15px;
}
.sns .fb .item:nth-child(3) {
  margin-left: 20px;
}
@media (any-hover: hover) {
  .sns .fbWrap a:hover {
    opacity: 0.7;
  }
  .snsInfo .link a:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .sns .fbWrap a:active {
    opacity: 0.7;
  }
  .snsInfo .link a:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .sns h2 {
    margin-top: 28px;
    font-size: inherit;
  }
  .sns h2::before, .sns h2::after {
    top: inherit;
  }
  .sns .fbWrap {
    overflow: hidden;
    margin-top: 28px;
    padding: 36px 0 42px;
  }
  .sns .fbWrap .inner {
    width: 82.1333%;
    height: 66.8vw;
    max-height: 406px;
    box-shadow: 3px 3px 5px rgba(145, 92, 163, 0.34);
  }
  .sns .fbWrap .inner::before, .sns .fbWrap .inner::after {
    border-width: 1px;
  }
  .sns .fbWrap .flower01 {
    width: 91px;
    left: -42px;
    bottom: 13.5729%;
  }
  .sns .fbWrap .flower02 {
    width: 91px;
    scale: -1 1;
    right: -41px;
    top: 31.1377%;
  }
  .snsInfo {
    display: block;
    width: 100%;
    margin-top: 54px;
    margin-bottom: 50px;
  }
  .snsInfo > div {
    display: block;
    width: 94%;
    margin: 0 auto;
    padding: 22px 0 18px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  }
  .snsInfo > div::before {
    width: 45px;
    height: 39px;
  }
  .snsInfo h3 {
    margin: 0 auto;
  }
  .snsInfo .row {
    margin: 6px auto 10px;
    justify-content: center;
  }
  .snsInfo .row .item::before {
    width: 35.7333vw;
    height: 35.7333vw;
    background-size: 100% auto;
  }
  .snsInfo .row .item:nth-child(2) {
    border-radius: 4px;
    width: 12.3404%;
  }
  .snsInfo .link {
    margin: 0 auto;
  }
  .snsInfo .line::before {
    right: 63.4043%;
  }
  .snsInfo .line h3 {
    width: 83.6879%;
  }
  .snsInfo .line .row {
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    height: calc(24.5333vw + 4px);
  }
  .snsInfo .line .item:nth-child(1) {
    width: 13.4752%;
  }
  .snsInfo .line .item:nth-child(2) {
    margin-top: 4px;
    margin-left: 0;
  }
  .snsInfo .line .item:nth-child(3) {
    width: 24.6809%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 6.6667%;
  }
  .snsInfo .line .item:nth-child(4) {
    width: 17.3475%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 9.2199%;
  }
  .snsInfo .line .link {
    width: 62.4113%;
  }
  .snsInfo .fb {
    margin-top: 54px;
  }
  .snsInfo .fb::before {
    right: 26.383%;
  }
  .snsInfo .fb h3 {
    padding: 0;
    width: 44.3972%;
  }
  .snsInfo .fb .link {
    width: 72.3404%;
  }
  .snsInfo .fb .row {
    margin-top: 25px;
    margin-bottom: 18px;
  }
  .snsInfo .fb .item:nth-child(1) {
    flex-basis: 14.1844%;
  }
  .snsInfo .fb .item:nth-child(2) {
    flex-basis: auto;
    margin-left: 5px;
  }
  .snsInfo .fb .item:nth-child(3) {
    flex-basis: 36.0284%;
    margin-left: 6px;
  }
}

[id=office] {
  margin-top: calc(var(--hdHeight) * -1);
  padding-top: var(--hdHeight);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  color: #898989;
}
[id=office] .map {
  width: 100%;
  height: 636px;
  position: relative;
}
[id=office] .map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
[id=office] h2 {
  margin-top: 70px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 4rem;
}
[id=office] h2 span {
  margin-bottom: 40px;
  display: block;
}
[id=office] .postalCode {
  display: inline-block;
  margin-right: 0.5em;
}
[id=office] .fax {
  display: inline-block;
  margin-left: 1em;
}
[id=office] .contactbox {
  margin-top: 55px;
  background: linear-gradient(90deg, #f3c56f 0%, #dc9189 23%, #dd6697 52%, #cb6f9e 78%, #c67aac 99%);
  padding: 58px 0 28px;
  color: #fff;
}
[id=office] .contactbox a {
  text-decoration: none;
}
[id=office] .contactbox [id=telTtl] {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.43em 1.8em;
  border-radius: 8px;
  background-color: #d11c67;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  font-size: 3.1rem;
  letter-spacing: 0.14em;
}
[id=office] .contactbox .tel {
  font-family: "Noto Serif JP", serif;
  font-size: 8.7rem;
}
@media (any-hover: hover) {
  [id=office] .contactbox a:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  [id=office] .contactbox a:active {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  [id=office] {
    font-size: 1.2rem;
  }
  [id=office] .map {
    height: 84.8vw;
  }
  [id=office] h2 {
    margin-top: 25px;
    font-size: 4.5877vw;
  }
  [id=office] h2 span {
    width: 38.533305%;
    margin: 0 auto 20px;
  }
  [id=office] .contactbox {
    margin-top: 25px;
    padding-top: 42px;
  }
  [id=office] .contactbox [id=telTtl] {
    border-radius: 5px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-size: 4.6126vw;
  }
  [id=office] .contactbox .tel {
    font-size: 7.202vw;
  }
}

/* ----------------------------------------------
 * * footoer
 * *----------------------------------------------*/
footer {
  background-color: #dcdddd;
  padding: 36px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: #595757;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 8px;
    font-size: 1rem;
  }
}