@import url("https://use.typekit.net/iic8srp.css");

html {
    font-size: calc((80vw - 320px) / 140 + 14px);
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    background: #DFE5E5;
    color: #15192b;
    display: grid;
    font-family: all-round-gothic, a-otf-ud-shin-go-pr6n, sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
    min-height: 100vh;
    width: 100%;
 }

 body::before {
  background: url(../img/logo_bg.svg) no-repeat bottom -20vh right -10%;
  background-size: 90vh;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -1;
}

 img {
  border: none;
  height: auto;
  max-width: 100%;
  width /***/:auto;
}

header {
  background: rgba(223,229,229,0.9);
  height: 100px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}

.logo {
  position: absolute;
  left: 40px;
  top: 25px;
  z-index: 0;
}

.logo img {
  transition: all 0.3s ease-in-out;
  width: 200px;
}

.logo img:hover {
  opacity: 0.6;
}

.lang {
  font-size: 0.8rem;
  position: absolute;
  right: 100px;
  top: 35px;
  text-align: right;
  z-index: 0;
}

.lang span {
  font-weight: 600;
}

.lang a {
  color: #022461;
}

.nav-container {
  display: block;
  position: relative;
}

.nav-container .checkbox {
  cursor: pointer;
  display: block;
  height: 32px;
  width: 32px;
  opacity: 0;
  position: fixed;
  right: 2rem;
  top: 38px;
  z-index: 999;
}

.nav-container .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 26px;
  width: 32px;
  position: fixed;
  right: 2rem;
  top: 35px;
  z-index: 99;
}

.nav-container .hamburger-lines .line {
  border-radius: 10px;
  background: #022461;
  display: block;
  height: 4px;
  width: 100%;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  align-items: center;
  background: #022461;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 0vh;
  width: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
  text-align: center;
  z-index: 4;
}

.navbar .menu-items li {
  display: none;
  font-weight: 500;
  padding: 1rem 0 1rem 0;
}

.navbar .menu-items li a {
  background-image: linear-gradient(#E27B6D, #E27B6D);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 0 3px;
  color: #E27B6D;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.navbar .menu-items li a:hover{
  background-position: bottom center;
  background-size: 100% 3px; 
}

.navbar .menu-items li a img {
  height: 32px;
  width: 32px;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  border-bottom: 20px solid #E27B6D;
  height: 100vh;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items li {
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  background: #E27B6D;
  transform: rotate(46deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  background: #E27B6D;
  transform: rotate(-46deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}

/*/animation/*/

.animate {
  opacity: 0;
}

.animate__fadein_up {
  animation: fadein_up 0.3s ease-in-out 0.5s forwards;
}

@keyframes fadein_up {
  0% { opacity: 0; transform: translateY(2rem);}
  100% { opacity: 1; transform: translateY(0);}
}

.animate__fadein_down {
  animation: fadein_down 0.3s ease-in-out 0.5s forwards;
}

@keyframes fadein_down {
  0% { opacity: 0; transform: translateY(-2rem);}
  100% { opacity: 1; transform: translateY(0);}
}

.animate__fadein_l {
  animation: fadein_l 0.3s ease-in-out 0.5s forwards;
}

@keyframes fadein_l {
  0% { opacity: 0; transform: translateX(-2rem);}
  100% { opacity: 1; transform: translateX(0);}
}

.animate__fadein_r {
  animation: fadein_r 0.3s ease-in-out 0.5s forwards;
}

@keyframes fadein_r {
  0% { opacity: 0; transform: translateX(2rem);}
  100% { opacity: 1; transform: translateX(0);}
}

.animate__fadein_s {
  animation: fadein_s 0.5s ease-in-out 0.5s forwards;
}

@keyframes fadein_s {
  0% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

#contents {
  margin: 0 auto;
  padding-top: 4rem;
  position: relative;
  z-index: 0;
  width: 100%;
}

#contents h2 {
  color: #022461;
  font-weight: 600;
  letter-spacing: 0.1rem;
  position: relative;
}

#contents .sub_c {
  background-image: linear-gradient(#E27B6D, #E27B6D);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 50% 3px;
  font-size: 2.5rem;
  margin: 0 auto;
  padding: 6rem 0 1rem 0;
  width: fit-content;
}

#contents .sub_rt {
  color: #022461;
  letter-spacing: 0.2rem;
  font-size: 4rem;
  margin: 6rem 2rem -1rem 0;
  text-align: right;
}

#contents .sub_rt::before {
  color: rgba(255,255,255,0.3);
  content: "Alliance Creator";
  position: absolute;
  top: 70%;
  transform: scaleY(-1);
  right: 0;
}

#contents .sub_rt span,
#contents .sub_lt span {
  color: #E27B6D;
}

