@charset "UTF-8";
/* ローディングと終了時のアニメーションの画面調整*/
#loading {
  /* 画面いっぱいになる箇所 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #1d2630;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* ローディング中のアニメーション */
  /* GRID STYLING */
  /* SPINNING CIRCLE */
  /* ALTERNATING ORBITS */
  /* X-ROTATING BOXES */
  /* PULSE BUBBLES */
  /* SOLAR SYSTEM */
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes spin3D {
  from {
    transform: rotate3d(0.5, 0.5, 0.5, 360deg);
  }
  to {
    transform: rotate3d(0deg);
  }
}
@keyframes configure-clockwise {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes configure-xclockwise {
  0% {
    transform: rotate(45deg);
  }
  25% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(-135deg);
  }
  75% {
    transform: rotate(-225deg);
  }
  100% {
    transform: rotate(-315deg);
  }
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
#loading * {
  box-sizing: border-box;
}
#loading body {
  min-height: 100vh;
  background-color: #1d2630;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#loading .spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
#loading .leo-border-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(
    0deg,
    rgba(63, 249, 220, 0.1) 33%,
    rgb(63, 249, 220) 100%
  );
  animation: spin3D 1.8s linear 0s infinite;
}
#loading .leo-core-1 {
  width: 100%;
  height: 100%;
  background-color: rgba(55, 71, 79, 0.6666666667);
  border-radius: 50%;
}
#loading .leo-border-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(251, 91, 83);
  background: linear-gradient(
    0deg,
    rgba(251, 91, 83, 0.1) 33%,
    rgb(251, 91, 83) 100%
  );
  animation: spin3D 2.2s linear 0s infinite;
}
#loading .leo-core-2 {
  width: 100%;
  height: 100%;
  background-color: rgba(29, 38, 48, 0.6666666667);
  border-radius: 50%;
}
#loading .circle-border {
  width: 150px;
  height: 150px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(63, 249, 220);
  background: linear-gradient(
    0deg,
    rgba(63, 249, 220, 0.1) 33%,
    rgb(63, 249, 220) 100%
  );
  animation: spin 0.8s linear 0s infinite;
}
#loading .circle-core {
  width: 100%;
  height: 100%;
  background-color: #1d2630;
  border-radius: 50%;
}
#loading .configure-border-1 {
  width: 115px;
  height: 115px;
  padding: 3px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fb5b53;
  animation: configure-clockwise 3s ease-in-out 0s infinite alternate;
}
#loading .configure-border-2 {
  width: 115px;
  height: 115px;
  padding: 3px;
  left: -115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(63, 249, 220);
  transform: rotate(45deg);
  animation: configure-xclockwise 3s ease-in-out 0s infinite alternate;
}
#loading .configure-core {
  width: 100%;
  height: 100%;
  background-color: #1d2630;
}
#loading .pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#loading .pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #3ff9dc;
}
#loading .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
#loading .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
#loading .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}
#loading .solar-system {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading .orbit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fafbfc;
  border-radius: 50%;
}
#loading .earth-orbit {
  width: 165px;
  height: 165px;
  -webkit-animation: spin 12s linear 0s infinite;
}
#loading .venus-orbit {
  width: 120px;
  height: 120px;
  -webkit-animation: spin 7.4s linear 0s infinite;
}
#loading .mercury-orbit {
  width: 90px;
  height: 90px;
  -webkit-animation: spin 3s linear 0s infinite;
}
#loading .planet {
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3ff9dc;
}
#loading .sun {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ffab91;
}
#loading .leo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#loading .blue-orbit {
  width: 165px;
  height: 165px;
  border: 1px solid rgba(145, 218, 255, 0.6470588235);
  -webkit-animation: spin3D 3s linear 0.2s infinite;
}
#loading .green-orbit {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(145, 255, 191, 0.6470588235);
  -webkit-animation: spin3D 2s linear 0s infinite;
}
#loading .red-orbit {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 202, 145, 0.6470588235);
  -webkit-animation: spin3D 1s linear 0s infinite;
}
#loading .white-orbit {
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  -webkit-animation: spin3D 10s linear 0s infinite;
}
#loading .w1 {
  transform: rotate3D(1, 1, 1, 90deg);
}
#loading .w2 {
  transform: rotate3D(1, 2, 0.5, 90deg);
}
#loading .w3 {
  transform: rotate3D(0.5, 1, 2, 90deg);
}
#loading .three-quarter-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #fb5b53;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
}

