@charset "UTF-8";
/*
breakpoints
*/
/*

breakpointの定義

*/
/*
media query
*/
/*
media query
*/
/* -----------------------------------
media query ver1
------------------------------------ */
/* -----------------------------------
ie
------------------------------------ */
/*
base
*/
/*
color
*/
/*
fonts
*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:ital@1&display=swap);
html {
  font-size: 62.5%;
}

/*
layout
*/
.l-wrapper {
  background-image: url("../img/kv_bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
    .l-wrapper {
      background-image: url("../img/kv_bg_sp.webp");
    }
}

.l-header {
  width: 100%;
  position: relative;
}

.l-header_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header_in ._logo {
  width: 5%;
  text-align: center;
  margin-left: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 426px) {
  .l-header_in ._logo {
    width: 35px;
    height: 55px;
    margin-left: 10px;
    margin-top: 10px;
  }
}

.l-header_in ._logo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .l-header_in ._logo img {
    width: 40px;
    height: 55px;
  }
}

.l-header_in ._wrapper {
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .l-header_in ._wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    right: 0px;
    display: none;
  }
}

.l-sec {
  position: relative;
  margin: 20px auto;
}

.l-sec_in {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .l-sec_in {
    margin-top: 20px;
  }
}

.l-footer {
  background-color: #304566;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 280px;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding-bottom: 30px;
  }
}

.l-footer_nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .l-footer_nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer_nav ul {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .l-footer_nav ul {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: unset;
  }
}

.l-footer_nav ul span {
  margin-left: 10px;
  color: #fff;
}

.l-footer_nav ul li {
  margin-left: 10px;
  list-style: none;
  text-align: center;
}

.l-footer_nav ul li a {
  color: #fff;
  text-decoration: none;
}

.l-footer_nav p._copyRight {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  text-align: right;
  color: #fff;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .l-footer_nav p._copyRight {
    text-align: center;
    margin-right: unset;
    margin-top: 5px;
  }
}

/*
component
*/
.c-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.c-btn a {
  border: 2px solid #304566;
  background-color: #304566;
  padding: 20px 30px 20px 30px;
  width: 150px;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .c-btn a {
    padding: 5px 25px 5px 5px;
    width: 100px;
  }
}

@media screen and (max-width: 426px) {
  .c-btn a {
    padding: 0px 25px 0px 0px;
  }
}

.c-btn a span {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

@media screen and (max-width: 768px) {
  .c-btn a span {
    font-size: 10px;
  }
}

.c-btn a span::before {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.c-btn:hover a {
  background-color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.c-btn:hover a span {
  color: #304566;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.c-btn:hover a span::before {
  border-right: 2px solid #304566;
  border-bottom: 2px solid #304566;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  right: -25px;
}

/*
project
*/
.p-subTitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 600;
  color: #304566;
}

@media screen and (max-width: 768px) {
  .p-subTitle {
    display: -webkit-box;
    display: -ms-flexbox;
    //display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-subTitle ._space {
    display: none;
  }
}

h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #3d3d3d;
}

/*
p-secFv
*/
.p-secKv {
  width: 100%;
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .p-secKv {
    margin-top: 0%;
  }
}

.p-secKv .l-sec_in {
  max-width: unset;
}

.p-secKv ._title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 90%;
  margin-top: 0%;
  text-align: center;
}

.p-secKv ._title img {
  width: 70%;
  min-width: 570px;
}

@media screen and (max-width: 768px) {
  .p-secKv ._title img {
    width: 80%;
    min-width: unset;
  }
}

/*
  p-secRead
*/
.p-secRead {
  background-image: url("../img/read_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 22%;
      padding-top: 40px;
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .p-secRead {
      padding-bottom: 20px;
      margin-top: 19%;
    }
}

.p-secRead ._cnt {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.p-secRead ._cnt ._img1 {
  width: 80%;
  max-width: 900px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .p-secRead ._cnt ._img1 {
    width: 100%;
  }
}

.p-secRead ._cnt ._img1 img {
  width: 100%;
}

.p-secRead ._cnt ._img2 {
  width: 80%;
  margin: auto;
  margin-top: 50px;
}

.p-secRead ._cnt ._img2 a {
  transition: opacity 0.5s;
}

.p-secRead ._cnt ._img2 a:hover {
    opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .p-secRead ._cnt ._img2 {
    width: 100%;
    margin-top: 20px;
  }
}

.p-secRead ._cnt ._img2 img {
  width: 100%;
}

.p-secInfo {
  background-color: #f5f6f7;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
}

.p-secInfo ._cnt {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt {
    width: 90%;
  }
}

.p-secInfo ._cnt.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-secInfo ._cnt.-mgtp {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
    .p-secInfo ._cnt.-mgtp {
  margin-top: 40px;
}
}

.p-secInfo ._cnt ._subTitle ._text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 600;
  color: #304566;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fcff71));
  background: linear-gradient(transparent 70%, #fcff71 70%);
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._subTitle ._text {
    font-size: 24px;
    margin-top: 10px;
        margin-left: 15px;
  }
}

@media screen and (max-width: 426px) {
  .p-secInfo ._cnt ._subTitle ._text {
    font-size: 18px;
  }
}

.p-secInfo ._cnt ._subTitle ._num {
  display: inline-block;
  font-size: 34px;
  font-weight: 500;
  background-color: #304566;
  border-radius: 50px;
  padding: 0px 16px 2px 16px;
  color: #fff;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._subTitle ._num {
    font-size: 25px;
    padding: 0px 12px 2px 12px;
  }
}

@media screen and (max-width: 426px) {
  .p-secInfo ._cnt ._subTitle ._num {
    font-size: 19px;
    padding: 0px 9px 2px 9px;
  }
}

.p-secInfo ._cnt ._subTitle ._asterisk {
  font-size: 18px;
  color: #304566;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._subTitle ._asterisk {
    font-size: 12px;
    margin-top: 5px;
        margin-left: 10px;
  }
}

.p-secInfo ._cnt ._text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #304566;
  margin-left: 7%;
  margin-top: 10px;
}

.p-secInfo ._cnt ._text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #304566;
  margin-left: 7%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._text1 {
    margin-left: 0%;
    font-size: 14px;
  }
}

.p-secInfo ._cnt ._img1 {
  text-align: center;
  margin-top: 5%;
}

.p-secInfo ._cnt ._img1 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap {
  margin: 0 auto;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-top: 0%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0%;
  }
}

.p-secInfo ._cnt ._wrap.-col {
  width: 60%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-secInfo ._cnt ._wrap.-col ._text1 {
  margin-left: 10%;
}

.p-secInfo ._cnt ._wrap ._img2 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._img2 {
  	font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    margin-top: 0;
    color: #304566;
    font-size: 10px;
  }
}

.p-secInfo ._cnt ._wrap ._img2 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap ._illust1 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._illust1 {
        width: 100%;
    margin-top: 5%;
    text-align: center;
  }
}

.p-secInfo ._cnt ._wrap ._illust1 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap ._img3 {
  width: 60%;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._img3 {
    width: 100%;
    margin-top: 0;
  }
}

.p-secInfo ._cnt ._wrap ._img3 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap ._img4 {
  width: 37%;
  margin-top: -11%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._img4 {
    width: 80%;
    margin: auto;
    margin-top: 20px;
  }
}

.p-secInfo ._cnt ._wrap ._img4 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap ._img5 {
  width: 76%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._img5 {
    width: 100%;
    margin-top: 0;
  }
}

.p-secInfo ._cnt ._wrap ._img5 img {
  width: 100%;
}

.p-secInfo ._cnt ._wrap ._img6 {
  width: 40%;
  margin-top: -7%;
}

@media screen and (max-width: 768px) {
  .p-secInfo ._cnt ._wrap ._img6 {
    width: 80%;
    margin: auto;
    margin-top: 20px;
  }
}

.p-secInfo ._cnt ._wrap ._img6 img {
  width: 100%;
}

/*
p-secKv2
*/
.p-secKv2 {
  background-image: url("../img/kv2_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  margin-top: 0;
  padding-top: 2%;
  padding-bottom: 3%;
  text-align: center;
}

.p-secKv2 ._title {
  position: relative;
  margin: 0 auto;
  width: 90%;
  margin-top: 0%;
  text-align: center;
}

.p-secKv2 ._title img {
  width: 70%;
  min-width: 570px;
}

@media screen and (max-width: 768px) {
  .p-secKv2 ._title img {
    width: 100%;
    min-width: unset;
  }
}

.p-secKv2 ._text1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #304566));
  background: linear-gradient(transparent 70%, #304566 70%);
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
  margin-top: 30px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .p-secKv2 ._text1 {
    font-size: 14px;
  }
}

@media screen and (max-width: 517px) {
  .p-secKv2 ._text1 {
    letter-spacing: unset;
    font-size: 10px;
  }
}

@media screen and (max-width: 375px) {
  .p-secKv2 ._text1 {
    letter-spacing: -1px;
  }
}

.p-secKv2 ._text2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #304566));
  background: linear-gradient(transparent 70%, #304566 70%);
  font-size: 32px;
  font-weight: 600;
  margin: 0 auto;
  margin-top: 15px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .p-secKv2 ._text2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 375px) {
  .p-secKv2 ._text2 {
    font-size: 18px;
  }
}

.p-secInfo2 {
  margin: 0 auto;
}

.p-secInfo2 ._cnt {
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt {
    width: 100%;
  }
}

.p-secInfo2 ._cnt.-mgtp {
  margin-top: 40px;
}

.p-secInfo2 ._cnt ._subTitle {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fcff71));
  background: linear-gradient(transparent 70%, #fcff71 70%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._subTitle {
    font-size: 24px;
    margin-left: 5%;
  }
}

@media screen and (max-width: 426px) {
  .p-secInfo2 ._cnt ._subTitle {
    font-size: 18px;
  }
}

.p-secInfo2 ._cnt ._text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #304566;
  font-weight: 500;
  margin-top: 10px;
}

.p-secInfo2 ._cnt ._text1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #304566;
  font-weight: 500;
  margin-top: 5px;
  margin-left: 73px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._text1 {
  font-size: 10px;
  color: #304566;
  font-weight: 500;
  margin: auto;
  margin-top: 5px;
  }
}

.p-secInfo2 ._cnt ._text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #304566;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
.p-secInfo2 ._cnt ._text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  color: #304566;
  font-weight: 500;
  width: 90%;
  margin: 0 auto;
  margin-top: 10px;
}

}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._text {
    font-size: 14px;
    margin-left: 5%;
  }
}

@media screen and (max-width: 426px) {
  .p-secInfo2 ._cnt ._text {
    font-size: 12px;
  }
}

.p-secInfo2 ._cnt ._text.-min {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._text.-min {
    font-size: 10px;
    margin-left: 0px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg {
  width: 95%;
  padding: 40px;
  background-color: #f5f6f7;
  border-radius: 10px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg {
    border-radius: 0px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 20px;
    width: 90%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  color: #304566;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle {
    font-size: 14px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 426px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle::before {
    display: none;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title1 {
  background-image: url("../img/icon1.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 8%;
}

@media screen and (max-width: 481px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title1 {
    background-image: none;
    padding-left: 0%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title2 {
  background-image: url("../img/icon2.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 5%;
}

@media screen and (max-width: 481px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title2 {
    background-image: none;
    padding-left: 0%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title3 {
  background-image: url("../img/icon3.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 7%;
}

@media screen and (max-width: 481px) {
  .p-secInfo2 ._cnt ._wrapperBg ._wrapperTitle.-title3 {
    background-image: none;
    padding-left: 0%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper {
    width: 100%;
    margin: unset;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._caseText {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #304566;
  font-weight: 500;
  margin-top: 20px;
  padding-left: 18px;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._caseText::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0%;
  background-color: #304566;
  width: 14px;
  height: 14px;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case.-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ul {
  margin-top: 20px;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ul.-list1 {
  width: 12%;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ul.-list2 {
  width: 30%;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ul li {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1 {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #304566;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 15px;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1 {
    font-size: 14px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1::before {
  content: "";
  display: block;
  position: absolute;
  border-top: 12px solid #304566;
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -35px;
  left: 40%;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1 ._block {
  background-color: #fff;
  padding: 5px 15px 5px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #304566;
  font-weight: 600;
  border: 1px solid #304566;
  border-radius: 5px;
  letter-spacing: 1px;
}

@media screen and (max-width: 426px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1 ._block {
    font-size: 13px;
    padding: 5px 0px 5px 5px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text1 ._bold {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #304566;
  font-weight: 600;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #dd5361;
  font-weight: 600;
  text-align: left;
  margin-top: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 426px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text2 {
    font-size: 14px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text2 ._bold {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  color: #dd5361;
  font-weight: 600;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._text2 ._bold {
    font-size: 18px;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img1 {
  width: 42.5%;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img1 {
    width: 100%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img1 img {
  width: 100%;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img2 {
  width: 52.5%;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img2 {
    width: 100%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img2 img {
  width: 100%;
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img3 {
  margin-top: 40px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img3 {
    width: 100%;
  }
}

.p-secInfo2 ._cnt ._wrapperBg ._cntWrapper ._case ._img3 img {
  width: 100%;
}

.p-secBanner ._eyeCatch {
  width: 90%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 10px
}

@media screen and (max-width: 581px) {
  .p-secBanner ._eyeCatch {
    width: 90%;
  }
}

.p-secBanner ._eyeCatch img {
  width: 100%;
}


.p-secBanner ._eyeCatch a{
    transition: opacity 0.5s;
}

.p-secBanner ._eyeCatch a:hover {
    opacity: 0.3;
}


.p-secBanner ul {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  margin-top: 40px;
}

@media screen and (max-width: 581px) {
  .p-secBanner ul {
    -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;
    width: 80%;
    margin-top: 0px;
  }
}

.p-secBanner ul li {
  width: 30%;
  text-align: center;
}

@media screen and (max-width: 581px) {
  .p-secBanner ul li {
    width: 100%;
    margin-top: 30px;
  }
}

.p-secBanner ul li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-secBanner ul li a ._text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #304566;
}

@media screen and (max-width: 768px) {
  .p-secBanner ul li a ._text {
    font-size: 14px;
  }
}

.p-secBanner ul li a ._img {
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.p-secBanner ul li a ._img:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.p-secBanner ul li a img {
  margin-top: 20px;
  width: 100%;
}

/*
js animation
*/
.js-animation.-fadein {
  -webkit-transition: 2.0s ease-out;
  transition: 2.0s ease-out;
  opacity: 0;
}

.js-animation.-fadein.is-animation {
  opacity: 1;
}

.js-animation.-slideup {
  -webkit-transition: .8s ease-out;
  transition: .8s ease-out;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-animation.-slideup.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js-animation.-slideIn {
  -webkit-transition: .8s ease-out;
  transition: .8s ease-out;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.js-animation.-slideIn.is-animation {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.js-animation.-borderHorizontal1 {
  -webkit-transition: .7s ease-out;
  transition: .7s ease-out;
  opacity: 0;
  width: 0%;
}

.js-animation.-borderHorizontal1.is-animation {
  opacity: 1;
  width: 100%;
}

.js-animation.-borderVertical1 {
  -webkit-transition: .7s ease-out;
  transition: .7s ease-out;
  opacity: 0;
  height: 0%;
}

.js-animation.-borderVertical1.is-animation {
  opacity: 1;
  height: 180%;
}

@media screen and (min-width: 769px) {
  .js-animation.-delay1 {
    -webkit-transition-delay: .1s;
            transition-delay: .1s;
  }
  .js-animation.-delay2 {
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
  }
  .js-animation.-delay3 {
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
  .js-animation.-delay4 {
    -webkit-transition-delay: .4s;
            transition-delay: .4s;
  }
  .js-animation.-delay5 {
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .js-animation.-delay6 {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .js-animation.-delay7 {
    -webkit-transition-delay: .7s;
            transition-delay: .7s;
  }
  .js-animation.-delay8 {
    -webkit-transition-delay: .8s;
            transition-delay: .8s;
  }
  .js-animation.-delay9 {
    -webkit-transition-delay: .9s;
            transition-delay: .9s;
  }
  .js-animation.-delay10 {
    -webkit-transition-delay: 1.0s;
            transition-delay: 1.0s;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slideinTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes slideinTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes poyopoyoY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes poyopoyoY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes poyopoyoX {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes poyopoyoX {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}


.midashi {
    max-width: 310px;
    margin-bottom: 30px;
}

.midashi img {
    width: 100%;
}

.cvbtn {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.cvbtn a{
    transition: opacity 0.5s;
}

.cvbtn a:hover {
    opacity: 0.3;
}

.cvbtn img {
    width: 100%;
}




/*# sourceMappingURL=style.css.map */