@charset "UTF-8";
/* CSS Document */
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  transition: 0.3s; }

.box-header {
  background-color: inherit;
  height: 64px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  transition: 0.3s; }
  @media screen and (max-width: 1199px) {
    .box-header {
      padding: 0 3rem; } }
  @media screen and (max-width: 767px) {
    .box-header {
      padding: 0 2rem; } }
  .box-header .box-sitename {
    margin: 0;
    display: flex;
    align-items: center; }
    .box-header .box-sitename a {
      display: contents; }
    .box-header .box-sitename img {
      display: inline-block;
      width: 280px;
      margin-right: 2rem; }
      @media screen and (max-width: 575px) {
        .box-header .box-sitename img {
          width: 200px; } }
    .box-header .box-sitename span {
      font-size: 10px;
      font-size: 1.0rem;
      color: #fff; }
      @media screen and (max-width: 767px) {
        .box-header .box-sitename span {
          display: none; } }
  .box-header .box-sitemenu {
    display: flex;
    margin: 0; }
    .box-header .box-sitemenu li {
      color: #fff;
      margin-right: 3rem; }
      .box-header .box-sitemenu li a {
        color: #fff;
        font-size: 14px;
        font-size: 1.4rem;
        transition: 0.3s; }
        .box-header .box-sitemenu li a:hover {
          color: #ff6400; }
      .box-header .box-sitemenu li:last-child {
        margin-right: 4rem; }
        .box-header .box-sitemenu li:last-child a {
          background: #ff6400;
          color: #fff;
          padding: 0.5rem 1.5rem;
          transition: 0.3s; }
          .box-header .box-sitemenu li:last-child a:hover {
            background: #fff;
            color: #000; }
    @media screen and (max-width: 1199px) {
      .box-header .box-sitemenu {
        display: none; } }

.is-scroll {
  background: #000;
  /* スクロール時の色 */ }

/* 全体調整CSS */
.hamburger-menubox * {
  font-size: 16px; }

.hamburger-menubox li {
  font-size: 14px; }

/* hamburgerここから */
/* inputを非表示 */
.input-hidden {
  display: none; }

/* label */
.hamburger-switch {
  cursor: pointer;
  position: absolute;
  right: 1%;
  top: 0;
  z-index: 9999;
  width: 4em;
  height: 4em; }

/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-1:checked ~ .hamburger-switch {
  position: fixed; }

/* ハンバーガーアイコン */
.hamburger-switch-line1,
.hamburger-switch-line1:before,
.hamburger-switch-line1:after {
  width: 35px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: .3s;
  content: ""; }

.hamburger-switch-line1 {
  transform: translate(-50%, -50%); }
  .hamburger-switch-line1::before {
    transform: translate(-50%, -1000%); }
  .hamburger-switch-line1::after {
    transform: translate(-50%, 1000%); }

/* ハンバーガーアイコン･アニメーション */
#hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1 {
  width: 0; }
  #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1::before {
    transform: rotate(45deg) translate(-40%, 1400%); }
  #hamburger-1:checked ~ .hamburger-switch .hamburger-switch-line1::after {
    transform: rotate(-45deg) translate(-40%, -1400%); }

/* メニューエリア */
.hamburger-menuwrap {
  position: fixed;
  height: 100%;
  background: #1a1a1a;
  padding: 5em 7% 2em;
  z-index: 9998;
  transition: .3s;
  overflow-y: scroll;
  top: 0;
  left: 100%;
  width: 45%; }
  @media screen and (max-width: 991px) {
    .hamburger-menuwrap {
      width: 65%; } }
  @media screen and (max-width: 575px) {
    .hamburger-menuwrap {
      width: 55%; } }

