@charset "UTF-8";
/*=============================
レスポンシブ
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Balthazar&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
.pc {
  display: block;
}
@media screen and (max-width: 905px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 905px) {
  .tab {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 905px) {
  .sp {
    display: block;
  }
}

/*=============================
mixin
=============================*/
/*=============================
 共通パーツ
=============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  font-size: 16px;
  color: #000;
  background-color: #fff;
}
@media screen and (max-width: 905px) {
  body {
    font-size: 13px;
  }
}

.inner {
  width: 100%;
  margin: 0 auto;
}

.inner_inner {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  .inner_inner {
    width: 88%;
  }
}

.section_title {
  font-family: "Balthazar", serif;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 905px) {
  .section_title {
    font-size: 20px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  border: 2.5px solid #a37e39;
  border-radius: 90px;
  width: 220px;
  padding: 10px 0px;
  text-align: center;
  outline: none;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .btn {
    border: 2px solid #a37e39;
    width: 200px;
    font-size: 14px;
    padding: 5px 0px !important;
  }
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-top: solid 1.5px #a37e39;
  border-right: solid 1.5px #a37e39;
  transform: rotate(45deg);
}
.btn:hover::after {
  right: 25px;
  transition: all ease 0.7s;
  border-color: #fff;
  z-index: 10;
}
.btn .btn-text {
  width: 100%;
  height: 100%;
  color: #a37e39;
  z-index: 10;
}
.btn .btn-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #a37e39;
  z-index: -1;
  transition: 0.2s;
}
.btn .btn-text:hover {
  color: #fff;
}
.btn .btn-text:hover::before {
  width: 100%;
}

/*=============================
side bar
=============================*/
.so_logo {
  position: fixed;
  z-index: 800;
  top: 40px;
  left: 2.5%;
  width: 8%;
}
@media screen and (max-width: 905px) {
  .so_logo {
    width: 13%;
    left: 3%;
    top: 25px;
  }
}
.so_logo .producedby {
  display: block;
  margin-top: 50px;
  margin-left: 6%;
  width: 9%;
}
@media screen and (max-width: 905px) {
  .so_logo .producedby {
    margin-top: 30px;
    width: 12%;
  }
}

#body-main {
  margin-left: 7%;
}
@media screen and (max-width: 905px) {
  #body-main {
    margin-left: 10%;
  }
}

.left_side {
  background-color: #a37e39;
  position: fixed;
  width: 7%;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 905px) {
  .left_side {
    width: 10%;
  }
}

/*=============================
nav
=============================*/
.nav {
  position: fixed;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.795);
  height: 100vh;
  width: 100%;
  top: 0px;
  display: none;
}
.nav .nav_inner {
  width: 25%;
  margin: 50px auto;
  position: absolute;
  right: 8%;
}
@media screen and (max-width: 905px) {
  .nav .nav_inner {
    width: 90%;
  }
}
.nav .nav_inner a {
  display: block;
  color: #fff;
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.4em;
  margin-bottom: 17px;
}
.nav .nav_inner .caption {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.nav .nav_inner .nav_btn {
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 30px 0px;
}
.nav .nav_inner .nav_btn a {
  width: 20px;
  margin-right: 25px;
  margin-bottom: 0px;
}
.nav .nav_inner .nav_btn a:last-child {
  margin-right: 0px !important;
}
.nav .nav_inner .nav_btn a .small {
  width: 85%;
}
.nav .nav_inner .nav_btn a .mail {
  vertical-align: middle;
}

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  z-index: 1003;
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
@media screen and (max-width: 905px) {
  .openbtn {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: #000;
}
@media screen and (max-width: 905px) {
  .openbtn span {
    height: 2.5px;
  }
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  width: 70%;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
  width: 70%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 30px;
  transform: translateY(6px) rotate(-135deg);
  width: 35%;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    width: 30%;
  }
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 30px;
  transform: translateY(-6px) rotate(135deg);
  width: 35%;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    width: 30%;
  }
}

@media screen and (max-width: 905px) {
  .block {
    display: block;
  }
}

.fixed {
  height: 100%;
  overflow: hidden;
}

