:root {
  --frame_h:clamp( 16px , 2vw , 22px);
}

/* =base
------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html.html_reset {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  height: 100%;
  overflow-y: scroll;
  background-color: #fff;
  text-align: left;
  color: #3F3F46;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  position: relative;
  overflow-x: hidden;
}

main {
  position: relative;
  overflow: clip;
  z-index: 10;
}
main.in_page {
  padding: 200px 0;
}

a {
  color: #6958C8;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  transition: 0.3s;
}

img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: 0.3s;
}

@media only screen and (max-width: 836px) {
  body {
    overflow: hidden;
    min-height: 100%;
    font-size: 14px;
  }
  body::before {
    background-size: 100px;
  }
  body.scroll_on {
    overflow-y: scroll;
    overflow-x: hidden;
    pointer-events: auto;
  }
  main.in_page {
    padding: 120px 0;
  }
}
#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  background-image: url(../images/bg/bg_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
#bg::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg/bg_grid.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-animation: bgSlide 30s linear infinite;
          animation: bgSlide 30s linear infinite;
}
#bg .bg_top {
  position: absolute;
  background-image: url(../images/bg/bg_main_deco.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20vh;
  top: 0;
  left: 0;
}
#bg .bg_bottom {
  position: absolute;
  background-image: url(../images/bg/bg_main_deco.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20vh;
  bottom: 0;
  left: 0;
  transform: scale(1, -1);
}

@media only screen and (max-width: 836px) {
  #bg {
    background-image: url(../images/bg/bg_sp.jpg);
  }
  #bg::before {
    background-size: 300%;
  }
}
.disactive {
  pointer-events: none;
}

.scroll_bar_delete {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll_bar_delete::-webkit-scrollbar {
  display: none;
}

/* =change
------------------------------------------------------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 836px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/*----------------------------------------
	page fade
------------------------------------------*/
/* =header
------------------------------------------------------------------------------------------*/
header {
  position: fixed;
  z-index: 10000;
  padding: 12px 24px;
  display: flex;
  width: 98%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  top: 12px;
  left: 1%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.72));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  box-shadow: 0 0 14px rgba(105, 88, 200, 0.431372549);
}
header .head_logo {
  width: min(20vw, 300px);
}
header .head_logo a {
  display: block;
  line-height: 0;
}
header .head_logo a img {
  width: 100%;
  height: auto;
}
header .toggle_nav .nav_trigger {
  display: none;
}
header .toggle_nav .nav .global .main_nav {
  display: flex;
  align-items: center;
}
header .toggle_nav .nav .global .main_nav .stit {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  margin-right: 1.5em;
  color: #90909D;
}
header .toggle_nav .nav .global .main_nav .nav_list {
  display: flex;
  gap: min(1.2vw, 36px);
  align-items: center;
}
header .toggle_nav .nav .global .main_nav .nav_list.l_01 {
  border-right: 1px solid #CCCCCC;
  padding-right: 12px;
  margin-right: 12px;
}
header .toggle_nav .nav .global .main_nav .nav_list.l_02 li a {
  font-weight: 400;
}
header .toggle_nav .nav .global .main_nav .nav_list li a {
  color: #3F3F46;
  font-size: min(1.2vw, 14px);
  font-weight: 700;
  line-height: 1.5em;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
header .toggle_nav .nav .global .main_nav .nav_list li a span {
  display: block;
  font-size: 0.6em;
  line-height: 1em;
}
header .toggle_nav .nav .global .main_nav .nav_list li a.active {
  color: #6958C8;
}
header .toggle_nav .nav .global .main_nav .nav_list li a.sub_btn {
  color: #fff;
  background-color: #6958C8;
  padding: 1em 1.5em;
  border-radius: 50px;
  text-align: center;
  border: 1px solid;
}
header .toggle_nav .nav .global .main_nav .nav_list li a.sub_btn:hover {
  background-color: #fff;
  color: #6958C8;
}
header .toggle_nav .nav .global .main_nav .nav_list li a:hover {
  color: #6958C8;
}

@media only screen and (max-width: 1250px) {
  header {
    padding: 10px 18px;
    height: 56px;
    width: 94%;
    left: 3%;
    background-image: none;
    box-shadow: none;
  }
  header::before {
    position: absolute;
    content: "";
    background-image: linear-gradient(rgba(255, 255, 255, 0.72));
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    box-shadow: 0 0 14px rgba(105, 88, 200, 0.431372549);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  header .head_logo {
    position: relative;
    width: 80px;
  }
  header .sp_btn {
    color: #fff;
    background-color: #6958C8;
    padding: 0.3em 1.5em;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    position: absolute;
    right: 62px;
  }
  header .toggle_nav .nav_trigger {
    display: block;
    position: absolute;
    width: 50px;
    height: 100%;
    right: 10px;
    top: 0;
    z-index: 200;
    line-height: 1;
  }
  header .toggle_nav .nav_trigger .nav_icon {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #3F3F46;
    top: 27px;
    right: 10px;
    transition: 0.3s;
  }
  header .toggle_nav .nav_trigger .nav_icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    position: absolute;
    background: #3F3F46;
    margin-top: -6px;
    transition: 0.3s;
  }
  header .toggle_nav .nav_trigger .nav_icon::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    background: #3F3F46;
    margin-top: 6px;
    transition: 0.3s;
    right: 0;
  }
  header .toggle_nav .nav {
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    padding: 0;
    border-radius: inherit;
    border: none;
  }
  header .toggle_nav .nav .global {
    width: 108%;
    position: fixed;
    z-index: -1;
    top: -12px;
    left: -4%;
    overflow-y: scroll;
    padding-top: 0;
    height: 100dvh;
    background-color: #F0F0F0;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-image: url(../images/bg/bg_sp_nav.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 90%;
  }
  header .toggle_nav .nav .global .main_nav {
    display: block;
    width: 82%;
    padding-top: 100px;
    margin: 0 auto;
  }
  header .toggle_nav .nav .global .main_nav .stit {
    display: block;
    margin-right: 0;
    margin-bottom: 12px;
  }
  header .toggle_nav .nav .global .main_nav .nav_list {
    flex-wrap: wrap;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_01 {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    gap: 12px 2%;
    margin-bottom: 20px;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_01 li {
    width: 49%;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_02 {
    margin-bottom: 20px;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_02 li {
    width: 100%;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_02 li:last-of-type {
    margin-top: 16px;
  }
  header .toggle_nav .nav .global .main_nav .nav_list.l_02 li a {
    border: none;
  }
  header .toggle_nav .nav .global .main_nav .nav_list li {
    width: 100%;
    text-align: center;
  }
  header .toggle_nav .nav .global .main_nav .nav_list li a {
    display: block;
    padding: 0.5em 0;
    font-size: 1.1em;
    font-weight: bold;
    color: #3F3F46;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
  header .toggle_nav .nav .global .main_nav .nav_list li a:hover {
    color: inherit;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon {
    transform: rotate(215deg);
    transition: 0.3s;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon::before {
    transform: rotate(-250deg) translate(6px, -2px);
    transition: 0.3s;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon::after {
    opacity: 0;
    transition: 0.3s;
  }
  header .toggle_nav.nav-active .nav .global {
    transition: 0.3s;
    filter: blur(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
/* =navi CSS
------------------------------------------------------------------------------------------*/
/* =foot
-----------------------------------------------------------------------------------------*/
footer {
  position: relative;
  padding: 80px 0;
  background-color: #3F3F46;
  color: #fff;
}
footer .logo_area {
  margin-bottom: 40px;
}
footer .logo_area figure {
  margin-bottom: 12px;
}
footer .logo_area figure img {
  width: auto;
  height: auto;
  max-width: 100%;
}
footer .logo_area .txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
}
footer .nav_area {
  margin-bottom: 60px;
}
footer .nav_area .tit {
  font-size: 12px;
  color: #CCCCCC;
  line-height: 1.5em;
}
footer .nav_area .nav_01 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}
footer .nav_area .nav_01 li a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5em;
}
footer .nav_area .nav_01 li a:hover {
  color: #8771ff;
}
footer .nav_area .nav_02 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
footer .nav_area .nav_02 li a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
}
footer .nav_area .nav_02 li a.tb {
  padding-right: 20px;
}
footer .nav_area .nav_02 li a.tb::after {
  position: absolute;
  content: "";
  background-image: url(../images/parts/icon_blank.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  right: -3px;
  transition: 0.3s;
}
footer .nav_area .nav_02 li a:hover {
  color: #8771ff;
}
footer .nav_area .nav_02 li a:hover.tb::after {
  background-image: url(../images/parts/icon_blank_pu.svg);
}
footer .copy {
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
footer .copy .left {
  display: flex;
  gap: 0 12px;
  align-items: center;
}
footer .copy .left figure img {
  width: auto;
  height: auto;
}
footer .copy .left .txt {
  margin: 0;
  font-size: 12px;
  line-height: 1.5em;
}
footer .copy .right small {
  font-family: "League Spartan", "Noto Sans JP", serif;
  font-size: 12px;
  line-height: 1.5em;
}

@media only screen and (max-width: 836px) {
  footer {
    padding: 60px 0;
  }
  footer .logo_area figure {
    width: 54%;
  }
  footer .logo_area .txt {
    font-size: 14px;
  }
  footer .nav_area {
    margin-bottom: 40px;
  }
  footer .nav_area .nav_01 {
    margin-bottom: 30px;
  }
  footer .copy {
    flex-direction: column;
    gap: 0 20px;
  }
  footer .copy .left {
    display: block;
    margin-bottom: 24px;
  }
  footer .copy .left figure {
    margin-bottom: 12px;
  }
}
/* =IE killer
------------------------------------------------------------------------------------------*/
.IEblock {
  display: none;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .IEblock {
    position: fixed;
    display: block !important;
    z-index: 30000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #ee768e;
  }
  .IEblock .comment_block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    height: 90%;
    width: 90%;
    max-height: 400px;
    max-width: 600px;
  }
  .IEblock .comment_block p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #111;
    font-size: 20px;
    font-weight: bold;
  }
  .IEblock .comment_block p span {
    font-size: 0.8em;
  }
}
/* =404 page
------------------------------------------------------------------------------------------*/
#error_404 {
  padding: calc(var(--main_padding) * 2) 0;
}
#error_404 .container_s p {
  color: #876437;
}
#error_404 .container_s .stit {
  font-size: 26px;
  line-height: 1em;
  margin-bottom: 1em;
}
#error_404 .container_s .text {
  margin-bottom: 3em;
}
#error_404 .container_s .error_toplink {
  position: relative;
  display: block;
  margin: 0 auto;
  width: min(230px, 70%);
  height: 60px;
  display: grid;
  place-items: center;
  background-color: #6958C8;
  color: #fcfcfc;
  font-weight: bold;
  font-size: min(18px, 1.8vw);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: 0.2s;
  border-radius: 5px;
}
#error_404 .container_s .error_toplink:hover {
  transform: translateY(-2px);
}
/*# sourceMappingURL=common.css.map */