@charset "UTF-8";
/*=============================
font
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://use.typekit.net/qhv2gvq.css");
@font-face {
  font-family: "A1MinchoStd-Bold";
  font-style: normal;
  font-weight: normal;
  src: url("../font/A-OTF-A1MinchoStd-Bold.otf") format("opentype");
}
@font-face {
  font-family: "GothicBBBPr5-Medium";
  font-style: normal;
  font-weight: normal;
  src: url("../font/A-OTF-GothicBBBPr5-Medium.otf") format("opentype");
}
/*=============================
color
=============================*/
/*=============================
responsive
=============================*/
.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.pc-only {
  display: block;
}
@media screen and (max-width: 959px) {
  .pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*=============================
common
=============================*/
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  background-color: #fff;
  color: #333;
  font-family: "A1MinchoStd-Bold", "adobe-garamond-pro", "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
a:hover {
  opacity: 0.9;
  transition: all ease 0.5s;
}

ul,
li {
  list-style: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.inner {
  width: 83%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 88%;
  }
}

h2 {
  font-family: "GothicBBBPr5-Medium", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.7rem;
  }
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  font-family: "GothicBBBPr5-Medium", sans-serif;
}

.header-left {
  width: 200px;
}
.header-left a {
  display: block;
}

.header-right {
  width: 145px;
}
.header-right > a {
  display: inline-block;
}
.header-right a:first-child {
  color: #000;
  text-decoration: none;
}
.header-right a:last-child {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  width: 145px;
  padding: 13px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  header {
    padding: 5px 0 5px 17px;
  }
  .header-left {
    width: 40%;
  }
  .header-right {
    width: auto;
  }
  .header-right a:first-child {
    display: none;
    margin: 46px 0 0;
  }
  .header-right a:last-child {
    /* position: fixed;
    top: 0;
    right: 0; */
    padding: 20px 0;
  }
}
.mv {
  height: calc(100vh - 55px);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  text-align: left;
  display: flex;
  align-items: end;
  background-image: url(../img/mv_pc.jpg);
}
@media screen and (max-width: 959px) {
  .mv {
    min-height: 800px;
    height: auto;
    background: url(../img/mv_sp.jpg) no-repeat 50% 50%/cover;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 400px;
    height: auto;
  }
}

.mv-msg {
  position: absolute;
  width: 40%;
  max-width: 220px;
  top: 120px;
  right: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 959px) {
  .mv-msg {
    width: 22%;
    top: 150px;
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .mv-msg {
    width: 19%;
    top: 60px;
    right: 25px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.mv-msg .flow {
  width: 100%;
  overflow-y: hidden;
}

@keyframes animeflow {
  /* アニメーションの動き */
  0% {
    max-height: 0; /* 完全に透明 */
  }
  100% {
    max-height: 1000px; /* 透明度無し、通常表示 */
  }
}
.animation-flow01 {
  overflow-y: hidden;
  animation-name: animeflow;
  animation-duration: 5s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .animation-flow01 {
    display: none;
  }
}

.animation-flow01_sp {
  display: none;
  overflow-y: hidden;
  animation-name: animeflow;
  animation-duration: 5s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .animation-flow01_sp {
    display: block;
  }
}

.animation-flow02 {
  overflow-y: hidden;
  animation-name: animeflow;
  animation-duration: 5s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-delay: 2s;
}
@media screen and (max-width: 767px) {
  .animation-flow02 {
    display: none;
  }
}

.animation-flow02_sp {
  display: none;
  overflow-y: hidden;
  animation-name: animeflow;
  animation-duration: 5s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-delay: 1.3s;
}
@media screen and (max-width: 767px) {
  .animation-flow02_sp {
    display: block;
  }
}

.animation-flow03 {
  overflow-y: hidden;
  animation-name: animeflow;
  animation-duration: 5s; /* 5秒間で表示 */
  animation-fill-mode: both;
  animation-delay: 3s;
}
@media screen and (max-width: 767px) {
  .animation-flow03 {
    display: none;
  }
}

.message {
  padding: 70px 0;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 40px 0;
  }
}
.message h2 {
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 0.75em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .message h2 {
    font-size: 1.7rem;
  }
}
.message h2::after {
  content: "";
  display: block;
  width: 10%;
  height: 4px;
  margin: 1.5em auto 0;
  background: currentColor;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .message h2::after {
    width: 30%;
  }
}
.message p {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .message p {
    margin-bottom: 15px;
  }
}

.careers {
  color: #fff;
  background-color: #000;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .careers {
    padding: 45px 0;
  }
}
.careers .ch {
  width: 70%;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .careers .ch {
    margin: 30px auto 30px;
    width: 100%;
  }
}

.works {
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 40px 0 10px;
  }
}
.works .works-list {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.works .works-list .works-list_item {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .works .works-list .works-list_item {
    width: 90%;
    margin: 0 auto 35px;
  }
}
.works .works-list .works-list_item .works-img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .works .works-list .works-list_item .works-img {
    width: 90%;
    margin: 15px auto 0;
  }
}
.works .works-list .works-list_item .works-img .caption {
  margin-top: 5px;
  font-size: 1rem;
  text-align: right;
}
.works .works-list .works-list_item .works-description {
  text-align: justify;
  margin-top: 10px;
  font-size: 1.2rem;
  letter-spacing: 0em;
}

.profile {
  padding: 70px 0;
}
@media screen and (max-width: 959px) {
  .profile {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 40px 0;
  }
}
.profile h2 {
  text-align: left;
}

.gr2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.gr2_left {
  width: 47%;
}