/*=============================
sidebar_right
=============================*/
.contact_btn {
  width: 23px;
  position: fixed;
  right: 25px;
  bottom: 0px;
  z-index: 1;
}
@media screen and (max-width: 905px) {
  .contact_btn {
    display: none;
  }
}
.contact_btn svg {
  width: 100%;
  margin-bottom: 35px;
  fill: #000;
}

.pagetop1 {
  height: 150px;
  width: 60px;
  position: fixed;
  right: 0px;
  bottom: 200px;
  z-index: 2;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 905px) {
  .pagetop1 {
    display: none;
  }
}
.pagetop1 .pagetop_arrow {
  padding: 25px 0px;
  width: 40%;
  margin: 0 auto;
  vertical-align: middle;
}
.pagetop1 .pagetop_arrow img {
  width: 100%;
  margin-bottom: 40px;
}
.pagetop1 .pagetop_arrow .small {
  width: 75%;
  margin: 0 auto 40px;
  margin-left: 16%;
  vertical-align: middle;
}

.pagetop2 {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0px;
  bottom: 130px;
  background: #a37e39;
  z-index: 2;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagetop2 .pagetop_arrow {
  padding: 8px 0px;
  width: 40%;
  margin: 0 auto;
  vertical-align: middle;
}
.pagetop2 .pagetop_arrow img {
  width: 100%;
  margin-bottom: 0px;
}

.pagetop {
  height: 60px;
  width: 60px;
  position: fixed;
  right: 0px;
  bottom: 30px;
  background: #dadada;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: none;
}
@media screen and (max-width: 905px) {
  .pagetop {
    width: 50px;
    height: 50px;
    bottom: 60px;
  }
}
.pagetop .pagetop_arrow {
  height: 10px;
  width: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateY(20%) rotate(-45deg);
  position: absolute;
  top: 25px;
  left: 25px;
}
@media screen and (max-width: 905px) {
  .pagetop .pagetop_arrow {
    top: 22px;
    left: 21px;
  }
}

/*=============================
service_head
=============================*/
.service_head {
  background-color: rgba(115, 115, 115, 0.1490196078);
  padding: 70px 0px;
}
@media screen and (max-width: 905px) {
  .service_head {
    padding: 40px 10px;
  }
}
.service_head .inner {
  padding-top: 0px;
  text-align: center;
}
.service_head .inner h1 {
  font-size: 30px;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 905px) {
  .service_head .inner h1 {
    font-size: 18px;
    letter-spacing: 0.2em;
  }
}
.service_head .inner p {
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 905px) {
  .service_head .inner p {
    font-size: 12px;
  }
}

/*=============================
service_intro
=============================*/
.service_intro {
  margin-top: 50px;
}
@media screen and (max-width: 905px) {
  .service_intro {
    margin-top: 30px;
  }
}
.service_intro h1 {
  font-size: 50px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 905px) {
  .service_intro h1 {
    font-size: 25px;
  }
}
.service_intro h1 p {
  font-size: 50px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 905px) {
  .service_intro h1 p {
    font-size: 25px;
  }
}
.service_intro .h1-latter {
  margin-left: 22px;
}
.service_intro .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 905px) {
  .service_intro .wrapper {
    margin-top: 20px;
  }
}
.service_intro .wrapper .left {
  font-weight: 600;
  margin-right: 3%;
  margin-bottom: 1%;
}
@media screen and (max-width: 905px) {
  .service_intro .wrapper .left {
    margin: 0 auto 10px;
    text-align: center;
    width: 100%;
  }
}
.service_intro .wrapper .left .big {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.service_intro .swiper-wrapper {
  margin: 70px auto 0;
}
@media screen and (max-width: 905px) {
  .service_intro .swiper-wrapper {
    margin-top: 40px;
  }
}

.sony_mv {
  margin-top: 80px;
}
.sony_mv .sony_inner {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  .sony_mv .sony_inner {
    width: 80%;
  }
}
.sony_mv .sony_inner .loop {
  display: flex;
  width: 100%;
  margin-top: -52%;
  overflow: hidden;
}
.sony_mv .sony_inner .loop img {
  width: 100%;
}
.sony_mv .sony_inner .loop img:first-child {
  animation: slide1 100s -50s linear infinite;
}
.sony_mv .sony_inner .loop img:last-child {
  animation: slide2 100s linear infinite;
}

.movie-wrapper {
  margin: 70px auto 0px;
  height: 100%;
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 905px) {
  .movie-wrapper {
    margin-top: 40px;
  }
}
.movie-wrapper .movie-video_top {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  max-width: 1160px;
  position: relative;
  border: solid 7px rgba(115, 115, 115, 0.2);
}
@media screen and (max-width: 905px) {
  .movie-wrapper .movie-video_top {
    width: 85%;
  }
}
.movie-wrapper p {
  padding: 20px 0 0px;
}
@media screen and (max-width: 905px) {
  .movie-wrapper p {
    padding-top: 10px;
  }
}

/*=============================
service_concept
=============================*/
.service_concept {
  margin: 80px auto 0;
}
@media screen and (max-width: 905px) {
  .service_concept {
    margin-top: 40px;
  }
}
.service_concept p {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 905px) {
  .service_concept p {
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }
}

/*=============================
service_explain
=============================*/
.service_explain {
  margin-top: 70px;
}
@media screen and (max-width: 905px) {
  .service_explain {
    margin-top: 50px;
  }
}
.service_explain .explain_box {
  width: 75%;
  max-width: 715px;
  padding: 50px;
  margin: 0 auto;
  border: solid 5px #a37e39;
}
@media screen and (max-width: 905px) {
  .service_explain .explain_box {
    width: 80%;
    padding: 30px 0;
    border: none;
    border-top: solid 2px #a37e39;
    border-bottom: solid 2px #a37e39;
  }
}
@media screen and (max-width: 767px) {
  .service_explain .explain_box {
    padding: 20px 0;
  }
}
.service_explain .nara_logo {
  width: 30%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .service_explain .nara_logo {
    width: 45%;
    max-width: 150px;
    margin-bottom: 20px;
  }
}
.service_explain .so-wrapper {
  margin: 15px auto 0;
  padding: 15px 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, rgba(134, 134, 134, 0.1), rgba(134, 134, 134, 0.15));
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .service_explain .so-wrapper {
    padding: 8px 15px;
    max-width: 400px;
  }
}
.service_explain .so-wrapper img {
  width: 10%;
}
@media screen and (max-width: 767px) {
  .service_explain .so-wrapper img {
    width: 13%;
  }
}
.service_explain .so-wrapper p {
  width: 87%;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 905px) {
  .service_explain .so-wrapper p {
    font-size: 15px;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .service_explain .so-wrapper p {
    margin: 0 auto;
    width: 85%;
    padding-left: 10px;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.5;
  }
}

/*=============================
WORKS
=============================*/
.service_works {
  margin-top: 100px;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media screen and (max-width: 905px) {
  .service_works {
    margin-top: 50px;
  }
}
.service_works h1 {
  margin-bottom: 30px;
}
@media screen and (max-width: 905px) {
  .service_works h1 {
    margin-bottom: 20px;
  }
}
.service_works .works_item {
  width: 100%;
  position: relative;
}
.service_works .works_item img {
  height: auto;
  width: 100%;
}
.service_works .works_item::before {
  background: rgb(255, 255, 255);
  bottom: 45px;
  content: "";
  left: 0;
  opacity: 0; /* 最初は透明(非表示) */
  position: absolute;
  transition: opacity 0.6s ease; /* ゆっくりopacityのみへ変化させる */
  width: 360px;
  height: 50px;
  z-index: 5;
}
@media screen and (max-width: 905px) {
  .service_works .works_item::before {
    bottom: 5px;
    width: 230px;
    height: 30px;
  }
}
.service_works .works_item:hover::before {
  opacity: 1; /* hoverしたら透過しない(表示させる) */
}
.service_works .works_item:hover p {
  opacity: 1;
}
.service_works .works_item p {
  position: absolute;
  align-items: center;
  bottom: 55px;
  left: 0;
  color: #333;
  display: flex; /* テキストの中央揃え */
  justify-content: center;
  margin: auto;
  width: 360px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 10;
}
@media screen and (max-width: 905px) {
  .service_works .works_item p {
    width: 230px;
    height: 30px;
    font-size: 10px;
    bottom: 5px;
  }
}
.service_works .swiper-button-prev::after,
.service_works .swiper-button-next::after {
  bottom: 0;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 905px) {
  .service_works .swiper-button-prev::after,
  .service_works .swiper-button-next::after {
    width: 12px;
    height: 12px;
  }
}
.service_works .swiper-button-prev::after {
  margin-left: 60px;
  border-top: 3px solid #a37e39;
  border-right: 3px solid #a37e39;
  transform: rotate(-135deg);
}
@media screen and (max-width: 905px) {
  .service_works .swiper-button-prev::after {
    margin-left: 10px;
  }
}
.service_works .swiper-button-next::after {
  margin-right: 60px;
  border-top: 3px solid #a37e39;
  border-right: 3px solid #a37e39;
  transform: rotate(45deg);
}
@media screen and (max-width: 905px) {
  .service_works .swiper-button-next::after {
    margin-right: 10px;
  }
}
.service_works .movie_works {
  margin-top: 30px;
}
@media screen and (max-width: 905px) {
  .service_works .movie_works {
    margin-bottom: 0px;
  }
}
.service_works .iframe-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.service_works .iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*=============================
web_price
=============================*/
.price {
  background-color: rgba(134, 134, 134, 0.1254901961);
  padding: 60px 0 80px;
}
@media screen and (max-width: 905px) {
  .price {
    padding: 40px 0 50px;
  }
}
.price .section_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 905px) {
  .price .section_title {
    margin-bottom: 30px;
  }
}
.price .price_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper {
    display: flex;
    overflow-x: scroll;
  }
}
.price .price_wrapper .price_box_pr .mt {
  margin-top: 20px;
}
.price .price_wrapper .price_box {
  width: 30%;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box {
    width: 90% !important;
    max-width: 300px;
    margin-right: 20px;
    flex-shrink: 0;
  }
}
.price .price_wrapper .price_box .price_white {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px 5px 0px 0px;
  height: 350px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_white {
    height: 290px;
  }
}
.price .price_wrapper .price_box .price_white .price_logo {
  width: 70%;
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_white .price_logo {
    width: 60%;
  }
}
.price .price_wrapper .price_box .price_white .price_number {
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_white .price_number {
    width: 70%;
    margin-bottom: 25px;
  }
}
.price .price_wrapper .price_box .price_white .price_sug {
  text-align: center;
  color: #a37e39;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_white .price_sug {
    font-size: 12px;
  }
}
.price .price_wrapper .price_box .price_white p {
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_white p {
    font-size: 12px;
  }
}
.price .price_wrapper .price_box .price_white .mt {
  margin-bottom: 10px;
}
.price .price_wrapper .price_box .price_gold {
  background-color: #a37e39;
  padding: 20px 15px 5px;
  border-radius: 0px 0px 5px 5px;
  margin: auto;
  height: 140px;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_gold {
    height: 120px;
    padding: 15px 12px;
  }
}
.price .price_wrapper .price_box .price_gold .price_gold_item {
  display: flex;
  color: #fff;
  font-size: 14px;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_gold .price_gold_item {
    font-size: 12px;
  }
}
.price .price_wrapper .price_box .price_gold .price_gold_item img {
  width: 25px;
  display: block;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_gold .price_gold_item img {
    width: 22px;
  }
}
.price .price_wrapper .price_box .price_gold .price_gold_item p {
  width: calc(100% - 30px);
  line-height: 1.4;
}
@media screen and (max-width: 905px) {
  .price .price_wrapper .price_box .price_gold .price_gold_item p {
    width: 212px;
  }
}

