@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* 共通アニメーション
------------------------------ */
.animate {
  opacity: 0;
}

.fade-in {
  -webkit-animation: fade-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-right {
  -webkit-animation: fade-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in-bottom 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@-webkit-keyframes fade-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  -webkit-animation: fade-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
          animation: fade-in-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}
@-webkit-keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

section .contents {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}

section .contents2 {
  max-width: 1048px;
  margin: 0 auto;
  padding: 0 24px;
}

/* タイトル
-----------------------------------*/
.title-area {
  padding: 80px 0;
  background: linear-gradient(to right, #003774 0%, #FFF 100%);
}
@media (max-width: 767px) {
  .title-area {
    padding: 40px 0;
    background: #003774;
  }
}
.title-area .heading-title {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  color: #FFF;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .title-area .heading-title {
    padding: 0 24px;
    font-size: 32px;
  }
}
.title-area .heading-title span {
  display: block;
  margin-top: 16px;
  font-size: 21px;
}
@media (max-width: 767px) {
  .title-area .heading-title span {
    font-size: 18px;
  }
}

.heading01 {
  position: relative;
  margin: 128px 0 64px;
  padding-left: 24px;
  color: #003774;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 80px 0 40px;
    font-size: 28px;
  }
}
.heading01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background: #003774;
}
.heading01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 8px;
  height: 50%;
  background: #EA5514;
}

.heading02 {
  margin: 64px 0 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 18px;
  }
}

.heading03 {
  margin: 48px 0 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

.heading04 {
  margin: 32px 0 16px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 16px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  text-decoration: underline;
}

/* リンクボタン
-----------------------------------*/
.com-bt {
  display: inline-block;
  max-width: 240px;
  width: 100%;
  padding: 0 24px;
  border: 1px solid #003774;
  background: #003774;
  color: #FFF;
  font-weight: bold;
  line-height: 62px;
  text-align: center;
  transition: 0.5s all;
}
.com-bt:hover {
  background: #FFF;
  color: #003774;
  text-decoration: none;
}
@media (max-width: 767px) {
  .com-bt {
    max-width: 100%;
    line-height: 48px;
  }
}
.com-bt.other-link span {
  display: inline-block;
}
.com-bt.other-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url(/images/common/link_ic02.svg) no-repeat;
  background-size: 100% auto;
  transition: 0.5s all;
}
.com-bt.other-link:hover::after {
  background: url(/images/common/link_ic02-2.svg) no-repeat;
  background-size: 100% auto;
}

/* テーブル
-----------------------------------*/
.table {
  width: 100%;
  border-top: 1px solid #000;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 24px;
  border-bottom: 1px solid #000;
  color: #003774;
}
@media (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
    padding: 16px 0 0 0;
    border-bottom: none;
  }
}
.table td {
  padding: 24px;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .table td {
    display: block;
    width: 100%;
    padding: 8px 0 16px;
  }
}
.table td a {
  transition: 0.5s all;
}
.table td a.other-link::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background: url(/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}
.table td a:hover {
  opacity: 0.7;
  text-decoration: none;
}
/*# sourceMappingURL=common.css.map */