@charset "UTF-8";
@import url('https://fonts.googleapis.com/earlyaccess/hannari.css" rel="stylesheet');
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;500;700&family=Pinyon+Script&display=swap");
/*--------------------------
 ブレークポイント設定
----------------------------*/
/*--------------------------
 変数
----------------------------*/
/*--------------------------
 中央配置
----------------------------*/
/* 上下左右中央配置 */
/* 上下のみ中央配置 */
/* 左右のみ中央配置 */
/* 中央配置解除 */
/* margin auto */
/*--------------------------
 共通設定
----------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #707070;
  font-style: normal;
}
body img {
  width: 100%;
  height: auto;
}
:focus {
  outline: none;
}

.contsBlock h2 {
  text-align: center;
  font-size: 36px;
  font-family: "Hannari", serif;
  line-height: 1.8;
  margin-bottom: 75px;
}
@media (max-width: 640px) {
  .contsBlock h2 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}
.contsBlock h2 span {
  display: block;
  font-size: 20px;
}
@media (max-width: 640px) {
  .contsBlock h2 span {
    font-size: 16px;
  }
}
.contsBlock h2::after {
  content: "";
  display: block;
  background: #EBE4D3;
  width: 200px;
  height: 5px;
  margin: 10px auto 0px auto;
}

/*--------------------------
 縦線が動いてスクロールを促す
----------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*--------------------------
 メインビジュアルy
----------------------------*/
.mainVusial {
  background: url(../img/main_bg.jpg) no-repeat center right #9fc4de;
  background-size: cover;
  height: 820px;
  margin-bottom: 100px;
}
@media (max-width: 640px) {
  .mainVusial {
    background: url(../img/main_bg_sp.jpg) no-repeat center bottom #d6e7ef;
    background-size: cover;
    height: 100vh;
    margin-bottom: 50px;
  }
}
.mainVusial__inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .mainVusial__inner {
    width: 95%;
    flex-wrap: wrap;
  }
}
.mainVusial__inner__text {
  position: relative;
  width: 55%;
  height: 820px;
  font-family: "Hannari", serif;
}
@media (max-width: 640px) {
  .mainVusial__inner__text {
    width: 100%;
    height: auto;
  }
}
.mainVusial__inner__text__wrap {
  width: 100%;
  text-align: center;
  padding-top: 75px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap {
    position: absolute;
    left: auto;
    top: auto;
    transform: translate(0, 0);
    padding-top: 50px;
  }
}
.mainVusial__inner__text__wrap .tagLine {
  font-size: 20px;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap .tagLine {
    font-size: 16px;
  }
}
.mainVusial__inner__text__wrap .tagLine::after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: rgba(112, 112, 112, 0.3);
  margin: 25px auto 25px auto;
}
.mainVusial__inner__text__wrap .cathCopy {
  font-size: 32px;
  margin: 0px auto 35px auto;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap .cathCopy {
    font-size: 18px;
  }
}
.mainVusial__inner__text__wrap .cathCopy strong {
  font-size: 50px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap .cathCopy strong {
    font-size: 20px;
  }
}
.mainVusial__inner__text__wrap h1 {
  margin: 0px auto;
}
.mainVusial__inner__text__wrap h1 img {
  width: 450px;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap h1 img {
    width: 80%;
  }
}
.mainVusial__inner__text__wrap .suiteki {
  margin-top: 70px;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap .suiteki {
    margin-top: 35px;
  }
}
.mainVusial__inner__text__wrap .suiteki img {
  width: 60px;
  -webkit-animation: skew 2.3s linear infinite;
          animation: skew 2.3s linear infinite;
}
@media (max-width: 640px) {
  .mainVusial__inner__text__wrap .suiteki img {
    width: 45px;
  }
}
.mainVusial__inner__Img {
  width: 45%;
  height: 820px;
  position: relative;
}
@media (max-width: 640px) {
  .mainVusial__inner__Img {
    width: 100%;
    height: 100vh;
  }
}
.mainVusial__inner__Img .productImg01 {
  position: absolute;
  bottom: -30px;
  right: 175px;
  width: 365px;
  -webkit-animation: huwahuwa01 10s ease-in-out infinite;
          animation: huwahuwa01 10s ease-in-out infinite;
}
@media (max-width: 640px) {
  .mainVusial__inner__Img .productImg01 {
    bottom: 60px;
    left: 35px;
    right: auto;
    width: 210px;
  }
}
.mainVusial__inner__Img .productImg02 {
  position: absolute;
  top: 150px;
  right: 100px;
  width: 210px;
  -webkit-animation: huwahuwa02 6s ease-in-out infinite;
          animation: huwahuwa02 6s ease-in-out infinite;
}
@media (max-width: 640px) {
  .mainVusial__inner__Img .productImg02 {
    top: auto;
    bottom: 250px;
    left: auto;
    right: 30px;
    width: 135px;
  }
}
@-webkit-keyframes huwahuwa01 {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  25% {
    transform: translateY(-20px) rotate(-10deg);
  }
  50% {
    transform: translateY(0) rotate(-10deg);
  }
  75% {
    transform: translateY(-20px) rotate(-10deg);
  }
  100% {
    transform: translateY(0) rotate(-10deg);
  }
}
@keyframes huwahuwa01 {
  0% {
    transform: translateY(0) rotate(-10deg);
  }
  25% {
    transform: translateY(-20px) rotate(-10deg);
  }
  50% {
    transform: translateY(0) rotate(-10deg);
  }
  75% {
    transform: translateY(-20px) rotate(-10deg);
  }
  100% {
    transform: translateY(0) rotate(-10deg);
  }
}
@-webkit-keyframes huwahuwa02 {
  0% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0px) rotate(5deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes huwahuwa02 {
  0% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(0px) rotate(5deg);
  }
  100% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@-webkit-keyframes skew {
  0% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 4.2deg);
  }
  10% {
    transform: skew(-4deg, -3deg);
  }
  15% {
    transform: skew(3deg, 2.2deg);
  }
  20% {
    transform: skew(-2deg, -1.5deg);
  }
  25% {
    transform: skew(0.9deg, 0.9deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
  40% {
    transform: skew(-0.2deg, -0.2deg);
  }
  45% {
    transform: skew(0.1deg, 0.1deg);
  }
  50% {
    transform: skew(0deg, 0deg);
  }
}
@keyframes skew {
  0% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 4.2deg);
  }
  10% {
    transform: skew(-4deg, -3deg);
  }
  15% {
    transform: skew(3deg, 2.2deg);
  }
  20% {
    transform: skew(-2deg, -1.5deg);
  }
  25% {
    transform: skew(0.9deg, 0.9deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
  40% {
    transform: skew(-0.2deg, -0.2deg);
  }
  45% {
    transform: skew(0.1deg, 0.1deg);
  }
  50% {
    transform: skew(0deg, 0deg);
  }
}

/*--------------------------
 メッセージ
----------------------------*/
.message {
  position: relative;
}
.message::before {
  position: absolute;
  top: -50px;
  left: 0px;
  content: "Message";
  font-size: 250px;
  font-family: "Pinyon Script", cursive;
  color: #f9f6ee;
  z-index: -1;
}
@media (max-width: 640px) {
  .message::before {
    font-size: 25px;
  }
}
.message h2 {
  text-align: right;
  font-family: "Pinyon Script", cursive;
  color: #DEC898;
  font-size: 65px;
  margin-bottom: 75px;
}
@media (max-width: 640px) {
  .message h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }
}
.message h2::before {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1px;
  background: #DEC898;
}
@media (max-width: 640px) {
  .message h2::before {
    width: 50px;
  }
}
.message h2 span {
  display: block;
  font-size: 18px;
  font-family: "Hannari", serif;
  color: #707070;
}
@media (max-width: 640px) {
  .message h2 span {
    font-size: 12px;
  }
}
.message__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .message__inner {
    flex-wrap: wrap;
  }
}
.message__inner__pht {
  width: 30%;
  position: relative;
}
@media (max-width: 640px) {
  .message__inner__pht {
    width: 55%;
    order: 2;
    margin: 0 auto;
  }
}
.message__inner__pht img {
  position: absolute;
  bottom: 0px;
}
@media (max-width: 640px) {
  .message__inner__pht img {
    position: inherit;
  }
}
.message__inner__txt {
  width: 60%;
  margin-bottom: 100px;
}
@media (max-width: 640px) {
  .message__inner__txt {
    width: 95%;
    order: 1;
    margin: 0pc auto 25px auto;
  }
}
.message__inner__txt h3 {
  font-family: "Hannari", serif;
  font-size: 38px;
  font-weight: 200;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .message__inner__txt h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
}
.message__inner__txt p {
  margin-left: 100px;
  line-height: 2;
}
@media (max-width: 640px) {
  .message__inner__txt p {
    margin-left: 0px;
  }
}

