/*******************************************************
 *
 * Common
 *
 *******************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  background: #F7F7F7;
  color: #121212;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2;
  overflow: hidden;
}
@media (min-width: 1280px) {
  body {
    font-size: 16px;
    line-height: 2;
  }
}

canvas {
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #DEDEDE;
}

img, iframe {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

a, a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textUppercase {
  text-transform: uppercase;
}

.textAdjustment {
  text-align: left !important;
}
@media (min-width: 992px) {
  .textAdjustment {
    text-align: center !important;
  }
}

.textAdjustment02 {
  text-align: center !important;
}
@media (min-width: 992px) {
  .textAdjustment02 {
    text-align: left !important;
  }
}

.textAdjustment03 {
  text-align: left !important;
}
@media (min-width: 576px) {
  .textAdjustment03 {
    text-align: center !important;
  }
}

.paddingAdjustment {
  padding: 12px !important;
}
@media (min-width: 992px) {
  .paddingAdjustment {
    padding: 30px 0 !important;
  }
}

.marginAdjustment {
  margin: 0 auto !important;
}
@media (min-width: 992px) {
  .marginAdjustment {
    margin: 0 0 0 !important;
  }
}

.widthAdjustment {
  width: 100% !important;
}
@media (min-width: 992px) {
  .widthAdjustment {
    width: 25% !important;
  }
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flexboxCenter {
  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;
}

.flexboxSpaceBetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.flexboxSpaceBetweenTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexboxSpaceBetweenCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexboxSpaceBetweenEnd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexAdjustment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 992px) {
  .flexAdjustment {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.flexAdjustment02 {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .flexAdjustment02 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0px;
  }
}

.flexAdjustment03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media (min-width: 576px) {
  .flexAdjustment03 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}

.align-itemsC {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.hidden {
  display: none !important;
}

.hiddenSp {
  display: none;
}
@media (min-width: 992px) {
  .hiddenSp {
    display: block !important;
  }
}

@media (min-width: 576px) {
  .hiddenSp02 {
    display: none !important;
  }
}

.hiddenPc02 {
  display: none;
}
@media (min-width: 576px) {
  .hiddenPc02 {
    display: block;
  }
}

@media (min-width: 992px) {
  .hiddenPc {
    display: none;
  }
}

.bgGray {
  background: #EFEFEF;
}

.bgWhite {
  background: #fff;
}

.plr-60 {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .plr-60 {
    padding: 0 3.125%;
  }
}

main {
  padding: 60px 0 0;
}
@media (min-width: 992px) {
  main {
    padding: 80px 0 0;
  }
}
main section {
  padding: 70px 0;
}
@media (min-width: 992px) {
  main section {
    padding: 100px 0;
  }
}

section {
  position: relative;
}

.single-post .s-nav .s-prev:hover .prev:before, .single-post .s-nav .s-prev:hover .next:before, .single-post .s-nav .s-next:hover .prev:before, .single-post .s-nav .s-next:hover .next:before, .list02 a:hover .next:before, .list01__link:hover .next:before, .accordion02__ttl.is-expanded .next:before, .accordion02__ttl:hover .next:before, .accordion__ttl.is-expanded .next:before, .boxWhite02:hover .prev:before, .boxWhite02:hover .next:before, .prev:hover:before, .next:hover:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.single-post .s-nav .s-prev:hover .prev .arrow, .single-post .s-nav .s-prev:hover .next .arrow, .single-post .s-nav .s-next:hover .prev .arrow, .single-post .s-nav .s-next:hover .next .arrow, .list02 a:hover .next .arrow, .list01__link:hover .next .arrow, .accordion02__ttl.is-expanded .next .arrow, .accordion02__ttl:hover .next .arrow, .accordion__ttl.is-expanded .next .arrow, .boxWhite02:hover .prev .arrow, .boxWhite02:hover .next .arrow, .prev:hover .arrow, .next:hover .arrow {
  background: #fff;
}
.single-post .s-nav .s-prev:hover .prev .arrow:after, .single-post .s-nav .s-prev:hover .next .arrow:after, .single-post .s-nav .s-next:hover .prev .arrow:after, .single-post .s-nav .s-next:hover .next .arrow:after, .list02 a:hover .next .arrow:after, .list01__link:hover .next .arrow:after, .accordion02__ttl.is-expanded .next .arrow:after, .accordion02__ttl:hover .next .arrow:after, .accordion__ttl.is-expanded .next .arrow:after, .boxWhite02:hover .prev .arrow:after, .boxWhite02:hover .next .arrow:after, .prev:hover .arrow:after, .next:hover .arrow:after {
  border-color: #fff;
}

.animateTxt-js span {
  transition: 0.5s all linear;
  -moz-transition: 0.5s all linear;
  -webkit-transition: 0.5s all linear;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}
.animateTxt-js.is-animated span {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
          clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}

/*******************************************************
 *
 * Font-size
 *
 *******************************************************/
.f-18, .mv__btn {
  font-size: 14px;
}
@media (min-width: 992px) {
  .f-18, .mv__btn {
    font-size: 18px;
  }
}

.f-24, .topBusiness .cat__num, .box__ttl, .list03__item {
  font-size: 18px;
}
@media (min-width: 1366px) {
  .f-24, .topBusiness .cat__num, .box__ttl, .list03__item {
    font-size: 24px;
  }
}

.f-32, .list02 a, .accordion__ttl {
  font-size: 25px;
}
@media (min-width: 1366px) {
  .f-32, .list02 a, .accordion__ttl {
    font-size: 32px;
  }
}

.f-46, .topBusiness .cat h3 {
  font-size: 30px;
}
@media (min-width: 1366px) {
  .f-46, .topBusiness .cat h3 {
    font-size: 46px;
  }
}

.f-60, .p-contact .p-sec02 .imgTxt h3 {
  font-size: 40px;
}
@media (min-width: 1366px) {
  .f-60, .p-contact .p-sec02 .imgTxt h3 {
    font-size: 60px;
  }
}

/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/
.imgWrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .imgWrap {
    border-radius: 20px;
  }
}

.imgWrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

/*******************************************************
 *
 * Container
 *
 *******************************************************/
.container, .container-sm {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-sm {
  max-width: 1080px;
}

/*******************************************************
 *
 * Accent
 *
 *******************************************************/
.group > section > *, section > * {
  position: relative;
  z-index: 2;
}

.accent {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: 1;
  transition: height 0.25s ease-in-out;
  -moz-transition: height 0.25s ease-in-out;
  -webkit-transition: height 0.25s ease-in-out;
}
.accent span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #0C599B;
}
.accent--blue span {
  min-height: 200px !important;
}
.accent--gray {
  background: #EFEFEF;
}

/*******************************************************
 *
 * Arrow
 *
 *******************************************************/
.arrow {
  width: 13px;
  height: 2px;
  background: #0C599B;
  position: relative;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 1366px) {
  .arrow {
    width: 16px;
  }
}
.arrow:after {
  position: absolute;
  right: -0.5px;
  top: 50%;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #0C599B;
  border-right: 2px solid #0C599B;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 1366px) {
  .arrow:after {
    width: 9px;
    height: 9px;
  }
}

/*******************************************************
 *
 * Row
 *
 *******************************************************/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row .col-2 {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
@media (min-width: 992px) {
  .row .col-2 {
    width: 50%;
    max-width: unset;
    margin: unset;
  }
}
.row .col-3 {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
@media (min-width: 992px) {
  .row .col-3 {
    width: 33.33%;
    max-width: unset;
    margin: 0;
  }
}
.row .col-4 .bgWhite {
  padding: 40px 20px !important;
}
@media (min-width: 992px) {
  .row .col-4 .bgWhite {
    padding: 40px !important;
  }
}

/*******************************************************
 *
 * Box Shadow
 *
 *******************************************************/
.hasDoubleShadow {
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1), -8px -8px 8px 3px rgb(255, 255, 255);
  -webkit-box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1), -8px -8px 8px 3px rgb(255, 255, 255);
  -moz-box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1), -8px -8px 8px 3px rgb(255, 255, 255);
}

/*******************************************************
 *
 * Prev / Next
 *
 *******************************************************/
.prev, .next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  background: #fff;
  position: relative;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
  -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .prev, .next {
    width: 64px;
    height: 64px;
  }
}
.prev:before, .next:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #0C599B;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.prev .arrow, .prev .arrow:after, .next .arrow, .next .arrow:after {
  z-index: 2;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: linear-gradient(315deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%) !important;
  -webkit-box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
  box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
}
.prev:hover {
  -webkit-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}

/*******************************************************
 *
 * Title
 *
 *******************************************************/