.price_sp {
  margin: 60px auto 0;
  max-width: 1160px;
}
@media screen and (max-width: 905px) {
  .price_sp {
    margin: 40px auto 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .price_sp {
    margin: 40px auto 0;
    width: 93%;
  }
}
.price_sp .price_sp_white {
  background-color: #fff;
  padding: 30px 0;
  height: auto;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_white {
    border-radius: 5px 5px 0px 0px;
    padding: 30px 10px;
  }
}
.price_sp .price_sp_white img {
  width: 65%;
  margin: 0 auto 20px;
  max-width: 500px;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_white img {
    max-width: 300px;
  }
}
.price_sp .price_sp_white p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_white p {
    font-size: 12px;
    letter-spacing: 0.13rem;
  }
}
.price_sp .price_sp_gold {
  background-color: #a37e39;
  padding: 30px;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_gold {
    display: block;
    padding: 20px 20px 5px;
    height: auto;
    border-radius: 0px 0px 5px 5px;
    margin: 0 auto;
  }
}
.price_sp .price_sp_gold .gold_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_gold .gold_wrapper {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
  }
}
.price_sp .price_sp_gold .price_gold_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 30%;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_gold .price_gold_item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.price_sp .price_sp_gold .price_gold_item img {
  width: 30px;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_gold .price_gold_item img {
    width: 22px;
    margin-right: 2%;
  }
}
.price_sp .price_sp_gold .price_gold_item p {
  width: 80%;
  line-height: 1.4;
  font-size: 14px;
}
@media screen and (max-width: 905px) {
  .price_sp .price_sp_gold .price_gold_item p {
    font-size: 12px;
  }
}

