@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

img {
  vertical-align: top; }

a img {
  border: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

ol, ul {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0; }

html {
  font-size: 62.5%; }

* {
  box-sizing: border-box; }

body {
  font-family: "Noto Sans JP", sans-serif; }

.catch {
  font-family: 'Noto Serif JP' , serif; }

::selection {
  background: rgba(255, 149, 12, 0.5); }

::-moz-selection {
  background: rgba(253, 208, 0, 0.1); }

body {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.9444444444;
  position: relative; }

img {
  max-width: 100%; }

a {
  transition: all 0.3s;
  text-decoration: none;
  color: #009944; }

.is-show {
  opacity: 1 !important; }

.l-header {
  transition: 0.3s all;
  position: fixed;
  top: 15px;
  z-index: 10;
  width: 100%;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.8461538462;
  /* ハンバーガー */
  /* 三本線 */ }
  @media (min-width: 768px) {
    .l-header {
      right: 11px; } }
  @media (max-width: 767px) {
    .l-header {
      right: 5px; } }
  .l-header_wrapper {
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    position: relative; }
  @media (min-width: 768px) {
    .l-header_logo img {
      width: 7%;
      margin: 0 30px; } }
  @media (max-width: 767px) {
    .l-header_logo img {
      width: 10%;
      margin: 0 15px; } }
  .l-header .l-header_nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #fdd000;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    /* このクラスを、jQueryで付与・削除する */ }
    .l-header .l-header_nav nav {
      width: 100%; }
      .l-header .l-header_nav nav ul {
        margin: 0 auto;
        width: 100%; }
        .l-header .l-header_nav nav ul .nav-top a:hover:after {
          width: 0; }
        .l-header .l-header_nav nav ul .nav-top a:hover img {
          opacity: 0.5; }
        .l-header .l-header_nav nav ul li {
          list-style-type: none;
          width: 100%; }
          @media (min-width: 768px) {
            .l-header .l-header_nav nav ul li {
              font-size: 17px;
              font-size: 1.7rem;
              line-height: 1.4117647059; } }
          @media (max-width: 767px) {
            .l-header .l-header_nav nav ul li {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.6; } }
          .l-header .l-header_nav nav ul li a {
            color: #231815;
            padding: 1.5vh 0;
            position: relative;
            display: inline-block;
            transition: .3s;
            -webkit-transform: scale(1);
            transform: scale(1); }
            @media (max-width: 767px) {
              .l-header .l-header_nav nav ul li a {
                text-align: center; } }
            .l-header .l-header_nav nav ul li a:hover {
              -webkit-transform: scale(1.1);
              transform: scale(1.1);
              color: #fdd000; }
    .l-header .l-header_nav.active {
      opacity: 1;
      pointer-events: auto; }
  .l-header .navToggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    height: 27px;
    cursor: pointer;
    z-index: 3;
    text-align: center;
    margin: auto;
    /* 最初のspanをマイナス45度に */ }
    .l-header .navToggle span {
      display: block;
      position: absolute;
      /* .navToggleに対して */
      width: 30px;
      border-bottom: solid 3px #000;
      -webkit-transition: .35s ease-in-out;
      -moz-transition: .35s ease-in-out;
      transition: .35s ease-in-out;
      left: 6px; }
      .l-header .navToggle span:nth-child(1) {
        top: 0; }
      .l-header .navToggle span:nth-child(2) {
        top: 9px; }
      .l-header .navToggle span:nth-child(3) {
        top: 18px; }
      .l-header .navToggle span:nth-child(4) {
        border: none;
        color: #000;
        font-size: 6px;
        font-weight: bold;
        top: 20px; }
    .l-header .navToggle.active span {
      /* 2番目と3番目のspanを45度に */ }
      .l-header .navToggle.active span:nth-child(1) {
        top: 5px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border-bottom: solid 2px #000; }
      .l-header .navToggle.active span:nth-child(2), .l-header .navToggle.active span:nth-child(3) {
        top: 5px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        border-bottom: solid 2px #000; }

@media (min-width: 768px) {
  .sp_cont {
    display: none; } }
@media (max-width: 767px) {
  .sp_cont {
    display: block;
    background: #231815;
    color: #fff;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 63px;
    right: 0;
    margin: auto;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.3;
    position: fixed;
    text-align: center;
    padding-top: 12px;
    padding-left: 4px;
    border-bottom-left-radius: 25px;
    border-top-left-radius: 25px; } }

.l-footer {
  background: #fff;
  width: 100%;
  padding: 50px 0; }
  .l-footer_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative; }
    .l-footer_wrapper address {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.8461538462;
      color: #231815;
      margin-top: 10px;
      text-align: center; }
  .l-footer_logo {
    color: #231815;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.3333333333;
    text-align: center;
    margin: auto; }
    @media (min-width: 768px) {
      .l-footer_logo {
        width: 20%; } }
    @media (max-width: 767px) {
      .l-footer_logo {
        width: 50%; } }

.l-main,
.l-page {
  width: 100%;
  margin: 0 auto; }
  .l-main_wrapper,
  .l-page_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%; }
  .l-main .l-title,
  .l-page .l-title {
    color: #fdd000;
    z-index: 2;
    position: relative;
    text-align: center; }
    @media (min-width: 768px) {
      .l-main .l-title,
      .l-page .l-title {
        font-size: 85px;
        font-size: 8.5rem;
        line-height: 1; } }
    @media (max-width: 767px) {
      .l-main .l-title,
      .l-page .l-title {
        font-size: 50px;
        font-size: 5rem;
        line-height: 1; } }

.check_btn {
  margin: 0 auto;
  text-align: center;
  max-width: 500px;
  width: 80%;
  transition: 0.3s; }
  .check_btn p {
    border: 2px solid #E60012;
    padding: 10px;
    color: #E60012; }

.check_btn:hover {
  opacity: 0.3;
  transition: 0.3s; }
