@charset "UTF-8";
/* blockeffects */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes overlayIn {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*伸びたブロックを横に追いやるアニメーション*/
@-webkit-keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@keyframes overlayOutL {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(102%);
            transform: translateX(102%);
  }
}
@-webkit-keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
@keyframes overlayOutR {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-102%);
            transform: translateX(-102%);
  }
}
/* upeffects */
@-webkit-keyframes margintop {
  0% {
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes margintop {
  0% {
    margin-top: 100px;
    opacity: 0;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
/* webfont 変数　*/
/* ofi */
/*====================================================================

index.css

=====================================================================*/
/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          align-items: center;
          justify-content: center;
  background-position: center 0;
  background-repeat: no-repeat;
}
.main-view .l-cont {
  margin-right: 0;
  margin-left: 0;
}

/* scroll */
.scroll-btn {
  -webkit-transform: translateX(-50%);
  display: block;
  position: absolute;
  bottom: 16px;
  bottom: 1rem;
  left: 50%;
          transform: translateX(-50%);
}
.scroll-btn__inner {
  position: relative;
  width: 100%;
  font-weight: 400;
  font-family: Oswald, sans-serif;
}
.scroll-btn__inner a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  width: auto;
  color: #fff;
  font-size: 1.14em;
  text-decoration: none !important;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.scroll-btn__inner a:hover {
  color: #0E246B;
}
.scroll-btn__inner a:hover span {
  -webkit-transition: all 0.3s ease 0s;
  border-color: #0E246B;
  transition: all 0.3s ease 0s;
}
.scroll-btn__inner a:hover span::before {
  background-color: #0E246B;
}
.scroll-btn__inner a em {
  display: block;
  font-style: normal;
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ball {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes arrow {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
            transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes arrow {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
            transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/* common
----------------------------------------------------------------*/
/*--------------------------------------------------------------------/
	contents
/--------------------------------------------------------------------*/
/* pickup01 column layout 2 */
.pickup01-col2 {
  position: relative;
  overflow: hidden;
}
.pickup01-col2__tit span {
  display: block;
  position: relative;
  margin-bottom: calc(2rem + 0.3em);
  font-weight: 400;
  font-size: calc(1.14rem + 0.65217vw - 1.82609px);
  line-height: 1.4;
  text-align: center;
}
.pickup01-col2__tit b {
  display: block;
  font-weight: 400;
  font-size: calc(1.4rem + 1.08696vw - 3.04348px);
  font-family: Oswald, sans-serif;
}
.pickup01-col2__tit small {
  display: inline-block;
  position: relative;
  padding: 0 1.5em;
  font-size: 0.78em;
}
.pickup01-col2__tit small::before, .pickup01-col2__tit small::after {
  position: absolute;
  top: calc(50% + 1px);
  width: 1em;
  height: 1px;
  background-color: #202020;
  content: "";
}
.pickup01-col2__tit small::before {
  left: 0;
}
.pickup01-col2__tit small::after {
  right: 0;
}

.pickup01-col2__box {
  position: relative;
  padding-top: 96px;
  padding-top: 6rem;
  padding-bottom: 96px;
  padding-bottom: 6rem;
  background-position: center center;
  background-size: cover;
}
.pickup01-col2__box::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  content: "";
}
.pickup01-col2__box__txt {
  position: relative;
}
.pickup01-col2__box__txt.btn-padding {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
.pickup01-col2__box__txt .btn-wrap {
  position: absolute;
  bottom: 0px;
  bottom: 0rem;
  width: 100%;
}
.pickup01-col2__box__tit {
  position: relative;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  font-weight: 500;
  font-size: calc(1rem + 0.65217vw - 1.82609px);
  text-align: center;
}
.pickup01-col2__box__tit::before {
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.5rem);
  width: 48px;
  width: 3rem;
  height: 1px;
  background: #fff;
  content: "";
}

.pickup01-col2__inner {
  z-index: 2;
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 4%;
  padding-left: 4%;
  color: #fff;
}

/* pickup01 column layout 3 or 4 */
.pickup01 {
  padding: 80px 0;
  padding: 5rem 0;
  background: url(../img/common/bg-gray.svg) no-repeat 50% 100%;
  background-size: 100%;
  counter-reset: pickup01tit;
}
.pickup01 .heading-tit2--main {
  padding-top: 70px;
  background: url(../img/common/logo-mark.png) no-repeat 50% 0;
  background-size: 110px;
}
.pickup01-intro__txt p {
  line-height: 2;
}

.pickup01-box01__img {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pickup01-box01__img::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.pickup01-box01__img > div,
.pickup01-box01__img figure,
.pickup01-box01__img a,
.pickup01-box01__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pickup01-box01__txt {
  z-index: 10;
  position: relative;
  position: relative;
  max-width: 400px;
  margin-top: -40px;
  margin-right: auto;
  margin-left: auto;
  padding: 32px 5% 32px 27%;
  padding: 2rem 5% 2rem 27%;
  border: 1px solid #C9CED2;
  background-color: #fff;
}
.pickup01-box01__txt.btn-padding {
  padding-bottom: 65px;
}
.pickup01-box01__txt .btn-wrap {
  position: absolute;
  bottom: 32px;
  bottom: 2rem;
  width: 100%;
  max-width: 165px;
}
.pickup01-box01__txt .txt {
  color: #E5E9EC;
  font-size: 15.04px;
  font-size: 0.94rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 0;
}
.pickup01-box01__tit {
  color: #202020;
  font-weight: 700;
  font-size: calc(1.1rem + 0.1087vw - 0.30435px);
}
.pickup01-box01__tit::before {
  position: absolute;
  top: 24px;
  top: 1.5rem;
  left: 6%;
  content: "";
  content: counter(pickup01tit, decimal-leading-zero);
  color: #FDF405;
  font-weight: 400;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  font-family: Oswald, sans-serif;
  counter-increment: pickup01tit;
}

/* pickup02 */
.pickup02 {
  max-width: 1920px;
  margin-right: auto;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-left: auto;
}
.pickup02 > * .pickup02-txt {
  background: linear-gradient(135deg, rgb(14, 36, 107) 20%, rgb(24, 127, 179) 100%);
}
.pickup02 > *:nth-of-type(even) .pickup02-txt {
  background: #1E43A7;
}
.pickup02 > *:nth-of-type(2) .pickup02-txt {
  background: linear-gradient(135deg, rgb(35, 61, 148) 0%, rgb(14, 36, 107) 100%);
}
.pickup02 > *:nth-of-type(3) .pickup02-txt {
  background: linear-gradient(135deg, rgb(24, 120, 174) 20%, rgb(33, 49, 130) 100%);
}
.pickup02-cont {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
}
.pickup02-flex {
  width: 100%;
}
.pickup02-flex figure {
  display: block;
  z-index: 1;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.pickup02-flex figure img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.pickup02-txt__inner {
  width: 100%;
}
.pickup02-txt__tit {
  margin-bottom: 0.8em;
  font-weight: 900;
  font-size: calc(1.3rem + 0.65217vw - 1.82609px);
}
.pickup02-txt__catch {
  display: inline-block;
  color: rgba(255, 255, 255, .27);
  font-size: calc(2rem + 0.65217vw - 1.82609px);
  font-family: Oswald, sans-serif;
}
.pickup02-txt__txt {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

/* works-cont */
.works-cont {
  position: relative;
  padding: 48px 0;
  padding: 3rem 0;
  background-image: url(../img/common/top-works_sp.jpg);
  background-position: center center;
  background-size: cover;
  color: #fff;
}

/* news-cont */
.news-cont {
  padding: 48px 0;
  padding: 3rem 0;
}

/* blog-cont */
.blog-cont {
  padding: 48px 0;
  padding: 3rem 0;
  background: #F5F8FB;
}

/*--------------------------------------------------------------------/
	feed
/--------------------------------------------------------------------*/
.feed-list {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.feed-box {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
.feed-box a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  width: 100%;
  padding: 24px 16%;
  padding: 1.5rem 16%;
  color: #979DA4;
  text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.feed-box a:hover h3,
.feed-box a:hover .txt {
  text-decoration: underline !important;
}
.feed-box__img {
  z-index: 1;
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  overflow: hidden;
}
.feed-box__img::before {
  display: block;
  position: relative;
  padding-top: 66.66%;
  content: "";
}
.feed-box__img > div,
.feed-box__img figure,
.feed-box__img a,
.feed-box__img picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feed-date {
  margin-bottom: 6.4px;
  margin-bottom: 0.4rem;
  line-height: 1.4;
  font-family: Oswald, sans-serif;
}

.news-inner {
  max-width: 960px;
  max-height: 480px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  overflow-y: auto;
}

.news-table {
  width: 100%;
}
.news-table tr {
  border-bottom: 1px solid #C9CED2;
}
.news-table tr:first-child {
  border-top: 1px solid #C9CED2;
}
.news-table th,
.news-table td {
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}
.news-table th {
  padding-top: 16px;
  padding-top: 1rem;
  font-weight: 400;
  font-family: Oswald, sans-serif;
}
.news-table td {
  width: auto;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
@media (min-width: 376px) {
  /*====================================================================/
  /*--iPhone 以上--
  /====================================================================*/
  .feed-list {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
    border-right: 1px solid #E5E9EC;
  }
  .feed-list > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .feed-box {
    border-left: 1px solid #E5E9EC;
  }
}
@media (min-width: 576px) {
  /*====================================================================/
  /*--スマホ 以上--
  /====================================================================*/
  .pickup01-list3 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: space-between;
  }
  .pickup01-list3 > * {
    width: 50%;
  }
  .pickup01-list4 {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .pickup01-list4 > * {
    width: 50%;
  }
  .pickup01-list4 > *:nth-of-type(2n) .pickup01-box01, .pickup01-list4 > *:last-of-type .pickup01-box01 {
    border-right: 1px solid #E5E9EC;
  }
  .pickup01-box01__txt {
    font-size: 0.94rem;
  }
  .pickup01-box01__txt .btn-wrap {
    width: 68%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
  /*--スマホ以上 タブレット iPadmini未満--
  /====================================================================*/
}
@media (min-width: 768px) {
  /*====================================================================/
  /*--タブレット　iPadmini 以上--
  /====================================================================*/
  .main-view {
    height: 100vw;
    background-image: url(../img/common/top-main_tb.jpg);
    background-size: cover;
  }
  .scroll-btn__inner a {
    font-size: 1.06em;
  }
  .pickup01-col2__tit small {
    font-size: 0.73em;
  }
  .pickup01-box01__tit {
    font-size: 1rem;
  }
  .pickup01-box01__tit::before {
    font-size: 2.25rem;
  }
  .works-cont {
    padding: 5rem 0;
  }
  .news-cont {
    padding: 5rem 0;
  }
  .blog-cont {
    padding: 5rem 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  /*====================================================================/
  /*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
  /====================================================================*/
}
@media (min-width: 1024px) {
  /*====================================================================/
  /*--XGAサイズ　iPadPro 以上--
  /====================================================================*/
  .main-view {
    max-width: 1920px;
    height: 50vw;
    margin-right: auto;
    margin-left: auto;
    background-image: url(../img/common/top-main_pc.jpg);
  }
  .scroll-btn__inner a {
    font-size: 1em;
  }
  .pickup01-col2__tit {
    -webkit-transform: translateX(-50%);
    z-index: 2;
    position: absolute;
    top: 7rem;
    left: 50%;
            transform: translateX(-50%);
    color: #fff;
  }
  .pickup01-col2__tit span {
    padding: 2rem 6rem;
    border: 1px solid #fff;
  }
  .pickup01-col2__tit small {
    font-size: 0.68em;
  }
  .pickup01-col2__tit small::before, .pickup01-col2__tit small::after {
    background: #fff;
  }
  .pickup01-col2__separate {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
  }
  .pickup01-col2__separate > * {
    width: 100%;
  }
  .pickup01-col2__box {
    padding-top: 24rem;
    padding-bottom: 10rem;
  }
  .pickup01-col2__inner {
    max-width: 620px;
    padding-right: 10%;
    padding-left: 10%;
  }
  .pickup01-intro__txt p {
    font-size: 17px;
    letter-spacing: 0.2em;
  }
  .pickup01-list3 > * {
    width: 30%;
  }
  .pickup01-box01__txt .txt {
    font-size: 1.13rem;
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-cont::after {
    z-index: -1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 84%;
    height: 66%;
    background-color: #F5F8FB;
    content: "";
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-flex figure {
    top: 0;
    right: 66px;
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-txt {
    width: 68%;
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-txt__inner {
    padding-right: 10%;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-cont::after {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 84%;
    height: 66%;
    background-color: #F5F8FB;
    content: "";
  }
  .pickup02 > *:nth-of-type(even) .pickup02-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-flex figure {
    top: 0;
    left: 50px;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-txt {
    width: 68%;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-txt__inner {
    padding-left: 15%;
  }
  .pickup02-cont {
    margin-bottom: 90px;
    padding-top: 68px;
    padding-bottom: 66px;
  }
  .pickup02-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pickup02-flex figure {
    display: block;
    position: absolute;
    aspect-ratio: 860/517;
    width: 36%;
    max-width: 860px;
    margin: auto;
  }
  .pickup02-txt {
    width: 64%;
  }
  .pickup02-txt__tit {
    font-size: calc(1.3rem + 2vw - 20px);
  }
  .works-cont {
    padding: 6rem 0;
    background-image: url(../img/common/top-works_pc.jpg);
  }
  .feed-box .txt {
    font-size: 0.88rem;
  }
  .news-table th,
  .news-table td {
    padding: 1rem 0 1.2rem;
    font-size: 1.07em;
  }
  .news-table th {
    width: 140px;
  }
}
@media (min-width: 1024px) and (max-width: 1256px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro以上 PC未満--
  /====================================================================*/
}
@media (min-width: 1024px) and (min-width: 768px) {
  .news-table th,
  .news-table td {
    font-size: 1em;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .news-table th,
  .news-table td {
    font-size: 0.93em;
  }
}
@media (min-width: 1257px) {
  /*====================================================================/
  /*---PC 以上--
  /====================================================================*/
  .scroll-btn__inner a {
    padding-top: 60px;
  }
  .scroll-btn__inner a span {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 5px;
    left: 50%;
    width: 30px;
    height: 50px;
    margin-left: -15px;
  }
  .scroll-btn__inner a span::after {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 90%;
    margin-left: -1px;
    background-color: #fff;
    content: "";
  }
  .scroll-btn__inner a span::before {
    -webkit-animation: ball 2s infinite;
    position: absolute;
    top: 0px;
    left: 50%;
    width: 9px;
    height: 9px;
    margin-left: -5px;
    border-radius: 100%;
    background-color: #fff;
    content: "";
            animation: ball 2s infinite;
  }
  .pickup01-col2__tit span {
    font-size: 1.5rem;
  }
  .pickup01-col2__tit b {
    font-size: 2rem;
  }
  .pickup01-col2__box__tit {
    font-size: 1.38rem;
  }
  .pickup01 {
    padding: 8rem 0 7rem;
  }
  .pickup01-list4 > * {
    width: 25%;
  }
  .pickup01-list4 > *:nth-of-type(2n) .pickup01-box01 {
    border-right: none;
  }
  .pickup01-list4 > *:nth-of-type(4n) .pickup01-box01, .pickup01-list4 > *:last-of-type .pickup01-box01 {
    border-right: 1px solid #E5E9EC;
  }
  .pickup01-box01__txt {
    padding: 2rem 5% 2rem 24%;
  }
  .pickup01-box01__tit {
    font-size: 1.63rem;
  }
  .pickup01-box01__tit::before {
    font-size: 3.13rem;
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-txt__inner {
    margin-left: 12%;
    padding-right: 0;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-flex figure {
    left: 6.25%;
  }
  .pickup02 > *:nth-of-type(even) .pickup02-txt__inner {
    margin-left: 35%;
    padding-left: 0;
  }
  .pickup02-flex figure {
    width: 45%;
  }
  .pickup02-txt {
    width: 56%;
  }
  .pickup02-txt__inner {
    max-width: 586px;
    padding: 3rem 0 5rem;
  }
  .pickup02-txt__tit {
    font-size: 2.06rem;
  }
  .pickup02-txt__catch {
    font-size: 4.5rem;
  }
  .feed-list > * {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
  .news-inner {
    max-height: 400px;
  }
}
@media (min-width: 1257px) and (max-width: 1639px) {
  /*====================================================================/
  /*--px以上 Large PC未満--
  /====================================================================*/
}
@media (min-width: 1640px) {
  /*====================================================================/
  /*--Large PC 以上--
  /====================================================================*/
  .main-view {
    height: 860px;
    background-size: contain;
  }
  .pickup01-box01__tit::before {
    font-size: 4.25rem;
  }
  .pickup02 > *:nth-of-type(odd) .pickup02-txt__inner {
    margin-left: 25%;
  }
}
@media (max-width: 1639px) {
  /*====================================================================/
  /*--Large PC 未満--
  /====================================================================*/
}
@media (max-width: 1256px) {
  /*====================================================================/
  /*--PC 未満--
  /====================================================================*/
  .scroll-btn__inner a {
    padding-top: 60px;
  }
  .scroll-btn__inner a span {
    -webkit-transform: rotate(-45deg);
    -webkit-animation: arrow 1.5s infinite;
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
            transform: rotate(-45deg);
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
            animation: arrow 1.5s infinite;
  }
  .pickup02-txt__inner {
    padding: 5rem 8%;
  }
  .feed-list > **:nth-child(n+3) {
    display: none;
  }
  .feed-box {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1023px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro 未満--
  /====================================================================*/
  .pickup01-col2 {
    padding-top: 2.5rem;
  }
  .pickup01-col2__inner {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .pickup02-flex figure {
    width: 100%;
  }
  .pickup02-txt__inner {
    padding: 3rem 4%;
  }
  .news-table th,
  .news-table td {
    display: block;
  }
}
@media (max-width: 767px) {
  /*====================================================================/
  /*--タブレット iPadmini 未満--
  /====================================================================*/
  .main-view {
    height: 177.77vw;
    background-image: url(../img/common/top-main_sp.jpg);
    background-size: cover;
  }
}
@media (max-width: 575px) {
  /*====================================================================/
  /*--iPhone 以下--
  /====================================================================*/
  .pickup01-list4 > * .pickup01-box01 {
    border-right: 1px solid #E5E9EC;
  }
}
/*# sourceMappingURL=map/top.css.map */
