@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #f98232;
  background-color: #fff;
  line-height: 1.7;
  color: #3a3025;
}
body.hidden {
  overflow: hidden;
}

p {
  line-height: 2.1;
  font-weight: 300;
}
@media (max-width: 599px) {
  p {
    font-size: 13px;
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

video {
  margin: 0;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #3a3025;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

/* パンくずリスト */
.bread {
  width: 100%;
  padding-top: 135px;
}
@media (max-width: 1200px) {
  .bread {
    padding-top: 90px;
  }
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li a img {
  width: 20px;
  vertical-align: baseline;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-top: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1200px) {
  .inner {
    width: 85%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

@media (max-width: 1200px) {
  .lg_dn {
    display: none;
  }
}

.lg_db {
  display: none;
}
@media (max-width: 1200px) {
  .lg_db {
    display: block;
  }
}

section {
  background-color: #fff;
  padding: 60px 0 70px;
}
@media (max-width: 599px) {
  section {
    padding: 40px 0 50px;
  }
}

.common_ttl {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1001;
}
.common_ttl.common_ttl02 {
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .common_ttl.common_ttl02 {
    margin-bottom: 40px;
  }
}
.common_ttl.common_ttl02 h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 599px) {
  .common_ttl.common_ttl02 h2 {
    font-size: 24px;
  }
}
.common_ttl.common_ttl02 h2 span {
  font-size: 24px;
  font-weight: 500;
  display: block;
}
@media (max-width: 599px) {
  .common_ttl.common_ttl02 h2 span {
    font-size: 20px;
  }
}
.common_ttl h2 {
  font-size: 24px;
  color: #f98232;
  font-weight: 500;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  h3 {
    font-size: 20px;
  }
}

.txt_pink {
  color: #ff80c3;
}

.txt_pink_koi {
  color: #ff2897;
}

.txt_orange {
  color: #ff8232;
}

.txt_green {
  color: #51a927;
}

.txt_blue {
  color: #4280f0;
}

.txt_center {
  text-align: center;
}

.text_link {
  text-align: center;
}
.text_link a {
  color: #f98232;
  text-decoration: underline;
}

.common_read {
  text-align: center;
  margin-bottom: 15px;
}
.common_read p {
  margin-bottom: 20px;
  line-height: 2.2;
}

.top_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 90px;
    right: 23px;
  }
}
.top_btn .top_btn_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_btn img {
  width: 50%;
  margin: 0 auto 3px;
  display: block;
}
.top_btn p {
  text-align: center;
  white-space: nowrap;
  color: #fff;
}

.top_btn.active {
  opacity: 1;
}

.cta_fix {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
.cta_fix a {
  width: 50%;
  display: block;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.cta_fix a.cta_fix_reserve {
  background-color: #ff2897;
}
.cta_fix a.cta_fix_tel {
  background-color: #f98232;
}

.commmon_mv {
  position: relative;
}
.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}
.commmon_mv.page_point h2 {
  background-color: #fff;
}
@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}
@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
  }
}

.common_btn {
  margin-top: 75px;
  position: relative;
}
@media (max-width: 599px) {
  .common_btn {
    margin-top: 50px;
  }
}
.common_btn.common_btn_blue a {
  background-color: #f98232;
  color: #fff;
}
.common_btn.common_btn_orange a {
  background-color: #ff8232;
  color: #fff;
  box-shadow: none;
}
.common_btn.common_btn_orange a:hover {
  background-color: #3a3025;
}
.common_btn.common_btn_arrow a:hover::after {
  content: url(../images/arrow_right_black.png);
}
.common_btn.common_btn_arrow a::after {
  content: url(../images/arrow_right_white.png);
  position: absolute;
  right: 30px;
  top: 24px;
  transform: scale(0.5);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .common_btn.common_btn_arrow a::after {
    right: 50px;
    top: 18px;
  }
}
.common_btn a {
  width: 420px;
  margin: 0 auto;
  border-radius: 60px;
  text-align: center;
  padding: 25px 0;
  display: block;
  margin-top: 35px;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0px 0px 15px -5px #555;
}
.common_btn a:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(2px);
  background-color: #f98232;
  color: #fff;
}
@media (max-width: 599px) {
  .common_btn a {
    width: 90%;
    padding: 20px 0;
    font-size: 13px;
  }
}

.common_caption {
  border: 1px solid #fff;
  margin: 0 auto;
  padding: 30px 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .common_caption {
    width: 100%;
    padding: 20px 15px;
  }
}
.common_caption .caption_left {
  width: 15%;
  padding-left: 15px;
}
.common_caption .caption_left p {
  font-weight: 300;
}
@media (max-width: 768px) {
  .common_caption .caption_left {
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
    padding-left: 0;
  }
}
.common_caption .caption_right {
  width: 85%;
  padding-left: 40px;
  border-left: 1px solid #fff;
}
@media (max-width: 768px) {
  .common_caption .caption_right {
    width: 100%;
    border-left: none;
    border-top: 1px solid #fff;
    padding-left: 0;
    padding-top: 10px;
  }
}
.common_caption .caption_right li {
  font-size: 14px;
  padding-left: 17px;
  position: relative;
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 599px) {
  .common_caption .caption_right li {
    font-size: 11px;
  }
}
.common_caption .caption_right li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}

.common_white_box {
  width: 49%;
  padding: 30px 20px 35px;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 599px) {
  .common_white_box {
    width: 100%;
    padding: 20px;
    padding-bottom: 25px;
  }
}

.common_borderbox {
  width: 49%;
  padding: 30px 20px 35px;
  text-align: center;
  border: 1px solid #3a3025;
}
@media (max-width: 599px) {
  .common_borderbox {
    width: 100%;
    padding: 20px;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }
}
.common_borderbox img {
  max-width: 320px;
}
.common_borderbox a {
  display: block;
  margin-top: 16px;
}

.common_radius.common_radius_navy {
  background-color: #f98232;
  border-radius: 0 120px 0 120px;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .common_radius.common_radius_navy {
    padding: 40px 0 50px;
    border-radius: 0 80px 0 80px;
  }
}

