@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*---------------------------------------------
    html
---------------------------------------------*/
html {
  font-size: 62.5%;
}

/*---------------------------------------------
    body
  ---------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  color: #222;
  font-size: 1.6em;
  line-height: 1.8;
  text-align: left;
  font-family: tbudrgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

body * {
  box-sizing: border-box;
}

/*---------------------------------------------
    link
  ---------------------------------------------*/
a {
  -webkit-transition-duration: 0.5s;
  color: inherit;
  outline: none;
  text-decoration: none;
  transition-duration: 0.5s;
}

a img {
  transition-duration: 0.5s;
}

a img:hover {
  opacity: 0.8;
}

/*---------------------------------------------
    common
  ---------------------------------------------*/
html {
  -webkit-text-size-adjust: none;
}

img {
  height: auto;
  max-width: 100%;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
}

#wrapper {
  margin: 0 auto;
  width: 100%;
}

.flex-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flex-box {
    flex-direction: column;
  }
}

.bg-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/*---------------------------------------------
    toggle menu
  ---------------------------------------------*/
.menu_button {
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 9999999;
  width: 60px;
  height: 64px;
  cursor: pointer;
}
.menu_button span {
  display: block;
  position: absolute;
  top: 24px;
  left: 11px;
  background: #fff;
  width: 30px;
  height: 1.5px;
  transition: 0.2s;
}
.menu_button span::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0px;
  background: #fff;
  width: 30px;
  height: 1.5px;
  transition: 0.3s;
}
.menu_button span::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0px;
  background: #fff;
  width: 30px;
  height: 1.5px;
  transition: 0.3s;
}
.menu_button .close {
  background: transparent;
  border: none;
}
.menu_button .close::before, .menu_button .close::after {
  margin-top: 0;
}
.menu_button .close::before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  background: #fff;
  top: 0;
}
.menu_button .close::after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  background: #fff;
  top: 0;
}

/*---------------------------------------------
    gnav
  ---------------------------------------------*/
#g-nav {
  margin: 0;
  display: block;
  position: fixed;
  top: 0 !important;
  right: 0 !important;
  width: 100%;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#g-nav.open {
  position: relative;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s;
}
#g-nav #nav-inner {
  background: #e51373;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
#g-nav #nav-inner ul {
  width: 90%;
  max-width: 500px;
  margin: 30px auto;
}
#g-nav #nav-inner ul li a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 100%;
  border-top: 1px solid #fff;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  #g-nav #nav-inner ul li a:hover {
    color: #e51373;
    background: #fff;
  }
}
#g-nav #nav-inner ul li:last-child a {
  border-bottom: 1px solid #fff;
}

/*---------------------------------------------
    intro
  ---------------------------------------------*/
.intro {
  padding-top: 50px;
  background: #e51373;
}
.intro h1 {
  width: 90%;
  max-width: 290px;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro h1 img {
    width: 100%;
  }
}
.intro.subpage {
  padding: 20px 0 1px;
}
.intro.subpage h1 {
  width: 90%;
  max-width: 80px;
  margin: 0 auto 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .intro.subpage h1 {
    max-width: 180px;
  }
}
.intro .catch {
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 420px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro .catch img {
    width: 100%;
  }
}
.intro .catch::before {
  background: url(../images/top/ico_allroom.svg);
  width: 40px;
  height: 23px;
  content: "";
  position: absolute;
  top: -16px;
  left: -2px;
}
@media screen and (min-width: 768px) {
  .intro .catch::before {
    width: 53px;
    height: 29px;
    top: -20px;
    left: -10px;
    background-size: cover;
  }
}
.intro .message {
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin: 10px 0 0;
}
.intro #vacancy {
  background: #fff7db;
  margin: 30px auto -30px;
  width: 400px;
  max-width: 90%;
  padding: 10px 20px 20px;
  border-radius: 8px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}