/*--------------------------
 3つのポイント
----------------------------*/
.point {
  background: #F1F5F7;
  padding: 0px 0px 100px 0px;
  text-align: center;
}
@media (max-width: 640px) {
  .point {
    padding: 0px 15px 50px 15px;
    box-sizing: border-box;
  }
}
.point h2 {
  font-family: "Hannari", serif;
  font-size: 36px;
  margin: 0px auto 50px auto;
}
@media (max-width: 640px) {
  .point h2 {
    font-size: 28px;
    margin: 0px auto 30px auto;
  }
}
.point h2 span {
  font-size: 50px;
}
@media (max-width: 640px) {
  .point h2 span {
    font-size: 42px;
  }
}
.point h2::before {
  content: "";
  display: block;
  width: 1px;
  height: 130px;
  background: #DEC898;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .point h2::before {
    height: 75px;
  }
}
.point p.leadTxt {
  font-size: 18px;
  line-height: 1.8;
  margin: 0px auto 50px auto;
}
@media (max-width: 640px) {
  .point p.leadTxt {
    text-align: left;
    width: 95%;
    margin: 0px auto 30px auto;
  }
}
.point__inner {
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .point__inner {
    width: 95%;
    flex-wrap: wrap;
    text-align: center;
  }
}
.point__inner .pointBox {
  display: block;
  width: 285px;
  height: 285px;
  border: 1px solid #DEC898;
  position: relative;
  border-radius: 50%;
  background: url(../img/icon_down-arrow.svg) no-repeat center bottom 30px #fff;
  background-size: 24px;
}
@media (max-width: 640px) {
  .point__inner .pointBox {
    margin: 0px auto 15px auto;
  }
}
.point__inner .pointBox section {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.point__inner .pointBox section h3,
.point__inner .pointBox section p {
  color: #574B49 !important;
  font-family: "Hannari", serif !important;
}
.point__inner .pointBox section p {
  font-size: 16px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .point__inner .pointBox section p {
    font-size: 16px;
  }
}
.point__inner .pointBox section p::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #DEC898;
  margin: 10px auto;
}
.point__inner .pointBox section h3 {
  margin: 0 auto;
  font-size: 22px;
}
@media (max-width: 640px) {
  .point__inner .pointBox section h3 {
    font-size: 23px;
  }
}