.ttl {
  color: #0C599B;
  font-size: 40px;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.1666666667;
  text-transform: uppercase;
  margin: 0 0 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1366px) {
  .ttl {
    font-size: 60px;
    margin: 0 0 50px;
  }
}
.ttl small {
  display: block;
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  margin: 12px 0 0;
}

.ttl02 {
  color: #0C599B;
  font-size: 30px;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
  text-transform: capitalize;
  margin: 0 0 60px;
}
@media (min-width: 1366px) {
  .ttl02 {
    font-size: 40px;
  }
}

/*******************************************************
 *
 * Button
 *
 *******************************************************/
.btn01 {
  margin: auto;
  width: 100%;
  max-width: 180px;
  border-radius: 32px;
}
@media (min-width: 1366px) {
  .btn01 {
    max-width: 220px;
  }
}
.btn01 a, .btn01 em {
  color: #0C599B;
  font-size: 16px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  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;
  padding: 11px;
  border-radius: 32px;
  background: rgb(247, 247, 247);
  background: linear-gradient(135deg, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 60%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f7f7f7", endColorstr="#ffffff",GradientType=1 );
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1), -3px -5px 5px 0px rgb(255, 255, 255);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1), -3px -5px 5px 0px rgb(255, 255, 255);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .btn01 a, .btn01 em {
    font-size: 18px;
    padding: 14px;
  }
}
.btn01 em {
  font-style: normal;
}
.btn01 .arrow {
  margin: 0 0 0 15px;
}
.btn01:hover a {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  background: #0C599B;
}
.btn01:hover .arrow {
  background: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.btn01:hover .arrow:after {
  border-color: #fff;
}

.btn01--white em {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 11px;
}
@media (min-width: 992px) {
  .btn01--white em {
    padding: 13px;
  }
}
.btn01--white .arrow {
  background: #fff;
  -webkit-transform: none !important;
          transform: none !important;
}
.btn01--white .arrow:after {
  border-color: #fff;
}

/*******************************************************
 *
 * Title + Text Row
 *
 *******************************************************/
.ttlTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .ttlTxt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.ttlTxt .ttl {
  width: 100%;
  text-align: initial;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .ttlTxt .ttl {
    margin: 0;
    width: 21.71875%;
  }
}
.ttlTxt .con {
  width: 100%;
}
@media (min-width: 992px) {
  .ttlTxt .con {
    margin: 5px 0 0;
    width: 71.171875%;
  }
}
.ttlTxt .con strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.ttlTxt .con p:not(:first-child) {
  margin-top: 10px;
}
.ttlTxt .btn01 {
  margin: 25px auto 0 !important;
}
@media (min-width: 992px) {
  .ttlTxt .btn01 {
    margin: 75px auto 0 !important;
  }
}

/*******************************************************
 *
 * Tabs
 *
 *******************************************************/
.tabs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.tabs__item:not(:last-child) {
  margin: 0 12px 0 0;
}
@media (min-width: 992px) {
  .tabs__item:not(:last-child) {
    margin: 0 55px 0 0;
  }
}
.tabs__item a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.2857142857;
  position: relative;
  padding: 0 0 3px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.tabs__item a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #0C599B;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.tabs__item a:hover, .tabs__item a.is-active {
  color: #0C599B;
}
.tabs__item a:hover:after, .tabs__item a.is-active:after {
  width: 100%;
}

/*******************************************************
 *
 * Popup Video
 *
 *******************************************************/
.video-popUp:after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/top/youtube.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

/*******************************************************
 *
 * CTA
 *
 *******************************************************/
.cta {
  margin: 0 -20px -20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cta__ttl {
  color: #0C599B;
  font-size: 30px;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
  padding: 0 0 0 40px;
  margin: 15px 0 0 10px;
  z-index: 3;
}
@media (min-width: 1366px) {
  .cta__ttl {
    font-size: 40px;
    margin: 15px 0 0 25px;
  }
}
.cta__ttl:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 3px;
  height: 100px;
  background: #0C599B;
  -webkit-transform: skewX(-21deg);
          transform: skewX(-21deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}
.cta .imgWrap {
  font-size: 0;
}
.cta .imgWrap:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 2;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.cta .imgWrap img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.cta .imgWrap canvas {
  min-height: 206px;
}
@media (min-width: 992px) {
  .cta .imgWrap canvas {
    height: auto;
  }
}
.cta .imgWrap .btn01 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.cta__item {
  padding: 20px;
}
@media (min-width: 992px) {
  .cta__item:nth-child(even) {
    margin: 50px 0 0;
  }
  .cta__item:nth-child(even) .cta__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .cta__item:nth-child(even) .cta__ttl {
    padding: 0 0 0 30px;
    margin: 0 0 15px 63px;
  }
  .cta__item:nth-child(even) .cta__ttl:before {
    top: 8px;
    bottom: unset;
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
.cta__link:hover .imgWrap:before {
  opacity: 1;
}
.cta__link:hover .imgWrap img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.cta__link:hover .btn01 {
  opacity: 1;
}

/*******************************************************
 *
 * Text and Slider
 *
 *******************************************************/
.txtSlider {
  padding-left: 3.125%;
}
.txtSlider .con {
  width: 100%;
}
@media (min-width: 992px) {
  .txtSlider .con {
    width: 21.1111111111%;
  }
}
.txtSlider .con .ttl {
  text-transform: capitalize;
  text-align: center;
}
@media (min-width: 992px) {
  .txtSlider .con .ttl {
    text-align: initial;
  }
}
.txtSlider .con .btn01 {
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .txtSlider .con .btn01 {
    margin: 40px 0 0;
  }
}
.txtSlider .sliderWrap {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .txtSlider .sliderWrap {
    width: 78.88%;
    max-width: unset;
    margin: 0;
  }
}
.txtSlider .sliderWrap .slider {
  margin: -10px 0 0;
}
@media (min-width: 992px) {
  .txtSlider .sliderWrap .slick-list {
    padding-right: 11.1111111111%;
  }
}
.txtSlider .sliderWrap .slider__item {
  padding: 20px;
}

.nav {
  width: 96px;
  margin: auto;
}
@media (min-width: 992px) {
  .nav {
    margin: unset;
  }
}
.nav .prev, .nav .next {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
}
.nav .prev span, .nav .next span {
  width: 14px;
}
.nav .prev span:after, .nav .next span:after {
  width: 7px;
  height: 7px;
}
.nav .prev:hover, .nav .next:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.nav .prev:hover {
  -webkit-transform: scale(1) rotate(180deg);
          transform: scale(1) rotate(180deg);
}

/*******************************************************
 *
 * Image and Text
 *
 *******************************************************/
.imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  max-width: 600px;
  margin: auto;
  z-index: 2;
}
@media (min-width: 992px) {
  .imgTxt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: unset;
  }
}
.imgTxt:not(:first-of-type) {
  margin: 100px auto 0;
}
@media (min-width: 992px) {
  .imgTxt:not(:first-of-type) {
    margin: 100px 0 0;
  }
}
.imgTxt .con {
  width: 100%;
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .imgTxt .con {
    margin: 0;
    width: 48%;
  }
}
.imgTxt .con .btn01 {
  margin: 30px auto 0 !important;
}
.imgTxt .imgWrap {
  width: 100%;
}
@media (min-width: 992px) {
  .imgTxt .imgWrap {
    width: 47.96875%;
  }
}

/*******************************************************
 *
 * BoxWhite
 *
 *******************************************************/
.boxWhite {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
  height: 100%;
}
@media (min-width: 992px) {
  .boxWhite {
    padding: 70px;
  }
}

.boxWhite--hasBlueHeader {
  padding-top: 0;
}
.boxWhite--hasBlueHeader h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 80px;
  background: #0C599B;
  padding: 22px 10px;
  border-radius: 0 0 10px 10px;
}

/*******************************************************
 *
 * BoxWhite02
 *
 *******************************************************/