.intro #vacancy h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #e51373;
  margin-bottom: 5px;
}
.intro #vacancy dl {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  border-top: 1px solid #707070;
  align-items: center;
  margin-bottom: 10px;
}
.intro #vacancy dl dt {
  width: 50%;
  padding: 5px 10px;
  border-bottom: 1px solid #707070;
  text-align: center;
  font-size: 1.4rem;
}
.intro #vacancy dl dt.fas1 {
  color: #df5695;
}
.intro #vacancy dl dt.fas2 {
  color: #0099db;
}
.intro #vacancy dl dt.fas3 {
  color: #399d26;
}
.intro #vacancy dl dt.fas4 {
  color: #f38200;
}
@media screen and (min-width: 768px) {
  .intro #vacancy dl dt {
    font-size: 2rem;
  }
}
.intro #vacancy dl dd {
  width: 50%;
  padding: 5px 10px;
  font-size: 1.4rem;
  border-bottom: 1px solid #707070;
  text-align: center;
}
.intro #vacancy dl dd .teiin {
  font-size: 1.2rem;
}
.intro #vacancy dl dd strong {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .intro #vacancy dl dd {
    font-size: 2rem;
  }
  .intro #vacancy dl dd .teiin {
    font-size: 1.4rem;
  }
}
.intro #vacancy p {
  text-align: center;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .intro #vacancy p {
    font-size: 1.3rem;
  }
}
.intro #vacancy .tel {
  color: #e51373;
}
.intro .illust {
  text-align: center;
  position: relative;
  bottom: -46px;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .intro .illust img {
    width: 100%;
  }
}

/*---------------------------------------------
    main img
  ---------------------------------------------*/
.main-img {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main-img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 0%;
       object-position: 50% 0%;
    overflow: hidden;
    position: relative;
  }
}
.main-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main-img img {
    position: absolute;
    left: 0;
    top: -50%;
  }
}

/*---------------------------------------------
    main
  ---------------------------------------------*/
#main {
  margin: 50px 0 0;
  width: 100%;
  overflow: hidden;
}

/*---------------------------------------------
    section
  ---------------------------------------------*/
.inner {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.section-ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #e51373;
  text-align: center;
  line-height: 1.3636;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 768px) {
  .txt {
    font-size: 1.8rem;
    line-height: 1.3333;
    text-align: center;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .txt {
    font-size: 1.4rem;
    line-height: 1.4285;
  }
}

/*---------------------------------------------
    efficacy
  ---------------------------------------------*/
#efficacy {
  background: #f1f1f1;
  padding-top: 50px;
  margin-bottom: 30px;
}
#efficacy .txt {
  margin-bottom: 20px;
}
#efficacy .flex-box {
  width: 100%;
  margin: 0 auto;
}
#efficacy .box {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #efficacy .box {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  #efficacy .box:last-child {
    margin-bottom: 0;
  }
}
#efficacy .box.pink .box-ttl {
  background: #df5695;
}
#efficacy .box.pink li::before {
  color: #df5695;
}
#efficacy .box.orange .box-ttl {
  background: #f38200;
}
#efficacy .box.orange li::before {
  color: #f38200;
}
#efficacy .box.blue .box-ttl {
  background: #0099db;
}
#efficacy .box.blue li::before {
  color: #0099db;
}
#efficacy .box-ttl {
  font-size: 1.8rem;
  width: 100%;
  border-radius: 14px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#efficacy .box-inner {
  flex-direction: row;
}
#efficacy .box-inner .img {
  width: 40%;
}
#efficacy .box-inner ul {
  width: 56%;
}
#efficacy .box-inner ul li {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
}
#efficacy .box-inner ul li::before {
  content: "●";
  margin-right: 4px;
}

/*---------------------------------------------
    schedule
  ---------------------------------------------*/
