@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=M+PLUS+Rounded+1c&display=swap");
html {
  font-size: 62.5%;
}
body {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, Arial, sans-serif;
  letter-spacing: 0.05em;
  color: #363636;
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: normal;
}
a {
  display: block;
  transition: 0.3s;
  text-decoration: none;
  color: #fcfcfc;
}
span,
em {
  font-weight: inherit;
}
em {
  font-size: 70%;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
#wrapper {
  background: #fcfcfc;
  position: relative;
  width: 100%;
  overflow: hidden;
}
section {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 6.5% 0;
}
.inner {
  position: relative;
  padding: 0 5%;
  margin: 0 auto;
  z-index: 5;
}
.secTtl {
  position: relative;
  letter-spacing: 0.035em;
  margin: 1.25em 0 0.85em;
  font-weight: 400;
  white-space: nowrap;
  font-size: 5.8rem;
  display: block;
  line-height: 1;
  font-family: "League Spartan", sans-serif;
}
.secTtl:first-of-type {
  margin: 0 0 0.85em;
}
.secTtl:first-letter {
  font-weight: 600;
}
.secTtl em {
  font-family: "M PLUS Rounded 1c", "Helvetica Neue",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, Arial, sans-serif;
  font-size: 35%;
  display: inline-block;
  padding-left: 3rem;
  font-weight: 700;
}
.caution,
.note {
  font-weight: normal;
  font-size: 85%;
}
.caution li,
.caution li {
  text-indent: -0.6em;
  padding-left: 0.6em;
}
.btn {
  display: block;
  position: relative;
}
.btn a {
  display: inline-block;
  background: #363636;
  color: #fff !important;
  padding: 1.25em 3.5em 1.25em 1.5em;
  line-height: 1;
  position: relative;
}
.btn a:hover {
  background: #f3b717;
  text-decoration: none !important;
}
.btn a:after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin: 0 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 1em;
  top: 50%;
}
header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0 calc(5% - 1.75em) 0 5%;
  color: #333;
  position: relative;
  height: 9.6rem;
}
header h1 {
  flex: 1 0 10rem;
  max-width: 10rem;
}
header h1 a {
  display: flex;
  align-content: center;
  height: 100%;
}
header h1 a img {
  display: block;
}
header nav {
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: stretch;
  line-height: 1;
}
header nav ul li {
  position: relative;
}
header nav ul li:after {
  content: "";
  display: block;
  width: 1px;
  height: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #ccc;
  position: absolute;
}
header nav ul li:last-child:after {
  display: none;
}
header nav ul li a,
header nav ul li span {
  color: #333;
  display: inline-block;
  text-align: left;
  font-weight: 600;
  font-family: "League Spartan", sans-serif;
  font-size: 1.8rem;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
  padding: 3rem 1.5em;
}
header nav ul li a em,
header nav ul li span em {
  display: block;
  font-size: 60%;
  white-space: nowrap;
  font-weight: normal;
  padding-top: 0.6rem;
  color: #8c8c8c;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
header nav ul li a:hover,
header nav ul li span:hover {
  color: #f39017;
}
header nav ul li a:hover em,
header nav ul li span:hover em {
  color: #f39017;
  opacity: 0.6;
}
header nav ul li a:before {
  content: "";
  display: block;
  height: 4px;
  width: 0;
  transition: 0.2s;
  background: #f3b717;
  position: absolute;
  bottom: 0;
  left: 0;
}
header nav ul li a:hover:before {
  width: 100%;
}
header .subNav {
  display: none;
  position: absolute;
  bottom: -9.6rem;
  left: 0;
  background: #e0deda;
  height: 0;
  justify-content: center;
  z-index: 10;
  align-items: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  transition: 0.3s;
  opacity: 0;
  animation-name: fadeDownAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
header .subNav.active {
  height: 100%;
  max-height: 9.6rem;
  display: flex;
  opacity: 1;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header .subNav li {
  position: relative;
  padding: 0 1rem;
}
header .subNav li a {
  padding: 1.5rem 1.5rem 1.5rem 5rem;
  color: #666;
  position: relative;
  font-size: 1.5rem;
}
header .subNav li a:hover {
  color: #f39017;
}
header .subNav li a:before {
  content: "";
  display: block;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: 0.3s;
}
header .subNav li.pamphlet a:before {
  background-image: url("../images/icon_pamphlet.svg");
  padding-top: calc(2rem * 1.5625);
  width: 2rem;
  left: 1.8rem;
}
header .subNav li.equipment a:before {
  background-image: url("../images/icon_equipment.svg");
  padding-top: calc(3.5rem * 0.5703);
  width: 3.5rem;
}
header .subNav li.floorplan a:before {
  background-image: url("../images/icon_floorplan.svg");
  padding-top: calc(3.4rem * 0.9375);
  width: 3.4rem;
  left: 0.2rem;
}
header .subNav li a:hover:before {
  opacity: 0.7;
}
header nav .back {
  display: none;
}
#kv {
  position: relative;
  width: 100%;
  background: url("../images/kv.jpg") no-repeat right bottom #484848;
  background-size: auto 96%;
}
#kv:before {
  content: "";
  display: block;
  padding-top: 40%;
}
#kv h1 {
  position: absolute;
  left: 5.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 28%;
}
.ph {
  display: flex;
  flex-wrap: wrap;
  margin: 4.5% auto -4.5rem;
}
.ph li {
  flex: 1 0 calc(33.333% - 3rem);
  max-width: calc(33.333% - 3rem);
  text-align: center;
  position: relative;
  margin: 0 calc(9rem / 2) calc(9rem / 2) 0;
}
.ph li:nth-child(3n) {
  margin: 0 0 calc(9rem / 2) 0;
}
.ph li:before {
  content: "";
  display: block;
  padding-top: calc(66.7% * 0.9);
  background-size: 90% auto;
  background-repeat: no-repeat;
  width: 100%;
  background-position: top right;
}
.ph li span {
  display: inline-block;
  color: #fff;
  line-height: 1;
  background: #605547;
  position: absolute;
  top: 12.5%;
  left: 0;
  padding: 0.65em 1em;
  font-size: 1.5rem;
  box-shadow: 3px 3px 0 rgba(241, 241, 246, 0.9);
}
.ph li .caution {
  display: block;
  text-align: center;
  padding: 0 0.5rem !important;
  margin-top: 1.5rem !important;
  font-size: 1.2rem;
}
#about {
  z-index: 6;
  background: url("../images/dotted.svg") repeat;
  background-size: 70px auto;
}
#about .flex {
  display: flex;
  justify-content: space-between;
}
#about .flex .lead {
  flex: 1 0 55%;
  max-width: 55%;
  padding-right: 6%;
}
#about .flex .lead p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1em;
  color: #333;
  text-align: justify;
}
#about .flex .yt {
  flex: 1 0 45%;
  max-width: 45%;
  position: relative;
}
#about .flex .yt:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#about .flex .yt iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#about .ph li:nth-child(1):before {
  background-image: url("../images/ph_exterior.jpg");
}
#about .ph li:nth-child(2):before {
  background-image: url("../images/ph_controlroom.jpg");
}
#about .ph li:nth-child(3):before {
  background-image: url("../images/ph_studio.jpg");
}
#about .flex .ph {
  flex: 1 0 55%;
  max-width: 55%;
  padding-right: 6%;
  display: block;
  margin: 0;
}
#about .flex .ph li {
  max-width: 100%;
  margin: 0;
}
#about .flex:nth-child(even) {
  flex-direction: row-reverse;
  align-items: center;
  padding-top: 3.5rem;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 1em;
  color: #333;
  text-align: justify;
}
#plan01 {
  background: url("../images/dotted_bk.svg") repeat #484848;
  background-size: 70px auto;
  color: #fff;
}
#plan02 {
  background: url("../images/dotted.svg") repeat #fff;
  background-size: 70px auto;
}
.secTtl span,
.secTtl span {
  display: inline-block;
  width: 15rem;
}
#plan01 .time,
#plan02 .time {
  padding-left: 18rem;
  font-size: 1.7rem;
}
#plan01 .time h3,
#plan02 .time h3 {
  font-weight: 700;
  margin: 5rem auto 1.5rem;
  line-height: 1.4;
  position: relative;
  z-index: 3;
  color: #f3b717;
}
#plan02 .time h3 {
  color: #f39017;
}
#plan01 .time:first-of-type h3,
#plan02 .time:first-of-type h3 {
  margin: 0 auto 1.5rem;
}
#plan01 .time span,
#plan02 .time span {
  font-family: "League Spartan", sans-serif;
}
#plan01 .time dl,
#plan02 .time dl {
  display: flex;
}
#plan01 .time dl dt,
#plan02 .time dl dt {
  flex: 1 0 18em;
  max-width: 30em;
}
#plan01 .time dl dd,
#plan02 .time dl dd {
  flex: 1 0 calc(100% - 18em);
  max-width: calc(100% - 18em);
}
#plan01 .caution,
#plan02 .caution {
  margin-top: 2.5rem;
  padding-left: 18rem;
  opacity: 0.85;
}
#plan01 .note,
#plan02 .note {
  margin-top: 2.5rem;
  padding-left: 18rem;
  opacity: 0.7;
}
#plan01 .ph li:nth-child(1):before {
  background-image: url("../images/ph_studio01.jpg");
}
#plan01 .ph li:nth-child(2):before {
  background-image: url("../images/ph_studio02.jpg");
}
#plan01 .ph li:nth-child(3):before {
  background-image: url("../images/ph_studio03.jpg");
}
#plan01 .ph li:nth-child(4):before {
  background-image: url("../images/ph_studio04.jpg");
}
#plan01 .ph li:nth-child(5):before {
  background-image: url("../images/ph_controlroom.jpg");
}
#plan01 .ph li:nth-child(6):before {
  background-image: url("../images/ph_lounge.jpg");
}
#plan02 .ph li:nth-child(1):before {
  background-image: url("../images/ph_room01.jpg");
}
#plan02 .ph li:nth-child(2):before {
  background-image: url("../images/ph_room02.jpg");
}
#plan02 .ph li:nth-child(3):before {
  background-image: url("../images/ph_room03.jpg");
}
#plan02 .ph li:nth-child(4):before {
  background-image: url("../images/ph_room04.jpg");
}
#plan02 .ph li:nth-child(5):before {
  background-image: url("../images/ph_waitingroom.jpg");
}
#plan02 .ph li:nth-child(6):before {
  background-image: url("../images/ph_kitchen.jpg");
}
#service {
  background: url("../images/dotted_bk.svg") repeat #484848;
  background-size: 70px auto;
  color: #fff;
}
#service .serviceList {
  display: flex;
  flex-wrap: wrap;
}
#service .serviceList > li {
  flex: 1 0 calc(33.333% - 3rem);
  max-width: calc(33.333% - 3rem);
  margin: 0 calc(9rem / 2) calc(9rem / 2) 0;
  position: relative;
}
#service .serviceList > li:nth-child(3n) {
  margin: 0 0 calc(9rem / 2) 0;
}
#service .serviceList > li:before {
  content: "";
  display: block;
  position: relative;
  width: 18rem;
  height: 18rem;
  /*border-radius: 50%;*/
  margin: 0 auto;
  /*background-color: #fff;*/
  background-repeat: no-repeat;
  background-position: center bottom;
}
#service .serviceList > li:nth-child(1):before {
  background-image: url("../images/ill_parking.svg");
  background-size: 100% auto;
}
#service .serviceList > li:nth-child(2):before {
  background-image: url("../images/ill_warehouse.svg");
  background-size: 100% auto;
}
#service .serviceList > li:nth-child(3):before {
  background-image: url("../images/ill_studio.svg");
  background-size: 100% auto;
}
#service .serviceList > li:nth-child(4):before {
  background-image: url("../images/ill_copy.svg");
  background-size: 100% auto;
}
#service .serviceList > li h3 {
  font-weight: 700;
  margin: 1.5em auto;
  line-height: 1.4;
  position: relative;
  z-index: 6;
  text-align: center;
  color: #f3b717;
}
#service .ph li:nth-child(1):before {
  background-image: url("../images/ph_roof.jpg");
}
#service .ph li:nth-child(2):before {
  background-image: url("../images/ph_terrace.jpg");
}
#service .ph li:nth-child(3):before {
  background-image: url("../images/ph_dock.jpg");
}
#service .ph li:nth-child(4):before {
  background-image: url("../images/ph_parking03.jpg");
}
#service .ph li:nth-child(5):before {
  background-image: url("../images/ph_parking04.jpg");
}
#service .ph li:nth-child(6):before {
  background-image: url("../images/ph_warehouse.jpg");
}

