@charset "utf-8";

body {
  font-size: 18px;
}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
main::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 180px;
  height: 180px;
  background-image: url(../img/salon-logo/lemon_can_day_logo_mark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: opacity(0.6);
}

/* メインメニュー */
.mainNav {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
}
.mainNav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
}
.mainNav li button {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  position: relative;
}
.mainNav li button::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: calc(50% + 15px);
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: #6e6360;
  border-radius: 100px;
  transition: width 0.2s;
}
.mainNav li button:hover::before {
  width: calc(100% - 20px);
}
.mainNav li button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  background-image: url(../img/design-item/arrow_right_24dp_6E6360_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
/* ナビ表示ボタン */
.navControlBtn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  z-index: 100;
  width: 60px;
  height: 60px;
  background-color: #6e6360;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  display: none;
}
.navControlBtn .border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background-color: #fff;
  opacity: 1;
  transition: top 0.5s, transform 0.5s, opacity 0.5s;
}
.navControlBtn .border.border01 {
  top: calc(((100% / 4) * 1) + 5px);
}
.navControlBtn .border.border03 {
  top: calc(((100% / 4) * 3) - 5px);
}

@keyframes floating {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 5px);
  }
}

/* トップコンテンツ */
.salonImage {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: calc(var(--dvh, 1vh) * 100);
  overflow: hidden;
}
main .salonImage picture {
  display: block;
  width: 600px;
  min-width: 600px;
  height: 600px;
  opacity: 1;
  transition: width 0.3s, height 0.3s, opacity 0.5s;
}
main .salonImage .circleDesign {
  position: relative;
  z-index: 1;
}
@keyframes scrollCircle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-1800deg);
  }
}
main .salonImage .circleDesign::before {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -90px;
  z-index: -1;
  width: 110%;
  height: 110%;
  background-image: url(../img/home-item/scroll-item.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  animation-name: scrollCircle;
  animation-duration: 180s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
}
main picture img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  overflow: hidden;
}
main .topContentsDesign {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--dvh, 1vh) * 100);
}
main .designContainer {
  width: 100%;
  height: 100%;
  padding-top: 110px;
  position: relative;
}
main .designContainer::before {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -205px;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 100%;
  background-color: #93b888;
  animation-name: floating;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
main .topContentsDesign .textDesign {
  position: absolute;
  top: 35%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  z-index: 1;
}
main .topContentsDesign .textDesign p {
  padding-left: 10px;
  line-height: 1.5;
  opacity: 0.6;
  white-space: nowrap;
  font-size: 30px;
}
main .topContentsDesign .salonName {
  width: 100%;
  max-width: 650px;
  height: 110px;
  object-fit: cover;
}

/* セクション */
section {
  padding: 90px 0 260px;
  overflow: hidden;
}
section .sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 100px 0;
}
section h2 {
  display: inline-block;
  height: 50px;
  font-size: 36px;
  position: relative;
}
section h2::before {
  content: '';
  position: absolute;
  top: -45px;
  right: -40px;
  width: 60px;
  height: 60px;
  background-image: url(../img/home-item/home-item-01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #6e6360;
  border-radius: 100px;
}
section .constents {
  padding: 0 5%;
}
section .constents h3 {
  max-width: 680px;
  padding-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}
section .constents .textContents {
  max-width: 680px;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
section .constents p {
  margin-top: 20px;
  line-height: 1.5;
}
section .constents p span {
  margin: 0 5px;
  font-size: 22px;
  font-weight: 700;
  text-shadow: 2px 2px 0 #FFECA1;
}

/* サービス概要 */
.serviceSec {
  width: 100%;
  min-height: calc(var(--dvh, 1vh) * 100);
}
.serviceSec .subscriptionConstent {
  padding-top: 30px;
}
.serviceSec h2::before {
  background-image: url(../img/home-item/home-item-01.svg);
}
.serviceSec .conceptContent .textContents::before {
  content: '';
  position: absolute;
  bottom: -175px;
  right: -225px;
  z-index: -1;
  width: 320px;
  height: 320px;
  background-color: #FFECA1;
  border-radius: 100%;
  animation-name: floating;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.serviceSec .subscriptionConstent .textContents::before {
  content: '';
  position: absolute;
  bottom: -250px;
  left: -60px;
  z-index: -1;
  width: 320px;
  height: 320px;
  background-color: #93b888;
  border-radius: 100%;
  animation-name: floating;
  animation-duration: 3s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}
.serviceSec .constents .note {
  font-size: 14px;
}

/* 料金 */
.priceSec h2::before {
  background-image: url(../img/home-item/home-item-02.svg);
}
.priceSec .priceText {
  position: absolute;
  top: -145px;
  right: 0;
  transform: rotate(15deg);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  font-size: 26px;
  font-weight: 700;
}
.priceSec .priceText::before {
  content: '';
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 200px;
  height: 200px;
  background-image: url(../img/home-item/home-item-03.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
}
.priceSec .priceText::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 3px;
  background-color: #FFECA1;
}
.priceSec .text03 {
  margin-top: 55px;
}

/* メニュー */
.menuSec .constents {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.menuSec .optionMenu {
  padding-top: 95px;
}
.menuSec .subscriptionMenu::before {
  content: '';
  position: absolute;
  bottom: 70px;
  right: 0;
  z-index: -1;
  width: 420px;
  height: 420px;
  background-image: url(../img/home-item/salon-images-04.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}
.menuSec .optionMenu::before {
  content: '';
  position: absolute;
  bottom: 170px;
  right: 0;
  z-index: -1;
  width: 420px;
  height: 420px;
  background-image: url(../img/home-item/salon-images-05.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}
.menuSec h2::before {
  top: -20px;
  right: -25px;
  width: 35px;
  height: 35px;
  background-image: url(../img/home-item/home-item-04.svg);
}
.menuSec .subscriptionMenu::after {
  content: '';
  position: absolute;
  top: 65px;
  right: 5px;
  z-index: -1;
  width: 320px;
  height: 320px;
  background-color: #FFECA1;
  border-radius: 100%;
  animation-name: floating;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.menuSec .optionMenu::after {
  content: '';
  position: absolute;
  bottom: 45px;
  right: 65px;
  z-index: -2;
  width: 320px;
  height: 320px;
  background-color: #93b888;
  border-radius: 100%;
  animation-name: floating;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}
.menuSec .subscriptionMenu h3 {
  position: relative;
}
.menuSec .subscriptionMenu h3 span {
  position: absolute;
  bottom: -10px;
  right: -25px;
  transform: rotate(10deg);
  text-align: center;
  line-height: 1.5;
  text-shadow: 2px 2px 0 #FFECA1;
  font-size: 18px;
}
.menuSec dl {
  max-width: 680px;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.menuSec dl .row {
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 10px;
}
.menuSec dt {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 365px;
  height: 100px;
  position: relative;
}
.menuSec dt::before {
  content: '・・・';
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 100%;
}
.menuSec .subscriptionMenu dt {
  height: 180px;
}
.menuSec dd {
  margin-left: 20px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
.menuSec dd::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #6e6360;
  border-radius: 100px;
}
.menuSec dd img {
  position: absolute;
  top: 50%;
  right: -250px;
  transform: translate(0, -50%);
  width: 200px;
  height: 200px;
  border-radius: 100px;
  object-fit: cover;
}
.menuSec .row:nth-child(odd) img {
  right: -250px;
}
.menuSec .row:nth-child(even) img {
  right: -345px;
}

/* サロン詳細 */
.salonInformationSec .constents {
  position: relative;
  z-index: 1;
}
.salonInformationSec .constents::before {
  content: '';
  position: absolute;
  bottom: -260px;
  right: 55px;
  z-index: -1;
  width: 420px;
  height: 420px;
  background-image: url(../img/home-item/salon-images-03.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}
.salonInformationSec dl {
  max-width: 680px;
  margin-top: 30px;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
/* 基本情報 */
.salonInformationSec .basicInformation dt {
  display: flex;
  justify-content: start;
  align-items: end;
  height: 50px;
  padding-bottom: 5px;
  padding-left: 35px;
  font-size: 16px;
  position: relative;
}
.salonInformationSec .basicInformation .circle {
  position: absolute;
  bottom: calc(25%);
  left: 0;
  transform: translate(0, 50%);
  display: block;
  width: 30px;
  height: 30px;
  background-color: #6e6360;
  border-radius: 100px;
}
.salonInformationSec .basicInformation dd {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  min-height: 110px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(110, 99, 96, 0.2);
}
.salonInformationSec .basicInformation iframe {
  margin-top: 20px;
  border-radius: 10px;
  filter: grayscale(1);
}
.salonInformationSec .accessGuide li {
  margin-top: 10px;
  font-size: 16px;
}
.salonInformationSec .contactBtn {
  padding: 10px 20px;
  background-color: #00b900;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  color: #fff;
}

/* ギャラリー */
.gallerySec .constents {
  position: relative;
  z-index: 1;
}
.gallerySec .constents::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 30px;
  z-index: -1;
  width: 420px;
  height: 420px;
  background-image: url(../img/home-item/salon-images-02.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}
.gallerySec .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  max-width: 680px;
  min-height: 680px;
  transition: opacity 0.5s;
}
.gallerySec .gallery li {
  padding: 5px;
}
/* 一段目 */
.gallerySec .gallery li[image-id="1"] {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.gallerySec .gallery li[image-id="2"] {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.gallerySec .gallery li[image-id="3"] {
  grid-column: 3 / 5;
  grid-row: 1 / 3;
}
/* 二段目 */
.gallerySec .gallery li[image-id="4"] {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}
.gallerySec .gallery li[image-id="5"] {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}
.gallerySec .gallery li[image-id="6"] {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
/* 三段目 */
.gallerySec .gallery li[image-id="7"] {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
}
.gallerySec .gallery li[image-id="8"] {
  grid-column: 2 / 3;
  grid-row: 4 / 5;
}
.gallerySec .gallery li[image-id="9"] {
  grid-column: 3 / 4;
  grid-row: 4 / 5;
}
.gallerySec .gallery li[image-id="10"] {
  grid-column: 4 / 5;
  grid-row: 4 / 5;
}
.gallerySec .gallery img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  transition: border-radius 0.5s;
}
.gallerySec .gallery img:hover {
  border-radius: 10px;
}
/* インスタグラムへ */
.gallerySec .instagramAccess {
  display: block;
  width: 100%;
  max-width: 540px;
  margin-top: 60px;
  padding: 50px 10px;
  position: relative;
}
.gallerySec .instagramAccess::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid rgb(110, 99, 96, 0.2);
  border-radius: 100px;
  transition: top 0.5s, left 0.5s;
}
.gallerySec .instagramAccess:hover::before {
  top: 0;
  left: 0;
}
.gallerySec .instagramAccess .instagramLogo {
  display: block;
  width: 45px;
  height: 45px;
  margin-left: auto;
  margin-right: 55px;
}
.gallerySec .instagramAccess h3 {
  margin-top: 10px;
  font-size: 26px;
}
.gallerySec .instagramAccess p {
  margin: auto;
  font-size: 14px;
}

/* 利用手順 */
.JoinSec .constents {
  position: relative;
  z-index: 1;
}
.JoinSec .constents::before {
  content: '';
  position: absolute;
  bottom: 70px;
  right: 0;
  z-index: -1;
  width: 420px;
  height: 420px;
  background-image: url(../img/home-item/salon-images-06.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}
.JoinSec ol {
  max-width: 680px;
  margin-top: 30px;
  padding: 10px 10px 60px;
  background-color: #fff;
  border-radius: 10px;
}
.JoinSec ol li {
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.JoinSec ul {
  padding-top: 30px;
}
.JoinSec ul li {
  min-height: auto;
  margin-top: 10px;
}
.JoinSec .number {
  position: absolute;
  top: -80px;
  right: 0;
  transform: rotate(10deg);
  z-index: 0;
  opacity: 0.4;
  font-size: 120px;
  font-weight: 700;
}
.JoinSec h3 {
  display: inline-block;
  font-size: 22px;
  position: relative;
}
.JoinSec h3::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #6e6360;
  border-radius: 100px;
}
.JoinSec .createAccount,
.JoinSec .loginUser {
  padding-top: 65px;
  padding-bottom: 50px;
}
.JoinSec .createAccount a,
.JoinSec .loginUser a {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 260px;
  height: 60px;
  padding-left: 65px;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.JoinSec .createAccount a::before,
.JoinSec .loginUser a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: 0;
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.JoinSec .createAccount a {
  background-color: #FFECA1;
}
.JoinSec .createAccount a::before {
  background-image: url(../img/home-item/home-item-05.svg);
}
.JoinSec .loginUser a {
  background-color: #93b888;
  color: #fff;
}
.JoinSec .loginUser a::before {
  background-image: url(../img/home-item/home-item-06.svg);
}

/* アプリインストール */
.applicationSec .installGuide {
  max-width: 680px;
  margin-top: 30px;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 10px;
}
.applicationSec .installGuide ol {
  padding: 30px 0;
}
.applicationSec .installGuide .approach li {
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 35px;
  margin-top: 20px;
  padding-left: 110px;
  line-height: 1.5;
  position: relative;
}
.applicationSec .installGuide .step {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 35px;
  background-color: #FFECA1;
  border-radius: 2px;
}
.applicationSec .installGuide p {
  margin-bottom: 20px;
  font-size: 16px;
}
.applicationSec .appIcon {
  width: 120px;
  height: 120px;
  margin-left: 160px;
  position: relative;
}
.applicationSec .appIcon::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -135px;
  transform: rotate(-20deg);
  width: 110px;
  height: 110px;
  background-image: url(../img/home-item/home-item-08.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.applicationSec .appIcon img {
  width: 100%;
  height: 100%;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 10px;
  object-fit: cover;
}
.applicationSec .note {
  padding-top: 20px;
}
.applicationSec .note li {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 14px;
}

/* ホワイトニング */
.selfWhiteningSec .constents {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}
.selfWhiteningSec .whiteningMessage {
  max-width: 530px;
  margin: 30px 30px 30px 0;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.selfWhiteningSec .whiteningContents {
  padding-top: 20px;
  position: relative;
}
.selfWhiteningSec .whiteningContents::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 220px;
  height: 220px;
  background-image: url(../img/home-item/whiteningImage.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.selfWhiteningSec .images {
  width: 480px;
  height: 480px;
  border-radius: 100%;
  overflow: hidden;
}
.selfWhiteningSec .whiteningContents img {
  width: 100%;
  height: 100%;
  object-position: left;
}
.selfWhiteningSec .whiteningPageBtn {
  display: block;
  width: 100%;
  max-width: 550px;
  margin-top: 10px;
  padding: 15px 0;
  position: relative;
}
.selfWhiteningSec .whiteningPageBtn::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid rgb(110, 99, 96, 0.2);
  border-radius: 100px;
  transition: top 0.5s, left 0.5s;
}
.selfWhiteningSec .whiteningPageBtn:hover::before {
  top: 15px;
  left: -20px;
}
.selfWhiteningSec .whiteningPageBtn .whiteningLogo {
  display: block;
  width: 65px;
  height: 65px;
  padding: 5px;
  margin-left: auto;
  margin-right: 55px;
  background-color: #6e6360;
  border-radius: 100px;
  transform: rotate(0);
  transition: transform 0.5s;
}
.selfWhiteningSec .whiteningPageBtn:hover .whiteningLogo {
  transform: rotate(-15deg);
}
.selfWhiteningSec .whiteningPageBtn h4 {
  max-width: 680px;
  padding-bottom: 30px;
  font-size: 26px;
  font-weight: 700;
}
.selfWhiteningSec .whiteningPageBtn p {
  margin: auto;
  font-size: 18px;
}

/* 求人情報 */
.recruitSec .constents {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}
.recruitSec .images {
  width: 480px;
  height: 480px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.recruitSec .images picture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
}
.recruitSec .images picture.staffImage1 {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}
.recruitSec .images picture.display {
  opacity: 1;
}
.recruitSec .images picture.staffImage2 {
  z-index: 0;
}
/* 求人要件 */
.recruitSec .requirement {
  max-width: 680px;
  margin: 30px 30px 30px 0;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.recruitSec .requirement dt {
  display: flex;
  justify-content: start;
  align-items: end;
  height: 35px;
  padding-bottom: 5px;
  font-size: 16px;
}
.recruitSec .requirement dd {
  min-height: 80px;
  line-height: 1.5;
  border-bottom: 1px solid rgb(110, 99, 96, 0.2);
}
.recruitSec .requirement dd span {
  display: block;
}
/* 求人ページはこちら */
.recruitSec .recruitAccess {
  display: block;
  width: 100%;
  max-width: 540px;
  margin-top: 10px;
  padding: 15px 0;
  position: relative;
}
.recruitSec .recruitAccess::before {
  content: '';
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 4px solid rgb(110, 99, 96, 0.2);
  border-radius: 100px;
  transition: top 0.5s, left 0.5s;
}
.recruitSec .recruitAccess:hover::before {
  top: 15px;
  left: -20px;
}
.recruitSec .recruitAccess .recruitLogo {
  display: block;
  width: 65px;
  height: 65px;
  padding: 5px;
  margin-left: auto;
  margin-right: 55px;
  background-color: #6e6360;
  border-radius: 100px;
  transform: rotate(0);
  transition: transform 0.5s;
}
.recruitSec .recruitAccess:hover .recruitLogo {
  transform: rotate(-15deg);
}
.recruitSec .recruitAccess h3 {
  margin-top: 10px;
  font-size: 26px;
}
.recruitSec .recruitAccess p {
  margin: auto;
  font-size: 18px;
}

/* よくある質問 */
.qandaSec h2::before {
  top: -45px;
  right: -35px;
  transform: rotate(25deg);
  width: 60px;
  height: 60px;
  background-image: url(../img/home-item/home-item-07.svg);
}
.qandaSec .constents dl {
  max-width: 680px;
  margin: 30px auto 0;
  padding: 10px 10px 20px;
  background-color: #fff;
  border-radius: 10px;
}
.qandaSec dl .row {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgb(110, 99, 96, 0.2);
}
.qandaSec dt {
  display: flex;
  justify-content: start;
  align-items: center;
  height: 50px;
  padding-left: 65px;
  position: relative;
}
.qandaSec dt span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #FFECA1;
  border-radius: 100px;
}
.qandaSec dd {
  min-height: 60px;
  margin-top: 20px;
  padding-left: 65px;
  line-height: 1.5;
  position: relative;
}
.qandaSec dd span {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #93b888;
  border-radius: 100px;
  color: #fff;
}
.qandaSec dd .note {
  font-size: 16px;
  font-weight: 700;
}

/* バナー */
.bottomBanner {
  position: fixed;
  right: -120px;
  z-index: 100;
  width: 600px;
  height: 600px;
  padding: 55px 45px;
  background-color: #FFECA1;
  box-shadow: -2px -2px 5px -4px rgb(110, 99, 96, 0.6);
  border-radius: 100%;
}
.bottomBanner.display {
  bottom: -255px;
  visibility: visible;
  transition: bottom 0.5s 0.1s, visibility 0.1s;
}
.bottomBanner.hidden {
  bottom: -600px;
  visibility: hidden;
  transition: bottom 0.5s, visibility 0.1s 0.5s;
}
.bottomBanner h3 {
  height: 30px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.bottomBanner ul {
  display: block;
  width: 100%;
  padding-top: 20px;
}
.bottomBanner li {
  height: 120px;
}
.bottomBanner li p {
  text-align: center;
}
.bottomBanner a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 270px;
  height: 50px;
  margin: 20px auto 0;
  box-shadow: 2px 2px 5px -2px rgb(110, 99, 96, 0.6);
  border-radius: 100px;
  color: #fff;
}
.bottomBanner .createBtn {
  background-color: #93b888;
}
.bottomBanner .loginBtn {
  background-color: #6e6360;
}