@charset "UTF-8";

/*===共通部分===*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* :target {
  scroll-margin-top: 6vh;
} */

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

*,
*::backdrop *::after {
  box-sizing: border-box;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}

.hide-contents {
  display: none;
}

.show-contents .hide-contents {
  display: block;
}

/*===ローディング画面===*/

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;

  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.loading.active {
  opacity: 1;
  visibility: visible;
}

.loading span {
  position: absolute;
  border: 3px solid #e6007c;
  width: 250px;
  height: 250px;
  object-fit: cover;

  animation: animate 5s linear infinite;
  border-radius: 59% 41% 49% 51% / 27% 53% 47% 73%;
}

.loading span:nth-child(2) {
  border-color: #201919;
  animation-direction: reverse;
  border-radius: 64% 36% 49% 51% / 80% 68% 32% 20%;
}

.loading span:nth-child(3) {
  border-color: #fecd51;
  animation-direction: reverse;
  border-radius: 20% 80% 19% 81% / 69% 33% 67% 31%;
}

@keyframes animate {
  0% {
    transform: translate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loadingText {
  color: #201919;
  font-size: 1.3rem;
  /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
  font-weight: 700;

  animation: 1s flashing infinite;
}

@keyframes flashing {
  50% {
    opacity: 0.3;
  }
}

/*===ロゴアニメーション===*/

.image_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: 1s;
  z-index: 50;
}

.image_box.show_logoAnimation {
  opacity: 1;
  visibility: visible;
}

.image_box img {
  width: 300px;
  height: 300px;
  /* background-color: tomato; */
}

/*===オープニングシャッター===*/

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 40;

  opacity: 1;
  visibility: visible;
}

.shutter {
  animation: byeShutter 3s forwards;
  animation-timing-function: ease;
  animation-delay: 2s;
}

.hidden_shutter {
  opacity: 0;
  visibility: hidden;
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

.shutter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 2.6s cubic-bezier(0.22, 1, 0.36, 1);
  bottom: 0;
  margin: auto;
  background-color: #1e1e1e;
  width: 0;
  height: 1px;
}

.shutter::before {
  animation: shutterOpen 2s forwards;
  animation-timing-function: ease;
  animation-delay: 2s;
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

/*===ハンバーガーアイコン===*/
/*----ナビゲーション---*/
nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: #312323;
  animation: 0.25s ease-in nav-open;
}
.open nav {
  display: block;
  opacity: 1;
}

.txt-pop-box {
  width: 100%;
  height: 250px;
  margin-top: 100px;
}
.case-1 {
  display: block;
}
.pop-hide {
  display: none;
}
.case-2 {
  display: none;
}
.case-3 {
  display: none;
}
.case-4 {
  display: none;
}
.case-5 {
  display: none;
}
.pop-up {
  display: block;
}
.industry-txt {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  text-align: center;
  font-size: 3rem;
  white-space: nowrap;
  animation: 0.5s ease-in industry-ani;
}

@keyframes industry-ani {
  0% {
    opacity: 0;
    letter-spacing: 0.2em;
  }
  100% {
    opacity: 1;
  }
}

.company-txt {
  font-family: "Libre Baskerville", serif;
  color: #cc9a77;
  text-align: center;
  font-size: 5rem;
  white-space: nowrap;
  letter-spacing: 0.15em;
  animation: 0.5s ease-in company-ani;
}

@keyframes company-ani {
  0% {
    opacity: 0;
    scale: 1.2;
    letter-spacing: 0em;
  }
  50% {
    scale: 1;
    letter-spacing: 0em;
  }
  100% {
    opacity: 1;
    letter-spacing: 0.15em;
  }
}
.link-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.link-flex:hover {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #a85748;
}

.left-txt-1 {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  margin-left: 4px;
  font-size: 0.9rem;
}
.left-txt-2 {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  margin-left: 94px;
  font-size: 0.9rem;
}
.left-txt-3 {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  margin-left: 42px;
  font-size: 0.9rem;
}
.left-txt-4 {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  font-size: 0.9rem;
}
.right-txt {
  font-family: "Libre Baskerville", serif;
  color: #cc9a77;
  margin-left: 40px;
  font-size: 0.9rem;
}
/*キーフレームアニメーション*/
@keyframes nav-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----ナビゲーションEND---*/

