@charset "UTF-8";
/* line 5, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../.rbenv/versions/3.1.4/lib/ruby/gems/3.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 7, ../sass/_common.scss */
html,
body {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  /* line 7, ../sass/_common.scss */
  html,
  body {
    width: 375px;
  }
}

/* line 16, ../sass/_common.scss */
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  /* line 16, ../sass/_common.scss */
  .pc {
    display: none;
  }
}

/* line 24, ../sass/_common.scss */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  /* line 24, ../sass/_common.scss */
  .sp {
    display: block;
  }
}

/* line 33, ../sass/_common.scss */
header .pc {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  /* line 33, ../sass/_common.scss */
  header .pc {
    display: none;
  }
}
/* line 48, ../sass/_common.scss */
header .pc .logoBox {
  width: 350px;
}
/* line 52, ../sass/_common.scss */
header .pc .logoBox .logo p {
  font-size: 13px;
  text-align: center;
}
/* line 59, ../sass/_common.scss */
header .pc nav {
  width: 600px;
  font-family: "DM Serif Display", serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  /* line 59, ../sass/_common.scss */
  header .pc nav {
    width: 100%;
    display: none;
  }
}
/* line 69, ../sass/_common.scss */
header .pc nav ul {
  width: 100%;
  display: flex;
  align-items: center;
}
/* line 74, ../sass/_common.scss */
header .pc nav ul li {
  padding-left: 20px;
  padding-right: 20px;
  font-weight: bold;
  transition: color .4s ease 0s;
}
/* line 81, ../sass/_common.scss */
header .pc nav ul li:hover {
  color: #451DA0;
  transition: color .4s ease 0s;
}
/* line 89, ../sass/_common.scss */
header .pc .spacer {
  width: 200px;
}
/* line 94, ../sass/_common.scss */
header .sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  /* line 94, ../sass/_common.scss */
  header .sp {
    display: none;
  }
}
/* line 101, ../sass/_common.scss */
header .sp .logoBox {
  width: 75%;
}
/* line 104, ../sass/_common.scss */
header .sp .logoBox .sub {
  margin-top: -1rem;
  text-align: center;
}
/* line 110, ../sass/_common.scss */
header .sp .menu {
  width: 25%;
  text-align: center;
  font-size: 40px;
}
/* line 116, ../sass/_common.scss */
header .sp nav {
  display: none;
  z-index: 10;
  width: 100%;
  height: 70vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}
/* line 128, ../sass/_common.scss */
header .sp nav .bars {
  cursor: pointer;
}
/* line 133, ../sass/_common.scss */
header .sp nav .close {
  cursor: pointer;
  font-size: 40px;
  padding-right: 10px;
  padding-top: 10px;
  text-align: right;
}
/* line 141, ../sass/_common.scss */
header .sp nav .bars,
header .sp nav .close {
  color: black;
}
/* line 145, ../sass/_common.scss */
header .sp nav .bars:hover,
header .sp nav .close:hover {
  color: #333333;
}
/* line 151, ../sass/_common.scss */
header .sp nav ul li {
  text-align: center;
  font-size: 18px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* line 170, ../sass/_common.scss */
.page h3 {
  text-align: center;
  font-size: 45px;
  color: black;
  font-weight: bold;
  font-family: "DM Serif Display", serif;
}
/* line 178, ../sass/_common.scss */
.page p.subTitle {
  text-align: center;
}

/**
    *フッター
    */
/* line 192, ../sass/_common.scss */
footer #PhotoStudio {
  background-color: #451da0;
}
@media screen and (max-width: 768px) {
  /* line 192, ../sass/_common.scss */
  footer #PhotoStudio {
    width: 100%;
  }
}
/* line 202, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row {
  padding-top: 80px;
  padding-bottom: 50px;
  width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
@media screen and (max-width: 768px) {
  /* line 202, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row {
    width: 100%;
  }
}
/* line 217, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left {
  margin-left: 100px;
  display: flex;
}
/* line 221, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .imgBox1 {
  width: 210px;
}
/* line 226, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 {
  padding-left: 15px;
}
/* line 229, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 h4 {
  font-family: "DM Serif Display", serif;
  font-weight: normal;
  font-size: 80px;
  line-height: 1.0em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  /* line 229, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 h4 {
    text-align: center;
  }
}
/* line 245, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 .text1 {
  font-size: 18px;
  margin-bottom: 2.0em;
}
@media screen and (max-width: 768px) {
  /* line 245, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 .text1 {
    letter-spacing: -1px;
  }
}
/* line 254, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .left .textBox1 .text2 {
  width: 400px;
  font-size: 13px;
  line-height: 2.0em;
}
@media screen and (max-width: 768px) {
  /* line 254, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .left .textBox1 .text2 {
    width: 100%;
  }
}
/* line 267, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  /* line 267, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .reservation {
    margin-right: 0;
  }
}
/* line 275, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton {
  box-sizing: border-box;
  width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid white;
  margin-bottom: 50px;
  font-size: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 275, ../sass/_common.scss */
  footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
