@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    本ページ共通
*******************************
*/
#wrap {
  overflow: hidden;
}

/*
******************************
    slick（スライドショー）
*******************************
*/
.slideItems {
  height: 100vh;
  position: relative;
  z-index: 10;
}

.slideItems__wrapper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideItems img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  animation: img-expansion 45s linear 80ms infinite;
}

.slick-arrow {
  display: none !important;
}

/*
*******************************
    mainVisual
*******************************
*/
.mainVisual {
  position: relative;
  overflow: hidden;
}

.mainVisual__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
}

.mainVisual__mask-mask1 {
  height: 100vh;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

.mainVisual__catchcopyWapper {
  position: absolute;
  top: 48%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  z-index: 15;
}
@media screen and (max-width: 479px) {
  .mainVisual__catchcopyWapper {
    font-size: 6rem;
    top: 46%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .mainVisual__catchcopyWapper {
    font-size: 6rem;
    top: 46%;
  }
}

.mainVisual__logo {
  width: 80px;
}
@media screen and (max-width: 479px) {
  .mainVisual__logo {
    width: 60px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .mainVisual__logo {
    width: 60px;
    margin-bottom: 16px;
  }
}

.mainVisual__catchcopy {
  font-size: 8rem;
  font-weight: 800;
}
@media screen and (max-width: 479px) {
  .mainVisual__catchcopy {
    font-size: 3.8rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .mainVisual__catchcopy {
    font-size: 5rem;
  }
}

.mainVisual__catchcopy-sub {
  font-size: 2.5rem;
  font-family: serif;
}
@media screen and (max-width: 479px) {
  .mainVisual__catchcopy-sub {
    font-size: 2.2rem;
    font-family: serif;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .mainVisual__catchcopy-sub {
    font-size: 2.8rem;
    font-family: serif;
  }
}

.mainVisual__catchcopy .ftbl {
  color: black;
}

/*スクロールダウンの設定*/
.mainVisual__scrolldown {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 100px;
  height: 50px;
  z-index: 10;
  transform: translateX(-50%);
  text-align: center;
}

.mainVisual__scrolldown span {
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  position: relative;
  top: -30px;
}

.mainVisual__scrolldown::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

.slideItems__img {
  filter: blur(0px);
}

/*
******************************
    ピックアップ製品-pickup
*******************************
*/
.pickup {
  background-image: url("../../img/pickup_bg.png");
  background-color: rgba(255, 255, 255, 0.4);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center;
}
.pickup__wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 128px 0;
}
@media screen and (max-width: 479px) {
  .pickup__wrapper {
    padding-block: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pickup__wrapper {
    max-width: 700px;
    padding-block: 32px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .pickup__wrapper {
    width: 85%;
    padding-block: 32px;
  }
}
.pickup__link {
  transition: 0.4s;
}
.pickup__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 479px) {
  .pickup__link {
    width: 100% !important;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pickup__link {
    width: 100% !important;
  }
}
.pickup .slide {
  max-width: 950px;
}
.pickup .slide img {
  width: 100%;
}
.pickup .slick-list {
  max-width: 950px;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .pickup .slick-list {
    padding: 0 !important;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pickup .slick-list {
    padding: 0 !important;
  }
}
.pickup .slick-slide {
  margin: 0 15px;
}
@media screen and (max-width: 479px) {
  .pickup .slick-track {
    width: 100% !important;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pickup .slick-track {
    width: 100% !important;
  }
}
.pickup__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
}
.pickup__sectionTitle {
  background: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background: -webkit-linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pickup__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: black;
}
.pickup__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: black;
  margin-bottom: 48px;
}
@media screen and (max-width: 479px) {
  .pickup__sectionTitle-sub {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pickup__sectionTitle-sub {
    margin-bottom: 32px;
  }
}

/*
******************************
    ニュース-News
*******************************
*/
.news {
  background: #f5f5f5;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 479px) {
  .news {
    height: auto;
    background-size: 250%;
    padding-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news {
    height: auto;
    background-size: 250%;
    padding-top: 0;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news {
    height: auto;
    padding-block: 120px;
    margin-bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    box-sizing: border-box;
  }
}

.news__wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 128px 0;
}
@media screen and (max-width: 479px) {
  .news__wrapper {
    padding: 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__wrapper {
    max-width: 700px;
    padding: 0;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__wrapper {
    width: 85%;
    padding: 0;
  }
}

.news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .news__content {
    padding: 32px 0;
    flex-direction: column;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__content {
    padding: 32px 0;
    flex-direction: column;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__content {
    padding: 0;
    flex-direction: column;
  }
}

.news__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
}

.news__sectionTitle {
  display: inline-block;
  background: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background: -webkit-linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: black;
}

.news__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: black;
  margin-bottom: 48px;
}
@media screen and (max-width: 479px) {
  .news__sectionTitle-sub {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__sectionTitle-sub {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__sectionTitle-sub {
    margin-bottom: 32px;
  }
}

.news__textBlock {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 479px) {
  .news__textBlock {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__textBlock {
    width: 100%;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__textBlock {
    width: 100%;
  }
}

.news__lists {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 479px) {
  .news__lists {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__lists {
    width: 100%;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news__lists {
    width: 100%;
  }
}

.news__item {
  font-size: 1.4rem;
}

.news__date {
  margin-right: 24px;
  font-weight: 800;
}

.news__category {
  font-size: 1rem;
  font-weight: 800;
  color: #054A91;
  padding: 1px 24px;
  background: #fff;
}

.news__title {
  padding: 14px 0;
  border-bottom: 0.5px solid #e3e3e3;
}
@media screen and (max-width: 479px) {
  .news__title {
    border-bottom: 0.5px solid #a7a7a7;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news__title {
    border-bottom: 0.5px solid #a7a7a7;
  }
}

.news__title a {
  transition: 0.4s;
}

.news__title a:hover {
  opacity: 0.6;
}

.news .readBtn a {
  padding: 16px 25px;
  border: none;
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news .readBtn a {
    margin: 0 auto;
  }
}

@media screen and (max-width: 479px) {
  .news .readBtn.sp {
    margin: 32px auto;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .news .readBtn.sp {
    margin: 32px auto;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .news .readBtn.sp {
    display: block;
    margin-top: 56px;
  }
}

@media screen and (min-width:960px) and (max-width:1279px) {
  .news .readBtn.pc {
    display: none;
  }
}

/*
******************************
    会社概要-Company
*******************************
*/
.company {
  position: relative;
}

.company__wrapper {
  width: 90%;
  max-width: 1180px;
  height: 700px;
  margin: 0 auto;
  margin-top: 128px;
  background: #fff;
}
@media screen and (max-width: 479px) {
  .company__wrapper {
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 0;
    flex-direction: column-reverse;
    padding-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .company__wrapper {
    display: flex;
    width: 100%;
    height: auto;
    margin-top: 0;
    flex-direction: column-reverse;
    padding-bottom: 32px;
  }
}

.compamy__textBlock {
  width: 42%;
  background: #fff;
  position: relative;
  z-index: 99;
  padding: 48px;
}
@media screen and (max-width: 479px) {
  .compamy__textBlock {
    width: 90%;
    margin-inline: auto;
    margin-top: -100px;
    box-shadow: 5px 8px 7px #f7f7f7;
    padding: 37px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .compamy__textBlock {
    width: 90%;
    max-width: 700px;
    margin-inline: auto;
    margin-top: -100px;
    box-shadow: 5px 8px 7px #f7f7f7;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .compamy__textBlock {
    min-width: 486px;
  }
}

.company__sectionTitleWrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.company__sectionTitle {
  font-size: 2rem;
  font-weight: 800;
  color: #054A91;
  display: inline-block;
}

.company__image {
  width: 65%;
  height: 465px;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../../img/webp/slide01.webp");
  background-size: cover;
}
@media screen and (max-width: 479px) {
  .company__image {
    width: 100%;
    height: 350px;
    position: unset;
    transform: translateY(0%);
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .company__image {
    width: 100%;
    height: 350px;
    position: unset;
    transform: translateY(0%);
  }
}

.company__catchCopy {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
@media screen and (max-width: 479px) {
  .company__catchCopy {
    font-size: 2.8rem;
  }
}

.company__description {
  font-size: 1.4rem;
  line-height: 2em;
  margin-bottom: 24px;
}

.company__readmore {
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.6s;
}

.company__readmore:hover {
  opacity: 0.6;
}

.company__readmore-arrow {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #054A91;
  position: relative;
}

.company__readmore-arrow:before,
.company__readmore-arrow:after {
  position: absolute;
  content: "";
}

.company__readmore-arrow:before {
  top: 16px;
  left: 6px;
  width: 17px;
  height: 1px;
  background: #fff;
}

.company__readmore-arrow:after {
  top: 11px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 8px solid #fff;
}

.company__image {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*
******************************
    製品一覧-Product
*******************************
*/
@media screen and (max-width: 479px) {
  .product {
    padding-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product {
    padding-bottom: 32px;
  }
}

.product__wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  .product__wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}

.product__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
}

.product__sectionTitle {
  background: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background: -webkit-linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-image: linear-gradient(90deg, rgb(5, 74, 145), rgb(14, 244, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: black;
}

.product__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: black;
  margin-bottom: 48px;
}
@media screen and (max-width: 479px) {
  .product__sectionTitle-sub {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__sectionTitle-sub {
    margin-bottom: 32px;
  }
}

.product__field {
  width: 50%;
  padding: 60px;
  position: relative;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .product__field {
    width: 95%;
    padding: 40px 24px;
    border-radius: 18px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__field {
    width: 95%;
    max-width: 700px;
    padding: 40px 24px;
    border-radius: 18px;
  }
}

.product__field::after {
  content: "";
  background-color: rgba(1, 63, 147, 0.35);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 4;
}
@media screen and (max-width: 479px) {
  .product__field::after {
    border-radius: 18px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__field::after {
    border-radius: 18px;
  }
}

.product__fieldName {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #054A91;
  background: #fff;
  display: inline-block;
  padding: 8px 24px;
}

.product__productName {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 2.5em;
  color: #fff;
  max-width: 600px;
  margin-bottom: 32px;
}
@media screen and (max-width: 479px) {
  .product__productName {
    margin-bottom: 16px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productName {
    margin-bottom: 16px;
  }
}

.product__field * {
  position: relative;
  z-index: 5;
}

.product__field-01 {
  background-image: url("../../img/product01.png");
}

.product__field-02 {
  background-image: url("../../img/product02.png");
}

.product__field-03 {
  background-image: url("../../img/product03.png");
}

.product__field-04 {
  background-image: url("../../img/product04.png");
}

.product .readBtn {
  display: flex;
  justify-content: center;
}

.product .readBtn a {
  padding: 16px 80px;
  border: unset;
}

.product .readBtn a:hover:before,
.product .readBtn a:hover:after {
  background: #fff;
}/*# sourceMappingURL=top.css.map */