.toggle-btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}
.show .toggle-btn {
  opacity: 1;
}

.toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #707070;
  transition: all 0.5s;
  border-radius: 4px;
}

.toggle-btn span:nth-child(1) {
  top: 4px;
}
.toggle-btn span:nth-child(2) {
  top: 14px;
}
.toggle-btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle-btn span {
  background-color: #d93838;
}
.open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-30deg);
}
.open .toggle-btn span:nth-child(2) {
  transform: translateY(-7px);
}
.open .toggle-btn span:nth-child(3) {
  transform: translateY(-4px);
}

#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 2;
  opacity: 0.8;
  cursor: pointer;
}

/*メインエリアSTART---------------------------*/
.top-wrap {
  opacity: 0;
  width: 100%;
  height: 900px;
  position: relative;
}
.show .top-wrap {
  opacity: 1;
}
.ouka-mainbase {
  position: absolute;
  width: 320px;
  height: 206px;
  right: 0px;
  left: 0px;
  top: 190px;
  margin: 0 auto;
  /* background-color: #e6007c; */
}

.ouka-top-logo {
  position: absolute;
  width: 180px;
  z-index: 1;
  top: 15px;
  left: 70px;
}

.ouka-top {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.8;
}

.gaikou-1 {
  position: absolute;
  width: 120px;
  left: 0;
  top: -162px;
  opacity: 0.8;
}

.andar-in {
  position: absolute;
  width: 194px;
  right: 0px;
  top: -131px;
  opacity: 0.8;
}

.nei-in {
  position: absolute;
  top: 0px;
  width: 200px;
  right: -207px;
  opacity: 0.8;
}

.andar-out {
  position: absolute;
  width: 140px;
  right: -147px;
  bottom: -112px;
  opacity: 0.8;
}

.ushibeya-sobauchi {
  position: absolute;
  width: 170px;
  right: 0px;
  bottom: -237px;
  opacity: 0.8;
}

.ushibeya-soba {
  position: absolute;
  width: 210px;
  bottom: -142px;
  left: -68px;
  opacity: 0.8;
}

.gaikou-2 {
  position: absolute;
  width: 120px;
  top: 0px;
  left: -127px;
  opacity: 0.8;
}

.soils-image {
  position: absolute;
  width: 190px;
  bottom: 0px;
  left: -197px;
  opacity: 0.8;
}

.top-text {
  font-family: "Libre Baskerville", serif;
  /* font-family: "DM Serif Text", serif; */
  font-size: 10rem;
  color: #707070;
  white-space: nowrap;
  position: absolute;
  bottom: -450px;
  left: -500px;
}

/* .top-line {
  position: absolute;
  width: 1px;
  height: 150px;
  background-color: #707070;
  bottom: -430px;
  left: 160px;
} */

.top-line {
  position: absolute;
  top: 500px;
  left: 160px;
  border: 1px solid #707070;
  animation-timing-function: linear;
  opacity: 0;
}

.mouse-icon {
  position: absolute;
  width: 50px;
  bottom: -150px;
  left: 135px;
  opacity: 0;
}

/*墨サークル*/
.circle-material {
  position: absolute;
  width: 100%;
  max-width: 900px;
  min-width: 700px;
  z-index: 1;
  right: -250px;
  bottom: -100px;
  opacity: 1;
}

/*リンクリスト*/
.link-list {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 150px;
}
.link-list li a {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  color: #707070;
  white-space: nowrap;
  line-height: 2.5;
  transition: all 1s;
}

.link-list li a:hover {
  color: #a85748;
  font-size: 1.01rem;
}

/*メインエリアEND-----------------------------*/