.common_contact_box {
  background-color: #fff;
  padding: 70px;
  border-radius: 40px;
  margin-top: 75px;
  box-shadow: 0px 0px 15px -5px #555;
}
@media (max-width: 768px) {
  .common_contact_box {
    margin-top: 40px;
    padding: 30px 0 50px;
    border-radius: 20px;
  }
}
.common_contact_box .contact_box_text {
  width: 50%;
}
@media (max-width: 768px) {
  .common_contact_box .contact_box_text {
    width: 100%;
    text-align: center;
  }
}
.common_contact_box .contact_box_text h3 {
  font-size: 42px;
  color: #f98232;
}
@media (max-width: 768px) {
  .common_contact_box .contact_box_text h3 {
    font-size: 32px;
  }
}
.common_contact_box .contact_box_text p {
  font-size: 18px;
}
@media (max-width: 768px) {
  .common_contact_box .contact_box_text p {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.common_contact_box .common_btn {
  margin-top: 0;
  max-width: 350px;
  width: 100%;
}
@media (max-width: 768px) {
  .common_contact_box .common_btn {
    max-width: 100%;
  }
}
.common_contact_box .common_btn a {
  width: 100%;
  margin-top: 0;
  box-shadow: none;
}
.common_contact_box .common_btn a:hover {
  background-color: #74dfed;
  color: #3a3025;
}
@media (max-width: 768px) {
  .common_contact_box .common_btn a {
    width: 80%;
  }
}

#access_anker {
  margin-top: -95px;
  padding-top: 95px;
}

.service .service_cont .service_row_3col {
  justify-content: center;
}
.service .service_cont .service_row_3col::after {
  width: 10px;
  height: 10px;
  border-radius: 0;
  top: 47.8%;
}
.service .service_cont .service_row_3col .service_item {
  border-color: #8d939b;
}
.service .service_cont .service_row_3col .service_item:last-child {
  border: none;
  margin-top: 10px;
}
.service .service_cont .service_row_3col .service_item:nth-child(2) {
  border-right: 1px solid #37414f;
  border-bottom: 1px solid #37414f;
}
@media (max-width: 599px) {
  .service .service_cont .service_row_3col .service_item:nth-child(2) {
    border-right: none;
  }
}
.service .service_cont .service_row_3col .service_item:nth-child(3) {
  border-right: none;
  border-bottom: 1px solid #37414f;
}

.border_right_none {
  border-right: none !important;
}

.border_bottom_none {
  border-bottom: none !important;
}

.common_ttl_row .common_ttl_row_ttl {
  width: 10%;
  max-width: 80px;
}
@media (max-width: 599px) {
  .common_ttl_row .common_ttl_row_ttl {
    max-width: auto;
    width: 10%;
  }
}
.common_ttl_row .common_ttl_row_cont {
  width: 86%;
}
@media (max-width: 599px) {
  .common_ttl_row .common_ttl_row_cont {
    width: 86%;
  }
}

.bg_gray_left {
  background-color: #efe9e4;
  border-radius: 0 180px 0 0;
  width: 95%;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .bg_gray_left {
    width: 100%;
    border-radius: 0 60px 0 0;
    padding: 50px 0;
  }
}
.bg_gray_left.bg_gray_left_navy {
  background-color: #f98232;
}

.bg_gray_right {
  width: 95%;
  margin-left: auto;
  background-color: #efe9e4;
  border-radius: 180px 0 0 0;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .bg_gray_right {
    width: 100%;
    padding: 50px 0;
    border-radius: 0 60px 0 0;
  }
}

.circle {
  position: absolute;
  top: 0;
  right: -100px;
  width: 360px;
  z-index: 999;
}
@media (max-width: 599px) {
  .circle {
    width: 100px;
    right: -10px;
  }
}

.popup {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000000;
}
.popup .popup_bg {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}
.popup .popup_box {
  background-color: #fff;
  padding: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: 500px;
  z-index: 10000;
}
@media (max-width: 599px) {
  .popup .popup_box {
    width: 90%;
  }
}
.popup .popup_box .popup_close {
  width: 40px;
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
}
.popup .popup_box h3 {
  margin-bottom: 0;
}

.price.option_page {
  padding-bottom: 70px;
}
@media (max-width: 599px) {
  .price.option_page {
    padding-bottom: 50px;
  }
}

.gallery_list::before {
  content: "";
  width: 24%;
  order: 1;
}
.gallery_list::after {
  content: "";
  width: 24%;
}

/* header */
header {
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  header {
    padding: 10px 20px;
  }
}
header.movie_page {
  background-color: transparent;
}
header.movie_page .header_link .header_nav li a {
  color: #fff;
}
header.movie_page .menu_btn span {
  background-color: #fff;
}
header.movie_page.active {
  background-color: #000;
}
header .header_logo {
  min-width: 140px;
  width: 7%;
  z-index: 10001;
}
@media (max-width: 1200px) {
  header .header_logo {
    min-width: 100px;
  }
}
header .header_logo img {
  vertical-align: baseline;
}
header .header_link {
  width: 89%;
  max-width: 1325px;
}
@media (max-width: 1200px) {
  header .header_link {
    width: auto;
    justify-content: end;
  }
}
header .header_link .header_nav {
  width: 60%;
}
header .header_link .header_nav li {
  margin-right: 30px;
}
@media (max-width: 1500px) and (min-width: 1200px) {
  header .header_link .header_nav li {
    margin-right: 30px;
  }
}
header .header_link .header_nav li:nth-child(1) a {
  width: 38px;
  display: block;
}
header .header_link .header_nav li:nth-child(2) a {
  width: 103px;
  display: block;
}
header .header_link .header_nav li:nth-child(3) a {
  width: 60px;
  display: block;
}
header .header_link .header_nav li:nth-child(4) a {
  width: 42px;
  display: block;
}
header .header_link .header_nav li:nth-child(5) a {
  width: 63px;
  display: block;
}
header .header_link .header_nav li:nth-child(6) a {
  width: 54px;
  display: block;
}
header .header_link .header_nav li:nth-child(7) {
  margin-right: 0;
}
header .header_link .header_nav li:nth-child(7) a {
  width: 78px;
  display: block;
}
header .header_link .header_nav li:nth-child(7) a span {
  margin-right: 0;
}
header .header_link .header_nav li img {
  width: 20px;
  vertical-align: baseline;
}
header .header_link .header_nav li a {
  letter-spacing: 1px;
  font-weight: 400;
  padding: 11px 0;
  color: #3a3025;
  font-size: 12px;
  position: relative;
  /*はみ出る要素を隠す*/
  overflow: hidden;
}
@media (max-width: 1200px) {
  header .header_link .header_nav li a {
    color: #fff;
    width: 100% !important;
  }
}
header .header_link .header_nav li a:hover {
  opacity: 1;
}
header .header_link .header_nav li a:hover span:nth-child(1) {
  opacity: 0; /*透過0に*/
  transform: translate(-50%, -100%); /*X方向に-50% Y方向に-100%*/
}
header .header_link .header_nav li a:hover span:nth-child(2) {
  opacity: 1; /*不透明に*/
  transform: translate(-50%, 0); /*X方向に-50% Y方向に0*/
}
header .header_link .header_nav li a span {
  position: absolute;
  left: 50%;
  display: block;
  margin-right: 30px;
  top: 0;
  /*アニメーションの指定*/
  transition: all 0.5s;
  transform: translate(-50%, 0); /*X方向に-50% ※中央寄せにするため*/
  /*ブロック要素にして透過なし、テキスト折り返しなし*/
  display: block;
  opacity: 1;
  white-space: nowrap;
}
header .header_link .header_nav li a span:nth-child(2) {
  opacity: 0; /*透過0に*/
  transform: translate(-50%, 100%); /*X方向に-50% Y方向に100%*/
}
header .header_link .header_btns {
  width: 28%;
}
header .header_link .header_btns .header_tel {
  width: 56%;
}
header .header_link .header_btns .header_tel img {
  max-width: 251px;
}
header .header_link .header_sns a {
  width: 30%;
  margin-right: 20px;
}
@media (max-width: 1500px) and (min-width: 1200px) {
  header .header_link .header_sns a {
    margin-right: 14px;
  }
}
header .header_link .header_sns a:nth-child(1) {
  max-width: 30px;
}
@media (max-width: 1500px) and (min-width: 1200px) {
  header .header_link .header_sns a:nth-child(1) {
    max-width: 25px;
  }
}
header .header_link .header_sns a:nth-child(2) {
  max-width: 27px;
}
@media (max-width: 1500px) and (min-width: 1200px) {
  header .header_link .header_sns a:nth-child(2) {
    max-width: 22px;
  }
}
header .header_link .header_sns a:nth-child(3) {
  max-width: 29px;
}
@media (max-width: 1500px) and (min-width: 1200px) {
  header .header_link .header_sns a:nth-child(3) {
    max-width: 24px;
  }
}
header .header_yoyaku_btn {
  width: 155px;
  display: none;
}
@media (max-width: 1200px) {
  header .header_yoyaku_btn {
    display: block;
  }
}
header .header_yoyaku {
  background-color: #f98232;
  padding: 10px 0;
  max-width: 120px;
  width: 45%;
  text-align: center;
  color: #fff;
  border-radius: 60px;
}
header .header_yoyaku:hover {
  opacity: 1;
  background-color: #74dfed;
  color: #3a3025;
}
@media (max-width: 1200px) {
  header .header_yoyaku {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: 20px;
  }
}

.menu_btn {
  display: none;
}
@media (max-width: 1200px) {
  .menu_btn {
    display: block;
    width: 35px;
    height: 30px;
    position: relative;
    z-index: 4000;
  }
  .menu_btn span {
    display: inline-block;
    height: 1px;
    width: 35px;
    background-color: #000;
    border-radius: 10px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .menu_btn span:nth-child(1) {
    top: 5px;
  }
  .menu_btn span:nth-child(2) {
    top: 15px;
  }
  .menu_btn span:nth-child(3) {
    top: 25px;
  }
}

.nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f98232;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 50px;
  overflow: scroll;
}
.nav_sp a {
  color: #fff;
  font-size: 18px;
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span {
  background-color: #fff;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

@media (max-width: 1200px) {
  header .header_link .header_nav {
    width: 90%;
    margin: 0 auto;
  }
  header .header_link .header_nav li {
    width: 100%;
    margin-right: 0;
    border-top: 1px solid #fff;
    padding: 15px 0;
  }
  header .header_link .header_nav li:last-child {
    border-bottom: 1px solid #fff;
  }
  header .header_link .header_nav li a {
    font-size: 24px;
    width: 100%;
    display: block;
    position: relative;
  }
  header .header_link .header_nav li a::after {
    content: url(../images/arrow_nav.png);
    position: absolute;
    top: 3px;
    right: 0;
    transform: scale(0.4);
  }
  .header_privacy_row {
    width: 90%;
    margin: 30px auto 0;
  }
  .header_privacy_row .header_privacy,
  .header_privacy_row .header_sns {
    width: 47%;
  }
  .header_privacy_row .header_privacy a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) and (max-width: 599px) {
  .header_privacy_row .header_privacy a {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .common_btn.common_btn_blue.nav_sp_yoyaku {
    margin-top: 20px;
  }
  .common_btn.common_btn_blue.nav_sp_yoyaku a {
    background-color: #fff;
    color: #f98232;
    width: 70%;
    font-size: 20px;
  }
  .common_btn.common_btn_blue.nav_sp_yoyaku a::after {
    content: url(../images/arrow_right_orange.png);
    top: 21px;
    right: 70px;
  }
  .nav_sp_opa {
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #fff;
    width: 90%;
    margin: 30px auto 0;
    text-align: center;
  }
  .nav_sp_opa p {
    font-size: 10px;
    color: #fff;
  }
  .header_sns {
    width: 100%;
  }
  .header_sns .header_sns_row {
    justify-content: center;
    width: 100%;
  }
  .header_sns a {
    width: 32%;
    margin-right: 20px;
    max-width: 40px;
  }
  .header_sns a:last-child {
    margin-right: 0;
  }
}
/* footer */
footer .footer_nav {
  padding: 30px 0;
  background-color: #fff;
}
@media (max-width: 599px) {
  footer .footer_nav {
    background-color: #3a3025;
    padding-bottom: 0;
  }
}
@media (max-width: 599px) {
  footer .footer_nav ul {
    width: 90%;
    margin: 0 auto;
  }
}
footer .footer_nav li {
  margin-right: 30px;
}
@media (max-width: 599px) {
  footer .footer_nav li {
    width: 50%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
footer .footer_nav li:first-child a {
  position: relative;
}
footer .footer_nav li:first-child a::before {
  content: url(../images/icon_arrow_top.png);
  position: absolute;
  left: -25px;
  top: -5px;
  transform: scale(0.6);
}
@media (max-width: 599px) {
  footer .footer_nav li:first-child a::before {
    content: none;
  }
}
footer .footer_nav li:last-child {
  margin-right: 0;
}
footer .footer_nav li:nth-child(1) a {
  width: 42px;
}
footer .footer_nav li:nth-child(2) a {
  width: 115px;
}
footer .footer_nav li:nth-child(3) a {
  width: 66px;
}
footer .footer_nav li:nth-child(4) a {
  width: 47px;
}
footer .footer_nav li:nth-child(5) a {
  width: 70px;
}
footer .footer_nav li:nth-child(6) a {
  width: 60px;
}
footer .footer_nav li:nth-child(7) a {
  width: 84px;
}
footer .footer_nav li:nth-child(8) {
  margin-right: 0;
}
footer .footer_nav li:nth-child(8) a {
  width: 139px;
}
footer .footer_nav li:nth-child(9) {
  margin-right: 0;
}
footer .footer_nav li:nth-child(9) a {
  width: 270px;
}
footer .footer_nav a {
  letter-spacing: 2px;
  font-size: 12px;
  position: relative;
  display: block;
  padding: 11px 0;
  /*はみ出る要素を隠す*/
  overflow: hidden;
}
@media (max-width: 599px) {
  footer .footer_nav a {
    color: #fff;
    width: 100% !important;
    padding: 0;
  }
}
footer .footer_nav a:hover {
  opacity: 1;
}
footer .footer_nav a:hover span:nth-child(1) {
  opacity: 0; /*透過0に*/
  transform: translate(-50%, -100%); /*X方向に-50% Y方向に-100%*/
}
footer .footer_nav a:hover span:nth-child(2) {
  opacity: 1; /*不透明に*/
  transform: translate(-50%, 0); /*X方向に-50% Y方向に0*/
}
footer .footer_nav a span {
  position: absolute;
  left: 50%;
  display: block;
  margin-right: 30px;
  top: 0;
  /*アニメーションの指定*/
  transition: all 0.5s;
  transform: translate(-50%, 0); /*X方向に-50% ※中央寄せにするため*/
  /*ブロック要素にして透過なし、テキスト折り返しなし*/
  display: block;
  opacity: 1;
  white-space: nowrap;
}
@media (max-width: 599px) {
  footer .footer_nav a span {
    position: relative;
  }
}
footer .footer_nav a span:nth-child(2) {
  opacity: 0; /*透過0に*/
  transform: translate(-50%, 100%); /*X方向に-50% Y方向に100%*/
}
@media (max-width: 599px) {
  footer .footer_nav a span:nth-child(2) {
    display: none;
  }
}
footer .footer_links {
  background-color: #3a3025;
  padding: 30px 0 30px;
}
footer .footer_links .footer_logo,
footer .footer_links .footer_sns {
  width: 47%;
}
@media (max-width: 599px) {
  footer .footer_links .footer_sns {
    justify-content: center;
  }
}
footer .footer_links .footer_sns a.footer_sns_line {
  width: 26%;
}
footer .footer_links .footer_sns a.footer_sns_x {
  width: 20%;
}
@media (max-width: 599px) {
  footer .footer_links .footer_sns a.footer_sns_x {
    margin-right: 20px;
  }
}
footer .footer_links .footer_sns a.footer_sns_insta {
  width: 24%;
}
footer .footer_bg {
  background-color: #3a3025;
  padding: 50px 0;
}
@media (max-width: 768px) {
  footer .footer_bg {
    padding-bottom: 50px;
    padding-top: 0;
  }
}
footer .footer_bg .footer_info {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  footer .footer_bg .footer_info {
    text-align: left;
    width: 90%;
    margin: 0 auto 30px;
  }
}
footer .footer_bg .footer_info p, footer .footer_bg .footer_info a {
  color: #fff;
  font-weight: 300;
}
@media (max-width: 599px) {
  footer .footer_bg .footer_info p, footer .footer_bg .footer_info a {
    font-size: 13px;
  }
}
footer .footer_bg .footer_name {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  footer .footer_bg .footer_name {
    margin-bottom: 30px;
  }
}
footer .footer_bg .footer_name p {
  border: 1px solid #fff;
  padding: 10px 30px;
  border-radius: 60px;
  display: inline-block;
  color: #efe9e4;
  font-weight: 300;
}
@media (max-width: 599px) {
  footer .footer_bg .footer_name p {
    font-size: 13px;
  }
}
footer .footer_bg .copyright {
  text-align: center;
}
footer .footer_bg .copyright p {
  color: #808489;
  font-size: 10px;
}
footer .footer_bg .copyright p a {
  color: #808489;
}
footer .footer_sougo_link {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  footer .footer_sougo_link {
    margin-bottom: 30px;
  }
}
footer .footer_sougo_link p {
  color: #fff;
  text-align: center;
}
footer .footer_sougo_link a {
  margin-right: 20px;
}
@media (max-width: 599px) {
  footer .footer_sougo_link a {
    text-align: center;
    margin-bottom: 20px;
  }
}
footer .footer_sougo_link a:last-child {
  margin-right: 0;
}
footer .footer_sougo_link a img {
  width: auto;
}

.footer_law {
  text-align: center;
  margin-bottom: 30px;
}
.footer_law a {
  font-size: 12px;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  color: #fff;
  font-weight: 200;
}

/* top */
#slider {
  width: 100%;
  height: 100vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.mv {
  position: relative;
  margin-top: 85px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .mv {
    margin-top: 74px;
  }
}
.mv .mv_slide li img {
  width: 100%;
}
.mv .mv_slide li .mv_slide_item {
  position: relative;
}
.mv .mv_slide li .mv_slide_item .bokashi {
  background: rgba(255, 255, 255, 0.8);
}
.mv .mv_slide li .mv_slide_item .normal {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.mv .mv_slide .slick-dots li button:before {
  font-size: 48px;
  color: #808489;
  opacity: 1;
}
@media (max-width: 599px) {
  .mv .mv_slide .slick-dots li button:before {
    font-size: 40px;
  }
}
.mv .mv_slide .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #f98232;
}
.mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.insta {
  padding: 190px 0 70px;
}
@media (max-width: 599px) {
  .insta {
    padding: 60px 0 40px;
  }
}
.insta .insta_ttl {
  max-width: 75px;
}
.insta .insta_cont img {
  border: 1px solid #808489;
}
.insta .insta_cont li {
  width: 31%;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .insta .insta_cont li {
    width: 48%;
    margin-bottom: 20px;
  }
}
.insta .insta_btn {
  margin: 0 auto 0;
}
@media (max-width: 599px) {
  .insta .insta_btn {
    margin-top: 30px;
    width: 90%;
  }
}
.insta .insta_btn a {
  width: 300px;
  margin-top: 0;
}
@media (max-width: 599px) {
  .insta .insta_btn a {
    width: 100%;
  }
}

.what {
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}
.what::before {
  background-image: url(../images/service_img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.what .common_radius {
  position: relative;
  z-index: 1000;
}
.what .common_radius .inner {
  position: relative;
  z-index: 1001;
}
.what .common_radius .inner .row {
  position: relative;
  z-index: 1001;
}
.what .common_radius .circle {
  width: 360px;
  position: absolute;
  top: 0;
  right: -30%;
}
@media (max-width: 768px) {
  .what .common_radius .circle {
    max-width: -120px;
    width: 27%;
    right: 0;
    top: 0;
  }
}
.what .what_radius_wrap {
  background-color: #fff;
  border-radius: 0 0 0 140px;
}
.what .what_ttl {
  max-width: 870px;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .what .what_ttl {
    width: 62%;
    margin-bottom: 30px;
  }
}
.what .what_row .what_subttl {
  width: 15%;
}
.what .what_row .what_subttl img {
  max-width: 85px;
  margin: 0 auto 30px;
  margin-left: 40px;
  display: block;
}
@media (max-width: 599px) {
  .what .what_row .what_subttl img {
    margin-left: 5px;
    margin-bottom: 20px;
  }
}
.what .what_row .what_subttl h3 {
  font-size: 46px;
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 100;
  padding-right: 10px;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .what .what_row .what_subttl h3 {
    font-size: 20px;
    line-height: 1.4;
  }
}
.what .what_row .what_subttl .w_quotation_t {
  margin-top: -30px;
}
@media (max-width: 768px) {
  .what .what_row .what_subttl .w_quotation_t {
    margin-top: -12px;
  }
}
.what .what_row .what_subttl .w_quotation_b {
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .what .what_row .what_subttl .w_quotation_b {
    margin-bottom: -8px;
  }
}
.what .what_row .what_cont {
  width: 76%;
}
@media (max-width: 768px) {
  .what .what_row .what_cont {
    width: 74%;
  }
}
.what .what_row .what_cont img {
  margin-bottom: 30px;
}
.what .what_row .what_cont .what_text p {
  color: #fff;
  margin-bottom: 40px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .what .what_row .what_cont .what_text p {
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.what .common_btn a:hover {
  background-color: #74dfed;
  color: #3a3025;
}
@media (max-width: 599px) {
  .what .common_btn a {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
.what .line_banner {
  max-width: 710px;
  margin: 0 auto;
  padding: 180px 0;
  width: 100%;
}
@media (max-width: 599px) {
  .what .line_banner {
    width: 90%;
    padding: 50px 0;
  }
}

.service {
  padding: 0;
  background-color: transparent;
}
.service .service_bg {
  background-color: #fff;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .service .service_bg {
    padding: 50px 0;
  }
}
.price {
  padding: 0;
  overflow: hidden;
}
.price .price_radius {
  background-color: #efe9e4;
  border-radius: 0 180px 0 0;
  width: 90%;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .price .price_radius {
    width: 100%;
    border-radius: 0 60px 0 0;
    padding: 50px 0;
  }
}
.price .price_item {
  position: relative;
  z-index: 1000;
  margin-bottom: 20px;
}
.price .price_item:last-child {
  margin-bottom: 0;
}
.price .price_item h3 {
  text-align: center;
}
.price .price_item h3 span {
  font-size: 16px;
}
@media (max-width: 599px) {
  .price .price_item h3 span {
    font-size: 14px;
  }
}
.price .price_item .price_text p {
  margin-right: 30px;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 2px;
}
@media (max-width: 599px) {
  .price .price_item .price_text p {
    margin-right: 0;
  }
}
.price .price_item .price_text p:last-child {
  margin-right: 0;
}
.price .price_item .price_text p span {
  font-size: 38px;
}
.price .price_item .price_text p span:nth-child(2), .price .price_item .price_text p span:nth-child(4) {
  margin-left: 10px;
}
.price .price_btn {
  margin-top: 30px;
}
.price .inner {
  position: relative;
}
.price .inner .circle {
  position: absolute;
  width: 360px;
  top: 0;
  right: -180px;
  z-index: 100;
}
@media (max-width: 599px) {
  .price .inner .circle {
    width: 100px;
    right: -10px;
  }
}

.price_caption {
  margin-top: 15px;
  padding: 20px;
  border-color: #3a3025;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .price_caption {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .price_caption:first-child {
    margin-top: 0;
  }
}
.price_caption p {
  color: #3a3025;
}
.price_caption .caption_left {
  width: 28%;
  text-align: center;
  padding-left: 0;
}
@media (max-width: 768px) {
  .price_caption .caption_left {
    width: 100%;
    border-right: none;
  }
}
.price_caption .caption_left p {
  padding: 10px 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .price_caption .caption_left p {
    padding: 0;
    font-size: 12px;
  }
}
.price_caption .caption_left p span {
  font-size: 24px;
}
.price_caption .caption_right {
  width: 71%;
  border-color: #3a3025;
  padding-left: 0;
}
@media (max-width: 768px) {
  .price_caption .caption_right {
    width: 100%;
    border-color: #3a3025;
  }
  .price_caption .caption_right .row {
    justify-content: center;
  }
}
.price_caption .caption_right p {
  padding: 10px 0;
  margin-right: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .price_caption .caption_right p {
    padding: 0;
    text-align: center;
    margin-right: 0;
    line-height: 1.6;
  }
}
.price_caption .caption_right p:last-child {
  margin-right: 0;
}
.price_caption .caption_right p .txt_time {
  font-size: 26px;
}
.price_caption .caption_right p .txt_price {
  font-size: 38px;
  margin-left: 10px;
}
.price_caption .caption_right p .txt_yen {
  font-size: 26px;
}
.price_caption .caption_right p .expenses {
  margin-left: 20px;
  font-size: 14px;
  color: #808489;
}
@media (max-width: 768px) {
  .price_caption .caption_right p .expenses {
    margin-left: 0;
    display: block;
  }
}

.gallery {
  padding: 140px 0px 70px;
}
@media (max-width: 599px) {
  .gallery {
    padding: 50px 0;
  }
}
.gallery .gallery_ttl {
  max-width: 535px;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .gallery .gallery_ttl {
    margin-bottom: 20px;
    width: 68%;
  }
}
.gallery .gallery_slide {
  position: relative;
}
.gallery .gallery_slide li {
  margin: 0 20px;
}
@media (max-width: 599px) {
  .gallery .gallery_slide li {
    margin: 0px 5px;
  }
}
.gallery .slick_pause {
  width: 40px;
  margin: 30px auto 0;
  cursor: pointer;
  position: relative;
}
.gallery .slick_pause .slide-arrow {
  width: 40px;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1000;
}
.gallery .slick_pause .slide-arrow.prev-arrow {
  left: -100%;
}
.gallery .slick_pause .slide-arrow.next-arrow {
  right: -200%;
}
@media (max-width: 599px) {
  .gallery .common_btn a {
    width: 80%;
  }
}

.calendar {
  padding: 0;
}
@media (max-width: 599px) {
  .calendar .fc-toolbar {
    display: block;
  }
}
.calendar .calendar_wrap {
  width: 90%;
  margin-left: auto;
  background-color: #efe9e4;
  border-radius: 180px 0 0 0;
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .calendar .calendar_wrap {
    width: 100%;
    padding: 50px 0;
    border-radius: 0 60px 0 0;
  }
}
.calendar .calendar_ttl_row {
  position: relative;
  z-index: 1000;
}
@media (max-width: 599px) {
  .calendar .fc-direction-ltr {
    height: 600px;
  }
}
.calendar .fc-theme-standard td,
.calendar .fc-theme-standard th {
  border: 1px solid #f98232;
}
.calendar .fc-scrollgrid-sync-table {
  border-collapse: collapse;
}
.calendar .fc .fc-daygrid-day.fc-day-today {
  background-color: #d2d2d2;
}
@media (max-width: 599px) {
  .calendar .calendar_ttl_row .calendar_ttl {
    width: 100%;
  }
}
@media (max-width: 599px) and (max-width: 599px) {
  .calendar .calendar_ttl_row .calendar_ttl {
    width: 82%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 599px) {
  .calendar .calendar_ttl_row .common_ttl_row_cont {
    width: 100%;
  }
}
.calendar .inner {
  position: relative;
  z-index: 1000;
}
.calendar .inner .circle {
  position: absolute;
  top: 0;
  right: -100px;
  width: 360px;
  z-index: 999;
}
@media (max-width: 599px) {
  .calendar .inner .circle {
    width: 100px;
    right: -10px;
  }
}

.access {
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .access {
    padding: 40px 0 50px;
  }
}
.access .access_row {
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .access .access_row {
    width: 80%;
    margin: 0 auto;
  }
}
.access .access_ttl {
  width: 100%;
  max-width: 460px;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .access .access_ttl {
    margin-bottom: 20px;
    max-width: 58%;
  }
}
.access .access_map {
  width: 50%;
}
@media (max-width: 599px) {
  .access .access_map {
    width: 100%;
    margin-bottom: 20px;
  }
}
.access .access_map iframe {
  height: 330px;
}
.access .access_textarea {
  width: 45%;
}
@media (max-width: 599px) {
  .access .access_textarea {
    width: 100%;
  }
}
.access .access_textarea .access_text p {
  margin-bottom: 50px;
  font-weight: 300;
}
@media (max-width: 599px) {
  .access .access_textarea .access_text p {
    margin-bottom: 30px;
    font-size: 13px;
  }
}
.access .access_textarea .access_caption {
  border: 1px solid #808489;
  width: 100%;
  margin-top: 10px;
  padding: 30px;
  padding-left: 0;
}
@media (max-width: 599px) {
  .access .access_textarea .access_caption {
    padding: 20px;
  }
}
.access .access_textarea .access_caption p,
.access .access_textarea .access_caption li {
  color: #808489;
}
.access .access_textarea .access_caption .caption_left {
  width: 20%;
  border-right: none;
  padding-left: 0;
  text-align: center;
}
@media (max-width: 599px) {
  .access .access_textarea .access_caption .caption_left {
    width: 100%;
  }
}
.access .access_textarea .access_caption .caption_left p {
  margin-bottom: 0;
}
.access .access_textarea .access_caption .caption_right {
  width: 80%;
  border-left: 1px solid #808489;
  padding-left: 20px;
}
@media (max-width: 599px) {
  .access .access_textarea .access_caption .caption_right {
    width: 100%;
    border-color: #808489;
    border-left: none;
    padding-left: 0;
  }
}
.access .access_textarea .access_caption .caption_right li::before {
  background-color: #808489;
}
@media (max-width: 599px) {
  .access .access_parkings .row {
    justify-content: center;
  }
}
.access .access_parkings .access_parking {
  width: 19%;
}
@media (max-width: 599px) {
  .access .access_parkings .access_parking {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 2%;
  }
  .access .access_parkings .access_parking:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }
  .access .access_parkings .access_parking:nth-child(even) {
    margin-right: 0;
  }
}

.contact {
  padding: 0;
  overflow: hidden;
}
.contact.movie_page {
  background: transparent;
}
.contact .contact_wrap {
  background-color: #efe9e4;
  width: 90%;
  border-radius: 0 180px 0 0;
  padding: 140px 0px 70px;
}
@media (max-width: 599px) {
  .contact .contact_wrap {
    width: 100%;
    padding: 50px 0;
    border-radius: 0 60px 0 0;
  }
}
.contact .inner {
  position: relative;
  z-index: 1000;
}
.contact .inner .circle {
  position: absolute;
  top: 0;
  right: -100px;
  width: 360px;
  z-index: 999;
}
@media (max-width: 599px) {
  .contact .inner .circle {
    width: 100px;
    right: -10px;
  }
}
.contact .contact_ttl {
  max-width: 558px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 599px) {
  .contact .contact_ttl {
    margin-bottom: 20px;
    max-width: 70%;
  }
}
.contact .common_contact_box {
  position: relative;
  z-index: 1000;
}
@media (max-width: 599px) {
  .contact .common_contact_box {
    margin-top: 20px;
  }
}
.contact .contact_read {
  position: relative;
  z-index: 1000;
}
.contact .contact_read p {
  font-weight: 300;
}
@media (max-width: 599px) {
  .contact .contact_read p {
    font-size: 13px;
  }
}
.contact .contact_box {
  margin: 0 auto 20px;
}
.contact .contact_box_row {
  margin-top: 40px;
}
.contact .contact_borderbox {
  width: 49%;
}
.contact .contact_borderbox:last-child {
  margin-bottom: 0;
}
.contact .contact_borderbox:last-child .common_btn_navy a {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .contact .contact_borderbox:last-child .common_btn_navy a {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .contact .contact_borderbox {
    width: 100%;
    margin-bottom: 30px;
  }
}
.contact .contact_borderbox .common_btn {
  margin-top: 0;
}
.contact .contact_borderbox .common_btn a {
  max-width: 360px;
}
.contact .contact_borderbox .contact_borderbox_tel {
  margin-top: 25px;
}
@media (max-width: 599px) {
  .contact .contact_borderbox .contact_borderbox_tel {
    margin-top: 15px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(3%);
}
.fadein.active {
  animation: 0.4s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.4s forwards 0.4s fadein;
}

.fadein_ttl {
  opacity: 0;
  transform: translateX(-5%);
}
.fadein_ttl.active {
  animation: 0.4s forwards 0.3s fadein_ttl;
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.5s forwards leftin;
}

.rightin {
  transform: translateX(100%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.5s forwards rightin;
}

.bg_gray_left {
  transform: translateX(-100%);
}
.bg_gray_left.active {
  animation: 0.8s forwards common_radius_navy;
}

.bg_gray_right {
  transform: translateX(100%);
}
.bg_gray_right.active {
  animation: 0.8s forwards common_radius_navy02;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_ttl {
  0% {
    opacity: 0;
    transform: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.scale {
  transform: scale(0);
}
.scale.active {
  animation: 0.8s forwards scale;
}

.scale2 {
  transform: scale(0);
}
.scale2.active {
  animation: 0.8s forwards 0.4s scale;
}

@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.common_radius_navy {
  transform: translateX(-100%);
}
.common_radius_navy.active {
  animation: 0.8s forwards common_radius_navy;
}

.what_ttl.fadein_ttl.active {
  animation: 0.8s forwards 0.6s fadein_ttl;
}

.what_row.fadein.active {
  animation: 0.8s forwards 0.8s fadein;
}

.what .circle.scale.active {
  animation: 0.8s forwards 1.2s scale;
}

.price_radius {
  transform: translateX(-100%);
}
.price_radius.active {
  animation: 0.8s forwards common_radius_navy;
}

.price_ttl.fadein_ttl.active {
  animation: 0.8s forwards 0.6s fadein_ttl;
}

.price_cont.fadein,
.price_btn.fadein {
  position: relative;
  z-index: 10000;
}
.price_cont.fadein.active,
.price_btn.fadein.active {
  animation: 0.8s forwards 1s fadein;
}

.price .circle.scale.active {
  animation: 0.8s forwards 1.4s scale;
}

.calendar {
  overflow: hidden;
}

.calendar_wrap {
  transform: translateX(100%);
}
.calendar_wrap.active {
  animation: 0.8s forwards common_radius_navy02;
}

.calendar_ttl.fadein_ttl.active {
  animation: 0.8s forwards 0.6s fadein_ttl;
}

.calendar_ttl_row .common_ttl_row_cont.fadein {
  position: relative;
  z-index: 10000;
}
.calendar_ttl_row .common_ttl_row_cont.fadein.active {
  animation: 0.8s forwards 1s fadein;
}

.calendar .circle.scale.active {
  animation: 0.8s forwards 1.2s scale;
}

.contact_wrap {
  transform: translateX(-100%);
}
.contact_wrap.active {
  animation: 0.8s forwards common_radius_navy;
}

.contact_ttl.fadein_ttl.active {
  animation: 0.8s forwards 0.6s fadein_ttl;
}

.contact_read.fadein_ttl.active {
  animation: 0.8s forwards 1s fadein_ttl;
}

.contact .common_contact_box.scale.active,
.contact .contact_box_row.scale.active {
  animation: 0.8s forwards 1.2s scale;
}

.contact .circle.scale.active {
  animation: 0.8s forwards 1.6s scale;
}

@keyframes common_radius_navy {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes common_radius_navy02 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes cont_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv_slide {
  margin-inline: auto;
}

.slick-img img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 8s linear 0s normal both;
}

.service_mv {
  overflow: hidden;
}

.service_mv .studio_mv_ttl img {
  transform: scale(0);
}
.service_mv .studio_mv_ttl img.active {
  animation: 0.8s forwards 0.6s scale;
}

.service_mv .studio_mv_ttl h2 {
  opacity: 0;
}
.service_mv .studio_mv_ttl h2.active {
  animation: 0.8s forwards 1s fadein;
}

.service_mv .studio_mv_img {
  transform: translateX(100%);
}
.service_mv .studio_mv_img.active {
  animation: 0.8s forwards common_radius_navy02;
}

.rental_studio .common_ttl {
  opacity: 0;
}
.rental_studio .common_ttl.active {
  animation: 0.8s forwards 0.8s fadein;
}
.rental_studio .rental_studio_read {
  opacity: 0;
}
.rental_studio .rental_studio_read.active {
  animation: 0.8s forwards 0.8s fadein;
}
.rental_studio .rental_studio_img,
.rental_studio .service_imgs {
  opacity: 0;
}
.rental_studio .rental_studio_img.active,
.rental_studio .service_imgs.active {
  animation: 0.8s forwards 1s fadein;
}
.rental_studio .circle {
  transform: scale(0);
}
.rental_studio .circle.active {
  animation: 0.8s forwards 1.2s scale;
}

.rental_studio_b {
  overflow: hidden;
}
.rental_studio_b .common_ttl {
  opacity: 0;
}
.rental_studio_b .common_ttl.active {
  animation: 0.8s forwards 0.8s fadein;
}
.rental_studio_b .service_imgs {
  opacity: 0;
}
.rental_studio_b .service_imgs.active {
  animation: 0.8s forwards 1s fadein;
}

.service_common .service_item01 img {
  transform: scale(0);
}
.service_common .service_item01 img.active {
  animation: 0.8s forwards scale;
}
.service_common .service_item02 img {
  transform: scale(0);
}
.service_common .service_item02 img.active {
  animation: 0.8s forwards 0.4s scale;
}
.service_common .service_item03 img {
  transform: scale(0);
}
.service_common .service_item03 img.active {
  animation: 0.8s forwards 0.6s scale;
}

.movie_photo .common_ttl,
.movie_photo .rental_studio_read {
  opacity: 0;
}
.movie_photo .common_ttl.active,
.movie_photo .rental_studio_read.active {
  animation: 0.8s forwards 0.8s fadein;
}
.movie_photo .movie_photo_list {
  opacity: 0;
}
.movie_photo .movie_photo_list.active {
  animation: 0.8s forwards 1s fadein;
}
.movie_photo .circle {
  transform: scale(0);
}
.movie_photo .circle.active {
  animation: 0.8s forwards 1.2s scale;
}

.price_page .price_contents .price_img {
  transform: scale(0);
}
.price_page .price_contents .price_img.active {
  animation: 0.8s forwards 0.6s scale;
}
.price_page .price_contents .price_textarea {
  opacity: 0;
}
.price_page .price_contents .price_textarea.active {
  animation: 0.8s forwards 0.8s fadein;
}

.price_table_text {
  text-align: center;
}
.price_table_text p {
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.4;
}
.price_table_text p .span_min {
  font-size: 26px;
}
@media (max-width: 599px) {
  .price_table_text p .span_min {
    font-size: 16px;
  }
}
.price_table_text p .span_price {
  font-size: 38px;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .price_table_text p .span_price {
    font-size: 28px;
  }
}

.price_table_subtext {
  text-align: center;
}
.price_table_subtext p span {
  font-size: 26px;
  margin-left: 5px;
}
.price_table_subtext p span.price_hour {
  font-size: 18px;
}
@media (max-width: 599px) {
  .price_table_subtext p .span_min {
    font-size: 16px;
  }
}

.price_table_caption {
  margin-top: 20px;
}
@media (max-width: 599px) {
  .price_table_caption {
    margin-top: 0;
  }
}
.price_table_caption p {
  letter-spacing: 1px;
}
.price_table_caption .row p:last-child {
  margin-left: 30px;
}
@media (max-width: 599px) {
  .price_table_caption .row p:last-child {
    margin-left: 5px;
  }
}
.price_table_caption .row .span_price {
  font-size: 26px;
  margin-left: 10px;
}
@media (max-width: 599px) {
  .price_table_caption .row .span_price {
    font-size: 16px;
    margin-left: 5px;
  }
}
.price_table_caption .row .span_1 {
  font-size: 18px;
  margin: 0 2px;
}
@media (max-width: 599px) {
  .price_table_caption .row .span_1 {
    font-size: 15px;
  }
}
.price_table_caption .price_table_caption_text {
  text-align: center;
}
@media (max-width: 599px) {
  .price_table_caption .price_table_caption_text {
    text-align: left;
    margin-top: 10px;
  }
}

.price_option .inner {
  background-color: #fff;
  padding: 30px 50px 80px;
}
@media (max-width: 599px) {
  .price_option .inner {
    padding: 30px 20px 20px;
  }
}
.price_option .inner .price_option_box {
  border-top: 1px solid #808489;
  padding: 40px 50px 0;
}
@media (max-width: 599px) {
  .price_option .inner .price_option_box {
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.price_option .inner .price_option_box.price_option_box_picture p::before, .price_option .inner .price_option_box.price_option_box_picture p::after {
  content: none;
}
.price_option .inner .price_option_box.price_option_box_02 {
  border-top: none;
}
.price_option .inner .price_option_box .price_option_movie_wrap {
  border-bottom: 1px solid #808489;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.price_option .inner .price_option_box .price_option_movie_wrap .price_option_text {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
.price_option .inner .price_option_box .price_option_movie_wrap p::before, .price_option .inner .price_option_box .price_option_movie_wrap p::after {
  content: none;
}
.price_option .inner .price_option_box .price_option_subttl {
  text-align: center;
  margin: 16px 0 0;
}
.price_option .inner .price_option_box .price_option_subttl h3 {
  font-size: 18px;
  color: #282f38;
  margin-bottom: 0;
}
.price_option .inner .price_option_box .price_option_subttl h3 .text_small {
  font-size: 16px;
}
.price_option .inner .price_option_box .price_option_movie {
  margin-bottom: 32px;
}
.price_option .inner .price_option_box .price_option_movie .price_option_row {
  margin-bottom: 0;
}
.price_option .inner .price_option_box .price_option_movie .price_option_row p {
  line-height: 1.6;
}
.price_option .inner .price_option_box .price_option_row {
  margin-bottom: 10px;
}
.price_option .inner .price_option_box p {
  position: relative;
}
.price_option .inner .price_option_box p::before, .price_option .inner .price_option_box p::after {
  position: absolute;
  top: 7px;
  transform: scale(0.5);
}
@media (max-width: 599px) {
  .price_option .inner .price_option_box p::before, .price_option .inner .price_option_box p::after {
    transform: scale(0.35);
    top: -8px;
  }
}
.price_option .inner .price_option_box p::before {
  content: url(../images/hukidashi_left.png);
  left: -30px;
}
@media (max-width: 599px) {
  .price_option .inner .price_option_box p::before {
    left: -20px;
  }
}
.price_option .inner .price_option_box p::after {
  content: url(../images/hukidashi_right.png);
  right: -30px;
}
@media (max-width: 599px) {
  .price_option .inner .price_option_box p::after {
    right: -25px;
  }
}
.price_option .inner .price_option_box p:last-child {
  margin-left: 0;
}
.price_option .inner .price_option_box p .span_price {
  font-size: 26px;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .price_option .inner .price_option_box p .span_price {
    font-size: 16px;
  }
}
.price_option .inner .price_option_box .common_btn {
  margin-top: 0;
  margin-bottom: 40px;
}
.price_option .inner .price_option_box .common_btn a {
  margin-top: 0;
  box-shadow: none;
}
.price_option .inner .price_option_box .common_btn a:hover {
  background-color: #3a3025;
}
.price_option .price_option_ttl {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .price_option .price_option_ttl {
    width: 100%;
  }
}
.price_option .price_option_ttl h3 {
  margin-bottom: 0;
  font-size: 24px;
  color: #f98232;
}
.price_option .price_option_text {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .price_option .price_option_text {
    margin-bottom: 30px;
  }
}
.price_option .price_option_row {
  margin: 0 auto 30px;
}
@media (max-width: 599px) {
  .price_option .price_option_row {
    width: 100%;
    margin-bottom: 30px;
  }
}
.price_option .price_option_row p {
  letter-spacing: 1px;
}
.price_option .price_option_row p:last-child {
  margin-left: 40px;
}
@media (max-width: 599px) {
  .price_option .price_option_row p:last-child {
    margin-left: 0;
  }
}
.price_option .price_option_row .span_price {
  font-size: 26px;
  margin-left: 5px;
}
@media (max-width: 599px) {
  .price_option .price_option_row .span_price {
    font-size: 16px;
  }
}
.price_option .price_caption {
  width: 85%;
  margin: 0 auto 50px;
  background-color: #efe9e4;
  border: none;
}
@media (max-width: 768px) {
  .price_option .price_caption {
    width: 100%;
    margin-bottom: 30px;
  }
  .price_option .price_caption .flex_center {
    justify-content: flex-start;
  }
}
.price_option .price_caption .caption_left {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 599px) {
  .price_option .price_caption .caption_left {
    display: block;
  }
}
.price_option .price_caption .caption_right {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #808489;
}
.price_option .price_caption .caption_right li {
  color: #808489;
  margin-right: 20px;
}
.price_option .price_caption .caption_right li:last-child {
  margin-right: 0;
}
.price_option .price_caption .caption_right li::before {
  background-color: #808489;
}

.price_page {
  padding: 80px 0 0;
}
@media (max-width: 599px) {
  .price_page {
    padding: 50px 0 0;
  }
}
.price_page .bg_gray_right {
  padding-top: 0;
}
@media (max-width: 599px) {
  .price_page .bg_gray_right {
    border-radius: 60px 0 0 0;
  }
}
@media (max-width: 599px) {
  .price_page .price_tabs_inner {
    width: 73%;
  }
}
.price_page .price_tabs {
  padding-bottom: 70px;
}
@media (max-width: 599px) {
  .price_page .price_tabs {
    padding-bottom: 30px;
  }
}
.price_page .price_tabs .price_tab {
  width: 25%;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .price_page .price_tabs .price_tab {
    width: 50%;
  }
}
.price_page .price_tabs .price_tab:hover {
  color: #fff;
}
.price_page .price_tabs .price_tab:hover p {
  background-color: #f98232;
  border-radius: 0 0 80px 0;
}
.price_page .price_tabs .price_tab.active {
  color: #fff;
}
.price_page .price_tabs .price_tab.active p {
  background-color: #f98232;
  border-radius: 0 0 80px 0;
}
.price_page .price_tabs .price_tab:last-child {
  border-radius: 0 0 80px 0;
}
@media (max-width: 599px) {
  .price_page .price_tabs .price_tab:last-child {
    border-radius: 0;
  }
}
.price_page .price_tabs .price_tab p {
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0 0 80px 0;
}
@media (max-width: 599px) {
  .price_page .price_tabs .price_tab p {
    padding: 10px 0;
  }
}
.price_page .price_contents .price_table {
  margin-top: 70px;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_table {
    margin-top: 50px;
  }
}
.price_page .price_contents .price_content_studio .price_table {
  margin-top: 70px;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_content_studio .price_table {
    margin-top: 50px;
  }
}
@media (max-width: 599px) {
  .price_page .price_contents .price_content_studio .price_table .price_table_item.price_table_item_studio {
    padding-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .price_page .price_contents .price_content_studio .price_table .price_table_item.price_table_item_studio .price_table_text p {
    margin-left: 0;
  }
}
.price_page .price_contents .price_content_studio .price_table .price_table_item .price_table_box {
  width: 100%;
}
.price_page .price_contents .price_content_location .price_table .price_table_price p,
.price_page .price_contents .price_content_movie .price_table .price_table_price p {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 2px;
}
.price_page .price_contents .price_content_location .price_table .price_table_price p span,
.price_page .price_contents .price_content_movie .price_table .price_table_price p span {
  font-size: 38px;
}
.price_page .price_contents .price_content_location .price_table .price_table_price p span:last-child,
.price_page .price_contents .price_content_movie .price_table .price_table_price p span:last-child {
  margin-left: 20px;
}
.price_page .price_contents .price_content_location .price_table .price_caption,
.price_page .price_contents .price_content_movie .price_table .price_caption {
  background-color: #808489;
  margin-bottom: 10px;
}
.price_page .price_contents .price_row {
  width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .price_page .price_contents .price_row {
    width: 90%;
  }
}
.price_page .price_contents .price_row .price_img {
  width: 35%;
  margin-right: 2%;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_row .price_img {
    width: 90%;
    margin: 0 auto 20px;
    max-width: 180px;
  }
}
.price_page .price_contents .price_row .price_textarea {
  width: 63%;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_row .price_textarea {
    width: 100%;
  }
}
.price_page .price_contents .price_row .price_textarea h3 {
  color: #f98232;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 500;
}
.price_page .price_contents .price_row .price_textarea h4 {
  font-size: 24px;
  font-weight: 500;
}
.price_page .price_contents .price_table .price_table_item {
  padding: 50px;
  background-color: #fff;
}
.price_page .price_contents .price_table .price_table_item:last-child {
  padding-top: 0;
  padding-bottom: 0;
}
.price_page .price_contents .price_table .price_table_item:first-child {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_table .price_table_item:first-child {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .price_page .price_contents .price_table .price_table_item {
    padding: 20px;
  }
  .price_page .price_contents .price_table .price_table_item:last-child {
    padding-bottom: 0;
  }
}
.price_page .price_contents .price_table .price_table_item h3 {
  text-align: center;
  color: #f98232;
}
.price_page .price_contents .price_table .price_table_item .price_table_box {
  width: 49%;
  border: 1px solid #808489;
  padding: 15px 0;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .price_page .price_contents .price_table .price_table_item .price_table_box {
    width: 100%;
    margin-bottom: 30px;
  }
  .price_page .price_contents .price_table .price_table_item .price_table_box:last-child {
    margin-bottom: 20px;
  }
}
.price_page .price_contents .price_table .price_table_item .price_table_box .price_table_name {
  width: 110px;
  text-align: center;
  padding-top: 5px;
  margin: 0 auto 15px;
}
.price_page .price_contents .price_table .price_table_item .price_table_box .price_table_name_gray {
  background-color: #efe9e4;
}
.price_page .price_contents .price_table .price_table_item .price_table_box .price_table_name_gray_koi {
  background-color: #8c929a;
}
.price_page .price_contents .price_table .price_table_item .price_table_box .price_table_name_gray_koi p {
  color: #fff;
}
.price_page .price_contents .price_content_studio .price_option .inner,
.price_page .price_contents .price_content_location .price_option .inner,
.price_page .price_contents .price_content_movie .price_option .inner {
  padding-top: 0;
}
.price_page .price_contents .price_content_studio .price_table_text p:nth-child(2) {
  margin-left: 20px;
}
.price_page .price_contents .price_content_studio .price_table_text p:last-child {
  margin-left: 20px;
}
.price_page .price_contents .price_content_location .price_table_caption_text,
.price_page .price_contents .price_content_movie .price_table_caption_text {
  width: 380px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_content_location .price_table_caption_text,
  .price_page .price_contents .price_content_movie .price_table_caption_text {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.price_page .price_contents .price_content_location .price_table_caption_text p,
.price_page .price_contents .price_content_movie .price_table_caption_text p {
  text-indent: -1rem;
  padding-left: 1rem;
  line-height: 1.7;
}
@media (max-width: 599px) {
  .price_page .price_contents .price_content_location .price_table_caption_text p,
  .price_page .price_contents .price_content_movie .price_table_caption_text p {
    text-indent: -0.7rem;
    padding-left: 0.7rem;
  }
}

.price_caption.price_caption_credit {
  width: 85%;
}
@media (max-width: 599px) {
  .price_caption.price_caption_credit {
    width: 100%;
  }
}
.price_caption.price_caption_credit .caption_left {
  width: 35%;
}
@media (max-width: 599px) {
  .price_caption.price_caption_credit .caption_left {
    width: 100%;
  }
}
.price_caption.price_caption_credit .caption_right {
  width: 65%;
}
@media (max-width: 599px) {
  .price_caption.price_caption_credit .caption_right {
    width: 100%;
  }
}
.price_caption.price_caption_credit .caption_right img {
  width: 88%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .price_caption.price_caption_credit .caption_right img {
    width: 80%;
  }
}

.price_content_location .price_option .inner .price_option_box,
.price_content_movie .price_option .inner .price_option_box {
  padding-left: 0;
  padding-right: 0;
}

.contact_page {
  padding: 50px 0;
}
@media (max-width: 599px) {
  .contact_page {
    padding: 30px 0;
  }
}
.contact_page .bg_gray_left {
  position: relative;
}
.contact_page .form_item_row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.contact_page .form_item_row .form_item {
  width: 30%;
}
@media (max-width: 599px) {
  .contact_page .form_item_row .form_item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact_page .form_item_row .form_item p {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .contact_page .form_item_row .form_item p {
    font-size: 16px;
  }
}
.contact_page .form_item_row .form_item .required {
  background-color: #d42e2c;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}
.contact_page .form_item_row .form_input {
  width: 65%;
}
@media (max-width: 599px) {
  .contact_page .form_item_row .form_input {
    width: 100%;
  }
}
.contact_page .form_item_row .form_input input,
.contact_page .form_item_row .form_input select,
.contact_page .form_item_row .form_input textarea {
  border: 1px solid #dadada;
  border-radius: 0 0 3px 3px;
  padding: 15px 10px;
  width: 100%;
  font-size: 16px;
}
.contact_page .form_item_row .form_input select {
  width: 120px;
  margin: 0 10px;
}
@media (max-width: 599px) {
  .contact_page .form_item_row .form_input select {
    width: 100px;
  }
}
.contact_page .submit_btn {
  width: 100%;
  font-size: 27px;
  color: #Fff;
  background-color: #f98232;
  border-radius: 60px;
  padding: 20px 0;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.contact_page .submit_btn:hover {
  background-color: #3a3025;
}
@media (max-width: 599px) {
  .contact_page .submit_btn {
    font-size: 20px;
  }
}
.contact_page .submit_btn_wrap {
  position: relative;
  width: 500px;
  margin: 0 auto;
  margin-top: 50px;
}
.contact_page .submit_btn_wrap::after {
  content: url(../images/arrow_right_submit.png);
  position: absolute;
  right: 20px;
  top: 17%;
  transform: scale(0.4) translateY(-50%);
}
@media (max-width: 599px) {
  .contact_page .submit_btn_wrap {
    width: 100%;
  }
}
.contact_page .submit_btn_wrap_gray::after {
  content: none;
}
.contact_page .submit_btn_wrap_gray::before {
  content: url(../images/arrow_left_submit.png);
  position: absolute;
  left: 20px;
  top: 25%;
  transform: scale(0.4) translateY(-50%);
}
.contact_page .submit_btn_wrap_gray .submit_btn {
  background-color: #808489;
}

.contact_box_wrap .common_contact_box {
  margin-top: 0;
  margin-bottom: 70px;
}
@media (max-width: 599px) {
  .contact_box_wrap .common_contact_box {
    margin-bottom: 50px;
  }
}

.contact_steps {
  width: 490px;
  margin: 0 auto 50px;
}
@media (max-width: 599px) {
  .contact_steps {
    width: 100%;
  }
}
.contact_steps .contact_step {
  width: 30%;
  position: relative;
}
.contact_steps .contact_step.active p {
  transform: translateY(-10px);
}
.contact_steps .contact_step.active p span {
  width: 40px;
  height: 40px;
  z-index: 10;
  margin-bottom: 0;
}
.contact_steps .contact_step.active p span::before, .contact_steps .contact_step.active p span::after {
  position: absolute;
  border-radius: 50%;
}
.contact_steps .contact_step.active p span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #f98232;
  transform: none;
  top: 0;
  left: 0;
}
.contact_steps .contact_step.active p span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #74dfed;
  z-index: 2;
}
.contact_steps .contact_step::after {
  content: "";
  position: absolute;
  top: 9px;
  left: -43%;
  width: 100%;
  height: 2px;
  background-color: #f98232;
  z-index: 0;
}
@media (max-width: 599px) {
  .contact_steps .contact_step::after {
    left: -39%;
  }
}
.contact_steps .contact_step:first-child::after {
  content: none;
}
.contact_steps .contact_step p {
  color: #f98232;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 599px) {
  .contact_steps .contact_step p {
    font-size: 16px;
  }
}
.contact_steps .contact_step p span {
  width: 20px;
  height: 20px;
  margin: 0 auto 9px;
  border-radius: 50%;
  display: block;
  background-color: #f98232;
  position: relative;
  z-index: 1;
}
.contact_steps .contact_step.contact_step02.active::after {
  width: 85%;
}
@media (max-width: 599px) {
  .contact_steps .contact_step.contact_step02.active::after {
    width: 78%;
    left: -40%;
  }
}

.privacy_page {
  padding-top: 120px;
}
@media (max-width: 599px) {
  .privacy_page {
    padding-top: 80px;
  }
}
.privacy_page .common_read {
  text-align: left;
}

.privacy_item {
  margin-bottom: 50px;
}
.service_mv {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .service_mv {
    padding: 50px 0;
  }
}
@media (max-width: 599px) {
  .service_mv.service_mv_about .studio_mv_row .studio_mv_ttl {
    margin-left: 22%;
  }
}
@media (max-width: 599px) {
  .service_mv.service_mv_about .studio_mv_row .studio_mv_ttl h2 {
    padding-left: 26px;
  }
}
.service_mv.service_mv_photo .studio_mv_arrows .studio_mv_arrow02 a {
  padding-left: 3px;
}
@media (max-width: 599px) {
  .service_mv.service_mv_photo .studio_mv_row .studio_mv_ttl h2 {
    padding-left: 0;
    margin-left: -20px;
  }
}
@media (max-width: 599px) {
  .service_mv.service_mv_location .studio_mv_row .studio_mv_ttl h2 {
    padding-left: 10px;
  }
}
.service_mv .service_mv_inner {
  margin-right: 0;
  width: calc(100% - 220px);
}
@media (max-width: 1460px) {
  .service_mv .service_mv_inner {
    width: 95%;
  }
}
@media (max-width: 599px) {
  .service_mv .service_mv_inner {
    width: 90%;
  }
}
.service_mv .studio_mv_row .studio_mv_ttl {
  width: 24%;
  padding-top: 100px;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_row .studio_mv_ttl {
    width: 45%;
    max-width: 190px;
    margin: 0 auto 30px;
    margin-left: 22%;
    padding-top: 0;
  }
}
.service_mv .studio_mv_row .studio_mv_ttl img {
  margin-bottom: 10px;
}
.service_mv .studio_mv_row .studio_mv_ttl h2 {
  font-size: 44px;
  color: #f98232;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 40px;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_row .studio_mv_ttl h2 {
    font-size: 24px;
    padding-left: 20px;
  }
}
.service_mv .studio_mv_row .studio_mv_img {
  max-width: 900px;
  width: 65%;
  position: relative;
  z-index: 1001;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_row .studio_mv_img {
    width: 100%;
  }
}
.service_mv .studio_mv_arrows .studio_mv_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_arrows .studio_mv_arrow {
    top: 70px;
    transform: translateY(0);
  }
}
.service_mv .studio_mv_arrows .studio_mv_arrow a {
  color: #fff;
  background-color: #f98232;
  width: 210px;
  height: 210px;
  display: block;
  border-radius: 50%;
  font-size: 12px;
  line-height: 185px;
  position: relative;
  font-weight: 500;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_arrows .studio_mv_arrow a {
    width: 135px;
    height: 135px;
    line-height: 110px;
  }
}
.service_mv .studio_mv_arrows .studio_mv_arrow01 {
  left: -140px;
  text-align: right;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_arrows .studio_mv_arrow01 {
    left: -70px;
  }
}
.service_mv .studio_mv_arrows .studio_mv_arrow01 a {
  padding-right: 10px;
}
.service_mv .studio_mv_arrows .studio_mv_arrow01 a::after {
  content: url(../images/arrow_left_white.png);
  position: absolute;
  bottom: 0px;
  right: 10px;
  transform: scale(0.4);
}
.service_mv .studio_mv_arrows .studio_mv_arrow02 {
  right: -140px;
  text-align: left;
}
@media (max-width: 599px) {
  .service_mv .studio_mv_arrows .studio_mv_arrow02 {
    right: -70px;
  }
}
.service_mv .studio_mv_arrows .studio_mv_arrow02 a {
  padding-left: 10px;
}
.service_mv .studio_mv_arrows .studio_mv_arrow02 a::after {
  content: url(../images/arrow_right_white.png);
  position: absolute;
  bottom: 0px;
  left: 10px;
  transform: scale(0.4);
}

.service_read {
  text-align: center;
  position: relative;
  z-index: 1001;
}

.service_imgs {
  position: relative;
  z-index: 1001;
}
.service_imgs .service_slide {
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .service_imgs .service_slide {
    margin-bottom: 10px;
  }
}
@media (max-width: 599px) {
  .service_imgs .service_thumnail {
    width: 90%;
    margin: 0 auto;
  }
}
.service_imgs .service_thumnail .slick-slide.slick-current img {
  border: 4px solid #f98232;
}
.service_imgs .service_thumnail li {
  margin: 0 7.5px;
}
@media (max-width: 599px) {
  .service_imgs .service_thumnail li {
    margin: 0 5px;
  }
}

.service_common {
  padding-bottom: 70px;
}
.service_common.service_common_photo, .service_common.service_common_movie {
  padding-top: 140px;
}
@media (max-width: 599px) {
  .service_common.service_common_photo, .service_common.service_common_movie {
    padding-top: 50px;
  }
}
.service_common.service_common_movie {
  overflow: hidden;
}
.service_common.service_common_movie .bg_gray_right {
  border-radius: 80px 0 0 0;
}
.service_common .service_row::after {
  content: none;
}
.service_common .service_row .service_item {
  width: 32%;
  padding: 20px;
  border: none;
  border-right: 1px solid #808489;
}
.service_common .service_row .service_item:nth-child(2) {
  border-right: 1px solid #808489;
}
@media (max-width: 768px) {
  .service_common .service_row .service_item:nth-child(2) {
    border-right: none;
  }
}
.service_common .service_row .service_item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .service_common .service_row .service_item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .service_common .service_row .service_item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #808489;
    padding: 30px 0;
  }
}
.service_common .service_row .service_item .service_item_btn {
  width: 100%;
}
.service_common .service_row .service_item .service_item_btn a {
  width: 100%;
}

.service_row {
  position: relative;
}
@media (max-width: 599px) {
  .service_row {
    padding-bottom: 0;
  }
}
.service_row::after {
  content: "";
  position: absolute;
  top: 51%;
  left: 50%;
  background-color: #fff;
  height: 40px;
  width: 40px;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .service_row::after {
    content: none;
  }
}
.service_row .service_item {
  width: 50%;
  padding-bottom: 40px;
  padding-top: 50px;
  text-align: center;
  border-right: 1px solid #3a3025;
  border-bottom: 1px solid #3a3025;
  display: grid;
  grid-template-columns: 100% 100% 100% 100%;
  grid-template-areas: "service_item_img" "service_item_title" "service_item_text" "service_item_btn";
}
@media (max-width: 768px) {
  .service_row .service_item {
    width: 100%;
    border-bottom: 1px solid #3a3025;
    border-left: none;
    border-right: none;
    padding: 30px 0;
    grid-template-areas: "service_item_img service_item_title" "service_item_img service_item_text" "service_item_btn service_item_btn";
    grid-template-columns: 40% 60%;
    text-align: left;
  }
  .service_row .service_item:last-child {
    padding-bottom: 0;
  }
}
.service_row .service_item:nth-child(2) {
  border-right: none;
}
.service_row .service_item:nth-child(4) {
  border-right: none;
  border-bottom: none;
}
.service_row .service_item:nth-child(3) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .service_row .service_item:nth-child(3) {
    border-bottom: 1px solid #f98232;
  }
}
.service_row .service_item img {
  display: block;
  margin: 0 auto 20px;
  grid-area: service_item_img;
  max-width: 310px;
}
@media (max-width: 768px) {
  .service_row .service_item img {
    max-width: 90%;
  }
}
.service_row .service_item h3 {
  font-size: 24px;
  grid-area: service_item_title;
}
@media (max-width: 768px) {
  .service_row .service_item h3 {
    font-size: 20px;
  }
}
.service_row .service_item p {
  grid-area: service_item_text;
  font-weight: 300;
  max-width: 370px;
  margin: auto;
}
@media (max-width: 599px) {
  .service_row .service_item p {
    font-size: 13px;
  }
}
.service_row .service_item .service_item_btn {
  grid-area: service_item_btn;
  margin-top: 30px;
  width: 350px;
  margin: 30px auto 0;
}
@media (max-width: 599px) {
  .service_row .service_item .service_item_btn {
    margin-top: 20px;
    width: 90%;
  }
}
.service_row .service_item .service_item_btn a {
  background-color: #f98232;
  box-shadow: none;
  color: #fff;
  margin-top: 0;
  width: 100%;
  display: block;
}
.service_row .service_item .service_item_btn a:hover {
  background-color: #3a3025;
}
@media (max-width: 599px) {
  .service_row .service_item .service_item_btn a {
    width: 90%;
  }
}

.service_ttl {
  max-width: 500px;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 599px) {
  .service_ttl {
    margin-bottom: 20px;
    max-width: 61%;
  }
}

.rental_studio .rental_studio_read {
  margin-bottom: 50px;
}
.rental_studio .rental_studio_img {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1001;
}
@media (max-width: 599px) {
  .rental_studio .rental_studio_img {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .rental_studio .rental_studio_btns {
    margin-top: 50px;
  }
}
.rental_studio .rental_studio_btns .common_btn {
  width: 19%;
}
@media (max-width: 599px) {
  .rental_studio .rental_studio_btns .common_btn {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .rental_studio .rental_studio_btns .common_btn:last-child {
    margin-bottom: 0;
  }
}
.rental_studio .rental_studio_btns .common_btn a {
  width: 100%;
  margin-top: 0;
  position: relative;
  background-color: #f98232;
  color: #fff;
  box-shadow: none;
}
.rental_studio .rental_studio_btns .common_btn a:hover {
  background-color: #3a3025;
}
.rental_studio .rental_studio_btns .common_btn a::after {
  content: url(../images/arrow_bottom_white.png);
  position: absolute;
  top: 31%;
  right: 20px;
  transform: scale(0.4) translateY(-50%);
}

.rental_studio_a,
.rental_studio_c,
.rental_studio_d {
  padding: 140px 0px 70px;
}
@media (max-width: 599px) {
  .rental_studio_a,
  .rental_studio_c,
  .rental_studio_d {
    padding: 50px 0;
  }
  .rental_studio_a .inner,
  .rental_studio_c .inner,
  .rental_studio_d .inner {
    width: 100%;
  }
}

.rental_studio_d {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 599px) {
  .rental_studio_b .inner,
  .rental_studio_photo .inner {
    width: 100%;
  }
  .rental_studio_b .inner .circle,
  .rental_studio_photo .inner .circle {
    right: 5px;
  }
}

.rental_studio_c {
  padding-bottom: 140px;
}
@media (max-width: 599px) {
  .rental_studio_c {
    padding: 50px 0;
  }
}

.movie_photo_bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 100vw;
  width: auto;
  height: auto;
  z-index: -100;
}
.movie_photo_bg .movie_photo_video {
  height: 100vh;
}
.movie_photo_bg .movie_photo_video video {
  height: 100%;
}
.movie_photo_bg .movie_photo_img {
  height: 100vh;
}
.movie_photo_bg .movie_photo_img img {
  height: 100%;
}

.service_mv_movie {
  height: 100vh;
}
@media (max-width: 599px) {
  .service_mv_movie {
    height: auto;
  }
}
.service_mv_movie .inner {
  width: 100%;
}
.service_mv_movie .studio_mv_row .studio_mv_ttl {
  width: 100%;
  text-align: center;
}
@media (max-width: 599px) {
  .service_mv_movie .studio_mv_row .studio_mv_ttl {
    margin-left: 25%;
  }
}
.service_mv_movie .studio_mv_row .studio_mv_ttl img {
  max-width: 313px;
  margin: 0 auto 20px;
}
.service_mv_movie .studio_mv_row .studio_mv_ttl h2 {
  color: #fff;
  padding-left: 0;
}
.service_mv_movie .studio_mv_arrows .studio_mv_arrow {
  top: 40.5%;
}
@media (max-width: 599px) {
  .service_mv_movie .studio_mv_arrows .studio_mv_arrow {
    top: 20%;
  }
}
.service_mv_movie .studio_mv_arrows .studio_mv_arrow a {
  background-color: rgba(255, 255, 255, 0.8);
  color: #f98232;
}
@media (max-width: 599px) {
  .service_mv_movie .studio_mv_arrows .studio_mv_arrow a {
    font-size: 12px;
  }
}
.service_mv_movie .studio_mv_arrows .studio_mv_arrow01 a {
  padding-right: 4px;
}
.service_mv_movie .studio_mv_arrows .studio_mv_arrow01 a::after {
  content: url(../images/arrow_left_navy.png);
}
@media (max-width: 599px) {
  .service_mv_movie .studio_mv_arrows .studio_mv_arrow01 a {
    padding-right: 2px;
  }
}
.service_mv_movie .studio_mv_arrows .studio_mv_arrow02 a::after {
  content: url(../images/arrow_right_navy.png);
}

.movie_photo video {
  width: 100%;
}
.movie_photo .common_ttl h2 {
  color: #fff;
}
.movie_photo .rental_studio_read {
  margin-bottom: 30px;
}
.movie_photo .rental_studio_read p {
  color: #fff;
}
.movie_photo .movie_photo_list {
  position: relative;
  z-index: 1001;
}
.movie_photo .movie_photo_list::after {
  content: "";
  width: 32%;
}
@media (max-width: 599px) {
  .movie_photo .movie_photo_list::after {
    width: 32%;
  }
}
.movie_photo .movie_photo_list li {
  position: relative;
  width: 32%;
  margin-bottom: 20px;
  margin-bottom: 2%;
  height: 160px;
  cursor: pointer;
}
@media (max-width: 599px) {
  .movie_photo .movie_photo_list li {
    width: 49%;
    height: 120px;
  }
}
.movie_photo .movie_photo_list li video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.movie_photo .movie_photo_list li .icon_play {
  width: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.movie_photo .common_btn a:hover {
  background-color: #3a3025;
}
.movie_photo .bread ul li::after {
  color: #fff;
}
.movie_photo .bread ul li a {
  color: #Fff;
}

@media (max-width: 1200px) {
  .gallery_page .gallery_tabs.inner {
    width: 90%;
  }
}

.gallery_list li {
  width: 24%;
  margin-bottom: 1%;
}
@media (max-width: 599px) {
  .gallery_list li {
    width: 48%;
  }
}

.terms_page {
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .terms_page {
    padding: 50px 0;
  }
}
.terms_page .terms_item {
  margin-bottom: 10px;
}
.terms_page .terms_item h3 {
  color: #fff;
  background-color: #f98232;
  padding: 5px;
  padding-left: 15px;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 599px) {
  .terms_page .terms_item h3 {
    font-size: 13px;
  }
}
.terms_page .terms_item p {
  line-height: 2;
  margin-bottom: 30px;
}

.law_page {
  padding: 140px 0 70px;
}
@media (max-width: 599px) {
  .law_page {
    padding: 50px 0;
  }
}
.law_page .law_table_row:last-child {
  border-bottom: 1px solid #3a3025;
}
.law_page .law_table_row .law_left,
.law_page .law_table_row .law_right {
  padding: 10px 20px;
}
@media (max-width: 599px) {
  .law_page .law_table_row .law_left,
  .law_page .law_table_row .law_right {
    padding: 10px;
  }
}
.law_page .law_table_row .law_left {
  background-color: #efe9e4;
  width: 20%;
  border: 1px solid #3a3025;
  border-bottom: none;
  border-right: none;
}
@media (max-width: 599px) {
  .law_page .law_table_row .law_left {
    width: 30%;
  }
}
.law_page .law_table_row .law_right {
  width: 80%;
  border: 1px solid #3a3025;
  border-bottom: none;
}
@media (max-width: 599px) {
  .law_page .law_table_row .law_right {
    width: 70%;
    display: flex;
    align-items: center;
  }
}
.law_page .law_table_row .law_right a {
  color: #f98232;
}/*# sourceMappingURL=style.css.map */