.schedule {
  margin-bottom: 50px;
}
.schedule .inner {
  background: #fff7db;
  border-radius: 20px;
}
.schedule .inner .img {
  width: 114%;
  text-align: center;
  position: relative;
  top: -36px;
  left: -7%;
}
@media screen and (min-width: 768px) {
  .schedule .inner .img {
    width: 60%;
    left: 20%;
  }
}
@media screen and (min-width: 768px) {
  .schedule .inner .schedule_list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
}
.schedule .inner dl {
  width: 86%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl {
    width: 47%;
    margin: 0;
    margin-bottom: 50px;
  }
}
.schedule .inner dl.green dt {
  color: #22ac38;
}
.schedule .inner dl.pink dt {
  color: #df5695;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl.pink dt {
    text-align: left;
  }
}
.schedule .inner dl.orange dt {
  color: #f38200;
}
.schedule .inner dl.blue dt {
  color: #0099db;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl.blue dt {
    text-align: left;
  }
}
.schedule .inner dl.red dt {
  color: #d90560;
}
.schedule .inner dl.purple dt {
  color: #a722ac;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl.purple dt {
    text-align: left;
  }
}
.schedule .inner dl dt {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl dt {
    font-size: 2.4rem;
  }
}
.schedule .inner dl dt .num {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl dt .num {
    font-size: 4rem;
  }
}
.schedule .inner dl dd {
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.4285;
}
@media screen and (min-width: 768px) {
  .schedule .inner dl dd {
    font-size: 1.8rem;
  }
}
.schedule .inner .box {
  border-top: 1px solid #707070;
  padding-top: 20px;
  width: 86%;
  margin: 0 auto;
}
.schedule .inner .box .catch {
  font-size: 1.4rem;
  text-align: center;
  color: #d90560;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .schedule .inner .box .catch {
    font-size: 1.8rem;
  }
}
.schedule .inner .box .txt {
  background-image: 1.4285em;
}

/*---------------------------------------------
    price
  ---------------------------------------------*/
#price {
  background: #f1f1f1;
  padding-top: 50px;
  margin-bottom: 50px;
}
#price .table-style {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}
#price .table-style tr {
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  #price .table-style tr:first-child {
    border-top: 1px solid #707070;
  }
}
#price .table-style tr th,
#price .table-style tr td {
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  #price .table-style tr th,
  #price .table-style tr td {
    padding: 20px 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #price .table-style tr th,
  #price .table-style tr td {
    display: block;
    width: 100%;
    line-height: 1.3;
    font-size: 1.4rem;
  }
}
#price .table-style tr th {
  color: #e51373;
  width: 180px;
}
@media screen and (max-width: 767px) {
  #price .table-style tr th {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #price .table-style tr td {
    padding-bottom: 10px;
  }
}
#price .table-style tr td span {
  color: #22ac38;
  display: inline-block;
  margin-top: 8px;
  font-size: 1.4rem;
}
#price .table-style tr td span.note {
  color: #222;
}
@media screen and (max-width: 767px) {
  #price .table-style tr td span {
    font-size: 1.1rem;
  }
}

/*---------------------------------------------
    faq
  ---------------------------------------------*/
@media screen and (min-width: 768px) {
  #faq {
    margin-bottom: 50px;
  }
}
#faq .inner {
  padding-bottom: 0;
}
#faq dl {
  margin-bottom: 12px;
  padding-bottom: 10px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 15px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  #faq dl {
    padding: 0 20px 8px;
  }
}
#faq dl dd {
  padding-left: 2.6em;
  position: relative;
}
@media screen and (min-width: 768px) {
  #faq dl dd {
    padding-left: 3em;
  }
}
#faq dl dt {
  color: #e51373;
  font-size: 1.4rem;
  margin-bottom: 6px;
  line-height: 1.4285;
}
@media screen and (min-width: 768px) {
  #faq dl dt {
    font-size: 1.8rem;
  }
}
#faq dl dd {
  line-height: 1.1428;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #faq dl dd {
    font-size: 1.8rem;
  }
}
#faq dl dd .a {
  position: absolute;
  top: -4px;
  left: 20px;
  color: #22ac38;
}

/*---------------------------------------------
    facility
  ---------------------------------------------*/
.facility {
  border: #f38200 solid 2px;
  color: #f38200;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  padding: 8px 0;
}
@media screen and (min-width: 768px) {
  .facility {
    font-size: 2rem;
  }
}
.facility span {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .facility span {
    font-size: 1.8rem;
  }
}

.dormitory {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .dormitory {
    max-width: 100%;
  }
}
.dormitory.woman .box-ttl {
  background: #df5695;
}
.dormitory.man .box-ttl {
  background: #0099db;
}
.dormitory.dog .box-ttl {
  background: #f38200;
}
.dormitory.dog p {
  margin-bottom: 20px;
}
.dormitory .box-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 20px;
}
.dormitory ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .dormitory ul {
    justify-content: flex-start;
  }
}
.dormitory ul li {
  width: 48.45679%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .dormitory ul li {
    width: 24.2%;
    margin-right: 1%;
  }
  .dormitory ul li:nth-child(4n) {
    margin-right: 0;
  }
}
.dormitory ul li .name {
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .dormitory ul li .name {
    font-size: 1.1rem;
  }
}
.dormitory .facility-contact-box {
  background: #fff7db;
  border-radius: 10px;
  font-size: 1.6rem;
  line-height: 1.375;
  text-align: center;
  color: #e51373;
  padding: 16px 0;
}

