/*Theme Name:original */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap");
:root {
  --c_main: #000;
  --c_blue: #014099;
}

@media screen and (min-width: 751px) {
  /*-------------------------------------------
  all
  -------------------------------------------*/
  html {
    font-size: 100%;
    color: var(--c_main);
    font-family: "Noto Sans JP", sans-serif;
  }
  body {
    margin: 0 auto;
    line-height: 200%;
    min-width: 1200px;
    letter-spacing: 0.1em;
  }
  body img {
    height: auto;
  }
  body a {
    color: var(--c_main);
    text-decoration: none;
  }
  body p {
    line-height: 200%;
  }
  body p:last-child {
    margin-bottom: 0;
  }
  /*-------------------------------------------
  header
  -------------------------------------------*/
  header .h_top {
    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;
    padding: 30px;
  }
  header .h_top nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  header .catch {
    margin-top: -100px;
    position: relative;
    z-index: -1;
  }
  header .catch img {
    display: block;
    width: 100%;
  }
  header .catch p {
    position: absolute;
    top: 300px;
    text-align: center;
    left: 50%;
    width: 80%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    font-size: 3.75rem;
    font-weight: 700;
  }
  /*-------------------------------------------
  main
  -------------------------------------------*/
  section h2 {
    font-size: 3.75rem;
    margin-bottom: 100px;
    letter-spacing: 0.2em;
  }
  section h2 span {
    color: var(--c_blue);
  }
  section p {
    font-weight: 700;
  }
  .inner {
    width: 1000px;
    margin: 0 auto;
  }
  #mission {
    padding-top: 100px;
    position: relative;
  }
  #mission h2 {
    text-align: center;
  }
  #mission p {
    margin-bottom: 100px;
    font-size: 1.25rem;
  }
  #mission p strong {
    color: var(--c_blue);
    font-weight: 700;
  }
  #mission:after {
    content: "";
    position: absolute;
    bottom: -300px;
    right: 0;
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-width: 0 100vw 200px 0;
    border-color: transparent #fff transparent transparent;
    z-index: 2;
  }
  #business {
    background: var(--c_blue);
    padding: 150px 0 100px 0;
    position: relative;
  }
  #business h2 {
    margin-bottom: 100px;
    color: #fff;
  }
  #business > p {
    color: #fff;
    margin-bottom: 100px;
    font-size: 1.25rem;
  }
  #business ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  #business ul li img {
    display: block;
    border-radius: 5px;
    margin-right: 50px;
  }
  #business ul li div {
    color: #fff;
  }
  #business ul li div h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
  }
  #business ul li div p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
  #business ul li div p:last-child {
    margin-bottom: 0;
  }
  #business ul li:nth-child(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #business ul li:nth-child(2) img {
    margin-left: 50px;
  }
  #business ul li:last-child {
    margin-bottom: 0;
  }
  #business:after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: 0;
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-width: 0 100vw 200px 0;
    border-color: transparent #014099 transparent transparent;
    z-index: 2;
  }
  #company {
    background-image: url(../images/bg_company.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 150px 0 100px 0;
  }
  #company h2 {
    margin-bottom: 100px;
  }
  #company dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #company dl dt {
    width: 20%;
    padding: 10px 20px;
    background: var(--c_blue);
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.25rem;
  }
  #company dl dt:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border: 10px solid transparent;
    border-left: 15px solid var(--c_blue);
  }
  #company dl dd {
    width: 80%;
    padding: 10px 20px 10px 30px;
    border: 2px solid var(--c_blue);
    background: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.25rem;
  }
  #company dl dd a {
    font-weight: 700;
  }
  #company dd .sp{
    display: none !important;
    margin-left: -20px
  }
  /*-------------------------------------------
  footer
  -------------------------------------------*/
  footer {
    border-top: 5px solid var(--c_blue);
    padding: 50px 0 0 0;
  }
  footer h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  footer ul {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ul li {
    text-align: center;
  }
  footer small {
    display: block;
    margin: 30px auto;
    text-align: center;
    font-size: 0.875rem;
  }
  /*-------------------------------------------
  other
  -------------------------------------------*/
  .smonly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  /*-------------------------------------------
  all
  -------------------------------------------*/
  html {
    font-size: 100%;
    color: var(--c_main);
    font-family: "Noto Sans JP", sans-serif;
  }
  body {
    width: 100%;
    line-height: 200%;
  }
  body img {
    height: auto;
  }
  body a {
    color: var(--c_main);
    text-decoration: none;
  }
  body p {
    line-height: 200%;
  }
  body p:last-child {
    margin-bottom: 0;
  }
  /*-------------------------------------------
  header
  -------------------------------------------*/
  header {
    margin-bottom: 40px;
  }
  header .h_top {
    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;
    padding: 30px;
  }
  header .h_top nav {
    display: none;
  }
  header .catch {
    margin-top: -100px;
    position: relative;
    z-index: -1;
  }
  header .catch img {
    display: block;
    width: 100%;
  }
  header .catch p {
    position: absolute;
    top: 150px;
    text-align: center;
    left: 50%;
    width: 90%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    font-size: 1.875rem;
  }
  header .menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
    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;
    background: none;
    color: var(--c_blue);
    border: none;
    font-size: 1.625rem;
  }
  header .menu-btn:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f0c9";
    font-weight: 500;
  }
  header .menu-btn.open:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00d";
    font-weight: 500;
    color: #fff;
  }
  header .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 50vw;
    height: 100vh;
    background: var(--c_blue);
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    overflow: none;
    padding-top: 50px;
  }
  header .menu li {
    border-bottom: 1px solid #fff;
    padding: 10px;
  }
  header .menu li a {
    display: block;
    padding: 5px 10px;
    color: #fff;
  }
  header .menu li a span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 10px;
  }
  header .menu.is-active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  /*-------------------------------------------
  main
  -------------------------------------------*/
  section h2 {
    font-size: 1.875rem;
    margin-bottom: 30px;
  }
  section h2 span {
    color: var(--c_blue);
  }
  #mission {
    position: relative;
  }
  #mission h2 {
    text-align: center;
  }
  #mission p {
    padding: 0 30px 30px 30px;
  }
  #mission p strong {
    color: var(--c_blue);
  }
  #mission:after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-width: 0 100vw 50px 0;
    border-color: transparent #fff transparent transparent;
    z-index: 2;
  }
  #business {
    background: var(--c_blue);
    padding: 50px 30px 30px 30px;
    position: relative;
  }
  #business h2 {
    color: #fff;
  }
  #business > p {
    color: #fff;
    margin-bottom: 30px;
  }
  #business ul li {
    margin-bottom: 30px;
  }
  #business ul li img {
    width: 100%;
    display: block;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  #business ul li div {
    color: #fff;
  }
  #business ul li div h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  #business ul li div p {
    margin-bottom: 20px;
  }
  #business ul li div p:last-child {
    margin-bottom: 0;
  }
  #business ul li:last-child {
    margin-bottom: 0;
  }
  #business:after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-width: 0 100vw 50px 0;
    border-color: transparent #014099 transparent transparent;
    z-index: 2;
  }
  #company {
    background-image: url(../images/bg_company.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 50px 30px 30px 30px;
  }
  #company h2 {
    margin-bottom: 30px;
  }
  #company dl dt {
    padding: 10px 30px;
    background: var(--c_blue);
    color: #fff;
  }
  #company dl dd {
    padding: 10px 30px;
    border: 2px solid var(--c_blue);
    background: #fff;
    margin-bottom: 30px;
  }
  #company dd .pc{
    display: none !important;
    margin-left: -20px
  }
  /*-------------------------------------------
  footer
  -------------------------------------------*/
  footer {
    border-top: 5px solid var(--c_blue);
    padding: 30px 0 0 0;
  }
  footer h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  footer ul {
    display: none;
  }
  footer small {
    display: block;
    margin: 30px auto;
    text-align: center;
    font-size: 0.875rem;
  }
  /*-------------------------------------------
  other
  -------------------------------------------*/
  .pconly {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */