@charset "UTF-8";
/*
Theme Name: ergo
*/

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

*:focus {
  outline: none;
}

a {
  color: #222222;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flex {
  display: flex;
}

.flex_col {
  display: flex;
  flex-direction: column;
}

/*::::::::::::::::::::::::: HEADER ::::::::::::::::::::::::::*/

header {
  width: 100%;
  position: fixed;
  z-index: 999;
  background-color: white;
  height: 95px;
  border: 1px solid #707070;
  user-select: none;
}

header .container {
  height: 100%;
  margin-left: 60px;
  margin-right: 24px;
  justify-content: flex-end;
  align-items: center;
}

header .logo-box {
  margin-right: auto;
}

header .logo-link {
  display: inline-block;
  width: 90px;
}

header .logo-link img {
  width: 100%;
  vertical-align: bottom;
}

header .logo {
  width: 100%;
  text-align: center;
  background-color: pink;
}

header .gnav-lists {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 10px;
}

header .gnav-list {
  align-items: center;
  height: 100%;
}

header .gnav-list li {
  display: flex;
  position: relative;
  align-items: center;
  font-size: 14.4px;
  margin: 10px 0;
  font-weight: bold;
}

header .gnav-list > li {
  margin: 0 10px;
  height: 100%;
}

header .gnav-list .sub-menu {
  display: none;
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 300px;
  background-color: white;
  transition: all 0.3s;
}

header .gnav-list .sub-menu li {
  display: block;
  width: 100%;
  margin: 0;
}

header .gnav-list .sub-menu a {
  display: block;
  text-align: center;
  padding: 20px 0;
}

header .gnav-list .sub-menu.is-active {
  display: block;
  transition: all 0.3s;
}

header .contact {
  border-radius: 12px;
  background-color: #6e1c39;
  box-shadow: 0px 8px 15px -10px;
}

header .contact a {
  font-size: 14.4px;
  display: inline-block;
  color: white;
  border-radius: 12px;
  padding: 2px 20px;
  height: 100%;
  width: 100%;
}

header .ham-button {
  position: fixed;
  top: 25px;
  right: 15px;
  z-index: 2;
}

header .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  display: none;
  position: relative;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
header .openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  background: #424242;
  width: 45%;
}

header .openbtn span:nth-of-type(1) {
  top: 15px;
}

header .openbtn span:nth-of-type(2) {
  top: 23px;
}

header .openbtn span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/

header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

header .openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}

header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

header .ham-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
  background: #fff5f7;
  overflow: auto;
}

header .ham-logo {
  display: inline-block;
  width: 90px;
  margin: 30px;
}

header .ham-logo img {
  width: 100%;
  vertical-align: bottom;
}

header .ham-main {
  margin: 50px 10% 20px;
}

header .ham-lists {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  box-sizing: border-box;
}

header .ham-list > li,
footer .ham-list > li {
  margin-bottom: 10px;
  border-bottom: 1px solid black;
  align-items: center;
  flex-wrap: wrap;
}

header .ham-list > li a,
footer .ham-list > li a {
  display: inline-block;
  padding: 6px 0;
  width: 90%;
}

header .ham-menu .sub-menu {
  display: block;
  width: 100%;
}

header .ham-list .sub-menu li {
  border-bottom: 1px solid black;
}

header .ham-list .sub-menu li:first-child {
  border-top: 1px solid black;
}

header .ham-list .sub-menu li:last-child {
  border-bottom: none;
}

header .ham-list .sub-menu a {
  font-size: 14px;
  padding-left: 20px;
}

header .ham-list > li .plus,
footer .ham-list > li .plus {
  cursor: default;
  font-size: 16px;
  color: #222;
}

header .ham-list .sub-menu,
footer .ham-list .sub-menu {
  display: none;
}

header .ham-contact {
  width: 180px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #6e1c39;
  margin-bottom: 30px;
}

header .ham-contact > div {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

header .parent-menu {
  cursor: default;
}

/* アニメーション前のメニューの状態 */
header .ham-menu {
  transform: translateX(100vw);
  transition: all 0.3s linear;
}
/* アニメーション後のメニューの状態 */
header .ham-menu.is-active {
  transform: translateX(0);
}

@media screen and (max-width: 1230px) {
  header .container {
    margin-left: 30px;
    margin-right: 15px;
  }

  .ham-list .parent-menu {
    width: 100%;
    cursor: pointer;
    padding: 6px 0;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1024px) {
  header .gnav-lists,
  header .contact {
    display: none;
  }

  header .openbtn {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  header {
    height: 55px;
  }

  header .logo-link {
    display: inline-block;
    width: 70px;
  }

  header .logo-link img {
    vertical-align: middle;
  }

  header .ham-button {
    position: fixed;
    top: 5px;
    right: 15px;
    z-index: 2;
  }
}

/*:::::::::::::::::::::: MAIN :::::::::::::::::::::::::::*/

main {
  padding-top: 95px; /*ヘッダーの高さ分*/
}

main .top-image {
  position: relative;
}

.top-image video {
  width: auto;
  height: calc(100vh - 95px);
  vertical-align: bottom;
  margin: 0 auto 0 0;
}

.top-image .video-box {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.top-image .image::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.4);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.top-image .image.is-animated {
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(-10vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
  }
}

.title-container,
.page-container .main-image {
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

main .top-image .caption {
  position: absolute;
  right: 4vw;
  bottom: 5vw;
  font-size: 51px;
  text-shadow: 1px 2px 0px #c6c6c6;
}

@media screen and (max-width: 768px) {
  main .top-image .caption {
    font-size: 28px;
  }

  .top-image video {
    width: auto;
    height: 420px;
    vertical-align: bottom;
    margin-left: -60px;
  }
}

@media screen and (max-width: 425px) {
  main .top-image .caption {
    font-size: 21px;
    font-weight: bold;
    right: 2vw;
  }
}

.banner {
	text-align: center;
	margin: 40px auto;
	width: 50%;
  max-width: 600px;
}
.banner a {
	display: inline-block;
}
.banner-img {
	width: 100%;
  height: auto;
}


main #about-us {
  height: 600px;
  padding: 90px 10%;
  background-color: #fff5f7;
}

main #about-us .title {
  font-size: 32px;
  opacity: 0.15;
  font-family: YuMincho, "Yu Mincho", serif;
}

main #about-us .box {
  margin: 45px auto;
  padding: 35px 50px;
  height: 252px;
  width: 840px;
  background-color: white;
  border: 3px solid #6e1c39;
}

main #about-us .left-box {
  width: 50%;
}

main #about-us h3 {
  color: #e61673;
  font-size: 32px;
  margin-bottom: 18px;
}

main #about-us .vision {
  font-size: 22px;
  font-weight: bold;
  line-height: 34px;
}

main #about-us .right-box {
  width: 50%;
}

main #about-us .right-box p {
  line-height: 40px;
}

@media screen and (max-width: 1024px) {
  main #about-us .box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    height: auto;
    padding: 15px 0px;
    margin-top: 70px;
    width: 100%;
  }

  main #about-us .left-box {
    margin-top: -70px;
    width: 100%;
  }

  main #about-us .right-box {
    width: 80%;
  }

  main #about-us .vision {
    margin-top: 30px;
  }

  main #about-us .right-box p {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 55px;
  }

  main #about-us {
    padding: 50px 0 100px;
    height: auto;
  }

  main #about-us .box {
    margin: 50px 5% 0;
    width: 90%;
  }

  main #about-us h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  main #about-us .vision {
    font-size: 17px;
    font-weight: bold;
    line-height: 25px;
  }

  main #about-us .title {
    font-size: 28px;
    opacity: 0.15;
    padding-left: 4%;
    font-family: YuMincho, "Yu Mincho", serif;
  }

  main #about-us .right-box p {
    line-height: 25px;
    font-size: 13px;
  }
}

main #service {
  background-color: snow;
}

#service .service-container {
  position: relative;
  padding: 40px 155px 90px;
}

#service .box {
  padding: 0 20px;
}

#service .title {
  position: absolute;
  top: -25px;
  font-size: 32px;
  opacity: 0.15;
  font-family: YuMincho, "Yu Mincho", serif;
}

#service h3 {
  font-size: 32px;
  font-weight: 500;
  color: #e61673;
}

#service p {
  margin: 15px 0;
}

.detail-button {
  justify-content: flex-end;
}

.detail-button a {
  margin-right: 30px;
  border: 1px solid #e61673;
  padding: 7px 18px;
  background-color: white;
  align-items: center;
}

.detail-button a:hover {
  background-color: #e61673;
}

.detail-button a .detail {
  font-size: 16px;
  margin-right: 5px;
  font-weight: bold;
}

.detail-button a .arrow {
  font-size: 18px;
  color: #e61673;
}

.detail-button a:hover div {
  color: white;
}

#service .service-lists {
  align-items: flex-end;
  padding-bottom: 110px;
  width: 100%;
  overflow: hidden;
}

#service .service-list {
  position: relative;
  width: 840px;
  height: 170px;
  margin-bottom: 10px;
  transform: translate(100vw, 0);
  transition: all 1s;
  opacity: 0;
}