/*--------------------------
 トレーニング
----------------------------*/
.training {
  padding: 100px 0px;
}
@media (max-width: 640px) {
  .training {
    padding: 50px 0px;
  }
}
.training__inner {
  width: 850px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .training__inner {
    width: 80%;
  }
}
.training__inner ul {
  margin: 0 auto;
  padding: 0px;
}
.training__inner ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  background: url(../img/training_ption.svg) no-repeat center bottom;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .training__inner ul li {
    flex-wrap: wrap;
  }
}
.training__inner ul li:last-child {
  background: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.training__inner__img {
  width: 40%;
}
@media (max-width: 640px) {
  .training__inner__img {
    width: 70%;
    margin: 0 auto;
  }
}
.training__inner__img img {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
}
.training__inner__txt {
  width: 55%;
  padding-top: 35px;
}
@media (max-width: 640px) {
  .training__inner__txt {
    width: 100%;
  }
}
.training__inner__txt h3 {
  font-size: 24px;
  font-family: "Hannari", serif;
  color: #BAAC8C;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  .training__inner__txt h3 {
    text-align: center;
    margin-bottom: 20px;
  }
}
.training__inner__txt h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #DEC898;
}
@media (max-width: 640px) {
  .training__inner__txt h3::after {
    margin: 0 auto;
  }
}
.training__inner__txt p {
  margin: 0 auto;
}