/*===会社紹介START===*/
/*株式会社桜花コーナー*/
.ouka-box {
  width: 100%;
  height: 1000px;
  overflow-x: hidden;
  /* background-color: #ffffff; */
}
.company-logo {
  width: 60%;
}
.company-logo img {
  margin-top: 150px;
  height: 150px;
}
.since-text {
  font-family: "Libre Baskerville", serif;
  color: #707070;
  font-size: 3rem;
  white-space: nowrap;
}
.industry-desc {
  font-family: "Libre Baskerville", serif;
  color: #707070;
  font-size: 3rem;
  white-space: nowrap;
}
.text-box {
  width: 350px;
  height: 300px;
  /* background-color: #a89486; */
  margin: 50px 50px 10px 50px;
}
.text-box p {
  font-family: "Libre Baskerville", serif;
  color: #707070;
  font-size: 1rem;
}
.wrapper-wall {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
}
.sns-flex {
  display: flex;
}

.sns-logo {
  width: 40px;
  margin-left: 20px;
  transition: all 1s;
}
.sns-logo:hover {
  scale: 1.1;
}
.page-link {
  font-family: "Libre Baskerville", serif;
  color: #707070;
  font-size: 1rem;
  white-space: nowrap;
  margin-top: 10px;
  margin-left: 20px;
}
.page-link a {
  color: #707070;
  transition: all 1s;
}
.page-link a:hover {
  color: #d93838;
  font-size: 1.01rem;
}

/*各社イメージ画像*/
.ouka-pic {
  position: absolute;
  top: 500px;
  right: 11%;

  width: 450px;
  height: 300px;
  /* background-color: #fecd51; */
}
.o-pic {
  width: 100%;
  object-fit: cover;
}

/*桜花アニメーションライン*/
.ouka-lines01 {
  position: absolute;
  top: 0px;
  right: 30%;
  height: 450px;
  border-right: 1px solid #e4007f;
}
.ouka-lines02 {
  position: absolute;
  top: 450px;
  left: 69.9%;
  width: 20%;
  border-top: 1px solid #e4007f;
}
.ouka-lines03 {
  position: absolute;
  top: 450px;
  right: 10.1%;
  height: 400px;
  border-right: 1px solid #e4007f;
}
.ouka-lines04 {
  position: absolute;
  top: 850px;
  right: 10.1%;
  width: 20%;
  border-bottom: 1px solid #e4007f;
}
.ouka-lines05 {
  position: absolute;
  top: 850px;
  right: 30%;
  height: 150px;
  border-right: 1px solid #e4007f;
}

/*---ウシベヤコーナー---*/
.ushibeya-box {
  width: 100%;
  height: 1000px;
  /* background-color: #ffffff; */
}
.ushibeya-pic {
  position: absolute;
  top: 500px;
  right: 11%;
  width: 450px;
  height: 300px;
  /* background-color: #fecd51; */
}
.u-pic {
  width: 100%;
  object-fit: cover;
}
/*ウシベヤアニメーションライン*/
.ushibeya-lines01 {
  position: absolute;
  top: 0px;
  right: 30%;
  height: 450px;
  border-right: 1px solid #bb4430;
}
.ushibeya-lines02 {
  position: absolute;
  top: 450px;
  left: 69.9%;
  width: 20%;
  border-top: 1px solid #bb4430;
}
.ushibeya-lines03 {
  position: absolute;
  top: 450px;
  right: 10.1%;
  height: 400px;
  border-right: 1px solid #bb4430;
}
.ushibeya-lines04 {
  position: absolute;
  top: 850px;
  right: 10.1%;
  width: 20%;
  border-bottom: 1px solid #bb4430;
}
.ushibeya-lines05 {
  position: absolute;
  top: 850px;
  right: 30%;
  height: 150px;
  border-right: 1px solid #bb4430;
}

