@charset "utf-8";

/* ============================================
  Reset
============================================ */
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a[class^='btn-'],
a img {
  opacity: 1;
  transition: opacity 300ms;
  text-decoration: none;
}

a[class^='btn-']:hover,
a:hover img {
  opacity: 0.65;
}

img[src$='.svg'] {
  width: 100%;
}

/* ============================================
  Base
============================================ */
html,
body,
.wrapper {
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
}

@media (min-width: 415px) and (max-width: 1500px) {
  body {
    font-size: 0.8vw;
  }
}

/* ============================================
  Device
============================================ */
@media (min-width: 415px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 414px) {
  .pc {
    display: none !important;
  }
}

/* ============================================
  Fonts
============================================ */
.f-din {
  font-family: 'din-condensed', sans-serif;
  font-weight: 300;
}

/* ============================================
  Wrapper
============================================ */
.wrapper {
  position: relative;
  padding: 78px 0 0 0;
}

@media (max-width: 414px) {
  .wrapper {
    padding-top: calc(78 / 414 * 100vw);
  }
}

/* ============================================
  Header
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 78px;
  padding: 10px 20px;
}

.header_logo {
  max-width: 211px;
  width: 14.066666666vw;
}

.header_logo > a {
  display: block;
}

.header_logo img {
  display: block;
  max-width: 100%;
}

.header_contact {
}

.header_contact > .btn {
  display: block;
  max-width: 196px;
  width: 13.066666666vw;
  font-size: 1.4rem;
  max-height: 46px;
  height: 3.066666666vw;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .header_contact > .btn {
    font-size: 0.933333333vw;
  }
}

@media (max-width: 414px) {
  .header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: calc(78 / 414 * 100vw);
    padding: calc(10 / 414 * 100vw);
  }

  .header_logo {
    width: calc(180 / 414 * 100vw);
  }

  .header_contact {
    display: none;
  }
}

/* ============================================
  SP MENU
============================================ */
.spMenu {
  position: absolute;
  top: 50%;
  right: calc(10 / 414 * 100vw);
  transform: translateY(-50%);
  width: calc(40 / 414 * 100vw);
  height: calc(30 / 414 * 100vw);
}

.spMenu span {
  display: block;
  background-color: #152267;
  position: absolute;
  transition: 300ms;
  width: 100%;
  height: 2px;
}

.spMenu span:nth-of-type(1) {
  animation: close-bar01 0.75s forwards;
}

.spMenu.active span:nth-of-type(1) {
  animation: open-bar01 0.75s forwards;
}

@keyframes close-bar01 {
  0% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  50% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(0);
  }
  100% {
    top: 0;
  }
}

@keyframes open-bar01 {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(0);
  }
  100% {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
}

.spMenu span:nth-of-type(2) {
  top: 50%;
  transform-origin: center center;
  width: 100%;
  margin-top: -1px;
}

.spMenu.active span:nth-of-type(2) {
  transform: scale(0);
}

.spMenu span:nth-of-type(3) {
  animation: close-bar03 0.75s forwards;
}

.spMenu.active span:nth-of-type(3) {
  animation: open-bar03 0.75s forwards;
}

@keyframes close-bar03 {
  0% {
    bottom: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  50% {
    bottom: 50%;
    margin-top: -1px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    margin-top: 0;
  }
}

@keyframes open-bar03 {
  0% {
    margin-top: 0;
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 50%;
    margin-top: -1px;
    transform: rotate(0);
  }
  100% {
    bottom: 50%;
    margin-top: -1px;
    transform: rotate(-45deg);
  }
}

/* ============================================
  Gnavi
============================================ */
.gnavi {
}

.gnaviList {
  display: flex;
  justify-content: space-between;
}

.gnaviList_item {
  position: relative;
}

.gnaviList_item:not(:first-child) {
  margin: 0 0 0 50px;
}

.gnaviList_item > a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #152267;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  width: 100%;
  height: 100%;
}

.gnaviList_item.current > a,
.gnaviList_item > a:hover {
  color: #207cc8;
  text-decoration: none;
}

.gnaviList_item:not(:first-child) > a {
  font-size: 1.8rem;
}

.gnaviList_item > a span {
  display: block;
  color: #656565;
  font-size: 1.2rem;
  font-weight: 300;
  margin: 5px 0 0;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .gnavi {
  }

  .gnaviList {
  }

  .gnaviList_item:not(:first-child) {
    margin: 0 0 0 3.333333333vw;
  }

  .gnaviList_item > a {
    font-size: 1.066666666vw;
  }

  .gnaviList_item:not(:first-child) > a {
    font-size: 1.2vw;
  }

  .gnaviList_item > a span {
    font-size: 0.8vw;
  }
}