.price_pr {
  margin: 60px auto 0;
  max-width: 1160px;
}
@media screen and (max-width: 905px) {
  .price_pr {
    margin: 40px auto 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .price_pr {
    margin: 40px auto 0;
    width: 93%;
  }
}
.price_pr .price_pr_white {
  background-color: #fff;
  padding: 30px 60px;
  height: auto;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_white {
    border-radius: 5px 5px 0px 0px;
    padding: 30px 15px;
    height: auto;
  }
}
.price_pr .price_pr_white img {
  width: 65%;
  margin: 0 auto 20px;
  max-width: 500px;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_white img {
    max-width: 300px;
  }
}
.price_pr .price_pr_white p {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_white p {
    font-size: 12px;
    letter-spacing: 0.13rem;
    text-align: center;
  }
}
.price_pr .gold_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 905px) {
  .price_pr .gold_wrapper {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 380px;
  }
}
.price_pr .price_pr_gold {
  background-color: #a37e39;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 30px 40px;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_gold {
    display: block;
    padding: 20px 20px 5px;
    height: auto;
    border-radius: 0px 0px 5px 5px;
    margin: 0 auto;
  }
}
.price_pr .price_pr_gold .price_gold_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 30%;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_gold .price_gold_item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.price_pr .price_pr_gold .price_gold_item img {
  width: 30px;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_gold .price_gold_item img {
    width: 22px;
    margin-right: 2%;
  }
}
.price_pr .price_pr_gold .price_gold_item p {
  width: 85%;
  line-height: 1.4;
  font-size: 14px;
}
@media screen and (max-width: 905px) {
  .price_pr .price_pr_gold .price_gold_item p {
    font-size: 12px;
  }
}