.boxWhite02 {
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
}
.boxWhite02__top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1366px) {
  .boxWhite02__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .w-prev .boxWhite02__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.boxWhite02__top .imgWrap {
  width: 100%;
}
@media (min-width: 1366px) {
  .boxWhite02__top .imgWrap {
    width: 64.0384615385%;
  }
}
.boxWhite02__top .imgWrap img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
}
.boxWhite02__top .imgWrap canvas {
  height: 243px;
}
.boxWhite02__top .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.5333333333;
  margin: 30px 0 0;
}
@media (min-width: 1366px) {
  .boxWhite02__top .info {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 0 0 7.6923076923%;
    margin: 0;
  }
}
@media (min-width: 1366px) {
  .boxWhite02__top .info__details {
    margin: 40px 0 0;
  }
}
.boxWhite02__top .info__ttl {
  font-size: 17px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.025em;
  margin: 30px 0 0 !important;
  width: 100%;
}
.boxWhite02__top .info em {
  display: block;
  color: #0C599B;
  font-size: 20px;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
}
.boxWhite02__top .info__arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0C599B;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}
.boxWhite02:hover .imgWrap img {
  opacity: 0.7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
/*******************************************************
 *
 * BoxWhite03
 *
 *******************************************************/
.boxWhite03 {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px;
  height: 100%;
}
@media (min-width: 992px) {
  .boxWhite03 {
    padding: 70px;
  }
}

/*******************************************************
 *
 * BoxWhite04
 *
 *******************************************************/
.boxWhite04 {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 25px 25px;
  height: 100%;
}
@media (min-width: 992px) {
  .boxWhite04 {
    padding: 0 70px 70px;
  }
}

/*******************************************************
 *
 * AJAX  loading Modal
 *
 *******************************************************/
.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  background-image: url("../images/common/ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
}

body.loading .modal {
  overflow: hidden;
  display: block;
}

/*******************************************************
 *
 * Accordion
 *
 *******************************************************/
.accordion {
  margin: 80px 0 0;
  border-top: 1px solid #E2E2E2;
}
.accordion__item {
  padding: 20px;
  border-bottom: 1px solid #E2E2E2;
}
@media (min-width: 992px) {
  .accordion__item {
    padding: 40px;
  }
}
.accordion__ttl {
  color: #0C599B;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  line-height: 2.25;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.accordion__ttl:hover .next:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.accordion__ttl:hover .next:after {
  border-color: #fff;
}
.accordion__ttl.is-expanded .next {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
  box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
}
.accordion__ttl.is-expanded .next:after {
  border-color: #fff;
}
.accordion .next {
  margin: 0 40px 0 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion .next:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #0C599B;
  border-right: 1px solid #0C599B;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: -5px;
  z-index: 2;
}
.accordion .panel {
  display: none;
  padding: 20px 0 0;
}
@media (min-width: 992px) {
  .accordion .panel {
    padding: 0 0 0 100px;
  }
}

/*******************************************************
 *
 * Accordion 02
 *
 *******************************************************/
.accordion02 {
  margin: 25px 0 0;
}
.accordion02__item {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}
@media (min-width: 992px) {
  .accordion02__item {
    padding: 30px 80px;
  }
}
.accordion02__item:not(:first-child) {
  margin: 25px 0 0;
}
.accordion02__ttl {
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.accordion02__ttl.is-expanded .next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
  box-shadow: -3px -3px 8px 0px rgba(0, 0, 0, 0.1) !important;
}
.accordion02 .next {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.accordion02 .panel {
  display: none;
  margin: 30px 0 0;
}

/*******************************************************
 *
 * Intro Video
 *
 *******************************************************/
.mainWrapper {
  opacity: 0;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.mainWrapper.is-active {
  opacity: 1;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}

.lottie {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  z-index: 1100;
}
.lottie.is-active {
  display: none;
}
.lottie svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 420px;
}
@media (min-width: 992px) {
  .lottie svg {
    max-width: 600px;
    width: 100%;
  }
}

/*******************************************************
 *
 *Classic Editor
 *
 *******************************************************/
.archive01 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 30px;
}

/*******************************************************
 *
 * Header
 *
 *******************************************************/
.header {
  position: fixed;
  left: 0;
  width: 100%;
  background: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  z-index: 1032;
}
@media (min-width: 992px) {
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.header__logo {
  font-size: 0;
  max-width: 133px;
  z-index: 1;
  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;
  gap: 8px;
}
@media (min-width: 992px) {
  .header__logo {
    max-width: 178px;
  }
}
.header__logo-img02 {
  padding: 3px 0 0 10px;
  width: 35%;
}
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 35px;
  background: #1A3861;
  overflow-y: auto;
  display: none;
  z-index: 2;
}
@media (min-width: 992px) {
  .header__menu {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 85.5555555556%;
    height: 100% !important;
    padding: 0;
    background: none;
    overflow-y: unset;
  }
}
.header__menu nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.header #nav {
  display: block;
  max-width: 300px;
  margin: auto;
}
@media (min-width: 992px) {
  .header #nav {
    margin: unset;
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header #nav > li:first-child {
    display: none;
  }
}
.header #nav li {
  position: relative;
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .header #nav li {
    text-align: inherit;
    margin: unset;
  }
  .header #nav li:hover a, .header #nav li:hover .current-menu-item a {
    color: #0C599B;
  }
  .header #nav li:hover a:after, .header #nav li:hover .current-menu-item a:after {
    width: 100%;
  }
  .header #nav li:hover .sub-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .header #nav li:not(:last-child) {
    margin: 0 2.5974025974% 0 0;
  }
}
.header #nav a {
  color: #fff;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  line-height: 2;
  text-transform: uppercase;
  position: relative;
  padding: 0 0 3px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .header #nav a {
    color: #121212;
  }
  .header #nav a:after {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    width: 0;
    height: 1px;
    background: #0C599B;
    transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
  }
}
@media (min-width: 992px) {
  .header #nav .sub-menu {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 180px;
    padding: 25px 0 0;
    display: none !important;
  }
}
.header #nav .sub-menu li {
  display: block;
  margin: 0;
}
.header #nav .sub-menu a {
  display: block;
  color: #fff !important;
  text-transform: capitalize;
  font-size: 14px;
}
@media (min-width: 992px) {
  .header #nav .sub-menu a {
    background: #1A3861;
    text-align: center;
    padding: 10px;
    line-height: 1;
    margin: 1px 0 0;
  }
}
.header #nav .sub-menu a:after {
  display: none;
}
.header #nav .sub-menu a:hover {
  background: #0C599B;
}
.header .translate {
  width: 110px;
  height: 40px;
  margin: 100px 0 0 auto;
  background: #F7F7F7;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .header .translate {
    margin: 0 0 0 60px;
  }
}
.header .translate:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 52px;
  height: 34px;
  border-radius: 20px;
  background: #0C599B;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -moz-transition: transform 0.25s ease-in-out;
  -webkit-transition: transform 0.25s ease-in-out;
}
.header .translate a {
  color: #fff;
  width: 50%;
  height: 100%;
  font-size: 15px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  position: relative;
  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;
  z-index: 2;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.header .translate a:last-of-type {
  color: #121212;
}
.header .translate.is-active:after {
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
.header .translate.is-active a:first-of-type {
  color: #121212;
}
.header .translate.is-active a:last-of-type {
  color: #fff;
}
.header .burgerMenu {
  width: 28px;
  height: 10px;
  z-index: 3;
}
.header .burgerMenu div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0C599B;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.header .burgerMenu div:last-child {
  top: 10px;
}
.header .burgerMenu.is-open div {
  background: #fff;
}
.header .burgerMenu.is-open div:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -5px;
  left: 5px;
}
.header .burgerMenu.is-open div:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
  left: 5px;
}

/*******************************************************
 *
 * Footer
 *
 *******************************************************/
