@charset "UTF-8";
body {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
  margin: 0px;
  box-sizing: border-box;
  line-height: 1.8em;
  letter-spacing: 0.05em; }
  @media screen and (max-width: 750px) {
    body {
      width: 100% !important;
      font-size: 14px; } }

div {
  margin: 0px;
  padding: 0px; }

a {
  text-decoration: none !important; }
  a img {
    transition: 0.2s; }

ul {
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px; }
  ul li {
    padding-left: 0px;
    list-style: none; }

@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
    height: auto; } }

.pc {
  display: block !important; }
  @media screen and (max-width: 750px) {
    .pc {
      display: none !important; } }

.sp {
  display: none !important; }
  @media screen and (max-width: 750px) {
    .sp {
      display: block !important; } }

.non-border {
  border: none !important; }

.ta-center {
  text-align: center; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.link-button-white {
  width: 300px;
  height: 50px;
  margin-top: 50px; }
  .link-button-white a {
    background-color: #fff;
    color: #0198da;
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.3s;
    position: relative;
    padding-top: 9px;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    text-align: center; }
    .link-button-white a:before {
      position: absolute;
      content: "";
      right: 10px;
      top: 25px;
      transform: translateY(-50%);
      /* 縦軸をセンタリングする */
      border: 5px solid transparent;
      border-left: 8px solid #0198da; }
    .link-button-white a:hover {
      background-color: #011a6d; }

.link-button-blue {
  width: 300px;
  height: 50px;
  margin-top: 50px; }
  .link-button-blue a {
    background-color: #0198da;
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.3s;
    position: relative;
    padding-top: 9px;
    box-sizing: border-box;
    letter-spacing: 0.1em;
    text-align: center; }
    .link-button-blue a:before {
      position: absolute;
      content: "";
      right: 10px;
      top: 25px;
      transform: translateY(-50%);
      /* 縦軸をセンタリングする */
      border: 5px solid transparent;
      border-left: 8px solid #fff; }
    .link-button-blue a:hover {
      background-color: #011a6d; }

.button-center {
  margin-right: auto;
  margin-left: auto; }

/*共通ヘッダー・フッター*/
.header {
  height: 90px;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 750px) {
    .header {
      height: 65px;
      display: block;
      box-sizing: border-box;
      padding-top: 5px; } }
  .header .box-headerLeft-top {
    width: 300px;
    box-sizing: border-box; }
    .header .box-headerLeft-top h1,
    .header .box-headerLeft-top .h1 {
      margin-top: 5px;
      margin-left: 30px;
      margin-bottom: 5px; }
      @media screen and (max-width: 750px) {
        .header .box-headerLeft-top h1,
        .header .box-headerLeft-top .h1 {
          margin-top: 0px;
          margin-left: 3px; } }
      .header .box-headerLeft-top h1 img,
      .header .box-headerLeft-top .h1 img {
        height: 80px; }
        @media screen and (max-width: 750px) {
          .header .box-headerLeft-top h1 img,
          .header .box-headerLeft-top .h1 img {
            height: 55px; } }
  .header .box-headerRight-top {
    box-sizing: border-box; }
  .header .box-headerLeft {
    width: 400px;
    height: 100%; }
    @media screen and (max-width: 750px) {
      .header .box-headerLeft {
        width: 300px; } }
    .header .box-headerLeft h1,
    .header .box-headerLeft .h1 {
      margin: 0px 0px 10px 30px;
      height: 100%; }
      .header .box-headerLeft h1 img,
      .header .box-headerLeft .h1 img {
        height: 100%; }
      @media screen and (max-width: 750px) {
        .header .box-headerLeft h1,
        .header .box-headerLeft .h1 {
          width: 100%;
          margin: 0px 0 0 10px;
          height: 90%; }
          .header .box-headerLeft h1 img,
          .header .box-headerLeft .h1 img {
            height: 100%;
            width: auto; } }
  .header .box-headerRight {
    box-sizing: border-box; }

.pc-nav {
  height: 100%; }
  .pc-nav nav {
    height: 100%;
    margin: 0 auto;
    display: flex; }
    .pc-nav nav .nav-wrap {
      display: flex;
      justify-content: space-around;
      position: relative;
      padding-top: 22px; }
      .pc-nav nav .nav-wrap .first-menu {
        width: unset;
        height: 50px;
        text-align: center;
        box-sizing: border-box;
        transition: 0.3s;
        margin: 0 25px; }
        .pc-nav nav .nav-wrap .first-menu a {
          display: inline-block;
          width: 100%;
          height: 50px;
          padding-top: 12px;
          box-sizing: border-box;
          position: relative;
          transition: 0.3s;
          font-weight: 500;
          letter-spacing: 0.2em;
          font-size: 0.9em;
          color: #2b2b2b; }
          .pc-nav nav .nav-wrap .first-menu a:hover {
            opacity: 0.8; }
        .pc-nav nav .nav-wrap .first-menu .second-menu {
          width: 100%;
          min-width: 1000px;
          display: block;
          position: absolute;
          left: 0;
          visibility: hidden;
          background: #fefefe;
          transition: 0.3s;
          text-align: left;
          padding: 30px;
          box-sizing: border-box; }
          .pc-nav nav .nav-wrap .first-menu .second-menu .second {
            border-bottom: 1px dotted #000;
            margin: 0 10px;
            padding: 10px 0 10px 20px;
            height: unset; }
            .pc-nav nav .nav-wrap .first-menu .second-menu .second a {
              color: #2b2b2b;
              transition: 0.3s;
              height: unset;
              display: flex;
              justify-content: space-between;
              width: 100%; }
              .pc-nav nav .nav-wrap .first-menu .second-menu .second a:after {
                content: none; }
              .pc-nav nav .nav-wrap .first-menu .second-menu .second a:hover {
                opacity: 0.8; }
        .pc-nav nav .nav-wrap .first-menu:hover .second-menu {
          visibility: visible;
          transition: 0.3s;
          z-index: 999; }
    .pc-nav nav .nav-contact {
      height: 100%;
      display: table; }
      .pc-nav nav .nav-contact a {
        display: table-cell;
        background-color: #0198da;
        color: #fff;
        vertical-align: middle;
        transition: 0.3s;
        padding: 0 30px;
        font-size: 0.9em; }
        .pc-nav nav .nav-contact a:hover {
          background-color: #011a6d; }

.sp-navi .globalNavSP {
  position: fixed;
  z-index: 100;
  top: 0px;
  left: 0;
  background: #0198da;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  overflow-y: scroll; }
  .sp-navi .globalNavSP .nav-inner ul {
    list-style: none;
    padding-left: 0px;
    padding-top: 50px; }
    .sp-navi .globalNavSP .nav-inner ul li {
      color: #fff;
      font-size: 18px;
      padding-bottom: 10px;
      line-height: 0.7;
      padding-top: 25px;
      font-weight: 500;
      border-bottom: 1px solid #fff;
      margin-left: 15px;
      margin-right: 15px; }
      .sp-navi .globalNavSP .nav-inner ul li a {
        color: #fff;
        text-decoration: none;
        margin-bottom: 10px;
        width: 100%;
        display: inline-block; }
      .sp-navi .globalNavSP .nav-inner ul li label {
        color: #fff;
        text-decoration: none;
        margin-bottom: 5px;
        cursor: pointer;
        position: relative;
        display: inline-block;
        width: 100%; }
        .sp-navi .globalNavSP .nav-inner ul li label::after {
          content: "+";
          position: absolute;
          right: 10px;
          top: -5px;
          color: #fff;
          font-size: 28px;
          font-weight: 500; }
      .sp-navi .globalNavSP .nav-inner ul li input {
        display: none; }
      .sp-navi .globalNavSP .nav-inner ul li .subnavi {
        background-color: #fff;
        font-size: 16px;
        padding-top: 0px; }
        .sp-navi .globalNavSP .nav-inner ul li .subnavi li {
          height: 0;
          overflow: hidden;
          -webkit-transition: all 0.5s;
          -moz-transition: all 0.5s;
          -ms-transition: all 0.5s;
          -o-transition: all 0.5s;
          transition: all 0.5s;
          padding-top: 0px;
          padding-bottom: 0px;
          border-bottom: none; }
          .sp-navi .globalNavSP .nav-inner ul li .subnavi li a {
            color: #0198da;
            font-size: 15px;
            margin-bottom: 0px;
            display: flex;
            justify-content: space-between; }
      .sp-navi .globalNavSP .nav-inner ul li #outline:checked ~ .subnavi {
        margin-top: 20px; }
      .sp-navi .globalNavSP .nav-inner ul li #outline:checked ~ .subnavi li {
        height: 60px;
        opacity: 1;
        padding-top: 25px;
        padding-bottom: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid #0198da; }
        .sp-navi .globalNavSP .nav-inner ul li #outline:checked ~ .subnavi li:last-child {
          border-bottom: none; }
      .sp-navi .globalNavSP .nav-inner ul li #about:checked ~ .subnavi {
        margin-top: 20px; }
      .sp-navi .globalNavSP .nav-inner ul li #about:checked ~ .subnavi li {
        height: 60px;
        opacity: 1;
        padding-top: 30px;
        padding-bottom: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid #0198da; }
        .sp-navi .globalNavSP .nav-inner ul li #about:checked ~ .subnavi li:last-child {
          border-bottom: none; }
      .sp-navi .globalNavSP .nav-inner ul li #contact:checked ~ .subnavi {
        margin-top: 20px; }
      .sp-navi .globalNavSP .nav-inner ul li #contact:checked ~ .subnavi li {
        height: 60px;
        opacity: 1;
        padding-top: 30px;
        padding-bottom: 10px;
        box-sizing: border-box;
        border-bottom: 1px solid #0198da; }
        .sp-navi .globalNavSP .nav-inner ul li #contact:checked ~ .subnavi li:last-child {
          border-bottom: none; }
  .sp-navi .globalNavSP .header-download-sp {
    margin-top: 40px;
    padding-left: 30px;
    padding-right: 30px; }
    .sp-navi .globalNavSP .header-download-sp a {
      display: inline-block;
      background-color: #011a6d;
      position: relative;
      color: #fff;
      font-size: 1em;
      padding: 20px 0px 20px 20px;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      letter-spacing: 0.2em;
      transition: 0.3s; }
      .sp-navi .globalNavSP .header-download-sp a:before {
        position: absolute;
        content: "";
        width: 35px;
        height: 35px;
        background-image: url(../img/common/icon-pdf.png);
        background-size: contain;
        top: 18px;
        left: 72px;
        background-repeat: no-repeat; }
.sp-navi nav.globalNavSP.active {
  transform: translateY(0%); }
.sp-navi .navToggle .navToggle-inner {
  display: block;
  position: fixed;
  /* body?E‘I?μ?A?I?a‘I?E’u?w’e */
  right: 0px;
  top: 0px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 8888;
  text-align: center;
  transition-duration: 0.5s;
  background-color: #0198da; }
  .sp-navi .navToggle .navToggle-inner span {
    display: block;
    position: absolute;
    /* .navToggle?E‘I?μ?A */
    width: 25px;
    border-bottom: solid 3px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 20px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(1) {
      top: 19px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(2) {
      top: 31px; }
    .sp-navi .navToggle .navToggle-inner span:nth-child(3) {
      top: 43px; }
.sp-navi .navToggle.active span:nth-child(1) {
  top: 27px;
  left: 21px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 3px #fff; }
.sp-navi .navToggle.active span:nth-child(2), .sp-navi .navToggle.active span:nth-child(3) {
  top: 28px;
  left: 22px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 3px #fff; }
.sp-navi p {
  font-size: 10px;
  color: #fff; }

@media screen and (max-width: 750px) {
  footer {
    margin-top: 150px; } }
footer .page-top a {
  display: block;
  color: #fff;
  background-color: #0198da;
  position: relative;
  width: 100px;
  margin: 0 30px 0 auto;
  text-align: center;
  height: 35px;
  padding-top: 6px;
  box-sizing: border-box;
  font-size: 0.8em;
  font-weight: 500;
  transition: 0.3s; }
  @media screen and (max-width: 750px) {
    footer .page-top a {
      top: 1px; } }
  footer .page-top a:hover {
    opacity: 0.8; }
footer .section-footer {
  padding-top: 15px;
  padding-bottom: 40px;
  background-color: #011a6d; }
  @media screen and (max-width: 750px) {
    footer .section-footer {
      padding: 30px 0; } }
  footer .section-footer nav {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px; }
    @media screen and (max-width: 750px) {
      footer .section-footer nav {
        display: none; } }
    footer .section-footer nav .footernav-first {
      font-size: 0.9em;
      width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 750px) {
        footer .section-footer nav .footernav-first {
          width: 100%;
          padding-left: 10px;
          padding-right: 10px;
          box-sizing: border-box;
          justify-content: center;
          flex-wrap: wrap; } }
      footer .section-footer nav .footernav-first .first {
        padding-top: 5px;
        padding-bottom: 5px;
        margin: 0 20px; }
        @media screen and (max-width: 750px) {
          footer .section-footer nav .footernav-first .first {
            padding-left: 10px;
            padding-right: 10px;
            padding-top: 0px;
            padding-bottom: 0px; } }
        footer .section-footer nav .footernav-first .first a {
          color: #fff;
          transition: 0.3s;
          position: relative; }
          footer .section-footer nav .footernav-first .first a:hover {
            opacity: 0.8; }
        footer .section-footer nav .footernav-first .first .footernav-second {
          font-size: 0.8em; }
          footer .section-footer nav .footernav-first .first .footernav-second .second {
            padding-left: 10px;
            position: relative; }
            footer .section-footer nav .footernav-first .first .footernav-second .second:before {
              content: "-";
              position: absolute;
              color: #fff;
              font-size: 0.9em;
              top: -2px;
              left: 0px; }
  footer .section-footer .fotter-logo {
    text-align: center; }
    footer .section-footer .fotter-logo a {
      transition: 0.3s; }
      footer .section-footer .fotter-logo a img {
        width: 100px; }
        @media screen and (max-width: 750px) {
          footer .section-footer .fotter-logo a img {
            width: 80px; } }
      footer .section-footer .fotter-logo a:hover {
        opacity: 0.8; }
  footer .section-footer .footer-info {
    text-align: center;
    color: #fff;
    text-align: 0.7em;
    font-size: 0.8em;
    line-height: 1.5em; }
footer .section-copyright {
  background-color: #011a6d;
  border-top: 1px solid #fff; }
  footer .section-copyright .copyright {
    font-size: 0.8em;
    text-align: center;
    padding: 5px 0;
    color: #fff; }
    @media screen and (max-width: 750px) {
      footer .section-copyright .copyright {
        margin-top: 0px; } }

/*トップページ*/
main .unit-h2 {
  text-align: center; }
  main .unit-h2 h2 {
    margin: 0;
    font-size: 2em;
    letter-spacing: 0.3em;
    font-family: 'futura'; }
    main .unit-h2 h2 span {
      font-size: 1.2em;
      color: #011a6d; }
  main .unit-h2 .subtitle {
    font-size: 0.8em; }
main .slider1 {
  height: calc(100vh - 90px);
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 750px) {
    main .slider1 {
      height: 280px;
      margin-top: 0px; } }
  main .slider1 .swiper-wrapper {
    height: 100%; }
    main .slider1 .swiper-wrapper img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
  main .slider1 .mv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 999; }
    main .slider1 .mv-logo img {
      width: 200px; }
      @media screen and (max-width: 750px) {
        main .slider1 .mv-logo img {
          width: 100px; } }
  main .slider1:before {
    position: absolute;
    content: "";
    top: -48%;
    left: -10%;
    width: 250px;
    height: 100%;
    background-color: rgba(51, 102, 255, 0.6);
    transform: rotate(35deg);
    z-index: 99; }
    @media screen and (max-width: 750px) {
      main .slider1:before {
        content: none; } }
  main .slider1:after {
    position: absolute;
    content: "";
    bottom: -48%;
    right: -10%;
    width: 250px;
    height: 100%;
    background-color: rgba(51, 102, 255, 0.6);
    transform: rotate(35deg);
    z-index: 99; }
    @media screen and (max-width: 750px) {
      main .slider1:after {
        content: none; } }
main .main-content-top h2 {
  font-size: 1.3em;
  padding-bottom: 10px;
  text-align: center; }
  main .main-content-top h2 span {
    border-bottom: 3px solid #fff;
    padding-bottom: 10px; }
main .main-content-top .section-lead {
  margin: 70px auto;
  width: 1200px;
  text-align: center; }
  @media screen and (max-width: 750px) {
    main .main-content-top .section-lead {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      box-sizing: border-box; } }
  main .main-content-top .section-lead .lead-1 {
    font-size: 1.5em;
    font-size: 600; }
  main .main-content-top .section-lead .lead-2 {
    margin-top: 50px; }
main .main-content-top .section-about {
  width: 100%;
  position: relative;
  height: 80vh; }
  @media screen and (max-width: 750px) {
    main .main-content-top .section-about {
      height: unset; } }
  main .main-content-top .section-about:before {
    position: absolute;
    content: "";
    width: 60%;
    height: 100%;
    background-image: url(../img/top/about-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
    @media screen and (max-width: 750px) {
      main .main-content-top .section-about:before {
        content: none; } }
  main .main-content-top .section-about .about-img {
    height: 50vh; }
    main .main-content-top .section-about .about-img img {
      object-fit: cover;
      width: 100%;
      height: 100%; }
  main .main-content-top .section-about .box-topAbout {
    width: 42%;
    background-color: #0198da;
    padding: 70px 30px;
    position: absolute;
    color: #fff;
    text-align: center;
    right: 0;
    bottom: -100px; }
    @media screen and (max-width: 750px) {
      main .main-content-top .section-about .box-topAbout {
        width: 100%;
        bottom: unset;
        padding: 70px 0;
        position: relative; } }
    main .main-content-top .section-about .box-topAbout h3 {
      font-weight: 500;
      text-align: center;
      font-size: 1.3em; }
    @media screen and (max-width: 1000px) {
      main .main-content-top .section-about .box-topAbout h3 {
        font-size: 1.1em;
        font-weight: 600; } }
main .main-content-top .section-archive {
  margin-top: 200px;
  width: 100%;
  background-color: #e0e0e0;
  padding-top: 50px;
  padding-bottom: 100px; }
  @media screen and (max-width: 750px) {
    main .main-content-top .section-archive {
      margin-top: 50px; } }
  main .main-content-top .section-archive .box-archiveslide {
    margin-top: 50px;
    margin-bottom: 50px; }
    main .main-content-top .section-archive .box-archiveslide .slider2 .swiper-slide {
      text-align: center; }
      main .main-content-top .section-archive .box-archiveslide .slider2 .swiper-slide a {
        transition: 0.3s; }
        main .main-content-top .section-archive .box-archiveslide .slider2 .swiper-slide a:hover {
          opacity: 0.8; }
      main .main-content-top .section-archive .box-archiveslide .slider2 .swiper-slide img {
        width: 100%;
        object-fit: cover; }
main .main-content-top .section-companyinfo {
  width: 100%;
  display: flex;
  margin-bottom: 100px; }
  @media screen and (max-width: 750px) {
    main .main-content-top .section-companyinfo {
      display: block; } }
  main .main-content-top .section-companyinfo .box-info {
    width: 50%;
    box-sizing: border-box;
    background-image: url(../img/top/info-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: table;
    height: 500px; }
    @media screen and (max-width: 750px) {
      main .main-content-top .section-companyinfo .box-info {
        width: 100%;
        height: unset;
        padding: 50px 0; } }
    main .main-content-top .section-companyinfo .box-info .box-info-inner {
      display: table-cell;
      vertical-align: middle; }
      main .main-content-top .section-companyinfo .box-info .box-info-inner .text {
        margin-top: 50px;
        margin-bottom: 50px; }
  main .main-content-top .section-companyinfo .box-map {
    width: 50%; }
    @media screen and (max-width: 750px) {
      main .main-content-top .section-companyinfo .box-map {
        width: 100%; } }
    main .main-content-top .section-companyinfo .box-map iframe {
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 750px) {
        main .main-content-top .section-companyinfo .box-map iframe {
          height: 300px; } }

/*下層ページ*/
.section-mvSecond {
  width: 100%;
  height: 200px; }
  .section-mvSecond img {
    object-fit: cover;
    width: 100%;
    height: 100%; }

.h1-second {
  font-size: 1.7em;
  text-align: center;
  margin: 70px 0 50px; }

.main-content {
  width: 1200px;
  margin: 50px auto; }
  @media screen and (max-width: 750px) {
    .main-content {
      width: 100%;
      padding: 0 10px;
      box-sizing: border-box; } }
  .main-content h2 {
    letter-spacing: 0.3em;
    font-weight: 500;
    font-size: 1.5em;
    border-bottom: 1px splid #0198da;
    padding-bottom: 20px; }
    @media screen and (max-width: 750px) {
      .main-content h2 {
        font-size: 1.3em;
        font-weight: 500; } }
  .main-content .section-info dl {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    display: flex; }
    @media screen and (max-width: 750px) {
      .main-content .section-info dl {
        display: block; } }
    .main-content .section-info dl dt {
      width: 100px;
      padding-left: 10px; }
      @media screen and (max-width: 750px) {
        .main-content .section-info dl dt {
          width: 100%;
          padding-left: 0;
          font-weight: 600; } }
    .main-content .section-info dl dd {
      width: calc(100% - 100px); }
      @media screen and (max-width: 750px) {
        .main-content .section-info dl dd {
          width: 100%;
          margin-left: 0; } }
      .main-content .section-info dl dd span {
        font-weight: 600;
        margin-right: 1.5em; }
      .main-content .section-info dl dd .box-map {
        width: 100%;
        margin: 20px 0; }
        @media screen and (max-width: 750px) {
          .main-content .section-info dl dd .box-map {
            width: 100%; } }
        .main-content .section-info dl dd .box-map iframe {
          width: 100%;
          height: 300px; }
          @media screen and (max-width: 750px) {
            .main-content .section-info dl dd .box-map iframe {
              height: 300px; } }
  .main-content .section-history {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-history dl {
      margin: 0;
      display: flex; }
      @media screen and (max-width: 750px) {
        .main-content .section-history dl {
          display: block; } }
      .main-content .section-history dl dt {
        border-right: 1px solid #ccc;
        width: 200px;
        padding-left: 10px;
        padding-bottom: 20px; }
        @media screen and (max-width: 750px) {
          .main-content .section-history dl dt {
            width: 100%;
            border: none;
            padding-left: 0;
            padding-bottom: 0; } }
      .main-content .section-history dl dd {
        width: calc(100% - 200px; );
        padding-bottom: 20px; }
        @media screen and (max-width: 750px) {
          .main-content .section-history dl dd {
            width: 100%;
            margin-left: 0; } }
  .main-content .section-contact {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-contact .box-tel {
      text-align: center;
      padding: 50px 0;
      border: 1px solid #011a6d; }
      .main-content .section-contact .box-tel .tel-number {
        font-size: 2em;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1.5em; }
    .main-content .section-contact .contact-attention a {
      color: #0198da; }
    .main-content .section-contact .box-form table {
      border-collapse: collapse;
      width: 100%;
      margin-top: 50px; }
      .main-content .section-contact .box-form table th {
        background-color: #0198da;
        padding: 15px;
        text-align: left;
        width: 240px;
        border: 1px solid #fff;
        color: #fff;
        font-weight: 400; }
        @media screen and (max-width: 750px) {
          .main-content .section-contact .box-form table th {
            display: block;
            width: 100%;
            padding: 10px;
            box-sizing: border-box;
            border: 1px solid #0198da; } }
        .main-content .section-contact .box-form table th .must {
          position: relative; }
          .main-content .section-contact .box-form table th .must:after {
            position: absolute;
            content: "※";
            font-size: 0.5em;
            color: #fff;
            top: -8px;
            right: -10px; }
      .main-content .section-contact .box-form table .bb-gray {
        border-bottom: 1px solid #0198da; }
      .main-content .section-contact .box-form table .bt-gray {
        border-top: 1px solid #0198da; }
      .main-content .section-contact .box-form table td {
        padding: 15px;
        border: 1px solid #0198da; }
        @media screen and (max-width: 750px) {
          .main-content .section-contact .box-form table td {
            display: block;
            padding: 10px;
            box-sizing: border-box; } }
        .main-content .section-contact .box-form table td .cell {
          height: 20px;
          width: 80%;
          border: 1px solid #ccc; }
          @media screen and (max-width: 750px) {
            .main-content .section-contact .box-form table td .cell {
              width: 90%; } }
        .main-content .section-contact .box-form table td .cell-area {
          width: 80%;
          border: 1px solid #ccc; }
          @media screen and (max-width: 750px) {
            .main-content .section-contact .box-form table td .cell-area {
              width: 90%; } }
    .main-content .section-contact .box-form .button {
      width: 200px;
      height: 70px;
      margin: 50px auto; }
      .main-content .section-contact .box-form .button .wpcf7-submit {
        width: 200px;
        height: 70px;
        background-color: #0198da;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        color: #fff; }
        .main-content .section-contact .box-form .button .wpcf7-submit:hover {
          background-color: #011a6d;
          color: #fff; }
  .main-content .section-recruit {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-recruit .recruit-lead {
      margin-bottom: 50px; }
    .main-content .section-recruit dl {
      border-bottom: 1px solid #ccc;
      padding-bottom: 20px;
      display: flex; }
      @media screen and (max-width: 750px) {
        .main-content .section-recruit dl {
          display: block; } }
      .main-content .section-recruit dl dt {
        width: 100px;
        padding-left: 10px; }
        @media screen and (max-width: 750px) {
          .main-content .section-recruit dl dt {
            width: 100%;
            padding-left: 0;
            font-weight: 600; } }
      .main-content .section-recruit dl dd {
        width: calc(100% - 100px); }
        @media screen and (max-width: 750px) {
          .main-content .section-recruit dl dd {
            width: 100%;
            margin-left: 0; } }
        .main-content .section-recruit dl dd span {
          font-weight: 600;
          margin-right: 1.5em; }
  .main-content .section-privacy {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-privacy h3 {
      margin-top: 50px; }
    .main-content .section-privacy ul li {
      list-style: disc;
      margin-left: 1.5em; }
  .main-content .section-archive {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-archive .archive-list ul {
      display: flex;
      flex-wrap: wrap; }
      .main-content .section-archive .archive-list ul li {
        padding: 10px;
        width: calc(100%/3);
        box-sizing: border-box; }
        .main-content .section-archive .archive-list ul li a {
          transition: 0.3s; }
          .main-content .section-archive .archive-list ul li a:hover {
            opacity: 0.8; }
          .main-content .section-archive .archive-list ul li a img {
            width: 100%;
            height: 300px;
            object-fit: cover; }
          .main-content .section-archive .archive-list ul li a .title {
            color: #2b2b2b;
            text-align: center; }
        @media screen and (max-width: 750px) {
          .main-content .section-archive .archive-list ul li {
            width: 50%; } }
  .main-content .section-archive-single {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-archive-single .single-content .box-main {
      display: flex; }
      @media screen and (max-width: 750px) {
        .main-content .section-archive-single .single-content .box-main {
          display: block; } }
      .main-content .section-archive-single .single-content .box-main .mainimage {
        width: 50%;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .main-content .section-archive-single .single-content .box-main .mainimage {
            width: 100%; } }
        .main-content .section-archive-single .single-content .box-main .mainimage .img img {
          width: 100%; }
      .main-content .section-archive-single .single-content .box-main .maintext {
        width: 50%;
        padding-left: 10px;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .main-content .section-archive-single .single-content .box-main .maintext {
            width: 100%;
            padding-left: 0;
            margin-top: 10px; } }
    .main-content .section-archive-single .single-content .box-garally {
      margin-top: 50px; }
      .main-content .section-archive-single .single-content .box-garally ul {
        display: flex;
        flex-wrap: wrap; }
        .main-content .section-archive-single .single-content .box-garally ul li {
          width: calc(100%/3);
          padding: 5px;
          box-sizing: border-box; }
          @media screen and (max-width: 750px) {
            .main-content .section-archive-single .single-content .box-garally ul li {
              width: 50%; } }
          .main-content .section-archive-single .single-content .box-garally ul li img {
            width: 100%; }
          .main-content .section-archive-single .single-content .box-garally ul li .description {
            margin-bottom: 5px; }
  .main-content .section-strength {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-strength .box-lead {
      text-align: center; }
      .main-content .section-strength .box-lead .main {
        font-size: 2em;
        margin-bottom: 20px; }
        @media screen and (max-width: 750px) {
          .main-content .section-strength .box-lead .main {
            line-height: 2em; } }
      .main-content .section-strength .box-lead .sub {
        font-size: 1.2em; }
        @media screen and (max-width: 750px) {
          .main-content .section-strength .box-lead .sub {
            line-height: 2em; } }
    .main-content .section-strength .box-logo {
      text-align: center;
      margin: 50px 0; }
      .main-content .section-strength .box-logo img {
        width: 300px;
        height: auto; }
        @media screen and (max-width: 750px) {
          .main-content .section-strength .box-logo img {
            width: 60%; } }
    .main-content .section-strength .box-images {
      display: flex;
      margin-bottom: 50px;
      margin-top: 50px; }
      @media screen and (max-width: 750px) {
        .main-content .section-strength .box-images {
          display: block; } }
      .main-content .section-strength .box-images a {
        width: 50%;
        box-sizing: border-box;
        display: block;
        transition: 0.3s;
        padding: 10px;
        color: #2b2b2b; }
        @media screen and (max-width: 750px) {
          .main-content .section-strength .box-images a {
            width: 100%;
            margin-bottom: 20px; } }
        .main-content .section-strength .box-images a img {
          width: 100%; }
        .main-content .section-strength .box-images a:hover {
          opacity: 0.8; }
    .main-content .section-strength .link-button-wrap {
      display: flex;
      width: 70%;
      margin: 50px auto; }
      @media screen and (max-width: 750px) {
        .main-content .section-strength .link-button-wrap {
          display: block;
          width: 100%; } }
    .main-content .section-strength h3 {
      margin-top: 50px; }
      .main-content .section-strength h3 span {
        border: 1px solid #ccc;
        padding: 10px 20px;
        font-weight: 200; }
  .main-content .section-greet {
    margin-top: 100px;
    margin-bottom: 100px; }
    .main-content .section-greet .box-greet {
            /*display: flex;

            @media screen and (max-width: 750px) {
                display: block;
            }*/
            /*.photo {
                width: 40%;

                @media screen and (max-width: 750px) {
                    width: 100%;
                    text-align: center;
                }

                img {
                    width: 100%;
                    height: auto;

                    @media screen and (max-width: 750px) {
                        width: 80%;
                    }
                }
            }*/ }
      .main-content .section-greet .box-greet .greet {
        padding-left: 0px;
        width: 100%;
        box-sizing: border-box; }
        @media screen and (max-width: 750px) {
          .main-content .section-greet .box-greet .greet {
            width: 100%;
            padding-left: 0;
            margin-top: 20px; } }
        .main-content .section-greet .box-greet .greet .name {
          display: block;
          text-align: right; }
  .main-content .section-business {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    @media screen and (max-width: 750px) {
      .main-content .section-business {
        display: block; } }
    .main-content .section-business .box-business {
      display: block;
      margin: 20px 40px;
      width: calc(50% - 80px);
      padding: 20px;
      box-sizing: border-box;
      border: 1px solid #ccc;
      border-radius: 20px; }
      @media screen and (max-width: 750px) {
        .main-content .section-business .box-business {
          display: block;
          width: 100%;
          margin: 20px 0; } }
      .main-content .section-business .box-business .business-photo {
        width: 80%;
        box-sizing: border-box;
        margin: 0 auto;
        margin-bottom: 20px;
        margin-top: 20px; }
        @media screen and (max-width: 750px) {
          .main-content .section-business .box-business .business-photo {
            width: 100%;
            padding-right: 0; } }
        .main-content .section-business .box-business .business-photo img {
          width: 100%; }
      .main-content .section-business .box-business .business-text {
        width: 100%; }
        @media screen and (max-width: 750px) {
          .main-content .section-business .box-business .business-text {
            width: 100%;
            margin-bottom: 50px; } }
        .main-content .section-business .box-business .business-text h3 {
          text-align: center; }
        .main-content .section-business .box-business .business-text .description ul {
          display: flex;
          flex-wrap: wrap; }
          .main-content .section-business .box-business .business-text .description ul li {
            padding-left: 1.2em;
            padding-right: 2em;
            position: relative; }
            .main-content .section-business .box-business .business-text .description ul li:before {
              position: absolute;
              content: "✓";
              font-weight: 600;
              color: #0198da;
              top: 0;
              left: 0; }
  .main-content .section-404 {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center; }
    .main-content .section-404 .text {
      font-size: 1.3em; }
    .main-content .section-404 .link {
      margin-top: 60px; }
      .main-content .section-404 .link a {
        color: #fff;
        padding: 10px 40px;
        display: inline-block;
        background-color: #0198da;
        transition: 0.3s; }
        .main-content .section-404 .link a:hover {
          background-color: #e0e0e0; }

.fc-grey {
  color: #d1d1d1; }

.pt-100 {
  padding-top: 100px; }

/*# sourceMappingURL=style.css.map */