#service .service-list.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#service .service-list:nth-child(1) {
  background-image: url(./image/pixta_98387499_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list:nth-child(2) {
  background-image: url(./image/pixta_91932467_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list:nth-child(3) {
  background-image: url(./image/pixta_68554346_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list:nth-child(4) {
  background-image: url(./image/pixta_48470308_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list:nth-child(5) {
  background-image: url(./image/pixta_91255401_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list:nth-child(6) {
  background-image: url(./image/pixta_98254486_M.jpg);
  background-position: center;
  background-size: cover;
}

#service .service-list div {
  position: absolute;
  color: white;
  font-size: 20px;
  right: 60px;
  bottom: 25px;
}

#service .service-list::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.4);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  #service .service-list {
    position: relative;
    width: 80%;
    height: 150px;
    margin-bottom: 10px;
  }
	
	.banner {
		width: 90%;
	}
}

@media screen and (max-width: 768px) {
  #service .service-container {
    position: relative;
    padding: 40px 10px;
  }

  .detail-button a {
    margin-right: 0px;
    margin-top: 10px;
  }

  #service .service-list {
    position: relative;
    width: 90%;
    height: 130px;
    margin-bottom: 10px;
  }

  #service .service-list div {
    position: absolute;
    color: white;
    font-size: 18px;
    right: 30px;
    bottom: 20px;
  }
}

@media screen and (max-width: 425px) {
  #service h3 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
  }

  #service p {
    margin: 15px 0;
    font-size: 14px;
  }

  #service .title {
    font-size: 28px;
  }

  .detail-button a {
    padding: 4px 12px;
  }

  .detail-button a .detail {
    font-size: 14px;
  }

  .detail-button a .arrow {
    font-size: 16px;
  }

  #service .service-list {
    position: relative;
    width: 95%;
    height: 80px;
    margin-bottom: 7px;
  }

  #service .service-list div {
    position: absolute;
    color: white;
    font-size: 14px;
    right: 10px;
    bottom: 7px;
  }

  #service .service-lists {
    padding-bottom: 50px;
  }
}

#creative {
  background-color: #fff5f7;
}

#creative h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #e61673;
}

#creative p {
  line-height: 28px;
  margin-bottom: 25px;
}

#creative .creative-container {
  padding: 124px 184px 88px;
}

#creative .detail-button a {
  margin-right: 0px;
}

#creative .creative-lists {
  padding-bottom: 110px;
}

#creative .creative-list {
  position: relative;
  width: 840px;
  height: 170px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#creative .creative-list.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#creative .creative-list:nth-child(1) {
  background-image: url(./image/lessie-lason-R1Le3TFwF3g-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(2) {
  background-image: url(./image/san-kayzen-PaiFrBUJEWQ-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(3) {
  background-image: url(./image/rombo-o9o9uDSjE0M-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(4) {
  background-image: url(./image/jean-carlo-emer-Vz78ZGZJ9kI-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(5) {
  background-image: url(./image/kaboompics_graphic-designer-at-work-in-her-office-22014.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(6) {
  background-image: url(./image/hearted-co-Q-kdB66h10Q-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list:nth-child(7) {
  background-image: url(./image/nordwood-themes-ubIWo074QlU-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .creative-list div {
  position: absolute;
  color: white;
  font-size: 20px;
  left: 60px;
  bottom: 25px;
}

#creative .creative-list::before {
  content: "";
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.4);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  #creative .creative-list {
    position: relative;
    width: 90%;
    height: 150px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  #creative .creative-container {
    padding: 70px 30px;
  }

  #creative .creative-list {
    height: 120px;
  }

  #creative .creative-list div {
    position: absolute;
    color: white;
    font-size: 18px;
    left: 30px;
    bottom: 15px;
  }
}

@media screen and (max-width: 425px) {
  #creative h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  #creative p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  #creative .creative-list {
    height: 80px;
  }

  #creative .creative-list div {
    position: absolute;
    color: white;
    font-size: 16px;
    left: 10px;
    bottom: 7px;
    font-size: 14px;
  }
}

#recruit {
  padding: 0 155px 70px;
  height: auto;
}

#recruit .title {
  margin-top: -20px;
  font-size: 32px;
  opacity: 0.15;
  font-family: YuMincho, "Yu Mincho", serif;
}

#recruit .recruit-container {
  padding: 30px 20px 0;
}

#recruit .recruit-container.sp {
  display: none;
}

#recruit .left-box {
  width: 50%;
  margin-right: 50px;
}

#recruit .sub-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

#recruit .left-box > p {
  margin-bottom: 30px;
}

#recruit .recruit-lists a {
  width: 100%;
  height: 50px;
  border-bottom: 1px solid black;
  align-items: center;
  margin-bottom: 10px;
}

#recruit .recruit-lists a div:nth-child(2) {
  margin-left: auto;
  margin-right: 20px;
  font-size: 20px;
}

#recruit .right-box {
  position: relative;
  margin-top: 50px;
  width: 50%;
}

#recruit .right-box img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
}

#recruit .right-box img:nth-child(2) {
  position: absolute;
  top: 10vw;
  left: 180px;
  width: 60%;
}

#recruit .image-box {
  position: relative;
  height: 40vw;
  margin: 5vw 0;
  overflow: hidden;
}

#recruit .image-box img:first-child {
  position: absolute;
  top: 0;
  left: 8%;
  width: 40vw;
  height: auto;
  opacity: 0;
  z-index: 2;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#recruit .image-box img:last-child {
  position: absolute;
  top: 15vw;
  right: 8%;
  width: 35vw;
  height: auto;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#recruit .image-box.is-active img {
  opacity: 1;
  transform: translate(0, 0);
}

@media screen and (max-width: 1024px) {
  #recruit {
    padding: 0 50px 70px;
    height: auto;
  }

  #recruit .recruit-container {
    padding: 30px 20px 0;
    flex-direction: column;
    align-items: center;
    display: none;
  }

  #recruit .recruit-container.sp {
    display: block;
  }

  #recruit .left-box {
    width: 100%;
    margin-right: 0px;
  }

  #recruit .right-box {
    position: relative;
    margin-top: 50px;
    width: 90%;
    margin: 50px auto 0;
    height: 450px;
  }

  #recruit .right-box img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
  }

  #recruit .right-box img:nth-child(2) {
    position: absolute;
    top: 20vw;
    left: auto;
    right: 0;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #recruit {
    padding: 0 10px 70px;
    height: auto;
  }

  #recruit .recruit-container {
    padding: 30px 20px 0;
    flex-direction: column;
    align-items: center;
  }

  #recruit .right-box {
    position: relative;
    margin-top: 50px;
    width: 100%;
    margin: 50px auto 0;
    height: 50vw;
  }

  #recruit .sub-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 20px;
  }

  #recruit .recruit-container p {
    font-size: 14px;
  }

  #recruit .recruit-lists a {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid black;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
  }

  #recruit .image-box img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: auto;
  }

  #recruit .image-box img:last-child {
    position: absolute;
    top: 12vw;
    right: 0;
    width: 45vw;
    height: auto;
  }
}

@media screen and (max-width: 425px) {
  #recruit .title {
    margin-top: -20px;
    font-size: 28px;
  }
}

/*::::::::::::::::::::::: SOLUTIONS :::::::::::::::::::::*/
.page-container {
  background-color: #fff5f7;
  padding: 95px 0;
  overflow: hidden;
}

.page-container .main-image {
  height: 28vw;
  background-image: url(./image/top_pixta_54570087_M.jpg);
  background-position: center;
  background-size: cover;
}

#solutions.page-container .main-image {
  background-image: url(./image/top_pixta_97444354_M.jpg);
}

#creative.page-container .main-image {
  background-image: url(./image/top_pixta_92903025_M.jpg);
}

#history.page-container .main-image {
  background-image: url(./image/new_pixta_63310060_M.jpg);
  background-size: cover;
}

#info.page-container .main-image {
  background-image: url(./image/top_pixta_83453818_M.jpg);
}

#ci.page-container .main-image {
  background-image: url(./image/new_pixta_99783124_M.jpg);
  background-size: cover;
}

#achievements.page-container .main-image {
  background-image: url(./image/new_pixta_64557051_M.jpg);
  background-size: cover;
}

#single_custom.page-container .main-image {
  background-image: url(./image/top_pixta_64557051_M.jpg);
}

#social.page-container .main-image {
  background-image: url(./image/top_pixta_58314235_M.jpg);
}

#staff.page-container .main-image {
  background-image: url(./image/top_pixta_54570087_M.jpg);
}

#sdgs.page-container .main-image {
  background-image: url(./image/top_pixta_75400067_M.jpg);
}

#group.page-container .main-image {
  background-image: url(./image/top_pixta_74854099_M.jpg);
}

#news.page-container .main-image,
#single.page-container .main-image {
  background-image: url(./image/top_pixta_91932473_M.jpg);
}

#engineer.page-container .main-image {
  background-image: url(./image/new_pixta_65619137_M.jpg);
  background-size: cover;
}