.footer {
  color: #fff;
  font-family: "Barlow", sans-serif;
  background: #1A3861;
  padding: 40px 0;
  z-index: 4;
}
.footer h2 {
  width: 100%;
  max-width: 332px;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1111111111;
}
@media (min-width: 992px) {
  .footer h2 {
    font-size: 45px;
    width: 41.796875%;
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .footer h2 {
    font-size: 54px;
  }
}
.footer h2:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: #fff;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.footer .footernav {
  margin: 10px 0 0 0;
  width: 100%;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (min-width: 992px) {
  .footer .footernav {
    width: 44.375%;
    margin: 0 0 0 6.25%;
  }
}
.footer .footernav > li {
  width: 22.222%;
  margin: 30px 10px 0 0;
}
.footer .footernav > li:nth-child(4n+4) {
  margin-right: 0;
}
@media (min-width: 576px) {
  .footer .footernav > li {
    width: 22.222%;
  }
}
@media (min-width: 992px) {
  .footer .footernav > li {
    margin-right: 20px;
  }
  .footer .footernav > li:nth-child(4n+4) {
    margin-right: 0;
  }
  .footer .footernav > li:not(:nth-child(-n+4)) {
    margin-top: 60px;
  }
}
.footer .footernav > li > a {
  font-size: 14px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .footer .footernav > li > a {
    font-size: 15px;
  }
}
.footer .footernav .sub-menu li a {
  font-size: 14px;
  line-height: 2;
}
.footer__copyright {
  font-size: 12px;
  margin: 30px 0 0;
}
@media (min-width: 992px) {
  .footer__copyright {
    margin: 60px 0 0;
    font-size: 15px;
  }
}
.footer__copyright span {
  font-size: 20px;
  margin: 0 30px;
  display: none;
}
@media (min-width: 992px) {
  .footer__copyright span {
    display: inline-block;
    vertical-align: middle;
  }
}
.footer__copyright a {
  display: block;
}
@media (min-width: 992px) {
  .footer__copyright a {
    display: inline-block;
  }
}

/*******************************************************
 *
 * Lower Page
 *
 *******************************************************/
/*==============================
 Banner 01
===============================*/
.p-bnr01 .container {
  padding: 0 15px 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .p-bnr01 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 100px 15px 160px;
  }
}
.p-bnr01 .con {
  width: 100%;
  letter-spacing: 0.025em;
  margin-top: 50px;
  text-align: center;
  z-index: 2;
}
@media (min-width: 992px) {
  .p-bnr01 .con {
    margin-top: unset;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 35.9375%;
    text-align: initial;
  }
}
.p-bnr01 .con p:first-of-type {
  font-size: 18px;
  font-weight: 500;
}
.p-bnr01 .con p:not(:first-of-type) {
  margin: 15px 0 0;
}
.p-bnr01 .ttl {
  font-size: 40px;
  font-weight: 200;
  margin: 0 0 35px;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .p-bnr01 .ttl {
    font-size: 60px;
  }
}
@media (min-width: 1280px) {
  .p-bnr01 .ttl {
    font-size: 80px;
  }
}
.p-bnr01 .imgWrap {
  width: calc(100% + 30px);
  border-radius: 0;
  margin: 0 -15px;
  z-index: 2;
}
@media (min-width: 992px) {
  .p-bnr01 .imgWrap {
    overflow: visible;
    margin: unset;
    width: 56.640625%;
  }
}
.p-bnr01 .imgWrap img {
  width: 100% !important;
  max-width: unset;
}
@media (min-width: 992px) {
  .p-bnr01 .imgWrap img {
    width: unset !important;
    border-radius: 20px 0 0 20px;
  }
}
.p-bnr01 .imgWrap canvas {
  height: 300px;
  background: transparent;
}
@media (min-width: 992px) {
  .p-bnr01 .imgWrap canvas {
    height: 100%;
  }
}
.p-bnr01 h5 {
  color: #0C599B;
  font-size: 40px;
  font-weight: 200;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: 90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  z-index: 3;
}
@media (min-width: 1280px) {
  .p-bnr01 h5 {
    font-size: 60px;
    bottom: 65px;
  }
}
.p-bnr01 h5 span {
  display: block;
  text-align: right;
  margin: 20px -35% 0 0;
}
.p-bnr01 + #contentFull {
  padding: 0;
}
.p-bnr01 .accent {
  top: 0;
  left: 45.8333333333%;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
}

/*==============================
 Banner 02
===============================*/
.p-bnr02 {
  padding-top: 40px;
}
@media (min-width: 992px) {
  .p-bnr02 {
    padding-top: 100px;
  }
}
.p-bnr02 h1.ttl {
  text-align: center;
}
@media (min-width: 992px) {
  .p-bnr02 h1.ttl {
    position: absolute;
    top: 0;
    left: 15px;
    text-align: initial;
  }
}
.p-bnr02 .flexbox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-bnr02 .flexbox .con {
  width: 100%;
  letter-spacing: 0.025em;
  margin-top: 50px;
  text-align: center;
  z-index: 3;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox .con {
    width: 64.84375%;
    margin: 160px 0 0;
    padding: 0 0 0 100px;
    text-align: initial;
  }
}
.p-bnr02 .flexbox .con .ttl, .p-bnr02 .flexbox .con p {
  position: relative;
  z-index: 3;
}
.p-bnr02 .flexbox .con .ttl {
  font-size: 40px;
  text-transform: unset;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox .con .ttl {
    font-size: 60px;
  }
}
@media (min-width: 1280px) {
  .p-bnr02 .flexbox .con .ttl {
    font-size: 80px;
  }
}
.p-bnr02 .flexbox .con .ttl small {
  font-size: 24px;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
  margin: 0 0 20px;
}
.p-bnr02 .flexbox .con p:first-of-type {
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox .con p:first-of-type {
    font-size: 18px;
  }
}
.p-bnr02 .flexbox .imgWrap {
  width: calc(100% + 30px);
  border-radius: 0;
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox .imgWrap {
    width: 46.875%;
    margin: 0 0 0 -100px;
    overflow: visible;
  }
}
.p-bnr02 .flexbox img {
  width: 100% !important;
  max-width: unset;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox img {
    width: unset !important;
    border-radius: 20px 0 0 20px;
  }
}
.p-bnr02 .flexbox canvas {
  height: 300px;
  background: transparent;
}
@media (min-width: 992px) {
  .p-bnr02 .flexbox canvas {
    height: 100%;
  }
}
.p-bnr02 .accent {
  top: 0 !important;
  left: 70px !important;
  -webkit-transform: skewX(-15deg) !important;
          transform: skewX(-15deg) !important;
}
.p-bnr02 + #contentFull {
  padding: 0;
}

/*==============================
 Lower Page Content Full
===============================*/
#contentFull {
  min-height: 250px;
}
#contentFull section p:not(:first-of-type) {
  margin: 15px 0 0;
}
#contentFull .p-tmp1__intro {
  margin-bottom: 70px;
}
#contentFull .p-ttlWrap {
  margin: 70px 0 0;
}
@media (min-width: 992px) {
  #contentFull .p-ttlWrap {
    margin: 100px 0 0;
  }
}
#contentFull .p-ttlWrap + div > section:first-child {
  padding-top: 0;
}

.page-template-default #contentFull > .accent, .page-template-box #contentFull > .accent, .page-template-news #contentFull > .accent, .post-type-archive #contentFull > .accent, .single-post #contentFull > .accent {
  top: -100px;
  left: 77.0833333333%;
  -webkit-transform: skew(-18deg);
          transform: skew(-18deg);
}

.post-type-archive .accent {
  top: 0;
  left: 50%;
  -webkit-transform: skew(-18deg);
          transform: skew(-18deg);
}

/*==============================
 Pagination
===============================*/
.pagination {
  width: 100%;
  margin: 60px 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 20px;
  z-index: 2;
}
.pagination .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
  position: relative;
  aspect-ratio: 1;
}
.pagination .page-numbers:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #0C599B;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.pagination .page-numbers em {
  color: #0C599B;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  font-family: "Barlow", sans-serif;
  position: relative;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  z-index: 2;
  line-height: 1;
}
.pagination .page-numbers.current:before, .pagination .page-numbers:hover:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.pagination .page-numbers.current em, .pagination .page-numbers:hover em {
  color: #fff;
}
.pagination .page-numbers.dots {
  display: none;
}
.pagination .prev, .pagination .next {
  width: 30px;
  height: 30px;
}
@media (min-width: 992px) {
  .pagination .prev, .pagination .next {
    width: 40px;
    height: 40px;
  }
}
.pagination .prev span, .pagination .next span {
  width: 14px;
}
.pagination .prev span::after, .pagination .next span::after {
  width: 7px;
  height: 7px;
}
.pagination .prev:hover, .pagination .next:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.pagination .prev:hover {
  -webkit-transform: scale(1) rotate(180deg);
          transform: scale(1) rotate(180deg);
}
.pagination .current, .pagination .disabled {
  pointer-events: none;
  background: #fff;
}

