@charset "UTF-8";
/* CSS Document */
/* 適用範囲の調整 */
@media only screen and (min-width: 581px) and (max-width: 800px) {
  .dispPC {
    display: none;
  }
}

@media only screen and (min-width: 581px) and (max-width: 800px) {
  .dispSP {
    display: block;
  }
}

.hdg-sml h2 {
  font-weight: 700;
  line-height: 1;
}

@media only screen and (min-width: 801px) {
  .hdg-sml h2 {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 800px) {
  .hdg-sml h2 {
    font-size: 1rem;
    line-height: 1.2;
  }
}

.hdg-sml h2 span {
  display: block;
  font-weight: 300;
}

@media only screen and (min-width: 801px) {
  .hdg-sml h2 span {
    font-size: 3.4rem;
  }
}

@media only screen and (max-width: 800px) {
  .hdg-sml h2 span {
    font-size: 2.6rem;
  }
}

/* ============================
 | Keyframes |
============================ */
@-webkit-keyframes targetFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes targetFadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes targetSlideFadeIn-L {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  45% {
    visibility: visible;
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes targetSlideFadeIn-L {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  45% {
    visibility: visible;
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes targetSlideFadeIn-R {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  45% {
    visibility: visible;
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes targetSlideFadeIn-R {
  0% {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  45% {
    visibility: visible;
    opacity: 0;
  }
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

.fTarget {
  opacity: 0;
}

.fTarget._fadeIn {
  -webkit-animation-name: targetFadeIn;
  animation-name: targetFadeIn;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fTarget._fadeIn .fTargetChild {
  opacity: 0;
}

.fTarget._fadeIn.c-mainVisual {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.26, 0.08, 0.68, 1);
  animation-timing-function: cubic-bezier(0.26, 0.08, 0.68, 1);
}

.fTarget._fadeIn.c-vision .fTargetChild {
  -webkit-animation-name: targetFadeIn;
  animation-name: targetFadeIn;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fTarget._fadeIn.c-vision .fTargetChild:nth-child(1) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.fTarget._fadeIn.c-vision .fTargetChild:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.fTarget._fadeIn.c-vision .fTargetChild:nth-child(3) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fTarget._fadeIn.c-introduction .fTargetChild {
  -webkit-animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  animation-timing-function: cubic-bezier(0.57, 0.38, 0.68, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media only screen and (min-width: 801px) {
  .fTarget._fadeIn.c-introduction .fTargetChild {
    -webkit-animation-name: targetSlideFadeIn-R;
    animation-name: targetSlideFadeIn-R;
    -webkit-animation-duration: 0.9s;
    animation-duration: 0.9s;
  }
}

@media only screen and (max-width: 800px) {
  .fTarget._fadeIn.c-introduction .fTargetChild {
    -webkit-animation-name: targetSlideFadeIn-R;
    animation-name: targetSlideFadeIn-R;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
  }
}

@media only screen and (min-width: 801px) {
  .fTarget._fadeIn.c-introduction .fTargetChild:nth-child(1) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }
}

@media only screen and (max-width: 800px) {
  .fTarget._fadeIn.c-introduction .fTargetChild:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

@media only screen and (min-width: 801px) {
  .fTarget._fadeIn.c-introduction .fTargetChild:nth-child(2) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
}

@media only screen and (max-width: 800px) {
  .fTarget._fadeIn.c-introduction .fTargetChild:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }
}

@media only screen and (min-width: 801px) {
  .fTarget._fadeIn.c-introduction.-fadeReverse .fTargetChild {
    -webkit-animation-name: targetSlideFadeIn-L;
    animation-name: targetSlideFadeIn-L;
  }
}

@media only screen and (max-width: 800px) {
  .fTarget._fadeIn.c-introduction.-fadeReverse .fTargetChild {
    -webkit-animation-name: targetSlideFadeIn-L;
    animation-name: targetSlideFadeIn-L;
  }
}

/* ============================
 | Styles |
============================ */
/* .c-mainVisual */
.c-mainVisual {
  background-position: center top;
}

@media only screen and (min-width: 801px) {
  .c-mainVisual {
    padding: 270px 0 150px;
    background-image: url(../images/bg_main_pc.png);
    background-repeat: repeat-x;
    background-size: 900px 900px;
  }
}

@media only screen and (max-width: 800px) {
  .c-mainVisual {
    padding: 61.33333vw 0 45.33333vw;
    background-color: #fff;
    background-image: url(../images/bg_main_sp.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
}

.c-mainVisual + main {
  padding-top: 0;
}

.c-mainVisual-catch {
  margin: 0 auto;
  text-align: center;
}

@media only screen and (min-width: 801px) {
  .c-mainVisual-catch {
    position: relative;
    max-width: 900px;
    width: calc(100% - 40px);
    padding: 12px 47px 35px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
  }
}

@media only screen and (max-width: 800px) {
  .c-mainVisual-catch {
    width: 75.33333vw;
  }
}

.c-mainVisual-catch p {
  margin-top: 0;
}

.c-mainVisual-btn {
  display: inline-block;
  background-color: #000;
  background-image: url(/common/images/icon_arrow-r_black.svg);
  background-image: url(/common/images/icon_arrow-r.svg);
  background-repeat: no-repeat;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}

@media only screen and (min-width: 801px) {
  .c-mainVisual-btn {
    position: absolute;
    top: calc(100% - 25px);
    left: 50%;
    padding: 20px 57px 20px 22px;
    border-radius: 6px;
    border: 1px solid #000;
    background-position: right 22px center;
    background-size: auto 24px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 800px) {
  .c-mainVisual-btn {
    margin-top: 4vw;
    padding: 4vw 11.33333vw 4vw 4.4vw;
    border-radius: 0.8vw;
    background-position: right 4.4vw center;
    background-size: auto 4.53333vw;
  }
}

.c-mainVisual-btn:hover, .c-mainVisual-btn:active {
  color: #fff;
}

@media only screen and (min-width: 801px) {
  .c-mainVisual-btn:hover {
    background-color: #fff;
    background-image: url(/common/images/icon_arrow-r_black.svg);
    color: #000;
    -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
  }
}

.c-mainVisual-btn span {
  font-weight: 700;
}

@media only screen and (min-width: 801px) {
  .c-mainVisual-btn span {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 800px) {
  .c-mainVisual-btn span {
    font-size: 3.2vw;
  }
}

/* .c-vision */
.c-vision .hdg-sml {
  padding-top: 0;
}

.c-vision .hdg-sml h2 {
  text-align: center;
}

@media only screen and (min-width: 801px) {
  .c-vision .hdg-sml h2 span {
    font-size: 5.2rem;
  }
}

@media only screen and (max-width: 800px) {
  .c-vision .hdg-sml h2 span {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 801px) {
  .c-vision-lead {
    margin: 0 -75px;
    padding: 0 75px;
    background-image: url(../images/bg_vision.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
  }
}

@media only screen and (min-width: 801px) and (max-width: 1110px) {
  .c-vision-lead {
    margin: 0;
    padding: 0;
  }
}

.c-vision-lead p {
  font-weight: 700;
}

@media only screen and (min-width: 801px) {
  .c-vision-lead p {
    margin-top: 2em;
    line-height: 1.8;
  }
}

/* .c-introduction */
@media only screen and (min-width: 801px) {
  .c-introduction:nth-of-type(odd) .c-introduction-img {
    float: left;
    margin-right: 40px;
  }
}

@media only screen and (min-width: 801px) {
  .c-introduction:nth-of-type(even) .c-introduction-img {
    float: right;
    margin-left: 40px;
  }
}

@media only screen and (min-width: 801px) {
  .c-introduction-fig::before, .c-introduction-fig::after {
    content: "";
    display: table;
  }
  .c-introduction-fig::after {
    clear: both;
  }
}

.c-introduction-img {
  /*
  @include mql_sp() {
    width: 100%;
    height: vw(434);
  }
  @include mql_tab() {
    height: 434px;
    border-radius: 24px;
  }
  */
}

@media only screen and (min-width: 801px) {
  .c-introduction-img {
    float: right;
    width: 66.67%;
    max-width: 640px;
  }
}

@media only screen and (min-width: 801px) {
  .c-introduction-info .hdg-sml {
    padding-top: 0;
  }
}

@media only screen and (max-width: 800px) {
  .c-introduction-info .hdg-sml {
    padding-top: 0;
  }
}

@media only screen and (max-width: 800px) {
  main > section .inner.c-introduction-info, main > .innerSection .inner.c-introduction-info {
    margin-top: 6.66667vw;
  }
}

@media only screen and (min-width: 581px) and (max-width: 800px) {
  main > section .inner.c-introduction-info, main > .innerSection .inner.c-introduction-info {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 800px) {
  .c-introduction-btn {
    text-align: center;
  }
}

@media only screen and (min-width: 801px) {
  .c-introduction-btn a.btn-general {
    width: 120px;
    min-width: auto;
  }
}

/* .c-news */
@media only screen and (max-width: 800px) {
  .c-news .hdg-sml h2 {
    text-align: center;
  }
}

/*
.c-news-fig {
  @include mql_pc() {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-news-img {
  background-color: #f5f5f5;
  text-align: center;
  @include mql_pc() {
    width: 240px;
    padding: 38px;
    border-radius: 6px;
    border: 3px solid #fff;
  }
  @include mql_sp() {
    padding: vw(105);
    border-radius: vw(12);
    border: vw(4) solid #fff;
    background-color: #f5f5f5;
  }
  @include mql_tab() {
    padding: 105px;
    border-radius: 12px;
    border: 4px solid #fff;
    background-color: #f5f5f5;
  }
  img {
    @include mql_pc() {
      width: 132px;
    }
    @include mql_sp() {
      width: vw(368);
    }
    @include mql_tab() {
      width: 368px;
    }
  }
}

.c-news-caption {
  @include mql_pc() {
    width: calc(100% - 240px - 30px);
    margin-left: 30px;
  }
  dl {
    @include mql_pc() {
    }
    @include mql_sp() {
      margin-top: vw(42);
    }
    @include mql_tab() {
    }
    dt {
    }
    dd {
      a {
        text-decoration: none;
      }
    }
  }
}
*/
@media only screen and (min-width: 801px) {
  .c-news-article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 35px;
  }
}

@media only screen and (max-width: 800px) {
  .c-news-article {
    margin-top: 5.6vw;
  }
}

@media only screen and (min-width: 801px) {
  .c-news-article dt {
    width: 120px;
  }
}

@media only screen and (min-width: 801px) {
  .c-news-article dt:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 800px) {
  .c-news-article dt:nth-of-type(n+2) {
    margin-top: 5.33333vw;
  }
}

@media only screen and (min-width: 801px) {
  .c-news-article dd {
    width: calc(100% - 120px);
  }
}

.c-news-article dd a {
  text-decoration: none;
}

@media only screen and (min-width: 801px) {
  .c-news-article dd:nth-of-type(n+2) {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 801px) {
  .c-news-btn {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 800px) {
  .c-news-btn {
    margin-top: 50px;
    text-align: center;
  }
}

@media only screen and (min-width: 801px) {
  .c-news-btn a.btn-general {
    width: 120px;
    min-width: auto;
  }
}

/*
画像
================================*/
.img-lyt {
margin: calc(100vw / (720 / 60)) 0;
}
.img-lyt a {
display: block;
}
.img-lyt a:hover {
opacity: .8;
}
.img-lyt img {
border: 1px solid #ccc;
}
@media only screen and (min-width: 801px) {
.img-lyt {
margin: 3.75em 0;
}
}
.al-c {
text-align: center;
}