/* メニューリスト */
.hamburger-menulist {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 575px) {
    .hamburger-menulist {
      flex-wrap: wrap; } }
  .hamburger-menulist li.menubox {
    width: 45%; }
    @media screen and (max-width: 575px) {
      .hamburger-menulist li.menubox {
        width: 100%; } }
    .hamburger-menulist li.menubox div {
      margin-bottom: 5rem; }
      @media screen and (max-width: 575px) {
        .hamburger-menulist li.menubox div {
          margin-bottom: 3rem; } }
      .hamburger-menulist li.menubox div a.main-link {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        display: flex;
        border-bottom: 0.5px solid #fff;
        position: relative;
        color: #fff;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        align-items: center;
        justify-content: space-between;
        transition: 0.3s; }
        .hamburger-menulist li.menubox div a.main-link:hover {
          color: #ff6400; }
        .hamburger-menulist li.menubox div a.main-link:hover span {
          transition: 0.3s;
          background-color: #ff6400; }
          .hamburger-menulist li.menubox div a.main-link:hover span::after {
            background-color: #ff6400; }
          .hamburger-menulist li.menubox div a.main-link:hover span::before {
            background-color: #ff6400; }
        .hamburger-menulist li.menubox div a.main-link span {
          position: relative;
          display: inline-block;
          width: 11px;
          height: 1px;
          margin: 10px 0;
          border-radius: 9999px;
          background-color: #ffffff;
          transition: 0.3s; }
          .hamburger-menulist li.menubox div a.main-link span::after {
            content: "";
            position: absolute;
            top: calc(50% - -1px);
            right: 0;
            width: 8px;
            height: 1px;
            border-radius: 9999px;
            background-color: #ffffff;
            transform-origin: calc(100% - 2px) 50%;
            transform: rotate(-45deg); }
          .hamburger-menulist li.menubox div a.main-link span::before {
            content: "";
            position: absolute;
            top: calc(50% - 2px);
            right: 0;
            width: 8px;
            height: 1px;
            border-radius: 9999px;
            background-color: #ffffff;
            transform-origin: calc(100% - 2px) 50%;
            transform: rotate(45deg); }
      .hamburger-menulist li.menubox div ul li {
        line-height: 1.5; }
        .hamburger-menulist li.menubox div ul li a {
          font-size: 12px;
          font-size: 1.2rem;
          text-decoration: none;
          color: #fff;
          display: inline-block;
          transition: 0.3s;
          position: relative; }
          .hamburger-menulist li.menubox div ul li a::before {
            content: '-';
            color: #fff;
            padding-right: 0.5rem; }
          .hamburger-menulist li.menubox div ul li a:hover {
            color: #ff6400; }
          .hamburger-menulist li.menubox div ul li a:hover::before {
            color: #ff6400; }

/* メニューエリア･アニメーション */
/* 右から */
#hamburger-1:checked ~ .hamburger-menuwrap {
  left: 55%; }
  @media screen and (max-width: 991px) {
    #hamburger-1:checked ~ .hamburger-menuwrap {
      left: 35%; } }
  @media screen and (max-width: 575px) {
    #hamburger-1:checked ~ .hamburger-menuwrap {
      left: 45%; } }

/* コンテンツカバー */
#hamburger-1:checked ~ .hamburger-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block; }

#contact-box {
  background-color: #e6e6e6; }
  #contact-box .inner {
    padding: 4rem 0 3rem; }
    #contact-box .inner .d-flex {
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 767px) {
        #contact-box .inner .d-flex {
          flex-wrap: wrap; } }
      #contact-box .inner .d-flex .tel-box {
        width: 50%;
        text-align: center;
        border-right: 1px solid #8e8e8e; }
        @media screen and (max-width: 1199px) {
          #contact-box .inner .d-flex .tel-box {
            width: 55%; } }
        @media screen and (max-width: 991px) {
          #contact-box .inner .d-flex .tel-box {
            width: 60%; } }
        @media screen and (max-width: 767px) {
          #contact-box .inner .d-flex .tel-box {
            width: 100%;
            border-right: none;
            border-bottom: 1px solid #8e8e8e;
            padding-bottom: 3rem;
            margin-bottom: 3rem; } }
        #contact-box .inner .d-flex .tel-box h2 {
          font-size: 1.8rem;
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 1.5rem; }
        #contact-box .inner .d-flex .tel-box a {
          font-size: 4rem;
          font-size: 40px;
          color: #ff6400;
          font-family: "Montserrat";
          font-weight: bold; }
          @media screen and (max-width: 1199px) {
            #contact-box .inner .d-flex .tel-box a {
              font-size: 3.5rem;
              font-size: 35px; } }
          @media screen and (max-width: 991px) {
            #contact-box .inner .d-flex .tel-box a {
              font-size: 3rem;
              font-size: 30px; } }
          #contact-box .inner .d-flex .tel-box a + p {
            font-size: 1.4rem;
            font-size: 14px;
            margin: 0; }
            #contact-box .inner .d-flex .tel-box a + p + p {
              font-size: 1.8rem;
              font-size: 18px;
              color: #ff6400;
              font-family: "Montserrat";
              font-weight: bold;
              margin: 0; }
      #contact-box .inner .d-flex .mail-box {
        width: 50%;
        text-align: center; }
        @media screen and (max-width: 1199px) {
          #contact-box .inner .d-flex .mail-box {
            width: 45%; } }
        @media screen and (max-width: 991px) {
          #contact-box .inner .d-flex .mail-box {
            width: 40%; } }
        @media screen and (max-width: 767px) {
          #contact-box .inner .d-flex .mail-box {
            width: 100%; } }
        #contact-box .inner .d-flex .mail-box h2 {
          font-size: 1.8rem;
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 1.5rem; }
        #contact-box .inner .d-flex .mail-box a {
          cursor: pointer;
          display: inline-block;
          background-color: #ff6400;
          border: 1px solid #ff6400;
          padding: 1.5rem 6rem;
          color: #fff;
          transition: 0.3s; }
          @media screen and (max-width: 1199px) {
            #contact-box .inner .d-flex .mail-box a {
              padding: 1rem 4rem; } }
          @media screen and (max-width: 991px) {
            #contact-box .inner .d-flex .mail-box a {
              padding: 1rem 2rem; } }
          #contact-box .inner .d-flex .mail-box a:hover {
            background-color: #fff;
            color: #000; }
          #contact-box .inner .d-flex .mail-box a + p {
            font-size: 1.4rem;
            font-size: 14px;
            margin: 1rem 0 0; }