#utility {
  display: flex;
  justify-content: space-between;
  padding: 0;
  background: url("../images/dotted.svg") repeat #e1deda;
  background-size: 70px auto;
}
#utility > div {
  flex: 1 0 50%;
  max-width: 50%;
  padding: 5%;
}

#contact {
  background: rgba(255, 255, 255, 0.5);
}
#contact h4 {
  font-weight: 700;
  font-size: 1.8rem;
}
#contact h5 {
  font-size: 1.6rem;
  margin: 1.5rem 0 0.5rem;
}
#contact table {
  text-align: left;
  font-size: 1.4rem;
  width: 100%;
}
#contact table th {
  width: 6em;
  white-space: nowrap;
}
#contact table td {
  padding: 0 1rem;
}
#contact table td:last-child {
  width: 8em;
  white-space: nowrap;
}
#contact table td a {
  color: #8c8c8c;
  display: block;
}
#contact .caution {
  text-align: right;
  padding-top: 0.5rem;
  font-size: 1.3rem;
}

#contact .form a {
  color: #f3b717;
  display: inline;
  font-weight: 700;
  &:hover {
    opacity: 0.5;
  }
}

#access {
  background: url("../images/labo.jpg") no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
  padding: 7.5% 0 0;
  text-align: center;
}
#access:before {
  content: "";
  display: block;
  background: url("../images/dotted_bk.svg") repeat rgba(30, 30, 30, 0.4);
  background-size: 70px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#access .inner {
  padding: 4.5rem;
  background: rgba(255, 255, 255, 0.88);
  width: 66%;
}
#access .inner h3 {
  font-weight: 700;
  margin: 1.5em 0 1em;
  line-height: 1;
  text-align: left;
}
#access .inner table {
  width: 100%;
  text-align: left;
  font-size: 1.6rem;
  border-top: solid 4px #484848;
}
#access .inner table th {
  font-weight: bold;
  background: #484848;
  color: #fff;
  padding: 1em 1.5em;
  border-bottom: dotted 1px #666;
  align-content: center;
}
#access .inner table tr:last-child th {
  border-bottom: none;
}
#access .inner table th em {
  display: block;
  font-size: 85%;
}
#access .inner table td {
  padding: 1em 1.5em;
  border-bottom: dotted 1px #acacac;
  align-content: center;
  background: #fff;
}
#access .inner table tr:last-child td {
  border-bottom: none;
}
#access .map {
  width: 100%;
  height: 34rem;
  position: relative;
  z-index: 5;
  margin: 7.5% auto 0;
}
#access .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  filter: grayscale(100%);
  transition: all 0.7s ease;
}
#access .map iframe:hover {
  filter: grayscale(0%);
}
#relation {
  background: url("../images/dotted_bk.svg") repeat #484848;
  background-size: 70px auto;
  color: #fff;
}
#relation ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(-12rem / 3);
}
#relation ul li {
  flex: 1 0 calc(25% - 3rem);
  max-width: calc(25% - 3rem);
  margin: 0 calc(12rem / 3) calc(12rem / 3) 0;
}
#relation ul li:nth-child(4n) {
  margin: 0 0 calc(12rem / 3) 0;
}
#relation ul li .thumb {
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
#relation ul li .thumb:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#relation ul li .thumb img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
#relation ul li a:hover {
  color: #f3b717;
}
#relation ul li a:hover .thumb {
  opacity: 0.75;
}
#relation ul li a span {
  display: block;
  text-align: center;
  line-height: 1.4;
  padding-top: 1rem;
}
section#usageguide {
  background: url("../images/dotted_bk.svg") repeat #484848;
  background-size: 70px auto;
  color: #fff;
}
section#usageguide .guideList > li {
  margin-bottom: 5rem;
  font-size: 1.4rem;
  position: relative;
  padding-left: 2rem;
  color: #eee;
}
section#usageguide .guideList > li h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f3b717;
  margin-bottom: 1.5em;
  margin-left: -1rem;
}
section#usageguide .guideList > li h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2em 0 1em;
  color: #fff;
}
section#usageguide .guideList > li p {
  margin: 1em 0;
}
section#usageguide .guideList > li p:last-of-type {
  margin-bottom: 0;
}
section#usageguide .guideList > li a {
  display: inline;
  color: #f3b717;
}
section#usageguide .guideList > li a:hover {
  text-decoration: underline;
}
section#usageguide .guideList > li > ul {
  padding-left: 1rem;
}
section#usageguide .guideList > li > ul > li {
  text-indent: -1em;
  padding-left: 1em;
}
section#usageguide .guideList > li ol {
  margin: 1em 0;
}
section#usageguide .guideList > li ol > li {
  text-indent: -1em;
  padding-left: 1em;
}
section#usageguide .guideList > li table {
  margin: 1em 0 1em 1rem;
}
section#usageguide .guideList > li table th {
  padding: 1em;
  border-right: solid 1px #8c8c8c;
  border-bottom: solid 1px #8c8c8c;
  width: 12em;
  align-content: center;
}
section#usageguide .guideList > li table td {
  padding: 1em;
  border-right: solid 1px #8c8c8c;
  border-bottom: solid 1px #8c8c8c;
  align-content: center;
}
section#usageguide .guideList > li table tr:last-child th,
section#usageguide .guideList > li table tr:last-child td {
  border-bottom: none;
}
section#usageguide .guideList > li table td:nth-child(2) {
  width: 25em;
}
section#usageguide .guideList > li table td:last-of-type {
  border-right: none;
  width: 12em;
}
section#usageguide .guideList > li .flow ul {
  padding: 3rem 0 0 1rem;
}
section#usageguide .guideList > li .flow ul li {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
section#usageguide .guideList > li .flow ul li:after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: 2em;
  bottom: 0;
}
section#usageguide .guideList > li .flow ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
section#usageguide .guideList > li .flow ul li:last-child:after {
  display: none;
}
section#usageguide .guideList > li .flow ul li h4 {
  flex: 1 0 16rem;
  max-width: 16rem;
  margin: 0;
}
section#usageguide .guideList > li .flow ul li h4 span {
  color: #f3b717;
  display: block;
}
section#usageguide .guideList > li .flow ul li p {
  flex: 1 0 calc(100% - 16rem);
}
section#usageguide .guideList > li .btn {
  padding: 2.5rem 0 0;
  display: block;
}
#pageTop {
  font-family: "League Spartan", sans-serif;
  position: fixed;
  bottom: 10em;
  right: 0;
  z-index: 999;
  background: #242424;
  color: #fff;
  transform: rotate(-90deg);
  transform-origin: right bottom;
  line-height: 1;
  padding: 0.5em 3rem 0.6em 1em;
  cursor: pointer;
  transition: 0.2s;
  display: none;
}
#pageTop:after {
  content: "";
  display: inline-block;
  width: 0.25em;
  height: 0.25em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 1em;
  top: 0.65em;
  transition: 0.3s;
}
#pageTop:hover a {
  color: #f3b717;
}
#pageTop:hover:after {
  border-top: 2px solid #f3b717;
  border-right: 2px solid #f3b717;
}
footer {
  padding: 2.5rem 5%;
  text-align: center;
}
footer .cr {
  font-size: 1.4rem;
  font-family: "League Spartan", sans-serif;
  color: #8c8c8c;
}
@media screen and (max-width: 999px) {
  body {
    font-size: 1.3rem;
    line-height: 1.9;
  }
  section {
    padding: 4.5rem 0;
  }
  .inner {
    padding: 0 1.5rem;
  }
  .secTtl {
    margin: 1.25em 0 0.85em;
    font-size: 3.4rem;
  }
  .secTtl:first-of-type {
    margin: 0 0 0.85em;
  }
  .secTtl em {
    display: block;
    padding: 1.5rem 0 0;
    opacity: 0.7;
  }
  header {
    padding: 1.25rem 1.5rem;
    align-items: center;
    height: auto;
  }
  #wrapper.top header {
    display: none;
  }
  header h1 {
    flex: 1 0 8.8rem;
    max-width: 8.8rem;
  }
  header nav ul {
    display: none;
  }
  header nav .back {
    display: block;
    line-height: 1;
  }
  header nav .back a {
    font-size: 1.4rem;
    line-height: 1;
    padding: 0.75em 2em;
    background: #333;
    display: inline-block;
    font-family: "League Spartan", sans-serif;
  }
  #kv {
    background: url("../images/kv.jpg") no-repeat center center #484848;
    background-size: cover;
  }
  #kv:before {
    padding-top: 78%;
  }
  #kv h1 {
    left: 0;
    top: 0;
    transform: translateY(0);
    width: 38%;
    background-color: rgba(68, 68, 68, 0.94);
  }
  #kv h1:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  #kv h1 img {
    width: 78%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .ph {
    margin: 2.5rem calc(50% - 50vw) -1.5rem;
    width: 100vw;
  }
  .ph li {
    flex: 1 0 33.333%;
    max-width: 33.333%;
    margin: 0;
  }
  .ph li:nth-child(3n) {
    margin: 0;
  }
  .ph li:before {
    padding-top: 66.7%;
    background-size: 100% auto;
  }
  .ph li span {
    display: block;
    position: relative;
    top: 0;
    padding: 0.65em 0.25em;
    font-size: 1rem;
    box-shadow: none;
    white-space: nowrap;
  }
  .ph li:nth-child(3n-1) span {
    border-left: solid 1px #8c8c8c;
    border-right: solid 1px #8c8c8c;
  }
  .ph li .caution {
    margin: 0.5rem 0 !important;
  }
  #about {
    background: url("../images/dotted.svg") repeat;
    background-size: 35px auto;
  }
  #about .flex {
    display: block;
  }
  #about .flex .lead {
    flex: none;
    max-width: 100%;
    padding: 0 0 1.5rem;
  }
  #about .flex .lead p {
    font-size: 1.3rem;
  }
  #about .flex .yt {
    flex: none;
    max-width: 100vw;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  #about .flex .ph {
    flex: none;
    max-width: 80%;
    padding: 0;
    margin: 3.5rem auto 0;
  }
  #plan01 {
    background: url("../images/dotted_bk.svg") repeat #484848;
    background-size: 35px auto;
  }
  #plan02 {
    background: url("../images/dotted.svg") repeat #fff;
    background-size: 35px auto;
  }
  .secTtl span,
  .secTtl span {
    display: block;
    width: auto;
  }
  #plan01 .time,
  #plan02 .time {
    padding-left: 0;
    font-size: 1.4rem;
  }
  #plan01 .caution,
  #plan02 .caution {
    margin-top: 2rem;
    padding-left: 0;
  }
  #plan01 .note,
  #plan02 .note {
    margin-top: 2rem;
    padding-left: 0;
  }
  #service {
    background: url("../images/dotted_bk.svg") repeat #484848;
    background-size: 35px auto;
  }
  #service .serviceList {
    display: block;
  }
  #service .serviceList > li {
    flex: none;
    max-width: 100%;
    margin: 0 0 3rem;
    padding-left: 13.5rem;
    min-height: 11rem;
  }
  #service .serviceList > li:nth-child(3n) {
    margin: 0 0 2rem;
  }
  #service .serviceList > li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 11rem;
    height: 11rem;
    margin: 0;
    background-position: center top;
  }
  #service .serviceList > li h3 {
    margin: 0 auto 0.75em;
    font-size: 1.4rem;
    text-align: left;
  }
  #utility {
    display: block;
    background: url("../images/dotted.svg") repeat #e1deda;
    background-size: 35px auto;
  }
  #utility > div {
    flex: none;
    max-width: 100%;
    padding: 2.5rem 1.5rem;
  }
  #access {
    padding: 1.5rem 0 0;
    background: url("../images/labo.jpg") no-repeat center top;
    background-size: auto calc(100% - 24rem);
    background-attachment: inherit;
  }
  #access:before {
    background: url("../images/dotted_bk.svg") repeat rgba(30, 30, 30, 0.4);
    background-size: 35px auto;
  }
  #access .inner {
    padding: 3.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
  }
  #access .inner table {
    font-size: 1.3rem;
    border-top: solid 3px #484848;
  }
  #access .inner table th {
    padding: 0.75em 1em;
  }
  #access .inner table td {
    padding: 0.75em 1em;
    white-space: nowrap;
  }
  #access .map {
    height: 24rem;
    margin: 1.5rem auto 0;
  }
  #relation {
    background: url("../images/dotted_bk.svg") repeat #484848;
    background-size: 35px auto;
  }
  #relation ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(-3rem / 2);
  }
  #relation ul li {
    flex: 1 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    margin: 0 calc(3rem / 1) calc(3rem / 2) 0;
  }
  #relation ul li:nth-child(4n) {
    margin: 0 calc(3rem / 1) calc(3rem / 2) 0;
  }
  #relation ul li:nth-child(even) {
    margin: 0 0 calc(3rem / 2);
  }
  section#usageguide {
    background: url("../images/dotted_bk.svg") repeat #484848;
    background-size: 35px auto;
  }
  section#usageguide .guideList > li {
    margin-bottom: 3.5rem;
    font-size: 1.2rem;
    padding-left: 0;
  }
  section#usageguide .guideList > li h3 {
    font-size: 1.7rem;
    margin-left: 0;
    margin-bottom: 1em;
  }
  section#usageguide .guideList > li h4 {
    font-size: 1.4rem;
    margin: 1em 0 0.5em;
  }
  .table-scroll {
    overflow-x: scroll;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 1.5rem;
  }
  section#usageguide .guideList > li table {
    margin: 1em 0;
    width: 100%;
    white-space: nowrap;
  }
  section#usageguide .guideList > li .flow ul {
    padding: 2rem 0 0 1rem;
  }
  section#usageguide .guideList > li .flow ul li h4 {
    flex: 1 0 11rem;
    max-width: 11rem;
    margin: 0;
  }
  section#usageguide .guideList > li .flow ul li p {
    flex: 1 0 calc(100% - 11rem);
  }
  footer {
    padding: 2.5rem 1.5rem;
  }
  footer .cr {
    font-size: 1.3rem;
  }
}
.delay01 {
  animation-delay: 0.1s;
}
.delay02 {
  animation-delay: 0.2s;
}
.delay03 {
  animation-delay: 0.3s;
}
.delaye04 {
  animation-delay: 0.4s;
}
.delay05 {
  animation-delay: 0.5s;
}
.delay06 {
  animation-delay: 0.6s;
}
.delayBox {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
