@charset "utf-8";

/* --------------------------------------------------------------- */
/* CSSカスタムプロパティ */
/* --------------------------------------------------------------- */
:root {
  --scrollbar: 0;
  --100vw: 100vw;
  --vw: calc(var(--100vw) / 100);
  --w1440-margin: calc((var(--100vw) - 1440px) / 2);
  --accent-color: #1437FF;
}

@media screen and (max-width: 1535px) {
	:root {
    --w1440-margin: 20px;
  }
}

@media print {
  :root {
    --100vw: 1920px !important;
  }
}

/* --------------------------------------------------------------- */
/* body */
/* --------------------------------------------------------------- */

body {
  overflow-x: hidden;
}

body.fixed {
  position: fixed;
  width: 100%;
}


/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */

header {
  width: 100%;
  height: 125px;
}

@media screen and (max-width: 767px) {
	header {
    height: 58px;
  }
}

.header-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .header-inner {
    background-color: transparent;
  }

	.header-inner::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--100vw);
    height: 58px;
    z-index: 2;
    background-color: #000000;
  }
}

.header-logo {
  position: absolute;
  top: 60px;
  left: 98px;
}

@media screen and (max-width: 1535px) {
	.header-logo {
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
	.header-logo {
    top: 36px;
    left: 17px;
    z-index: 2;
    width: 23px;
    height: 203px;
  }
}

.header-logo a {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.header-logo::before {
  content: "";
  display: block;
  position: absolute;
  top: -601px;
  left: -758px;
  width: 1259px;
  height: 1259px;
  background: radial-gradient(rgba(255,255,255,1), rgba(255,255,255,0) 60%);
  opacity: 0.38;
}

@media screen and (max-width: 767px) {
	.header-logo::before {
    top: -154px;
    left: -123px;
    width: 269px;
    height: 269px;
  }
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hamburger-icon {
  display: none;
}

@media screen and (max-width: 767px) {
	.hamburger-icon {
    display: block;
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 3;
    width: 63px;
    height: 58px;
  }

  .hamburger-icon:hover {
    cursor: pointer;
  }

  .hamburger-icon .icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 22px;
    width: 100%;
    height: 100%;
  }

  .hamburger-icon .icon span {
    flex-shrink: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: ease 0.2s transform;
  }

  .menu-on .hamburger-icon {
    right: calc(var(--scrollbar) + 20px);
  }

  .menu-on .hamburger-icon span:nth-of-type(1) {
    margin-top: 6px;
    transform: rotate(20deg);
    background-color: #000;
  }

  .menu-on .hamburger-icon span:nth-of-type(2) {
    margin-bottom: 6px;
    transform: rotate(-20deg);
    background-color: #000;
  }
}

.hamburger-contents {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
	.hamburger-contents {
    position: fixed;
    top: 0;
    right: -100%;
    width: calc(100% - 60px);
    height: 100vh;
    background-color: #F8F8F8;
    transition: ease 0.2s right;
  }

  .menu-on .hamburger-contents {
    right: 0;
  }
}

.header-nav {
  position: absolute;
  top: 0;
  right: var(--w1440-margin);
}

@media screen and (max-width: 767px) {
	.header-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: static;
    right: 0;
    padding-top: 50px;
    padding-right: var(--scrollbar);
    padding-bottom: 80px;
    max-height: 100%;
    overflow: auto;
  }
}

.header-nav-inner {
  padding-top: 28px;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
	.header-nav-inner {
    width: 100%;
  }
}

.header-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 767px) {
	.header-nav ul {
    flex-direction: column;
  }
}

.header-nav li {
  margin-left: 94px;
}

@media screen and (max-width: 1240px) {
	.header-nav li {
    margin-left: 60px;
  }
}

@media screen and (max-width: 960px) {
	.header-nav li {
    margin-left: 30px;
  }
}

@media screen and (max-width: 767px) {
	.header-nav li {
    margin-top: 0;
    margin-left: 0;
    padding-top: 30px;
  }
}

.header-nav li:nth-of-type(1) {
  margin-left: 0;
}

.header-nav li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.header-nav li a::after {
  content: "";
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
	.header-nav li a::after {
    background-color: #000;
  }
}

.header-nav li:hover a::after {
  background-color: var(--accent-color);
}

.header-nav li .en {
  margin-bottom: 2px;
  font-family: Roboto;
  font-weight: 500;
  font-style: italic;
  font-size: 26px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1240px) {
	.header-nav li .en {
    font-size: 18px;
  }
}

