/*
Theme Name: コラボ
*/

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* Reset ----- */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  margin: 0;
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
  vertical-align: middle;
}

button,
select {
  text-transform: none;
}

input,
button,
select {
  font-family: inherit;
  font-weight: inherit;
}

input[type="submit"],
input[type="button"],
button[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]:-webkit-search-decoration,
input[type="button"]:-webkit-search-decoration,
button[type="submit"]:-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus,
button[type="submit"]:focus {
  outline: none;
}

/* IE 10+ ----- */
:-ms-input-placeholder {
  color: #999;
}

html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

img,
iframe {
  border: 0
}

img {
  vertical-align: bottom;
}

svg {
  fill: currentColor;
}

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

td,
th {
  padding: 0;
  text-align: left;
  font-weight: normal;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/*++++++++++++++++++*/
body {
  position: relative;
  padding-top: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #101112;
  background: #F9FAFB;
  min-height: 1000px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

.sp-only {
  display: none;
}

.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 40px;
  background: #fff;

  .logo {
    display: flex;
    flex-flow: column;
    width: 268px;

    .logo-p {
      margin-top: 3px;
      font-size: 14px;
      font-weight: bold;
      color: #00368A;
    }
  }

  .right-box {
    display: flex;
    align-items: center;
    gap: 40px;

    .g-nav {
      display: flex;
      gap: 10px;
      font-size: 16px;
    }

    .menu-item>a {
      display: block;
      padding: 0 15px;
      line-height: 95px;
      border-bottom: 5px solid #fff;

      &:hover {
        border-color: #00368A;
      }
    }

    .drop-menu {
      position: relative;

      &:hover .drop-menu-list {
        visibility: visible;
      }
    }

    .drop-menu-list {
      visibility: hidden;
      position: absolute;
      top: 100%;
      width: 238px;
      padding: 10px 20px;
      background: #262626;

      li+li {
        margin-top: 10px;
      }

      a {
        display: block;
        color: #fff;
        background: url(img/drop-menu-list_icon.png) no-repeat left center;
        padding-left: 20px;
      }
    }
  }

  .burger {
    display: none;
  }
}

@media (max-width: 1100px) {
  .header {
    .pc-only {
      display: none;
    }

    .sp-only {
      display: block;
    }

    .right-box {
      .g-nav {
        position: fixed;
        top: 100px;
        bottom: 0;
        left: 0;
        right: 0;
        flex-flow: column;
        gap: 0;
        padding-top: 20px;
        background: rgba(0, 0, 0, .7);
        transform: translateX(100%);

        &.opened {
          transform: translate(0);
        }

        a {
          color: #fff;
        }
      }

      .menu-item>a {
        display: block;
        padding: 10px 20px;
        line-height: 1.5;
        border: none;
      }

      .drop-menu {
        position: relative;
        border: none;
      }

      .drop-menu-list {
        visibility: visible;
        position: relative;
        top: auto;
        width: 100%;
        padding: 0 20px 10px 30px;
        background: none;

        a {
          display: block;
          color: #fff;
          background: url(img/drop-menu-list_icon.png) no-repeat left center;
          padding-left: 20px;
        }
      }
    }

    .burger {
      display: block;
      width: 69px;
      height: 69px;
      background: url(img/burger.png) center center / cover no-repeat;
      cursor: pointer;

      &.opened {
        background: url(img/burger_opened.png) center center / cover no-repeat;
      }
    }
  }
}

@media (max-width: 780px) {
  body {
    padding-top: 130px;
    font-size: 32px;
    transform-origin: top left;
    width: 780px;
    transform: scale(calc(100vw / 780));
  }

  .header {
    height: 130px;
    width: 780px;
    padding: 0 20px;

    .logo {
      width: 321px;

      .logo-p {
        margin-top: 2px;
        font-size: 15px;
      }
    }

    .right-box {
      .g-nav {
        top: 130px;
        padding-top: 40px;
        font-size: 32px;

      }

      .menu-item>a {
        padding: 20px 40px;
      }

      .drop-menu-list {
        padding: 0 40px 20px 60px;
      }
    }

  }
}

.slider-wrap {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  background: #fff;

  .slider {
    width: 1920px;
  }
}

@media (max-width: 780px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

section {
  padding: 0 20px 80px;
  line-height: 1.7;
}

.h2-simple {
  margin-top: 80px;
  text-align: center;
  font-weight: bold;

  span {
    display: block;
  }

  .en {
    font-size: 22px;
    color: #00368A;
    margin-bottom: .3em;
  }

  .jp {
    font-size: 32px;
  }
}

.h2-sub {
  margin-top: 17px;
  font-size: 22px;
  text-align: center;
}

.h2-img {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 780px) {
  section {
    padding: 0 40px 80px;
  }

  .h2-simple {
    margin-top: 120px;
  }

  .h2-sub {
    margin-top: 24px;
    font-size: 28px;
  }

  .h2-img {
    margin-top: 120px;
  }
}

.trans {
  padding-top: 1px;
  background: url(img/bg01.png) top center / cover no-repeat;

  .trans01 {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 0;
    font-size: 16px;

    .left-txt {
      width: 463px;

      h2 {
        margin-bottom: 20px;
        font-size: 45px;
        line-height: 1.1;

        .small {
          font-size: 31px;
        }
      }

      ul {
        li {
          padding-left: 27px;
          margin-top: 1em;
          background: url(img/trans01-li.png) no-repeat left center;
          background-size: 19px;
        }
      }

      p {
        margin-top: 30px;
      }
    }

    .right-list {
      display: flex;
      gap: 16px;
      width: calc(100% - 463px);
      font-size: 16px;

      .box {
        width: calc((100% - 32px) / 3);
        padding: 32px 0 32px;
        box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
        border-radius: 6px;
        /*background: url(img/trans01-arrow.png) no-repeat center bottom 30px;*/
        background-color: #fff;
        text-align: center;

        .icon {
          width: 115px;
        }

        h3 {
          width: 167px;
          padding: 8px 0;
          margin: auto;
          border-bottom: 1px solid #D9D9D9;
          font-size: 18px;
          font-weight: bold;
          color: #00368A;
        }

        h4 {
          margin: 8px 0 16px;
          font-size: 14px;
          font-weight: bold;

          b {
            font-size: 18px;
          }
        }

      }
    }
  }

  .trans02 {
    display: flex;
    max-width: 900px;
    padding: 30px 0;
    margin: 40px auto 0;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    border-radius: 6px;

    .left-img {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 35%;

      img {
        width: 172px;
      }
    }

    .right-txt {
      h3 {
        font-size: 18px;
        font-weight: bold;
        color: #00368A;
      }

      p {
        margin-top: 1em;
        margin-bottom: 0.5em;
        font-size: 16px;
        line-height: 2;
      }

      img {
        width: 269px;
      }
    }
  }

  .trans03 {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    gap: 20px;

    .box {
      width: calc(50% - 10px);
      border-radius: 6px;
      background: #fff;
      box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    }

    .head {
      position: relative;
      height: 198px;
      padding: 20px 24px;
      background-image: linear-gradient(70deg, #f9fafb, #d3e0f6);

      img {
        position: absolute;
        top: 18px;
        right: 20px;
        height: 164px;
      }

      h2 {
        font-size: 22px;
        font-weight: bold;
        color: #00368A;
      }

      h3 {
        margin: 10px 0;
        font-size: 31px;
        line-height: 1.2;

        .small {
          font-size: 21px;
        }
      }

      p {
        font-weight: bold;
        color: #00368A;
      }
    }

    .txt {
      padding: 24px 24px 28px;

      ul {
        li {
          padding-left: 27px;
          margin-bottom: .5em;
          background: url(img/trans01-li.png) no-repeat left center;
          background-size: 19px;
        }
      }

      a {
        position: relative;
        display: block;
        width: 100%;
        margin-top: 20px;
        background-image: linear-gradient(90deg, #f9fafb, #d3e0f6);
        border-radius: 6px;
        font-size: 16px;
        font-weight: bold;
        color: #00368A;
        line-height: 42px;
        text-align: center;

        &::after {
          position: absolute;
          top: 14px;
          right: 14px;
          display: block;
          content: "";
          width: 42px;
          height: 16px;
          background: url(img/trans03-arrow01.png) center center / cover no-repeat;
        }
      }
    }

    .box.p2 {
      .head {
        background-image: linear-gradient(70deg, #001B45, #00368A);
        color: #fff;

        h2,
        p {
          color: #E7CF72;
        }
      }

      ul {
        li {
          background-image: url(img/trans01-li2.png);
        }
      }

      a {
        background-image: linear-gradient(90deg, #001B45, #00368A);
        color: #fff;

        &::after {
          background-image: url(img/trans03-arrow02.png);
        }
      }
    }
  }
}

@media (max-width: 1200px) {
  .trans {
    .trans01 {
      flex-flow: column;
      max-width: 780px;

      .left-txt {
        margin: 0 auto 40px;
      }

      .right-list {
        width: 100%;
      }
    }
  }
}

@media (max-width: 780px) {
  .trans {
    background-image: url(img/bg01_sp.png);

    .trans01 {
      margin-top: 40px;
      font-size: 30px;

      .left-txt {
        width: 100%;

        h2 {
          margin-bottom: 40px;
          font-size: 74px;
          line-height: 1.2;
          text-align: center;

          .small {
            font-size: 50px;
          }
        }

        ul {
          li {
            padding-left: 60px;
            background-size: 39px;
            background-position: 0 5px;
          }
        }

        p {
          margin-top: 40px;
          font-size: 29px;
        }
      }

      .right-list {
        flex-flow: column;
        gap: 40px;
        font-size: 32px;

        .box {
          width: 100%;
          /*background-image: url(img/trans01-arrow_sp.png);*/

          .icon {
            width: 213px;
          }

          h3 {
            width: 311px;
            padding: 14px 0;
            font-size: 36px;
          }

          h4 {
            margin: 16px 0 24px;
            font-size: 28px;

            b {
              font-size: 40px;
            }
          }

        }
      }
    }

    .trans02 {
      flex-flow: column;
      padding: 24px 0;
      margin: 40px auto 0;
      text-align: center;

      .left-img {
        width: 100%;
        margin-bottom: 18px;

        img {
          width: 302px;
        }
      }

      .right-txt {
        h3 {
          font-size: 32px;
        }

        p {
          font-size: 28px;
          line-height: 1.7;
        }

        img {
          width: 400px;
        }
      }
    }

    .trans03 {
      flex-flow: column;
      gap: 40px;

      .box {
        width: 100%;
      }

      .head {
        height: 315px;
        padding: 32px 35px;

        img {
          top: 29px;
          right: 32px;
          height: 260px;
        }

        h2 {
          font-size: 35px;
        }

        h3 {
          margin: 12px 0 15px;
          font-size: 49px;

          .small {
            font-size: 33px;
          }
        }

        p {
          font-size: 25px;
        }
      }

      .txt {
        padding: 39px 39px 44px;

        ul {
          li {
            padding-left: 45px;
            background-size: 30px;
            font-size: 25px;
          }
        }

        a {
          margin-top: 60px;
          border-radius: 6px;
          font-size: 25px;
          line-height: 67px;

          &::after {
            top: 22px;
            right: 27px;
            width: 66px;
            height: 25px;
          }
        }
      }

    }
  }
}

.dx {
  padding-top: 1px;
  text-align: center;

  .h2-dx {
    margin-top: 80px;
    margin-bottom: 25px;
    font-weight: bold;

    .en {
      font-size: 22px;
    }

    .jp {
      font-size: 90px;
      line-height: 1.2;
      display: inline-block;

    }
  }

  .p1,
  .p2 {
    font-size: 22px;
    font-weight: bold;
  }

  .p1 {
    margin-bottom: 8px;
  }

  .p2 {
    margin-bottom: 36px;
  }

  .box {
    max-width: 1200px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, .8);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
  }

}

.dx01 {
  background: url(img/bg02.png) center top / cover no-repeat;

  .h2-dx {

    .en {
      color: #00368A;
    }

    .jp {
      color: #D4E5FF;
      background: linear-gradient(70deg, #00368A, #3785FE);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .p2 {
    color: #00368A;
  }
}

.dx02 {
  background: url(img/bg03.png) center top / cover no-repeat;

  .h2-dx {
    .en {
      color: #fff;
    }

    .jp {
      color: #D4E5FF;
      background: linear-gradient(70deg, #75ABFF, #D4E5FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .p1,
  .p3 {
    color: #fff;
  }

  .p2 {
    color: #E7CF72;
  }
}

@media (max-width: 780px) {
  .dx {

    .p1,
    .p2 {
      font-size: 32px;
    }

    .p1 {
      margin-bottom: 16px;
    }

    .p2 {
      margin-bottom: 16px;
    }

    .p3 {
      font-size: 28px;
    }
  }

  .dx01 {
    background-image: url(img/bg02_sp.png);
  }

  .dx02 {
    background-image: url(img/bg03_sp.png);
  }
}

.globe {
  background: url(img/bg04.png) center top / cover no-repeat;

  .box {
    position: relative;
    max-width: 1140px;
    margin: auto;
    padding: 60px 0 60px 8%;

    .p1 {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.7;
    }

    .p2 {
      margin-top: 40px;
    }

    .btn {
      overflow: hidden;
      position: absolute;
      top: 110px;
      right: 20px;
      max-width: 40%;
      border-radius: 6px;
      box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    }
  }
}

@media (max-width: 780px) {
  .globe {
    background-image: url(img/bg04_sp.png);

    .box {
      padding-left: 40px;

      .p1 {
        font-size: 32px;
      }

      .p2 {
        margin: 32px 0 40px;
      }

      .btn {
        display: inline-block;
        position: static;
        max-width: none;
        margin-left: 154px;
        border-radius: 6px;
        box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
      }
    }
  }
}

.nfq {
  overflow: hidden;
  background: url(img/bg05.png) center top / cover no-repeat;

}

@media (max-width: 780px) {
  .nfq {
    background-image: url(img/bg05_sp.png);

    .p-rhombus {
      margin-top: 28px;
      text-align: center;
    }
  }
}

.p-rhombus {
  margin-top: 28px;
  text-align: center;
}

.business {
  max-width: calc(950px + 24px + 100px);
  margin: 32px auto 80px !important;
  padding: 0 50px;

  .box {
    position: relative;
    height: 432px;
    max-width: 400px;
    margin: 0 12px;
    overflow: hidden;
    background: #fff;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    padding-top: 1px;
    padding-bottom: 110px;

    .img {
      overflow: hidden;
      margin: 9px 10px;
      border-radius: 3px;
      aspect-ratio: 453 / 246;
      background: #F5F5FF;

    }

    .txt {
      padding: 15px 20px;

      h3 {
        font-size: 15px;
        font-weight: bold;
      }

      p {
        overflow: hidden;
        height: 6em;
        margin-top: .75em;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
      }
    }

    .tag {
      position: absolute;
      left: 20px;
      bottom: 64px;
      padding: 3px 5px;
      background: #F5F5FF;
      border-radius: 3px;
      font-size: 13px;
      font-weight: 400;
    }

    .link {
      position: absolute;
      bottom: 0;
      width: 100%;
      padding-left: 20px;
      background: #E9EAFC;
      font-size: 15px;
      font-weight: bold;
      line-height: 40px;
      text-align: center;

      &::after {
        display: inline-block;
        content: "";
        width: 31px;
        height: 11px;
        margin-left: 15px;
        background: url(img/business-arrow.png) no-repeat left center;
      }
    }
  }

  .slick-prev,
  .slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
    background: #fff !important;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    border-radius: 100px;

  }

  .slick-prev {
    left: -10px;
  }

  .slick-next {
    right: -10px;
  }

  .slick-prev:before,
  .slick-next:before {
    display: inline-block;
    content: '';
    background: #00368A;
    width: 12px;
    opacity: 1;
  }

  .slick-prev:before {
    height: calc(tan(60deg) * 15px / 2);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }

  .slick-next:before {
    height: calc(tan(60deg) * 15px / 2);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }

  .slick-dots {
    padding-top: 60px;
    bottom: -75px;
    left: 0;
    right: 0;
  }

  .slick-dots li {
    margin: 0 2px;
  }

  .slick-dots li.slick-active button:before {
    font-size: 15px;
    color: #00368A;
    opacity: 1;
  }

  .slick-dots li button:before {
    font-size: 10px;
    color: #00368A;
  }
}

@media (max-width: 780px) {
  .business {
    transform-origin: top center;
    transform: scale(calc(780 / 700));
    margin: 40px 0 200px !important;
    padding: 0;

    .box {
      height: 700px;
      max-width: 486px;
      margin: 0 31px;

      .img {
        margin: 16px;
      }

      .txt {
        padding: 15px 30px;

        h3 {
          font-size: 30px;
        }

        p {
          font-size: 25px;
        }
      }

      .tag {
        left: 30px;
        bottom: 100px;
        padding: 3px 8px;
        font-size: 28px;
      }

      .link {
        font-size: 30px;
        line-height: 65px;

        &::after {
          width: 50px;
          height: 21px;
          margin-left: 20px;
          background-image: url(img/business-arrow_sp.png);
        }
      }
    }

    .slick-prev,
    .slick-next {
      width: 80px;
      height: 80px;
    }

    .slick-prev {
      left: 20px;
    }

    .slick-next {
      right: 20px;
    }

    .slick-prev:before,
    .slick-next:before {
      width: 20px;
    }

    .slick-prev:before {
      height: calc(tan(60deg) * 23px / 2);
    }

    .slick-next:before {
      height: calc(tan(60deg) * 23px / 2);
    }

    .slick-dots {
      bottom: -90px;
    }

    .slick-dots li {
      margin: 0 6px;
    }

    .slick-dots li.slick-active button:before {
      font-size: 22px;
    }

    .slick-dots li button:before {
      font-size: 15px;
    }
  }
}

.flow {
  max-width: 1000px;
  padding-top: 1px;
  padding-left: 110px;
  margin: 60px auto 0;
  border-left: 2px solid #BEBEBE;

  h2 {
    position: relative;
    margin-top: -7px;
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;

    &::before {
      display: block;
      content: "";
      position: absolute;
      top: 5px;
      left: -123px;
      width: 25px;
      height: 25px;
      background: #00368A;
      border-radius: 100px;
    }
  }

  .box {
    position: relative;
    display: flex;
    margin-top: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, .03) 10px 10px 30px;

    .img {
      width: 185px;
      padding-top: 45px;
      text-align: center;

      img {
        width: 110px;
      }
    }

    .txt {
      width: calc(100% - 185px);
      padding: 24px 24px 24px 0;

      .step {
        font-size: 20px;
        font-weight: bold;
        color: #00368A;
      }

      .title {
        margin: 16px 0;
        font-size: 22px;
        font-weight: bold;
      }
    }

    p {
      font-size: 16px;
      line-height: 1.7;
      font-weight: 400;
    }

    p+p {
      margin-top: 1em;
    }

    &::before,
    &::after {
      display: block;
      content: "";
      position: absolute;
      background: #141414;
    }

    &::before {
      top: 95px;
      left: -110px;
      width: 110px;
      height: 2px;
    }

    &::after {
      top: 90px;
      left: -116px;
      width: 11px;
      height: 11px;
      border-radius: 100px;
    }
  }
}

@media (max-width: 780px) {
  .flow {
    padding-left: 90px;
    margin: 40px -20px 0;

    h2 {
      font-size: 32px;

      &::before {
        left: -103px;
      }
    }

    .box {
      margin-top: 40px;

      .img {
        width: 180px;
        padding-top: 30px;

        img {
          width: 130px;
        }
      }

      .txt {
        width: calc(100% - 180px);
        padding: 32px 24px 32px 0;

        .step {
          font-size: 30px;
        }

        .title {
          margin: 8px 0;
          font-size: 32px;
        }
      }

      p {
        font-size: 24px;
      }

      &::before {
        top: 75px;
        left: -90px;
        width: 90px;
      }

      &::after {
        top: 70px;
        left: -96px;
      }
    }
  }
}


.faq {
  max-width: 1080px;
  margin: 58px auto 0;

  .box {
    background: #fff;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    margin-top: 18px;
    padding: 24px;
    font-size: 16px;

    p+p {
      margin-top: 1em;
    }

    .q,
    .a {
      min-height: 40px;
      padding: 5px 0 0 60px;
      background: url(img/faq_q.png) no-repeat left top;
    }

    .q {
      font-weight: bold;
    }

    .a {
      background-image: url(img/faq_a.png);
      margin-top: 20px;
      font-weight: 400;
    }
  }
}

@media (max-width: 780px) {
  .faq {
    margin: 40px -20px 0;

    .box {
      margin-top: 16px;
      font-size: 30px;

      p+p {
        margin-top: 1em;
      }

      .q,
      .a {
        min-height: 45px;
        padding: 0 0 0 60px;
        background-position: top 5px left;
      }

      .a {
        margin-top: 24px;
      }
    }
  }
}

.contact {
  padding-top: 80px;
  background: #fff;

  .form {
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 0;

    th,
    td {
      padding: 16px 0;
    }

    th {
      vertical-align: top;
      max-width: 270px;
      width: 30%;
      font-size: 16px;
      font-weight: bold;
      white-space: nowrap;
    }

    td {
      font-size: 15px;
    }

    .hissu::after {
      margin-left: 10px;
      content: "\5FC5\9808";
      font-size: 14px;
      font-weight: 500;
      color: #D31111;
    }
  }

  input,
  textarea {
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 8px;
    padding: 20px;
  }

  textarea {
    min-height: 13em;
    resize: vertical;
  }

  input[type="checkbox"] {
    width: auto;
    width: 25px;
    height: 25px;
  }

  input[type="submit"] {
    width: 470px;
    margin-top: 40px;
    background: #00368A url(img/submit-icon.png);
    background-repeat: no-repeat;
    background-position: center right 30px;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
  }

  label {
    margin-top: 25px;
  }

  .onamae {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bottom {
    font-size: 15px;
    font-weight: 400;
    text-align: center;

    a {
      color: #0F61C1;
      text-decoration: underline;
    }
  }
}

@media (max-width: 780px) {
  .contact {
    padding-top: 60px;

    .form {
      margin-top: 60px;

      th,
      td {
        display: block;
        width: 100%;
      }

      th {
        padding-bottom: 0;
        font-size: 34px;
        vertical-align: unset;
      }

      td {
        font-size: 27px;
      }

      .hissu::after {
        margin-left: 20px;
        font-size: 26px;
      }
    }

    textarea {
      min-height: 11em;
    }

    input[type="checkbox"] {
      width: 35px;
      height: 35px;
    }

    input[type="submit"] {
      width: 100%;
      /* margin-top: 40px; */
      background-image: url(img/submit-icon_sp.png);
      background-position: center right 50px;
      font-size: 34px;
    }

    label {
      margin-top: 25px;
    }

    td.onamae {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bottom {
      font-size: 15px;
      font-weight: 400;
      text-align: center;

      a {
        color: #0F61C1;
        text-decoration: underline;
      }
    }
  }
}

.footer {
  padding: 60px 20px 30px;
  background: #262626;
  color: #ddd;

  .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;

    .right {
      display: flex;

      .f-nav {
        width: 354px;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        padding-left: 70px;
        font-size: 21px;
        font-weight: 600;
        font-style: italic;

        li+li {
          margin-top: 1em;
        }
      }

      .f-btn {
        display: block;
        margin-left: 70px;
        width: 226px;
        text-align: right;

      }

      .pc-small {
        display: inline-block;
        margin-top: 18px;
        font-size: 13px;
        color: #A8A8A8;
        font-style: italic;
      }
    }

    .left {
      width: 400px;
      padding-top: 50px;

      .logo {
        width: 347px;
      }

      .sns {
        display: flex;
        gap: 24px;
        margin-top: 24px;

        img {
          height: 22px;
        }
      }
    }
  }

  .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto 0;
  }

  .sp-small {
    display: none;
  }
}

@media (max-width: 1100px) {
  .footer {
    .inner {
      .right {
        .f-nav {
          width: auto;
          padding: 0 5vw;
        }

        .f-btn {
          margin-left: 5vw;
        }
      }

      .left {
        padding-right: 5vw;
      }
    }
  }
}

@media (max-width: 780px) {
  .footer {
    padding: 0 0 20px;

    .inner {
      flex-flow: column;

      .right {
        flex-flow: column;

        .f-nav {
          width: 100%;
          border: none;
          padding-left: 0;
          font-size: 32px;

          li {
            border-bottom: 1px solid #fff;
          }

          li+li {
            margin-top: 0;
          }

          a {
            display: block;
            padding: 23px 40px;
          }
        }

        .f-btn {
          width: calc(100% - 80px);
          margin: 40px;

        }

        .pc-small {
          display: none;
        }
      }

      .left {
        width: 100%;
        text-align: center;
        padding-top: 0;

        .logo {
          width: 347px;
        }

        .sns {
          justify-content: center;
          gap: 30px;

          img {
            height: 38px;
          }
        }
      }
    }

    .list {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      padding: 0 40px;
      margin: 50px auto 30px;

      a {
        display: flex;
      }
    }

    .sp-small {
      display: block;
      font-size: 20px;
      font-style: italic;
      text-align: center;
      color: #A8A8A8;
    }
  }
}

.tac {
  text-align: center;
}

.bg-header {
  display: flex;
  align-items: center;
  height: 450px;
  background: url(img/bg_header.jpg) center top / cover no-repeat;
  padding: 0 20px;

  .txt {
    width: 100%;
    max-width: 1200px;
    margin: auto;

    h1 {
      margin-top: 100px;
      margin-bottom: 32px;
      font-size: 32px;
      font-weight: bold;
    }

    p {
      font-size: 20px;
      line-height: 2;
    }
  }
}

@media (max-width: 780px) {
  .bg-header {
    height: 431px;
    background-image: url(img/bg_header_sp.jpg);
    padding: 0 40px;

    .txt {
      p {
        font-size: 28px;
        line-height: 1.3;
      }
    }
  }
}

.pan {
  max-width: 1240px;
  padding: 8px 20px 0;
  margin: auto;
  font-size: 20px;
  color: #B1B1B1;

  a {
    color: #00368A;
    text-decoration: underline;
  }
}

.w1200 {
  max-width: 1240px;
  margin: auto;
}

.enumeration {
  margin-top: 60px;

  .box {
    position: relative;
    padding: 20px 0 0 150px;

    .num {
      position: absolute;
      top: 0;
      left: 0;
      background: url(img/tr.png) no-repeat left top;
      padding: 10px 15px;
      font-size: 60px;
      font-weight: 600;
      line-height: 1;
      color: #00368A;
    }
  }

  h2 {
    margin-bottom: 19px;
    font-size: 32px;
    font-weight: bold;
    color: #00368A;
  }

  p {
    font-size: 24px;
  }

  .box+.box {
    margin-top: 40px;
  }
}

@media (max-width: 780px) {
  .enumeration {
    margin-left: -20px;
  }
}

.about02 {
  display: flex;
  height: 558px;
  margin-top: 60px;
  background: url(img/about02.png) no-repeat center center;
  line-height: 1.5;

  .box1,
  .box2 {
    width: 50%;
    padding: 40px 100px;

    h2 {
      margin-bottom: 36px;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
    }
  }

  .box2 {
    color: #fff;
  }

  li {
    padding-left: 30px;
    margin-bottom: .75em;
    background-position: left center;
    background-size: 19px;
  }

  .list1 li {
    background-image: url(img/trans01-li.png);
  }

  .list2 li {
    background-image: url(img/trans01-li2.png);
  }
}

@media (max-width: 780px) {
  .about02 {
    flex-flow: column;
    height: 1401px;
    background-image: url(img/about02_sp.png);
  line-height: 1.4;

    .box1,
    .box2 {
      width: 100%;
      padding: 40px 0;
      font-size: 28px;

      h2 {
        font-size: 32px;
      }
    }

    .box2 {
      padding-top: 90px;
    }

    .list1 {
      margin-left: 143px;
    }

    .list2 {
      margin-left: 45px;
    }

    li {
      padding-left: 45px;
      margin-bottom: .4em;
      background-size: 30px;
    }
  }
}

.enumeration2 {
  margin-top: 60px;

  .box {
    position: relative;
    padding: 20px 0 0 150px;

    .num {
      position: absolute;
      top: 0;
      left: 0;
      background: url(img/tr.png) no-repeat left top;
      padding: 10px 15px;
      font-size: 60px;
      font-weight: 600;
      line-height: 1;
      color: #00368A;
    }
  }

  h2 {
    margin-bottom: 19px;
    font-size: 32px;
    font-weight: bold;
    color: #00368A;
  }

  h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
  }

  p {
    font-size: 18px;
  }

  .box+.box {
    margin-top: 60px;
  }

  .w-box {
    max-width: 873px;
    position: relative;
    background: #fff;
    border-radius: 0 6px 6px 6px;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    padding: 20px 0 30px 24px;
    margin-top: 30px;

    h4 {
      margin-bottom: 16px;
      font-size: 24px;
    }

    &::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      width: 20px;
      height: 20px;
      background: url(img/tr.png) no-repeat left top;
    }

    ul {
      margin-left: 1em;
    }

    li {
      margin-top: 10px;
      text-indent: -1em;

      &::before {
        display: inline-block;
        width: 1em;
        height: 1em;
        content: "";
        background: url(img/icon-li.png) no-repeat left center;
      }
    }

    a {
      color: #00368A;
      text-decoration: underline;
      padding-right: 60px;
      background: url(img/trans01-arrow.png) no-repeat right center;
    }

    .note {
      margin-top: 10px;
      margin-left: 1em;
      font-size: 16px;
      text-indent: -1em;

    }
  }

  .w50 {
    max-width: 450px;
  }
}

@media (max-width: 780px) {
  .enumeration2 {
    margin-left: -20px;

    h3 {
      margin-bottom: 28px;
    }

    p {
      font-size: 26px;
    }

    .w-box {
      max-width: unset;
      width: 700px;
      margin-left: -120px;
      margin-top: 24px;
      font-size: 26px;

      h4 {
        margin-bottom: 6px;
        font-size: 28px;
      }
    }
  }
}

.w-box2 {
  max-width: 700px;
  position: relative;
  background: #fff;
  border-radius: 0 6px 0 6px;
  box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
  padding: 30px 40px;
  margin: 30px auto 0;
  border: 4px solid #00368A;

  p+p {
    margin-top: 1em;
  }

  &::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 20px;
    height: 20px;
    background: url(img/tr.png) no-repeat left top;
  }

  &::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 20px;
    height: 20px;
    background: url(img/tr.png) no-repeat left top;
    transform: rotate(180deg);
  }
}

.enumeration3 {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;

  .box {
    position: relative;
    padding: 20px 20px 25px 150px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
    font-size: 22px;

    .num {
      position: absolute;
      top: 0;
      left: 0;
      background: url(img/tr.png) no-repeat left top;
      padding: 10px 15px;
      font-size: 60px;
      font-weight: 600;
      line-height: 1;
      color: #00368A;
    }
  }

  h2 {
    margin-bottom: 19px;
    font-size: 28px;
    font-weight: bold;
    color: #00368A;
  }

  p {
    font-size: 18px;
  }

  .box+.box {
    margin-top: 60px;
  }

  .w50 {
    max-width: 450px;
  }
}

@media (max-width: 780px) {
  .enumeration3 {
    width: 740px;
    margin-left: -20px;
    margin-right: 20px;


    .box {
      font-size: 26px;
    }

    h2 {
      margin-bottom: 12px;
      font-size: 32px;
    }

    p {
      font-size: 26px;
    }

    .box+.box {
      margin-top: 40px;
    }
  }
}

.company-table {
  display: block;
  width: 100%;
  max-width: 900px;
  padding: 0 30px;
  margin: 30px auto 0;
  background: #fff;

  tr:first-child th,
  tr:first-child td {
    border: none;
  }

  th,
  td {
    padding: 30px 0;
    border-top: 1px solid #CCCCCC;
  }

  th {
    width: 150px;
    font-weight: bold;
    vertical-align: top;
  }

  td {
    width: 690px;
    font-size: 16px;
  }

  .note {
    font-size: 12px;
  }
}

.map {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: auto;
  height: 200px;
}

@media (max-width: 780px) {
  .company-table {
    width: 780px;
    padding: 0 20px;
    margin: 30px -40px 0;

    th,
    td {
      padding: 30px 0;
    }

    th {
      font-size: 34px;
      width: 230px;
      padding-left: 20px;
    }

    td {
      width: 490px;
      font-size: 26px;
    }

    .note {
      font-size: 24px;
    }
  }

  .map {
    width: 780px;
    margin: 0 -40px;
    height: 300px;
  }
}

.w-box3 {
  max-width: 873px;
  position: relative;
  background: #fff;
  border-radius: 0 6px 6px 6px;
  box-shadow: rgba(0, 0, 0, .16) 0 3px 3px;
  padding: 30px 40px;
  margin: 30px auto 0;

  &::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 20px;
    height: 20px;
    background: url(img/tr.png) no-repeat left top;
  }

  h2 {
    font-size: 24px;
  }

  ul {
    margin-left: 1em;
    font-size: 20px;
  }

  li {
    margin-top: 10px;
    text-indent: -1em;

    &::before {
      display: inline-block;
      width: 1em;
      height: 1em;
      content: "";
      background: url(img/icon-li.png) no-repeat left center;
    }
  }

  p {
    margin-top: 1em;
    font-size: 16px;
  }

  .btn {
    position: relative;
    display: block;
    width: 400px;
    margin: 30px auto 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    line-height: 42px;
    text-align: center;
    background-image: linear-gradient(90deg, #001B45, #00368A);
    color: #fff;

    &::after {
      position: absolute;
      top: 14px;
      right: 14px;
      display: block;
      content: "";
      width: 42px;
      height: 16px;
      background: url(img/trans03-arrow02.png) center center / cover no-repeat;
    }
  }
}

@media (max-width: 780px) {
  .w-box3 {
    width: 740px;
    padding: 30px 20px;
    margin: 30px -20px 0;

    h2 {
      font-size: 32px;
    }

    ul {
      font-size: 26px;
    }

    p {
      font-size: 24px;
    }

    .btn {
      width: 100%;
      font-size: 27px;
      line-height: 74px;

      &::after {
        top: 22px;
        right: 27px;
        width: 74px;
        height: 28px;
      }
    }
  }
}

.pp {
  margin-top: 60px;

  p+p {
    margin-top: 1em;
  }
}
hr {
  border: none;
}