@charset "UTF-8";
@import "destyle.css";
/*-------------------------------------
POPUP
-------------------------------------*/
.mfp-wrap {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.mfp-bg {
  transition: all 0.3s ease-out;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  background-color: #fff;
  background-color: #000;
  background-color: #d5c093;
}

.mfp-container {
  padding: 0;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.98;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-figure:after {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mfp-figure.show:after {
  opacity: 1;
}

.mfp-img {
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mfp-img.show {
  opacity: 1;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  right: 20px;
  top: 20px;
  color: #000;
}

.popupBox {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 80px;
}
.popupBox img {
  pointer-events: none;
}
.popupBox img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 250px);
  max-height: calc(100vh - 130px);
  max-height: calc(100vh - 210px);
  margin-bottom: 20px;
}
.popupBox .despArea {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  min-height: 70px;
}
.popupBox br {
  display: none;
}
.popupBox br.br {
  display: block;
}

.mfp-arrow-left:before {
  display: none;
}

.mfp-arrow-left:after {
  display: none;
}

.mfp-arrow-right:before {
  display: none;
}

.mfp-arrow-right:after {
  display: none;
}

button.mfp-arrow-left {
  background-image: url("../images/arr_left.png");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 25px center;
}

button.mfp-arrow-right {
  background-image: url("../images/arr_right.png");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 25px center;
}

.white-popup-block {
  animation: open 1s;
}

.mfp-removing {
  animation: close 1s;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------------
MOTION
-------------------------------------*/
.fadeSimple {
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
.fadeSimple.active {
  opacity: 1;
}

.fade {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fade.active {
  opacity: 1;
  top: 0;
}

.fadeFast {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  top: 20px;
}
.fadeFast.active {
  opacity: 1;
  top: 0;
}

.fadeLeft {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  left: -20px;
}
.fadeLeft.active {
  opacity: 1;
  left: 0;
}

.fadeRight {
  transition: all 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  position: relative;
  right: -20px;
}
.fadeRight.active {
  opacity: 1;
  right: 0;
}

.fadeDelay1 {
  transition-delay: 0s;
}

.fadeDelay2 {
  transition-delay: 0.2s;
}

.fadeDelay3 {
  transition-delay: 0.6s;
}

.fadeDelay4 {
  transition-delay: 0.9s;
}

.maskRight {
  clip-path: inset(0 100% 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskRight.active {
  clip-path: inset(0 0% 0 0);
}

.maskLeft {
  clip-path: inset(0 0 0 100%);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskLeft.active {
  clip-path: inset(0 0% 0 0);
}

.maskTop {
  clip-path: inset(0 0 100% 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskTop.active {
  clip-path: inset(0 0% 0 0);
}

.maskBottom {
  clip-path: inset(100% 0 0 0);
  transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.maskBottom.active {
  clip-path: inset(0 0% 0 0);
}

#button_container {
  position: fixed;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  z-index: 20000;
  display: block;
  background-color: black;
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: visible;
  opacity: 1;
  cursor: pointer;
  display: none;
}

#toggle {
  position: absolute;
  left: 10px;
  top: 18.5px;
  width: 32px;
  z-index: 300;
  transition: opacity 0.25s ease;
}
#toggle:hover {
  opacity: 0.7;
}
#toggle.active span.top {
  transform: translateY(8px) translateX(0) rotate(45deg);
}
#toggle.active span.middle {
  transform: translateY(26px) translateX(0) rotate(0);
}
#toggle.active span.bottom {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}
#toggle span {
  background-color: #fff;
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
#toggle span.middle {
  top: 8px;
  display: none;
}
#toggle span.bottom {
  top: 16px;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border: 4px solid #000;
  z-index: 20;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#overlay.open {
  visibility: visible;
  opacity: 1;
}
#overlay.open #overlayBox {
  opacity: 1;
}
#overlay #overlayBox {
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.25s;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#overlay #overlayBox .overlay-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  height: calc(100% - 60px);
  left: 0;
  top: 60px;
}

ul.lineList {
  position: relative;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
  text-align: center;
}
ul.lineList > li {
  position: relative;
  margin: 30px 0;
}
ul.lineList > li > a {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  display: inline-block;
}
ul.lineList > li.contact > a {
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_mail.png");
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
ul.lineList > li.sns > a {
  text-indent: -9999px;
  width: 30px;
  height: 30px;
  background-image: url("../images/ico_instagram.png");
  background-size: 18px auto;
  background-repeat: no-repeat;
  background-position: center center;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  #button_container {
    display: block;
  }
}
@font-face {
  font-family: "MOTHER-PIXEL2";
  src: url("../font/MOTHER-PIXEL2.woff") format("woff");
}
@font-face {
  font-family: "PixelMplus10";
  src: url("../font/PixelMplus10-Regular.woff") format("woff");
}
/* ------------------------------------------
MAIN
------------------------------------------ */
html.hidden,
body.hidden {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  background-color: #fff;
  color: #000;
  position: relative;
  font-family: "PixelMplus10", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.noLink {
  pointer-events: none;
}

.onlyPc {
  display: block;
}

.onlySp {
  display: none !important;
}

img {
  width: 100%;
}

/* GENERAL */
a:link,
a:visited {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a {
  outline: none;
}

.sec {
  padding: 120px 0 0 0;
}

.contentBox {
  padding: 0 40px;
}

aside .message {
  position: fixed;
  z-index: 100;
  right: 20px;
  top: calc(50% + 30px);
  transform: translate(0, -50%);
  writing-mode: vertical-rl;
  border: 2px solid #000;
  background-color: #fff;
  padding: 17px 5px 5px 5px;
  font-size: 30px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1;
}

.secTtl {
  background-color: #000;
  color: #fff;
  display: inline-table;
  line-height: 1;
  font-size: 90px;
  margin-left: -40px;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
  padding: 0 6px 0 10px;
}

#wrapper {
  border: 6px solid #000;
  border-top: none;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

* {
  cursor: none; /*本物のカーソルを非表示に*/
}

#cursor {
  position: fixed; /* 絶対位置になるように指定 */
  z-index: 2; /* 重なり順を上に指定。他の要素に合わせて数字を大きくしてください。 */
  pointer-events: none; /*【重要】マウス直下に常に画像があるので、全てをクリックできなくなる。noneにして対応*/
  z-index: 100000;
  opacity: 0;
}
#cursor.active {
  opacity: 1;
}
#cursor img {
  width: 40px;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  border: 5px solid #000;
  background-color: #fff;
  font-size: 16px;
}
header h1.copy {
  padding: 14px 0 0 30px;
  width: calc(100% - 700px);
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  padding: 10px 0 0 30px;
}
header .copyBox {
  margin-left: 0px;
  margin-right: 0px;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
header .copyBox .each {
  white-space: nowrap;
  display: inline-block;
  will-change: animation;
}
header .copyBox p {
  white-space: nowrap;
  display: inline-block;
}
header nav {
  width: 700px;
}
header nav .navList {
  display: flex;
}
header nav .navList li {
  width: 150px;
  text-align: center;
  border-left: 3px solid #000;
}
header nav .navList li a {
  display: block;
  width: 100%;
  padding: 14px 0 10px 0;
  position: relative;
}
header nav .navList li a span {
  background-image: url("../images/ico_star.png");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: left center;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}
header nav .navList li a:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header nav .navList li a:hover {
  color: #fff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.05s;
}
header nav .navList li a:hover span {
  background-image: url("../images/ico_star_white.png");
}
header nav .navList li a:hover:before {
  width: 100%;
}
header nav .navList li.contact {
  border-left: none;
  position: relative;
  width: 100px;
}
header nav .navList li.contact a {
  background-color: #000;
  color: #fff;
  display: block;
  width: 100%;
  text-indent: -9999px;
}
header nav .navList li.contact a:hover:before {
  width: calc(100% + 5px);
}
header nav .navList li.contact a p {
  background-image: url("../images/ico_mail_white.svg");
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: 55% center;
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
header nav .navList li.contact a:before {
  background-color: #ed1c24;
  height: 63px;
  margin-top: -5px;
}
#mainVisual {
  height: 100vh;
  height: 100dvh;
  position: relative;
}
#mainVisual .logoBox {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 200px;
  line-height: 1;
  display: flex;
}
#mainVisual .logoBox h1.logo {
  white-space: nowrap;
}
#mainVisual .logoBox h1.logo.active .char {
  transform: translate(0, 0);
}
#mainVisual .logoBox h1.logo .char {
  transform: translate(-1000px, 0);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transition-delay: calc((8 - var(--char-index)) * 0.2s);
}
#mainVisual .logoBox .aaaBox {
  white-space: nowrap;
}
#mainVisual .logoBox .aaaBox .char {
  color: #999;
  position: relative;
  display: inline-block;
}
#mainVisual .logoBox .aaaBox .char.moveUp:after {
  opacity: 1;
}
#mainVisual .logoBox .aaaBox .char:after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  left: 50px;
  top: 10px;
  visibility: visible;
  background-image: url("../images/ico_face.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#mainVisual .message {
  position: absolute;
  left: 40px;
  bottom: 40px;
  font-size: 60px;
  line-height: 1.6;
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.serviceList li {
  width: calc(33.33% - 14px);
  border: 3px solid #000;
  border-radius: 25px;
  overflow: hidden;
  background-color: #f9f9f9;
  box-shadow: 5px 5px 0px rgb(0, 0, 0);
  position: relative;
}
.serviceList li a {
  display: block;
  position: relative;
  top: 0;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  padding: 30px 30px 30px 30px;
  height: 100%;
}
.serviceList li a:hover {
  background-color: #444;
  color: #fff;
}
.serviceList li .ico {
  background-color: #eb5ba9;
  background-color: #ed1c24;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  text-align: center;
  line-height: 50px;
  font-size: 8px;
  font-family: "MOTHER-PIXEL2", "PixelMplus10", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.serviceList li .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
.serviceList li .ttl {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}
.serviceList li .desp {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-right: -10px;
}

.tagBox .tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #ccc;
  font-size: 10px;
  letter-spacing: 0;
  color: #666;
  background-color: #fff;
}

.mfont {
  font-family: "MOTHER-PIXEL2", "PixelMplus10", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.btnArea {
  text-align: center;
  padding: 40px 0 0 0;
}

a.btn {
  display: inline-block;
  background-color: #fd6346;
  background-color: #ed1c24;
  color: #fff;
  padding: 10px 30px;
  border-radius: 100px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.btn.mfont {
  padding: 10px 30px 13px 30px;
}
a.btn:hover {
  opacity: 0.6;
}
a.btn span {
  padding: 0 0.5em;
}

.newsList {
  border-top: 2px solid #000;
}
.newsList li {
  border-bottom: 2px solid #000;
}
.newsList li a {
  padding: 30px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.newsList li a:hover {
  background-color: #444;
  color: #fff;
}
.newsList li .infoBox {
  display: flex;
  align-items: center;
}
.newsList li .infoBox .date {
  width: 210px;
  font-size: 12px;
  font-family: "MOTHER-PIXEL2", "PixelMplus10", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.newsList li .infoBox .img {
  border: 2px solid #000;
  border-radius: 10px;
  overflow: hidden;
  width: 123px;
  margin-right: 45px;
}
.newsList li .ttl {
  font-size: 20px;
}

.flowBox {
  margin-left: 0px;
  margin-right: 0px;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  line-height: 1;
  margin-bottom: 40px;
}
.flowBox .each {
  white-space: nowrap;
  display: inline-block;
  animation: loop_animation_right 40s linear infinite;
  will-change: animation;
}
.flowBox p {
  white-space: nowrap;
  display: inline-block;
  font-size: 80px;
}

@keyframes loop_animation_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.conceptBox {
  border: 4px solid #000;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 40px;
  font-size: 32px;
  margin-bottom: 40px;
  box-shadow: 5px 5px 0px rgb(0, 0, 0);
}
.conceptBox .concept {
  background-image: url("../images/ico_star_orange.png");
  background-image: url("../images/ico_star_red.png");
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: left top 18px;
  padding-left: 45px;
}

.infoList li {
  display: flex;
  font-size: 20px;
  border-bottom: 2px solid #000;
  padding: 30px 0;
}
.infoList li .ttl {
  width: 200px;
}

#contact {
  text-align: center;
}
#contact .secTtl {
  margin-left: 0;
  font-size: 110px;
}
#contact .contactMessage {
  margin-bottom: 40px;
  font-size: 20px;
  margin-top: -20px;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
a.contactBtn {
  display: inline-block;
  width: 190px;
  height: 190px;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
}
a.contactBtn:hover:before {
  animation-play-state: paused;
}
a.contactBtn:hover span {
  top: 45%;
}
a.contactBtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/ico_circle.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  animation: 12s linear infinite rotation;
}
a.contactBtn span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  text-indent: -9999px;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-image: url("../images/ico_mail.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

footer {
  text-align: center;
  padding: 80px 0 40px 0;
  font-size: 18px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
footer img {
  width: 18px;
  position: relative;
  top: 1px;
}

.contactFormMessage {
  margin-bottom: 40px;
}

.contactList {
  width: 600px;
  max-width: 100%;
}
.contactList input {
  border: 1px solid #666;
  padding: 5px 10px;
  width: 100%;
}
.contactList textarea {
  border: 1px solid #666;
  padding: 5px 10px;
  width: 100%;
}
.contactList li {
  display: flex;
  padding-bottom: 10px;
  width: 100%;
}
.contactList li .ttl {
  width: 200px;
}
.contactList li .desp {
  width: calc(100% - 200px);
}

.sendBox {
  padding-left: 200px;
}
.sendBox input {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 60px;
}

/* ------------------------------------------
smartphone
------------------------------------------ */
@media screen and (max-width: 719px) {
  .onlyPc {
    display: none !important;
  }
  .onlySp {
    display: block !important;
  }
  * {
    cursor: auto;
  }
  #cursor {
    display: none;
  }
  #wrapper {
    border: 4px solid #000;
  }
  .sec {
    padding-top: 60px;
  }
  .contentBox {
    padding: 0 20px;
  }
  header {
    position: absolute;
    border: none;
    background-color: transparent;
  }
  header h1.copy {
    display: none;
  }
  header nav {
    display: none;
  }
  header .copyBox {
    margin-top: 16px;
    margin-left: 14px;
    border-radius: 4px;
    border: 2px solid #000;
    font-size: 12px;
    width: calc(100% - 90px);
  }
  header .copyBox .each {
    padding: 2px 10px;
    animation: loop_animation_right 30s linear infinite;
  }
  aside {
    pointer-events: none;
  }
  aside .message {
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    top: 52%;
    font-size: 15px;
    right: 12px;
    padding: 12px 2px 2px 2px;
  }
  aside .message.active {
    opacity: 1;
  }
  #mainVisual {
    height: 50dvh;
    min-height: 367px;
  }
  #mainVisual .logoBox {
    left: 20px;
    font-size: 50px;
  }
  #mainVisual .logoBox .aaaBox .char:after {
    width: 18px;
    height: 18px;
    left: 12px;
    top: -5px;
  }
  #mainVisual .message {
    font-size: 26px;
    left: 20px;
    bottom: 20px;
    bottom: 0;
  }
  .secTtl {
    font-size: 45px;
    margin-left: -20px;
    margin-bottom: 30px;
  }
  .serviceList {
    gap: 15px;
  }
  .serviceList li {
    width: auto;
    box-shadow: 3px 3px 0px rgb(0, 0, 0);
    border-radius: 20px;
  }
  .serviceList li a {
    padding: 20px 20px 15px 20px;
  }
  .serviceList li .ico {
    width: 43px;
    height: 43px;
    line-height: 43px;
    left: 10px;
    top: 10px;
  }
  .serviceList li .ttl {
    font-size: 15px;
  }
  .serviceList li .desp {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .serviceList li .desp br {
    display: none;
  }
  .newsList li a {
    flex-wrap: wrap;
    padding: 15px 0;
    display: block;
  }
  .newsList li a:hover {
    background-color: transparent;
    color: #000;
  }
  .newsList li .infoBox {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 15px;
  }
  .newsList li .infoBox .img {
    margin-right: 20px;
  }
  .newsList li .infoBox .date {
    width: auto;
    font-size: 10px;
  }
  .newsList li .ttl {
    font-size: 14px;
    width: 100%;
  }
  .flowBox p {
    font-size: 30px;
  }
  .conceptBox {
    padding: 15px;
    font-size: 14px;
    border-width: 3px;
    box-shadow: 3px 3px 0px rgb(0, 0, 0);
    margin-bottom: 20px;
  }
  .conceptBox .concept {
    padding-left: 25px;
    background-size: 14px auto;
    background-position: left top 6px;
  }
  .infoList li {
    font-size: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #000;
  }
  .infoList li .ttl {
    width: 100px;
  }
  .infoList li .desp {
    width: calc(100% - 120px);
  }
  a.btnMini {
    padding: 5px 10px 5px 15px;
    font-size: 9px;
    margin-left: -3px;
    margin-top: 5px;
  }
  #contact .secTtl {
    font-size: 45px;
  }
  #contact .contactMessage {
    margin-top: 0;
    font-size: 14px;
  }
  a.contactBtn {
    width: 150px;
    height: 150px;
  }
  a.contactBtn span {
    width: 50px;
    height: 50px;
  }
  footer {
    padding: 60px 0 20px 0;
    font-size: 14px;
  }
  footer img {
    width: 16px;
  }
  .secTtlTop {
    margin-top: 40px;
  }
  .contactList {
    width: 100%;
  }
  .contactList input {
    border: 1px solid #666;
    padding: 5px 10px;
    width: 100%;
  }
  .contactList textarea {
    border: 1px solid #666;
    padding: 5px 10px;
    width: 100%;
  }
  .contactList li {
    display: block;
    padding-bottom: 20px;
    width: 100%;
  }
  .contactList li .ttl {
    width: 100%;
    padding-bottom: 5px;
  }
  .contactList li .desp {
    width: 100%;
  }
  .sendBox {
    padding-left: 0;
  }
}/*# sourceMappingURL=style.css.map */