@charset "UTF-8";
:where(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

html, body {
  font-family: "Noto Sans JP", "Concert One", sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  html, body {
    font-size: 4.103vw;
  }
}

img {
  vertical-align: bottom;
}

a img {
  border: none;
}

a:hover img {
  border: none;
}

a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:link {
  text-decoration: none;
}

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

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

ul, ol, dl {
  list-style-position: outside;
}

button {
  background: none;
  margin: 0;
  padding: 0;
  border: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  li, dt, dd {
    font-size: inherit;
  }
}
em {
  font-style: normal;
}

/*------------------------------
module
------------------------------*/
.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

/* -----------------------------
layout
------------------------------*/
img {
  max-width: 100%;
  width: 100%;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.tab {
  display: none;
}

.sp-inline {
  display: none !important;
}

.pc-inline {
  display: inline-block !important;
}

ul.inline li {
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 1100px) {
  .tab {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-inline {
    display: inline-block !important;
  }
  .pc-inline {
    display: none !important;
  }
}
.body__inner {
  margin: 0 0 0 auto;
  padding: 0px 0 0 240px;
}
@media screen and (max-width: 1100px) {
  .body__inner {
    padding-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .body__inner {
    padding: 0vw 0 0;
  }
}

/*------------------------------
共通パーツ
------------------------------*/
.hover_anime span {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}
.hover_anime span::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFE500;
  z-index: -1;
  -webkit-transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.hover_anime span:hover::before {
  width: 100%;
}

.btn_style01 {
  width: 240px;
  display: block;
  border-radius: 100vh;
  font-family: "Concert One";
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  border: solid 1px #000;
  padding: 10px 0px;
  text-align: center;
  -webkit-box-shadow: 4px 4px;
          box-shadow: 4px 4px;
  background: #fff;
  color: #000;
}
.btn_style01:hover {
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .btn_style01 {
    width: 61.538vw;
    padding: 2.564vw 0;
    font-size: 4.615vw;
  }
}

.submit_wrapper {
  text-align: center;
}

.submit {
  position: relative;
  display: inline-block;
  height: 54px;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}
.submit input {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #000;
  text-align: center;
  -webkit-appearance: none;
}
@media screen and (min-width: 767px) {
  .submit::before {
    display: inline-block;
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFE500;
    z-index: -1;
    -webkit-transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  }
  .submit:hover::before {
    width: 100%;
  }
}
.submit .wpcf7-spinner {
  display: none !important;
}

/*------------------------------
ローディング
------------------------------*/
@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
body::after {
  display: block;
  content: "";
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99998;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: #F4F4F9;
  -webkit-animation: loading 1s forwards cubic-bezier(0.55, 0.05, 0.22, 0.99);
          animation: loading 1s forwards cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
body::before {
  content: "";
  width: 180px;
  height: 120px;
  display: block;
  z-index: 99999;
  position: fixed;
  background: url("/assets/img/logo_loading.png") no-repeat center;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-animation: loading 0.8s forwards cubic-bezier(0.55, 0.05, 0.22, 0.99);
          animation: loading 0.8s forwards cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@media only screen and (max-width: 768px) {
  body::before {
    width: 46.154vw;
    height: 30.769vw;
  }
}

/*------------------------------
HEADER
------------------------------*/
.header_container.active header .h_menu span:first-of-type {
  -webkit-transform: translateY(10px) rotate(-25deg);
          transform: translateY(10px) rotate(-25deg);
}
@media only screen and (max-width: 768px) {
  .header_container.active header .h_menu span:first-of-type {
    -webkit-transform: translateY(1.795vw) rotate(-25deg);
            transform: translateY(1.795vw) rotate(-25deg);
  }
}
.header_container.active header .h_menu span:last-of-type {
  -webkit-transform: translateY(-5px) rotate(25deg);
          transform: translateY(-5px) rotate(25deg);
}
@media only screen and (max-width: 768px) {
  .header_container.active header .h_menu span:last-of-type {
    -webkit-transform: translateY(-1.795vw) rotate(25deg);
            transform: translateY(-1.795vw) rotate(25deg);
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 80px;
  padding: 0 130px 0 40px;
}
@media screen and (max-width: 1100px) {
  header {
    border-bottom: solid 3px #000;
  }
}
@media only screen and (max-width: 768px) {
  header {
    height: 17.949vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 5.128vw;
  }
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  header .inner {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  header .inner {
    width: 100%;
  }
}
header .inner .h_logo {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .inner .h_logo {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 230px;
  }
  header .inner .h_logo a img {
    height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 768px) {
  header .inner .h_logo {
    width: 46.154vw;
    display: block;
    padding-top: 2vw;
    height: auto;
  }
  header .inner .h_logo a img {
    height: auto;
  }
}
header .inner .h_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner ul.h_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .inner ul.h_list li.h_desc {
  font-size: 16px;
  font-weight: 900;
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  header .inner ul.h_list li.h_desc {
    display: none;
  }
}
header .inner ul.h_list li.h_icon {
  width: 50px;
}
header .inner ul.h_list li.h_icon:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  header .inner ul.h_list li.h_icon {
    display: none;
  }
}
header .inner ul.h_list li.h_icon.i-about {
  margin-right: 10px;
}
header .inner .h_menu {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 9;
  cursor: pointer;
  z-index: 9999;
}
@media only screen and (max-width: 768px) {
  header .inner .h_menu {
    width: 15.385vw;
    height: 5.128vw;
    right: 5.128vw;
    top: 6.41vw;
  }
}
header .inner .h_menu_container {
  width: 60px;
  height: 20px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  header .inner .h_menu_container {
    width: 15.385vw;
    height: 5.128vw;
  }
}
header .inner .h_menu span {
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 5px;
  background: #000;
}
@media only screen and (max-width: 768px) {
  header .inner .h_menu span {
    height: 1.282vw;
  }
}
header .inner .h_menu span:first-of-type {
  top: 0;
}
header .inner .h_menu span:last-of-type {
  bottom: 0;
}

/*------------------------------
NAV
------------------------------*/
nav.nav_fixed {
  display: none;
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9990;
  text-align: left;
  overflow-y: scroll;
}
nav.nav_fixed.open {
  display: block;
}
nav.nav_fixed .inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  nav.nav_fixed .inner {
    display: block;
    max-width: 800px;
    padding: 100px 30px 200px;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner {
    max-width: 100%;
    padding: 20.513vw 5.128vw 17.949vw;
  }
}
nav.nav_fixed .inner .n_left .n_list {
  padding: 0px 100px 0px 0;
}
@media screen and (max-width: 1100px) {
  nav.nav_fixed .inner .n_left .n_list {
    padding-right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_left .n_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0vw 0vw 0 0;
    margin-bottom: 2.564vw;
  }
}
nav.nav_fixed .inner .n_left .n_list li {
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  nav.nav_fixed .inner .n_left .n_list li {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_left .n_list li {
    width: 50%;
    margin-bottom: 7.692vw;
  }
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_left .n_list li span {
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: text-shadow 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
    transition: text-shadow 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  nav.nav_fixed .inner .n_left .n_list li span:first-of-type {
    color: transparent;
    text-shadow: 0 1.5em 0 #000, 0 0 0 #000;
  }
  nav.nav_fixed .inner .n_left .n_list li span:last-of-type {
    color: #000;
  }
  nav.nav_fixed .inner .n_left .n_list li.current:hover a {
    cursor: initial;
  }
  nav.nav_fixed .inner .n_left .n_list li:first-of-type:not(.current):hover span:first-child {
    text-shadow: 0 0 0 #78BAF7, 0 -1.5em 0 #78BAF7;
  }
  nav.nav_fixed .inner .n_left .n_list li:first-of-type:not(.current):hover span:last-child {
    color: #78BAF7;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(2):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #FFB7EB, 0 -1.5em 0 #FFB7EB;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(2):not(.current):hover span:last-child {
    color: #FFB7EB;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(3):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #5DDE99, 0 -1.5em 0 #5DDE99;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(3):not(.current):hover span:last-child {
    color: #5DDE99;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(4):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #FB875E, 0 -1.5em 0 #FB875E;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(4):not(.current):hover span:last-child {
    color: #FB875E;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(5):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #AB8EEA, 0 -1.5em 0 #AB8EEA;
  }
  nav.nav_fixed .inner .n_left .n_list li:nth-of-type(5):not(.current):hover span:last-child {
    color: #AB8EEA;
  }
}
nav.nav_fixed .inner .n_left .n_list li:first-of-type.current span:first-child {
  text-shadow: none;
  color: #78BAF7;
}
nav.nav_fixed .inner .n_left .n_list li:first-of-type.current span:last-child {
  color: #78BAF7;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(2).current span:first-child {
  text-shadow: none;
  color: #FFB7EB;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(2).current span:last-child {
  color: #FFB7EB;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(3).current span:first-child {
  text-shadow: none;
  color: #5DDE99;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(3).current span:last-child {
  color: #5DDE99;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(4).current span:first-child {
  text-shadow: none;
  color: #FB875E;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(4).current span:last-child {
  color: #FB875E;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(5).current span:first-child {
  text-shadow: none;
  color: #AB8EEA;
}
nav.nav_fixed .inner .n_left .n_list li:nth-of-type(5).current span:last-child {
  color: #AB8EEA;
}
nav.nav_fixed .inner .n_left .n_list li span {
  display: block;
  line-height: 1.3;
}
nav.nav_fixed .inner .n_left .n_list li span.n_list_ttl {
  font-family: "Concert One";
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_left .n_list li span.n_list_ttl {
    font-size: 9.231vw;
  }
}
nav.nav_fixed .inner .n_left .n_list li span.n_list_ttl_name {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_left .n_list li span.n_list_ttl_name {
    font-size: 4.103vw;
  }
}
nav.nav_fixed .inner .n_right .n_search_container {
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  nav.nav_fixed .inner .n_right .n_search_container {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_search_container {
    margin-bottom: 7.692vw;
  }
}
nav.nav_fixed .inner .n_right .n_search_container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border: 1px solid #000;
  border-radius: 100vh;
  height: 60px;
  max-width: 580px;
}
@media screen and (max-width: 1100px) {
  nav.nav_fixed .inner .n_right .n_search_container form {
    max-width: 100%;
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_search_container form {
    height: 15.385vw;
  }
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 15px;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text {
    padding-left: 7.692vw;
  }
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-webkit-input-placeholder {
  font-size: 16px;
  color: #ACACAC;
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-moz-placeholder {
  font-size: 16px;
  color: #ACACAC;
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text:-ms-input-placeholder {
  font-size: 16px;
  color: #ACACAC;
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-ms-input-placeholder {
  font-size: 16px;
  color: #ACACAC;
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::placeholder {
  font-size: 16px;
  color: #ACACAC;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-webkit-input-placeholder {
    font-size: 4.103vw;
  }
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-moz-placeholder {
    font-size: 4.103vw;
  }
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text:-ms-input-placeholder {
    font-size: 4.103vw;
  }
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::-ms-input-placeholder {
    font-size: 4.103vw;
  }
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_text::placeholder {
    font-size: 4.103vw;
  }
}
nav.nav_fixed .inner .n_right .n_search_container form input.n_search_btn {
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 50px;
  height: 50px;
  background: url(/assets/img/ico_search.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_search_container form input.n_search_btn {
    width: 12.821vw;
    height: 12.821vw;
    right: 1vw;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 {
    padding: 5.128vw 0;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li {
    margin-bottom: 10.256vw;
  }
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li:not(.tag) {
    overflow: hidden;
  }
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li:not(.tag) a {
    color: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    text-shadow: 0 2em 0 #000, 0 0 0 #000;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.current:hover a {
  cursor: initial;
}
nav.nav_fixed .inner .n_right .n_list_style02 li > a, nav.nav_fixed .inner .n_right .n_list_style02 li > span {
  font-size: 22px;
  font-weight: 700;
  padding-left: 60px;
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li > a, nav.nav_fixed .inner .n_right .n_list_style02 li > span {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li > a, nav.nav_fixed .inner .n_right .n_list_style02 li > span {
    font-size: 5.641vw;
    padding-left: 15.385vw;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li > a::before, nav.nav_fixed .inner .n_right .n_list_style02 li > span::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  top: 0px;
  left: 0px;
  bottom: 0;
  margin: auto 0;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li > a::before, nav.nav_fixed .inner .n_right .n_list_style02 li > span::before {
    width: 12.821vw;
    height: 12.821vw;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.tag > span {
  position: relative;
}
nav.nav_fixed .inner .n_right .n_list_style02 li.tag > span::before {
  background: url(/assets/img/ico_tag.svg) no-repeat;
  background-size: contain;
}
nav.nav_fixed .inner .n_right .n_list_style02 li.tag .tag_group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li.tag .tag_group {
    margin-bottom: 7.692vw;
    gap: 2.564vw 2.564vw;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.tag .tag_group span {
  border-radius: 100vh;
  border: solid 1px #000;
}
nav.nav_fixed .inner .n_right .n_list_style02 li.tag .tag_group span a {
  padding: 3px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li.tag .tag_group span a {
    font-size: 4.103vw;
    padding: 1vw 4vw;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.about.current a {
  text-shadow: none;
  color: #78BAF7;
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li.about:not(.current) a:hover {
    text-shadow: 0 0 0 #78BAF7, 0 -2em 0 #78BAF7;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.about a::before {
  background: url(/assets/img/ico_about.svg) no-repeat;
  background-size: contain;
}
nav.nav_fixed .inner .n_right .n_list_style02 li.contact.current a {
  text-shadow: none;
  color: #FB875E;
}
@media screen and (min-width: 767px) {
  nav.nav_fixed .inner .n_right .n_list_style02 li.contact:not(.current) a:hover {
    text-shadow: 0 0 0 #FB875E, 0 -2em 0 #FB875E;
  }
}
nav.nav_fixed .inner .n_right .n_list_style02 li.contact a::before {
  background: url(/assets/img/ico_contact.svg) no-repeat;
  background-size: contain;
}
nav.nav_fixed .inner .n_right .n_about_company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_about_company {
    display: block;
  }
}
nav.nav_fixed .inner .n_right .n_about_company li {
  font-size: 14px;
  font-weight: 700;
}
nav.nav_fixed .inner .n_right .n_about_company li a:hover {
  color: #ACACAC;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_about_company li {
    font-size: 3.59vw;
  }
}
nav.nav_fixed .inner .n_right .n_about_company li:first-of-type {
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  nav.nav_fixed .inner .n_right .n_about_company li:first-of-type {
    margin: 0vw 0 5.128vw;
  }
}

/*------------------------------
SIDE MENU
------------------------------*/
.side_menu {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  max-width: 240px;
  background: #fff;
}
@media screen and (max-width: 1100px) {
  .side_menu {
    display: none;
  }
}
.side_menu .inner {
  padding: 30px;
}
.side_menu .inner .s_logo {
  width: 180px;
}
.side_menu .inner .s_list {
  padding: 30px 0 30px;
}
.side_menu .inner .s_list li {
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .side_menu .inner .s_list li span {
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: text-shadow 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
    transition: text-shadow 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .side_menu .inner .s_list li span:first-of-type {
    color: transparent;
    text-shadow: 0 1.5em 0 #000, 0 0 0 #000;
  }
  .side_menu .inner .s_list li span:last-of-type {
    color: #000;
  }
  .side_menu .inner .s_list li.current:hover a {
    cursor: initial;
  }
  .side_menu .inner .s_list li:first-of-type:not(.current):hover span:first-child {
    text-shadow: 0 0 0 #78BAF7, 0 -1.5em 0 #78BAF7;
  }
  .side_menu .inner .s_list li:first-of-type:not(.current):hover span:last-child {
    color: #78BAF7;
  }
  .side_menu .inner .s_list li:nth-of-type(2):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #FFB7EB, 0 -1.5em 0 #FFB7EB;
  }
  .side_menu .inner .s_list li:nth-of-type(2):not(.current):hover span:last-child {
    color: #FFB7EB;
  }
  .side_menu .inner .s_list li:nth-of-type(3):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #5DDE99, 0 -1.5em 0 #5DDE99;
  }
  .side_menu .inner .s_list li:nth-of-type(3):not(.current):hover span:last-child {
    color: #5DDE99;
  }
  .side_menu .inner .s_list li:nth-of-type(4):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #FB875E, 0 -1.5em 0 #FB875E;
  }
  .side_menu .inner .s_list li:nth-of-type(4):not(.current):hover span:last-child {
    color: #FB875E;
  }
  .side_menu .inner .s_list li:nth-of-type(5):not(.current):hover span:first-child {
    text-shadow: 0 0 0 #AB8EEA, 0 -1.5em 0 #AB8EEA;
  }
  .side_menu .inner .s_list li:nth-of-type(5):not(.current):hover span:last-child {
    color: #AB8EEA;
  }
}
.side_menu .inner .s_list li:first-of-type.current span:first-child {
  text-shadow: none;
  color: #78BAF7;
}
.side_menu .inner .s_list li:first-of-type.current span:last-child {
  color: #78BAF7;
}
.side_menu .inner .s_list li:nth-of-type(2).current span:first-child {
  text-shadow: none;
  color: #FFB7EB;
}
.side_menu .inner .s_list li:nth-of-type(2).current span:last-child {
  color: #FFB7EB;
}
.side_menu .inner .s_list li:nth-of-type(3).current span:first-child {
  text-shadow: none;
  color: #5DDE99;
}
.side_menu .inner .s_list li:nth-of-type(3).current span:last-child {
  color: #5DDE99;
}
.side_menu .inner .s_list li:nth-of-type(4).current span:first-child {
  text-shadow: none;
  color: #FB875E;
}
.side_menu .inner .s_list li:nth-of-type(4).current span:last-child {
  color: #FB875E;
}
.side_menu .inner .s_list li:nth-of-type(5).current span:first-child {
  text-shadow: none;
  color: #AB8EEA;
}
.side_menu .inner .s_list li:nth-of-type(5).current span:last-child {
  color: #AB8EEA;
}
.side_menu .inner .s_list li span {
  display: block;
  line-height: 1.3;
}
.side_menu .inner .s_list li span.s_list_ttl {
  font-family: "Concert One";
  font-size: 26px;
  font-weight: 400;
}
.side_menu .inner .s_list li span.s_list_ttl_name {
  font-size: 12px;
}
.side_menu .inner .s_search_container form {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border: 1px solid #000;
  border-radius: 100vh;
  height: 40px;
  width: 180px;
}
.side_menu .inner .s_search_container form input.s_search_text {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100vh;
  padding: 5px 5px 5px 15px;
}
.side_menu .inner .s_search_container form input.s_search_text::-webkit-input-placeholder {
  font-size: 13px;
  color: #ACACAC;
}
.side_menu .inner .s_search_container form input.s_search_text::-moz-placeholder {
  font-size: 13px;
  color: #ACACAC;
}
.side_menu .inner .s_search_container form input.s_search_text:-ms-input-placeholder {
  font-size: 13px;
  color: #ACACAC;
}
.side_menu .inner .s_search_container form input.s_search_text::-ms-input-placeholder {
  font-size: 13px;
  color: #ACACAC;
}
.side_menu .inner .s_search_container form input.s_search_text::placeholder {
  font-size: 13px;
  color: #ACACAC;
}
.side_menu .inner .s_search_container form input.s_search_btn {
  position: absolute;
  right: 3px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 32px;
  height: 32px;
  background: url(/assets/img/ico_search.svg) no-repeat;
  background-size: contain;
}
.side_menu .inner .s_list_style02 {
  padding: 20px 0;
}
.side_menu .inner .s_list_style02 li {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
}
.side_menu .inner .s_list_style02 li a {
  font-size: 16px;
  font-weight: 700;
  padding-left: 40px;
}
@media screen and (min-width: 767px) {
  .side_menu .inner .s_list_style02 li a {
    color: transparent;
    text-shadow: 0 1.5em 0 #000, 0 0 0 #000;
  }
}
.side_menu .inner .s_list_style02 li.current:hover a {
  cursor: initial;
}
.side_menu .inner .s_list_style02 li.about.current a {
  text-shadow: none;
  color: #78BAF7;
}
@media screen and (min-width: 767px) {
  .side_menu .inner .s_list_style02 li.about:not(.current) a:hover {
    text-shadow: 0 0 0 #78BAF7, 0 -1.5em 0 #78BAF7;
  }
}
.side_menu .inner .s_list_style02 li.about a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/assets/img/ico_about.svg) no-repeat;
  background-size: contain;
  top: 0px;
  left: 1px;
  bottom: 0;
  margin: auto 0;
}
.side_menu .inner .s_list_style02 li.contact.current a {
  text-shadow: none;
  color: #FB875E;
}
@media screen and (min-width: 767px) {
  .side_menu .inner .s_list_style02 li.contact:not(.current) a:hover {
    text-shadow: 0 0 0 #FB875E, 0 -1.5em 0 #FB875E;
  }
}
.side_menu .inner .s_list_style02 li.contact a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(/assets/img/ico_contact.svg) no-repeat;
  background-size: contain;
  top: 0px;
  left: 1px;
  bottom: 0;
  margin: auto 0;
}

/*------------------------------
CONTENT
------------------------------*/
main .container {
  position: relative;
  border-radius: 30px 0px 0px 0px;
  border-top: solid 3px #000;
  border-left: solid 3px #000;
}
main .container.bg_note {
  background: url(/assets/img/bg_check.png) repeat;
  background-size: 1%;
}
@media only screen and (max-width: 768px) {
  main .container.bg_note {
    background-size: 2%;
  }
}
@media screen and (max-width: 1100px) {
  main .container {
    border: none;
    border-radius: 0;
  }
}
main .container .content {
  max-width: 1200px;
  margin: 0 auto;
}

.pagetop {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 140px;
}
.pagetop a {
  display: block;
  position: relative;
}
.pagetop a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url(/assets/img/btn_pagetop_icon.svg) no-repeat;
  background-size: contain;
  top: 20px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  -webkit-transition: 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.pagetop a:hover::before {
  top: 15px;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    bottom: 0;
    width: 35.897vw;
    right: 5.128vw;
  }
}

/*------------------------------
記事一覧
------------------------------*/
.article_list .article_more {
  display: none;
}
.article_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .article_list ul {
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .article_list ul {
    grid-gap: 0;
  }
}
.article_list ul li.article_list_i {
  position: relative;
  width: 350px;
  margin: 0 15px 70px;
  padding-top: 20px;
}
@media screen and (max-width: 1100px) {
  .article_list ul li.article_list_i {
    width: calc(50% - 20px);
    margin: 0 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i {
    width: 100%;
    padding-top: 7vw;
    margin-bottom: 3vw;
  }
}
.article_list ul li.article_list_i.rec::before {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 180px;
  width: 50%;
  height: 60px;
  background: url(/assets/img/ico_rec.svg) no-repeat;
  background-size: contain;
  top: 0px;
  left: 20px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i.rec::before {
    width: 46.154vw;
    max-width: 100%;
    height: 15.385vw;
    left: 5vw;
  }
}
.article_list ul li.article_list_i.new::before {
  content: "";
  position: absolute;
  display: inline-block;
  max-width: 100px;
  width: 30%;
  height: 60px;
  background: url(/assets/img/ico_new.svg) no-repeat;
  background-size: contain;
  top: 0px;
  left: 20px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i.new::before {
    width: 25.641vw;
    max-width: 100%;
    height: 15.385vw;
    left: 5vw;
  }
}
.article_list ul li.article_list_i .thum {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .thum {
    margin-bottom: 7.692vw;
  }
}
.article_list ul li.article_list_i .thum div {
  width: 350px;
  height: 192px;
  overflow: hidden;
  border-radius: 30px;
  border: solid 1px #000;
  will-change: transform;
}
@media screen and (max-width: 1100px) {
  .article_list ul li.article_list_i .thum div {
    width: 100%;
    height: 24vw;
  }
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .thum div {
    height: 48.718vw;
  }
}
.article_list ul li.article_list_i .thum div img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 30px;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.article_list ul li.article_list_i .thum:hover div img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .thum:hover div img {
    -webkit-transform: none;
            transform: none;
  }
}
.article_list ul li.article_list_i .category {
  position: absolute;
  font-family: "Concert One";
  bottom: -20px;
  right: 20px;
  padding: 2px 15px 4px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  background: #000;
  border-radius: 100vh;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .category {
    padding: 0 3.846vw 2px;
    font-size: 5.641vw;
  }
}
.article_list ul li.article_list_i .read .read_ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .read .read_ttl {
    font-size: 5.128vw;
    margin-bottom: 5.128vw;
  }
}
.article_list ul li.article_list_i .read .read_txt {
  font-size: 14px;
  margin-bottom: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .read .read_txt {
    font-size: 3.59vw;
    margin-bottom: 5.128vw;
  }
}
.article_list ul li.article_list_i .read .tag_group {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .read .tag_group {
    margin-bottom: 0vw;
    gap: 2.564vw 2.564vw;
  }
}
.article_list ul li.article_list_i .read .tag_group li {
  border-radius: 100vh;
  border: solid 1px #000;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}
.article_list ul li.article_list_i .read .tag_group li::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFE500;
  z-index: -1;
  -webkit-transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.article_list ul li.article_list_i .read .tag_group li:hover::before {
  width: 100%;
}
.article_list ul li.article_list_i .read .tag_group li a {
  padding: 3px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans JP";
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .read .tag_group li a {
    font-size: 4.103vw;
    padding: 1vw 4vw;
  }
}
.article_list ul li.article_list_i .read .day {
  color: #ACACAC;
  font-family: "Concert One";
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .article_list ul li.article_list_i .read .day {
    font-size: 4.103vw;
  }
}
.article_list .more_btn {
  display: block;
  font-size: 22px;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}
.article_list .more_btn::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFE500;
  z-index: -1;
  -webkit-transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: 0.4s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.article_list .more_btn:hover::before {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .article_list .more_btn {
    font-size: 5.641vw;
  }
}

/*------------------------------
FOOTER
------------------------------*/
footer {
  background: #000;
}
footer .inner {
  text-align: center;
  padding: 60px 0 30px;
}
@media only screen and (max-width: 768px) {
  footer .inner {
    padding: 15.385vw 5.128vw 10.256vw;
  }
}
footer .inner .logo {
  margin: 0 auto 40px;
  width: 180px;
}
@media only screen and (max-width: 768px) {
  footer .inner .logo {
    width: 46.154vw;
    margin-bottom: 17.949vw;
  }
}
footer .inner .footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  footer .inner .footer_link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 15.385vw;
  }
}
footer .inner .footer_link li a {
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  footer .inner .footer_link li a {
    opacity: 1;
  }
}
footer .inner .footer_link li a:hover {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  footer .inner .footer_link li a {
    font-size: 3.59vw;
  }
}
footer .inner .footer_link li:not(:last-of-type) {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  footer .inner .footer_link li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 2.564vw;
  }
}
@media only screen and (max-width: 768px) {
  footer .inner .footer_link li:first-of-type {
    margin-right: 7.692vw;
  }
}
footer .inner .copy {
  font-size: 10px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  footer .inner .copy {
    font-size: 2.564vw;
  }
}/*# sourceMappingURL=common.css.map */