@charset "UTF-8";
/* --------------------------------
 all
-------------------------------- */
body {
  overflow-x: hidden;
  overflow-y: scroll; }

a {
  transition: all 0.5s; }
  a:hover {
    opacity: 0.5; }

.body_bg::before {
  width: 100vw;
  height: 100vw;
  position: fixed;
  /*背景追随*/
  top: -100%;
  right: -50%;
  background: url("../img/logo_nonetext.png") no-repeat top right;
  background-size: 100%;
  transform: rotate(-60deg);
  background-attachment: fixed;
  opacity: 0.1;
  display: block;
  content: "";
  z-index: -9999; }

/* --------------------------------
 header
-------------------------------- */
header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s; }
  header .header_logo {
    padding: 20px;
    transition: all 0.2s; }
    header .header_logo h1 {
      margin: 0; }
      header .header_logo h1 img {
        height: 60px;
        width: auto;
        transition: all 0.2s; }
  header .header_navi {
    display: flex;
    justify-content: flex-end; }
    header .header_navi #menu-btn-check {
      display: none; }
    header .header_navi .header_navi_big a {
      display: block;
      width: 300px;
      height: 100px;
      padding: 10px;
      background: #ec639d;
      color: #FFF;
      font-weight: bold;
      text-align: center;
      font-size: 2.4rem;
      position: relative;
      line-height: 0.5em;
      margin: auto; }
      header .header_navi .header_navi_big a:hover {
        text-decoration: none; }
      header .header_navi .header_navi_big a::before {
        position: absolute; }
      header .header_navi .header_navi_big a small {
        display: block;
        padding: 10px;
        text-align: center;
        background: #FFF;
        border-radius: 10px;
        font-size: 1.2rem;
        color: #333;
        margin-bottom: 10px;
        transition: all 0.2s; }

@media screen and (min-width: 1200px) {
  .header_navi_inner {
    display: flex; }

  .header_navi_list {
    display: flex;
    list-style: none;
    margin: 40px 0 0 0;
    transition: all 0.2s; }
    .header_navi_list li {
      font-size: 1vw;
      font-weight: 500;
      padding: 0.8vw; }
      .header_navi_list li a {
        display: inline-block;
        position: relative;
        transition: all 0.5s;
        color: #333;
        line-height: 1em; }
        .header_navi_list li a:hover {
          text-decoration: none; }
          .header_navi_list li a:hover::before {
            content: "";
            width: 40px;
            height: 3px;
            background: #CCC;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            animation-name: header_navi;
            animation-duration: 0.5s;
            animation-fill-mode: forwards; }
  @keyframes header_navi {
    0% {
      width: 0px; }
    100% {
      width: 40px; } }
        .header_navi_list li a.current::before {
          content: "";
          width: 40px;
          height: 3px;
          background: #38ade7;
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%); }

  .header_navi_big a {
    display: block;
    width: 300px;
    height: 100px;
    padding: 10px;
    background: #ec639d;
    color: #FFF;
    font-weight: bold;
    text-align: center;
    font-size: 2.4rem;
    position: relative;
    line-height: 0.5em; }
    .header_navi_big a:hover {
      text-decoration: none; }
    .header_navi_big a::before {
      position: absolute; }
    .header_navi_big a small {
      display: block;
      padding: 10px;
      text-align: center;
      background: #FFF;
      border-radius: 10px;
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 10px;
      transition: all 0.2s; } }
@media screen and (max-width: 1199px) {
  header {
    height: 80px; }

  header .header_logo {
    padding: 10px; }

  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #38ade7; }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute; }

  .menu-btn span:before {
    bottom: 8px; }

  .menu-btn span:after {
    top: 8px; }

  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/ }

  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg); }

  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg); }

  .header_navi_inner {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #38ade7;
    transition: all 0.5s;
    /*アニメーション設定*/ }

  .header_navi_inner ul {
    padding: 70px 10px 0; }

  .header_navi_inner ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none; }

  .header_navi_inner ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative; }

  .header_navi_inner ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px; }

  #menu-btn-check:checked ~ .header_navi_inner {
    left: 0;
    /*メニューを画面内へ*/ } }
/* --------------------------------
 footer
-------------------------------- */
footer {
  margin-top: 100px; }
  footer .col {
    margin-bottom: 1em; }

.footer_content {
  background: #333;
  padding: 50px 0; }
  .footer_content dl {
    margin: 0; }
    .footer_content dl dt {
      margin: 0;
      color: #FFF; }
    .footer_content dl dd {
      margin: 30px 0 0;
      color: #FFF; }
  .footer_content ul {
    list-style: none;
    margin: 0; }
    .footer_content ul li {
      margin: 0; }
      .footer_content ul li a {
        color: #FFF; }
      .footer_content ul li ul li a {
        color: #FFF;
        display: inline-block;
        padding-left: 1em; }
        .footer_content ul li ul li a::before {
          content: "ー ";
          margin-left: -1em; }
  .footer_content .footer_bnr li {
    margin-bottom: 15px; }
    .footer_content .footer_bnr li:last-child {
      margin: 0; }

.footer_copyight {
  padding: 15px; }

/* --------------------------------
 pagetop
-------------------------------- */
#page-top {
  line-height: 1em; }

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ec639d;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s; }

#page-top a:hover {
  background: #777; }

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1000;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px); }

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards; }

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards; }

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 1;
    transform: translateY(100px); } }
/* --------------------------------
 other
-------------------------------- */
.wpcf7-spinner {
  display: none; }

.wpcf7-form-control-wrap.recaptcha > span > div {
  margin-left: auto;
  margin-right: auto; }