/*=============================
flow
=============================*/
.flow {
  background-color: #a37e39;
  padding: 70px 0px 80px;
}
@media screen and (max-width: 905px) {
  .flow {
    padding: 30px 0px 50px;
  }
}
.flow .inner .flow_wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 30px;
}
@media screen and (max-width: 905px) {
  .flow .inner .flow_wrapper {
    display: flex;
    width: 100%;
    overflow-x: scroll;
  }
}
.flow .inner .flow_wrapper .scroll_left {
  position: absolute;
  top: 50%;
  left: 95%;
  animation: arrowmove 1s ease-in-out infinite;
}
.flow .inner .flow_wrapper .scroll_left::before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 90%;
  right: -5px;
  /*矢印の形状*/
  width: 3px;
  height: 15px;
  background: #333;
  transform: skewX(50deg);
}
.flow .inner .flow_wrapper .scroll_left::after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 90%;
  right: -11px;
  /*矢印の形状*/
  width: 50px;
  height: 1px;
  background: #333;
}
.flow .inner .flow_wrapper .scroll_left span {
  position: absolute;
  left: -26px;
  bottom: 77%;
  /*テキストの形状*/
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
}
.flow .inner .flow_wrapper .flow_box {
  width: 24%;
  background-color: #fff;
  padding: 30px 15px 20px;
}
@media screen and (max-width: 905px) {
  .flow .inner .flow_wrapper .flow_box {
    width: 87%;
    max-width: 300px;
    margin-right: 20px;
    flex-shrink: 0;
  }
}
.flow .inner .flow_wrapper .flow_box h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
.flow .inner .flow_wrapper .flow_box img {
  width: 80%;
  margin: 20px auto;
  display: block;
}
@media screen and (max-width: 905px) {
  .flow .inner .flow_wrapper .flow_box img {
    width: 70%;
    margin: 0 auto 20px;
  }
}
.flow .inner .flow_wrapper .flow_box h1 {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.flow .inner .flow_wrapper .flow_box p {
  font-size: 12px;
  text-align: justify;
}
.flow .inner .flow_wrapper .flow_box .flow_img {
  width: 70%;
  height: 150px;
  margin: 20px auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 905px) {
  .flow .inner .flow_wrapper .flow_box .flow_img {
    width: 60%;
    height: 120px;
    margin: 20px auto;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  100% {
    bottom: 1%;
  }
}
/*=============================
contact
=============================*/
#front-area {
  z-index: 500;
  position: relative;
}

.top_contact {
  background-color: #fff !important;
  padding: 60px 20px;
}
@media screen and (max-width: 905px) {
  .top_contact {
    padding: 30px 15px;
  }
}
.top_contact h1 {
  font-family: "Balthazar", serif !important;
  font-size: 22px !important;
  color: #a37e39;
  letter-spacing: 0.3em;
  text-align: center;
  margin-right: 5%;
}
@media screen and (max-width: 905px) {
  .top_contact h1 {
    font-size: 20px;
    margin-right: 0;
  }
}
.top_contact .contact_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper {
    display: block;
  }
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper .contact-btn {
    margin: 25px auto;
  }
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper .contact-btn .btn {
    margin: 0 auto;
  }
}
.top_contact .contact_wrapper p {
  color: #a37e39;
  margin-left: 5%;
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper p {
    margin: 0 auto;
    text-align: center;
  }
}

