@charset "utf-8";

/*------------------------------
  変数
------------------------------*/

:root {
  --corporate-color: #085196;
}

/*------------------------------
  ベース
------------------------------*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

a {
  transition-property: opacity;
  transition-duration: 0.2s;
}

a:hover {
  opacity: 0.6
}

figure {
  margin: 0;
}

.contents {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

/*------------------------------------------------------------
  レイアウト
------------------------------------------------------------*/

/*------------------------------
  ヘッダー
------------------------------*/

.layout_header {
  position: fixed !important;
  z-index: 1000;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  padding: 2em 5em 2em 4em;
  transition: background-color .3s, padding .3s;
}

@media screen and (max-width: 767px) {
  .layout_header {
    padding: 0 !important;
  }
}

.layout_header.fixed,
.layout_header.isLower {
  display: flex;
  align-items: center;
  height: 65px;
  padding: 0 15px;
  background-color: #041023;
}

@media screen and (max-width: 767px) {
  .layout_header.fixed,
  .layout_header.isLower {
    height: 40px;
  }
}

.layout_header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .layout_header__inner {
    justify-content: space-between;
    align-items: flex-start;
  }
}

.fixed .layout_header__inner {
  align-items: center;
}

.layout_header__logo {
  padding: 8px;
}

.layout_header__logo img {
  width: 120px;
}

.layout_header.fixed .layout_header__logo img,
.layout_header.isLower .layout_header__logo img {
  width: 60px;
}

@media screen and (max-width: 770px) {
  .layout_header__logo {
    max-width: 10vw;
  }

  .layout_header__logo img {
    width: 60px;
  }
}

.layout_header__navList {
  display: flex;
}

.layout_header__navList a {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 767px) {
  .layout_header .gnavi {
    position: fixed;
    margin: 0 auto;
    right: auto;
    left: auto;
    top: 30vw;
    display: none;
    width: 100vw;
    padding: 0 10vw;
    box-sizing: border-box;
  }

  .layout_header.active .gnavi {
    display: block;
  }
}

.gnavi {
  line-height: 1;
  margin-left: auto;
}

.gnavi li {
  position: relative;
}

.gnavi li::after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: .8em;
  background-color: #707070;
  top: 0;
  right: 0;
  bottom: 6px;
  transform: rotate(15deg);
}

.gnavi li:last-of-type::after {
  display: none;
}

.gnavi li a {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  width: 100%;
  padding: 0 1.8em;
}

@media screen and (max-width: 767px) {
  .gnavi ul {
    flex-direction: column;
    max-width: 16em;
    margin: 0 auto;
  }

  .gnavi li {
    width: 100%;
  }

  .gnavi li a {
    display: flex;
    gap: 5px;
    font-size: 1.6rem;
    margin-bottom: 2em;
  }

  .gnavi li::after {
    display: none;
  }
}

#layer {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 19, 31, .96);
}

@media screen and (max-width: 767px) {
  .sp.menu {
    position: relative;
    align-items: stretch;
    border-radius: 0 0 0 10px;
    display: inline-block;
    z-index: 3;
    background-color: #085196;
  }

  .layout_header.fixed .sp.menu,
  .layout_header.isLower .sp.menu {
    background-color: transparent;
  }

  .sp.menu .button {
    position: relative;
    z-index: 1100;
    width: 11px;
    height: 11px;
    margin: 14px;
  }

  .sp.menu .button .line {
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .3s;
  }

  .sp.menu .button .line:nth-of-type(1) {
    top: 0;
  }

  .sp.menu .button .line:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }

  .sp.menu .button .line:nth-of-type(3) {
    bottom: 0;
  }

  .layout_header.active .sp.menu .button .line:nth-of-type(1) {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .layout_header.active .sp.menu .button .line:nth-of-type(2) {
    opacity: 0;
  }

  .layout_header.active .sp.menu .button .line:nth-of-type(3) {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .layout_header.active+#layer {
    display: block;
  }
}

/*------------------------------
  下層
------------------------------*/

.layout_lower {
  padding: 65px 0;
}

@media (max-width: 767px) {
  .layout_lower {
    padding: 40px 0;
  }
}

.layout_lower__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px 0 15px;
}

.layout_lower__main p {
  font-size: 1.6rem;
  line-height: 1.75;
  word-break: auto-phrase;
}

@media (max-width: 767px) {
  .layout_lower__main p {
    font-size: 1.4rem;
  }
}

.layout_lower__mainHeading {
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1.75;
  border-bottom: 1px solid var(--corporate-color);
}

/*------------------------------
  パンくず
------------------------------*/

.layout_breadcrumb {
  background-color: #F6F6F6;
}

.layout_breadcrumb__list {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  height: 40px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .layout_breadcrumb__list {
    font-size: 1.2rem;
  }
}

/*------------------------------
  フッター
------------------------------*/

.layout_footer {
  padding: 85px 0;
}

@media (max-width: 767px) {
  .layout_footer {
    padding: 40px 0;
  }
}

.layout_footer__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.layout_footer__marks {
  display: flex;
  gap: 10px;
}

@media (max-width: 767px) {
  .layout_footer__marks {
    justify-content: center;
  }
}

.layout_footer__isms {
  width: 140px;
  font-size: 1.0rem;
  letter-spacing: .02em;
  line-height: 1.75;
  word-break: auto-phrase;
}

.layout_footer__isms img {
  width: 100%;
}

.layout_footer__pmark {
  width: 80px;
}

.layout_footer__pmark img {
  width: 100%;
}

.layout_footer__linksWrapper {
  display: flex;
}

@media (min-width: 768px) {
  .layout_footer__linksWrapper {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .layout_footer__linksWrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}

.layout_footer__copyright {
  font-size: 1.4rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .layout_footer__copyright {
    font-size: 1.2rem;
  }
}

.layout_footer__links {
  display: flex;
  gap: 20px;
}

@media (max-width: 767px) {
  .layout_footer__links {
    flex-direction: column;
    align-items: center;
  }
}

.layout_footer__links a {
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: underline;
}

/*------------------------------------------------------------
  汎用
------------------------------------------------------------*/

.common_buttonWrapper {
  display: flex;
  justify-content: flex-start;
}

.common_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  font-size: 1.4rem;
  color: #FFF;
  line-height: 1.5;
  border-radius: 6px;
  background: var(--corporate-color);
  cursor: pointer;
}