#career.page-container .main-image {
  background-image: url(./image/new_pixta_65619137_M.jpg);
  background-size: cover;
}

#engineer.page-container .main-image.designer {
  background-image: url(./image/top_pixta_78073836_M.jpg);
}

.page-container .contents {
  padding: 0 7vw;
}

.page-container .contents p {
  font-size: 20px;
}

#solutions h2,
#creative h2,
#staff h2,
#group h2 {
  padding: 40px 0 20px;
  font-size: 32px;
  color: #e61673;
  text-align: center;
}

#staff .health h2,
#staff .welfare h2 {
  padding-bottom: 20px;
}

#creative .contents-row,
#solutions .contents-row {
  text-align: center;
  padding: 0 10%;
}

#solutions .contents p,
#creative .contents p {
  margin-bottom: 20px;
}

#solutions .sol-lists,
#creative .sol-lists {
  margin-top: 70px;
}

#solutions .sol-list,
#creative .sol-list {
  justify-content: space-between;
  margin: 40px 0;
  padding: 40px 5%;
  background-color: white;
}

#solutions .sol-list.right,
#creative .sol-list.right {
  flex-direction: row-reverse;
}

#solutions .image-box,
#creative .image-box {
  width: 40%;
}

#solutions .image-box,
#creative .image-box {
  height: 360px;
  width: 340px;
  margin: auto 20px;
}

#solutions .sol-list:nth-child(1) .image-box {
  background-image: url(./image/clement-helardot-95YRwf6CNw8-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .sol-list:nth-child(2) .image-box {
  background-image: url(./image/jantine-doornbos-xt9tb6oa42o-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .sol-list:nth-child(3) .image-box {
  background-image: url(./image/onur-binay-wi3xBnWZlvQ-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .sol-list:nth-child(4) .image-box {
  background-image: url(./image/carlos-muza-hpjSkU2UYSU-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .sol-list:nth-child(5) .image-box {
  background-image: url(./image/kevin-schmid-xjaFDAq8OMo-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .sol-list:nth-child(6) .image-box {
  background-image: url(./image/scott-graham-5fNmWej4tAA-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(1) .image-box {
  background-image: url(./image/lessie-lason-R1Le3TFwF3g-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(2) .image-box {
  background-image: url(./image/san-kayzen-PaiFrBUJEWQ-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(3) .image-box {
  background-image: url(./image/rombo-o9o9uDSjE0M-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(4) .image-box {
  background-image: url(./image/jean-carlo-emer-Vz78ZGZJ9kI-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(5) .image-box {
  background-image: url(./image/kaboompics_graphic-designer-at-work-in-her-office-22014.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(6) .image-box {
  background-image: url(./image/hearted-co-Q-kdB66h10Q-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#creative .sol-list:nth-child(7) .image-box {
  background-image: url(./image/nordwood-themes-ubIWo074QlU-unsplash.jpg);
  background-position: center;
  background-size: cover;
}

#solutions .content-box,
#creative .content-box {
  width: 55%;
}

#solutions .content-box p,
#creative .content-box p {
  margin-bottom: 10px;
}

#solutions h3,
#creative h3 {
  margin-bottom: 15px;
  font-size: 32px;
  color: #e61673;
}

#solutions .sol-button,
#creative .sol-button {
  width: 150px;
  padding: 8px 0;
  text-align: center;
  border: 1px solid #e61673;
  font-size: 14px;
  margin: 20px auto 0;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 1024px) {
  .page-container {
    padding: 55px 0;
  }

  .page-container .contents {
    padding: 0 8vw;
  }

  #solutions .sol-list,
  #creative .sol-list {
    flex-direction: column;
    justify-content: space-between;
    margin: 40px 0;
    padding: 0;
  }

  #solutions .sol-list.right,
  #creative .sol-list.right {
    flex-direction: column;
  }

  #solutions .image-box,
  #creative .image-box {
    width: 100%;
    height: 230px;
    margin: 0;
  }

  #solutions .sol-lists,
  #creative .sol-lists {
    padding: 0 15%;
  }

  #solutions .content-box,
  #creative .content-box {
    width: 100%;
    max-height: auto;
    padding: 20px;
  }

  #solutions .content-box p,
  #creative .content-box p {
    display: none;
  }

  #solutions .content-box h3 + p,
  #creative .content-box h3 + p {
    display: block;
  }

  .page-container h1 {
    font-size: 20px;
  }

  #solutions h2,
  #creative h2,
  #staff h2 {
    padding: 20px 0 40px;
    font-size: 18px;
  }

  #solutions h3,
  #creative h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }

  #solutions .contents p,
  #creative .contents p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
  }

  #solutions .content-box p,
  #creative .content-box p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #creative .contents-row,
  #solutions .contents-row {
    padding: 0 5%;
  }

  #solutions .sol-button,
  #creative .sol-button {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #solutions .sol-lists,
  #creative .sol-lists {
    padding: 0;
  }
}

@media screen and (max-width: 425px) {
  #solutions .image-box,
  #creative .image-box {
    height: 130px;
  }
}

#social.page-container {
  padding-bottom: 0;
}

.page-container .catch {
  width: 750px;
  text-align: center;
  line-height: 35px;
  font-weight: bold;
  margin: 80px auto 30px;
  font-size: 20px;
}

#social h2 {
  display: inline-block;
  width: auto;
  font-size: 32px;
  color: #e61673;
  margin-bottom: 45px;
  padding: 5px 0;
  border-bottom: 1px solid #e61673;
}

#social .soc-list {
  height: auto;
  padding: 70px 8vw;
}

#social .soc-list a {
  color: #e61673;
}

#social .soc-bottom p {
  line-height: 35px;
}

#social .soc-bottom {
  justify-content: space-between;
}

#social .soc-bottom .left-box {
  width: 48%;
}

#social .soc-bottom .right-box {
  width: 30%;
  margin: 0 auto;
  justify-content: space-around;
}

#social .soc-bottom .right-box img {
  margin-bottom: 3vw;
}

#social .soc-list.white {
  background-color: white;
}

@media screen and (max-width: 768px) {
  .page-container .contents p.catch {
    font-size: 17px;
    width: auto;
    margin: 50px 0;
    font-size: 17px;
    text-align: left;
  }

  #social .soc-list {
    padding: 30px 8vw;
  }

  #social .soc-list a {
    font-size: 14px;
  }

  #social .soc-bottom {
    flex-direction: column-reverse;
  }

  #social .soc-bottom .left-box {
    width: 100%;
  }

  #social .soc-bottom .right-box {
    width: 100%;
  }

  #social .soc-bottom .right-box img {
    margin-bottom: 15px;
  }

  #social .soc-bottom .right-box img:nth-child(2) {
    display: none;
  }

  #social h2 {
    font-size: 18px;
    color: #e61673;
    margin-bottom: 20px;
    padding: 8px 0;
    border-bottom: 1px solid #e61673;
  }

  #social .soc-bottom p {
    font-size: 14px;
    line-height: 28px;
  }
}

@media screen and (max-width: 375px) {
  #social .soc-list a {
    font-size: 12px;
  }
}

#staff h2 {
  position: relative;
}

#staff h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 12vw;
  height: 1px;
  background-color: #e61673;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#staff .description {
  width: 80%;
  margin: 80px auto;
  font-size: 18px;
}

#staff .staff-container {
  position: relative;
  padding: 70px 0;
  margin: 20px 0;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#staff .staff-zone {
  overflow: hidden;
}

#staff .staff-container.mb {
  margin-bottom: 130px;
}

#staff .staff-container.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#staff .staff-container.right {
  justify-content: flex-end;
}

#staff .staff-container img {
  width: 50%;
  opacity: 0;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#staff .staff-container.right img {
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#staff .staff-container.is-active img {
  opacity: 1;
  transform: translate(0, 0);
}

#staff .staff-container p.num {
  font-family: "メイリオ", "Meiryo", sans-serif;
  color: #e61673;
  opacity: 0.2;
  font-size: 185px;
  position: absolute;
  right: 15vw;
  top: 0;
}

#staff .staff-container.right p.num {
  right: auto;
  left: 15vw;
  top: 0;
}

#staff .staff-container .staff-white-box {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 60px;
  bottom: 0;
  width: 50vw;
  left: 40vw;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#staff .staff-container.right .staff-white-box {
  bottom: 0;
  left: auto;
  right: 40vw;
  opacity: 0;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#staff .staff-container.is-active .staff-white-box {
  opacity: 1;
  transform: translate(0, 0);
}

#staff h3 {
  font-size: 32px;
  color: #e61673;
  margin-bottom: 15px;
}

#staff .health {
  padding: 0 10vw 7vw;
  background-color: white;
}

#staff .health .bottom-box {
  justify-content: space-between;
  align-items: center;
  margin: 7vw 0 0;
  height: auto;
}

#staff .health .left-box {
  width: 47%;
}

#staff .health .left-box p {
  margin-bottom: 3vw;
}

#staff .health .right-box {
  width: 35%;
  margin: 0 auto;
}