/*--------------------------
 こだわりの美容成分配合
----------------------------*/
.ingredients {
  background: #F1F5F7;
  padding: 100px 0px 200px 0px;
}
@media (max-width: 640px) {
  .ingredients {
    padding: 50px 0px 0px 0px;
  }
}
.ingredients__inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 640px) {
  .ingredients__inner {
    width: 95%;
  }
}
.ingredients__inner__pht {
  width: 550px;
  height: 550px;
  border-radius: 20px;
}
@media (max-width: 640px) {
  .ingredients__inner__pht {
    width: 350px;
    height: 350px;
  }
}
.ingredients__inner__txt {
  position: absolute;
  top: 100px;
  width: 600px;
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding: 100px 70px;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: left;
}
@media (max-width: 640px) {
  .ingredients__inner__txt {
    position: inherit;
    top: -75px;
    width: 90%;
    padding: 50px 20px 25px 20px;
    margin: 0 auto;
  }
}
.ingredients__inner__txt h3 {
  font-family: "Hannari", serif;
  font-size: 32px;
  margin: 0px 0px 35px 0px;
}
@media (max-width: 640px) {
  .ingredients__inner__txt h3 {
    font-size: 26px;
    margin: 0px 0px 20px 0px;
  }
}
.ingredients__inner__txt h3 span {
  display: block;
  font-size: 16px;
}
@media (max-width: 640px) {
  .ingredients__inner__txt h3 span {
    font-size: 14px;
  }
}
.ingredients__inner__txt p {
  margin: 0px 0px 25px 0px;
}
.ingredients__inner.odd {
  text-align: left;
  margin-bottom: 125px;
}
@media (max-width: 640px) {
  .ingredients__inner.odd {
    margin-bottom: 0px;
  }
}
.ingredients__inner.odd .ingredients__inner__pht {
  background: url(../img/ingredients_pht01.jpg);
  margin: 0px auto 0px 0px;
}
@media (max-width: 640px) {
  .ingredients__inner.odd .ingredients__inner__pht {
    margin: 0px auto 0px auto;
  }
}
.ingredients__inner.odd .ingredients__inner__txt {
  right: 0px;
}
.ingredients__inner.even {
  text-align: right;
}
.ingredients__inner.even .ingredients__inner__pht {
  background: url(../img/ingredients_pht02.jpg);
  margin: 0px 0px 0px auto;
}
@media (max-width: 640px) {
  .ingredients__inner.even .ingredients__inner__pht {
    margin: 0px auto 0px auto;
  }
}
.ingredients__inner.even .ingredients__inner__txt {
  left: 0px;
}

/*--------------------------
 がんばった分だけ効果を実感
----------------------------*/
.jikkan {
  padding: 100px 0px;
}
@media (max-width: 640px) {
  .jikkan {
    padding: 50px 0px 0px 0px;
  }
}
.jikkan__inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .jikkan__inner {
    width: 80%;
    flex-wrap: wrap;
  }
}
.jikkan__inner .jikkan__Block {
  width: 45%;
}
@media (max-width: 640px) {
  .jikkan__inner .jikkan__Block {
    width: 100%;
    margin-bottom: 50px;
  }
}
.jikkan__inner .jikkan__Block .voice {
  background: url(../img/jikkan_fukidashi.svg) no-repeat center bottom;
  background-size: contain;
  padding-bottom: 60px;
}
.jikkan__inner .jikkan__Block .user {
  width: 35%;
  margin: 0px 20px 0px auto;
  text-align: center;
}
.jikkan__inner .jikkan__Block .user img {
  border-radius: 50%;
}