/* line 292, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .reservationButton:hover {
  background-color: #fff;
  color: #451da0;
  border-color: #451da0;
}
/* line 299, ../sass/_common.scss */
footer #PhotoStudio .inner2.pc .row .reservation .box1 .roomRental {
  text-align: center;
  font-size: 13px;
}
/* line 310, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row {
  padding-top: 80px;
  padding-bottom: 50px;
  margin: 0 auto;
  color: white;
  display: block;
  width: 100%;
  padding-top: 50px;
}
/* line 319, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left {
  width: 100%;
  margin-left: 0;
  margin: 0 auto;
  display: flex;
}
/* line 325, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .imgBox1 {
  width: 35%;
  padding-left: 15px;
}
/* line 329, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .imgBox1 img {
  width: 90%;
}
/* line 334, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 {
  padding-left: 15px;
}
/* line 337, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 h4 {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.0em;
  margin-top: 20px;
  text-align: center;
}
/* line 349, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row .left .textBox1 .text1 {
  margin-top: 30px;
  font-size: 13px;
  line-height: 2.0em;
}
/* line 364, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .row2 .text2 {
  width: 400px;
  font-size: 14px;
  line-height: 2.0em;
  color: white;
  width: 100%;
  padding: 0 30px;
  text-align: center;
}
/* line 378, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton {
  box-sizing: border-box;
  width: 120px;
  height: 42px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}
/* line 388, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton p {
  font-size: 20px;
  text-align: center;
  color: white;
}
/* line 399, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .reservationButton:hover {
  background-color: #fff;
  color: #451da0;
  border-color: #451da0;
}
/* line 406, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental {
  color: white;
  text-align: center;
  font-size: 14px;
  padding-bottom: 30px;
  text-decoration: underline;
}
/* line 414, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental:link {
  color: white;
  text-decoration: underline;
}
/* line 419, ../sass/_common.scss */
footer #PhotoStudio .inner2.sp .reservation .box1 .roomRental:visited {
  color: white;
  text-decoration: underline;
}
/* line 431, ../sass/_common.scss */
footer #footBox {
  background-color: #2c2c2c;
  color: white;
}
@media screen and (max-width: 768px) {
  /* line 431, ../sass/_common.scss */
  footer #footBox {
    width: 100%;
  }
}
/* line 439, ../sass/_common.scss */
footer #footBox .inner {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  /* line 439, ../sass/_common.scss */
  footer #footBox .inner {
    display: block;
    width: 100%;
  }
}
/* line 456, ../sass/_common.scss */
footer #footBox .inner .left .row {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  /* line 456, ../sass/_common.scss */
  footer #footBox .inner .left .row {
    margin-bottom: 50px;
  }
}
/* line 464, ../sass/_common.scss */
footer #footBox .inner .left .row .companyBox p.title {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  /* line 464, ../sass/_common.scss */
  footer #footBox .inner .left .row .companyBox p.title {
    text-align: center;
  }
}
/* line 472, ../sass/_common.scss */
footer #footBox .inner .left .row .companyBox p.subTitle {
  padding-left: 60px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  /* line 472, ../sass/_common.scss */
  footer #footBox .inner .left .row .companyBox p.subTitle {
    padding-left: 0;
    text-align: center;
  }
}
/* line 484, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox {
  font-family: "DM Serif Display", serif;
  font-size: 16px;
}
/* line 488, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  /* line 488, ../sass/_common.scss */
  footer #footBox .inner .left .bottomBox ul {
    display: block;
  }
}
/* line 495, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul li {
  padding-right: 1em;
}
/* line 498, ../sass/_common.scss */
footer #footBox .inner .left .bottomBox ul li a {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  /* line 495, ../sass/_common.scss */
  footer #footBox .inner .left .bottomBox ul li {
    text-align: center;
    padding-right: 0;
    font-size: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
/* line 515, ../sass/_common.scss */
footer #footBox .inner .right {
  margin-right: 100px;
}
@media screen and (max-width: 768px) {
  /* line 515, ../sass/_common.scss */
  footer #footBox .inner .right {
    margin-top: 2rem;
    margin-right: 0;
  }
}
/* line 523, ../sass/_common.scss */
footer #footBox .inner .right .address {
  font-size: 13px;
  line-height: 2.0em;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  /* line 523, ../sass/_common.scss */
  footer #footBox .inner .right .address {
    text-align: center;
  }
}
/* line 534, ../sass/_common.scss */
footer #footBox .inner .right .corporateButton {
  width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid white;
  font-size: 13px;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  /* line 534, ../sass/_common.scss */
  footer #footBox .inner .right .corporateButton {
    margin-left: auto;
    margin-right: auto;
  }
}
/* line 550, ../sass/_common.scss */
footer #footBox .inner .right .privacyPolicy {
  font-size: 13px;
  text-align: center;
}
/* line 558, ../sass/_common.scss */
footer #footBox .bottom {
  background-color: #000;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 563, ../sass/_common.scss */
footer #footBox .bottom p {
  font-size: 12px;
  text-align: center;
}

/* line 8, ../sass/studio.scss */
#studioMain {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  /* line 8, ../sass/studio.scss */
  #studioMain {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 17, ../sass/studio.scss */
  #studioMain h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.0;
  }
}
@media screen and (max-width: 768px) {
  /* line 25, ../sass/studio.scss */
  #studioMain .subTitle {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}
/* line 33, ../sass/studio.scss */
#studioMain .slide {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  /* line 33, ../sass/studio.scss */
  #studioMain .slide {
    width: 100%;
  }
}
/* line 44, ../sass/studio.scss */
#studioMain .note1 {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  /* line 44, ../sass/studio.scss */
  #studioMain .note1 {
    width: 100%;
    padding-left: 20px;
    padding-right: 15px;
  }
}
/* line 57, ../sass/studio.scss */
#studioMain .note1 .title {
  font-size: 16px;
}
/* line 61, ../sass/studio.scss */
#studioMain .note1 .indent {
  font-size: 14px;
  padding-left: 3.5em;
}
@media screen and (max-width: 768px) {
  /* line 61, ../sass/studio.scss */
  #studioMain .note1 .indent {
    line-height: 2.0;
    font-size: 16px;
    padding-left: 3.0em;
  }
}
/* line 72, ../sass/studio.scss */
#studioMain .note1 .warning {
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  /* line 72, ../sass/studio.scss */
  #studioMain .note1 .warning {
    font-size: 16px;
    text-align: center;
  }
}
/* line 84, ../sass/studio.scss */
#studioMain .gallery .row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  /* line 84, ../sass/studio.scss */
  #studioMain .gallery .row {
    width: 100%;
    display: block;
  }
}
/* line 93, ../sass/studio.scss */
#studioMain .gallery .row .box {
  width: 50%;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  /* line 93, ../sass/studio.scss */
  #studioMain .gallery .row .box {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
/* line 106, ../sass/studio.scss */
#studioMain .gallery .row .box .text {
  width: 350px;
  height: 120px;
  background-color: #fff;
  position: absolute;
  bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  /* line 106, ../sass/studio.scss */
  #studioMain .gallery .row .box .text {
    width: 95%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
/* line 125, ../sass/studio.scss */
#studioMain .gallery .row .box .text p {
  width: 200px;
  font-size: 14px;
  border-bottom: 1px solid #0a0a0a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 125, ../sass/studio.scss */
  #studioMain .gallery .row .box .text p {
    width: 90%;
    font-size: 20px;
    text-align: left;
    padding-left: 0.5em;
  }
}
/* line 140, ../sass/studio.scss */
#studioMain .gallery .row .box .img1 {
  width: 80%;
  height: 410px;
  margin: 0 auto;
  background-image: url(/img/studio/back01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  /* line 140, ../sass/studio.scss */
  #studioMain .gallery .row .box .img1 {
    width: 100%;
  }
}
/* line 155, ../sass/studio.scss */
#studioMain .gallery .row .box .img2 {
  width: 80%;
  height: 410px;
  margin: 0 auto;
  background-image: url(/img/studio/back02.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  /* line 155, ../sass/studio.scss */
  #studioMain .gallery .row .box .img2 {
    width: 100%;
  }
}
/* line 170, ../sass/studio.scss */
#studioMain .gallery .row .box .img3 {
  width: 80%;
  height: 410px;
  margin: 0 auto;
  background-image: url(/img/studio/back03.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  /* line 170, ../sass/studio.scss */
  #studioMain .gallery .row .box .img3 {
    width: 100%;
  }
}
/* line 185, ../sass/studio.scss */
#studioMain .gallery .row .box .img4 {
  width: 80%;
  height: 410px;
  margin: 0 auto;
  background-image: url(/img/studio/back04.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  /* line 185, ../sass/studio.scss */
  #studioMain .gallery .row .box .img4 {
    width: 100%;
  }
}

/*# sourceMappingURL=studio.css.map */