#staff .health .right-box img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  #staff .staff-container p.num {
    font-size: 165px;
    position: absolute;
    right: 12vw;
    top: 0;
  }

  #staff .staff-container {
    padding: 70px 0 150px;
  }

  #staff .staff-container .staff-white-box {
    width: 60vw;
    left: 30vw;
  }

  #staff .staff-container.right .staff-white-box {
    left: auto;
    right: 30vw;
  }
}

@media screen and (max-width: 768px) {
  #staff .description {
    font-size: 14px;
    width: 100%;
    margin: 20px auto;
  }

  #staff .staff-container p.num {
    display: none;
  }

  #staff .staff-container img {
    width: 70%;
  }

  #staff .contents h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  #staff .health h2 {
    font-size: 20px;
    padding-bottom: 15px;
  }

  #staff .welfare h2 {
    font-size: 20px;
    padding: 40px 0 20px;
  }

  #staff .staff-container .staff-white-box {
    width: 70vw;
    padding: 20px 20px;
    right: 0;
    left: auto;
  }

  #staff .staff-container.right .staff-white-box {
    right: auto;
    left: 0;
  }

  #staff .staff-container {
    padding: 20px 0 100px;
  }

  #staff .staff-container.mb {
    margin-bottom: 60px;
  }

  #staff h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #staff .staff-container .staff-white-box p.bottom {
    font-size: 13px;
  }

  #staff .health {
    padding: 5vw 10vw 7vw;
  }

  #staff .health .left-box p {
    font-size: 14px;
  }

  #staff .health .bottom-box {
    flex-direction: column-reverse;
    margin: 4vw 0 0;
  }

  #staff .health .left-box {
    width: 100%;
  }

  #staff .health .right-box {
    width: 100%;
    margin-bottom: 5vw;
  }
}

@media screen and (max-width: 375px) {
  #staff .staff-container img {
    width: 80%;
  }

  #staff .staff-container .staff-white-box {
    width: 97vw;
    padding: 20px 10px;
  }
}

#staff .welfare {
  padding: 0 10vw;
}

#staff .welfare p.sub-title {
  margin: 5vw 0;
  text-align: center;
}

#staff .welfare .wel-container {
  background-color: white;
  border: 1px solid #6e1c39;
  padding: 4vw;
}

#staff .welfare .wel-container li {
  padding: 1vw 2vw;
  margin: 1vw 0;
  align-items: center;
  border-bottom: 1px solid #6e1c39;
}

#staff .welfare .wel-item {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #e61673;
  width: 23vw;
}

#staff .welfare .wel-desc {
  flex: 1;
}

@media screen and (max-width: 768px) {
  #staff .welfare .wel-container li {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 0 3vw;
    margin: 2vw 0;
  }

  #staff .welfare .wel-item {
    font-family: YuMincho, "Yu Mincho", serif;
    width: 100%;
    margin-bottom: 4vw;
    padding: 2vw 0 3vw;
    font-size: 18px;
    border-bottom: 1px solid #6e1c39;
  }

  #staff .welfare .wel-desc {
    font-size: 12px;
  }

  #staff .welfare p.sub-title {
    margin: 5vw 0;
    text-align: left;
    font-size: 14px;
  }
}

#sdgs .sdgs-container {
  padding: 8vw 10vw 5vw;
  background-color: #fff5f7;
}

#sdgs p.sdgs-detail {
  font-family: YuMincho, "Yu Mincho", serif;
  margin-bottom: 20px;
}

#sdgs .sdgs-container img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

#sdgs .why {
  background-color: white;
  padding: 8vw 10vw;
}

#sdgs h2 {
  font-size: 32px;
  color: #e61673;
  margin-bottom: 3vw;
}

#sdgs .why-container p.first {
  margin-bottom: 2vw;
}

#sdgs .why-container {
  background-color: #fff5f7;
  border: 2px solid #6e1c39;
  padding: 3vw 2vw;
}

#sdgs .sdgs-list-container {
  padding: 5vw 10vw;
}

#sdgs .sdgs-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

#sdgs .sdgs-list {
  background-color: white;
  padding: 4vw 3vw;
  margin: 2vw 1vw;
}

#sdgs .sdgs-item {
  padding: 1vw 0 2vw;
  margin-bottom: 2vw;
  align-items: center;
}

#sdgs .sdgs-item span {
  font-size: 32px;
  margin-right: 10px;
}

#sdgs .sdgs-item h3 {
  font-size: 22px;
}

#sdgs .sdgs-list:nth-child(1) {
  border: 1px solid #dc007a;
}

#sdgs .sdgs-list:nth-child(1) .sdgs-item {
  border-bottom: 1px solid #dc007a;
}

#sdgs .sdgs-list:nth-child(1) .sdgs-item span {
  color: #dc007a;
}

#sdgs .sdgs-list:nth-child(2) {
  border: 1px solid #ff3a21;
}

#sdgs .sdgs-list:nth-child(2) .sdgs-item {
  border-bottom: 1px solid #ff3a21;
}

#sdgs .sdgs-list:nth-child(2) .sdgs-item span {
  color: #ff3a21;
}

#sdgs .sdgs-list:nth-child(3) {
  border: 1px solid #4c9f38;
}

#sdgs .sdgs-list:nth-child(3) .sdgs-item {
  border-bottom: 1px solid #4c9f38;
}

#sdgs .sdgs-list:nth-child(3) .sdgs-item span {
  color: #4c9f38;
}

#sdgs .sdgs-list:nth-child(4) {
  border: 1px solid #0075ba;
}

#sdgs .sdgs-list:nth-child(4) .sdgs-item {
  border-bottom: 1px solid #0075ba;
}

#sdgs .sdgs-list:nth-child(4) .sdgs-item span {
  color: #0075ba;
}

#sdgs .sdgs-list:nth-child(5) {
  border: 1px solid #c5192d;
}

#sdgs .sdgs-list:nth-child(5) .sdgs-item {
  border-bottom: 1px solid #c5192d;
}

#sdgs .sdgs-list:nth-child(5) .sdgs-item span {
  color: #c5192d;
}

#sdgs .sdgs-list:nth-child(6) {
  border: 1px solid #f5a200;
}

#sdgs .sdgs-list:nth-child(6) .sdgs-item {
  border-bottom: 1px solid #f5a200;
}

#sdgs .sdgs-list:nth-child(6) .sdgs-item span {
  color: #f5a200;
}

#sdgs .sp-list {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-top: 45px;
  margin: 8vw 0;
}

#sdgs .sp-list-container {
  display: none;
}

#sdgs .sp-list.right {
  justify-content: flex-start;
}

#sdgs .sp-list span {
  position: absolute;
  font-size: 47px;
  left: 10vw;
  top: 160px;
}

#sdgs .sp-list.right span {
  position: absolute;
  font-size: 47px;
  left: auto;
  right: 10vw;
  top: 160px;
}

#sdgs .sp-list h3 {
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 5px;
}

#sdgs .color-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 60vw;
  height: 160px;
  z-index: 1;
  opacity: 0;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#sdgs .sp-list.right .color-box {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 60vw;
  height: 160px;
  z-index: 1;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#sdgs .color-box.is-active,
#sdgs .sp-list.right .color-box.is-active {
  opacity: 0.5;
  transform: translate(0, 0);
}

#sdgs .sp-list .sp-item-box {
  background-color: rgba(255, 245, 247, 0.8);
  padding: 3vw;
  width: 60vw;
  z-index: 2;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#sdgs .sp-list.right .sp-item-box {
  opacity: 0;
  transform: translate(-100vw, 0);
  transition: all 1s;
}

#sdgs .sp-list .sp-item-box.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#sdgs .sp-list:nth-child(1) h3 {
  border-bottom: 1px solid #dc007a;
}

#sdgs .sp-list:nth-child(1) .color-box {
  background-color: #dc007a;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(1) .sp-item-box {
  border: 1px solid #dc007a;
}

#sdgs .sp-list:nth-child(1) span {
  color: #dc007a;
}

#sdgs .sp-list:nth-child(2) h3 {
  border-bottom: 1px solid #ff3a21;
}

#sdgs .sp-list:nth-child(2) .color-box {
  background-color: #ff3a21;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(2) .sp-item-box {
  border: 1px solid #ff3a21;
}

#sdgs .sp-list:nth-child(2) span {
  color: #ff3a21;
}

#sdgs .sp-list:nth-child(3) h3 {
  border-bottom: 1px solid #4c9f38;
}

#sdgs .sp-list:nth-child(3) .color-box {
  background-color: #4c9f38;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(3) .sp-item-box {
  border: 1px solid #4c9f38;
}

#sdgs .sp-list:nth-child(3) span {
  color: #4c9f38;
}

#sdgs .sp-list:nth-child(4) h3 {
  border-bottom: 1px solid #0075ba;
}

#sdgs .sp-list:nth-child(4) .color-box {
  background-color: #0075ba;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(4) .sp-item-box {
  border: 1px solid #0075ba;
}

#sdgs .sp-list:nth-child(4) span {
  color: #0075ba;
}

#sdgs .sp-list:nth-child(5) h3 {
  border-bottom: 1px solid #c5192d;
}