a {
  text-decoration: none !important;
}

.block p {
  color: black !important;
}

html {
  background: white;
}

.kaisya {
  color: white !important;
  padding: 10px;
  background-color: #2693f3;
  opacity: 0.8;
  border-top-right-radius: 3em 1em;
  margin-bottom: 3% !important;
}

.container {
  margin: 10px;
  display: inline-block;
  max-width: 450px;
  text-align: center;
}

dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  width: 100%;
  color: gray;
}

.logo-c span {
  color: black !important;
}

.container dt {
  /* ブロック要素からインライン要素に変更する */
  display: block;
  width: 35%;
  margin-bottom: 10%;
  font-weight: bold;
}

.container dd {
  /* ブロック要素からインライン要素に変更する */
  display: block;
  width: 55%;
  margin-left: 3%;
  margin-bottom: 10%;
}

.partner-link {
  text-decoration: none;
}

.sokuhou-k {
  margin-top: 1% !important;
}

.e-access {
  border: none !important;
  border-bottom: 1px solid gray !important;
}

a:visited {
  color: inherit;
}

a:link {
  color: inherit;
}

.partners-p {
  margin-bottom: 4% !important;
  margin-top: 4% !important;
  font-size: 25px;
}

h3 {
  margin: 0px;
}

.display-large {
  display: block;
}

.profile-wrapper {
  text-align: center;
}

.profile h1 {
  color: #a0522d;
  font-size: 22px;
  max-width: 100%;
  display: inline-block;
  letter-spacing: 0 !important;
  font-family: "RocknRoll One", sans-serif;
}

.image img {
  width: 150px;
  height: 150px;
  border-radius: 100px;
}

.profile i {
  color: #d93177;
  display: inline-block;
  margin-left: 4px;
}

.profile a {
  text-decoration: none;
}