/*==============================
 Contact Form
===============================*/
.cf .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .cf .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cf .row:not(:first-child) {
  margin: 30px 0 0;
}
.cf .row > label {
  width: 185px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 30px 0 0;
}
.cf .field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cf .field input[type=text], .cf .field input[type=email], .cf .field input[type=tel], .cf .field textarea {
  width: 100%;
  height: 60px;
  border: none;
  color: #121212;
  background: #fff;
  border-radius: 5px;
  outline: none;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-box-shadow: inset 2px 2px 1px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset 2px 2px 1px 0px rgba(0, 0, 0, 0.08);
}
.cf .field input[type=date] {
  height: 60px;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  -webkit-box-shadow: inset 2px 2px 1px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset 2px 2px 1px 0px rgba(0, 0, 0, 0.08);
}
.cf .field textarea {
  height: 300px;
  resize: none;
  padding: 20px;
}
.cf .field.flexbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cf .field.flexbox em {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  margin: 0 0 0 15px;
}
.cf__bot {
  font-size: 14px;
  line-height: 1.5714285714;
}
@media (min-width: 768px) {
  .cf__bot {
    padding-left: 215px;
  }
}
.cf .cf-agree {
  display: block;
  text-align: center;
  margin: 50px 0 0;
}
.cf .cf-agree .wpcf7-list-item > label {
  display: inline-block;
}
.cf .cf-agree .wpcf7-list-item > label input {
  width: 20px;
  height: 20px;
  border: 1px solid #E2E2E2;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  vertical-align: middle;
  display: inline-block;
  -webkit-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.08);
}
.cf .cf-agree .wpcf7-list-item > label span {
  margin: 0 0 0 10px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
}
.cf .cf-agree .wpcf7-list-item > label span:before {
  position: absolute;
  left: -29px;
  top: 3px;
  color: #2b46b4;
  font-size: 18px !important;
  font: var(--fa-font-solid);
  content: "\f00c";
  opacity: 0;
}
.cf .cf-agree input:checked + span:before {
  opacity: 1;
}
.cf__btn {
  max-width: 220px;
  margin: 30px auto 0;
  position: relative;
}
.cf__btn input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  outline: none;
  opacity: 0;
  cursor: pointer;
}
.cf__btn:hover .btn01 em {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  background: #0C599B;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.cf__btn:hover .btn01 em .arrow {
  background: #fff;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.cf__btn:hover .btn01 em .arrow:after {
  border-color: #fff;
}
.cf .wpcf7-radio label input {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.08);
  box-shadow: inset 2px 2px 3px 0px rgba(0, 0, 0, 0.08);
}
.cf .wpcf7-radio label span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
  position: relative;
}
.cf .wpcf7-radio label span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0C599B;
  left: -27px;
  top: 12px;
  opacity: 0;
}
.cf .wpcf7-radio input:checked + span:before {
  opacity: 1;
}
.cf > p {
  margin: 30px 0 0;
}

form .wpcf7-not-valid-tip, form .wpcf7-response-output {
  text-align: center;
  font-size: 12px !important;
}

/*******************************************************
 *
 * List 01
 *
 *******************************************************/