#sdgs .sp-list:nth-child(5) .color-box {
  background-color: #c5192d;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(5) .sp-item-box {
  border: 1px solid #c5192d;
}

#sdgs .sp-list:nth-child(5) span {
  color: #c5192d;
}

#sdgs .sp-list:nth-child(6) h3 {
  border-bottom: 1px solid #f5a200;
}

#sdgs .sp-list:nth-child(6) .color-box {
  background-color: #f5a200;
  opacity: 0.5;
}

#sdgs .sp-list:nth-child(6) .sp-item-box {
  border: 1px solid #f5a200;
}

#sdgs .sp-list:nth-child(6) span {
  color: #f5a200;
}

@media screen and (max-width: 768px) {
  #sdgs .sdgs-container {
    padding: 10vw 8vw 5vw;
  }

  #sdgs p.sdgs-detail {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 14px;
  }

  #sdgs .why {
    background-color: white;
    padding: 8vw;
  }

  #sdgs .why-container {
    padding: 5vw 4vw;
  }

  #sdgs h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 2vw;
  }

  #sdgs .sp-list h3 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 6px;
  }

  #sdgs .why-container p.first {
    margin-bottom: 20px;
  }

  #sdgs .why-container p {
    font-size: 14px;
  }

  #sdgs .sdgs-lists {
    display: none;
  }

  #sdgs .sdgs-list-container {
    padding: 5vw 8vw;
  }
}

@media screen and (max-width: 768px) {
  #sdgs .sp-list-container {
    display: block;
  }

  #sdgs .sdgs-item h3 {
    font-size: 18px;
  }

  #sdgs .sp-item-detail {
    font-size: 14px;
  }
}

#history .history-container {
  padding: 8vw 10vw;
}

#history .item {
  justify-content: space-between;
  align-items: end;
  width: 80%;
  padding: 3vw 5vw;
  border-bottom: 1px solid #707070;
}

#history .item:first-child {
  border-top: 1px solid #707070;
}

#history .year-month {
  font-size: 32px;
  color: #e61673;
  width: 45%;
  font-weight: bold;
}

#history ul {
  width: 55%;
}

@media screen and (max-width: 768px) {
  #history .history-container {
    padding: 70px 8vw 20px;
  }

  #history .item {
    width: 100%;
    padding: 5vw 0;
    justify-content: flex-start;
  }

  #history .year-month {
    text-align: left;
    font-size: 18px;
    width: 40%;
    font-weight: 500;
  }

  #history ul {
    font-size: 14px;
  }
}

#info .info-container {
  padding: 8vw 10vw;
}

#info .info-list {
  padding: 2vw 10vw;
  align-items: center;
  border-bottom: 1px solid #707070;
}

#info .info-title {
  font-weight: bold;
  width: 30%;
}

#info .info-content {
  flex: 1;
}

#info .info-content .office {
  margin-bottom: 25px;
}

#info .web-sol {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #info .info-container {
    padding: 8vw;
  }

  #info .info-list {
    padding: 0 0 2vw;
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
  }

  #info .info-title {
    width: 100%;
    margin-bottom: 10px;
    padding: 2vw 3vw;
    border-bottom: 1px solid #707070;
  }

  #info .info-content {
    padding: 2vw 3vw;
    border-bottom: 1px solid #707070;
  }
}

@media screen and (max-width: 425px) {
  #info .info-title {
    font-size: 14px;
  }

  #info .info-content {
    font-size: 14px;
  }
}

#ci .ci-container {
  padding: 10vw 8vw;
  justify-content: space-between;
}

#ci .ci-container h2 {
  font-size: 28px;
  color: #e61673;
  width: 53%;
  line-height: 50px;
  justify-content: center;
}

#ci .ci-container .three-item {
  width: 45%;
}

#ci .ci-container .button {
  font-size: 20px;
  min-width: 350px;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0px 5px 15px -10px;
  background-color: white;
  margin-bottom: 3vw;
  align-items: center;
  cursor: pointer;
}

#ci .ci-container .button span {
  margin-right: 10px;
  font-size: 25px;
  font-family: YuMincho, "Yu Mincho", serif;
}

#ci .ci-container .button p {
  font-size: 20px;
  font-weight: bold;
}

#ci .ci-container .button .plus {
  color: #e61673;
  font-size: 22px;
  margin-left: auto;
}

#ci .goal {
  padding: 5vw 8vw;
  background-color: white;
}

#ci .goal h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #e61673;
}

#ci .goal-item {
  align-items: end;
  padding: 4vw 0 1vw;
  border-bottom: 1px solid #707070;
}

#ci .goal-item.ini {
  border-top: 1px solid #707070;
}

#ci .goal-item .left-box {
  font-size: 20px;
  width: 30%;
  font-weight: bold;
}

#ci .goal-item .right-box {
  flex: 1;
}

#ci .modal-window {
  background-color: rgba(34, 34, 34, 0.5);
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s linear, visibility 0.2s linear, z-index 0.2s linear;
}

#ci .modal-window.is-open {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}

#ci .modal-window .content-box {
  position: relative;
  background-color: white;
  padding: 8vw;
  width: 70vw;
  display: none;
  border-radius: 3vw;
}

#ci .modal-window .content-box.is-open {
  display: block;
}

#ci .modal-window .content {
  justify-content: space-between;
}

#ci .modal-window .content.sp {
  display: none;
}

#ci .modal-window .content.sp img {
  width: 100%;
  margin-bottom: 10px;
}

#ci .modal-window .left-box {
  width: 45%;
}

#ci .modal-window .modal-title {
  margin-bottom: 3vw;
  align-items: last baseline;
}

#ci .modal-window span {
  font-size: 30px;
  margin-right: 10px;
  font-family: YuMincho, "Yu Mincho", serif;
}

#ci .modal-window span.batsu {
  margin: 0;
}

#ci .modal-window .right-box {
  width: 50%;
}

#ci .modal-window .right-box img {
  width: 100%;
}

#ci .batsu-button {
  position: absolute;
  top: 2vw;
  right: 2vw;
  cursor: pointer;
}

.batsu {
  display: block;
  width: 30px; /*枠の大きさ*/
  height: 30px; /*枠の大きさ*/
  position: relative;
}

.batsu::before,
.batsu::after {
  content: "";
  display: block;
  width: 100%; /*バツ線の長さ*/
  height: 3px; /*バツ線の太さ*/
  background: #000;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}

.batsu::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}

@media screen and (max-width: 1024px) {
  #ci .ci-container {
    padding: 8vw 4vw;
  }

  #ci .ci-container h2 {
    font-size: 24px;
    width: 55%;
  }

  #ci .ci-container .button {
    font-size: 18px;
    min-width: 300px;
    padding: 20px 15px;
  }
}

@media screen and (max-width: 768px) {
  #ci .ci-container {
    flex-direction: column;
  }

  #ci .ci-container h2 {
    font-size: 18px;
    width: 100%;
    margin-top: 5vw;
    text-align: center;
    line-height: 30px;
    font-family: YuMincho, "Yu Mincho", serif;
  }

  #ci .batsu-button {
    top: 6vw;
    right: 6vw;
  }

  #ci .ci-container .three-item {
    width: 100%;
    margin: 5vw 0;
  }

  #ci .modal-window .content-box {
    padding-top: 12vw;
  }

  #ci .modal-window .content {
    justify-content: flex-start;
    flex-direction: column;
    display: none;
  }

  #ci .modal-window .content.sp {
    display: block;
  }

  #ci .modal-window .left-box {
    width: 100%;
  }

  #ci .modal-window .left-box span {
    font-size: 20px;
  }

  #ci .modal-window .left-box h3 {
    font-size: 14px;
  }

  #ci .modal-window .left-box p {
    font-size: 14px;
    margin-bottom: 2vw;
  }

  #ci .modal-window .right-box {
    width: 100%;
  }

  #ci .ci-container .button {
    font-size: 14px;
    width: 220px;
    margin: 0 auto;
    padding: 20px 15px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px -10px;
    background-color: white;
    margin-bottom: 3vw;
  }

  #ci .ci-container .button .plus {
    font-size: 20px;
  }

  #ci .ci-container .button span {
    font-size: 20px;
  }

  #ci .ci-container .button p {
    font-size: 14px;
  }

  #ci .goal {
    padding: 15vw 8vw;
  }

  #ci .goal h2 {
    font-size: 18px;
  }

  #ci .goal-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 3vw 0;
    border-bottom: 1px solid #707070;
  }

  #ci .goal-item .left-box {
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
  }

  #ci .goal-item .right-box {
    font-size: 14px;
  }
}

@media screen and (max-width: 425px) {
  #ci .modal-window .content-box {
    padding: 12vw 6vw 8vw;
    width: 80vw;
    border-radius: 3vw;
  }

  #ci .modal-window span {
    font-size: 20px;
  }

  #ci .modal-window h3 {
    font-size: 14px;
  }

  #ci .modal-window p {
    font-size: 14px;
  }

  #ci .modal-window .left-box p {
    font-size: 12px;
    margin-bottom: 4vw;
  }
}