footer {
  background-color: #000; }
  footer .inner {
    padding: 4rem 0 3rem; }
  footer .d-flex {
    justify-content: space-between; }
    @media screen and (max-width: 991px) {
      footer .d-flex {
        flex-wrap: wrap; } }
    footer .d-flex .footer-about {
      margin-bottom: 8rem; }
      @media screen and (max-width: 991px) {
        footer .d-flex .footer-about {
          margin-bottom: 0; } }
      @media screen and (max-width: 575px) {
        footer .d-flex .footer-about {
          width: 100%; } }
      footer .d-flex .footer-about h2 {
        width: 380px; }
        @media screen and (max-width: 1199px) {
          footer .d-flex .footer-about h2 {
            width: 330px; } }
        @media screen and (max-width: 575px) {
          footer .d-flex .footer-about h2 {
            width: 300px;
            margin: auto; } }
      footer .d-flex .footer-about p {
        margin-top: 3rem;
        font-size: 1.4rem;
        font-size: 14px;
        color: #fff;
        line-height: 1.75; }
    footer .d-flex .footer-nav .box-sitemenu {
      display: flex;
      margin: 0; }
      @media screen and (max-width: 991px) {
        footer .d-flex .footer-nav .box-sitemenu {
          margin-bottom: 5rem; } }
      @media screen and (max-width: 575px) {
        footer .d-flex .footer-nav .box-sitemenu {
          flex-wrap: wrap;
          margin-bottom: 3rem; } }
      footer .d-flex .footer-nav .box-sitemenu li {
        color: #fff;
        margin-right: 3rem; }
        @media screen and (max-width: 1199px) {
          footer .d-flex .footer-nav .box-sitemenu li {
            margin-right: 2rem; } }
        @media screen and (max-width: 575px) {
          footer .d-flex .footer-nav .box-sitemenu li {
            margin-bottom: 1rem; } }
        footer .d-flex .footer-nav .box-sitemenu li a {
          color: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          transition: 0.3s; }
          @media screen and (max-width: 575px) {
            footer .d-flex .footer-nav .box-sitemenu li a {
              font-size: 13px;
              font-size: 1.3rem; } }
          footer .d-flex .footer-nav .box-sitemenu li a:hover {
            color: #ff6400; }
        footer .d-flex .footer-nav .box-sitemenu li:last-child {
          margin-right: 0; }
          footer .d-flex .footer-nav .box-sitemenu li:last-child a {
            background: #ff6400;
            color: #fff;
            padding: 0.5rem 1.5rem;
            transition: 0.3s; }
            footer .d-flex .footer-nav .box-sitemenu li:last-child a:hover {
              background: #fff;
              color: #000; }
  footer .copyright {
    color: #fff;
    font-size: 11px;
    font-size: 1.1rem; }
  footer #page-top {
    cursor: pointer;
    display: inline-block;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    background-image: url("../img/page-top-01.svg");
    background-repeat: no-repeat;
    background-size: auto; }
    footer #page-top:hover {
      background-image: url("../img/page-top-02.svg"); }

main {
  overflow: hidden; }

.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px; }

