@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/test2.scss */
#top h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  color: black;
}
@media screen and (max-width: 768px) {
  /* line 8, ../sass/test2.scss */
  #top h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.0;
  }
}
/* line 25, ../sass/test2.scss */
#top #builtInGarage {
  margin: 0;
  margin-left: 200px;
  margin-right: calc(-50vw-calc(980px/2));
  background: linear-gradient(90deg, #e5feff 0%, #f8e9fc 100%);
}
@media screen and (max-width: 768px) {
  /* line 25, ../sass/test2.scss */
  #top #builtInGarage {
    width: 100%;
    margin: 0;
    display: block;
  }
}
/* line 37, ../sass/test2.scss */
#top #builtInGarage #sec1 {
  width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  /* line 37, ../sass/test2.scss */
  #top #builtInGarage #sec1 {
    flex-wrap: wrap-reverse;
    padding-top: 0;
    width: 100%;
  }
}
/* line 60, ../sass/test2.scss */
#top #builtInGarage #sec1 .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 60, ../sass/test2.scss */
  #top #builtInGarage #sec1 .left {
    width: 100%;
  }
}
/* line 68, ../sass/test2.scss */
#top #builtInGarage #sec1 .left .text1 {
  padding-left: 30px;
  font-family: "DM Serif Display", serif;
  color: black;
  font-size: 70px;
  font-weight: 500;
  line-height: 70px;
}
@media screen and (max-width: 768px) {
  /* line 68, ../sass/test2.scss */
  #top #builtInGarage #sec1 .left .text1 {
    padding-left: 0.5em;
    font-size: 40px;
    line-height: 40px;
  }
}
/* line 88, ../sass/test2.scss */
#top #builtInGarage #sec1 .left .para1 {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  /* line 88, ../sass/test2.scss */
  #top #builtInGarage #sec1 .left .para1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 97, ../sass/test2.scss */
#top #builtInGarage #sec1 .left p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 2.0em;
}
/* line 106, ../sass/test2.scss */
#top #builtInGarage #sec1 .right {
  width: 50%;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  /* line 106, ../sass/test2.scss */
  #top #builtInGarage #sec1 .right {
    width: 100%;
    margin-left: 0;
  }
}
/* line 118, ../sass/test2.scss */
#top #builtInGarage #sec1 .right .slick {
  width: 330px;
}
@media screen and (max-width: 768px) {
  /* line 118, ../sass/test2.scss */
  #top #builtInGarage #sec1 .right .slick {
    width: 100%;
  }
}
/* line 130, ../sass/test2.scss */
#top #Feature {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  /* line 130, ../sass/test2.scss */
  #top #Feature {
    margin-top: 50px;
    width: 100%;
  }
}
/* line 138, ../sass/test2.scss */
#top #Feature .imgBg {
  width: 100%;
  height: 1080px;
  background-image: url(/img/top/bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 138, ../sass/test2.scss */
  #top #Feature .imgBg {
    width: 100%;
    height: auto;
    min-height: 500px;
    background-size: contain;
  }
}
/* line 156, ../sass/test2.scss */
#top #Feature .imgBg .box {
  box-sizing: border-box;
  width: 900px;
  height: 450px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 450px);
  background-color: #fff;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  /* line 156, ../sass/test2.scss */
  #top #Feature .imgBg .box {
    width: 95%;
    margin: 0 auto;
    top: 30%;
    left: 2.5%;
    padding-top: 10px;
  }
}
/* line 178, ../sass/test2.scss */
#top #Feature .imgBg .box h4 {
  font-size: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  /* line 178, ../sass/test2.scss */
  #top #Feature .imgBg .box h4 {
    font-size: 24px;
    letter-spacing: -1px;
  }
}
/* line 188, ../sass/test2.scss */
#top #Feature .imgBg .box p.mess {
  padding-top: 50px;
  width: 450px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 2.0em;
}
@media screen and (max-width: 768px) {
  /* line 188, ../sass/test2.scss */
  #top #Feature .imgBg .box p.mess {
    padding-top: 20px;
    width: 100%;
  }
}
/* line 205, ../sass/test2.scss */
#top #Feature .learnMore {
  width: 180px;
  height: 48px;
  margin: 0 auto;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  transition: color .4s ease 0s;
  transition: background-color .4s ease 0s;
}
/* line 220, ../sass/test2.scss */
#top #Feature .learnMore:hover {
  background-color: #451DA0;
  color: white;
  transition: color .4s ease 0s;
  transition: background-color .4s ease 0s;
}
/* line 227, ../sass/test2.scss */
#top #Feature .learnMore p.btn {
  padding-top: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
