/* Scss Document */
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*---------------------------------------------
    all
---------------------------------------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-feature-settings: "palt"; }

@media screen and (min-width: 750px) {
  .u-sp {
    display: none !important; } }
@media screen and (max-width: 750px) {
  .u-pc {
    display: none !important; } }
.wrap {
  margin: auto;
  position: relative;
  overflow: hidden;
  background: #fff;
  font-size: 1.6rem; }
  @media screen and (min-width: 750px) {
    .wrap {
      min-width: 1200px; } }

.inner {
  margin: auto;
  position: relative; }
  @media screen and (min-width: 750px) {
    .inner {
      max-width: 1024px; } }
  @media screen and (max-width: 750px) {
    .inner {
      max-width: 90%; } }

main {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 68px; }
  @media screen and (max-width: 750px) {
    main {
      margin-top: 11vw; } }

a {
  transition: .3s; }

/* animation class */
.effect_fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 700ms; }

.effect_fade.effect_scroll {
  opacity: 1;
  transform: translate(0, 0); }

/*---------------------------------------------
    header
---------------------------------------------*/
header {
  background: #fff;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000; }
  @media screen and (max-width: 750px) {
    header {
      padding: 2vw 5vw; } }

.headLogo {
  width: 217px; }
  @media screen and (max-width: 750px) {
    .headLogo {
      width: 40vw; } }
  .headLogo a {
    transition: .3s; }
    .headLogo a:hover {
      opacity: 1;
      filter: invert(52%) sepia(73%) saturate(3478%) hue-rotate(200deg) brightness(97%) contrast(97%); }
  @media screen and (max-width: 750px) {
    .headLogo {
      font-size: 4.2vw;
      position: relative;
      z-index: 1000; } }

@media screen and (min-width: 750px) {
  .headNav {
    display: block !important; } }
@media screen and (max-width: 750px) {
  .headNav {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff; } }

@media screen and (max-width: 750px) {
  .headNav_inner {
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    height: 100%;
    padding: 18% 0 10%;
    overflow: auto; } }

@media screen and (min-width: 750px) {
  .headNav_list {
    display: flex;
    align-items: center;
    font-size: 1.4rem; } }
@media screen and (max-width: 750px) {
  .headNav_list {
    width: 100%;
    max-width: 90%;
    margin: auto; } }
@media screen and (max-width: 750px) {
  .headNav_list > li {
    padding: 20px 0; } }
@media screen and (min-width: 750px) {
  .headNav_list > li:not(:last-child) {
    margin: 0 35px 0 0; } }
@media screen and (max-width: 750px) {
  .headNav_list > li:not(:last-child) {
    border-bottom: 1px solid #4285f4; } }
@media screen and (min-width: 750px) {
  .headNav_list > li > a:hover {
    color: #4285f4;
    opacity: 1; } }

@media screen and (min-width: 750px) {
  .headNav_list_dep_target {
    padding: 10px 0; } }
@media screen and (max-width: 750px) {
  .headNav_list_dep_target {
    margin: 0 0 10px; } }

@media screen and (min-width: 750px) {
  .headNav_list_dep {
    position: relative;
    transition: .3s; }
    .headNav_list_dep:hover {
      color: #4285f4; } }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  position: relative;
  cursor: pointer;
  z-index: 1000; }
  @media screen and (min-width: 750px) {
    .menu-trigger,
    .menu-trigger span {
      display: none; } }

.menu-trigger {
  position: relative;
  width: 26px;
  height: 21px; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4285f4; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  top: 9px; }

.menu-trigger span:nth-of-type(3) {
  bottom: 0; }

.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg); }

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0; }

.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg); }

/*---------------------------------------------
    footer
---------------------------------------------*/
footer {
  background: #fff; }
  footer .inner {
    padding: 40px 0;
    position: relative;
    color: #fff; }
    @media screen and (max-width: 750px) {
      footer .inner {
        padding: 6vw 0; } }

.foot_logo {
  width: 220px;
  transition: .4s;
  display: block; }
  @media screen and (max-width: 750px) {
    .foot_logo {
      width: 40vw; } }
  .foot_logo:hover {
    opacity: 1;
    filter: invert(52%) sepia(73%) saturate(3478%) hue-rotate(200deg) brightness(97%) contrast(97%); }

.copyright {
  text-align: center;
  display: block;
  color: #fff;
  padding: 5px;
  font-size: 1.1rem;
  text-align: center;
  background: #4285f4; }
  @media screen and (max-width: 750px) {
    .copyright {
      font-size: 0.714em; } }
