@charset "UTF-8";
: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: #3D3D3D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  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: #D6006C;
  text-decoration: none;
  outline: none;
  transition: 0.2s;
}
a:hover {
  text-decoration: none;
  transition: 0.2s;
}

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

@media only screen and (max-width: 769px) {
  body {
    overflow: hidden;
    min-height: 100%; /*font-size: 14px;*/
  }
  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: 769px) {
  #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: 769px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/* =op_anim
------------------------------------------------------------------------------------------*/
#op_anim.is_active {
  display: block;
}

#op_anim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  background: #fff;
}
#op_anim .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60%, 500px);
  height: auto;
  transform: translate(-50%, -50%) scale(1.2);
  filter: blur(10px);
  transition: 1.8s cubic-bezier(0.03, 0.37, 0, 1.09);
}
#op_anim .logo::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  transition: 0.2s cubic-bezier(0.03, 0.37, 0, 1.09);
  z-index: 10;
}
#op_anim .logo img {
  width: 100%;
  height: auto;
}
#op_anim.open {
  -webkit-animation: op_anime 2s;
          animation: op_anime 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  pointer-events: none;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
#op_anim.open .logo {
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
  transition: 1.8s cubic-bezier(0.03, 0.37, 0, 1.09);
}
#op_anim.open .logo::before {
  -webkit-animation: op_anime2 1.2s;
          animation: op_anime2 1.2s;
  transition: 0.2s cubic-bezier(0.03, 0.37, 0, 1.09);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@media only screen and (max-width: 769px) {
  #op_anim {
    transition: 2s;
  }
  #op_anim .logo {
    width: 92%;
  }
}
/* =header
------------------------------------------------------------------------------------------*/
header {
  position: fixed;
  z-index: 10000;
  padding: 12px 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  top: 0;
  background-color: #fff;
}
header .head_logo {
  width: min(16vw, 300px);
}
header .head_logo:hover img {
  opacity: 0.8;
  transition: 0.2s;
}
header .head_logo img {
  width: 100%;
}
header .toggle_nav .nav_trigger {
  display: none;
}
header .toggle_nav .nav .global .main_nav {
  display: flex;
  gap: min(2vw, 30px);
  align-items: center;
}
header .toggle_nav .nav .global .main_nav li a {
  color: #000;
  font-size: min(1.2vw, 14px);
  font-weight: 500;
  line-height: 1.5em;
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
header .toggle_nav .nav .global .main_nav li a.active {
  color: #D6006C;
}
header .toggle_nav .nav .global .main_nav li a::after {
  position: absolute;
  content: "";
  background-color: #D6006C;
  width: 0;
  height: 1px;
  bottom: -6px;
  left: 0;
  transition: 0.2s;
}
header .toggle_nav .nav .global .main_nav li a.n_btn {
  color: #fff;
  background-color: #298A32;
  padding: 0.5em 2em;
  border-radius: 50px;
}
header .toggle_nav .nav .global .main_nav li a.n_btn:hover {
  filter: brightness(1.1);
  color: #fff;
}
header .toggle_nav .nav .global .main_nav li a.n_btn:hover::after {
  width: 0;
}
header .toggle_nav .nav .global .main_nav li a:hover {
  color: #D6006C;
}
header .toggle_nav .nav .global .main_nav li a:hover::after {
  width: 100%;
}

@media only screen and (max-width: 769px) {
  header {
    padding: 10px;
  }
  header .head_logo {
    width: 200px;
  }
  header .toggle_nav .nav_trigger {
    display: block;
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 200;
    line-height: 1;
  }
  header .toggle_nav .nav_trigger .nav_icon {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  header .toggle_nav .nav_trigger .nav_icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    position: absolute;
    background: #000;
    margin-top: -8px;
    transition: 0.3s;
  }
  header .toggle_nav .nav_trigger .nav_icon::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    position: absolute;
    background: #000;
    margin-top: 8px;
    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: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    overflow-y: scroll;
    padding-top: 0;
    height: 100dvh;
    background-color: #F4F4F4;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  header .toggle_nav .nav .global .main_nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 60px;
    margin-bottom: 6vw;
  }
  header .toggle_nav .nav .global .main_nav li {
    width: 90%;
  }
  header .toggle_nav .nav .global .main_nav li a {
    display: inline-block;
    padding: 0.6em 0 0.6em 1em;
    font-size: 1.1em;
    font-weight: bold;
    color: inherit;
    padding-left: 1em;
    position: relative;
  }
  header .toggle_nav .nav .global .main_nav li a::after {
    display: none;
  }
  header .toggle_nav .nav .global .main_nav li a::before {
    position: absolute;
    content: "●";
    color: #3492E5;
    left: 0;
    top: 1.4em;
    font-size: 0.5em;
  }
  header .toggle_nav .nav .global .main_nav li a.n_btn {
    padding: 0.6em 0 0.6em 1em;
    color: inherit;
    background-color: transparent;
    border-radius: 0;
  }
  header .toggle_nav .nav .global .main_nav li a.n_btn:hover {
    transform: translateY(0);
    color: inherit;
  }
  header .toggle_nav .nav .global .main_nav li a:hover {
    color: inherit;
  }
  header .toggle_nav .nav .global .sp_bnr_list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px 2%;
    width: 90%;
    margin: 0 auto;
  }
  header .toggle_nav .nav .global .sp_bnr_list li {
    width: 49%;
  }
  header .toggle_nav .nav .global .sp_bnr_list li a {
    display: block;
  }
  header .toggle_nav .nav .global .sp_bnr_list li a img {
    width: 100%;
    height: auto;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon {
    background-color: #fff;
    transition: 0.3s;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon::before {
    transform: rotate(225deg) translate(-5px, -5px);
    transition: 0.3s;
  }
  header .toggle_nav.nav-active .nav_trigger .nav_icon::after {
    transform: rotate(-225deg) translate(-6px, 6px);
    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: #fff;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .container .left {
  width: 100%;
  display: flex;
  gap: 0 40px;
  align-items: flex-end;
  margin-bottom: 60px;
}
footer .container .left figure {
  width: 200px;
  margin-left: -20px;
}
footer .container .left figure img {
  width: auto;
  max-width: 100%;
  height: auto;
}
footer .container .left .txt_box {
  width: calc(100% - 220px);
}
footer .container .left .txt_box p {
  font-size: 0.9em;
  line-height: 1.5em;
}
footer .container .left .txt_box p:last-of-type {
  margin-bottom: 0;
}
footer .container .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .container .right .foot_nav {
  display: flex;
  gap: 0 40px;
}
footer .container .right .foot_nav ul {
  width: auto;
  display: flex;
  flex-direction: column;
  padding-left: 1.2em;
}
footer .container .right .foot_nav ul li {
  margin-bottom: 0.5em;
}
footer .container .right .foot_nav ul li a {
  display: block;
  font-size: 0.85em;
  font-weight: bold;
  color: inherit;
  position: relative;
  white-space: nowrap;
}
footer .container .right .foot_nav ul li a:hover {
  color: #3492E5;
}
footer .container .right .foot_nav ul li a.active {
  color: #3492E5;
}
footer .container .right .foot_nav ul li a::before {
  position: absolute;
  content: "●";
  color: #3492E5;
  left: -2em;
  top: 54%;
  font-size: 0.5em;
  transform: translateY(-50%);
}
footer .container .right .copywrite {
  font-size: 0.8em;
  text-align: right;
  font-family: "Roboto", "Noto Sans JP", serif;
}

@media only screen and (max-width: 769px) {
  footer {
    padding: 40px 0 60px;
  }
  footer .container .left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
    margin-bottom: 40px;
  }
  footer .container .left figure {
    width: 120px;
    margin-left: -10px;
  }
  footer .container .left .txt_box {
    width: 100%;
  }
  footer .container .right .foot_nav {
    gap: 0;
    flex-direction: column;
    margin-bottom: 20px;
  }
  footer .container .right .foot_nav ul {
    width: 100%;
    flex-direction: initial;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin-bottom: 12px;
  }
  footer .container .right .foot_nav ul li {
    margin: 0;
    display: inline-block;
  }
  footer .container .right .copywrite {
    font-size: 0.8em;
    text-align: right;
    font-family: "Roboto", "Noto Sans JP", serif;
  }
}
.fix_bnr {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 200px;
  z-index: 100;
}
.fix_bnr img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 769px) {
  .fix_bnr {
    width: 140px;
  }
}
/* =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: #D6006C;
  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);
}

/* =clearfix
------------------------------------------------------------------------------------------*/
.clearfix:after {
  clear: both;
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
  font-size: 0.1em;
  content: ".";
}
/*# sourceMappingURL=common.css.map */