#contents .sub_lt {
  color: #022461;
  letter-spacing: 0.2rem;
  font-size: 4rem;
  margin: 6rem 0 -1rem 2rem;
  text-align: left;
}

#contents .sub_lt::before {
  color: rgba(255,255,255,0.3);
  content: "Service";
  position: absolute;
  top: 70%;
  transform: scaleY(-1);
  left: 0;
}

.news {
  margin: 0 auto;
  padding-top: 2rem;
  width: fit-content;
}

.news ul {
  display: flex;
  margin-bottom: 1rem;
}

.news ul li {
  margin: 0.5rem;
}

.news ul li:nth-child(1) {
  color: #022461;
  font-weight: 600;
}

.news ul li a {
  transition: all 0.3s ease-in-out;
}

.news ul li a:hover {
  color: #E27B6D;
}

.creator {
  background: rgba(169,167,189,0.7);
  padding: 9rem 0 4rem 0;
}

.creator .list1,
.creator .list2 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  margin-top: 100px;
}

.creator .list1 li,
.creator .list2 li {
  aspect-ratio: auto 5/6;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  margin: -9rem 2px 0 2px;
  position: relative;
  text-align: right;
  width: 24%;
  z-index: 2;
}

.creator .list1 li::after,
.creator .list2 li::after {
  aspect-ratio: auto 5/6;
  clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0 80%, 0 20%);
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 97%;
  z-index: -1;
}

.creator .list1 .name,
.creator .list2 .name {
  position: absolute;
  left: 0;
  right: 0;
  top: 62%;
  text-align: center;
}

.creator .list1 li .name a:hover,
.creator .list2 li .name a:hover {
  font-weight: 600;
}

.creator .list1 li:nth-child(1),
.creator .list1 li:nth-child(4),
.creator .list2 li:nth-child(2) {
  background: #000;
}

.creator .list1 li:nth-child(1)::after,
.creator .list1 li:nth-child(4)::after,
.creator .list2 li:nth-child(2)::after {
  background: #DFE5E5;
}

.creator .list1 li:nth-child(1) .name,
.creator .list1 li:nth-child(4) .name,
.creator .list2 li:nth-child(2) .name {
  color: #000;
}

/*/
.creator .list1 li:nth-child(4) .name {
  top: 37%;
}
/*/

.creator .list1 li:nth-child(2),
.creator .list2 li:nth-child(3) {
  background: #E27B6D;
}

.creator .list1 li:nth-child(2)::after,
.creator .list2 li:nth-child(3)::after {
  background: #022461;
}

.creator .list1 li:nth-child(2) .name,
.creator .list2 li:nth-child(3) .name {
  color: #E27B6D;
}

.creator .list1 li:nth-child(3),
.creator .list2 li:nth-child(1) {
  background: #022461;
}

.creator .list1 li:nth-child(3)::after,
.creator .list2 li:nth-child(1)::after {
  background: #E27B6D;
}

.creator .list1 li:nth-child(3) .name,
.creator .list2 li:nth-child(1) .name {
  color: #022461;
}