/*---アンダールコーナー---*/
.andar-box {
  width: 100%;
  height: 1000px;
  /* background-color: #ffffff; */
}
.andar-pic {
  position: absolute;
  top: 500px;
  right: 11%;
  width: 450px;
  height: 300px;
  /* background-color: #fecd51; */
}
.a-pic {
  width: 100%;
  object-fit: cover;
}
/*アンダールニメーションライン*/
.andar-lines01 {
  position: absolute;
  top: 0px;
  right: 30%;
  height: 450px;
  border-right: 1px solid #a28a77;
}
.andar-lines02 {
  position: absolute;
  top: 450px;
  left: 69.9%;
  width: 20%;
  border-top: 1px solid #a28a77;
}
.andar-lines03 {
  position: absolute;
  top: 450px;
  right: 10.1%;
  height: 400px;
  border-right: 1px solid #a28a77;
}
.andar-lines04 {
  position: absolute;
  top: 850px;
  right: 10.1%;
  width: 20%;
  border-bottom: 1px solid #a28a77;
}
.andar-lines05 {
  position: absolute;
  top: 850px;
  right: 30%;
  height: 150px;
  border-right: 1px solid #a28a77;
}

/*---ソイルスコーナー---*/
.soils-box {
  width: 100%;
  height: 1000px;
  /* background-color: #ffffff; */
}
.soils-pic {
  position: absolute;
  top: 500px;
  right: 11%;
  width: 450px;
  height: 300px;
  /* background-color: #fecd51; */
}
.s-pic {
  width: 100%;
  object-fit: cover;
}
/*ソイルスニメーションライン*/
.soils-lines01 {
  position: absolute;
  top: 0px;
  right: 30%;
  height: 450px;
  border-right: 1px solid #c4dacf;
}
.soils-lines02 {
  position: absolute;
  top: 450px;
  left: 69.9%;
  width: 20%;
  border-top: 1px solid #c4dacf;
}
.soils-lines03 {
  position: absolute;
  top: 450px;
  right: 10.1%;
  height: 400px;
  border-right: 1px solid #c4dacf;
}
.soils-lines04 {
  position: absolute;
  top: 850px;
  right: 10.1%;
  width: 20%;
  border-bottom: 1px solid #c4dacf;
}
.soils-lines05 {
  position: absolute;
  top: 850px;
  right: 30%;
  height: 150px;
  border-right: 1px solid #c4dacf;
}

/*===会社紹介END===*/
/*フッター*/
footer {
  width: 100%;
  height: 550px;
  background-color: #312323;
}

