@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/service.scss */
#serviceMain {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  /* line 8, ../sass/service.scss */
  #serviceMain {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* line 18, ../sass/service.scss */
  #serviceMain h3 {
    font-size: 35px;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  /* line 25, ../sass/service.scss */
  #serviceMain .subTitle {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    line-height: 2.0em;
  }
}
/* line 34, ../sass/service.scss */
#serviceMain .box4 {
  width: 100%;
}
/* line 37, ../sass/service.scss */
#serviceMain .box4 .row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 100%;
  min-width: 980px;
}
@media screen and (max-width: 768px) {
  /* line 37, ../sass/service.scss */
  #serviceMain .box4 .row {
    display: block;
    width: 100%;
    min-width: 1px;
  }
}
/* line 51, ../sass/service.scss */
#serviceMain .box4 .row .sekkei,
#serviceMain .box4 .row .sekou,
#serviceMain .box4 .row .kanri,
#serviceMain .box4 .row .chintai {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  /* line 51, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei,
  #serviceMain .box4 .row .sekou,
  #serviceMain .box4 .row .kanri,
  #serviceMain .box4 .row .chintai {
    width: 100%;
  }
}
/* line 62, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box,
#serviceMain .box4 .row .sekou .box,
#serviceMain .box4 .row .kanri .box,
#serviceMain .box4 .row .chintai .box {
  width: 95%;
  margin: 0 auto;
  height: 513px;
  margin-bottom: 5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  /* line 62, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei .box,
  #serviceMain .box4 .row .sekou .box,
  #serviceMain .box4 .row .kanri .box,
  #serviceMain .box4 .row .chintai .box {
    width: 100%;
  }
}
/* line 73, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box .textbox,
#serviceMain .box4 .row .sekou .box .textbox,
#serviceMain .box4 .row .kanri .box .textbox,
#serviceMain .box4 .row .chintai .box .textbox {
  width: 430px;
  height: 140px;
  position: absolute;
  bottom: 10px;
  left: 0;
  background-color: #fff;
  padding-left: 75px;
}
@media screen and (max-width: 768px) {
  /* line 73, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei .box .textbox,
  #serviceMain .box4 .row .sekou .box .textbox,
  #serviceMain .box4 .row .kanri .box .textbox,
  #serviceMain .box4 .row .chintai .box .textbox {
    padding-left: 25px;
    padding-right: 10px;
    width: 75%;
  }
}
/* line 88, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box .textbox .sub,
#serviceMain .box4 .row .sekou .box .textbox .sub,
#serviceMain .box4 .row .kanri .box .textbox .sub,
#serviceMain .box4 .row .chintai .box .textbox .sub {
  margin-top: 5px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  /* line 88, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei .box .textbox .sub,
  #serviceMain .box4 .row .sekou .box .textbox .sub,
  #serviceMain .box4 .row .kanri .box .textbox .sub,
  #serviceMain .box4 .row .chintai .box .textbox .sub {
    line-height: 1.8;
  }
}
/* line 98, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box .textbox h4,
#serviceMain .box4 .row .sekou .box .textbox h4,
#serviceMain .box4 .row .kanri .box .textbox h4,
#serviceMain .box4 .row .chintai .box .textbox h4 {
  margin-top: 15px;
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  /* line 98, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei .box .textbox h4,
  #serviceMain .box4 .row .sekou .box .textbox h4,
  #serviceMain .box4 .row .kanri .box .textbox h4,
  #serviceMain .box4 .row .chintai .box .textbox h4 {
    margin-top: 0;
    position: absolute;
    bottom: 25px;
  }
}
/* line 109, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box .textbox .more,
#serviceMain .box4 .row .sekou .box .textbox .more,
#serviceMain .box4 .row .kanri .box .textbox .more,
#serviceMain .box4 .row .chintai .box .textbox .more {
  margin-top: 15px;
  font-weight: bold;
}
/* line 110, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box .textbox .more .bar1,
#serviceMain .box4 .row .sekou .box .textbox .more .bar1,
#serviceMain .box4 .row .kanri .box .textbox .more .bar1,
#serviceMain .box4 .row .chintai .box .textbox .more .bar1 {
  text-decoration: line-through;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  /* line 109, ../sass/service.scss */
  #serviceMain .box4 .row .sekkei .box .textbox .more,
  #serviceMain .box4 .row .sekou .box .textbox .more,
  #serviceMain .box4 .row .kanri .box .textbox .more,
  #serviceMain .box4 .row .chintai .box .textbox .more {
    position: absolute;
    margin-top: 0;
    bottom: 5px;
  }
}
/* line 129, ../sass/service.scss */
#serviceMain .box4 .row .sekkei .box {
  background-image: url(/img/service/back01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
/* line 139, ../sass/service.scss */
#serviceMain .box4 .row .sekou .box {
  background-image: url(/img/service/back02.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
/* line 150, ../sass/service.scss */
#serviceMain .box4 .row .kanri .box {
  background-image: url(/img/service/back03.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
/* line 161, ../sass/service.scss */
#serviceMain .box4 .row .chintai .box {
  background-image: url(/img/service/back04.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

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