@charset "UTF-8";
/*-------------------------------------------
共通クラス
-------------------------------------------*/
body {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #333a3f;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*-------------------------------------------
共通のパーツ
-------------------------------------------*/
/* ここから記述します。 */
.sp--show {
  display: none;
}
@media screen and (max-width: 821px) {
  .sp--show {
    display: block;
  }
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
html {
  scroll-behavior: smooth;
}

.header {
  width: 100%;
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
@media screen and (max-width: 821px) {
  .header {
    height: 72px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 95.3125%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 821px) {
  .header__inner {
    width: 85.7142857143%;
  }
}

@media screen and (max-width: 821px) {
  .header__nav {
    display: none;
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu .header__menuList:first-child::before {
  content: "";
  border-left: none;
}

.header__menuLink {
  color: #333a3f;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-left: 30px;
}

.header__menuLink:hover {
  opacity: 0.6;
}

.header__menuList::before {
  content: "";
  border-left: 1px solid #333;
}

.header__menuBtn {
  display: inline-block;
}
.header__menuBtn .header__menuLink {
  padding: 8px 16px;
  color: #fff;
  background-color: #947860;
  border-radius: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__menuBtn .header__menuLink:hover {
  background-color: #d9d9d9;
  color: #333;
}

.header__toggleBtn {
  display: none;
}
@media screen and (max-width: 821px) {
  .header__toggleBtn {
    display: block;
    width: 42px;
    height: 24px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

.header__hamburgerLine {
  display: block;
  position: absolute;
  width: 42px;
  height: 3px;
  background-color: #947860;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__hamburgerLine:nth-child(1) {
  top: 30px;
}

.header__hamburgerLine:nth-child(2) {
  top: 42px;
}

.header__hamburgerLine:nth-child(3) {
  top: 54px;
}

.js-open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}
.js-open .header__hamburgerLine:nth-child(2) {
  -webkit-transform: translateY(-1px) rotate(45deg);
          transform: translateY(-1px) rotate(45deg);
}
.js-open .header__hamburgerLine:nth-child(3) {
  display: none;
}

.header__mask {
  background: transparent url(../image/hamburger_sp.png) no-repeat top center/cover;
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -120%;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__maskNav {
  margin-top: 80px;
  margin-left: 11.4285714286%;
  color: #947860;
  font-weight: 700;
}

.header__maskList {
  margin-top: 42px;
}

.header__maskList:first-of-type {
  margin-top: 0;
}

.header__maskList:last-of-type {
  margin-top: 48px;
}

.header__maskWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__maskLink--sns:first-of-type {
  width: 33px;
  height: 30px;
}

.header__maskLink--sns:last-of-type {
  width: 33.25px;
  height: 33.25px;
}

.js-open .header__mask {
  right: 0;
  z-index: 10;
}

html {
  scroll-behavior: smooth;
}

.main {
  margin-bottom: 200px;
}

/*-------------------------------------------
スライドレイアウト
-------------------------------------------*/
.slide {
  position: relative;
  width: 100%;
  height: 760px;
}
@media screen and (min-width: 1440px) {
  .slide {
    height: 850px;
  }
}

.slide__inner {
  overflow-x: hidden;
  overflow-y: visible;
}

.slide__item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: slider 15s infinite;
          animation: slider 15s infinite;
}
@media screen and (min-width: 1440px) {
  .slide__item {
    height: 90%;
  }
}
@media screen and (max-width: 821px) {
  .slide__item {
    max-width: 100%;
    height: 70%;
    width: auto;
    z-index: 10;
    top: 40px;
    left: 25px;
  }
}
@media screen and (max-width: 499px) {
  .slide__item {
    height: 35%;
    width: auto;
  }
}

.slide__item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.slide__item:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.slide__item:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.slide__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top left;
     object-position: top left;
}

/*スライドのアニメーション*/
@-webkit-keyframes slider {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.slide__titleWrap {
  display: block;
  position: absolute;
  top: 800px;
  right: 40%;
}
@media screen and (max-width: 821px) {
  .slide__titleWrap {
    top: 120%;
    width: 80%;
    left: 30px;
  }
}
@media screen and (max-width: 499px) {
  .slide__titleWrap {
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    top: 92%;
  }
}

.slide__titleWrap p {
  display: block;
  font-size: 24px;
  font-weight: 300;
  line-height: 0.6;
  color: #D0B472;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 821px) {
  .slide__titleWrap p {
    font-size: 20px;
    letter-spacing: 0.07em;
    line-height: 0.6;
  }
}
@media screen and (max-width: 499px) {
  .slide__titleWrap p {
    font-size: 18px;
  }
}

/*-------------------------------------------
firstview
-------------------------------------------*/
.firstview__img {
  background-size: cover;
  background-position: relative;
  min-width: 1200px;
}

.img-box {
  width: 1046px;
  margin-left: auto;
  padding-right: 100px;
  padding-top: 120px;
  padding-left: 100px;
}
@media screen and (min-width: 1440px) {
  .img-box {
    width: 1200px;
  }
}
@media screen and (max-width: 1100px) {
  .img-box {
    width: 950px;
    padding-left: 10%;
    padding-right: 0;
  }
}
@media screen and (max-width: 821px) {
  .img-box {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    padding: 40px 0;
  }
}

.firstView {
  width: 100%;
  display: block !important;
}

.firstView-sp {
  display: none !important;
  position: absolute;
}
@media screen and (max-width: 499px) {
  .firstView-sp {
    width: 80%;
    height: auto;
    min-height: 590px;
  }
}

@media only screen and (max-width: 820px) {
  .firstView {
    display: none !important;
  }
  .firstView-sp {
    display: block !important;
    width: inherit;
  }
}
.slide__h1-title {
  font-family: "Roboto Flex", sans-serif;
  position: absolute;
  bottom: 40px;
  right: 100px;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-align: right;
  z-index: 1;
  color: #947860;
}
@media screen and (max-width: 1100px) {
  .slide__h1-title {
    right: 0;
    bottom: 30px;
  }
}
@media screen and (max-width: 821px) {
  .slide__h1-title {
    position: absolute;
    right: 0;
    bottom: -125px;
  }
}
@media screen and (max-width: 499px) {
  .slide__h1-title {
    position: absolute;
    font-size: 40px;
    bottom: 74px;
  }
}
.slide__h1-title::before {
  content: "";
  width: 272px;
  height: 70px;
  display: inline;
  background-color: #947860;
  position: absolute;
  background-color: #fff0f0;
  z-index: -1;
  margin-left: -30px;
}
@media screen and (max-width: 1100px) {
  .slide__h1-title::before {
    width: 74.5%;
  }
}

.firstView-title {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  height: 20%;
}

.bubble {
  background-size: cover;
  position: absolute;
  z-index: -20;
}

.bubble-left {
  top: 0;
}
@media screen and (max-width: 821px) {
  .bubble-left {
    width: 60%;
  }
}

.bubble-right {
  bottom: -10%;
  right: 0;
}
@media screen and (max-width: 821px) {
  .bubble-right {
    width: 60%;
    bottom: -25%;
  }
}
@media screen and (max-width: 499px) {
  .bubble-right {
    width: 75.5%;
    bottom: -10%;
    bottom: 0;
  }
}

.bubble1 {
  background-size: contain;
  z-index: -20;
  width: 100%;
  height: 100%;
}

.bubble2 {
  background-size: contain;
  z-index: -20;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------
「works」レイアウト
-------------------------------------------*/
.works__inner {
  display: block;
  position: relative;
}

.river1 {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: -28%;
  z-index: -20;
}

.river-sp1 {
  display: none !important;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -20;
  margin-top: -150px;
}

@media only screen and (max-width: 820px) {
  .river1 {
    display: none !important;
  }
  .river-sp1 {
    display: block !important;
  }
}
.works__Title {
  font-family: "Roboto Flex", sans-serif;
  margin-top: 260px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.4em;
  font-weight: 300;
  line-height: 24px;
  color: #947860;
}
@media screen and (max-width: 821px) {
  .works__Title {
    margin-top: 300px;
  }
}
@media screen and (max-width: 499px) {
  .works__Title {
    margin-top: 160px;
  }
}

.works__Title-sub {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 20px;
  color: #947860;
}
@media screen and (max-width: 821px) {
  .works__Title-sub {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 499px) {
  .works__Title-sub {
    margin-bottom: 3rem;
  }
}

.works__Text {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 200;
  line-height: 24px;
  color: #947860;
}
@media screen and (max-width: 821px) {
  .works__Text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 821px) and (max-width: 499px) {
  .works__Text {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 20px;
  }
}

.dot {
  display: block;
  margin-top: 10px;
  margin-left: 55.5%;
  margin-bottom: 100px;
}

.works__grid {
  margin: 80px 150px 0;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 354px));
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1100px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 821px) {
  .works__grid {
    margin: 40px auto 0;
  }
}

.works__gridCard {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .works__gridCard {
    height: auto;
    margin-bottom: 47px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.works__gridImage {
  max-width: 354px;
}
@media screen and (max-width: 821px) {
  .works__gridImage {
    margin: 0 auto;
  }
}

.works__gridBtn {
  position: absolute;
  bottom: 80px;
  right: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1100px) {
  .works__gridBtn {
    left: 40%;
  }
}
@media screen and (max-width: 821px) {
  .works__gridBtn {
    left: 32%;
  }
}

/*-------------------------------------------
「ABOUT」レイアウト
-------------------------------------------*/
.about__inner {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.about__title {
  font-family: "Roboto Flex", sans-serif;
  margin-top: 150px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.4em;
  font-weight: 300;
  line-height: 24px;
  color: #947860;
}

.about__titleSub {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 20px;
  color: #947860;
}

.about__titleWrap {
  position: relative;
  width: 100%;
  height: auto;
}

.about__textwrap {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 499px) {
  .about__textwrap {
    width: 100%;
    height: 700px;
  }
}

.about__background-img {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -10;
}

.about__Image-container {
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1100px) {
  .about__Image-container {
    width: 180px;
    height: 180px;
  }
}

.about__Text-container {
  color: #947860;
  font-size: 16px;
  font-weight: 200;
  text-align: left;
}

.container {
  height: 339px;
  border: 1px solid #fff3d8;
  background-color: #fff3d8;
  border-radius: 30px 30px 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 890px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 40px 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 821px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    padding: 40px 40px;
    height: 550px;
  }
}
@media screen and (max-width: 499px) {
  .container {
    height: 680px;
  }
}

.about__flex {
  background: url(../image/aboutimg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
}
@media screen and (max-width: 499px) {
  .about__flex {
    width: 100%;
    height: 750px;
  }
}

.river2 {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: -17%;
  z-index: -20;
}

.river-sp2 {
  display: none !important;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -20;
  margin-top: -80px;
}

@media only screen and (max-width: 820px) {
  .river2 {
    display: none !important;
  }
  .river-sp2 {
    display: block !important;
  }
}
/*-------------------------------------------
「flow」レイアウト
-------------------------------------------*/
.flow__inner {
  display: block;
  position: relative;
}

.flow__Text {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 200;
  line-height: 24px;
  color: #947860;
  margin-bottom: 60px;
}
@media screen and (max-width: 499px) {
  .flow__Text {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 821px) {
  .flow-title--sp {
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
  }
}

.river3 {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 0;
  z-index: -20;
}

.river-sp3 {
  display: none !important;
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: -20;
  margin-top: 500px;
}

@media only screen and (max-width: 820px) {
  .river3 {
    display: none !important;
  }
  .river-sp3 {
    display: block !important;
  }
}
.flow__Title {
  font-family: "Roboto Flex", sans-serif;
  margin-top: 260px;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.4em;
  font-weight: 300;
  line-height: 24px;
  color: #947860;
}

.flow__Title-sub {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 20px;
  color: #947860;
}

.flow__titleWrap {
  position: relative;
  display: block;
}

.flow__grid {
  margin: 80px auto 80px;
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 821px) {
  .flow__grid {
    margin: 13px 0 0 0;
    grid-template-columns: 1fr;
    max-width: 1060px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 499px) {
  .flow__grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flow__grid2 {
  grid-column: 1/4;
  grid-row: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 130px;
}
@media screen and (max-width: 821px) {
  .flow__grid2 {
    margin: 13px 0 0 0;
    grid-template-columns: 1fr;
    max-width: 1060px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 13%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.flow__gridCard {
  position: relative;
  width: 220px;
  height: auto;
}
@media screen and (max-width: 821px) {
  .flow__gridCard {
    height: auto;
    margin-bottom: 47px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 450px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridCard {
    width: 100%;
  }
}

.flow__gridImage-1 {
  max-width: 354px;
  padding-left: 50px;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridImage-1 {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridImage-1 {
    margin: 32px auto;
  }
}

.flow__gridImage-2 {
  max-width: 354px;
  padding-left: 20px;
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridImage-2 {
    margin: 0 15px 0 -20px;
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridImage-2 img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.flow__gridImage-3 {
  max-width: 354px;
  padding-left: 50px;
  grid-column: 3;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridImage-3 {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridImage-3 {
    margin: 32px auto;
  }
}

.flow__gridImage-4 {
  max-width: 354px;
  padding-left: 50px;
}
@media screen and (max-width: 821px) {
  .flow__gridImage-4 {
    margin: 0 auto;
    width: 85%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridImage-4 img {
    -o-object-fit: contain;
       object-fit: contain;
    margin-right: 20px;
  }
}

.flow__gridImage-5 {
  max-width: 354px;
  padding-left: 50px;
}
@media screen and (max-width: 821px) {
  .flow__gridImage-5 {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridImage-5 img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media screen and (max-width: 821px) {
  .flow__gridImage {
    width: 300px;
  }
}
@media screen and (max-width: 821px) {
  .flow__gridImage img {
    width: inherit;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.flow__gridTitle-1 {
  position: absolute;
  margin-top: 10px;
  margin-left: 100px;
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridTitle-1 {
    display: none;
  }
}

.flow__gridTitle-2 {
  position: absolute;
  margin-top: 10px;
  margin-left: 66px;
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridTitle-2 {
    display: none;
  }
}

.flow__gridTitle-3 {
  position: absolute;
  margin-top: 10px;
  margin-left: 100px;
  grid-column: 3;
  grid-row: 1;
}
@media screen and (max-width: 821px) {
  .flow__gridTitle-3 {
    display: none;
  }
}

.flow__gridTitle-4 {
  position: absolute;
  margin-top: 10px;
  margin-left: 100px;
}
@media screen and (max-width: 821px) {
  .flow__gridTitle-4 {
    display: none;
  }
}

.flow__gridTitle-5 {
  position: absolute;
  margin-top: 10px;
  margin-left: 100px;
}
@media screen and (max-width: 821px) {
  .flow__gridTitle-5 {
    display: none;
  }
}

.flow__gridText {
  margin: 8px 2px 20px 7px;
  color: #947860;
  font-size: 16px;
  font-weight: 200;
}
@media screen and (max-width: 821px) {
  .flow__gridText {
    width: 409px;
    margin: 9px auto 20px;
    padding: 10px;
  }
}
@media screen and (max-width: 499px) {
  .flow__gridText {
    width: 100%;
  }
}

/*-------------------------------------------
contactレイアウト
-------------------------------------------*/
.contact__inner {
  position: relative;
}

.contactbubble {
  background-size: cover;
  position: absolute;
  z-index: -20;
}

.contactbubble-left {
  position: absolute;
  top: -4%;
  right: 60%;
  z-index: -20;
  max-width: 380px;
}

.contactbubble-right {
  position: absolute;
  left: 60%;
  max-width: 450px;
  bottom: 30px;
  z-index: -20;
}

.bubble3 {
  background-size: contain;
  z-index: -20;
  width: 100%;
  height: auto;
  margin: -150px 100px;
}

.bubble4 {
  background-size: contain;
  z-index: -20;
  width: 100%;
  height: auto;
  margin-right: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact-form {
  width: 90%;
  max-width: 600px;
  margin: auto;
  border-radius: 10px;
  text-align: left;
  margin-bottom: 30px;
}

label {
  display: block;
  margin-top: 10px;
  color: #947860;
}

input, textarea {
  width: 100%;
  padding: 7px;
  margin-top: 5px;
  border: 1px solid #947860;
  background-color: #f7f2f0;
  border-radius: 15px;
  font-size: 12px;
}

textarea {
  resize: vertical;
  height: 130px;
}

.form-button {
  background-color: #947860;
  color: white;
  border: none;
  padding: 10px;
  width: 30%;
  margin-top: 25px;
  border-radius: 23px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  margin-left: 35%;
}

.form-button:hover {
  background-color: #d9d9d9;
  color: #fff;
}

/*除算用にmathモジュールをインポート*/
/* ここから記述します。 */
/*-------------------------------------------
contentsレイアウト
-------------------------------------------*/
@media screen and (max-width: 499px) {
  .contents {
    margin-bottom: 10px;
  }
}

.contents__area {
  position: relative;
}

.contents__inner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
@media screen and (max-width: 821px) {
  .contents__inner {
    margin-top: -50px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 499px) {
  .contents__inner {
    margin-top: 5px;
    margin-left: 30px;
    margin-right: 30px;
  }
}

.river4 {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: -35%;
  z-index: -20;
}
@media screen and (max-width: 821px) {
  .river4 {
    width: 100%;
    height: auto;
    margin-top: -35%;
    z-index: -20;
  }
}

.river-sp4 {
  display: none !important;
  background-size: cover;
  position: relative;
  width: 100%;
  height: auto;
  z-index: -20;
  margin-top: -175px;
}

@media only screen and (max-width: 820px) {
  .river4 {
    display: none !important;
  }
  .river-sp4 {
    display: block !important;
  }
}
.river5 {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: -40%;
  z-index: -20;
}
@media screen and (max-width: 821px) {
  .river5 {
    width: 100%;
    height: auto;
    margin-top: -60%;
    z-index: -20;
  }
}

.river-sp5 {
  display: none !important;
  background-size: cover;
  position: relative;
  width: 100%;
  height: auto;
  z-index: -20;
  margin-top: -339px;
}
@media screen and (max-width: 821px) {
  .river-sp5 {
    background-size: cover;
    position: relative;
    width: 100%;
    height: auto;
    z-index: -20;
    margin-top: -480px;
  }
}
@media screen and (max-width: 499px) {
  .river-sp5 {
    background-size: cover;
    position: relative;
    width: 100%;
    height: auto;
    z-index: -20;
    margin-top: -330px;
  }
}

@media only screen and (max-width: 820px) {
  .river5 {
    display: none !important;
  }
  .river-sp5 {
    display: block !important;
  }
}
.contents-img {
  display: inline-block;
  margin-top: 40%;
}
@media screen and (max-width: 499px) {
  .contents-img {
    margin-top: 70%;
  }
}

.contents__title {
  display: block;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 24px;
  color: #947860;
}
@media screen and (max-width: 499px) {
  .contents__title {
    font-size: 20px;
  }
}

.contents__text {
  display: block;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-size: 16px;
  color: #947860;
}

.contents__button {
  display: block;
  background-color: #947860;
  color: white;
  border: none;
  padding: 10px;
  width: 200px;
  margin-top: 25px;
  margin-left: auto;
  border-radius: 23px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 499px) {
  .contents__button {
    margin-left: 0;
  }
}

.contents__button:hover {
  background-color: #d9d9d9;
  color: #fff;
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer__wrapper {
  width: 100%;
}

.footer__inner {
  background-color: #eae4f1;
  height: 131px;
  padding: 20px;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__menu .footer__menuList:first-child::before {
  content: "";
  border-left: none;
}
@media screen and (max-width: 499px) {
  .footer__menu {
    gap: 7px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.footer__menuList::before {
  content: "";
  border-left: 1px solid #333;
}

.footer__menuLink {
  color: #333;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-left: 30px;
}
@media screen and (max-width: 499px) {
  .footer__menuLink {
    padding-left: 16px;
  }
}

.footer__menuList:first-child .footer__menuLink {
  padding-left: 0;
}

.footer__copyright {
  text-align: center;
  padding-top: 20px;
}