.inner {
  width: 85%;
  margin: auto;
  padding: 8rem 0; }
  @media screen and (max-width: 1199px) {
    .inner {
      padding: 5rem 0; } }
  @media screen and (max-width: 991px) {
    .inner {
      width: 95%; } }
  @media screen and (max-width: 575px) {
    .inner {
      width: 90%;
      padding: 4rem 0; } }

h2.title-01 {
  font-size: 51px;
  font-size: 5.1rem;
  color: #ff6400;
  font-family: "Montserrat";
  font-weight: bold;
  letter-spacing: 0.1em; }
  @media screen and (max-width: 1199px) {
    h2.title-01 {
      font-size: 40px;
      font-size: 4rem; } }
  @media screen and (max-width: 575px) {
    h2.title-01 {
      font-size: 35px;
      font-size: 3.5rem; } }
  h2.title-01 span {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: "Noto Sans JP";
    color: #333333;
    letter-spacing: normal; }

h2.title-02 {
  font-size: 37px;
  font-size: 3.7rem;
  color: #ff6400;
  letter-spacing: 0.1em;
  color: #fff; }
  @media screen and (max-width: 1199px) {
    h2.title-02 {
      font-size: 27px;
      font-size: 2.7rem; } }
  @media screen and (max-width: 575px) {
    h2.title-02 {
      font-size: 25px;
      font-size: 2.5rem; } }
  h2.title-02 span {
    margin-top: 0.5rem;
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Montserrat";
    font-weight: bold;
    letter-spacing: normal; }

h2.title-03 {
  font-size: 27px;
  font-size: 2.7rem;
  letter-spacing: 0.1em;
  font-weight: bold; }
  @media screen and (max-width: 1199px) {
    h2.title-03 {
      font-size: 25px;
      font-size: 2.5rem; } }
  @media screen and (max-width: 575px) {
    h2.title-03 {
      font-size: 23px;
      font-size: 2.3rem; } }
  h2.title-03 span {
    color: #ff6400;
    margin-top: 0.5rem;
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: "Montserrat";
    font-weight: bold;
    letter-spacing: normal; }

.read-more {
  display: inline-block; }
  .read-more a {
    display: flex;
    align-items: center;
    color: #333333;
    text-decoration: none;
    transition: 0.3s; }
    .read-more a span {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-left: 2rem;
      transition: 0.3s;
      background-image: url("../img/button-01.svg");
      background-repeat: no-repeat;
      background-size: auto; }
    .read-more a:hover {
      color: #ff6400; }
      .read-more a:hover span {
        background-image: url("../img/button-02.svg"); }

.read-more-white {
  display: inline-block; }
  .read-more-white a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s; }
    .read-more-white a span {
      display: inline-block;
      width: 40px;
      height: 40px;
      margin-left: 2rem;
      transition: 0.3s;
      background-image: url("../img/button-03.svg");
      background-repeat: no-repeat;
      background-size: auto; }
    .read-more-white a:hover {
      color: #000; }
      .read-more-white a:hover span {
        background-image: url("../img/button-04.svg"); }

.page404 {
  background: #000; }

#page404 {
  text-align: center;
  margin: 10rem auto;
  padding: 0 2rem; }
  @media screen and (max-width: 1199px) {
    #page404 {
      margin: 8rem auto; } }
  @media screen and (max-width: 575px) {
    #page404 {
      margin: 8rem auto 6rem; } }
  #page404 h2 {
    font-size: 160px;
    font-size: 16rem;
    color: #ff6400;
    font-weight: bold;
    line-height: 0.4;
    margin-bottom: 6rem; }
    @media screen and (max-width: 575px) {
      #page404 h2 {
        margin-bottom: 4rem;
        font-size: 130px;
        font-size: 13rem; } }
    #page404 h2 span {
      font-size: 50px;
      font-size: 5rem; }
      @media screen and (max-width: 575px) {
        #page404 h2 span {
          font-size: 40px;
          font-size: 4rem; } }
    #page404 h2 + p {
      font-size: 27px;
      font-size: 2.7rem;
      font-weight: bold;
      margin-top: 2rem; }
      @media screen and (max-width: 767px) {
        #page404 h2 + p {
          font-size: 25px;
          font-size: 2.5rem; } }
      #page404 h2 + p + p {
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 2rem; }
        @media screen and (max-width: 767px) {
          #page404 h2 + p + p {
            text-align: justify; } }
  #page404 .read-more a {
    color: #fff;
    border: 1px solid #ff6400;
    background: #ff6400;
    padding: 1rem 2rem; }
    #page404 .read-more a:hover {
      background: #fff;
      color: #ff6400; }