#group .policy-container {
  padding: 8vw 10vw;
}

#group .policy-container .sp {
  display: none;
}

#group .policy {
  margin-bottom: 4vw;
  line-height: 28px;
  text-align: center;
  font-weight: bold;
}

#group .policy-container h2 {
  font-size: 32px;
  color: #e61673;
  margin-bottom: 2vw;
  text-align: center;
}

#group .policy-container p {
  text-align: center;
}

#group .company-container {
  padding: 0 10vw 8vw;
}

#group h2.bb {
  position: relative;
  margin-bottom: 5vw;
}

#group h2.bb::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 12vw;
  height: 1px;
  background-color: #e61673;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#group .company-lists {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

#group .company-list {
  margin: 1vw 1.5vw;
  transition: all 0.1s;
  background-color: white;
}

#group .company-list:hover {
  box-shadow: 5px 10px 15px -10px;
}

#group .company-list img {
  width: 100%;
}

#group .company-list .logo-img {
  height: 15vw;
  justify-content: center;
  align-items: center;
  border: 2px solid #707070;
}

#group .company-list img.arrow-img {
  width: 20px;
  margin-top: auto;
  margin-left: auto;
  margin-right: -10px;
  margin-bottom: 10px;
}

#group .company-list.related a {
  display: block;
  height: 100%;
}

#group .company-list.related img.arrow-img {
  width: 20px;
  margin-top: auto;
  margin-left: auto;
  margin-right: -10px;
  margin-bottom: 0;
}

#group .bottom-box {
  padding: 1vw 10%;
  border: 1px solid #707070;
  height: 350px;
}

#group .name {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

#group .build {
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}

#group .company-list.related {
  border: 1px solid #707070;
}

#group .company-list.related .bottom-box {
  padding: 3vw 10%;
  height: 100%;
  border: none;
}

#group .company-list.related .bottom-box p {
  margin-bottom: 20px;
}

#group .company-list.related .name {
  margin-bottom: 20px;
}

#group .company-list.related .name.sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  #group .bottom-box p {
    font-size: 14px;
  }

  #group .build {
    font-size: 11px;
  }

  #group .company-container {
    padding: 0 6vw 8vw;
  }
}

@media screen and (max-width: 940px) {
  #group .policy {
    margin-bottom: 4vw;
    line-height: 28px;
    text-align: center;
    font-weight: bold;
    display: none;
  }

  #group .policy.sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  #group .policy {
    margin-bottom: 0;
    text-align: left;
  }

  #group .policy-container h2 {
    font-size: 20px;
    margin-bottom: 3vw;
  }

  #group .policy-container p {
    text-align: left;
    font-size: 14px;
    margin-bottom: 5vw;
  }

  #group h2.bb {
    position: relative;
    margin-bottom: 5vw;
    font-size: 20px;
  }

  #group .company-lists {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #group .name {
    margin: 5px 0;
    font-size: 18px;
  }

  #group .company-list .logo-img {
    height: 52vw;
    justify-content: center;
    align-items: center;
    border: 4px solid #707070;
  }

  #group .bottom-box {
    padding: 3vw 10%;
    height: 250px;
  }

  #group .company-list {
    margin: 5vw 0;
    width: 90%;
  }

  #group h2.bb::after {
    width: 80px;
  }

  #group .company-list.related .bottom-box {
    padding: 5vw 10% 6vw;
  }
}

@media screen and (max-width: 425px) {
  #group .policy-container h2 {
    display: none;
  }

  #group .policy-container h2.sp {
    display: block;
  }

  #group .bottom-box {
    padding: 3vw 10%;
    height: auto;
  }

  #group .company-list {
    margin: 3vw 0;
    width: 100%;
  }

  #group .company-list.related .name {
    display: none;
  }

  #group .company-list.related .name.sp,
  #group .company-list.related .name.non-sp {
    display: block;
  }
}

#engineer .engineer-container {
  padding: 8vw 0 3vw;
}

#engineer .how-engineer {
  font-weight: bold;
  text-align: center;
  margin-bottom: 8vw;
  padding: 0 10vw;
  font-size: 18px;
}

#engineer .ergo-work-container {
  margin: 0 10vw;
  position: relative;
}

#engineer .ergo-work-container span,
#engineer .phase-container span {
  font-family: YuMincho, "Yu Mincho", serif;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 32px;
  color: rgba(34, 34, 34, 0.15);
}

#engineer .ergo-work {
  align-items: center;
  margin-bottom: 5vw;
}

#engineer .left-box {
  width: 40%;
}

#engineer .right-box {
  width: 60%;
}

#engineer h2 {
  padding: 20px 0;
  font-size: 32px;
  color: #e61673;
  position: relative;
  text-align: center;
}

#engineer h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 12vw;
  height: 1px;
  background-color: #e61673;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#engineer .ergo-work h2::after {
  width: 190px;
}

#engineer .person-container h2::after {
  width: 160px;
}

#engineer .ergo-work .right-box p:first-child {
  margin-bottom: 3vw;
}

#engineer .ergo-img-box {
  justify-content: end;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#engineer .ergo-img-box.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#engineer .ergo-work-img {
  width: 100%;
}

#engineer .ergo-work-box {
  margin-top: 5vw;
  width: 65%;
  height: 30vw;
  background-image: url(./image/pixta_77006042_M.jpg);
  background-size: cover;
  background-position: center;
}

#engineer .ergo-work-box.designer {
  background-image: url(./image/pixta_57550799_M.jpg);
}

#engineer .person-container {
  margin: 8vw 10vw;
  background-color: white;
  padding: 5vw;
}

#engineer .person-container .left-box {
  width: 30%;
  margin-right: 5%;
}

#engineer .person-container .right-box {
  width: 65%;
}

#engineer .item-title {
  align-items: last baseline;
  margin-bottom: 10px;
}

#engineer .person-item {
  margin-bottom: 3vw;
}

#engineer .person-item:last-child {
  margin: 0;
}

#engineer .person-item span {
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 32px;
  margin-right: 8px;
  color: #e61673;
}

#engineer .person-item h3 {
  font-weight: 500;
  font-size: 18px;
}

#engineer .phase-container {
  position: relative;
  margin: 0 10vw;
}

#engineer .guidebook {
  align-items: flex-start;
}

#engineer .phase-container h2 {
  text-align: left;
  margin-bottom: 3vw;
  display: inline-block;
}

#engineer .phase-list {
  padding: 2vw 5vw;
  border-bottom: 1px solid #707070;
  align-items: last baseline;
}

#engineer .phase-list:nth-child(3) p:first-child {
  margin-bottom: 10px;
}

#engineer .phase-title {
  font-weight: bold;
  width: 30%;
}

#engineer .phase-content {
  flex: 1;
}

#engineer .phase-container .mission {
  left: -2vw;
  top: -40px;
}

@media screen and (max-width: 1024px) {
  #engineer .ergo-work-container {
    margin: 0 6vw;
    position: relative;
  }

  #engineer .person-container {
    margin: 8vw 6vw;
    padding: 5vw 3vw;
  }
}

@media screen and (max-width: 768px) {
  #engineer .ergo-work-container {
    margin: 0 8vw;
    position: relative;
  }

  #engineer .how-engineer {
    text-align: left;
    padding: 0 8vw;
    font-size: 14px;
    margin-bottom: 80px;
  }

  #engineer .ergo-work {
    flex-direction: column;
    align-items: flex-start;
  }

  #engineer .ergo-work .left-box {
    width: 100%;
  }

  #engineer .ergo-work .right-box {
    width: 100%;
  }

  #engineer .ergo-work-container span {
    top: -30px;
    left: -2vw;
    font-size: 28px;
  }

  #engineer .person-container .left-box {
    width: 100%;
    padding: 0 0 0 8vw;
    margin-right: 0;
    background-color: #fff5f7;
  }

  #engineer .person-container .right-box {
    width: 100%;
  }

  #engineer .right-box p {
    font-size: 14px;
  }

  #engineer .ergo-work-box {
    width: 75%;
    height: 40vw;
  }

  #engineer h2 {
    padding: 20px 0;
    font-size: 20px;
    color: #e61673;
    position: relative;
    text-align: left;
  }

  #engineer .person-container h2 {
    padding: 20px 0 0;
  }

  #engineer .phase-box ul {
    color: #707070;
  }

  #engineer .phase-container h2 {
    margin-bottom: 0;
  }

  #engineer h2::after {
    display: none;
  }

  #engineer .person-container {
    margin: 8vw 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
  }

  #engineer .person-container .right-box .person-item {
    padding: 5vw 8vw;
  }

  #engineer .person-item span {
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
  }

  #engineer .person-item h3 {
    font-size: 16px;
  }

  #engineer .person-container .right-box .person-item:nth-child(2n-1) {
    background-color: #fff5f7;
  }

  #engineer .phase-container {
    margin: 0 6vw;
  }

  #engineer .phase-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border-bottom: none;
  }

  #engineer .phase-title {
    margin-bottom: 0;
    padding: 12px;
    font-size: 14px;
    width: 100%;
    border-bottom: 1px solid #707070;
  }

  #engineer .phase-content {
    font-size: 14px;
    padding: 12px;
    border-bottom: 1px solid #707070;
  }

  #engineer .phase-container .mission {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  #engineer .ergo-work {
    margin-top: 60px;
  }
}