.foot-text {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  font-size: 0.9rem;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.foot-text a {
  color: #a89486;
  transition: all 0.5s;
}
.foot-text a:hover {
  color: #a85748;
}
.foot-text02 {
  font-family: "Libre Baskerville", serif;
  color: #a89486;
  font-size: 0.9rem;
  text-align: center;
}

/*=====レスポンシブデザイン=====*/
@media (max-width: 1010px) {
  .ouka-pic {
    top: 525px;
    right: 11%;
    width: 350px;
    height: 200px;
  }

  .ushibeya-pic {
    top: 525px;
    right: 11%;
    width: 350px;
    height: 250px;
  }

  .andar-pic {
    top: 525px;
    right: 11%;
    width: 350px;
    height: 250px;
  }

  .soils-pic {
    top: 525px;
    right: 11%;
    width: 350px;
    height: 250px;
  }
}

@media (max-width: 900px) {
  .link-list {
    right: 13%;
    bottom: 140px;
  }

  .text-box {
    margin: 50px 50px 10px 10px;
  }

  /*桜花写真*/
  .ouka-pic {
    top: 525px;
    right: 6%;
    width: 350px;
    height: 200px;
  }
  /*桜花アニメーションライン*/
  .ouka-lines01 {
    right: 20%;
  }
  .ouka-lines02 {
    left: 79.85%;
    width: 15%;
  }
  .ouka-lines03 {
    right: 5.1%;
    height: 400px;
  }
  .ouka-lines04 {
    right: 5.1%;
    width: 15%;
  }
  .ouka-lines05 {
    right: 20%;
    height: 150px;
  }

  /*ウシベヤ写真*/
  .ushibeya-pic {
    top: 525px;
    right: 6%;
    width: 350px;
    height: 200px;
  }
  /*ウシベヤアニメーションライン*/
  .ushibeya-lines01 {
    right: 20%;
  }
  .ushibeya-lines02 {
    left: 79.85%;
    width: 15%;
  }
  .ushibeya-lines03 {
    right: 5.1%;
    height: 400px;
  }
  .ushibeya-lines04 {
    right: 5.1%;
    width: 15%;
  }
  .ushibeya-lines05 {
    right: 20%;
    height: 150px;
  }

  /*アンダール写真*/
  .andar-pic {
    top: 525px;
    right: 6%;
    width: 350px;
    height: 200px;
  }
  /*アンダールアニメーションライン*/
  .andar-lines01 {
    right: 20%;
  }
  .andar-lines02 {
    left: 79.85%;
    width: 15%;
  }
  .andar-lines03 {
    right: 5.1%;
    height: 400px;
  }
  .andar-lines04 {
    right: 5.1%;
    width: 15%;
  }
  .andar-lines05 {
    right: 20%;
    height: 150px;
  }

  /*ソイルス写真*/
  .soils-pic {
    top: 525px;
    right: 6%;
    width: 350px;
    height: 200px;
  }
  /*ソイルスアニメーションライン*/
  .soils-lines01 {
    right: 20%;
  }
  .soils-lines02 {
    left: 79.85%;
    width: 15%;
  }
  .soils-lines03 {
    right: 5.1%;
    height: 400px;
  }
  .soils-lines04 {
    right: 5.1%;
    width: 15%;
  }
  .soils-lines05 {
    right: 20%;
    height: 150px;
  }
}

@media (max-width: 800px) {
  .link-list {
    right: 9%;
    bottom: 110px;
  }

  .company-logo {
    width: 60%;
  }
  .company-logo img {
    margin-top: 150px;
    height: 100px;
  }
  .since-text {
    font-size: 2.5rem;
  }
  .industry-desc {
    font-size: 2.5rem;
  }

  .text-box {
    width: 350px;
    height: 160px;
    /* background-color: #a89486; */
    margin: 300px 10px 30px 40px;
  }
  .text-box p {
    font-size: 0.9rem;
  }
  .sns-flex {
    margin-left: 10px;
  }
  .page-link {
    margin-left: 30px;
  }

  /*桜花写真*/
  .ouka-pic {
    top: 420px;
    right: 11%;
    width: 350px;
    height: 200px;
  }
  /*桜花アニメーションライン*/
  .ouka-lines01 {
    height: 380px;
    right: 20%;
  }
  .ouka-lines02 {
    top: 380px;
    left: 79.85%;
    width: 15%;
  }
  .ouka-lines03 {
    top: 380px;
    right: 5.1%;
    height: 320px;
  }
  .ouka-lines04 {
    top: 700px;
    right: 5.1%;
    width: 15%;
  }
  .ouka-lines05 {
    top: 700px;
    right: 20%;
    height: 300px;
  }

  /*ウシベヤ写真*/
  .ushibeya-pic {
    top: 420px;
    right: 11%;
    width: 350px;
    height: 200px;
  }
  /*ウシベヤアニメーションライン*/
  .ushibeya-lines01 {
    height: 380px;
    right: 20%;
  }
  .ushibeya-lines02 {
    top: 380px;
    left: 79.85%;
    width: 15%;
  }
  .ushibeya-lines03 {
    top: 380px;
    right: 5.1%;
    height: 320px;
  }
  .ushibeya-lines04 {
    top: 700px;
    right: 5.1%;
    width: 15%;
  }
  .ushibeya-lines05 {
    top: 700px;
    right: 20%;
    height: 300px;
  }

  /*アンダール写真*/
  .andar-pic {
    top: 420px;
    right: 11%;
    width: 350px;
    height: 200px;
  }
  /*アンダールアニメーションライン*/
  .andar-lines01 {
    height: 380px;
    right: 20%;
  }
  .andar-lines02 {
    top: 380px;
    left: 79.85%;
    width: 15%;
  }
  .andar-lines03 {
    top: 380px;
    right: 5.1%;
    height: 320px;
  }
  .andar-lines04 {
    top: 700px;
    right: 5.1%;
    width: 15%;
  }
  .andar-lines05 {
    top: 700px;
    right: 20%;
    height: 300px;
  }

  /*ソイルス写真*/
  .soils-pic {
    top: 420px;
    right: 11%;
    width: 350px;
    height: 200px;
  }
  /*ソイルスアニメーションライン*/
  .soils-lines01 {
    height: 380px;
    right: 20%;
  }
  .soils-lines02 {
    top: 380px;
    left: 79.85%;
    width: 15%;
  }
  .soils-lines03 {
    top: 380px;
    right: 5.1%;
    height: 320px;
  }
  .soils-lines04 {
    top: 700px;
    right: 5.1%;
    width: 15%;
  }
  .soils-lines05 {
    top: 700px;
    right: 20%;
    height: 300px;
  }
}

@media (max-width: 700px) {
  .link-list {
    right: 6%;
    bottom: 80px;
  }
  .since-text {
    font-size: 2rem;
  }
  .industry-desc {
    font-size: 2rem;
  }
  .text-box {
    width: 350px;
    height: 160px;
    /* background-color: #a89486; */
    margin: 330px 10px 30px 40px;
  }
}

@media (max-width: 600px) {
  .industry-txt {
    font-size: 2.2rem;
  }

  .company-txt {
    font-size: 3.5rem;
    letter-spacing: 0.15em;
  }

  .txt-pop-box {
    width: 100%;
    height: 200px;
    margin-top: 150px;
  }
}

@media (max-width: 500px) {
  .industry-txt {
    font-size: 2rem;
  }

  .company-txt {
    font-size: 3rem;
    letter-spacing: 0.15em;
  }

  /*墨サークル*/
  .circle-material {
    position: absolute;
    width: 100%;
    max-width: 850px;
    min-width: 650px;
    z-index: 1;
    right: -250px;
    bottom: -100px;
    opacity: 1;
  }

  .link-list {
    right: 5%;
    bottom: 60px;
  }
  .link-list li a {
    font-size: 0.9rem;
  }

  .since-text {
    font-size: 1.5rem;
  }
  .industry-desc {
    font-size: 1.5rem;
  }
  .text-box {
    width: 300px;
    height: 160px;
    /* background-color: #a89486; */
    margin: 330px 10px 10px 20px;
  }
  .text-box p {
    font-size: 0.8rem;
  }

  /*桜花写真*/
  .ouka-pic {
    top: 390px;
    right: 5%;
    width: 350px;
    height: 200px;
  }
  /*桜花アニメーションライン*/
  .ouka-lines01 {
    height: 350px;
    right: 15%;
  }
  .ouka-lines02 {
    top: 350px;
    left: 84.7%;
    width: 12%;
  }
  .ouka-lines03 {
    top: 350px;
    right: 3.1%;
    height: 320px;
  }
  .ouka-lines04 {
    top: 670px;
    right: 3.1%;
    width: 12%;
  }
  .ouka-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*ウシベヤ写真*/
  .ushibeya-pic {
    top: 390px;
    right: 5%;
    width: 350px;
    height: 200px;
  }
  /*ウシベヤアニメーションライン*/
  .ushibeya-lines01 {
    height: 350px;
    right: 15%;
  }
  .ushibeya-lines02 {
    top: 350px;
    left: 84.7%;
    width: 12%;
  }
  .ushibeya-lines03 {
    top: 350px;
    right: 3.1%;
    height: 320px;
  }
  .ushibeya-lines04 {
    top: 670px;
    right: 3.1%;
    width: 12%;
  }
  .ushibeya-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*アンダール写真*/
  .andar-pic {
    top: 390px;
    right: 5%;
    width: 350px;
    height: 200px;
  }
  /*アンダールアニメーションライン*/
  .andar-lines01 {
    height: 350px;
    right: 15%;
  }
  .andar-lines02 {
    top: 350px;
    left: 84.7%;
    width: 12%;
  }
  .andar-lines03 {
    top: 350px;
    right: 3.1%;
    height: 320px;
  }
  .andar-lines04 {
    top: 670px;
    right: 3.1%;
    width: 12%;
  }
  .andar-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*ソイルス写真*/
  .soils-pic {
    top: 390px;
    right: 5%;
    width: 350px;
    height: 200px;
  }
  /*ソイルスアニメーションライン*/
  .soils-lines01 {
    height: 350px;
    right: 15%;
  }
  .soils-lines02 {
    top: 350px;
    left: 84.7%;
    width: 12%;
  }
  .soils-lines03 {
    top: 350px;
    right: 3.1%;
    height: 320px;
  }
  .soils-lines04 {
    top: 670px;
    right: 3.1%;
    width: 12%;
  }
  .soils-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }
}

