@charset "utf-8;";

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;   /* 必要なら上限幅を指定。不要ならこの行は消してOK */
  margin: 30px auto 0px;     /* 中央寄せしたい場合 */
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact__box4 {
    border: 1px solid #2b498d;
    padding: 1rem;
    max-width: 320px;
    margin-bottom: 60px;
}

.contact__box4 p {
    color: #666666;
}

span.privacy_box {
    color: #2b498d;
    text-decoration: underline;
    font-weight: bold;
}

.view {
  opacity: 0;
}

.hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

.pc-hidden,
.header__sp-btn,
.header__sp-nav,
.button__fixed {
  display: none;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.svganimeblock {
  width: 248px;
  height: 245px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#loading__item--logo {
  width: 33px;
  animation-name: scaleUp;
  animation-delay: 4s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes scaleUp {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(200);
    transform-origin: 50% 50%;
  }
}

/*アニメーション前のパスの指定*/
#loading__item--logo path {
  fill-opacity: 0;
  transition: fill-opacity 0.5s;
  fill: none;
  stroke: #fff;
}

/*アニメーション後に.doneというクラス名が付与された時のパスの指定*/
#loading__item--logo.done path {
  fill: #fff;
  fill-opacity: 1;
  stroke: none;
}

.loading__item {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}

