@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import 'https://fonts.googleapis.com/earlyaccess/mplus1p.css';
@import 'https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css';
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;
}

body {
  font-family: "Mplus 1p", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  font-display: swap;
}

h1, h2 {
  font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ Pro W6", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W7", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-display: swap;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
h3 a {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #26f;
  font-weight: 400;
  transition: 0.5s;
}
a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.5em;
}

b {
  font-weight: bold;
}

.d-n {
  display: none;
}

.companyName {
  font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ Pro W6", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W7", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-display: swap;
  letter-spacing: 0.1em;
}

.bgWh {
  background-color: #fff;
}

.section {
  padding: 50px 15px;
  margin: 2px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.section > * {
  width: 1080px;
}
@media screen and (max-width: 1079px) {
  .section > * {
    width: 100%;
  }
}

.items {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  .items {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.items .item {
  flex-basis: 0;
  flex-grow: 1;
}
.items .separator {
  flex-basis: 20px;
}

#back {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(45deg, #572A1B, #2B5F75, #1B813E);
  background-size: 300% 300%;
  animation: bgcGradation 5s ease infinite;
}
#back canvas {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  animation: canvasOpacity 5s alternate infinite ease-in-out;
}

@keyframes bgcGradation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes canvasOpacity {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.5;
  }
}
#topview {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
@media screen and (max-width: 767px) {
  #topview {
    height: 100vw;
  }
}
#topview .text {
  margin: 10px;
  color: #fff;
  text-shadow: 0 0 1em #777, 0 0 1em #777;
}
#topview .text h1 {
  font-size: 4em;
}
@media screen and (max-width: 767px) {
  #topview .text h1 {
    font-size: 3em;
  }
}
#topview .text p {
  margin-top: 20px;
}

nav {
  display: flex;
  justify-content: space-around;
  position: sticky;
  top: 0;
  height: 3em;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4));
  padding: 0 calc((100vw - 1080px) / 2);
}
@media screen and (max-width: 767px) {
  nav {
    font-size: 0.8em;
    top: calc(100vh - 2.8em);
  }
}
nav a {
  flex-grow: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  color: #fff;
  text-shadow: 0 0 0.5em #777, 0 0 0.5em #777;
}
nav a:hover {
  color: #000;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  font-weight: normal;
  text-shadow: 0 0 0.3em #fff, 0 0 0.3em #fff;
  text-decoration: none;
}

#news {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 4em;
  padding: 10px;
}
#news p {
  line-height: 2;
}

#greeting p {
  column-count: 2;
}
@media screen and (max-width: 767px) {
  #greeting p {
    column-count: 1;
  }
}

@media screen and (max-width: 767px) {
  #info .map {
    height: 40vh;
  }
}
#info .grid {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px 20px;
  margin-top: 20px;
}
#info .grid .label {
  justify-self: flex-end;
}
#info .grid .enkaku {
  grid-gap: 5px 10px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #info .grid .enkaku {
    display: flex;
    flex-direction: column;
  }
  #info .grid .enkaku p:nth-child(2n) {
    margin-bottom: 5px;
  }
}

#works .items:nth-of-type(n+2) {
  margin-top: 20px;
}

#contact {
  margin: 20px auto 0;
  color: #fff;
}
#contact p {
  margin-top: -5px;
}
#contact .list {
  min-height: 40vh;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  grid-gap: 40px;
}
@media screen and (max-width: 767px) {
  #contact .list {
    grid-template-columns: 100%;
    grid-gap: 0;
  }
}
#contact .list p {
  font-size: 2em;
  align-self: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #contact .list p {
    font-size: 1.2em;
  }
}
#contact .list .label {
  justify-self: right;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #contact .list .label {
    justify-self: left;
  }
}
#contact .list .d-n {
  display: none;
}
#contact form {
  margin: 30px auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 3em 3em 10em 3em;
  grid-gap: 20px;
  transition: 1s;
}
@media screen and (max-width: 767px) {
  #contact form {
    grid-template-columns: 100%;
    grid-template-rows: 1em 2em 1em 2em 1em 5em 0 6em;
    justify-content: flex-start;
    grid-gap: 20px 0 10px 0;
  }
}
#contact form label {
  justify-self: flex-end;
  align-self: center;
}
@media screen and (max-width: 767px) {
  #contact form label {
    justify-self: flex-start;
  }
}
#contact form p {
  margin: auto 0;
  font-weight: bold;
}
#contact form div {
  display: flex;
}
#contact form input, #contact form textarea {
  border: none;
  border-radius: 0.5em;
}
#contact form input {
  padding: 0 1em;
  font-size: 0.8em;
  width: calc(100% - 2em);
}
#contact form textarea {
  padding: 1em 1em;
  font-size: 0.8em;
  width: calc(100% - 2em);
}
#contact form .buttonContainer {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #contact form .buttonContainer {
    flex-flow: column;
  }
}
#contact form .buttonContainer .button {
  height: 100%;
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  #contact form .buttonContainer .button {
    width: 100%;
    height: 3em;
  }
}
#contact form .mailBody {
  overflow-y: scroll;
}
#contact .callInfo, #contact .sendSuccess {
  font-size: 1.3em;
}
#contact .sendSuccess {
  margin: 20px 0;
}

#privacy {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
}
#privacy h1 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #privacy h1 {
    font-size: 1.6em;
  }
}
#privacy h2 {
  font-size: 1.5em;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  #privacy h2 {
    font-size: 1.3em;
  }
}
#privacy h3 {
  font-size: 1.2em;
  margin: 25px 0 15px;
}
@media screen and (max-width: 767px) {
  #privacy h3 {
    font-size: 1.1em;
  }
}
#privacy p {
  margin: 10px 0;
  line-height: 1.8;
}
#privacy ul {
  margin: 10px 0 10px 20px;
}
#privacy ul li {
  margin: 5px 0;
  line-height: 1.8;
  list-style-type: disc;
  padding-left: 5px;
}
#privacy .policy-date {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  line-height: 2;
}

footer {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Rounded Mplus 1c", "ヒラギノ丸ゴ Pro W6", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W7", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-display: swap;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 3.8em;
  }
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  text-decoration: none;
}

/*# sourceMappingURL=/app.e2401560.css.map */