/*=============================
footer
=============================*/
footer {
  background: #000;
  color: #fff;
  padding: 40px 0px;
  text-align: center;
}
@media screen and (max-width: 905px) {
  footer {
    padding: 40px 0px 20px;
  }
}
footer .footer_inner {
  max-width: 1000px !important;
  width: 100% !important;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  footer .footer_inner {
    width: 100%;
  }
}
footer .footer_inner .footer_wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_wrapper {
    display: block;
  }
}
footer .footer_inner .footer_wrapper p {
  padding-left: 30px;
  margin-right: 30px;
  border-left: 0.5px solid #fff;
}
footer .footer_inner .footer_wrapper p:first-child {
  border-left: none;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_wrapper p {
    width: 100%;
    margin-bottom: 10px;
    padding: 0px;
    border-left: 0px solid #fff;
  }
}
footer .footer_inner .footer_wrapper p a {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
}
footer .footer_inner .footer_logo {
  width: 130px;
  margin: 50px auto 30px;
  display: block;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_logo {
    width: 120px;
    display: block;
    margin: 0px auto 10px;
  }
}
footer .footer_inner .footer_logo img {
  width: 100%;
}
footer .footer_inner .footer_caption {
  font-size: 10px;
  letter-spacing: 0.12em;
}

/*=============================
sony_mv
=============================*/
.sony_mv .sony_inner {
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  .sony_mv .sony_inner {
    width: 80%;
    margin-top: -30px;
  }
}
.sony_mv .sony_inner .loop {
  display: flex;
  width: 100%;
  margin-top: -52%;
  overflow: hidden;
}
.sony_mv .sony_inner .loop img {
  width: 100%;
}
.sony_mv .sony_inner .loop img:first-child {
  animation: slide1 100s -50s linear infinite;
}
.sony_mv .sony_inner .loop img:last-child {
  animation: slide2 100s linear infinite;
}
.sony_mv p {
  margin: 20px auto 0;
  text-align: center;
}

@keyframes slide1 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}/*# sourceMappingURL=service.css.map */