.fadeInDown {
  animation-fill-mode: both;
  animation-duration: 6s;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.direction {
  display: none !important;
}

.mini-dis {
  display: none;
}

.middle-dis {
  display: none;
}

.fllow-d {
  display: inline-block;
}

.bousaijigyou {
  color: whitesmoke !important;
}

.sample-i {
  font-family: "Hachi Maru Pop", cursive !important;
}

.weather {
  font-family: "Kaisei Decol", serif !important;
}

.weather-w {
  margin-top: 5%;
}

.ourbousai {
  margin: 2px !important;
}

.ourdesign {
  margin: 5% !important;
}

.design-j {
  text-align: left;
  max-width: 50%;
  display: inline-block;
  margin: 2% 0 5% 0;
  color: black !important;
}

.design-j-w {
  text-align: center;
}

.bousai-detail p {
  font-size: 15px;
}

.bousai-detail {
  opacity: 0;
  animation-name: slideTextX100;
  animation-fill-mode: forwards;
  color: black !important;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  max-width: 50%;
  display: inline-block;
  margin-top: 0px;
  line-height: 3rem;
  text-align: left;
  opacity: 0.88 !important;
}

.design-pic {
  max-width: 30% !important;
  text-align: center !important;
  background-color: transparent !important;
  opacity: 1 !important;
  border: none !important;
}

.design-pic img {
  max-width: 100%;
  animation: anime-img-move 15s infinite normal;
}

@keyframes anime-img-move {
  0% {
    transform: rotate(0);
  }
  12% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.detail {
  color: gray !important;
  margin-top: 5px;
  max-width: 557px;
}

.explain {
  margin-top: 3%;
}

.sokuhou {
  font-size: 25px !important;
}

.video {
  min-height: 900px;
  max-height: 1000px;
}

.neon {
  min-height: 900px;
  max-height: 1000px;
}

.bousai-w {
  margin-top: 3% !important;
}

.dpass {
  margin-top: 10% !important;
}

.design {
  margin-top: 4% !important;
}

.koyo {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 60px;
  padding-top: 10px;
  margin: 5px 0px 0px 0px;
  color: #f4f4f4;
}

.koyo-f {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 40px;
  padding-top: 10px;
  margin: 5px 0px 0px 0px;
  color: #f4f4f4;
}

.info {
  text-align: center;
  width: 100%;
  color: gray;
}

.logo {
  position: absolute !important;
  left: 0px !important;
  top: 0px;
  margin: 10px !important;
  padding: 5px !important;
  font-size: 40px !important;
}

.logo-a {
  text-decoration: none;
}

.popout {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 80px;
  margin-top: 115px;
  padding-top: 80px;
  margin-bottom: 0px;
}
@keyframes ani {
  0% {
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 lightblue;
    color: white;
  }
  30% {
    transform: translate3d(0, 0, 0);
    text-shadow: 0em 0em 0 lightblue;
    color: white;
  }
  70% {
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em lightblue;
    color: white;
  }
  100% {
    transform: translate3d(0.08em, -0.08em, 0);
    text-shadow: -0.08em 0.08em lightblue;
    color: white;
  }
}
.popout span {
  position: relative;
  display: inline-block;
  animation: ani 1s infinite alternate cubic-bezier(0.86, 0, 0.07, 1);
}
.popout span:nth-last-child(1n) {
  animation-delay: -0.1666666667s;
}
.popout span:nth-last-child(2n) {
  animation-delay: -0.3333333333s;
}
.popout span:nth-last-child(3n) {
  animation-delay: -0.5s;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-size: cover;
}

.neon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

div#fashion {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: Moderne Sans, sans-serif;
  text-align: center;
  font-size: 2rem;
  width: 100%;
  letter-spacing: 0.5rem;
}

nav a {
  text-decoration: none;
  color: inherit;
  padding: 1rem;
}

.animate {
  font-size: 50px;
  margin-top: 10px;
}

.animate span {
  display: inline-block;
}

.animate span:nth-of-type(2) {
  animation-delay: 0.05s;
}

.animate span:nth-of-type(3) {
  animation-delay: 0.1s;
}

.animate span:nth-of-type(4) {
  animation-delay: 0.15s;
}

.animate span:nth-of-type(5) {
  animation-delay: 0.2s;
}

.animate span:nth-of-type(6) {
  animation-delay: 0.25s;
}

.animate span:nth-of-type(7) {
  animation-delay: 0.3s;
}

.animate span:nth-of-type(8) {
  animation-delay: 0.35s;
}

.animate span:nth-of-type(9) {
  animation-delay: 0.4s;
}

.animate span:nth-of-type(10) {
  animation-delay: 0.45s;
}

.animate span:nth-of-type(11) {
  animation-delay: 0.5s;
}

.animate span:nth-of-type(12) {
  animation-delay: 0.55s;
}

.animate span:nth-of-type(13) {
  animation-delay: 0.6s;
}

.animate span:nth-of-type(14) {
  animation-delay: 0.65s;
}

.animate span:nth-of-type(15) {
  animation-delay: 0.7s;
}

.animate span:nth-of-type(16) {
  animation-delay: 0.75s;
}

.animate span:nth-of-type(17) {
  animation-delay: 0.8s;
}

.animate span:nth-of-type(18) {
  animation-delay: 0.85s;
}

.animate span:nth-of-type(19) {
  animation-delay: 0.9s;
}

.animate span:nth-of-type(20) {
  animation-delay: 0.95s;
}

.c {
  margin-top: 0px;
  color: #ffbf35;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.r {
  margin-top: 0px;
  color: rgb(0, 12, 231);
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.e {
  margin-top: 0px;
  color: #e94848;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.a {
  margin-top: 0px;
  color: #46f44c;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.t {
  margin-top: 0px;
  color: rgb(41, 236, 190);
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.i {
  margin-top: 0px;
  color: #e8f40f;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.v {
  margin-top: 0px;
  color: rgb(1, 241, 49);
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.ve {
  margin-top: 0px;
  color: #ffae06;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

.pls {
  margin-top: 0px;
  color: #f30f0f;
  opacity: 1;
  transform: translate(0, -100px) rotate(360deg) scale(0);
  animation: revolveDrop 0.3s forwards;
  font-weight: bold;
}

@keyframes revolveDrop {
  30% {
    transform: translate(0, -50px) rotate(180deg) scale(1);
  }
  60% {
    transform: translate(0, 20px) scale(0.8) rotate(0deg);
  }
  100% {
    transform: translate(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}
.header-wrapper {
  text-align: center;
}

body {
  text-align: center;
  margin: 15px 0px 0px 0px;
  padding: 0px;
}

* {
  box-sizing: border-box;
}

.image-wrapper {
  text-align: center;
}

.image-wrapper img {
  width: 80%;
  max-width: 1100px;
  margin-left: 10%;
  margin-right: 10%;
}

.menu {
  display: inline-block;
  list-style: none;
  padding-left: 0px;
  width: 30%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.header ul li {
  float: left;
  width: 50%;
}

.contact {
  width: 30%;
  display: inline-block;
  list-style: none;
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.header h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-right: 0px;
  display: inline-block;
  width: 30%;
  font-family: "Rubik Gemstones", cursive;
}

.contents-wrapper {
  text-align: center;
  background-color: white;
}

.sealing-wrapper {
  display: inline-block;
  width: 100%;
  max-width: 1500px;
}

.sealing-img {
  width: 50%;
  text-align: right;
}

.dpass-img {
  max-width: 50%;
}

.dpass-img img {
  width: 25%;
}

.design-img {
  max-width: 33%;
}

.design-img img {
  max-width: 80%;
}

.elec {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
}

.sealing {
  width: 100%;
  display: flex;
  margin-bottom: 50px;
}

.sealingone {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  text-align: center;
}

.partners {
  margin: 0px 0px 40px 0px !important;
}

.partner {
  display: inline-block;
  width: 33%;
  text-align: center;
  margin: 0px;
  border: solid 1px black;
  margin-left: 1% !important;
}

.partner-w {
  max-width: 70% !important;
  text-align: center !important;
}

.typetext {
  width: 100%;
  display: flex;
  text-align: center;
  margin-top: 2%;
  color: #8b4513;
}

.TextTyping {
  display: inline-block;
  width: 100%;
  margin: 0px;
}

.TextTyping span {
  display: none;
  color: black !important;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.painting-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  margin-top: 200px;
  background-color: #222;
}

.painting-title {
  margin-top: 150px;
  text-align: center;
}

.painting-title h2 {
  width: 150px;
  display: inline-block;
  border-radius: 30px;
  border: dotted 4px #dbdbdb;
  padding-top: 5px;
  padding-bottom: 5px;
}

.painting {
  width: 30%;
  margin-left: 2%;
  margin-right: 2%;
  text-align: center;
}

.painting img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
}

.contents-wrapper p {
  color: #c0c0c0;
}

.sentence p {
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 0px;
}

.sentence {
  width: 50%;
  text-align: center;
}

.sentence-bousai {
  max-width: 40%;
  text-align: center;
}

.block {
  width: 310px;
  margin-left: 10%;
  margin-top: 8%;
}

.block-bousai {
  max-width: 400px;
  min-width: 250px;
  margin-top: 8%;
  display: inline-block;
  margin: 0px;
  text-align: left;
}

.painting p {
  height: 80px;
  line-height: 30px;
  display: inline-block;
  width: 300px;
}

.button a {
  padding: 13px;
  color: black;
  border: solid black;
  cursor: pointer;
  text-decoration: none;
}

.button a:hover {
  box-shadow: 2px 2px 4px gray;
}

.button a:active {
  box-shadow: none;
}

.button {
  margin-top: 30px;
}

.btm {
  margin-top: 15px;
  margin-bottom: 30px;
}

.painting-right {
  width: 20%;
  text-align: left;
}

.painting-right img {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 300px;
}

.painting-right-l {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 20px;
  padding-top: 10px;
  margin: 5px 0px 0px 0px;
  color: #f4f4f4;
}

.painting-right-m {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 5px;
  color: #f4f4f4;
  margin: 0px !important;
}

.painting-left {
  width: 60%;
  margin-left: 10%;
  text-align: center;
}

.paintcenter {
  display: flex;
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.paintcenter img {
  margin: 0px;
}

.modal {
  display: none;
}

.modalmenu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: black;
  opacity: 0.8;
  margin: 0px;
  padding: 0px;
  text-align: center;
  vertical-align: center;
}

.modalmenu ul {
  list-style: none;
  margin-top: 30%;
  padding-left: 0px;
}

.modalmenu ul li {
  margin-bottom: 15px;
  font-size: 18px;
}

.modalmenu a {
  text-decoration: none;
  color: white;
}

.modalmenu img {
  width: 33px;
  height: 33px;
  margin-top: 10px;
}

.fab {
  color: white;
  margin-left: 1%;
}

.header-wrapper a {
  text-decoration: none;
  color: #4682b4;
}

.detail-p {
  color: black !important;
}

@media screen and (max-width: 1000px) {
  .sokuhou-k {
    margin-top: 4% !important;
  }
  .partners-p {
    margin-bottom: 3% !important;
    margin-top: 1% !important;
    font-size: 25px;
  }
  .partner {
    margin-bottom: 5% !important;
  }
  .dpass {
    margin-top: 5% !important;
  }
  .partners {
    margin: 0px !important;
  }
  .display-large {
    display: none;
  }
  .partner {
    width: 100%;
    margin: 1.5%;
  }
  .bousaijigyou {
    margin-top: 25%;
  }
  .designjigyou {
    margin-top: 25% !important;
  }
  .design-img {
    max-width: 100%;
  }
  .design-pic {
    max-width: 40% !important;
  }
  .bousai-detail {
    max-width: 95%;
    padding: 3px !important;
  }
  .detail {
    margin-top: 1%;
    margin-bottom: 0px;
  }
  .sokuhou {
    margin-bottom: 5px !important;
  }
  .ourbousai {
    margin: 0px !important;
  }
  .bousai-detail span {
    font-size: 20px !important;
  }
  .koyo-f {
    font-size: 30px !important;
  }
  .fllow {
    display: none !important;
  }
  .fllow-d {
    display: none !important;
  }
  .direction {
    display: inline-block !important;
  }
  .sealingone {
    flex-direction: column;
    text-align: center;
  }
  .sealing {
    flex-direction: column;
  }
  .sealing-img {
    width: 100%;
    text-align: center;
  }
  .dpass-img {
    max-width: 100%;
  }
  .sentence {
    text-align: center;
    width: 100%;
  }
  .sentence-bousai {
    text-align: center;
    max-width: 100%;
  }
  .block {
    display: inline-block;
    margin: 0px;
  }
  .block-bousai {
    margin: 0px;
    text-align: left;
  }
  .detail-p {
    display: inline-block;
    color: black !important;
  }
  .block-bousai p {
    display: inline-block;
  }
  .paintcenter {
    flex-direction: column;
    text-align: center;
  }
  .paintcenter p {
    display: block;
    text-align: center;
    width: 100%;
  }
  .painting-left {
    display: inline-block;
    width: 100%;
    margin: 0px 0px;
  }
  .painting {
    display: inline-block;
    width: 100%;
    margin: 0px 0px;
  }
  .painting-right {
    display: inline-block;
    width: 100%;
    margin: 0px 0px;
  }
  .button {
    margin-top: 25px;
    margin-bottom: 50px;
  }
  .painting-title {
    margin-top: 100px;
  }
  .art {
    width: 200px;
  }
  .art a {
    width: 200px;
  }
  .arts {
    width: 100%;
  }
  .art img {
    height: 200px;
    width: 200px;
  }
  .pricecard {
    bottom: 71px;
    padding: 5px 20px;
  }
  .middle-dis {
    display: inline-block;
  }
}
@media screen and (max-width: 670px) {
  .kaisya {
    font-size: 30px !important;
    margin-top: 50% !important;
    margin-bottom: 30% !important;
  }
  .design-j {
    text-align: left;
    max-width: 90%;
    display: inline-block;
    margin: 2% 0 6% 0;
  }
  .design-pic {
    max-width: 45% !important;
  }
  .detail-p {
    font-size: 15px;
    color: black !important;
  }
  .logo {
    font-size: 25px !important;
  }
  .bousai-detail {
    line-height: 2rem;
  }
  .mini-dis {
    display: inline-block;
  }
  .bousai-detail p {
    font-size: 12px;
  }
  .sealing-img img {
    width: 80%;
    height: 80%;
    margin: 0px 10%;
    max-width: 200px;
    max-height: 200px;
  }
  .block {
    width: 100%;
    max-width: 250px;
  }
  .block p {
    font-size: 14px;
  }
  .painting-left img {
    width: 80%;
    height: 80%;
    margin: 0px 10%;
    max-width: 200px;
    max-height: 200px;
  }
  .painting-right img {
    width: 80%;
    height: 80%;
    margin: 0px 10%;
    max-width: 200px;
    max-height: 200px;
  }
  .painting img {
    width: 80%;
    height: 80%;
    margin: 0px 10%;
    max-width: 200px;
    max-height: 200px;
  }
  .paintcenter p {
    height: auto;
    font-size: 14px;
  }
  .menu {
    display: none;
  }
  .contact {
    display: none;
  }
  .image-wrapper img {
    width: 90%;
    margin: 0 5%;
  }
  .painting-title {
    margin-top: 30px;
  }
  .painting-title h2 {
    font-size: 20px;
    width: 140px;
    margin-bottom: 70px;
  }
  .rightimg img {
    max-width: 100px;
  }
  .leftimg img {
    max-width: 100px;
  }
  .plus img {
    max-width: 25px;
    max-height: 25px;
    top: 40px;
  }
  .course {
    max-width: 350px;
  }
  .halftab {
    border-top: none;
  }
  .button {
    margin-top: 20px;
  }
  .button a {
    font-size: 14px;
    padding: 13px;
  }
  .header {
    display: flex;
    margin-bottom: 18px;
    width: 90%;
    margin: 0 5%;
  }
  .header-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal {
    display: block;
    width: 50%;
    text-align: right;
  }
  .modal img {
    width: 34px;
    height: 34px;
  }
  .halftab p {
    font-size: 13px;
  }
}
/*========= レイアウトのためのCSS ===============*/
p {
  margin: 20px;
  font-size: 20px;
  overflow: hidden; /*左右アニメーションで画面からはみ出る際に出る横スクロールバーを隠す*/
}

/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
  color: black;
  font-weight: bold;
  font-size: 35px;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 15px;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
} /*# sourceMappingURL=style.css.map */
