@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 850px) {
  html {
    font-size: 1.8823529412vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #654D30;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.8;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #A79784;
  width: 100%;
  height: 4.375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__copyright {
  color: #fff;
  font-size: 0.875rem;
}

.l-header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  padding: 0 2.5rem;
  width: 100%;
  height: 5rem;
  z-index: 10;
  color: #fff;
  background-color: #c3d6bb;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 1.875rem;
    height: 60px;
  }
}

.l-header__logo {
  width: 10rem;
  z-index: 70;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header__nav.active {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100vh;
    width: 100%;
    background-color: #c3d6bb;
    text-align: center;
    z-index: 60;
    overflow: auto;
    -webkit-animation: appear 0.3s ease-in-out;
            animation: appear 0.3s ease-in-out;
  }
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1.25rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-header__navList {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #654d30;
    height: auto;
    width: 100%;
    margin: 40% auto 1.25rem;
  }
}

.l-header__navListItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 0.625rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__navListItem {
    font-size: 1.25rem;
    height: 2.8125rem;
    text-decoration: underline;
  }
}

.l-header__navListItem a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__navListItem:hover {
  border-bottom: 3px solid #F6C881;
  margin-top: 1px;
}
@media screen and (max-width: 767px) {
  .l-header__navListItem:hover {
    border-bottom: none;
    margin-top: 0;
  }
}

.l-header__btnLang {
  color: #fff;
  font-weight: bold;
  background-color: #d6bbbb;
  padding: 0.625rem;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}

.l-header__btnLang:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.l-header__lang.active {
  text-decoration: underline;
}

.l-header__hamburgerBtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__hamburgerBtn {
    display: block;
    position: relative; /*ボタン内側の基点となるためrelativeを指定*/
    background: #f6c881;
    cursor: pointer;
    width: 48px;
    height: 42px;
    border-radius: 5px;
    z-index: 200;
    -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
            box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
    border: 1px solid #ffb23f;
  }
}