.loading__item img:first-child {
  width: 64px;
  position: absolute;
  left: 32px;
  bottom: 28px;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.loading__item img:nth-child(2) {
  width: 11px;
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 1.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.loading__item img:nth-child(3) {
  width: 66px;
  position: absolute;
  right: 32px;
  bottom: 28px;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 2s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.loading__item img:nth-child(4) {
  width: 248px;
  position: absolute;
  bottom: 33px;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 2.5s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.loading__item--last {
  width: 108px;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 3s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ここまでローディング＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* header top */

.header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__top--container {
  height: 70px;
  margin: 0 auto;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__left--box {
  width: 100%;
  height: 100%;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.header__left--box img {
  width: 55px;
}

.header__left--inner {
  width: 100%;
  text-align: center;
}

.header__left--inner h2 {
  font-size: 12px;
  color: #2b498d;
  line-height: 2;
}

.header__left--inner h1 {
  width: 100%;
  height: 18px;
  margin: 0;
}

.header__left--inner h1 img {
  width: 100%;
  margin: 0;
}

.header__right--container {
  text-align: right;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.header__right--phone {
  width: 190px;
  padding-top: 5px;
}

.header__right--phone p {
  padding-right: 10px;
  font-size: 12px;
  color: #2b498d;
  line-height: 1.25;
}

.header__right--box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header__right--box p {
  font-size: 20px;
  font-weight: 600;
  color: #2b498d;
}

.header__right--box img {
  width: 15px;
}

.header__contact {
  width: 160px;
  height: 60px;
  margin: 0;
  background-color: #2b498d;
  border-radius: 0 0 10px 10px;
  font-size: 15px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header__contact img {
  width: 20px;
}

/* header center（余白） */
.header__center {
  height: 10px;
  background-color: #fff;
}

/* header bottom */
.header__bottom--container {
  height: 70px;
  margin: 0 auto;
  background-color: #d3d1e8;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__pc-nav ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__pc-nav ul li {
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 16px;
  font-weight: 700;
  color: #2b498d;
  line-height: 1.25;
  letter-spacing: 0.15em;
  position: relative;
}

.header__pc-nav ul li span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.78;
}

.header__pc-nav ul li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #2b498d;
  position: absolute;
  bottom: 2px;
  right: 0;
}

/* first view */

#first-view {
  width: 100%;
  height: 860px;
  margin: 150px auto 100px auto;
  background-image: url(../images/first-view__bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.first-view__wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 600px;
}

.fv__swiper {
  height: 225px;
  margin: 0;
  width: 100%;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.fv__swiper-slide img {
  width: 225px;
  height: auto;
  max-width: none;
  object-fit: cover;
}

/* second view */

#second-view {
  width: 100%;
  height: 744px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.second-view__background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -20;
}

.sv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 744px;
  opacity: 0;
  background-size: cover;
  background-position: right;
}

.src1 {
  background-image: url("../images/sv-anime1.jpg");
  transition: all 1s;
  transition-delay: 0.5s;
  z-index: -10;
}

.src2 {
  background-image: url("../images/sv-anime2.jpg");
  transition: all 1s;
  transition-delay: 2s;
  z-index: -9;
}

.src3 {
  background-image: url("../images/sv-anime3.jpg");
  transition: all 1s;
  transition-delay: 3.5s;
  z-index: -8;
}

.second-view__item {
  width: 65%;
  padding: 140px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  transition: all 1.5s;
  transition-delay: 0.4s;
}

.second-view__item p {
  color: #111;
  white-space: nowrap;
  font-size: 22px;
  line-height: 2.6;
  letter-spacing: 0.18em;
}

.second-view__item img {
  width: 521px;
}

/* concept */

#concept {
  width: 100%;
  height: 800px;
}

.concept__wrapper {
  width: 100%;
  height: 800px;
  margin-top: 190px;
  background: url("../images/concept__slider-bg.jpg") repeat-x 0 0;
  background-size: auto 100%;
  animation: bg-slider 40s linear infinite;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes bg-slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2400px 0;
  }
}

.concept__item {
  width: 90%;
  max-width: 1000px;
  height: 480px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.concept__item h3 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.concept__item p {
  line-height: 2.06;
}

.concept__item .button__blue {
  width: 325px;
}

/* lineup */

#lineup {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-top: 185px;
  text-align: center;
  position: relative;
}

.lineup__background {
  width: 90%;
  height: 500px;
  max-width: 1250px;
  margin: 0 auto;
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/lineup__bg.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  z-index: -20;
  transform: translateX(-50%);
}

/* .lineup__wrapper {
  position: sticky;
  bottom: 0;
  z-index: 50;
} */

.lineup__wrapper h3 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.lineup__container {
  width: 100%;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 80px;
  padding-inline: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.lineup__box {
  width: 360px;
  height: 460px;
  border-radius: 20px;
  padding: 30px 30px 30px 45px;
  box-sizing: border-box;
  background-color: #2b498d;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  position: relative;
  transition: all 1s;
}

.lineup__box:first-child {
  transition-delay: 0.5s;
}

.lineup__box:nth-child(2) {
  transition-delay: 1s;
}

.lineup__box:last-child {
  transition-delay: 1.5s;
}

.lineup__box--heading {
  width: 280px;
  padding: 10px 5px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.lineup__box--heading h4 span {
  font-size: 16px;
  font-weight: 600;
}

.lineup__box--heading::before {
  content: "";
  width: 10px;
  height: 410px;
  background-image: radial-gradient(circle, #d4d4d4 5px, transparent 5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 10px 23px;
  position: absolute;
  top: 0;
  left: -30px;
}

.lineup__box--inner {
  width: 278px;
  text-align: left;
}

.lineup__box--inner p {
  padding-inline: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 2.3;
  letter-spacing: 0.14em;
}

.lineup__box--line {
  width: 278px;
  border-bottom: 1px #d4d4d4 solid;
  position: absolute;
  left: 50px;
}

.line01 {
  top: 205px;
}

.line02 {
  top: 243px;
}

.line03 {
  top: 281px;
}

.line04 {
  top: 319px;
}

.line05 {
  top: 357px;
}

.lineup__button {
  width: 134px;
  height: 35px;
  padding-left: 14px;
  box-sizing: border-box;
  border-right: 15px #d3d1e8 solid;
  background-color: #fff;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #2b498d;
  white-space: nowrap;
  position: absolute;
  bottom: 50px;
  right: -12px;
}

.lineup__button::after {
  content: "";
  margin-left: 0em;
  display: inline-block;
  border-style: solid;
  border-width: 0.5em 0 0.5em 0.865em;
  border-color: transparent transparent transparent #2b498d;
  transform: translateY(0.1em) scale(0.8);
  position: absolute;
  right: 5px;
}

#lineup .button__blue {
  width: 325px;
  margin: 0 auto;
}

/* flow */

.flow {
  margin-top: 290px;
  padding-inline: 20px;
  box-sizing: border-box;
}

.flow h3 {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.flow__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
}

.flow__left--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
  position: relative;
}

.flow__left--box {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #2b498d;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  transition-delay: 0.5s;
}

.flow__left--box p {
  font-size: 29px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}

.flow__left--box p span {
  font-size: 16px;
  font-weight: 400;
}

.flow__left--line {
  content: "";
  width: 0;
  height: 600px;
  border-left: 8px #2b498d solid;
  position: absolute;
  top: 175px;
  left: 50%;
  z-index: -5;
  transform: translateX(-50%);
  animation-name: line;
  transition: all 0.5s;
  transition-delay: 1.5s;
  animation-fill-mode: forwards;
}

.flow__right--container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.flow__right--container h3 {
  padding-top: 80px;
  padding-bottom: 50px;
}

.flow__right--container p {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.15em;
}

/* message */

.message {
  width: 100%;
  margin-top: 240px;
  background-image: url(../images/message__bg.jpg);
  background-size: cover;
  background-position: center;
}

.message__container {
  width: 100%;
  max-width: 1000px;
  height: 690px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.message__container h3 {
  font-size: 48px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.message__container p {
  line-height: 2.25;
}

/* contact in page */

#section__contact {
  margin-top: 240px;
  margin-bottom: 200px;
}

.page-contact__container {
  width: 100%;
  height: 288px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 80px;
}

.page-contact__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.page-contact__box h3 {
  letter-spacing: 0.17em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-contact__box p {
  line-height: 2.25;
}

.button__contact {
  width: 300px;
}

/* footer */

#footer {
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
  background-color: #2b498d;
}

.footer__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 80px;
}

.footer__nav ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__nav ul li {
  padding-left: 2.5em;
  padding-right: 2.5em;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.15em;
  position: relative;
}

.footer__nav ul li span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.78;
}

.footer__nav ul li:not(:last-child)::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #fff;
  position: absolute;
  bottom: 2px;
  right: 0;
}

.footer__line {
  width: 95%;
  height: 0;
  border-bottom: 2px #fff solid;
}

.footer__info--container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer__info--box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.footer__info--box img {
  width: 55px;
}

.footer__info--inner {
  width: 100%;
  text-align: center;
}

.footer__info--inner p {
  font-size: 12px;
  color: #fff;
  line-height: 2;
}

.footer__info--inner img {
  width: 146px;
}

.footer__access {
  font-size: 14px;
  color: #fff;
}

.footer__info--contact {
  width: 100%;
  max-width: 1200px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.footer__info--contact .button__white {
  width: 275px;
  height: 50px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.footer__phone--box {
  text-align: center;
}

.footer__phone--box p {
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
}

/*
.footer__iframe--container {
  height: 0;
  padding-top: 25%;
  position: relative;
  overflow: hidden;
}

.footer__iframe--container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
*/

.footer__iframe--container {
  height: 450px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer__iframe--container iframe {
  position: absolute;
  top: -170px;
  left: 0;
  width: 100% !important;
  height: calc(100% + 170px) !important;
}

.footer__bottom--container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__bottom--container p {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  padding-inline: 10px;
}

.footer__bottom--container p:first-child {
  border-right: 2px #fff solid;
}

.success-msg {
  display: none;
  position: fixed;
  width: 300px;
  height: 40px;
  line-height: 40px;
  background-color: #d3d1e8;
  color: #2b498d;
  top: 20%;
  left: 0;
  right: 0;
  z-index: 100;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

/* 下層ページ共通 */

.page-title {
  width: 100%;
  margin-top: 230px;
  margin-bottom: 80px;
  text-align: center;
}

.page-title p {
  font-size: 20px;
  color: #2b498d;
}

.page-title h2 {
  font-size: 36px;
  color: #2b498d;
}

.contents__container {
  width: 90%;
  max-width: 860px;
  background-color: #2b498d;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  margin: 0 auto;
  padding-inline: 80px;
  padding-block: 30px;
  box-sizing: border-box;
}

/* about */

.about__top {
  width: 100%;
  margin-top: 230px;
  display: flex;
  justify-content: center;
}

.about__top--container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  padding-inline: 20px;
  box-sizing: border-box;
  position: relative;
}

.about__top--box1 {
  width: 75%;
  max-width: 920px;
  height: 400px;
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/about__top--bg.jpg);
  background-size: cover;
  background-position: bottom;
  padding-top: 120px;
  padding-left: 140px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.about__top--box1 p {
  font-size: 20px;
  color: #2b498d;
}

.about__top--box1 h2 {
  font-size: 36px;
  color: #2b498d;
}

.about__top--box2 {
  width: 70%;
  max-width: 850px;
  height: 400px;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -80px;
  right: 20px;
  opacity: 0;
  animation-name: fadeIn;
  animation-delay: 0.8s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.about__top--box1 p:first-child,
.about__top--box2 p:first-child {
  color: #2b498d;
}

.about__top--box1 p:last-child,
.about__top--box2 p:last-child {
  font-size: 20px;
  line-height: 1.9;
  margin-top: 20px;
}

.about__message {
  width: 100%;
  background-color: #2b498d;
  padding-block: 160px;
  padding-inline: 20px;
  box-sizing: border-box;
}

.about__message--container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.about__message--box {
  width: 350px;
  height: 400px;
  text-align: center;
  background-color: #fff;
  padding-top: 60px;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  position: relative;
}

.about__message--box p {
  color: #2b498d;
  margin-bottom: 25px;
}

.about__message--box p span {
  font-size: 24px;
}

.about__message--box::before {
  content: "";
  width: 78%;
  height: 8px;
  background-image: radial-gradient(circle, #d4d4d4 4px, transparent 4px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 16px 8px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.about__message--text p {
  color: #fff;
}

.about__message--text p:first-child {
  margin-bottom: 20px;
}

.div-name__box {
  width: 260px;
  height: 120px;
  border-radius: 10px;
  padding-top: 25px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  text-align: center;
  background-color: #2b498d;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.div-name__box p {
  color: #fff;
}

.div-name__box h3 {
  font-size: 24px;
  color: #fff;
}

.div__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.div__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.about__department {
  width: 100%;
  padding-top: 160px;
  padding-bottom: 200px;
  box-sizing: border-box;
}

.sales-div__wrapper,
.design-div__wrapper,
.factory__wrapper {
  width: 100%;
  height: 530px;
  margin-bottom: 200px;
  padding-inline: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.factory__wrapper {
  margin-bottom: 1400px;
}

.sales-div__wrapper {
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/sales__bg.jpg);
  background-size: cover;
}

.design-div__wrapper {
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/design__bg.jpg);
  background-size: cover;
  background-position: 80%;
}

.factory__wrapper {
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/factory__bg.jpg);
  background-position: 80%;
  background-size: cover;
}

.konica {
  position: relative;
}

.konica img {
  width: 400px;
}

.konica p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding-inline: 10px;
  padding-block: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.konica:hover p {
  opacity: 1;
  transition: all 0.3s;
}

.factory__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: absolute;
  top: 500px;
}

.factory__container--item {
  position: relative;
  margin: 10px;
}

.factory__item--tag p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
  width: 250px;
  height: 100%;
  margin: 0 auto;
  padding-inline: 10px;
  padding-block: 20px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.factory__item--tag:hover p {
  opacity: 1;
  transition: all 0.3s;
}

.factory-info {
  width: 90%;
  max-width: 1200px;
  background-color: #d3d1e8;
  border-radius: 20px;
  padding-block: 60px;
  padding-inline: 10%;
  box-sizing: border-box;
  margin: 0 auto;
}

.factory-info ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(15, auto);
  flex-wrap: wrap;
  gap: 10px;
}

.factory-info ul li {
  font-size: 14px;
  color: #2b498d;
}

/* works */

.announce {
  text-align: center;
  font-size: 24px;
  padding-top: 100px;
  padding-bottom: 200px;
  margin: 0 auto;
  position: relative;
}

.announce:after {
  content: "Coming Soon";
  font-size: 72px;
  color: #d3d1e8;
  opacity: 0.5;
  position: absolute;
  top: 50px;
  right: 50%;
  z-index: -1;
  transform: translateX(50%);
}

/* FAQ */

.page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.page-link li {
  color: #2b498d;
  font-size: 16px;
  padding-inline: 20px;
  border-right: 2px #2b498d solid;
}

.page-link li:last-child {
  border: none;
}

#product,
#graphic,
#web {
  padding-inline: 20px;
}

#product h4,
#graphic h4,
#web h4 {
  text-align: center;
  margin-bottom: 40px;
}

#graphic h4,
#web h4 {
  margin-top: 160px;
}

.faq__box {
  padding-top: 50px;
  padding-left: 10px;
}

.faq__box h5 {
  color: #fff;
  position: relative;
  padding-inline: 30px;
}

.faq__box h5:before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.faq__box p {
  color: #fff;
  line-height: 1.78;
  padding-inline: 30px;
  padding-top: 30px;
  padding-bottom: 50px;
  border-bottom: 1px #fff solid;
}

.faq__container .faq__box:last-child p {
  border: none;
}

.page-contact {
  margin-top: 160px;
  margin-bottom: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.page-contact__box--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* contact */

.contact__container {
  width: 100%;
  max-width: 1200px;
  padding-inline: 20px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
}

.contact__box1,
.contact__box2,
.contact__box3 {
  width: 100%;
  max-width: 480px;
  margin-bottom: 60px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contact__box1 p span,
.contact__box2 p span,
.contact__box3 p span {
  font-size: 24px;
  color: #2b498d;
  font-weight: 700;
}

.contact__box1 {
  gap: 20px;
}

.contact__box2,
.contact__box3 {
  gap: 30px;
}

.contact__box3 {
  display: none;
}

.contact__item--phone,
.contact__item--fax {
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.contact__item--phone p,
.contact__item--fax p {
  color: #2b498d;
  font-weight: 700;
}

.contact__item--phone img,
.contact__item--fax img {
  height: 43px;
}

.contact__item--phone p {
  font-size: 36px;
  position: relative;
}

.contact__item--phone p:after {
  content: "9:00~17:30（土日祝除く）";
  font-size: 16px;
  color: #2b498d;
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  bottom: -20px;
  right: 0;
}

.contact__item--fax p {
  font-size: 24px;
}

.c-form {
  width: 100%;
  max-width: 540px;
  background-color: #2b498d;
  padding: 80px;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.c-form__tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.c-form__tag p {
  color: #fff;
}

.c-form__tag p span {
  font-size: 12px;
  line-height: 1.5;
  padding-inline: 5px;
  color: #2b498d;
  background-color: #d3d1e8;
  border-radius: 5px;
}

.c-form_item input,
.c-form_item textarea {
  width: 380px;
  background-color: #fff;
  padding-inline: 10px;
  border: none;
  box-sizing: border-box;
}

.c-form_item input {
  height: 36px;
}

.c-form_item textarea {
  height: 200px;
  padding-block: 10px;
}

.c-form_item input::placeholder,
.c-form_item textarea::placeholder {
  color: #d3d1e8;
  font-size: 16px;
}

.c-form_submit {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.button__submit {
  width: 190px;
  height: 50px;
  color: #2b498d;
  background-color: #d3d1e8;
  border-radius: 10px;
}

.thanks {
  text-align: center;
  margin-bottom: 200px;
}

.thanks p {
  margin-top: 50px;
}

/* reqruit */

.company__container {
  padding-block: 50px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company__container p,
.company__container h3,
.company__container li {
  color: #fff;
}

.company__container h3 {
  font-size: 24px;
}

.company__container li {
  padding-block: 10px;
  transform: translateX(30px);
  position: relative;
}

.company__container .button__white--arrow {
  width: 265px;
  margin-right: 0;
  margin-left: auto;
}

.company__container li:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 19px;
  left: -30px;
}

.company__box {
  padding-left: 80px;
}

.company__box p {
  font-weight: 800;
}

.employment__container {
  padding-block: 50px;
  margin-bottom: 120px;
  background-color: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.employment__container p,
.employment__container h3 {
  color: #111;
}

.employment__container h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.employment__box {
  padding-left: 80px;
  padding-top: 10px;
  padding-bottom: 40px;
  border-bottom: 2px #d3d1e8 solid;
  display: flex;
}

.employment__box p:first-child {
  color: #2b498d;
  font-weight: 800;
  width: 30%;
}

.employment__box p:last-child {
  width: 70%;
}

.employment__box:last-child {
  border: none;
}

.reqruit__contact {
  width: fit-content;
  margin: 0 auto;
  text-align: right;
  position: relative;
}

.reqruit__contact button {
  width: 330px;
}

.reqruit__contact img {
  width: 78px;
  position: absolute;
  top: -80px;
  right: 18px;
  z-index: 5;
}

.reqruit__contact p {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 200px;
}

.bg--wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: -1;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.bg--wrapper div {
  width: 100%;
  height: 60%;
  margin-block: 0;
  transform: translateY(-20px);
}

.works__bg {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: -1;
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.works__bg div {
  width: 100%;
  height: 100%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/works__bg.jpg);
  background-position: top;
  background-size: cover;
opacity: 0.5;
}

.reqruit__bg div {
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/reqruit__bg.jpg);
  background-position: top;
  background-size: cover;
}

.faq__bg div {
  background: linear-gradient(
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.6)
    ),
    url(../images/faq__bg.jpg);
  background-position: center;
  background-size: cover;
}

/* privacy */

.privacy__container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-inline: 20px;
}

.privacy__box {
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px #2b498d solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.privacy__box h3 {
  font-size: 24px;
  text-shadow: none;
}

.privacy__box p {
  padding-top: 40px;
  font-size: 16px;
  line-height: 1.78;
}

.privacy__box:last-child {
  border: none;
  margin-bottom: 200px;
}