.list01 {
  width: 100%;
}
.list01__item {
  border-top: 1px solid #E2E2E2;
}
.list01__link {
  padding: 20px 3.90625%;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .list01__link {
    padding: 40px 3.90625%;
  }
}
.list01__link:hover {
  background: #fff;
}
.list01__left {
  width: 100%;
  color: #0C599B;
  font-size: 18px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
@media (min-width: 992px) {
  .list01__left {
    width: 195px;
  }
}
.list01__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list01__right p:first-of-type {
  width: 73.9614994934%;
}

/*******************************************************
 *
 * List 02
 *
 *******************************************************/
.list02 {
  border-top: 1px solid #E2E2E2;
}
.list02__item {
  border-bottom: 1px solid #E2E2E2;
}
.list02 p {
  margin-top: 0 !important;
}
.list02 br {
  display: none;
}
.list02 a {
  color: #0C599B;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 30px 0;
}
@media (min-width: 576px) {
  .list02 a {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) {
  .list02 a {
    padding: 35px 40px;
  }
}
.list02 a:hover {
  color: #B2B2B2;
}
.list02 .next {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
@media (min-width: 992px) {
  .list02 .next {
    margin-right: 40px;
  }
}

/*******************************************************
 *
 * List 03
 *
 *******************************************************/
.list03 {
  margin: auto;
  width: 100%;
  max-width: 1120px;
}
.list03__item {
  line-height: 1.9583333333;
  border-radius: 10px;
  padding: 25px 30px 25px 74px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(249, 249, 249)), color-stop(55%, rgba(249, 249, 249, 0.45)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgb(249, 249, 249) 0%, rgba(249, 249, 249, 0.45) 55%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f9f9f9", endColorstr="#00ffffff",GradientType=0 );
}
@media (min-width: 768px) {
  .list03__item {
    border-radius: 60px;
    padding: 25px 70px 25px 114px;
  }
}
.list03__item:before {
  position: absolute;
  content: "";
  width: 14px;
  height: 20px;
  top: 28px;
  left: 30px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-right: 2px solid #0C599B;
  border-bottom: 2px solid #0C599B;
}
@media (min-width: 768px) {
  .list03__item:before {
    left: 70px;
    top: 33px;
  }
}
.list03__item:not(:first-child) {
  margin: 30px 0 0;
}

/*******************************************************
 *
 * List 04
 *
 *******************************************************/
.list04 {
  max-width: 840px;
  margin: auto;
  border-top: 1px solid #E2E2E2;
}
.list04 > li:first-child .ttl, .list04 > li:first-child .con {
  border-top: none;
}
.list04 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .list04 li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.list04 .ttl, .list04 .con {
  color: #121212;
  font-size: 15px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8666666667;
  margin: 0;
  padding: 20px;
  border-top: 1px solid #E2E2E2;
}
@media (min-width: 768px) {
  .list04 .ttl, .list04 .con {
    padding: 30px 0;
  }
}
.list04 .ttl {
  width: 100%;
  background: #E2E2E2;
}
@media (min-width: 768px) {
  .list04 .ttl {
    width: 310px;
    margin: 0 10px 0 0;
    background: none;
  }
}
.list04 .con {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.list04 .has-sublist .ttl {
  width: 100%;
}
@media (min-width: 768px) {
  .list04 .has-sublist .ttl {
    width: 120px;
  }
}
.list04 .has-sublist > .con {
  padding: 0 0 30px;
  border-top: none;
}
@media (min-width: 768px) {
  .list04 .has-sublist > .con {
    padding: 0;
  }
}
.list04 .has-sublist .sublist {
  margin: 20px 0 0;
}
@media (min-width: 768px) {
  .list04 .has-sublist .sublist {
    margin: 0;
  }
}
.list04 .has-sublist .sublist .ttl, .list04 .has-sublist .sublist .con {
  padding: 10px 0;
}
@media (min-width: 768px) {
  .list04 .has-sublist .sublist .ttl, .list04 .has-sublist .sublist .con {
    padding: 30px 0;
  }
}
.list04 .has-sublist .sublist .ttl {
  width: 100%;
  background: #EFEFEF;
}
@media (min-width: 768px) {
  .list04 .has-sublist .sublist .ttl {
    width: 180px;
    background: none;
  }
}

/*******************************************************
 *
 * List 05
 *
 *******************************************************/
.list05__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .list05__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}
.list05__item:not(:first-child) {
  margin: 40px 0 0;
}
.list05__ttl {
  color: #0C599B;
  width: 243px;
  height: 243px;
  border-radius: 50%;
  margin: 0 0 40px;
  background: linear-gradient(135deg, rgb(247, 247, 247) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f7f7f7", endColorstr="#00ffffff",GradientType=1 );
}
@media (min-width: 768px) {
  .list05__ttl {
    margin: 0;
  }
}
.list05__con {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (min-width: 768px) {
  .list05__con {
    padding: 0 0 0 30px;
  }
}

/*******************************************************
 *
 * List 06
 *
 *******************************************************/
.list06__item {
  background: #F7F7F7;
  border-radius: 10px;
  letter-spacing: 0.025em;
  padding: 35px 20px;
}
@media (min-width: 576px) {
  .list06__item {
    padding: 35px 50px;
  }
}
.list06__item:not(:first-child) {
  margin: 40px 0 0;
}
.list06__ttl {
  color: #0C599B;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .list06__ttl {
    text-align: initial;
  }
}

/*******************************************************
 *
 * Box list
 *
 *******************************************************/
.box {
  margin: -20px;
}
.box__item {
  width: 100%;
  padding: 20px;
}
@media (min-width: 992px) {
  .box__item:not(.col-2) .bgWhite {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.box__item.col-2 .box__con {
  padding: 0;
  margin: 15px 0 0;
}
.box__ttl {
  color: #0C599B;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media (min-width: 992px) {
  .box__ttl {
    width: 254px;
  }
}
.box__con {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 15px 0 0;
  letter-spacing: 0.025em;
}
@media (min-width: 992px) {
  .box__con {
    margin: 0;
    padding: 0 0 0 35px;
  }
}
.box .bgWhite {
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px;
  height: 100%;
}
@media (min-width: 992px) {
  .box .bgWhite {
    padding: 70px;
  }
}
.box .list03 {
  margin: 30px 0 0;
}
@media only screen and (max-width: 991px) {
  .box .col-2 {
    max-width: 100%;
  }
}

/*******************************************************
 *
 * Top Page
 *
 *******************************************************/
.home .group01 {
  padding-top: 30px;
}
@media (min-width: 992px) {
  .home .group01 {
    padding-top: 70px;
  }
}
.home .group01 .accent {
  top: 50px;
  left: 360px;
  -webkit-transform: skew(-16deg);
          transform: skew(-16deg);
  height: 200%;
}
@media (min-width: 992px) {
  .home .group01 .accent {
    top: 80px;
    left: 50.5555555556%;
  }
}

/*==============================
 MV
===============================*/
.mv__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mv__ttl {
  color: #0C599B;
  font-size: 54px;
  font-weight: 200;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.001em;
  line-height: 1.08;
  width: 100%;
  max-width: 350px;
}
@media (min-width: 992px) {
  .mv__ttl {
    font-size: 4.94vw;
    width: 50.5555555556%;
    padding: 0 6.1111111111% 0 3.3333333333%;
    max-width: unset;
  }
}
.mv__ttl small {
  display: block;
  color: #121212;
  font-size: 22px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 15px 0 0;
}
@media (min-width: 992px) {
  .mv__ttl small {
    margin: 15px 0 0;
    font-size: 26px;
  }
}
.mv__ttl small.f-small {
  margin-top: 0;
  font-size: 16px;
}
.mv__top .next {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 68px;
  height: 68px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: linear-gradient(45deg, rgb(249, 249, 249) 0%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f9f9f9", endColorstr="#00ffffff",GradientType=1 );
  -webkit-box-shadow: 4px -4px 5px #D9D9D9, -4px 4px 8px #ffffff;
          box-shadow: 4px -4px 5px #D9D9D9, -4px 4px 8px #ffffff;
  z-index: 2;
}
@media (min-width: 1366px) {
  .mv__top .next {
    width: 100px;
    height: 100px;
    position: relative;
  }
}
.mv__top .next .arrow {
  width: 30px;
}
.mv .inner {
  z-index: 2;
}
.mv .slider {
  margin: 20px 0 0;
  pointer-events: none;
}
.mv .slider__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.2857142857;
  text-align: right;
  padding: 0 15px 0 0;
  border-right: 1px solid #0C599B;
}
@media (min-width: 992px) {
  .mv .slider__details {
    display: block;
  }
}
.mv .slider__details span {
  margin: 0 10px;
}
@media (min-width: 992px) {
  .mv .slider__details span {
    margin: 0;
    display: block;
  }
}
.mv .slider__img {
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .mv .slider__img {
    margin: 24px 0 0;
  }
}
.mv .slider__img canvas {
  height: 400px;
}
@media (min-width: 992px) {
  .mv .slider__img canvas {
    height: auto;
  }
}
.mv .slider__usage {
  width: 45%;
  font-size: 15px;
  line-height: 2.1333333333;
  margin: 15px 0 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mv__btn {
  position: absolute;
  bottom: 15.1515151515%;
  right: 3.3333333333%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #0C599B;
  color: #0C599B;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.3333333333;
  background: #fff;
  z-index: 5;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .mv__btn {
    width: 160px;
    height: 160px;
  }
}
.mv__btn:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #0C599B;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  z-index: 1;
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.mv__btn p {
  position: relative;
  z-index: 2;
}
.mv__btn:hover {
  color: #fff;
}
.mv__btn:hover:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.mv__btn:hover {
  color: #fff;
}
.mv__btn:hover:before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}
.mv__nav {
  position: absolute;
  right: 0;
  bottom: -5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
@media (min-width: 992px) {
  .mv__nav {
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.mv__nav .prev, .mv__nav .next {
  background: #fff;
}
.mv .pager {
  font-size: 14px;
  font-family: "Barlow", sans-serif;
  margin: 0 15px 0 0;
}
.mv .slick-dots {
  display: none !important;
}

/*==============================
 About
===============================*/
.topAbout .btn01 {
  margin-top: 50px;
}

/*==============================
 Business
===============================*/
.topBusiness {
  z-index: 2;
}
@media (min-width: 992px) {
  .topBusiness {
    z-index: unset;
  }
}
.topBusiness .tabs {
  margin: 40px 0 0;
}
@media (min-width: 992px) {
  .topBusiness .tabs {
    margin: 60px 0 0;
  }
}
.topBusiness .panel {
  overflow-y: hidden;
  height: 0;
}
.topBusiness .panel.is-visible {
  overflow-y: unset;
  height: auto;
}
@media (min-width: 992px) {
  .topBusiness .panel .slider {
    margin: 0 -20px;
  }
}
.topBusiness .panel .slider__item {
  padding: 20px 10px;
}
@media (min-width: 992px) {
  .topBusiness .panel .slider__item {
    padding: 20px;
  }
}
.topBusiness .panel .slider canvas {
  min-height: 180px;
  max-height: 700px;
}
.topBusiness .panel .slick-list.draggable {
  padding: 0 20px;
}
.topBusiness .catWrap {
  margin: 20px auto 0;
}
@media (min-width: 992px) {
  .topBusiness .catWrap {
    margin: 60px auto 0;
  }
}
.topBusiness .cat {
  margin: -20px;
}
.topBusiness .cat__item {
  max-width: 100%;
  padding: 15px;
}
@media (min-width: 992px) {
  .topBusiness .cat__item {
    padding: 20px;
  }
}
.topBusiness .cat__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 26px 30px;
  overflow: hidden;
  border-radius: 20px;
  max-width: 500px;
  margin: auto;
  background: rgb(249, 249, 249);
  background: linear-gradient(135deg, rgb(249, 249, 249) 0%, rgb(252, 252, 252) 76%, rgb(255, 255, 255) 100%);
  -webkit-box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1), -8px -8px 5px 0px rgb(255, 255, 255);
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1), -8px -8px 5px 0px rgb(255, 255, 255);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f9f9f9", endColorstr="#ffffff",GradientType=1 );
}
@media (min-width: 992px) {
  .topBusiness .cat__link {
    display: block;
    padding: 50px 30px;
    text-align: center;
    max-width: unset;
    margin: unset;
  }
}
.topBusiness .cat__num {
  color: #0C599B;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  line-height: 1;
}
.topBusiness .cat h3 {
  color: #0C599B;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 13px 0 0;
  text-align: initial;
}
@media (min-width: 992px) {
  .topBusiness .cat h3 {
    text-align: center;
  }
}
.topBusiness .cat h3 small {
  display: block;
  color: #121212;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.025em;
  line-height: 2.25;
  margin: 3px 0 0;
}
@media (min-width: 992px) {
  .topBusiness .cat .next {
    margin: 15px auto 0;
  }
}
.topBusiness .accent {
  left: 32.3076923077%;
  -webkit-transform: skew(18deg);
          transform: skew(18deg);
}

/*==============================
 Work
===============================*/
.topWork {
  z-index: 3;
}
.topWork .slider {
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .topWork .slider {
    margin: 20px -27.08% 0;
  }
}
.topWork .slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
}
@media (min-width: 992px) {
  .topWork .slider .slick-track {
    height: 500px;
  }
}
.topWork .slider .slick-list {
  padding: 0 20px !important;
}
@media (min-width: 992px) {
  .topWork .slider .slick-list {
    padding: 0;
  }
}
.topWork .slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 8px;
  max-height: 320px;
  width: 100% !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .topWork .slider .slick-slide {
    width: 33.33% !important;
    padding: 0 20px;
    max-height: 450px;
  }
}
.topWork .slider .slick-slide > div, .topWork .slider .slick-slide li, .topWork .slider .slick-slide a {
  width: 100%;
  height: 100%;
}
.topWork .slider .slick-slide:hover {
  max-height: 100%;
  width: 100.5% !important;
}
@media (min-width: 992px) {
  .topWork .slider .slick-slide:hover {
    width: 36% !important;
  }
}
.topWork .slider .slick-slide:hover a {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.topWork .slider .slick-slide:hover .imgWrap:before {
  opacity: 0;
}
@media (min-width: 992px) {
  .topWork .slider .slick-slide:hover .btn01 {
    opacity: 1;
  }
}
.topWork .slider .imgWrap {
  height: 100%;
}
.topWork .slider .btn01 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.25s ease-in-out;
  -moz-transition: width 0.25s ease-in-out;
  -webkit-transition: width 0.25s ease-in-out;
  z-index: 3;
}
.topWork .slider__caption {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 8.8888888889%;
  color: #fff;
  letter-spacing: 0.025em;
  padding: 0 3.4722222222%;
  z-index: 3;
}
.topWork .slider__caption p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.topWork .btn01 {
  margin-top: 30px;
}
.topWork .accent {
  left: 95.8974358974%;
}
@media (min-width: 992px) {
  .topWork .accent {
    left: 26.0416666667%;
  }
}
.topWork .prev, .topWork .next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  z-index: 3;
}
.topWork .prev span, .topWork .next span {
  width: 14px;
}
.topWork .prev span:after, .topWork .next span:after {
  width: 7px;
  height: 7px;
}
.topWork .prev {
  left: 2.0833333333%;
  -webkit-transform: translateY(-50%) rotate(-180deg) !important;
          transform: translateY(-50%) rotate(-180deg) !important;
}
.topWork .next {
  right: 2.0833333333%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*==============================
 News
===============================*/
.topNews {
  z-index: 3;
}
.topNews .btn01 {
  margin: 0 0 0;
}
.topNews .list01 {
  margin: 80px 0 0;
}
.topNews .accent {
  left: 42.1875%;
}

/*==============================
 Group 02 Top
===============================*/
.group02 {
  z-index: 4;
}
.group02 .yt .ttl {
  text-transform: initial;
}
.group02 .yt .row {
  margin: -20px;
}
.group02 .yt .col-3 {
  padding: 10px;
}
@media (min-width: 992px) {
  .group02 .yt .col-3 {
    padding: 20px;
  }
}
.group02 .yt .imgWrap {
  border-radius: 0;
}
.group02 .yt .btn01 {
  margin: 30px auto 0;
}
@media (min-width: 992px) {
  .group02 .yt .btn01 {
    margin: 80px auto 0;
  }
}
.group02 .cta {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .group02 .cta {
    margin-top: 130px;
  }
}
.group02 .accent {
  left: 44.8717948718%;
  -webkit-transform: skewX(18deg);
          transform: skewX(18deg);
}
@media (min-width: 992px) {
  .group02 .accent {
    left: 62.5%;
  }
}

/*==============================
 Group 02 Recruit
===============================*/
.recruitBnr {
  margin-top: 70px;
}
.recruitBnr a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #1A3861;
  z-index: 2;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.recruitBnr__txt {
  position: absolute;
  width: 100%;
  max-width: 260px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  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;
  border-radius: 40px;
  border: 1px solid transparent;
  z-index: 3;
}
.recruitBnr__txt h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 20px 0 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .recruitBnr__txt h2 {
    font-size: 40px;
  }
}
.recruitBnr .next {
  background: transparent !important;
  -webkit-box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.3), -3px -3px 8px 0px rgba(36, 86, 154, 0.3);
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.3), -3px -3px 8px 0px rgba(36, 86, 154, 0.3);
}
.recruitBnr .next:before {
  display: none;
}
.recruitBnr .next .arrow {
  background: #fff !important;
}
.recruitBnr .next .arrow:after {
  border-color: #fff !important;
}
.recruitBnr a:hover:before {
  opacity: 0;
}
.recruitBnr a:hover .recruitBnr__txt {
  border-color: #fff;
  padding: 13px;
}
.recruitBnr a:hover .next {
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 20px;
  height: 20px;
}
.recruitBnr canvas {
  min-height: 190px;
}

/*******************************************************
 *
 * Works Page
 *
 *******************************************************/
.post-type-archive-works .accent {
  left: 51.0416666667% !important;
}

.p-works .p-sec01 {
  padding-bottom: 70px;
}
.p-works .p-sec01 > .flexbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .p-works .p-sec01 > .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-works .p-sec01 > .flexbox .ttl {
  margin-bottom: 0;
}
.p-works .p-sec01 > .flexbox .tabs {
  margin: 50px 0 0;
}
@media (min-width: 768px) {
  .p-works .p-sec01 > .flexbox .tabs {
    margin: 0;
  }
}
.p-works .p-sec02 {
  padding-top: 0;
}

.works {
  margin: -40px;
  font-size: 14px;
  letter-spacing: 0.025em;
}
.works__item {
  padding: 40px;
}
.works__details {
  position: relative;
  font-family: "Barlow", sans-serif;
  line-height: 1.2857142857;
  z-index: 3;
}
.works__img {
  margin: 5px 0 0;
}
.works__img img {
  backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.works__usage {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7777777778;
  margin: 15px 0 0;
}
.works .btn01 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 3;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.works__link:hover .works__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.works__link:hover .works__img:before {
  opacity: 0;
}
.works__link:hover .btn01 {
  opacity: 1;
}

.other03 {
  margin: 80px 55px 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .other03 {
    margin: 80px auto 0px !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .other03__item {
    width: 29.9%;
  }
}

.other02 {
  margin: 80px 55px 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .other02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .other02__item {
    width: 32.5%;
  }
}

.other {
  margin: 80px 55px 0px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .other {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .other__item {
    width: 32.5%;
  }
}

.tags {
  margin: 5px -8px 0;
}
.tags p {
  margin: 8px !important;
  background: #fff;
  border-radius: 18px;
  padding: 2px 10px;
  line-height: 2.2857142857;
  font-size: 12px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgb(247, 247, 247) 30%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1), -3px -5px 5px 0px rgb(255, 255, 255);
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1), -3px -5px 5px 0px rgb(255, 255, 255);
}
@media (min-width: 1366px) {
  .tags p {
    font-size: 14px;
  }
}
.tags .hash {
  display: inline-block;
}

/*******************************************************
 *
 * Single Works Page
 *
 *******************************************************/
.single-works .w-sec01 {
  padding-bottom: 0;
}
.single-works .w-sec01 .ttl {
  font-size: 32px;
  width: 100%;
}
@media (min-width: 992px) {
  .single-works .w-sec01 .ttl {
    width: 18.75%;
  }
}
.single-works .w-sec01 .ttl span {
  display: block;
  color: #121212;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.5333333333;
}
.single-works .w-sec01 .con {
  letter-spacing: 0.025em;
  position: relative;
}
@media (min-width: 992px) {
  .single-works .w-sec01 .con {
    margin: 0;
    width: 78.90625%;
    padding-left: 3.125%;
  }
  .single-works .w-sec01 .con:before {
    position: absolute;
    content: "";
    width: 1px;
    height: calc(100% - 20px);
    left: 0;
    top: 10px;
    background: #0C599B;
  }
}
.single-works .w-sec01 .tags {
  margin: 30px 0 0;
}
.single-works .w-sec01 .imgWrap {
  margin: 15px 0 0;
}
.single-works .w-sec02 {
  margin: 70px 0 0;
}
.single-works .w-sec02 .row {
  margin: 0 -30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single-works .w-sec02 .col-2 {
  padding: 0 30px;
  backface-visibility: hidden;
  max-height: 410px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.single-works .w-sec02 .col-2:last-child {
  margin: 40px auto 0;
}
@media (min-width: 992px) {
  .single-works .w-sec02 .col-2:last-child {
    margin: 100px 0 0;
  }
}
@media (min-width: 992px) {
  .single-works .w-sec02 .col-2:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.single-works .w-sec02 .col-2:hover a {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.single-works .w-sec02 .col-2:hover .imgWrap:before {
  opacity: 0;
}
.single-works .w-sec02 .slider {
  margin: 80px 0 -20px;
}
@media (min-width: 992px) {
  .single-works .w-sec02 .slider {
    margin: 80px -15.625% -20px;
  }
}
.single-works .w-sec02 .slick-list {
  padding: 0 35px;
}
@media (min-width: 992px) {
  .single-works .w-sec02 .slick-list {
    padding: 0;
  }
}
.single-works .w-sec02 .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-works .w-sec02 .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  max-height: 375px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .single-works .w-sec02 .slick-slide {
    width: 25% !important;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.single-works .w-sec02 .slick-slide > div, .single-works .w-sec02 .slick-slide li, .single-works .w-sec02 .slick-slide a, .single-works .w-sec02 .slick-slide canvas {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .single-works .w-sec02 .slick-slide:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.single-works .w-sec02 .slick-slide:hover a {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.single-works .w-sec02 .slick-slide:hover .imgWrap:before {
  opacity: 0;
}
.single-works .w-sec02 .imgWrap {
  height: 100%;
  position: relative;
  width: 100%;
  padding-top: 62.4137%;
}
.single-works .w-sec02 .nav {
  margin: 30px auto 0;
}
.single-works .w-sec03 {
  padding-bottom: 0;
}
.single-works .w-sec03 .video-popUp {
  max-width: 800px;
  margin: auto;
}
.single-works .w-sec04 .w-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -30px;
}
.single-works .w-sec04 .col-2 {
  padding: 10px 30px;
}
@media (min-width: 992px) {
  .single-works .w-sec04 .col-2 {
    padding: 0 30px;
  }
}
.single-works .w-sec04 .btn01 {
  margin: 50px auto 0;
}
.single-works .w-sec04 .tags {
  margin: 20px -8px 0;
}
.single-works .w-prev .info__arrow p:first-child {
  margin: 0 15px 0 0 !important;
}
.single-works .w-prev .info__arrow p:last-child {
  margin: 0 !important;
}
@media (min-width: 1366px) {
  .single-works .w-prev .info {
    padding: 0 7.6923076923% 0 0;
  }
}
.single-works .w-next .info__arrow p:first-child {
  margin: 0 !important;
}
.single-works .w-next .info__arrow p:last-child {
  margin: 0 0 0 15px !important;
}

/*******************************************************
 *
 * Business Page
 *
 *******************************************************/
.p-business .ttl {
  font-size: 35px;
}
@media (min-width: 1280px) {
  .p-business .ttl {
    font-size: 48px;
  }
}
.p-business .imgSet {
  position: relative;
  margin: 70px -20px -20px;
  z-index: 2;
}
.p-business .imgSet__item {
  width: 100%;
  padding: 20px;
  max-width: 600px;
  margin: auto;
}
@media (min-width: 768px) {
  .p-business .imgSet__item {
    width: 50%;
    max-width: unset;
    margin: 0;
  }
}
.p-business .imgSet__item:first-child {
  width: 100%;
}
.p-business .imgSet__item canvas {
  height: 250px;
}
@media (min-width: 992px) {
  .p-business .imgSet__item canvas {
    height: 100%;
  }
}
.p-business .p-sec01 {
  z-index: 2;
}
.p-business .p-sec01 .accent {
  left: calc(45.8333333333% - 338px);
}
.p-business .p-sec02 {
  z-index: 2;
}
.p-business .p-sec02 .accent {
  left: 69.7916666667%;
}
.p-business .p-sec03 {
  z-index: 2;
}
.p-business .p-sec03 .accent {
  top: 0;
  left: 29.1666666667%;
  -webkit-transform: skewX(-16deg);
          transform: skewX(-16deg);
}

/*******************************************************
 *
 * About Page
 *
 *******************************************************/
.page-id-13 #contentFull .accent {
  top: 35%;
  left: 0;
  -webkit-transform: skew(18deg);
          transform: skew(18deg);
}

.p-about .boxWhite:not(:first-child) {
  margin: 60px 0 0;
}
.p-about .boxWhite .ttl02 {
  margin: 0 0 20px;
}
.p-about .boxWhite .catch {
  margin: 0 0 80px;
}
.p-about .boxWhite .catch p {
  line-height: 2.4;
}
.p-about .list06__item:last-child img {
  display: block;
  margin: auto;
}
@media (min-width: 768px) {
  .p-about .list06__item:last-child img {
    float: right;
    margin: -15px 0 10px 10px;
  }
}
.p-about .p-sec02 {
  padding-top: 0;
}
.p-about .p-sec02 .cta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*******************************************************
 *
 * Company Page
 *
 *******************************************************/
.p-company .list04 > li:last-child .con p:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-company .list04 > li:last-child .con p:first-of-type img {
  margin: 0 10px 0 0;
}
.p-company .accent {
  left: 50%;
  top: 100px;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

/*******************************************************
 *
 * Message Page
 *
 *******************************************************/
.p-message .container-sm {
  max-width: 960px;
}
.p-message .container-sm h4 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.78125;
  margin: 50px 0 40px;
}
@media (min-width: 768px) {
  .p-message .container-sm h4 {
    font-size: 32px;
    margin: 80px 0 40px;
  }
}
.p-message .container-sm h5 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: right;
  margin: 60px 0 0;
}
.p-message .container-sm h5 small {
  font-size: 16px;
  margin: 0 20px 0 0;
}
.p-message .p-sec02 {
  padding-top: 0;
}

/*******************************************************
 *
 * Recruit Page
 *
 *******************************************************/
.page-template-recruit .p-bnr01 .container {
  padding-bottom: 0;
}
.page-template-recruit .p-bnr01 > .accent {
  left: 24.7395833333%;
}
.page-template-recruit .p-sec01 .row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-template-recruit .p-sec01 .row:first-child {
  display: none;
}
@media (min-width: 992px) {
  .page-template-recruit .p-sec01 .row:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-template-recruit .p-sec01 .row:first-child .imgWrap:first-child {
    width: 50%;
  }
  .page-template-recruit .p-sec01 .row:first-child .imgWrap:last-child {
    width: 37.5%;
  }
}
.page-template-recruit .p-sec01 .row:first-child .imgWrap:last-child {
  margin: 140px 0 0 80px;
}
.page-template-recruit .p-sec01 .row:last-child {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .page-template-recruit .p-sec01 .row:last-child {
    margin: 40px 0 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .page-template-recruit .p-sec01 .row:last-child .imgWrap {
    margin-right: -108px;
  }
}
.page-template-recruit .p-sec01 .row:last-child .ttl {
  text-transform: none;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .page-template-recruit .p-sec01 .row:last-child .ttl {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .page-template-recruit .p-sec01 .row:last-child .ttl {
    text-align: right;
  }
}
.page-template-recruit .p-sec01 .row:last-child .ttl span:last-of-type {
  display: inline-block;
}
@media (min-width: 992px) {
  .page-template-recruit .p-sec01 .row:last-child .ttl span:last-of-type {
    margin-right: 90px;
  }
}
.page-template-recruit .p-sec02 .accent {
  left: 40.625%;
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
  top: 0;
}
@media (min-width: 992px) {
  .page-template-recruit .imgTxt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .access {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.access-link {
  font-family: sans-serif;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 50%;
  color: #0C599B;
}
@media (min-width: 992px) {
  .access-link {
    width: 25%;
    color: #0C599B;
  }
}
.access-link::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "Barlow", sans-serif;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 16px;
  color: #0C599B;
}
@media (min-width: 992px) {
  .access-link:hover .access-link-blank__wrap__t {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media (min-width: 992px) {
  .access-link:hover::before {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.access-link-blank__wrap {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.access-link-blank__wrap__b {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-link-blank__wrap__t {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.access-link-blank__wrap > span {
  font-family: "Barlow", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-link-blank__wrap > span .ne {
  display: block;
  font-size: 16px;
}

/*******************************************************
 *
 * Contact
 *
 *******************************************************/
.page-id-17 #contentFull {
  padding-bottom: 0;
}
.page-id-17 #contentFull .accent {
  font-size: 0;
  top: -250px;
  left: 66%;
}
.page-id-17 #contentFull .btn01 {
  margin-top: 100px;
}

.p-contact .p-sec01 {
  z-index: 3;
}
.p-contact .boxWhite .ttl02 {
  font-size: 24px;
  text-align: left;
  margin: 0 0 30px;
}
.p-contact .boxWhite .ttl02 + p {
  margin: -10px 0 40px;
}
.p-contact .boxWhite:not(:first-child) {
  margin: 35px 0 0;
}
.p-contact .p-sec02 {
  z-index: 2;
}
.p-contact .p-sec02 .ttl {
  color: #121212;
}
.p-contact .p-sec02 .imgTxt:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-contact .p-sec02 .imgTxt h3 {
  color: #0C599B;
  font-weight: 300;
  font-family: "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1;
  text-align: center;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .p-contact .p-sec02 .imgTxt h3 {
    text-align: initial;
    display: inline-block;
    margin: 0;
  }
}
.p-contact .p-sec02 .imgTxt h3 small {
  font-size: 40px;
  margin: 0 0 0 50px;
  padding: 45px 0 45px 10px;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.p-contact .p-sec02 .imgTxt h3 small:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #0C599B;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  -webkit-transform-origin: top;
          transform-origin: top;
}
@media (min-width: 992px) {
  .p-contact .p-sec02 .imgTxt .inner {
    padding: 0 0 0 17.3611111111%;
  }
}
.p-contact .p-sec02 .container > .btn01 {
  margin: 40px auto 0 !important;
}
@media (min-width: 992px) {
  .p-contact .p-sec02 .container > .btn01 {
    margin: 100px auto 0 !important;
  }
}
.p-contact .p-sec02 .accent {
  left: 23.4375%;
}

.p-form form, .p-partners form {
  margin: 60px 0 0;
  position: relative;
  z-index: 2;
}

/*******************************************************
 *
 * Single News
 *
 *******************************************************/
.single-post #contentFull {
  padding-bottom: 0;
}
.single-post .s-sec01 {
  padding-bottom: 100px;
}
.single-post .s-sec01 .ttl {
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.78125;
  margin: 0 0 40px;
}
.single-post .s-sec01 .ttl small {
  color: #0C599B;
  font-size: 18px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  margin: 0 0 10px;
}
.single-post .s-sec01 .imgWrap + p {
  margin: 60px 0 0;
}
.single-post .s-nav {
  width: 100%;
  max-width: 690px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 80px auto 0;
}
.single-post .s-nav .s-prev, .single-post .s-nav .s-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post .s-nav .s-prev > span, .single-post .s-nav .s-next > span {
  color: #0C599B;
  font-size: 15px;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 15px;
}
/*******************************************************
 *
 * 404 Page
 *
 *******************************************************/
.error404 #contentFull {
  margin: 0;
  min-height: 500px;
  padding: 150px 0 0;
}
.error404 h1 {
  margin: 0 0 50px;
}
.error404__inner {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.error404__inner p:not(:first-of-type) {
  margin: 40px 0 0;
}
/*# sourceMappingURL=style.css.map */