.gr2_right {
  width: 45% !important;
}
@media screen and (max-width: 959px) {
  .gr2_right {
    width: 50%;
    font-size: 14px;
  }
}
.gr2_right table {
  border-collapse: collapse;
  width: 100% !important;
}
.gr2_right th {
  padding: 6px 0 4px;
  width: 100px;
  font-weight: normal;
  border-bottom: 1px solid #000;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 4px;
  text-align: left;
}
.gr2_right td {
  padding: 6px 0 4px;
  width: calc(100% - 100px);
  border-bottom: 1px solid #000;
  line-height: 1.7;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  .gr2_right td {
    width: calc(100% - 80px);
  }
}

.company h2 {
  text-align: left;
}

.gr1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.gr1_left {
  width: 43%;
}
.gr1_left h2 {
  font-size: 19px;
  font-weight: 500;
  padding: 5px 0 5px 22px;
  border-left: 8px solid #000;
  letter-spacing: 4px;
  margin: 0 0 15px;
}
.gr1_left p {
  line-height: 1.8;
  letter-spacing: 4px;
  margin-bottom: 50px;
  font-size: 15px;
}
@media screen and (max-width: 959px) {
  .gr1_left p {
    padding: 30px 0;
    font-size: 14px;
  }
}

.gr1_right {
  width: 47%;
}
.gr1_right h2 {
  padding: 5px 0 5px 22px;
  border-left: 8px solid #000;
  letter-spacing: 4px;
  margin: 0 0 15px;
}
.gr1_right p {
  margin-bottom: 10px;
  text-align: justify;
}
@media screen and (max-width: 959px) {
  .gr1_right p {
    font-size: 14px;
  }
}

.contact {
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}
.contact .contact-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrapper {
    display: block;
    margin-top: 20px;
  }
}
.contact .contact-wrapper .item {
  flex: 1;
  padding: 1em;
}
.contact .contact-wrapper .item img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrapper .item img {
    width: 80%;
  }
}
.contact .contact-wrapper .divider {
  width: 1px;
  background: #333;
  margin: 0 1em;
}
.contact .contact-wrapper .mail img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contact .contact-wrapper .mail img {
    width: 100%;
  }
}

footer {
  padding-bottom: 40px;
}
footer a {
  display: block;
  width: 25%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer a {
    width: 70%;
  }
}

@media only screen and (max-width: 767px) {
  .profile_group2 {
    margin-top: 25px;
  }
  .profile_group1,
  .profile_group2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .profile_group1,
  .profile_group2,
  .profile_group3 {
    padding: 0 0 0;
  }
  .profile_group_img,
  .profile_group_box.lg,
  .profile_group_table.lg,
  .profile_group_box.sm,
  .profile_group_table.sm,
  .profile_group_box.md,
  .profile_group_table.md,
  .profile_group1 .profile_group_box.md {
    width: 100%;
    margin: 0 0 25px;
  }
  .profile_group_box {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2;
  }
  .profile_group_box p {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2;
  }
  .profile_group_table th,
  .profile_group_table td {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2;
  }
  .profile_group_box p br {
    display: none;
  }
  .profile_group_table th {
    width: 63px;
  }
  .profile_group_table td {
    width: calc(100% - 63px);
  }
  .profile_group_box h2 {
    font-size: 16px;
    border-left: 4px solid #000;
    letter-spacing: 2px;
    margin: 0 0 10px;
  }
  .profile > div:nth-last-of-type(1) {
    padding: 0 0 30px;
  }
  .profile h1.md {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }
  .gr1 {
    padding: 0px;
    display: block;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
  }
  .gr1_left {
    width: 100%;
  }
  .gr1_left h2 {
    font-size: 16px;
    margin-bottom: 17px;
    border-left: 4px solid #000;
    letter-spacing: 2px;
  }
  .gr1_left p {
    font-size: 13px;
    letter-spacing: 0;
    line-height: 2;
    margin-bottom: 25px;
  }
  .gr1_right {
    width: 100%;
    margin-top: 20px;
  }
  .gr1_right h2 {
    font-size: 16px;
    margin-bottom: 17px;
    border-left: 4px solid #000;
    letter-spacing: 2px;
  }
  .perform {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .perform dl {
    display: flex;
    margin-bottom: 8px;
    font-size: 11px;
  }
  .perform dt {
    position: relative;
    letter-spacing: 0.22em;
    width: 130px;
    font-size: 11px;
  }
  .perform dt::before {
    position: absolute;
    left: 0;
    top: 8px;
    content: "";
    width: calc(100% - 5px);
    border-bottom: dotted 1px #6c142a;
  }
  .perform dt span {
    position: relative;
    background-color: #fff !important;
  }
  .perform dd {
    width: calc(100% - 130px);
    font-size: 11px;
  }
  .gr1_right p {
    font-size: 13px;
    text-align: justify;
    letter-spacing: 0;
    line-height: 2;
    margin-bottom: 0px;
  }
  .gr2 {
    padding: 0;
    display: block;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
    margin-top: 30px;
  }
  .gr2_left {
    width: 100%;
  }
  .gr2_right {
    width: 100% !important;
    margin-top: 15px;
  }
  .gr2_right table {
    border-collapse: collapse !important;
    margin-top: 30px;
    width: 100% !important;
  }
  .gr2_right tr {
    padding: 5px 0;
  }
  .gr2_right th {
    width: 65px;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.7;
    text-align: left;
    border-bottom: 1px solid #000;
  }
  .gr2_right td {
    width: calc(100% - 65px);
    font-size: 13px;
    letter-spacing: 0;
    border-bottom: 1px solid #000;
  }
}/*# sourceMappingURL=style.css.map */