@media (max-width: 400px) {
  .industry-txt {
    font-size: 1.8rem;
  }

  .company-txt {
    font-size: 3rem;
    letter-spacing: 0.15em;
  }

  .txt-pop-box {
    width: 100%;
    height: 180px;
    margin-top: 170px;
  }

  /*墨サークル*/
  .circle-material {
    position: absolute;
    width: 100%;
    max-width: 800px;
    min-width: 600px;
    z-index: 1;
    right: -250px;
    bottom: -100px;
    opacity: 1;
  }

  .link-list {
    right: 2%;
    bottom: 40px;
  }

  .page-link {
    margin-left: 20px;
  }
  .text-box {
    width: 300px;
    height: 160px;
    /* background-color: #a89486; */
    margin: 330px 10px 10px 0px;
  }
  .sns-flex {
    margin-left: 0px;
  }

  /*桜花写真*/
  .ouka-pic {
    top: 390px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 350px;
    height: 200px;
  }
  /*桜花アニメーションライン*/
  .ouka-lines01 {
    height: 350px;
    right: 15%;
  }
  .ouka-lines02 {
    top: 350px;
    left: 84.7%;
    width: 13%;
  }
  .ouka-lines03 {
    top: 350px;
    right: 2.1%;
    height: 320px;
  }
  .ouka-lines04 {
    top: 670px;
    right: 2.1%;
    width: 13%;
  }
  .ouka-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*ウシベヤ写真*/
  .ushibeya-pic {
    top: 390px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 350px;
    height: 200px;
  }
  /*ウシベヤアニメーションライン*/
  .ushibeya-lines01 {
    height: 350px;
    right: 15%;
  }
  .ushibeya-lines02 {
    top: 350px;
    left: 84.7%;
    width: 13%;
  }
  .ushibeya-lines03 {
    top: 350px;
    right: 2.1%;
    height: 320px;
  }
  .ushibeya-lines04 {
    top: 670px;
    right: 2.1%;
    width: 13%;
  }
  .ushibeya-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*アンダール写真*/
  .andar-pic {
    top: 390px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 350px;
    height: 200px;
  }
  /*アンダールアニメーションライン*/
  .andar-lines01 {
    height: 350px;
    right: 15%;
  }
  .andar-lines02 {
    top: 350px;
    left: 84.7%;
    width: 13%;
  }
  .andar-lines03 {
    top: 350px;
    right: 2.1%;
    height: 320px;
  }
  .andar-lines04 {
    top: 670px;
    right: 2.1%;
    width: 13%;
  }
  .andar-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }

  /*ソイルス写真*/
  .soils-pic {
    top: 390px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 350px;
    height: 200px;
  }
  /*ソイルスアニメーションライン*/
  .soils-lines01 {
    height: 350px;
    right: 15%;
  }
  .soils-lines02 {
    top: 350px;
    left: 84.7%;
    width: 13%;
  }
  .soils-lines03 {
    top: 350px;
    right: 2.1%;
    height: 320px;
  }
  .soils-lines04 {
    top: 670px;
    right: 2.1%;
    width: 13%;
  }
  .soils-lines05 {
    top: 670px;
    right: 15%;
    height: 330px;
  }
}