.creator ul li img {
  transition: all 0.3s ease-in-out;
}

.creator ul li .icon img {
  clip-path: circle(50%);
  max-width: 450px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 2em;
  width: 70%;
}

.creator ul li .name h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
}

.creator ul li .en {
  font-size: 1.3rem;
}

.about ul,
.about_en ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4rem;
  width: 100%;
}

.about li,
.about_en li {
  line-height: 2rem;
}

.about li:nth-child(1),
.about_en li:nth-child(1) {
  margin-bottom: -5rem;
  padding: 0 1rem 0 3rem;
  width: 42%;
}


.about li:nth-child(2) {
  filter: drop-shadow(-15rem 11.2rem 0px rgba(169,167,189,0.2)) 
          drop-shadow(-15rem -11.2rem 0px rgba(169,167,189,0.1))
          drop-shadow(15rem -11.2rem 0px rgba(169,167,189,0.2))
          drop-shadow(15rem 11.2rem 0px rgba(169,167,189,0.1));
}

.about_en li:nth-child(2) {
  filter: drop-shadow(-19rem 11.3rem 0px rgba(169,167,189,0.2)) 
          drop-shadow(-19rem -11.3rem 0px rgba(169,167,189,0.1))
          drop-shadow(19rem -11.3rem 0px rgba(169,167,189,0.2))
          drop-shadow(19rem 11.3rem 0px rgba(169,167,189,0.1));
}

_::-webkit-full-page-media, _:future, :root .about li:nth-child(2) {
  filter: none;
}

.about li:nth-child(2) div,
.about_en li:nth-child(2) div {
  background: #022461;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
  height: fit-content;
  margin: 0 auto;
  padding: 6rem;
  text-align: center;
  width: fit-content;
}

.about li:nth-child(2) div .name,
.about_en li:nth-child(2) div .name{
  font-size: 0.8rem;
  padding-top: 1rem;
}

.about li:nth-child(3) {
  margin-left: auto;
  margin-top: -5rem;
  text-align: right;
  padding: 0 3rem 0 1rem;
}

.about_en li:nth-child(3) {
  margin-left: auto;
  margin-top: -5rem;
  text-align: left;
  width: 38%;
}

.company {
  margin: 0 auto;
  max-width: 1280px;
  width: 65%;
}

.company h3 {
  color: #022461;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 4rem 0 2rem 0;
  text-align: center;
}

.company ul {
  display: flex;
  justify-content: center;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}

.company ul li {
  border-bottom: 1px solid #A9A7BD;
  padding: 1rem;
}

.company li:nth-child(1) {
  color: #022461;
  font-weight: 600;
  width: 25%;
}

.company li:nth-child(2) {
  width: 75%;
}

.service {
  background: rgba(169,167,189,0.7);
  padding: 4rem 0 4rem 0;
  width: 100%;
}

.service ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service ul li {
  aspect-ratio: 8/2;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  margin: 1rem;
  padding: 2rem;
  width: 45%;
}