@media screen and (max-width: 767px) {
  .l-header__hamburgerBtn span {
    position: absolute;
    display: inline-block;
    left: 9px;
    width: 60%;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}

@media screen and (max-width: 767px) {
  .l-header__hamburgerBtn span:nth-of-type(1) {
    top: 6px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__hamburgerBtn span:nth-of-type(2) {
    top: 12px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__hamburgerBtn span:nth-of-type(3) {
    top: 18px;
  }
}

.l-header__hamburgerBtn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 6px;
  left: -2px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.l-header__hamburgerBtn.active span:nth-of-type(1) {
  top: 5px;
  left: 15px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.l-header__hamburgerBtn.active span:nth-of-type(2) {
  opacity: 0;
}

.l-header__hamburgerBtn.active span:nth-of-type(3) {
  top: 18px;
  left: 15px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.l-header__hamburgerBtn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  top: 8px;
  left: 6px;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 850px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-section {
  padding: 6.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.75rem 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .l-section {
    padding: 3.75rem 0;
  }
}

.l-section--bg {
  background-color: #FFFFEE;
}

.l-section--flower {
  background: url("../images/flowerFrame.png") no-repeat center;
  background-size: cover;
  width: 100%;
  padding: 7.5rem 0;
}
@media screen and (max-width: 600px) {
  .l-section--flower {
    padding: 5rem 0;
  }
}

.c-btnCta {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 1.25rem 2.5rem;
  max-width: 18.75rem;
  width: 100%;
  height: 4.375rem;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: auto;
  /* アニメーション名の指定 */
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki;
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* アニメーションをループさせる */
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.c-btnCta:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-btnCta::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 2.5rem;
  width: 13px;
  margin: auto;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-btnCta::before {
  position: absolute;
  content: "";
  top: -0.625rem;
  left: -0.625rem;
  width: 18.75rem;
  height: 4.375rem;
  border: 1px solid #A79784;
  border-radius: 0.3125rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-btnCta:hover::before {
  top: 0;
  left: 0;
}

.c-btnCta--orange {
  background-color: #E1B471;
}

.c-btnCta--green {
  background-color: #9ECD82;
}

.c-btnCta + .c-btnCta {
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-btnCta + .c-btnCta {
    margin: auto;
    margin-top: 1.875rem;
  }
}

.c-btnMore {
  position: relative;
  display: block;
  color: #654D30;
  min-width: 12.5rem;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.625rem 1.25rem;
  margin-top: auto;
  margin-bottom: 0;
  background-color: #F6C881;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}

.c-btnMore::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #654D30;
  width: 1.25rem;
  height: 0.125rem;
  top: 40%;
  right: 1.5625rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-btnMore::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #654D30;
  width: 3.125rem;
  height: 0.125rem;
  top: 50%;
  right: 1.5625rem;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-card:hover .c-btnMore {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-card:hover .c-btnMore::before {
  right: 0.9375rem;
}

.c-card:hover .c-btnMore::after {
  right: 0.9375rem;
}

.c-btnMore--green {
  background-color: #daeada;
}

.p-aboutMe__bgSideText {
  position: relative;
  width: 100%;
  padding-top: 1.875rem;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-aboutMe__bgSideText.-long {
  padding-bottom: 100px;
}
.p-aboutMe__bgSideText.is-hide {
  overflow: hidden;
  height: 40.625rem;
}
.p-aboutMe__bgSideText.is-hide button {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15.625rem;
  color: #654d30;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.625rem;
  background-color: #C3D6BB;
  border: 2px solid #A6B89D;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
  border-radius: 0.3125rem;
}
.p-aboutMe__bgSideText.is-hide button::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #654D30;
  width: 0.9375rem;
  height: 0.125rem;
  top: 42%;
  right: 1.375rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-aboutMe__bgSideText.is-hide button::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #654D30;
  width: 1.875rem;
  height: 0.125rem;
  top: 50%;
  right: 1.5625rem;
  z-index: 100;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-aboutMe__bgSideText button {
  position: absolute;
  display: block;
  left: 50%;
  bottom: 1.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #654d30;
  margin: 9.375rem auto 0;
  padding: 0.625rem;
  background-color: #ccc;
  border-radius: 0.3125rem;
  border: none;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 25rem;
  width: 100%;
  background-color: #daeada;
  padding: 1.25rem;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}
@media screen and (max-width: 767px) {
  .c-card {
    margin: auto;
    max-width: 25rem;
  }
}

.c-card a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-card:hover .c-card__img {
  overflow: hidden;
}

.c-card:hover .c-card__img img {
  -webkit-transform: scale(1.1) translate(0, 0);
          transform: scale(1.1) translate(0, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-card__img img {
  max-width: 22.5rem;
  width: 100%;
  height: 100%;
  aspect-ratio: 1050/771;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card__text {
  padding: 1.25rem 0;
}

.c-card__workTitle {
  text-align: center;
  text-align: underline;
}

.c-card__workDetail {
  margin-top: 1.25rem;
}

.c-card__dotText {
  margin-bottom: 1.25rem;
}

.c-card__hoursText {
  margin-top: 1.25rem;
}

.c-sectionTitle {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.c-sectionTitle__text {
  position: relative;
  display: inline-block;
}

.c-sectionTitle__text::after {
  position: absolute;
  content: "";
  bottom: -0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F6C881;
  width: 60%;
  height: 3px;
}

.c-sectionTitle__leftIcon {
  position: absolute;
  top: -0.9375rem;
  left: -4.375rem;
  display: inline-block;
  background: url("../images/greenLeft.png") no-repeat;
  background-size: contain;
  width: 3.75rem;
  height: 3.75rem;
}

.c-sectionTitle__rightIcon {
  position: absolute;
  top: -1.25rem;
  right: -4.375rem;
  display: inline-block;
  background: url("../images/greenRight.png") no-repeat;
  background-size: cover;
  width: 4.375rem;
  height: 4.375rem;
}

.c-sectionTitle__leftIconSec {
  position: absolute;
  top: -1.25rem;
  left: -6.25rem;
  display: inline-block;
  background: url("../images/greenLeftSec.png") no-repeat;
  background-size: contain;
  width: 5.625rem;
  height: 5.625rem;
}

.c-sectionTitle__rightIconSec {
  position: absolute;
  top: -0.625rem;
  right: -5.625rem;
  display: inline-block;
  background: url("../images/greenRightSec.png") no-repeat;
  background-size: cover;
  width: 3.75rem;
  height: 3.75rem;
}

.c-sectionTitle__lead {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 3.125rem;
  text-align: center;
}

.p-aboutMe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-aboutMe {
    display: block;
  }
}

.p-aboutMe__imgSide {
  max-width: 20.625rem;
  width: 100%;
  margin-top: 3.75rem;
  margin-right: -1.25rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-aboutMe__imgSide {
    margin: auto;
  }
}

.p-aboutMe__imgSideText {
  font-size: 0.9375rem;
  font-weight: bold;
  width: 18.75rem;
  margin: 1.25rem auto auto 0;
  line-height: 1.75;
}

.p-aboutMe__imgSideName {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}

.p-aboutMe__img {
  width: 100%;
}

.p-aboutMe__bgSide {
  max-width: 30.625rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-aboutMe__bgSide {
    margin: auto;
    margin-top: 1.25rem;
  }
}

.p-aboutMe__bgSideText {
  font-size: 0.9375rem;
  line-height: 1.75;
  background-color: #fafabc;
  border-radius: 0.3125rem;
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-aboutMe__bgSideText {
    padding: 1.25rem;
  }
}

.p-aboutMe__why {
  display: block;
  margin: 1.25rem 0 0.625rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}

.p-btnToTop {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 3.125rem;
  right: 1.25rem;
  width: 4.375rem;
  height: 4.375rem;
  color: #fff;
  background-color: #F6C881;
  border-radius: 3.125rem;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}
@media screen and (max-width: 767px) {
  .p-btnToTop {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.p-btnToTop:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-btnToTop::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  border-top: solid 0.25rem;
  border-right: solid 0.25rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-btnToTop::after {
  content: "";
  width: 0.25rem;
  height: 1.75rem;
  display: block;
  border-top: solid 0.25rem;
  border-right: solid 0.25rem;
  position: absolute;
  top: 0.25rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 50rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-btnWrapper {
    display: block;
  }
}

.p-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.125rem;
}

.p-form__form {
  margin: auto;
}

select,
option,
input,
textarea {
  color: #654D30;
  border: 1px solid #ccc;
  background-color: #f4f4f4;
  max-width: 28.125rem;
  width: 100%;
  min-height: 2.8125rem;
}

select:focus {
  border: 2px solid #f6c881;
  outline: 0;
}

textarea {
  resize: none;
}

textarea:focus {
  border: 2px solid #f6c881;
  outline: 0;
}

input[type=text]:focus {
  border: 2px solid #f6c881;
  outline: 0;
}

th {
  text-align: left;
  padding: 0 1.25rem;
}

td {
  padding: 0.625rem 0;
}

.p-form__require {
  color: #f19499;
  font-size: 0.8125rem;
  margin-left: 0.625rem;
}

.p-form__tableItem {
  margin: 1.25rem;
}

.p-form__btnWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.875rem;
}

.p-form__btn {
  display: inline-block;
  width: 100%;
  font-size: 0.9375rem;
  max-width: 28.125rem;
  font-weight: bold;
  padding: 0.625rem 2.1875rem 0.625rem 0.625rem;
  border-radius: 0.3125rem;
  color: #654d30;
  border: 1px solid #654d30;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
}

.p-form__btn:hover {
  opacity: 0.8;
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-form__btn--confirm {
  background-color: #F6C881;
}

.p-form__btnConfirmWrapper {
  position: relative;
}

.p-form__btnConfirmWrapper::after {
  display: block;
  position: absolute;
  content: "";
  top: 40%;
  right: 0.9375rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid #654d30;
  border-right: 2px solid #654d30;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 40;
}

.p-form__policy {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.25rem auto 2.5rem;
}

.p-mv {
  background: url("../images/fv_pc.jpg");
  width: 100%;
  height: 100vh;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 600px) {
  .p-mv {
    margin-top: 3.125rem;
  }
}

.p-mv__titleWrapper {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../images/fvCircle.png") no-repeat;
  background-size: contain;
  margin: auto;
  max-width: 28.875rem;
  width: 100%;
  max-height: 28rem;
  height: 100%;
}

.p-mv__title {
  position: absolute;
  top: 38%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-size: 2.125rem;
  font-weight: bold;
}
@media screen and (max-width: 430px) {
  .p-mv__title {
    top: 30%;
  }
}

.p-mv__postit {
  position: absolute;
  top: 8.75rem;
  right: 0;
  color: #fff;
  min-height: 2.5rem;
  padding: 1.25rem 0.9375rem;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
          box-shadow: 0px 2px 4px rgba(101, 77, 48, .2);
  background-color: #a79784;
}
@media screen and (max-width: 767px) {
  .p-mv__postit {
    display: none;
  }
}

.p-mv__postit--2nd {
  top: 15rem;
  background-color: #bebb9c;
}

.p-mv__postit--3rd {
  top: 21.25rem;
  background-color: #b8a88a;
}

.p-price {
  position: relative;
  width: 100%;
  margin-top: 5rem;
  padding: 3.125rem 3.125rem 3.75rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-price {
    margin-top: 11.25rem;
    padding: 2.5rem 1.25rem;
  }
}

.p-price__note {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  right: 0;
  background: url("../images/pinkCircle.png") no-repeat;
  background-size: contain;
  width: 16.25rem;
  height: 15.375rem;
  font-size: 1.25rem;
  font-weight: bold;
  rotate: 12deg;
}
@media screen and (max-width: 767px) {
  .p-price__note {
    top: -10rem;
    width: 13.125rem;
    height: 12.5rem;
    font-size: 1rem;
    rotate: 0deg;
  }
}

.p-price__listItem + .p-price__listItem {
  margin-top: 1.25rem;
}

.p-price__listItem {
  position: relative;
  padding-left: 1.5em;
}

.p-price__listItemNote {
  margin-top: 1.5625rem;
  padding-left: 1.5em;
}

.p-price__listItem--trans {
  margin-top: 2.5rem;
}

.p-price__listItem::before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 3.125rem;
  background-color: #F6C881;
}

.p-react {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-react {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-react__text {
  width: 70%;
  line-height: 1.7;
  margin-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-react__text {
    width: 100%;
    margin-right: 0rem;
  }
}

.p-react__img {
  position: relative;
  display: block;
  max-width: 9.375rem;
  width: 100%;
  margin-top: 1.25rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 0.625rem;
  /* アニメーション名の指定 */
  -webkit-animation-name: updown1;
          animation-name: updown1;
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 767px) {
  .p-react__img {
    margin-top: 4.375rem;
    max-width: 9.375rem;
  }
}

/* アニメーション設定 */
@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-react__imgText {
  position: absolute;
  display: block;
  top: -1.25rem;
  left: -0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  white-space: nowrap;
  color: #b3e0c0;
}
@media screen and (max-width: 767px) {
  .p-react__imgText {
    top: -0.625rem;
    font-size: 0.875rem;
  }
}

.p-skills {
  background-color: #FAFABC;
  margin-top: 4.375rem;
  font-size: 1rem;
  padding: 3.125rem;
  border-radius: 1.25rem;
}

.p-skills__each + .p-skills__each {
  margin-top: 1.75rem;
}

.p-skills__skillTitle {
  font-weight: bold;
}

.p-skills__skillDetail {
  margin-top: 0.25rem;
}

.p-talk__each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-talk__each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-talk__each--rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-talk__each + .p-talk__each {
  margin-top: 3.125rem;
}

.p-talk__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-talk__icon img {
  width: 6.25rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-talk__icon img {
    width: 9.375rem;
    background-color: #fafabc;
    border-radius: 50%;
    padding: 1.25rem;
  }
}

.p-talk__textWrapper {
  max-width: 37.5rem;
  width: 100%;
  padding: 1.875rem;
  background-color: #fafabc;
  border-radius: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-talk__textWrapper {
    max-width: 100%;
    margin-top: 4.375rem;
  }
}

.p-talk__textWrapper--top {
  position: relative;
}

.p-talk__textWrapper--top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 100px 25px 0;
  border-color: transparent #fafabc transparent transparent;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-talk__textWrapper--top::before {
    border-width: 25px 25px 50px 0;
    border-color: transparent transparent #fafabc transparent;
    top: -4.375rem;
    left: 50%;
  }
}

.p-talk__textWrapper--bottom {
  position: relative;
}

.p-talk__textWrapper--bottom::before {
  content: "";
  position: absolute;
  top: 55%;
  right: -50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 100px;
  border-color: transparent transparent transparent #fafabc;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-talk__textWrapper--bottom::before {
    border-width: 25px 25px 50px 0;
    border-color: transparent transparent #fafabc transparent;
    top: -4.375rem;
    left: 50%;
  }
}

.p-talk__text {
  position: relative;
  padding-left: 1.5em;
}

.p-talk__text::before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 3.125rem;
  background-color: #F6C881;
}

.p-talk__text + .p-talk__text {
  margin-top: 0.9375rem;
}

.p-talk__textPointWrapper {
  display: block;
  width: auto;
  margin-top: 2.5rem;
  text-align: center;
}

.p-talk__textPoint {
  display: inline;
  margin-top: 1.875rem;
  font-size: 1.125rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #B6ED95));
  background: linear-gradient(transparent 50%, #B6ED95 50%);
  font-weight: bold;
}

.p-works {
  display: grid;
  width: 100%;
  margin-top: 3.125rem;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media screen and (max-width: 767px) {
  .p-works {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