@media screen and (max-width: 1024px) {
	.header-nav li .en {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
	.header-nav li .en {
    font-size: 18px;
    color: #000;
  }
}

.header-nav li:hover .en {
  color: var(--accent-color);
}

.header-nav li .ja {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1240px) {
	.header-nav li .ja {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
	.header-nav li .ja {
    font-size: 12px;
    color: #000;
  }
}

.header-nav li:hover .ja {
  color: var(--accent-color);
}

.header-contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 105px;
  right: 0;
  padding-top: 22px;
  padding-right: 45px;
  padding-bottom: 22px;
  padding-left: 45px;
  background: linear-gradient(to bottom right, #0027E7, #24007A);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
	.header-contact-btn {
    position: static;
    margin-top: 30px;
    margin-right: 20px;
    margin-left: 20px;
    width: calc(100% - 40px);
    padding-right: 0;
    padding-left: 0;
  }
}

@media print {
  .header-contact-btn {
    position: absolute;
    right: calc(var(--w1440-margin) * -1);
    white-space: nowrap;
  }
}

.header-contact-btn::before {
  content: "";
  position: absolute;
  top: -300px;
  left: -300px;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  transition: ease 0.5s width, ease 0.5s height;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
	.header-contact-btn::before {
    display: none;
  }
}

.header-contact-btn:hover::before {
  width: 1000px;
  height: 1000px;
}

.modal-active .header-contact-btn {
  right: var(--scrollbar);
}

.header-contact-btn span {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.1em;
  line-height: 26px;
  text-align: center;
  color: #fff;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
	.header-contact-btn span {
    font-size: 16px;
    line-height: 16px;
    writing-mode: horizontal-tb;
  }
}

/* --------------------------------------------------------------- */
/* main */
/* --------------------------------------------------------------- */


/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}


/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */

footer {
  padding-top: 20px;
  padding-bottom: 20px;
}

footer .pageup {
  position: fixed;
  right: 65px;
  bottom: 258px;
  width: 100px;
  height: 100px;
  border: solid 1px #0066FF;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
	footer .pageup {
    right: 20px;
    bottom: 60px;
    width: 44px;
    height: 44px;
  }
}

footer .pageup:hover {
  cursor: pointer;
}

footer .pageup a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

footer .pageup img {
  display: block;
  width: 15px;
  height: 22px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
	footer .pageup img {
    width: 8px;
    height: 12px;
  }
}

footer .w1080 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
	footer .w1080 {
    flex-direction: column;
  }
}

footer .left #footNav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
	footer .left #footNav {
    justify-content: center;
  }
}

footer .left #footNav a {
  margin-left: 15px;
  padding-left: 15px;
  font-size: 11px;
  line-height: 1.2;
  color: #1a1a1a;
  text-decoration: none;
  border-left: solid 1px #1a1a1a;
}

@media screen and (max-width: 767px) {
	footer .left #footNav a {
    font-size: 10px;
  }
}

footer .left #footNav a:hover {
  text-decoration: underline;
}

footer .left #footNav li:nth-of-type(1) a {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}

footer .left #copyright {
  font-size: 11px;
  line-height: 1.2;
  color: #1a1a1a;
}

@media screen and (max-width: 767px) {
	footer .left #copyright {
    font-size: 10px;
    text-align: center;
  }
}

footer .right #sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 767px) {
	footer .right #sns {
    margin-top: 20px;
  }
}

footer .right #sns li {
  margin-left: 22px;
  width: 34px;
  height: 34px;
}

@media screen and (max-width: 767px) {
	footer .right #sns li {
    margin-left: 10px;
    width: 30px;
    height: 30px;
  }
}

footer .right #sns li:hover {
  opacity: 0.8;
}

footer .right #sns li:nth-of-type(1) {
  margin-left: 0;
}

footer .right #sns li a {
  width: 100%;
  height: 100%;
}

footer .right #sns li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------- */
/* edit-area */
/* --------------------------------------------------------------- */
.edit-area {
}

.section {
  /* padding-right: 55px; */
}

@media screen and (max-width: 767px) {
	.section {
    padding-right: 0;
  }
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
  margin-left: auto;
  margin-right: auto;
}

/* 1440, 1080, 960, 840 */

.w1440 {
  width: 1440px;
}
@media screen and (max-width: 1535px) {
	.w1440 {
    width: calc(100% - 40px);
  }
}

.w1080 {
  width: 1080px;
}
@media screen and (max-width: 1240px) {
  .w1080 {
    width: calc(100% - 40px);
  }
}

.w960 {
  width: 960px;
}

@media screen and (max-width: 1000px) {
  .w960 {
    width: calc(100% - 40px);
  }
}

.w840 {
  width: 840px;
}

@media screen and (max-width: 880px) {
  .w840 {
    width: calc(100% - 40px);
  }
}

.w720 {
  width: 720px;
}

@media screen and (max-width: 760px) {
	.w720 {
    width: calc(100% - 40px);
  }
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */


/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */

/* type01 */
.common-title-set.type01 .en {
  font-family: Roboto;
  font-weight: bold;
  font-style: italic;
  font-size: 60px;
  text-align: left;
  color: #0c1ac3;
}

@media screen and (max-width: 767px) {
	.common-title-set.type01 .en {
    font-size: 36px;
  }
}

.common-title-set.type01 .ja {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  color: #000;
}

@media screen and (max-width: 767px) {
	.common-title-set.type01 .ja {
    font-size: 14px;
  }
}


/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}
/* type01 */
.common-text.type01 {
}

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}