.service li h3 {
  background-image: linear-gradient(#E27B6D, #E27B6D);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 3rem 3px;
  color: #022461;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  text-align: center;
  width: fit-content;
}

.service li p {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.service .management {
  background: rgba(255,255,255,0.7) url(../img/bg_manage.webp) no-repeat center center;
  background-size: auto 90%;
}

.service .produce {
  background: rgba(255,255,255,0.7) url(../img/bg_prdouce.webp) no-repeat center center;
  background-size: auto 90%;
}

.service .jack {
  background: rgba(255,255,255,0.7) url(../img/bg_jack.webp) no-repeat center center;
  background-size: auto 90%;
}

.contact {
  margin: 80px 0 40px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
}

.contact a {
  background: #022461;
  border: 0;
  border-radius: 40px;
  color: #fff;
  padding: 20px 40px 20px 40px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact a:hover {
  background: #fff;
  border: 2px solid #022461;
  color: #022461;
}

.contact_form {
  margin: 0 auto;
  max-width: 1280px;
  padding-top :4rem;
  width: 90%;
}

.contact_form p {
  text-align: center;
}

.contact_form h4 {
  color: #022461;
  margin-top: 2rem;
}

input[type="text"],
textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  margin: 10px 0 40px 0;
  padding: 20px;
  width: 100%;
}

input[type="text"]:focus,
textarea:focus {
  outline-color: #022461;
}

input[type="submit"] {
  background: #022461;
  border-radius: 30px;
  border: 2px solid rgba(0,0,0,0);
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 20px 80px 20px 80px;
  transition: all 0.3s ease-in-out;
  width: fit-content;
}

input[type="submit"]:hover {
  background: #fff;
  border: 2px solid #022461;
  color: #022461;
  cursor: pointer;
}

@media (prefers-color-scheme: dark) {
  input[type="text"],
  textarea {
    background: #fff;
    color: #000;
  }
}

footer {
    background: #022461;
    color: #fff;
    font-size: 0.8rem;
    line-height: 2rem;
    margin-top: 4rem;
    padding: 2rem 0 2rem 0;
    position: relative;
    text-align: center;
    width: 100%;
}

footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  color: #A9A7BD;
}

footer a div {
  align-items: center;
  background: #eee;
  border-radius: 0 0 5px 5px;
  color: #022461;
  display: flex;
  justify-content: center;
  padding:  20px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 0;
  right: 5%;
}

footer a div:hover {
  background: #A9A7BD;
}

footer a div span {
  display: inline-block;
  vertical-align: middle;
  color: #022461;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

.text {
  margin: 0 auto;
  width: 90%;
}

.text h3 {
  color: #022461;
  margin: 3rem 0 1rem ;
}

.text ul {
  margin: 20px 0 20px 40px;
}
.text ul li {
  list-style-type: decimal;
  margin: 20px 0 20px 0;
}

.text .icon {
  margin: 3rem 0 3rem 0;
}

.text .icon img {
  clip-path: circle(50%);
  max-width: 400px;
  margin: auto;
  width: 70%;
}

.text .name {
  color: #022461;
  font-weight: 600;
  font-size: 2rem;
  margin: 3rem 0 3rem 0;
  text-align: center;
}

.text .profile {
  aspect-ratio: 8/2;
  background: rgba(169,167,189,0.2);
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  line-height: 1.8rem;
  margin: 0 auto;
  max-width: 1680px;
  padding: 1rem 5rem 1rem 5rem;
}

@media screen and (max-width: 1368px) {

  .creator .list1 li,
  .creator .list2 li {
    margin: -8.8rem 2px 0 2px;
  }

  .about li:nth-child(1) br,
  .about li:nth-child(3) br,
  .about_en li:nth-child(1) br,
  .about_en li:nth-child(3) br {
    display: none;
  }

  .about li:nth-child(3) {
    text-align: left;
    width: 38%;
  }
}

@media screen and (max-width: 1024px) {

  body::before {
    background: url(../img/logo_bg.svg) no-repeat center;
    background-size: 70% auto;
    width: 100%;
    height: 100%;
  }

  header {
    height: 80px;
  }
  .logo {
    top: 20px;
    left : 20px;
  }
  
  .logo img {
    width: 150px;
  }

  .lang {
    font-size: 1rem;
    top: 25px;
    right: 70px;
  }

  .nav-container .checkbox {
    height: 25px;
    width: 25px;
    right: 20px;
    top: 28px;
  }
  .nav-container .hamburger-lines {
    height: 21px;
    width: 26px;
    right: 20px;
    top: 28px;
  }

  .nav-container .hamburger-lines .line {
    height: 3px;
  }

  #contents {
    margin: 0;
    width: 100%;
  }

  .creator {
    padding: 2rem 0 2rem 0;
  }

  .creator .list1,
  .creator .list2 {
    margin: 0;
  }

  .creator .list1 li,
  .creator .list2 li {
    margin: 1rem;
    width: 40%
  }

  .creator .list1 li .name,
  .creator .list2 li .name {
    top: 63%;
  }

  .creator .list2 li:nth-child(3) {
    background: #000;
  }
  .creator .list2 li:nth-child(3)::after {
    background: #DFE5E5;
  }

  .creator .list2 li:nth-child(3) .name {
    color: #000;
  }

  .creator .list2 li:nth-child(1) {
    background: #E27B6D;
  }

  .creator .list2 li:nth-child(1)::after {
    background: #022461;
  }

  .creator .list2 li:nth-child(1) .name {
    color: #E27B6D;
  }

  .creator .list2 li:nth-child(2) {
    background: #022461;
  }

  .creator .list2 li:nth-child(2)::after {
    background: #E27B6D;
  }

  .creator .list2 li:nth-child(2) .name {
    color: #022461;
  }

  .about ul,
  .about_en ul {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 80px 0 20px;
    width: 100%;
  }

  .about li:nth-child(1),
  .about_en li:nth-child(1) {
    margin: 1rem 0 0 0;
    order: 2;
    padding: 0;
    width: 90%;
  }

  .about li:nth-child(1) br,
  .about li:nth-child(3) br,
  .about_en li:nth-child(1) br,
  .about_en li:nth-child(3) br {
    display: none;
  }
  
  .about li:nth-child(2),
  .about_en li:nth-child(2) {
    filter: none;
    order: 1;
    width: 100%;
  }
  
  .about li:nth-child(2) div,
  .about_en li:nth-child(2) div {
    clip-path: none;
    padding: 1rem 3rem 1rem 3rem;
    text-align: left;
    width: 100%;
  }

  .about li:nth-child(2) div .name,
  .about_en li:nth-child(2) div .name {
    text-align: right;
  }

  .about li:nth-child(3),
  .about_en li:nth-child(3) {
    margin: 1rem 0 0 0;
    padding: 0;
    order: 3;
    text-align: left;
    width: 90%;
  }

  .service ul li {
    display: block;
    margin: 0 auto;
    margin-top: 1rem;
    width: 80%;
  }

  .company {
    width: 90%;
  }

  .company ul li {
    padding: 10px 0 10px 0;
  }
  
  .company li:nth-child(1) {
    width: 20%;
  }
  
  .company li:nth-child(2) {
    width: 80%;
  }

}

@media screen and (max-width: 550px) {

  .navbar .menu-items {
    font-size: 1.2rem;
  }
  
  #contents h2 {
    margin: 80px 0 40px 0;
  }

  #contents .sub_rt {
    font-size: 2.7rem;
    margin: 6rem 0 -1rem 0;
    text-align: center;
  }

  #contents .sub_rt::before {
    left: 0;
    right: 0;
    margin: auto;
  }

  #contents .sub_lt {
    font-size: 2.7rem;
    margin: 6rem 0 -1rem 0;
    text-align: center;
  }

  #contents .sub_lt::before {
    left: 0;
    right: 0;
    margin: auto;
  }

  #contents .sub_c {
    font-size: 2.7rem;
    padding: 80px 0 10px 0;
  }

  .news ul {
    display: inherit;
    margin: 0 auto;
    margin-top: 2rem;
    width: 90%;
  }

  .creator .list1 li,
  .creator .list2 li {
    margin: 1rem 0 1rem 0;
    width: 80%;
  }

  .creator .list1 li .name,
  .creator .list2 li .name {
    font-size: 1.2rem;
    top: 66%;
}

  .creator ul li .name h3 {
    font-size: 1.5rem;
  }

  .creator ul li .icon img {
    top: 3rem;
  }

  .about li:nth-child(2) div {
    padding: 1rem;
  }

  .service ul li {
    width: 95%;
  }

  .text .profile {
    border-radius: 10px;
    clip-path: none;
    padding: 1.2rem;
  }
}