/* 採用情報 */

#career .career-container {
  padding: 8vw 0 3vw;
}

#career .how-career {
  font-weight: bold;
  text-align: center;
  margin-bottom: 8vw;
  padding: 0 10vw;
  font-size: 18px;
}

#career .ergo-work-container {
  margin: 0 10vw;
  position: relative;
}

#career .ergo-work-container span,
#career .entry-container span.mission {
  font-family: YuMincho, "Yu Mincho", serif;
  position: absolute;
  font-size: 32px;
  color: rgba(34, 34, 34, 0.15);
}

#career .ergo-work-container span {
  top: -20px;
  left: 0;
}
#career .entry-container span.mission {
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

#career .ergo-work {
  align-items: center;
  margin-bottom: 5vw;
}

#career .left-box {
  width: 40%;
}

#career .right-box {
  width: 60%;
}

#career h2 {
  padding: 20px 0;
  font-size: 32px;
  color: #e61673;
  position: relative;
  text-align: center;
}

#career h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 12vw;
  height: 1px;
  background-color: #e61673;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

#career .ergo-work h2::after {
  width: 190px;
}

#career .person-container h2::after {
  width: 160px;
}

#career .ergo-work .right-box p:first-child {
  margin-bottom: 3vw;
}

#career .ergo-img-box {
  justify-content: end;
  opacity: 0;
  transform: translate(100vw, 0);
  transition: all 1s;
}

#career .ergo-img-box.is-active {
  opacity: 1;
  transform: translate(0, 0);
}

#career .ergo-work-img {
  width: 100%;
}

#career .ergo-work-box {
  margin-top: 5vw;
  width: 65%;
  height: 30vw;
  background-image: url(./image/pixta_77006042_M.jpg);
  background-size: cover;
  background-position: center;
}

#career .ergo-work-box.designer {
  background-image: url(./image/pixta_57550799_M.jpg);
}

#career .person-container {
  margin: 8vw 10vw;
  background-color: white;
  padding: 5vw;
}

#career .person-container .left-box {
  width: 30%;
  margin-right: 5%;
}

#career .person-container .right-box {
  width: 65%;
}

#career .item-title {
  align-items: last baseline;
  margin-bottom: 10px;
}

#career .person-item {
  margin-bottom: 3vw;
}

#career .person-item:last-child {
  margin: 0;
}

#career .person-item span {
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 32px;
  margin-right: 8px;
  color: #e61673;
}

#career .person-item h3 {
  font-weight: 500;
  font-size: 18px;
}

#career .entry-container {
  position: relative;
  margin: 0 10vw;
}

#career .guidebook {
  align-items: center;
}

#career .entry-container h2 {
  text-align: left;
  margin-bottom: 60px;
  display: inline-block;
}

#career .entry-container .mission {
  left: -2vw;
  top: -40px;
}

@media screen and (max-width: 1024px) {
  #career .ergo-work-container {
    margin: 0 6vw;
    position: relative;
  }

  #career .person-container {
    margin: 8vw 6vw;
    padding: 5vw 3vw;
  }
}

@media screen and (max-width: 768px) {
  #career .ergo-work-container {
    margin: 0 8vw;
    position: relative;
  }

  #career .how-career {
    text-align: left;
    padding: 0 8vw;
    font-size: 14px;
    margin-bottom: 80px;
  }

  #career .ergo-work {
    flex-direction: column;
    align-items: flex-start;
  }

  #career .ergo-work .left-box {
    width: 100%;
  }

  #career .ergo-work .right-box {
    width: 100%;
  }

  #career .ergo-work-container span {
    top: -30px;
    left: -2vw;
    font-size: 28px;
  }

  #career .person-container .left-box {
    width: 100%;
    padding: 0 0 0 8vw;
    margin-right: 0;
    background-color: #fff5f7;
  }

  #career .person-container .right-box {
    width: 100%;
  }

  #career .right-box p {
    font-size: 14px;
  }

  #career .ergo-work-box {
    width: 75%;
    height: 40vw;
  }

  #career h2 {
    padding: 20px 0;
    font-size: 20px;
    color: #e61673;
    position: relative;
    text-align: left;
  }

  #career .person-container h2 {
    padding: 20px 0 0;
  }

  #career .entry-container h2 {
    margin-bottom: 0;
  }

  #career h2::after {
    display: none;
  }

  #career .person-container {
    margin: 8vw 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
  }

  #career .person-container .right-box .person-item {
    padding: 5vw 8vw;
  }

  #career .person-item span {
    font-family: "メイリオ", "Meiryo", sans-serif;
    font-size: 20px;
  }

  #career .person-item h3 {
    font-size: 16px;
  }

  #career .person-container .right-box .person-item:nth-child(2n-1) {
    background-color: #fff5f7;
  }

  #career .entry-container {
    margin: 50px 6vw;
  }
}

@media screen and (max-width: 425px) {
  #career .ergo-work {
    margin-top: 60px;
  }
}

.entry {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.entry .container h2 {
  font-size: 36px;
  font-weight: bold;
}
.entry .container p {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

.entry .container .entry-button {
  margin-top: 75px;
  display: flex;
  justify-content: center;
}
.entry .container .entry-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 34px;
  font-size: 14px;
  color: white;
  border: solid 1px #e61773;
  background: #e61773 0% 0% no-repeat padding-box;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.entry .container .entry-button a .button-arrow {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 7px;
  margin-left: 5px;
}

.entry .container .entry-button a .button-arrow::before,
.entry .container .entry-button a .button-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 6px;
  height: 1px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 0.5px) 50%;
  transition: all 0.3s ease;
}

.entry .container .entry-button a .button-arrow::before {
  transform: rotate(36.85deg);
}

.entry .container .entry-button a .button-arrow::after {
  transform: rotate(-36.85deg);
}

.entry .container .entry-button a:hover {
  background: #ffffff;
  color: #e61773;
}

.entry .container .entry-button a:hover .button-arrow::before,
.entry .container .entry-button a:hover .button-arrow::after {
  background-color: #e61773;
}

@media screen and (max-width: 670px) {
  .staffing-intro .container .intro-title {
    font-size: 24px;
  }
  .entry .container h2 {
    font-size: 20px;
  }
  .entry .container p {
    font-size: 14px;
  }
  .entry .container p {
    margin-top: 0;
  }
  .entry .container .entry-button {
    margin-top: 20px;
  }
}

#contact .form-container {
  padding: 8vw;
}

#contact button,
#contact input,
#contact select,
#contact textarea {
  background-color: white;
  border: 1px solid #707070;
}

#contact tr {
  display: flex;
  align-items: center;
  margin-bottom: 2vw;
  justify-content: center;
}

#contact th {
  display: block;
  width: 185px;
  margin-right: 5%;
}

#contact td {
  display: block;
  width: 65%;
}

#contact input,
#contact textarea {
  border-radius: 5px;
  padding: 1px 10px;
}

#contact td .long {
  width: 100%;
}

#contact .wpcf7-list-item-label {
  margin: 0 10px;
}

#contact th span {
  display: block;
}

#contact .haveto {
  color: white;
  padding: 0.5px 8px;
  background-color: #e61673;
}

#contact th p {
  display: flex;
  justify-content: space-between;
}

#contact .spam {
  margin: 5vw 0 3vw;
}

#contact .inquiry tr:last-child td p {
  width: 100%;
  height: auto;
  background-color: white;
  border: 1px solid #707070;
  border-radius: 5px;
  padding: 0 8px;
  height: 240px;
  overflow: scroll;
  font-weight: bold;
}

#contact .inquiry + p label {
  display: block;
  text-align: center;
  margin-bottom: 3vw;
}

#contact .inquiry + p + p {
  display: flex;
  justify-content: center;
}

#contact .inquiry + p + p input {
  width: 50%;
  padding: 1vw 5vw;
  font-weight: bold;
  color: white;
  background-color: #e61673;
  font-size: 22px;
  border: none;
}

#contact .inquiry + p + p span {
  display: none;
}

.wpcf7-form-control.wpcf7-checkbox.wpcf7-exclusive-checkbox.check1 {
  display: flex;
  flex-direction: column;
}

#contact .inquiry tr:last-child td p span {
  display: block;
}

@media screen and (max-width: 768px) {
  #contact .form-container {
    font-size: 14px;
    padding: 3vw 8vw;
  }

  #contact tr {
    flex-direction: column;
    align-items: flex-start;
    margin: 5vw 0;
  }

  #contact th {
    width: 100%;
    margin: 10px 0;
  }

  #contact th p {
    justify-content: flex-start;
  }

  #contact th p span:first-child {
    margin-right: 10px;
  }

  #contact td {
    width: 100%;
  }

  #contact .inquiry + p + p input {
    width: auto;
    font-size: 18px;
    padding: 15px 80px;
  }
}