/*--------------------------
 商品スペック・購入ボタン
----------------------------*/
.productBlock {
  background: #F2F5F7;
}
@media (max-width: 640px) {
  .productBlock {
    padding: 50px 0px 10px 0px;
  }
}
.productBlock__inner {
  width: 1200px;
  height: 470px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .productBlock__inner {
    width: 80%;
    height: auto;
    flex-wrap: wrap;
  }
}
.productBlock__inner .contsBlock {
  width: 45%;
  position: relative;
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock {
    width: 100%;
  }
}
.productBlock__inner .contsBlock__inner {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock__inner {
    position: static !important;
    position: absolute;
    left: auto;
    top: auto;
    transform: translate(0, 0);
  }
}
.productBlock__inner .contsBlock p.logo {
  margin: 0px 0px 30px 0px;
}
.productBlock__inner .contsBlock p.logo img {
  width: 275px;
}
.productBlock__inner .contsBlock p.catch {
  font-family: "Hannari", serif;
  font-size: 18px;
  margin: 0px 0px 50px 0px;
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock p.catch {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.productBlock__inner .contsBlock .priceBuyBtn {
  display: flex;
  align-items: center;
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock .priceBuyBtn {
    flex-wrap: wrap;
  }
}
.productBlock__inner .contsBlock .priceBuyBtn .price {
  width: 50%;
  font-family: "Hannari", serif;
  font-size: 16px;
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock .priceBuyBtn .price {
    width: 100%;
    margin-bottom: 30px;
  }
}
.productBlock__inner .contsBlock .priceBuyBtn .price strong {
  font-size: 32px;
}
.productBlock__inner .contsBlock .priceBuyBtn .buyBtn {
  width: 50%;
}
@media (max-width: 640px) {
  .productBlock__inner .contsBlock .priceBuyBtn .buyBtn {
    width: 100%;
  }
}
.productBlock__inner .contsBlock .priceBuyBtn .buyBtn a {
  display: block;
  background-color: #574B49;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  border-radius: 50px;
}
.productBlock__inner .phtBlock {
  width: 50%;
  position: relative;
}
@media (max-width: 640px) {
  .productBlock__inner .phtBlock {
    width: 80%;
    margin: 0 auto;
  }
}
.productBlock__inner .phtBlock img {
  width: 470px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
@media (max-width: 640px) {
  .productBlock__inner .phtBlock img {
    position: inherit;
    right: auto;
    bottom: auto;
    width: 80%;
    padding-top: 30px;
  }
}

/*--------------------------
 プロフィール
----------------------------*/
.profile {
  width: 1000px;
  padding: 100px 0px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .profile {
    padding: 50px 0px;
    width: 95%;
    flex-wrap: wrap;
  }
}
.profile__pht {
  width: 35%;
}
@media (max-width: 640px) {
  .profile__pht {
    width: 65%;
    margin: 0px auto 20px auto;
  }
}
.profile__pht img {
  border-radius: 10px;
}
.profile__note {
  width: 55%;
}
@media (max-width: 640px) {
  .profile__note {
    width: 90%;
    margin: 0 auto;
  }
}
.profile__note h2 {
  font-size: 16px;
  font-family: "Hannari", serif;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .profile__note h2 {
    font-size: 12px;
  }
}
.profile__note h2 span {
  display: block;
  font-family: "Pinyon Script", cursive;
  font-size: 65px;
  color: #DEC898;
}
@media (max-width: 640px) {
  .profile__note h2 span {
    font-size: 42px;
  }
}
.profile__note h2 span::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1px;
  background: #DEC898;
}
@media (max-width: 640px) {
  .profile__note h2 span::after {
    width: 50px;
  }
}

/*--------------------------
 フッター
----------------------------*/
footer {
  background: #707A80;
  border-top: 5px double #DEC898;
  text-align: center;
  padding: 75px 0px 20px 0px;
}
@media (max-width: 640px) {
  footer {
    padding: 35px 0px 20px 0px;
  }
}
footer h3 {
  font-family: "Hannari", serif;
  color: #DEC898;
  font-size: 36px;
  margin-bottom: 35px;
}
@media (max-width: 640px) {
  footer h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
footer p {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  footer p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
footer ul {
  width: 500px;
  margin: 0 auto 75px auto;
  display: flex;
  justify-content: space-between;
  padding: 0px;
}
@media (max-width: 640px) {
  footer ul {
    width: 65%;
    margin: 0 auto 50px auto;
  }
}
footer ul.snsIcon li {
  margin: 0;
  padding: 0;
}
footer ul.snsIcon li img {
  width: 30px;
}
footer .copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0px auto;
}/*# sourceMappingURL=style.css.map */