@media (max-width: 414px) {
  .gnavi {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: scroll;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
  }

  .gnaviList {
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #bababa;
    border-bottom: 1px solid #bababa;
    height: auto;
  }

  .gnaviList_item:not(:first-child) {
    border-top: 1px solid #bababa;
    margin: 0;
  }

  .gnaviList_item > a {
    font-size: 1.6rem;
    padding: calc(15 / 414 * 100vw);
  }

  .gnaviList_item.current > a,
  .gnaviList_item > a:hover {
    color: #207cc8;
    text-decoration: none;
  }

  .gnaviList_item:not(:first-child) > a {
    font-size: 1.8rem;
  }

  .gnaviList_item.parents > a {
    position: relative;
    pointer-events: none;
  }

  .gnaviList_item.parents > a::before,
  .gnaviList_item.parents > a::after {
    content: '';
    background-color: #152267;
    position: absolute;
    top: 50%;
    right: calc(16 / 375 * 100vw);
    transform: translateY(-50%);
    transform-origin: center center;
  }

  .gnaviList_item.parents > a::before {
    animation: close-submenu01 500ms forwards;
    width: calc(20 / 375 * 100vw);
    height: 1px;
  }

  .gnaviList_item.parents.active > a::before {
    animation: open-submenu01 500ms forwards;
  }

  .gnaviList_item.parents > a::after {
    right: calc((16 + 10 - 0.5) / 375 * 100vw);
    animation: close-submenu02 500ms forwards;
    height: calc(20 / 375 * 100vw);
    width: 1px;
  }

  .gnaviList_item.parents.active > a::after {
    animation: open-submenu02 500ms forwards;
  }

  @keyframes open-submenu01 {
    0 {
      transform: translateY(-50%) scale(1, 1);
    }
    50% {
      transform: translateY(-50%) scale(0.1, 1);
    }
    100% {
      transform: translateY(-50%) scale(1, 1);
    }
  }
  @keyframes open-submenu02 {
    0 {
      transform: translateY(-50%) scale(1, 1);
      opacity: 1;
    }
    50% {
      transform: translateY(-50%) scale(1, 0.1);
      opacity: 0;
    }
    100% {
      transform: translateY(-50%) scale(1, 0.1);
      opacity: 0;
    }
  }
  @keyframes close-submenu01 {
    0 {
      transform: translateY(-50%) scale(1, 1);
    }
    50% {
      transform: translateY(-50%) scale(0.1, 1);
    }
    100% {
      transform: translateY(-50%) scale(1, 1);
    }
  }
  @keyframes close-submenu02 {
    0 {
      transform: translateY(-50%) scale(1, 0.1);
      opacity: 0;
    }
    50% {
      transform: translateY(-50%) scale(1, 0.1);
      opacity: 0;
    }
    100% {
      transform: translateY(-50%) scale(1, 1);
      opacity: 1;
    }
  }

  .gnaviList_item > a span {
    display: block;
    color: #656565;
    font-size: 1.2rem;
    font-weight: 300;
    margin: calc(5 / 414 * 100vw) 0 0;
  }
}

/* ============================================
  サブメニュー
============================================ */
.submenuList_item {
  background-color: #fff;
}

.submenuList_item > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #152267;
  line-height: 1;
  font-weight: 500;
  width: 100%;
  height: 100%;
}

.submenuList_item .inner {
  position: relative;
  text-align: center;
}

.submenuList_item span {
  display: block;
  color: #656565;
  font-weight: 300;
}

@media (min-width: 415px) {
  .submenuList {
    position: absolute;
    top: 100%;
    left: 50%;
    transition: opacity 500ms;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    width: 250px;
    padding-top: 21.5px;
  }

  .submenuList.active {
    transform: translateX(-50%);
    pointer-events: auto;
    opacity: 1;
  }

  .submenuList::before {
    content: '';
    display: block;
    position: absolute;
    top: calc(21.5px - 4px);
    left: 50%;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #2b7dd2, #58549f);
    transition: 500ms;
    width: 0;
    height: 4px;
  }

  .submenuList.active::before {
    width: 90px;
  }

  .submenuList_item {
    border: 1px solid #e8ebed;
    width: 100%;
    height: 60px;
  }

  .submenuList_item > a {
    font-size: 1.6rem;
  }

  .submenuList_item > a:hover {
    color: #207cc8;
    text-decoration: none;
  }

  .submenuList_item span {
    font-size: 1.2rem;
    margin: 5px 0 0;
  }
}

