@charset "UTF-8";
/*共通部分
-----------------------------------------*/
/* reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, sub, sup, var, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  font-style: normal;
  font-weight: initial;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

@blockquote :before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 0 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* reset end */
html {
  font-size: 100%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
body.active {
  overflow: hidden;
}

.f {
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(100px);
}
.f.active {
  opacity: 1;
  transition: all 0.3s;
  transform: translateY(0px);
}

header {
  width: 1200px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 9999;
  height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1260px) {
  header {
    width: 90%;
    margin: 0 auto;
  }
}
header a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
header a img {
  display: block;
}
@media (max-width: 1000px) {
  header .header-logo {
    width: 170px;
  }
}
header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
header nav a {
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}
header nav a:hover {
  color: #9762B4;
  transition: all 0.3s;
}
header nav div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

#hum {
  width: 40px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
}
#hum hr {
  width: 40px;
  height: 1px;
  background-color: #9762B4;
  transition: all 0.3s;
}
#hum.active {
  zoom: 0.8;
}
#hum.active hr {
  transition: all 0.3s;
}
#hum.active hr:first-child {
  transform: rotate(45deg) translateX(9px);
}
#hum.active hr:last-child {
  transform: rotate(-45deg) translateX(9px);
}

#hum-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  background-color: #fff;
  padding-top: 130px;
  transform: translateX(-100%);
  transition: all 0.3s;
}
#hum-nav.active {
  transform: translateX(0%);
  transition: all 0.3s;
}
#hum-nav a {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: all 0.3s;
}
#hum-nav a:hover {
  color: #9762B4;
  transition: all 0.3s;
}
#hum-nav div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
#hum-nav div a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: initial;
}

#kv {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 950px;
}
@media (max-width: 1250px) {
  #kv {
    width: 90%;
    height: 100vw;
  }
}
#kv img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -99;
}
#kv div {
  padding-top: 260px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 800px) {
  #kv div {
    padding-top: 30vw;
  }
}
#kv div h1 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  background-color: #9762B4;
  font-weight: 500;
  color: #fff;
  padding: 0px 20px;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  #kv div h1 {
    font-size: 20px;
    margin-bottom: 13px;
  }
}
#kv div h1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 9;
  animation: fade 0.6s;
  animation-fill-mode: forwards;
  transform: translateX(0%);
  animation-delay: 1s;
}
@keyframes fade {
  0% {
    width: 100%;
    transform: translateX(0%);
  }
  100% {
    width: 100%;
    transform: translateX(100%);
  }
}

.title q {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  .title q {
    font-size: 14px;
  }
}
.title h1 {
  font-size: 80px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-weight: bold;
  color: #9762B4;
}
@media (max-width: 800px) {
  .title h1 {
    font-size: 40px;
  }
}

#sec01 {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: -60px;
  margin-bottom: 86px;
}
@media (max-width: 1250px) {
  #sec01 {
    width: 90%;
    margin-bottom: 120px;
  }
}
#sec01 h2 {
  font-size: 20px;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #9762B4;
  padding: 5px 20px 7px 20px;
  letter-spacing: 0.03em;
  margin-top: 36px;
}
@media (max-width: 1250px) {
  #sec01 h2 {
    font-size: 16px;
  }
}
#sec01 p {
  font-size: 18px;
  margin-top: 36px;
  line-height: 1.9;
}
@media (max-width: 800px) {
  #sec01 p {
    font-size: 14px;
  }
}
#sec01 a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  right: 0px;
  top: 0px;
  gap: 30px;
}
@media (max-width: 1250px) {
  #sec01 a {
    position: initial;
    float: right;
    gap: 16px;
    margin-top: 30px;
  }
}
#sec01 a div {
  width: 108px;
  height: 108px;
  border-radius: 108px;
  transition: all 0.3s;
  background-color: #9762B4;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1250px) {
  #sec01 a div {
    width: 68px;
    height: 68px;
  }
}
#sec01 a div img {
  display: block;
}
#sec01 a b {
  font-size: 18px;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  #sec01 a b {
    font-size: 16px;
  }
}
#sec01 a:hover div {
  transform: translateX(10px);
  transition: all 0.3s;
}
#sec01 a:hover b {
  color: #9762B4;
  transition: all 0.3s;
}

