@charset "UTF-8";
/*----------------------------
* 共通
*----------------------------*/
/*---------------------------------
  1.cmn
    1.1 メニュー：開閉ボタン
    1.2 メニュー：本体
    1.3 メニュー：アニメーション部分

  2.header
    1.1 メニュー開閉ボタン
    1.2photostudioとは？
    1.3撮影プラン

  3.footer

---------------------------------*/
/*----------------------------
* 共通
*----------------------------*/
html {
  font-size: 62.5%;
}

body {
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: calc(1.4rem + (1vw - 0.56rem) * -1.0000);
}

@media screen and (max-width: 599px) {
  body {
    font-size: 1.4rem;
    /* 14px*/
  }
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

body ul {
  list-style: none;
  padding-left: 0;
}

body a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-out;
}

body a:hover {
  opacity: 0.6;
}

body p {
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
  font-size: 1rem;
}

@media screen and (min-width: 600px) {
  body p {
    font-size: 14px;
  }
}

body span {
  color: #928055;
  font-family: "Crimson Text", serif;
}

body img {
  width: 100%;
}

body button {
  font-size: 1.4rem;
}

body button:hover {
  cursor: pointer;
}

.psbr {
  display: none;
}

@media screen and (min-width: 1024px) {
  .psbr {
    display: block;
  }
}

.slick-prev::before {
  content: "";
  background-image: url(../images/cmn/arrow_slide_l.png);
  background-size: 100% auto;
  z-index: 10000;
  width: 20px;
  left: 10%;
}

@media screen and (min-width: 1024px) {
  .slick-prev::before {
    width: 20px;
    height: 40px;
    left: -135%;
  }
}

.slick-next::before {
  content: "";
  background-image: url(../images/cmn/arrow_slide_r.png);
  background-size: 100% auto;
  z-index: 10000;
  width: 20px;
  right: 10%;
}

@media screen and (min-width: 1024px) {
  .slick-next::before {
    width: 20px;
    height: 40px;
    right: -135%;
  }
}

@media screen and (min-width: 1024px) {
  .slick-next:hover:before {
    right: -135%;
  }
}

h2 {
  text-align: center;
  position: relative;
  line-height: 1.2;
  margin-bottom: 14px;
  font-size: 2.4rem;
}

@media screen and (min-width: 600px) {
  h2 {
    font-size: 30px;
  }
}

h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  background-image: url(../images/cmn/cmn_bg01.png);
  background-size: 100% auto;
  background-position: top center;
  width: 67%;
  height: 210px;
}

@media screen and (min-width: 600px) {
  h2::before {
    width: 446px;
    height: 436px;
  }
}

h2 span {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  h2 span {
    font-size: 15px;
  }
}

h3 {
  margin: 0;
  line-height: 1.3;
  font-size: 2.6rem;
}

@media screen and (min-width: 600px) {
  h3 {
    font-size: 34px;
  }
}

h3 span {
  display: block;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  h3 span {
    font-size: 20px;
  }
}

h4 {
  margin: 0;
  font-size: 1.4rem;
}

@media screen and (min-width: 600px) {
  h4 {
    font-size: 18px;
  }
}

button {
  position: relative;
  font-family: "Crimson Text", serif;
  font-weight: 400;
  background-color: #928055;
  color: #fff;
  border: none;
  width: 65%;
  padding: 3%;
  transition: all 0.2s ease-out;
}

button:hover {
  background-color: #a8925f;
}

@media screen and (min-width: 1024px) {
  button {
    width: 340px;
    padding: 24px 10px;
  }
}

@media screen and (max-width: 599px) {
  button {
    padding: 5% 3%;
  }
}

button::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 30px;
  height: 10px;
  background-image: url(../images/cmn/arrow_w.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: all 0.2s ease-out;
}

button:hover:before {
  right: 3%;
}

.box.-box_ph a {
  display: block;
}

@media screen and (min-width: 1024px) {
  .box.-box_ph {
    width: 60%;
    max-width: 610px;
  }
}