@media (min-width: 415px) and (max-width: 1500px) {
  .submenuList {
    width: calc(250 / 1500 * 100vw);
    padding-top: calc(21.5 / 1500 * 100vw);
  }
  .submenuList::before {
    top: calc((21.5 / 1500 * 100vw) - (4 / 1500 * 100vw));
    height: calc(4 / 1500 * 100vw);
  }
  .submenuList.active::before {
    width: calc(90 / 1500 * 100vw);
  }

  .submenuList_item {
    height: calc(60 / 1500 * 100vw);
  }

  .submenuList_item > a {
    font-size: calc(16 / 1500 * 100vw);
  }
  .submenuList_item span {
    font-size: calc(12 / 1500 * 100vw);
    margin-top: calc(5 / 1500 * 100vw);
  }
}

@media (max-width: 414px) {
  .submenuList {
    display: none;
  }

  .submenuList_item > a {
    position: relative;
    font-size: 1.8rem;
    padding: calc(15 / 414 * 100vw);
  }

  .submenuList_item > a::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ececee;
    width: calc(316 / 375 * 100%);
    height: calc(28 / 375 * 100vw);
  }

  .submenuList_item .inner {
    background-color: #fff;
    padding: calc(10 / 414 * 100vw) calc(24 / 414 * 100vw);
  }

  .submenuList_item span {
    font-size: 1.2rem;
    margin: calc(5 / 414 * 100vw) 0 0;
  }
}

/* ============================================
  Footer
============================================ */
.footer {
  border-top: 50px solid #152267;
  padding: 0 20px 15px;
}

.footer > .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer .inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer .flex-contents{
  display: flex;
  align-items: center;
}

.footer .flex-contents a{
  margin-right: 20px;
  font-size: 14px;
  color: #0070c0;
}

@media (max-width: 767px) {
  .footer .flex-contents a{
    margin-top: calc(20/414*100vw);
  }
}

@media (min-width: 415px) and (max-width: 1500px) {
  .footer {
    border-top-width: 3.333333333vw;
  }
}
@media (max-width: 414px) {
  .footer {
    border-top-width: calc(25 / 414 * 100vw);
    padding: 0 calc(20 / 414 * 100vw) calc(15 / 414 * 100vw);
  }

  .footer .inner-flex {
    flex-direction: column;
    align-items: center;
  }
}

/* フッターナビ */
.fnavi {
  padding: 40px 0;
}

.fnaviList {
  display: flex;
  justify-content: center;
}

.fnaviList_item {
  color: #152267;
  font-size: 1.4rem;
}

.fnaviList_item + .fnaviList_item {
  margin: 0 0 0 50px;
}


@media (min-width: 415px) and (max-width: 1500px) {
  .fnavi {
    padding: 2.666666666vw 0;
  }

  .fnaviList_item {
    font-size: 0.933333333vw;
  }

  .fnaviList_item + .fnaviList_item {
    margin: 0 0 0 3.333333333vw;
  }
}
@media (max-width: 414px) {
  .fnavi {
    padding: calc(30 / 414 * 100vw) 0;
  }

  .fnaviList {
    justify-content: space-between;
  }

  .fnaviList_item {
    font-size: 1.4rem;
  }

  .fnaviList_item + .fnaviList_item {
    margin: 0 0 0 auto;
  }
}

/* 会社情報 */
.companyInfo {
  color: #505050;
}

.companyInfo dt {
  font-size: 1.8rem;
  font-weight: 500;
}

.companyInfo dd {
  display: flex;
  font-size: 1.6rem;
  font-weight: 100;
  margin: 15px 0 0 0;
}

.companyInfo dd p + p {
  margin: 0 0 0 55px;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .companyInfo dt {
    font-size: 1.2vw;
  }

  .companyInfo dd {
    font-size: 1.066666666vw;
    margin: 1vw 0 0 0;
  }

  .companyInfo dd p + p {
    margin: 0 0 0 3.666666666vw;
  }
}
@media (max-width: 414px) {
  .companyInfo {
    text-align: center;
  }

  .companyInfo dt {
    font-size: 1.6rem;
    font-weight: 300;
  }

  .companyInfo dd {
    font-size: 1.2rem;
    font-weight: 100;
    margin: calc(20 / 414 * 100vw) 0 0 0;
  }

  .companyInfo dd p + p {
    margin: calc(20 / 414 * 100vw) 0 0 0;
  }
}