/*---------------------------------------------
    footer
  ---------------------------------------------*/
#footer .f-nav {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 50px;
}
#footer .f-nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .f-nav ul li {
  width: 48%;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  #footer .f-nav ul li {
    width: 19%;
    max-width: 230px;
  }
}
#footer .f-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: solid 2px #e51373;
  border-radius: 8px;
  color: #e51373;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.125;
  height: 60px;
}
@media screen and (min-width: 768px) {
  #footer .f-nav ul li a {
    height: 50px;
    padding: 0 14px;
  }
  #footer .f-nav ul li a:hover {
    color: #fff;
    background: #e51373;
  }
}
#footer .flex-box {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer .flex-box {
    flex-direction: column-reverse;
  }
}
#footer .map {
  margin-bottom: 30px;
  width: 90%;
  margin: 0 auto 30px;
}
#footer .map iframe {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  #footer .map {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }
  #footer .map iframe {
    width: 100%;
    height: 300px;
  }
}
#footer .f-contact {
  text-align: center;
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #footer .f-contact {
    max-width: 410px;
  }
}
#footer .f-contact-ttl {
  background: #d90060;
  width: 90%;
  border-radius: 14px;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #footer .f-contact-ttl {
    font-size: 2rem;
  }
}
#footer .f-contact .name {
  font-size: 2rem;
  color: #d90060;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .name {
    font-size: 3rem;
  }
}
#footer .f-contact .company-name {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .company-name {
    font-size: 2.4rem;
  }
}
#footer .f-contact .num {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .num {
    font-size: 1.6rem;
  }
}
#footer .f-contact .address {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .address {
    font-size: 1.6rem;
  }
}
#footer .f-contact .tel {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d90060;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .tel {
    font-size: 1.9rem;
    margin-bottom: 14px;
  }
}
#footer .f-contact .tel .tel-link {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .tel .tel-link {
    font-size: 2.9rem;
  }
}
#footer .f-contact .access-btn {
  width: 100%;
}
#footer .f-contact .access-btn a {
  width: 100%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 4px 0;
  font-size: 1.5rem;
  background: #f7b52c;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #footer .f-contact .access-btn a:hover {
    background: rgba(247, 181, 44, 0.7);
  }
}
#footer .f-contact .access-btn a::before {
  content: url("../images/common/icon_access.png");
  position: relative;
  top: 4px;
  left: -4px;
}
#footer .copy {
  font-size: 1.1rem;
  text-align: center;
  background: #d90560;
  padding: 24px 0 86px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #footer .copy {
    padding-bottom: 24px;
  }
}
#footer .btn {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #footer .btn {
    display: none;
  }
}
#footer .btn li {
  width: 50%;
}
#footer .btn li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 13px 0;
  font-size: 1.6rem;
}
#footer .btn li.contact-btn {
  width: 100%;
  background: #ff85bb;
}
#footer .btn li.contact-btn a {
  background: #ff85bb;
}
#footer .btn li.contact-btn a::before {
  content: url("../images/common/icon_tel.png");
  position: relative;
  top: 5px;
  left: -2px;
}
#footer .btn li.access-btn {
  width: 100%;
}
#footer .btn li.access-btn a {
  background: #f7b52c;
}
#footer .btn li.access-btn a::before {
  content: url("../images/common/icon_access.png");
  position: relative;
  top: 4px;
  left: -4px;
}

#pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 10px;
    bottom: 50px;
  }
}

/*---------------------------------------------
    lower page "life"
  ---------------------------------------------*/
#life .main-img {
  background: url(../images/life/main_img.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}
@media screen and (min-width: 768px) {
  #life .main-img {
    height: 400px;
  }
}

/*---------------------------------------------
    lower page "facility"
  ---------------------------------------------*/
#facility .main-img {
  background: url(../images/facility/main_img.jpg) no-repeat center center;
  background-size: cover;
  height: 230px;
}
@media screen and (min-width: 768px) {
  #facility .main-img {
    height: 400px;
  }
}/*# sourceMappingURL=style.css.map */