@media screen and (min-width: 1024px) {
  .box.-box_txt {
    padding-left: 3%;
    width: 40%;
    max-width: 400px;
  }
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-area {
  display: block;
}

.menu-area .menu-btn {
  position: fixed;
  z-index: 100000000;
  top: 3%;
  right: 3%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.menu-area .menu-btn .inner {
  position: relative;
  width: 11vw;
  max-width: 40px;
  height: 44px;
}

.menu-area .menu-btn,
.menu-area .menu-btn span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-area .menu-btn .inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
}

.menu-area .menu-btn .inner span:nth-of-type(1) {
  top: 0;
}

.menu-area .menu-btn .inner span:nth-of-type(2) {
  top: 12px;
}

.menu-area.is-active .menu-btn .inner span:nth-of-type(1) {
  -webkit-transform: translate3d(-2px, 12px, 0) rotate(45deg);
  transform: translate3d(-2px, 12px, 0) rotate(45deg);
}

.menu-area.is-active .inner span:nth-of-type(2) {
  -webkit-transform: translate3d(-1px, 0, 0) rotate(-45deg);
  transform: translate3d(-1px, 0, 0) rotate(-45deg);
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu-area .menu {
  position: fixed;
  margin: 0;
  top: 0;
  right: -20%;
  z-index: 10000000;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
}

.menu-area .menu .menu__item {
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu-area .menu .menu__item span {
  display: block;
}

.menu-area .menu .menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
}

.menu-area .menu .menu-list li {
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
}

.menu-area .menu .menu-list li.logo {
  width: 100%;
  margin: 0 auto 80px;
}

@media screen and (max-width: 599px) {
  .menu-area .menu .menu-list li.logo {
    margin: 0 auto 50px;
  }
}

.menu-area .menu .menu-list li.logo img {
  width: 50%;
}

@media screen and (min-width: 600px) {
  .menu-area .menu .menu-list li.menu_item {
    width: 25%;
    margin-bottom: 80px;
    line-height: 1.3;
    font-size: 22px;
  }
}

.menu-area .menu .menu-list li span {
  font-size: 14px;
  display: block;
}

.menu-area .menu .menu-list .menu_icons {
  width: 90%;
  display: block;
  margin: 0 auto;
  border-top: solid 1px #595959;
  padding-top: 50px;
  padding-left: 0;
}

@media screen and (max-width: 599px) {
  .menu-area .menu .menu-list .menu_icons {
    margin: 30px auto 0;
  }
}

.menu-area .menu .menu-list .menu_icons .icon {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  margin-right: 50px;
}

@media screen and (min-width: 600px) {
  .menu-area .menu .menu-list .menu_icons .icon {
    width: 50px;
  }
}

.menu-area .menu .menu-list .menu_icons .icon:last-child {
  margin-right: 0;
}

/*----------------------------
* 3.footer
*----------------------------*/
footer .contact-area {
  padding: 8% 0;
}

@media screen and (min-width: 1024px) {
  footer .contact-area {
    padding: 5% 0;
  }
}

footer .contact-area .inner {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner {
    width: 70%;
    max-width: 750px;
  }
}

footer .contact-area .inner h4 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner h4 {
    line-height: 1.3;
    font-size: 25px;
  }
}

footer .contact-area .inner h4 span {
  display: block;
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner h4 span {
    font-size: 20px;
  }
}

footer .contact-area .inner h4::before {
  display: none;
}

footer .contact-area .inner .box.box-tit {
  width: 40%;
  padding-right: 5%;
  border-right: solid 1px #928055;
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner .box.box-tit {
    padding-right: 50px;
  }
}

footer .contact-area .inner .box.box-button {
  width: 60%;
  padding-left: 5%;
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner .box.box-button {
    padding-left: 50px;
  }
}

footer .contact-area .inner .box .btn-success {
  border: solid 1px #928055;
  background: none;
  width: 100%;
  padding: 5% 2%;
  color: #928055;
  text-align: center;
}

footer .contact-area .inner .box .btn-success a {
  display: block;
  color: #928055;
  position: relative;
}

footer .contact-area .inner .box .btn-success a:after {
  position: absolute;
  z-index: 1000;
  content: "";
  background: url(../images/cmn/arrow_y.png) no-repeat;
  height: 13px;
  width: 46px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

@media screen and (min-width: 1024px) {
  footer .contact-area .inner .box .btn-success {
    width: 390px;
    font-size: 20px;
  }
}

footer .contact-area .inner .box .btn-success::before {
  content: "";
  background-image: url(../images/cmn/arrow_y.png);
}

footer .follow-area {
  background: url(../images/top/bg_sns.png) no-repeat top center;
  background-size: cover;
  width: 100%;
  text-align: center;
  padding: 3% 0;
  margin-bottom: 5%;
}

@media screen and (min-width: 1024px) {
  footer .follow-area {
    height: 100px;
    padding: 30px 0;
    margin-bottom: 0;
  }
}

footer .follow-area h5 {
  font-size: 1.4rem;
  margin: 0 auto 3%;
}

@media screen and (min-width: 1024px) {
  footer .follow-area h5 {
    margin: 0 auto 20px;
    font-size: 20px;
  }
}

footer .follow-area .sns-area {
  margin: 0 auto;
  width: 30%;
}

@media screen and (min-width: 1024px) {
  footer .follow-area .sns-area {
    max-width: 240px;
  }
}

footer .follow-area .sns-area .sns_lists {
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

footer .follow-area .sns-area .sns_lists .icon {
  width: 25px;
}

@media screen and (min-width: 1024px) {
  footer .follow-area .sns-area .sns_lists .icon {
    width: 50px;
  }
}

footer .fmenu-area {
  width: 100vw;
  margin: 0 auto;
  padding: 3% 0;
  border-bottom: solid 1px #595959;
}

footer .fmenu-area .menu-list {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .fmenu-area .menu-list .menu_item {
  text-align: center;
  width: 50%;
  margin-bottom: 10%;
}

@media screen and (min-width: 600px) {
  footer .fmenu-area .menu-list .menu_item {
    width: auto;
    margin-bottom: 0%;
  }
}

footer .fmenu-area .menu-list .menu_item span {
  display: block;
  line-height: 1.6;
}

@media screen and (min-width: 600px) {
  footer .fmenu-area footer .fmenu-area {
    padding: 3% 0;
  }
  footer .fmenu-area footer .fmenu-area .menu-list {
    max-width: 1200px;
  }
}

footer .fotter_copy {
  padding: 20px 0;
  text-align: center;
}

/*----------------------------
* アニメーション部分
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu-area {
  /* アニメーション後のメニューの状態 */
}

.menu-area .menu {
  transform: translateX(100vw);
  transition: all .3s linear;
}

.menu-area.is-active .menu {
  transform: translateX(0);
  right: 0;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

a:hover {
  opacity: 0.8;
}

.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