/* SNSリスト */
.snsList {
  display: flex;
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 1 1 auto;
}

.snsList_item {
  position: relative;
  overflow: hidden;
  max-width: 45px;
  width: 3vw;
  height: auto;
}

.snsList_item::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.snsList_item + .snsList_item {
  margin: 0 0 0 15px;
}

.snsList_item > a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #919191;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

@media (min-width: 415px) and (max-width: 2500px) {
  .snsList_item + .snsList_item {
    margin: 0 0 0 1vw;
  }

  .snsList_item .rss {
    width: 1.066666666vw;
  }
  .snsList_item .facebook {
    width: 0.5866666666vw;
  }
  .snsList_item .twitter {
    width: 1.177333333333vw;
  }
}
@media (max-width: 414px) {
  .snsList {
    justify-content: center;
    align-items: flex-start;
    margin-top: calc(30 / 414 * 100vw);
  }

  .snsList_item {
    width: calc(45 / 414 * 100vw);
  }

  .snsList_item img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .snsList_item + .snsList_item {
    margin: 0 0 0 calc(30 / 414 * 100vw);
  }
}

/* コピーライト */
.copyright {
  display: block;
  font-size: 1.4rem;
  font-weight: 100;
  text-align: right;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .copyright {
    font-size: 0.933333333vw;
  }
}
@media (max-width: 414px) {
  .copyright {
    font-size: 1.1rem;
    font-weight: 100;
    text-align: center;
    margin-top: calc(20/414*100vw);
  }
}

/* ============================================
  Common
============================================ */
.btn-arrow01 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgba(0, 100, 201, 1) 0%, rgba(33, 26, 126, 1) 100%);
  color: #fff;
  width: 100%;
  height: 100%;
}

.btn-arrow01::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 6px;
  height: 6px;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .btn-arrow01::after {
    right: 1vw;
    width: 0.4vw;
    height: 0.4vw;
  }
}

@media (max-width: 414px) {
  .btn-arrow01::after {
    right: calc(15 / 414 * 100vw);
    width: calc(6 / 414 * 100vw);
    height: calc(6 / 414 * 100vw);
  }
}

.btn-arrow02 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* background: url(../img/common/ico_arrow01.svg) no-repeat top 50% right 15px; */
  color: #152267;
  border: 1px solid #152267;
  width: 100%;
  height: 100%;
}

.btn-arrow02::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #152267;
  border-right: 1px solid #152267;
  width: 6px;
  height: 6px;
}

@media (min-width: 415px) and (max-width: 1500px) {
  .btn-arrow02::after {
    right: 1vw;
    width: 0.4vw;
    height: 0.4vw;
  }
}

@media (max-width: 414px) {
  .btn-arrow02::after {
    right: calc(15 / 414 * 100vw);
    width: calc(6 / 414 * 100vw);
    height: calc(6 / 414 * 100vw);
  }
}

.column {
  display: flex;
}

.column_item {
}

/*******************************
 JS
*******************************/
.animated {
  opacity: 0;
  animation-duration: 1000ms;
  animation-delay: 400ms;
}

/* ============================================
  Body
============================================ */
.body {
  position: static;
  width: 100%;
}
.contents {
  position: relative;
  width: 100%;
}

/* ============================================
  Section
============================================ */
.section {
  position: relative;
}

.section > .inner {
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

@media (max-width: 1300px) {
  .section > .inner {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .section > .inner {
    padding: 0 calc(20 / 414 * 100vw);
  }
}

/* ============================================
  PAGETOP
============================================ */
.pagetop {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  right: 2.5%;
  transform: translateY(70px);
  z-index: 98;
  background-color: #fff;
  border: 1px solid #207cc8;
  border-radius: 50%;
  opacity: 0;
  transition: 500ms;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-bottom: -50px;
}

.pagetop::before {
  display: block;
  content: '';
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 2px solid #207cc8;
  border-right: none;
  border-bottom: none;
  width: 15px;
  height: 15px;
  margin-bottom: 0;
}

.pagetop.js-is-sticky--change {
  transform: translateY(0);
  opacity: 1;
}

.pagetop.js-is-stuck {
  transform: translateY(-25px);
  opacity: 1;
}

@media (max-width: 1300px) {
  .pagetop {
    right: 10px;
  }
}

@media (max-width: 414px) {
  .pagetop {
  }
}

.pc {
	display: block;
}
.sp {
	display: none;
}

@media (max-width: 767px) {
  .pc {
  	display: none;
  }
  .sp {
  	display: block;
  }
}