/* line 237, ../sass/test2.scss */
#top #Service {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  /* line 237, ../sass/test2.scss */
  #top #Service {
    width: 100%;
  }
}
/* line 244, ../sass/test2.scss */
#top #Service .box {
  width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  /* line 244, ../sass/test2.scss */
  #top #Service .box {
    width: 100%;
  }
}
/* line 252, ../sass/test2.scss */
#top #Service .box .inner1 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  /* line 252, ../sass/test2.scss */
  #top #Service .box .inner1 {
    display: block;
    width: 100%;
  }
}
/* line 263, ../sass/test2.scss */
#top #Service .box .inner2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  /* line 263, ../sass/test2.scss */
  #top #Service .box .inner2 {
    display: block;
    width: 100%;
  }
}
/* line 275, ../sass/test2.scss */
#top #Service .box .left,
#top #Service .box .right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  /* line 275, ../sass/test2.scss */
  #top #Service .box .left,
  #top #Service .box .right {
    width: 100%;
  }
}
/* line 283, ../sass/test2.scss */
#top #Service .box .left img,
#top #Service .box .right img {
  width: 600px;
}
@media screen and (max-width: 768px) {
  /* line 283, ../sass/test2.scss */
  #top #Service .box .left img,
  #top #Service .box .right img {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* line 296, ../sass/test2.scss */
#top #box1 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  /* line 296, ../sass/test2.scss */
  #top #box1 {
    width: 100%;
  }
}
/* line 303, ../sass/test2.scss */
#top #box1 .innerWrap {
  background-color: #f1f1f1;
  display: flex;
  width: 95%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  /* line 303, ../sass/test2.scss */
  #top #box1 .innerWrap {
    display: block;
    width: 100%;
  }
}
/* line 316, ../sass/test2.scss */
#top #box1 .innerWrap .left,
#top #box1 .innerWrap .center,
#top #box1 .innerWrap .right {
  padding-top: 50px;
  padding-bottom: 50px;
  width: calc(100% / 3);
}
@media screen and (max-width: 768px) {
  /* line 316, ../sass/test2.scss */
  #top #box1 .innerWrap .left,
  #top #box1 .innerWrap .center,
  #top #box1 .innerWrap .right {
    width: 100%;
  }
}
/* line 327, ../sass/test2.scss */
#top #box1 .innerWrap .left .inner,
#top #box1 .innerWrap .center .inner,
#top #box1 .innerWrap .right .inner {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  /* line 327, ../sass/test2.scss */
  #top #box1 .innerWrap .left .inner,
  #top #box1 .innerWrap .center .inner,
  #top #box1 .innerWrap .right .inner {
    width: 100%;
  }
}
/* line 335, ../sass/test2.scss */
#top #box1 .innerWrap .left .inner h4,
#top #box1 .innerWrap .center .inner h4,
#top #box1 .innerWrap .right .inner h4 {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
  text-align: center;
}
/* line 342, ../sass/test2.scss */
#top #box1 .innerWrap .left .inner p,
#top #box1 .innerWrap .center .inner p,
#top #box1 .innerWrap .right .inner p {
  font-size: 13px;
  line-height: 2em;
}
/* line 352, ../sass/test2.scss */
#top #Gallery {
  margin-top: 75px;
}
/* line 355, ../sass/test2.scss */
#top #Gallery .inner {
  margin-top: 15px;
  background-color: #e9f2ff;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 361, ../sass/test2.scss */
#top #Gallery .inner .imgRow {
  width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  /* line 361, ../sass/test2.scss */
  #top #Gallery .inner .imgRow {
    display: block;
    width: 100%;
  }
}
/* line 373, ../sass/test2.scss */
#top #Gallery .inner .imgRow .imgSingle {
  width: 400px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  /* line 373, ../sass/test2.scss */
  #top #Gallery .inner .imgRow .imgSingle {
    width: 100%;
    height: auto;
  }
  /* line 381, ../sass/test2.scss */
  #top #Gallery .inner .imgRow .imgSingle img {
    width: 100%;
  }
}
/* line 391, ../sass/test2.scss */
#top #Studio {
  margin-top: 70px;
  padding-top: 100px;
  background-image: url(/img/top/studio/back.jpg);
  height: 1125px;
}
@media screen and (max-width: 768px) {
  /* line 391, ../sass/test2.scss */
  #top #Studio {
    margin-top: 0;
    padding-top: 50px;
    width: 100%;
    height: auto;
  }
}
/* line 405, ../sass/test2.scss */
#top #Studio .inner {
  padding-top: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 405, ../sass/test2.scss */
  #top #Studio .inner {
    display: flex;
    flex-flow: column;
  }
}
/* line 414, ../sass/test2.scss */
#top #Studio .inner .text {
  z-index: 12;
  width: 417px;
  font-size: 13px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  /* line 414, ../sass/test2.scss */
  #top #Studio .inner .text {
    order: 2;
    position: inherit;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2em 1em;
  }
}
/* line 434, ../sass/test2.scss */
#top #Studio .inner #img1 {
  z-index: 11;
  position: absolute;
  left: calc(100vw/10 * 1.75);
}
@media screen and (max-width: 768px) {
  /* line 434, ../sass/test2.scss */
  #top #Studio .inner #img1 {
    order: 3;
    position: inherit;
    left: 0;
  }
}
/* line 446, ../sass/test2.scss */
#top #Studio .inner #img1 img {
  height: 500px;
}
@media screen and (max-width: 768px) {
  /* line 446, ../sass/test2.scss */
  #top #Studio .inner #img1 img {
    width: 100%;
    height: auto;
  }
}
/* line 456, ../sass/test2.scss */
#top #Studio .inner #img2 {
  z-index: 10;
  position: absolute;
  top: 150px;
  left: 40%;
}
@media screen and (max-width: 768px) {
  /* line 456, ../sass/test2.scss */
  #top #Studio .inner #img2 {
    order: 1;
    position: inherit;
    top: 0;
    left: 0;
    width: 100%;
  }
}
/* line 470, ../sass/test2.scss */
#top #Studio .inner #img2 img {
  height: 700px;
}
@media screen and (max-width: 768px) {
  /* line 470, ../sass/test2.scss */
  #top #Studio .inner #img2 img {
    width: 100%;
    height: auto;
    text-align: center;
  }
}

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