#achievements .achievements-container {
  padding: 8vw 6vw;
}

#achievements .ach-list-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 3vw;
}

#achievements .custom-post {
  padding: 4vw 2vw;
  border-bottom: 1px solid black;
}

#achievements .custom-post a {
  align-items: flex-start;
}

#achievements .custom-post img {
  width: 100%;
  height: auto;
}

#achievements .post-cat,
#single .post-cat {
  display: inline-block;
  font-size: 14px;
  width: auto;
  padding: 2px 15px;
  background-color: #e61673;
  color: #fff5f7;
  margin: 20px 0;
}

#achievements .post-title {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #achievements .achievements-container {
    padding: 8vw 10vw;
  }

  #achievements .post-cat,
  #single .post-cat {
    display: inline-block;
    font-size: 12px;
    width: auto;
    background-color: #e61673;
    color: #fff5f7;
    margin: 12px 0;
  }

  #single .post-cat {
    font-size: 14px;
  }

  #achievements .post-title {
    font-size: 14px;
  }

  #achievements .ach-list-container {
    grid-template-columns: 1fr;
  }

  #achievements .custom-post {
    margin: 0;
    padding: 6vw 0 4vw;
  }
}

#news .news-container {
  padding: 8vw 10vw 0;
}

#news .post-container {
  margin: 3vw 0;
}

#news .post-list {
  margin: 5px 0;
  padding: 25px 0;
  border-bottom: 1px solid #222;
}

#news .post-list:first-child {
  border-top: 1px solid #222;
}

#news .post-list a {
  align-items: center;
  width: 100%;
  height: 100%;
}

#news .post-list .left-box {
  align-items: center;
  width: 25%;
}

#news .post-list h2 {
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
}

#news .post-date {
  font-size: 14px;
  margin-right: 2vw;
}

#news .post-cat {
  font-size: 14px;
  padding: 2px 15px;
  background-color: #e61673;
  color: #fff5f7;
}

@media screen and (max-width: 1024px) {
  #news .post-list .left-box {
    align-items: center;
    width: 35%;
  }
}

@media screen and (max-width: 768px) {
  #news .post-list {
    padding: 15px 0;
  }

  #news .post-list a {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  #news .post-list .left-box {
    width: 100%;
    margin-bottom: 10px;
  }

  #news .post-list h2 {
    font-size: 14px;
  }

  #news .post-date,
  #news .post-cat {
    font-size: 12px;
    margin-right: 30px;
  }
}

#single .single-container,
#single_custom .single-container {
  padding: 10vw;
}

#single .single-box {
  padding: 3vw 5vw;
  background-color: white;
}

#single .single-info {
  align-items: center;
}

#single .post-cat {
  margin-right: 30px;
}

#single h2 {
  font-size: 16px;
  padding: 3vw 0 4vw;
  border-bottom: 1px solid #707070;
}

#single .single-content {
  padding: 5vw 0;
  border-bottom: 1px solid #707070;
  margin-bottom: 4vw;
}

#single .post-link-box {
  position: relative;
  height: 50px;
}

#single span.prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#single span.back {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#single span.next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #single .single-container {
    padding: 10vw 6vw;
  }

  #single h2 {
    font-size: 14px;
    padding-top: 0;
  }

  #single .post-date {
    font-size: 14px;
  }

  #single .single-content {
    font-size: 14px;
  }

  #single .post-link-box {
    font-size: 14px;
  }
}

#single_custom .single-img {
  text-align: center;
  margin-bottom: 3vw;
}

#single_custom .single-img img {
  width: 80%;
  height: auto;
}

#single_custom .post-cat {
  display: inline-block;
  font-size: 14px;
  width: auto;
  padding: 2px 15px;
  background-color: #e61673;
  color: #fff5f7;
}

#single_custom h2 {
  font-size: 16px;
  padding: 3vw 0 3vw 10%;
  border-bottom: 1px solid #707070;
}

#single_custom .single-content {
  padding: 4vw 0;
  border-bottom: 1px solid #707070;
}

#single_custom .post-link-box {
  font-size: 14px;
  margin-top: 4vw;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #single_custom .single-top {
    display: flex;
    flex-direction: column-reverse;
  }

  #single_custom .single-img {
    margin-bottom: 0;
    margin-top: 3vw;
  }

  #single_custom .single-img img {
    width: 100%;
  }

  #single_custom h2 {
    text-align: center;
    font-size: 14px;
    padding-left: 0;
  }

  #single_custom .single-content p {
    font-size: 14px;
  }
}

@media screen and (max-width: 425px) {
  #single_custom .post-cat {
    font-size: 12px;
  }

  #single_custom .single-img {
    margin-bottom: 0;
    margin-top: 30px;
  }

  #single_custom h2 {
    padding: 20px 0;
  }

  #single_custom .post-link-box {
    font-size: 12px;
  }
}

.ach-cat {
  color: #e61673;
  border: 1px solid #e61673;
  margin-right: 2vw;
  margin-bottom: 2vw;
}

.ach-cat select {
  color: #e61673;
  text-align: center;
  height: 25px;
  width: 180px;
}

.ach-cat .select-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: 30px;
  background-color: #e61673;
  padding-left: 6px;
  padding-bottom: 4px;
}

.ach-cat .select-arrow span {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid;
  border-color: transparent transparent white white;
  transform: rotate(-45deg);
  transform-origin: 30% 70%;
  transition: all 0.5s;
}

.ach-cat .select-arrow span.is-open {
  transform: rotate(135deg);
}

.ach-cat-row {
  justify-content: flex-end;
}

.title-container {
  margin: 5vw 0 3vw;
  padding: 0 7vw;
}

.title-container h1 {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
}

.title-container h1::before {
  position: absolute;
  content: "";
  width: 6vw;
  height: 2px;
  background-color: #e61673;
  left: -7vw;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .title-container {
    margin: 7vw 0 4vw;
    padding: 0 7vw;
  }

  .ach-cat {
    margin-right: 0;
  }

  .ach-cat select {
    height: 20px;
    font-size: 12px;
    width: 90px;
  }

  .ach-cat .select-arrow span {
    width: 10px;
    height: 10px;
  }

  .title-container h1 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 7px;
  }

  .breadcrumbs {
    font-size: 10px;
  }
}

/*:::::::::::::::::::::: FOOTER ::::::::::::::::::::::::*/

footer {
  position: relative;
  height: 500px;
  padding: 70px 117px;
  background-color: #fff5f7;
}

footer ul {
  user-select: none;
}

footer .logo {
  width: 90px;
  margin-bottom: 30px;
}

footer .logo img {
  width: 100%;
}

footer .office {
  margin-bottom: 20px;
}

footer .container {
  justify-content: space-between;
  height: 360px;
}

footer .right-box {
  margin-left: 30px;
  width: 700px;
}

footer .footer-lists {
  height: 100%;
}

footer .footer-list {
  height: 90%;
  flex-wrap: wrap;
}

footer .footer-list > li {
  margin-bottom: 10px;
  margin-right: 30px;
}

footer .footer-list > li > a {
  font-weight: bold;
}

footer .footer-list .parent {
  font-weight: bold;
}

footer .footer-list > li > ul li {
  margin: 10px 0 10px 15px;
}

footer .ham-menu {
  display: none;
}

footer .ham-list .sub-menu a {
  font-size: 14px;
  padding-left: 20px;
}

footer .sub-menu {
  font-size: 14px;
}

footer .ham-list .sub-menu li {
  border-bottom: 1px solid #707070;
}

footer .ham-list .sub-menu li:first-child {
  border-top: 1px solid #707070;
}

footer .ham-list .sub-menu li:last-child {
  border-bottom: none;
}

footer small {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #707070;
}

@media screen and (max-width: 1200px) {
  footer {
    position: relative;
    height: 500px;
    padding: 70px 30px;
    background-color: #fff5f7;
  }
}

@media screen and (max-width: 1024px) {
  footer {
    position: relative;
    height: 700px;
    padding: 70px 30px;
    background-color: #fff5f7;
  }

  footer .footer-list {
    height: 100%;
    flex-wrap: wrap;
  }

  footer .right-box {
    margin-left: 50px;
    width: auto;
  }

  footer .container {
    height: 95%;
    justify-content: flex-start;
  }

  footer .ham-menu a {
    color: #707070;
  }

  footer .ham-list > li {
    border-bottom: 1px solid #707070;
    justify-content: space-between;
    flex-direction: column;
  }

  footer .ham-list > li .plus {
    color: #707070;
  }

  footer .ham-list ul {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 14px;
    position: relative;
    height: auto;
    padding: 50px;
    padding-bottom: 70px;
    background-color: #fff5f7;
    color: #707070;
  }

  footer .logo {
    display: inline-block;
    margin: 0 auto 30px;
    width: 55px;
    text-align: center;
  }

  footer .right-box {
    display: none;
  }

  footer .container {
    flex-direction: column;
    padding-left: 0px;
  }

  footer .left-box {
    margin-bottom: 50px;
  }

  footer .ham-menu {
    display: block;
  }
}