#sec02 {
  width: 100%;
  background-color: rgba(242, 242, 242, 0.73);
  padding-top: 92px;
  padding-bottom: 312px;
  position: relative;
  z-index: 10;
}
@media (max-width: 800px) {
  #sec02 {
    padding-top: 52px;
    padding-bottom: 70px;
  }
}
#sec02 section {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  #sec02 section {
    width: 90%;
  }
}
#sec02 ul li {
  border-bottom: solid 1px #000000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding: 60px 0px;
}
@media (max-width: 800px) {
  #sec02 ul li {
    padding: 20px 0px;
  }
}
#sec02 ul li::after {
  content: "";
  width: 130px;
  display: block;
  height: 1px;
  background-color: #9762B4;
  position: absolute;
  bottom: -1px;
  left: 0px;
}
#sec02 ul li p:first-child {
  width: 133px;
  color: #9762B4;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 800px) {
  #sec02 ul li p:first-child {
    font-size: 14px;
  }
}
#sec02 ul li p:last-child {
  padding-left: 45px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 800px) {
  #sec02 ul li p:last-child {
    font-size: 14px;
    display: block;
  }
}
#sec02 ul li p:last-child a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  #sec02 ul li p:last-child a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
    zoom: 0.8;
  }
}
#sec02 ul li p:last-child a:hover {
  color: #9762B4;
  transition: all 0.3s;
}

#sec03 {
  width: 100%;
  position: relative;
  position: static;
  z-index: 0;
}
#sec03 img {
  width: 100%;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  top: -625px;
  z-index: -99;
}
@media (max-width: 800px) {
  #sec03 img {
    top: -380px;
  }
}
#sec03 article {
  width: 1200px;
  margin: 0 auto;
  padding-top: 255px;
}
@media (max-width: 1250px) {
  #sec03 article {
    width: 90%;
  }
}
@media (max-width: 800px) {
  #sec03 article {
    padding-top: 70px;
  }
}
#sec03 article p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  background-color: #9762B4;
  font-weight: 500;
  color: #fff;
  padding: 0px 20px;
  margin-bottom: 26px;
}
@media (max-width: 800px) {
  #sec03 article p {
    font-size: 20px;
    margin-bottom: 13px;
  }
}
#sec03 article .title {
  margin-top: 30px;
  margin-bottom: 58px;
}

#cv {
  background-color: #9762B4;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cv section {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0px;
}
@media (max-width: 1250px) {
  #cv section {
    width: 90%;
    display: block;
  }
}
@media (max-width: 800px) {
  #cv section {
    padding: 30px 0px;
  }
}
#cv section p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}
@media (max-width: 800px) {
  #cv section p {
    font-size: 14px;
    padding-bottom: 30px;
  }
}
#cv section p span {
  font-size: 40px;
  color: #fff;
  display: block;
  margin-bottom: 21px;
}
@media (max-width: 800px) {
  #cv section p span {
    font-size: 30px;
  }
}
#cv section a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1250px) {
  #cv section a {
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  #cv section a {
    gap: 16px;
  }
}
#cv section a div {
  width: 108px;
  height: 108px;
  border-radius: 108px;
  background-color: #9762B4;
  border: solid 1px #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  #cv section a div {
    width: 68px;
    height: 68px;
  }
}
#cv section a div img {
  display: block;
}
#cv section a b {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
@media (max-width: 800px) {
  #cv section a b {
    font-size: 16px;
  }
}
#cv section a:hover div {
  transform: translateX(10px);
  transition: all 0.3s;
}

footer {
  padding-top: 83px;
}
footer .footer-logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
}
footer .footer-logo img {
  display: block;
}
@media (max-width: 800px) {
  footer .footer-logo img {
    width: 160px;
  }
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 34px;
  margin-bottom: 38px;
}
@media (max-width: 800px) {
  footer nav {
    flex-wrap: wrap;
  }
}
footer nav a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 600;
  font-weight: 14px;
  transition: all 0.3s;
}
@media (max-width: 800px) {
  footer nav a {
    font-size: 14px;
  }
}
footer nav a:hover {
  color: #9762B4;
  transition: all 0.3s;
}
footer div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
}
footer div a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
footer div a img {
  display: block;
}
footer small {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  background-color: #9762B4;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 800px) {
  .sp-off {
    display: none !important;
  }
}
@media (min-width: 801px) {
  .pc-off {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */