@charset "UTF-8";

/*------------------------ 分類：コンテンツ系 ------------------------*/


.m-container {
    position: relative;
}

.m-content {
    margin: 0 auto;
    max-width: 1280px;
}

.m-pagetop {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.m-pagetop a {
  display: block;
}

.m-pagetop img {
  max-width: 100%;
}

.nopc {
  display: none;
}

@media screen and (max-width: 1260px){

  .m-content {
    width: 90%;
    margin: 0 auto;
  }

}



@media screen and (max-width: 767px) {

  .m-pagetop {
    width: 50px;
    bottom: 90px;
    right: 10px;
  }

  .nopc {
    display: block;
  }

  .nosp {
    display: none;
  }

}

/*------------------------ 分類：ボタン系 ------------------------*/
.m-button {
    max-width: 1220px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.m-button a {
    display: block;
}

.m-button a:hover {
    opacity: .9;
}

.m-button-2col {
    max-width: 600px;
    width: 49%;
}

.m-button-2col img {
    max-width: 100%;
}

.m-button02 {
    width: 350px;
    height: 60px;
    background: #f08200;
    text-align: center;
    box-shadow: 0 0 10px #7b7b7b;
}

.m-button02 a {
    position: relative;
    display: block;
    padding: 19px 0;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    overflow: hidden;
    transition: .2s;
    transition-delay: .3s;
    z-index: 0;
}

.m-button02 a::after {
  position: absolute;
  content: "";
  background: url(../img/common/ico_plus.png)no-repeat;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
  width: 15px;
  height: 15px;
}

.m-button02 a:before {
    display: block;
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #002972;
    transition: .2s;
    transition-delay: .3s;
}

.m-button02 a:hover {
  transition-delay: 0s;
}

.m-button02 a:hover:before {
    left: 0;
    transition-delay: 0s;
}


.m-button-content {
    position: relative;
    max-width: 1190px;
    margin: 60px auto 70px;
}

.m-button-top {
    background: #012873;
    width: 330px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.075em;
}

.m-button-top a {
    display: block;
    padding: 13px 0;
    color: #fff;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;
}

.m-button-top a span {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
}

.m-button-next {
  position: absolute;
    background: #222222;
    width: 330px;
    height: 70px;
    text-align: center;
    letter-spacing: 0.075em;
    right: 0;
    top: 0;
}

.m-button-next a {
    display: block;
    padding: 13px 0;
    color: #fff;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;
}

.m-button-next a span {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
}

.m-button-next:before {
    position: absolute;
    content: "";
    top: 29px;
    right: 20px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


.m-button-prev {
  position: absolute;
    background: #222222;
    width: 330px;
    height: 70px;
    text-align: center;
    letter-spacing: 0.075em;
    left: 0;
    top: 0;
}

.m-button-prev a {
    display: block;
    padding: 13px 0;
    color: #fff;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;
}

.m-button-prev a span {
    display: block;
    font-size: 13px;
    font-size: 1.3rem;
}

.m-button-prev:before {
    position: absolute;
    content: "";
    top: 29px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 1260px) {

  .m-button-top {
    width: 30%;
  }

  .m-button-prev {
      width: 30%;
      left: 20px;
  }

  .m-button-next {
      right: 20px;
      width: 30%;
  }


}

@media screen and (max-width: 767px) {

  .m-button img {
      max-width: 100%;
  }

  .m-button {
    width: 100%;
  }

  .m-button-2col {
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .m-button-2col:first-child {
    margin-bottom: 10px;
  }

  .m-button02 {
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
  }

  .m-button-next {
    position: inherit;
    margin: 20px auto 0;
    max-width: 330px;
    width: 100%;
    right: inherit;
  }

  .m-button-prev {
    position: inherit;
    margin: 0 auto 20px;
    max-width: 330px;
    width: 100%;
    left: inherit;
  }

  .m-button-top {
      max-width: 330px;
      width: 100%;
  }

}

/*------------------------ 分類：2カラム系------------------------*/

.m-2col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-2col__img {
    position: relative;
}

.m-2col__img:before {
    position: absolute;
    content: "";
    background: #19308b;
    width: 425px;
    height: 545px;
    left: -60px;
    top: -80px;
    z-index: -1;
}

.m-2col__detail {
    width: 510px;
    text-align: left;
}

.m-2col__catch {
    display: block;
    padding-bottom: 25px;
}

.m-2col__head {
    margin: 0;
    padding-bottom: 50px;
    font-size: 34px;
    letter-spacing: 0.075em;
}


.m-2col__lead {
    margin-bottom: 50px;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 2;
}

@media screen and (max-width: 1260px){

  .m-2col__img {
    width: 45%;
  }

  .m-2col__img:before {
      width: 100%;
      height: 100%;
      top: -30px;
      left: -30px;
  }

  .m-2col__detail {
      width: 55%;
      padding: 0 5%;
  }

  .m-2col__head {
      padding-bottom: 20px;
      font-size: 3rem;
  }

  .m-2col__img img {
    max-width: 100%;
  }


}

@media screen and (max-width: 767px) {


  .m-2col {
    display: block;
  }

  .m-2col__img {
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
  }

.m-2col__img:before {
    left: -20px;
    top: -20px;
  }

  .m-2col__detail {
      margin: 30px auto 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.7);
      padding: 0;
  }

  .m-2col__head {
      padding-bottom: 20px;
      font-size: 2.5rem;
  }

  .m-2col__catch {
      padding-bottom: 10px;
      width: 70px;
  }

  .m-2col__catch img {
      max-width: 100%;
  }

  .m-2col__lead {
      margin-bottom: 30px;
  }

}

/*------------------------ 分類：3カラム系------------------------*/
.m-3col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.m-3col__card {
    position: relative;
    box-shadow: 0 0 10px #7b7b7b;
    overflow: hidden;
}

.m-3col__card a {
    display: block;
    color: #fff;
    transition: .3s;
}

.m-3col__card img {
  transition: .3s;
}

.m-3col__card a:hover img {
  transform: scale(1.3,1.3);
  transition: .3s;
}

.m-3col__search {
    position: absolute;
    width: 85%;
    height: 90%;
    background: rgba(8, 17, 58, 0.7);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.m-3col__block {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


.m-3col__list {
  position: relative;
  display: table;
  padding-top: 50px;
  min-height: 140px;
  margin: 0 auto;
}

.m-3col__list::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 0;
  left: 50%;
  margin-left: -25px;
}

.m-3col__list::after {
  position: absolute;
  content: "";
  background: url(../img/common/ico_search.png)no-repeat;
  background-size: cover;
  width: 21px;
  height: 21px;
  top: 15px;
  left: 50%;
  margin-left: -10px;
}

.m-3col__list p {
    display: table-cell;
    margin: 0;
    vertical-align: middle;
    font-size: 20px;
    font-size: 2rem;
    letter-spacing: 0.075em;
    line-height: 2;
}

.m-3col__search span {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.075em;
}



@media screen and (max-width: 1260px){


  .m-3col__card {
    width: 32%;
  }

  .m-3col__card img {
      max-width: 100%;
  }

  .m-3col__list p {
    font-size: 1.6rem;
  }

  .m-3col__list {
      margin: 0 auto 10px;
  }

}

@media screen and (max-width: 767px) {

  .m-3col__card {
      width: 80%;
      margin: 0 auto 30px;
  }

  .m-3col__card a.nosp{
    display: none;
  }

  .m-3col__list {
    min-height: inherit;
    margin: 0 auto 10px;
      padding-top: 60px;
      color: #fff;
  }

  .m-3col__list::before {
    top: 5px;
  }
  
  .m-3col__list::after {
    top: 18px;
  }

  .m-3col__list p {
      font-size: 1.7rem;
      line-height: 1.8;
  }

  .m-3col__search span {
      font-size: 1.2rem;
      color: #fff;
  }

  .m-3col__link{
    margin-top: 30px;
  }

  .m-3col__link--btn{
    background: #fff;
    width: 85%;
    margin: 15px auto;
    text-align: center;
    letter-spacing: 0.075em;
  }
  
  .m-3col__link--btn a{
    display: block;
    padding: 13px 0;
    color: #222222;
    font-size: 14.5px;
    font-weight: bold;
    transition: .2s;
  }
  
  .m-3col__link--btn a:hover{
    opacity: .9;
  }
  
  .m-3col__card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
  }

}

/*------------------------ 分類：タイトル系------------------------*/

.m-arch__head {
    display: inline-block;
    margin: 0 0 90px;
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    background: linear-gradient(transparent 86%, #ffffff 0%);
    padding: 0 10px 4px;
}

.m-arch__en {
    display: block;
    padding-bottom: 20px;
}

@media screen and (max-width: 1260px){
  .m-arch__head {
    margin: 0 0 50px;
  }
}

@media screen and (max-width: 767px) {

  .m-arch__en img {
    max-width: 100%;
  }

  .m-arch__en {
      max-width: 250px;
      margin: 0 auto;
      padding-bottom: 10px;
  }

  .m-arch__head {
      font-size: 1.8rem;
      letter-spacing: 0;
  }

  .m-arch__en img {
      max-width: 100%;
  }

}

/*------------------------ 分類：パーツ・文字色・その他系------------------------*/

.m-tag-content {
  margin: 40px auto 0;
}

.lower_tag__head {
    display: block;
    margin-top: 30px;
}

.m-tag {
    margin: 15px auto 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    max-width: 1100px;
}

.m-tag li {
    display: inline-block;
    margin: 10px 5px;
    vertical-align: middle;
    background: #0894c8;
    height: 35px;
    min-width: 100px;
    border-radius: 20px;
}

.m-tag li a {
    display: block;
    padding: 10px 27px;
    color: #fff;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.075em;
    line-height: 1;
    pointer-events: none;
}  

.m-tag li a::after {
  content: '';
  pointer-events: auto;
}

/** リンクできるように変更 **/


.m-blue {
    color: #122a88;
}


.m-orange {
    color: #ff9416;
}

.m-strong {
    font-size: 35px;
    font-size: 3.5rem;
}

.m-small {
    font-size: 20px;
    font-size: 2rem;
}

.m-mv__fix {
  position: fixed;
  top: 110px;
  right: 30px;
  z-index: 10;
}

.m-mv__fix a {
    display: block;
}

.m-mv__fix a:hover {
    opacity: .9;
}

.m-mv__fix img {
  max-width: 100%;
}

.m-mv__sp span {
  display: none;
}

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  transition: .9s;
}

.fadeInUp {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

.lightbox_next {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    cursor: pointer;
}

.lightbox_next:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border-top: 4px solid #95979c;
    border-right: 4px solid #95979c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;
}

.lightbox_next:hover {
    opacity: .8;
}

.lightbox_prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 21px;
    height: 21px;
    cursor: pointer;
}

.lightbox_prev a,
.lightbox_next a {
  display: block;
  color: transparent!important;
}

.lightbox_prev:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border-bottom: 4px solid #95979c;
    border-left: 4px solid #95979c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    pointer-events: none;
}

.lightbox_prev:hover {
    opacity: .8;
}

@media screen and (max-width: 1260px){
  .m-mv__fix {
    right: -9px;
  }
}


@media screen and (max-width: 767px) {

  .m-tag-content {
    margin: 0 auto;
  }

  .lower_tag__head img {
      max-width: 100%;
  }

  .lower_tag__head {
      margin-top: 20px;
      width: 220px;
  }

  .m-tag-content .lower_tag__head {
      margin: 0 auto 10px;
  }

  .m-tag li {
    margin: 5px 2px;
    height: 24px;
    min-width: 70px;
  }

  .m-tag li a {
      font-size: 1.2rem;
      padding: 6px 10px;
  }

  .m-tag {
      margin: 10px auto 0;
      max-width: inherit;
      width: 90%;
  }



  .m-mv__fix {
      width: 100%;
      top: inherit;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: space-between;
  }

  .m-mv__fix a {
    padding: 10px 10%;
  }

  .m-mv__sp {
    width: 50%;
  }

  .m-mv__sp:first-child {
    text-align: right;
    background: rgba(248, 124, 10, 0.9);
  }

  .m-mv__sp:last-child {
    text-align: left;
    background: rgba(58, 160, 198, 0.9);
  }

  .m-mv__sp span {
    display: inline-block;
    vertical-align: middle;
    max-width: 140px;
    width: 90%;
  }

  .m-strong {
      font-size: 2rem;
  }

  .m-small {
    font-size: 1.4rem;
  }

}
