@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box; }

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

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer; }

figure {
  margin: 0; }

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0; }

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit; }

p {
  margin: 0; }

cite {
  font-style: normal; }

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0; }

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%; }
  @media screen and (max-width: 767px) {
    html {
      font-size: calc(1000vw / 384); } }

body {
  color: #000000;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0; }
  @media screen and (max-width: 767px) {
    body {
      min-width: 0;
      font-size: 1.4rem; } }

a:link {
  text-decoration: none; }
a:visited {
  text-decoration: none; }
a:hover {
  text-decoration: none; }
a:active {
  text-decoration: none; }

a {
  transition: .3s; }
  a img {
    transition: .3s; }
    a img:hover {
      opacity: .8; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

@media (min-width: 1023px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none; } }
input:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus::-moz-placeholder {
  color: transparent; }

input:focus::-ms-input-placeholder {
  color: transparent; }

input:focus::placeholder {
  color: transparent; }

/* header
------------------------------------ */
body {
  padding-top: 85px; }
  @media screen and (max-width: 767px) {
    body {
      padding-top: 0; } }

#header {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 110; }
  #header::after {
    content: "";
    width: calc(100% - 7vw);
    height: 10px;
    background: linear-gradient(to bottom, #081539 0%, rgba(8, 21, 57, 0) 100%);
    position: absolute;
    left: 0;
    bottom: -10px;
    opacity: 0.07;
    z-index: 1; }
  #header .logo {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    transition: 0.3s; }
    #header .logo a {
      width: 190px;
      height: 160px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center; }
  #header > nav {
    display: flex;
    justify-content: flex-end;
    margin: 0 7vw 0 190px; }
    #header > nav .gnav {
      height: 85px;
      display: flex;
      align-items: center;
      background: #fff; }
      #header > nav .gnav > li {
        height: 100%; }
        #header > nav .gnav > li > a {
          display: flex;
          height: 100%;
          justify-content: center;
          align-items: center;
          padding: 0 1.78vw;
          font-size: 1.6rem;
          font-weight: 500;
          color: #333; }
          #header > nav .gnav > li > a.current {
            background: #0f286c;
            color: #fff; }
        #header > nav .gnav > li > div {
          position: absolute;
          left: 0;
          width: 100%;
          background: #0f286c;
          padding: 40px 7vw 0;
          display: flex;
          justify-content: space-between;
          align-items: center;
          opacity: 0;
          visibility: hidden;
          transform: translateX(-100%);
          transition: opacity 0.3s, visibility 0.3s, transform 0.1s linear 0.3s;
          z-index: 2; }
          #header > nav .gnav > li > div h2 {
            font-size: 2.6rem;
            font-weight: 700;
            width: 30%;
            text-align: center;
            position: relative;
            padding: 20px 0;
            color: #fff;
            line-height: 1.4;
            position: relative; }
            #header > nav .gnav > li > div h2 .en {
              font-family: "Oswald", sans-serif;
              font-size: 1.4rem;
              font-weight: 400;
              color: #a6abbf;
              display: block; }
            #header > nav .gnav > li > div h2::before, #header > nav .gnav > li > div h2::after {
              content: "";
              width: 50px;
              height: 1px;
              background: #df8833;
              position: absolute; }
            #header > nav .gnav > li > div h2::before {
              top: 10px;
              left: 1.42vw; }
            #header > nav .gnav > li > div h2::after {
              top: 0;
              left: 2.14vw;
              transform: rotate(90deg);
              transform-origin: 0 0;
              background: #fff; }
          @media screen and (max-width: 1280px) {
            #header > nav .gnav > li > div {
              padding-left: 15px;
              padding-right: 15px; } }
          #header > nav .gnav > li > div > ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-right: 20px;
            width: 66.6%; }
            #header > nav .gnav > li > div > ul::after {
              content: "";
              width: 30%;
              height: 0; }
            #header > nav .gnav > li > div > ul > li {
              width: 30%;
              font-size: 1.6rem;
              margin-bottom: 40px; }
              #header > nav .gnav > li > div > ul > li.long {
                width: 65%; }
              #header > nav .gnav > li > div > ul > li p {
                margin-top: 10px;
                letter-spacing: -0.02em; }
              #header > nav .gnav > li > div > ul > li a {
                color: #fff;
                display: block; }
        #header > nav .gnav > li:hover > a {
          background: #0f286c;
          color: #fff; }
        #header > nav .gnav > li:hover > div {
          opacity: 1;
          visibility: visible;
          transform: translateX(0);
          transition: opacity 0.3s, visibility 0.3s, transform 0s; }
    #header > nav .btn_menu {
      margin-left: 10px; }
  #header.fixed .logo {
    left: 27px; }
    #header.fixed .logo a {
      width: 101px;
      height: 85px; }
  @media screen and (max-width: 1024px) {
    #header::after {
      width: calc(100% - 4vw); }
    #header > nav {
      margin: 0 4vw 0 190px; }
      #header > nav .gnav {
        display: none; } }
  @media screen and (max-width: 767px) {
    #header {
      position: static;
      background: none; }
      #header::after {
        display: none; }
      #header .logo {
        position: absolute; }
        #header .logo a {
          width: 9.5rem;
          height: 8rem; }
          #header .logo a img {
            width: 7.3rem;
            height: 5.2rem; }
      #header > nav {
        margin: 0; }
        #header > nav .btn_menu {
          margin-left: 0;
          position: absolute;
          right: 0;
          top: 0;
          z-index: 10; }
      #header.fixed .logo {
        left: 0; }
        #header.fixed .logo a {
          width: 9.5rem;
          height: 8rem; } }

/* menu
------------------------------------ */
.btn_menu {
  width: 64px;
  height: 85px;
  position: relative;
  background: #0f286c;
  cursor: pointer; }
  .btn_menu .btn_cover {
    position: relative;
    height: 100%; }
    .btn_menu .btn_cover p {
      padding-top: 27%;
      text-align: center;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.1em;
      font-family: 'Oswald', sans-serif;
      color: #fff; }
      .btn_menu .btn_cover p span {
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.3s; }
        .btn_menu .btn_cover p span:nth-child(2) {
          visibility: hidden;
          opacity: 0; }
    .btn_menu .btn_cover > div {
      position: absolute;
      width: 56%;
      height: 24%;
      top: 46%;
      left: 20%; }
      .btn_menu .btn_cover > div > span {
        display: block;
        height: 1px;
        position: absolute;
        right: 0;
        background: #fff;
        transition: 0.3s; }
        .btn_menu .btn_cover > div > span:nth-child(1) {
          width: 100%;
          top: 0; }
        .btn_menu .btn_cover > div > span:nth-child(2) {
          width: 69.4%;
          top: 50%;
          margin-top: -1px; }
        .btn_menu .btn_cover > div > span:nth-child(3) {
          width: 55.5%;
          bottom: 0; }
  .js-menuOpen .btn_menu {
    background: #00113f; }
    .js-menuOpen .btn_menu .btn_cover p span:nth-child(1) {
      visibility: hidden;
      opacity: 0; }
    .js-menuOpen .btn_menu .btn_cover p span:nth-child(2) {
      visibility: visible;
      opacity: 1; }
    .js-menuOpen .btn_menu .btn_cover > div {
      left: 50%;
      transform: translateX(-50%); }
      .js-menuOpen .btn_menu .btn_cover > div > span:nth-child(1) {
        top: 50%;
        transform: rotate(-150deg); }
      .js-menuOpen .btn_menu .btn_cover > div > span:nth-child(2) {
        width: 100%;
        transform: rotate(150deg);
        opacity: 0; }
      .js-menuOpen .btn_menu .btn_cover > div > span:nth-child(3) {
        width: 100%;
        bottom: auto;
        top: 50%;
        transform: rotate(150deg); }
  @media screen and (max-width: 767px) {
    .btn_menu {
      background: rgba(15, 40, 108, 0.9);
      height: 8rem; }
      .btn_menu .btn_cover p {
        padding-top: 20%; }
      .btn_menu .btn_cover > div {
        top: 50%; } }

#menuContainer {
  position: fixed;
  width: calc(100% - 7vw);
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 110; }
  #menuContainer .btn_menu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 110; }
    #menuContainer .btn_menu.none {
      display: none; }
  #menuContainer .menu {
    width: 100%;
    height: 100%;
    background: #00113f;
    padding: 175px 0 0 14%;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s; }
    #menuContainer .menu .logo {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 100;
      visibility: hidden;
      opacity: 0;
      transition: 0.2s; }
      #menuContainer .menu .logo a {
        width: 190px;
        height: 160px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center; }
    #menuContainer .menu section h1 .category,
    #menuContainer .menu section h2 .category {
      margin: 0 0 5px 30px;
      font-size: 1.4rem;
      font-family: "Oswald", sans-serif;
      color: #50a6d8;
      display: block; }
    #menuContainer .menu section h1 > a,
    #menuContainer .menu section h2 > a {
      font-size: 2.4rem;
      line-height: 1.3;
      display: inline-block;
      padding-left: 30px;
      position: relative;
      color: #fff; }
      #menuContainer .menu section h1 > a:hover,
      #menuContainer .menu section h2 > a:hover {
        opacity: 0.8; }
      #menuContainer .menu section h1 > a::before,
      #menuContainer .menu section h2 > a::before {
        content: "";
        width: 10px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 16px; }
      #menuContainer .menu section h1 > a span,
      #menuContainer .menu section h2 > a span {
        display: inline-block;
        font-size: 1.6rem;
        margin-left: 10px; }
    #menuContainer .menu section h1 a span {
      font-size: 2.4rem; }
    #menuContainer .menu section ul {
      margin: 20px 0 0 30px; }
      #menuContainer .menu section ul li {
        margin-bottom: 10px; }
        #menuContainer .menu section ul li a {
          font-size: 1.6rem;
          display: inline-block;
          padding-left: 15px;
          position: relative;
          color: #fff; }
          #menuContainer .menu section ul li a:hover {
            opacity: 0.8; }
          #menuContainer .menu section ul li a::before {
            content: "";
            width: 6px;
            height: 1px;
            background: #50a6d8;
            position: absolute;
            left: 0;
            top: 13px; }
    #menuContainer .menu .lower {
      display: flex;
      flex-wrap: wrap;
      padding: 50px 0 0 30px;
      width: calc(100% - 64px); }
      #menuContainer .menu .lower > * {
        margin-bottom: 40px;
        padding-right: 15px; }
        #menuContainer .menu .lower > *:nth-child(3n + 1) {
          width: 37%; }
        #menuContainer .menu .lower > *:nth-child(3n + 2) {
          width: 37%; }
        #menuContainer .menu .lower > *:nth-child(3n + 3) {
          width: 26%; }
        #menuContainer .menu .lower > *.column2 {
          width: 74%;
          display: flex;
          justify-content: space-between; }
          #menuContainer .menu .lower > *.column2 > * {
            width: 50%; }
    @media screen and (max-width: 1280px) {
      #menuContainer .menu {
        padding-left: 15px; }
        #menuContainer .menu .lower {
          padding-left: 15px; }
          #menuContainer .menu .lower > * {
            padding-right: 5px; } }
  .js-menuOpen #menuContainer {
    visibility: visible; }
    .js-menuOpen #menuContainer .menu {
      transform: translateX(0); }
      .js-menuOpen #menuContainer .menu .logo {
        transition-delay: 0.1s;
        visibility: visible;
        opacity: 1; }
  @media screen and (max-width: 1024px) {
    #menuContainer {
      width: calc(100% - 4vw); }
      #menuContainer .menu section h1 {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%); }
      #menuContainer .menu section h2 > a {
        font-size: 2.2rem; }
        #menuContainer .menu section h2 > a span {
          font-size: 1.4rem; }
      #menuContainer .menu section ul li a {
        font-size: 1.5rem; }
      #menuContainer .menu .lower > * {
        margin-bottom: 40px;
        padding-right: 15px; }
        #menuContainer .menu .lower > *:nth-child(3n + 1) {
          width: 50%; }
        #menuContainer .menu .lower > *:nth-child(3n + 2) {
          width: 50%; }
        #menuContainer .menu .lower > *:nth-child(3n + 3) {
          width: 50%; }
        #menuContainer .menu .lower > *.column2 {
          width: 50%;
          display: block; }
          #menuContainer .menu .lower > *.column2 > * {
            width: auto;
            margin-bottom: 50px; } }
  @media screen and (max-width: 767px) {
    #menuContainer {
      width: 100%; }
      #menuContainer .menu {
        width: 100%;
        height: 100%;
        padding: 11.8rem 1.5rem 6rem 1.5rem;
        position: relative; }
        #menuContainer .menu .logo a {
          width: 9.5rem;
          height: 8rem; }
          #menuContainer .menu .logo a img {
            width: 7.3rem;
            height: 5.2rem; }
        #menuContainer .menu section h1 .category,
        #menuContainer .menu section h2 .category {
          margin: 0 0 0.5rem 0;
          font-size: 1rem; }
        #menuContainer .menu section h1 > a,
        #menuContainer .menu section h2 > a {
          font-size: 1.9rem;
          padding-left: 0; }
          #menuContainer .menu section h1 > a::before,
          #menuContainer .menu section h2 > a::before {
            width: 0.5rem;
            height: 1px;
            left: -1.5rem;
            top: 1.2rem; }
          #menuContainer .menu section h1 > a span,
          #menuContainer .menu section h2 > a span {
            font-size: 1.3rem;
            margin-left: 0.5rem; }
        #menuContainer .menu section h1 {
          top: 1.8rem; }
        #menuContainer .menu section ul {
          margin: 1rem 0 0 0; }
          #menuContainer .menu section ul li {
            margin-bottom: 1rem; }
            #menuContainer .menu section ul li a {
              font-size: 1.4rem;
              padding-left: 1rem; }
              #menuContainer .menu section ul li a::before {
                width: 0.3rem;
                top: 1.1rem;
                left: 0; }
        #menuContainer .menu .lower {
          display: block;
          padding: 0;
          width: 30rem;
          margin: 0 auto; }
          #menuContainer .menu .lower > * {
            padding: 2rem 0 0 3rem;
            margin: 2rem 0 0 0;
            border-top: solid 1px #a6abbf; }
            #menuContainer .menu .lower > *:nth-child(3n + 1) {
              width: 100%; }
            #menuContainer .menu .lower > *:nth-child(3n + 2) {
              width: 100%; }
            #menuContainer .menu .lower > *:nth-child(3n + 3) {
              width: 100%; }
            #menuContainer .menu .lower > *.column2 {
              width: 100%; }
              #menuContainer .menu .lower > *.column2 > * {
                margin-bottom: 2rem; } }

/* contents
------------------------------------ */
#contents {
  margin-top: 70px;
  padding: 0 7vw 100px 7vw;
  position: relative;
  max-width: 1400px;
  margin: 70px auto 0;
  box-sizing: content-box; }
  #contents.column2 article {
    width: 62vw;
    max-width: 950px; }
  #contents.column2 #sidebar {
    width: 27.14vw;
    max-width: 380px;
    position: absolute;
    top: 0;
    right: 0;
    padding-bottom: 50px; }
    #contents.column2 #sidebar.fixed {
      position: fixed;
      top: 85px; }
    #contents.column2 #sidebar.bottom {
      position: absolute;
      top: auto;
      bottom: 0; }
    #contents.column2 #sidebar .lnav {
      border-left: solid 1px #dee0e6;
      border-bottom: solid 1px #dee0e6;
      line-height: 1.3;
      background: #fff;
      position: relative; }
      #contents.column2 #sidebar .lnav::after {
        content: "";
        width: 100%;
        height: 10px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
        position: absolute;
        left: 0;
        bottom: -10px; }
      #contents.column2 #sidebar .lnav dt {
        background: #0c1f55;
        font-size: 1.8rem;
        color: #fff;
        height: 80px;
        display: flex;
        align-items: center;
        padding: 0 5px 0 30px;
        position: relative;
        margin-left: -1px;
        margin-bottom: 10px; }
      #contents.column2 #sidebar .lnav dd {
        margin-bottom: 1px; }
        #contents.column2 #sidebar .lnav dd > a {
          display: block;
          padding: 15px 5px 15px 29px;
          color: #0f286c;
          position: relative;
          text-decoration: none; }
        #contents.column2 #sidebar .lnav dd > .subCategory {
          display: block;
          padding: 15px 5px 15px 29px;
          color: #0f286c;
          position: relative;
          text-decoration: none; }
        #contents.column2 #sidebar .lnav dd ul {
          margin: 0 0 0 29px;
          line-height: 0;
          transition: 0.2s; }
          #contents.column2 #sidebar .lnav dd ul li {
            margin-bottom: 0;
            font-size: 1.4rem; }
            #contents.column2 #sidebar .lnav dd ul li a {
              line-height: 0;
              display: inline-block;
              padding-left: 18px;
              position: relative;
              color: #0f286c;
              text-decoration: none;
              visibility: hidden;
              opacity: 0;
              transition: 0.2s; }
              #contents.column2 #sidebar .lnav dd ul li a::before {
                content: "";
                width: 6px;
                height: 1px;
                background: #0c1f55;
                position: absolute;
                left: 0;
                top: 9px; }
              #contents.column2 #sidebar .lnav dd ul li a:hover {
                opacity: 0.9; }
              #contents.column2 #sidebar .lnav dd ul li a.current {
                font-weight: 700; }
        #contents.column2 #sidebar .lnav dd:hover > a, #contents.column2 #sidebar .lnav dd.current > a {
          background: #f3f4f6; }
          #contents.column2 #sidebar .lnav dd:hover > a::before, #contents.column2 #sidebar .lnav dd.current > a::before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5.5px 0 5.5px 5px;
            border-color: transparent transparent transparent #0c1f55;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
        #contents.column2 #sidebar .lnav dd:hover > span, #contents.column2 #sidebar .lnav dd.current > span {
          background: #f3f4f6; }
          #contents.column2 #sidebar .lnav dd:hover > span::before, #contents.column2 #sidebar .lnav dd.current > span::before {
            content: "";
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 5.5px 0 5.5px 5px;
            border-color: transparent transparent transparent #0c1f55;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%); }
        #contents.column2 #sidebar .lnav dd:hover ul, #contents.column2 #sidebar .lnav dd.current ul {
          line-height: 1.3;
          margin-top: 20px;
          transition: 0.3s; }
          #contents.column2 #sidebar .lnav dd:hover ul li, #contents.column2 #sidebar .lnav dd.current ul li {
            margin-bottom: 20px; }
            #contents.column2 #sidebar .lnav dd:hover ul li a, #contents.column2 #sidebar .lnav dd.current ul li a {
              line-height: 1.3;
              visibility: visible;
              opacity: 1;
              transition: 0.3s; }
    #contents.column2 #sidebar .linkbtn {
      margin-top: 2rem; }
  @media screen and (min-width: calc(1400px + 14vw)) {
    #contents {
      box-sizing: border-box;
      padding: 0 0 100px 0; }
      #contents.column2 #sidebar.fixed {
        margin-right: calc((100% - 1400px) / 2); }
      #contents.column2 #sidebar .lnav {
        border-right: solid 1px #dee0e6; }
      #contents.full {
        max-width: 1200px; } }
  @media screen and (max-width: 1024px) {
    #contents {
      padding: 0 4vw 100px 4vw; }
      #contents.column2 article {
        width: 65vw; }
      #contents.full {
        margin: 70px 0 0;
        overflow: hidden; } }
  @media screen and (max-width: 767px) {
    #contents {
      margin-top: 3rem;
      padding: 0 1.5rem 5rem 1.5rem; }
      #contents.column2 article {
        width: auto; }
      #contents.column2 #sidebar {
        width: auto;
        position: static;
        margin-top: 2.5rem; }
        #contents.column2 #sidebar.fixed {
          position: static; }
        #contents.column2 #sidebar.bottom {
          position: static; }
        #contents.column2 #sidebar .lnav {
          border-right: solid 1px #dee0e6; }
          #contents.column2 #sidebar .lnav::after {
            height: 1rem;
            bottom: -1rem; }
          #contents.column2 #sidebar .lnav dt {
            font-size: 1.6rem;
            height: 5rem;
            margin-bottom: 1rem;
            padding: 0 0.5rem 0 2rem; }
          #contents.column2 #sidebar .lnav dd > a {
            padding: 1rem 0.5rem 1rem 2rem; }
          #contents.column2 #sidebar .lnav dd ul {
            margin: 0 0 0 2rem; }
            #contents.column2 #sidebar .lnav dd ul li {
              margin-bottom: 0;
              font-size: 1.3rem; }
              #contents.column2 #sidebar .lnav dd ul li a {
                padding-left: 1.8rem; }
                #contents.column2 #sidebar .lnav dd ul li a::before {
                  width: 0.5rem;
                  top: 0.8rem; }
          #contents.column2 #sidebar .lnav dd:hover > a::before, #contents.column2 #sidebar .lnav dd.current > a::before {
            border-width: 0.55rem 0 0.55rem 0.5rem; }
          #contents.column2 #sidebar .lnav dd:hover ul, #contents.column2 #sidebar .lnav dd.current ul {
            margin-top: 1.5rem; }
            #contents.column2 #sidebar .lnav dd:hover ul li, #contents.column2 #sidebar .lnav dd.current ul li {
              margin-bottom: 1.5rem; }
      #contents.full {
        padding: 0 0 5rem 0;
        margin: 3rem 0 0; } }

/* footer
------------------------------------ */
#footer #pagetop {
  background: #0c1f55;
  text-align: center; }
  #footer #pagetop a {
    display: block; }
    #footer #pagetop a span {
      display: inline-block;
      background: #1f4584;
      color: #fff;
      letter-spacing: 0.1em;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.1em;
      font-size: 1.4rem;
      padding: 1.4rem 4em;
      position: relative; }
      #footer #pagetop a span:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        border: 6px solid transparent;
        border-bottom: 6px solid #fff;
        transform: translateX(-50%); }
#footer #footerContainer {
  background: url("/cms/wp-content/themes/sdat_renew/img/cmn/footer_bg_address.webp") no-repeat top left/cover;
  padding: 12rem 0 0 0; }
  #footer #footerContainer .footer {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    background: #fff;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
    #footer #footerContainer .footer .logo {
      width: 15%; }
      #footer #footerContainer .footer .logo img {
        max-width: 146px; }
    #footer #footerContainer .footer .address {
      width: 58%; }
    #footer #footerContainer .footer .inquiry {
      width: 27%; }
      #footer #footerContainer .footer .inquiry a {
        display: block;
        padding: 2rem 4rem;
        background: #1f4584;
        color: #fff;
        font-size: 1.8rem;
        text-align: center; }
        #footer #footerContainer .footer .inquiry a:before {
          content: "";
          width: 18px;
          height: 18px;
          background: url("/cms/wp-content/themes/sdat_renew/img/cmn/icon_inquiry.png") no-repeat 0 0/cover;
          display: inline-block;
          margin-right: 1rem;
          vertical-align: middle; }
#footer #sitemapContainer {
  background: #000920;
  padding: 5rem 0; }
  #footer #sitemapContainer .sitemap {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    justify-content: space-between;
    grid-gap: 4rem; }
    #footer #sitemapContainer .sitemap a {
      color: #fff; }
      #footer #sitemapContainer .sitemap a:hover {
        text-decoration: underline; }
    #footer #sitemapContainer .sitemap dl {
      width: 33%; }
      #footer #sitemapContainer .sitemap dl dt {
        font-size: 1.6rem;
        line-height: 1.8; }
        #footer #sitemapContainer .sitemap dl dt span {
          display: block;
          letter-spacing: 0.1em;
          font-family: 'Oswald', sans-serif;
          font-size: 1rem;
          color: #50a6d8;
          text-decoration: none !important;
          margin-bottom: 3rem; }
      #footer #sitemapContainer .sitemap dl dd ul li {
        font-size: 1.2rem;
        margin-bottom: 1rem; }
        #footer #sitemapContainer .sitemap dl dd ul li a {
          display: inline-block;
          padding-left: 1.6rem;
          text-indent: -1.6rem; }
          #footer #sitemapContainer .sitemap dl dd ul li a:before {
            content: "";
            width: 6px;
            height: 1px;
            background: #50a6d8;
            margin-right: 1rem;
            display: inline-block;
            vertical-align: middle; }
#footer #copyright {
  background: #000920;
  padding: 5rem 0; }
  #footer #copyright p {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    color: #fff;
    letter-spacing: 0.1em;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem; }
@media screen and (max-width: 1024px) {
  #footer #footerContainer {
    background: url("/cms/wp-content/themes/sdat_renew/img/cmn/footer_bg_address.webp") no-repeat top left/contain; }
    #footer #footerContainer .footer {
      padding: 2rem; }
      #footer #footerContainer .footer .logo {
        width: 15%;
        padding-right: 20px; }
        #footer #footerContainer .footer .logo img {
          max-width: 100%; }
      #footer #footerContainer .footer .address {
        width: 55%; }
      #footer #footerContainer .footer .inquiry {
        width: 30%; } }
@media screen and (max-width: 767px) {
  #footer #footerContainer {
    padding: 6rem 0 0 0; }
    #footer #footerContainer .footer {
      padding: 2rem 1.5rem;
      display: block; }
      #footer #footerContainer .footer .logo {
        width: 40%;
        margin: 0 auto 1.5rem; }
        #footer #footerContainer .footer .logo img {
          max-width: 100%; }
      #footer #footerContainer .footer .address {
        width: auto;
        margin-bottom: 1.5rem; }
      #footer #footerContainer .footer .inquiry {
        width: auto; }
        #footer #footerContainer .footer .inquiry a:before {
          content: "";
          width: 1.8rem;
          height: 1.8rem;
          position: relative;
          top: -0.2rem; }
  #footer #sitemapContainer {
    padding: 2.5rem 0 0; }
    #footer #sitemapContainer .sitemap {
      grid-gap: 2rem 0;
      flex-wrap: wrap; }
      #footer #sitemapContainer .sitemap dl {
        width: 50%; }
        #footer #sitemapContainer .sitemap dl:first-child {
          width: 100%; }
  #footer #copyright {
    padding: 2rem 0; } }

#footerFixed {
  display: flex;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 50;
  background: #000;
  transition: 0.3s;
  z-index: 120; }
  #footerFixed.bottom {
    transform: translateY(100%); }
  #footerFixed dl {
    width: 100%;
    display: flex;
    height: auto;
    justify-content: center;
    position: relative; }
    #footerFixed dl:before {
      content: "";
      width: 50vw;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: #001650;
      z-index: 0; }
    #footerFixed dl:after {
      content: "";
      width: 50vw;
      height: 100%;
      position: absolute;
      top: 0;
      left: 50%;
      background: #0f286c;
      z-index: 0; }
    #footerFixed dl dt {
      background: #001650;
      height: 100%;
      font-size: 1.6rem;
      color: #fff;
      padding: 3rem 4rem;
      text-align: center;
      z-index: 1; }
      #footerFixed dl dt .pc {
        display: inline-block; }
    #footerFixed dl dd {
      background: #0f286c;
      z-index: 2; }
      #footerFixed dl dd a {
        display: flex;
        align-items: center;
        width: auto;
        height: 100%;
        position: relative;
        font-family: "Oswald", sans-serif;
        text-align: center;
        padding: 3rem 3.0rem 3rem 3.6rem;
        color: #fff;
        line-height: 1; }
        #footerFixed dl dd a::before {
          content: "";
          position: absolute;
          left: 0;
          background-repeat: no-repeat;
          background-size: 100% auto;
          width: 2.4rem;
          height: 2.6rem;
          top: 50%;
          transform: translateY(-50%); }
      #footerFixed dl dd.tel {
        padding: 0 0 0 4rem;
        font-size: 1.6rem; }
        #footerFixed dl dd.tel span.pc {
          letter-spacing: .1rem; }
          #footerFixed dl dd.tel span.pc span {
            font-size: 2.0rem; }
        #footerFixed dl dd.tel a::before {
          background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_tel_pc.png); }
      #footerFixed dl dd.mail {
        padding: 0 3rem;
        font-size: 1.6rem;
        font-weight: bold;
        position: relative; }
        #footerFixed dl dd.mail:after {
          content: "";
          width: 1px;
          height: 30px;
          background: #a6abbf;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
        #footerFixed dl dd.mail a::before {
          background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_mail_pc.png); }
    #footerFixed dl.thermocoil {
      display: none; }
  #footerFixed .sp_btn_menu {
    display: none; }
  @media screen and (max-width: 1024px) {
    #footerFixed dl dt {
      font-size: 1.4rem;
      padding: 2rem 1rem; }
      #footerFixed dl dt .pc {
        display: none; }
    #footerFixed dl dd a {
      padding: 0rem 1.0rem 0rem 2.5rem;
      color: #fff;
      line-height: 1;
      display: flex;
      align-items: center; }
      #footerFixed dl dd a::before {
        content: "";
        position: absolute;
        left: 0;
        background-repeat: no-repeat;
        background-size: contain;
        width: 2.0rem;
        height: 2.0rem;
        top: 50%; }
    #footerFixed dl dd.mail {
      padding: 0 3rem;
      font-size: 1.4rem;
      font-weight: bold;
      position: relative; }
      #footerFixed dl dd.mail a::before {
        background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_mail_pc.png); }
    #footerFixed dl.thermocoil {
      display: none; }
      #footerFixed dl.thermocoil dt {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2rem; }
        #footerFixed dl.thermocoil dt .pc {
          display: none; }
      #footerFixed dl.thermocoil dd a {
        display: block;
        width: auto;
        height: 100%;
        position: relative;
        font-family: "Oswald", sans-serif;
        text-align: center;
        padding: 3rem 1.5rem 3rem 3.6rem;
        color: #fff;
        line-height: 1; }
        #footerFixed dl.thermocoil dd a::before {
          content: "";
          position: absolute;
          left: 0;
          background-repeat: no-repeat;
          background-size: 100% auto;
          width: 2.4rem;
          height: 2.6rem;
          top: 50%;
          transform: translateY(-50%); }
      #footerFixed dl.thermocoil dd.tel {
        padding: 0 0 0 4rem;
        font-size: 1.6rem; }
        #footerFixed dl.thermocoil dd.tel span.pc {
          letter-spacing: .1rem; }
          #footerFixed dl.thermocoil dd.tel span.pc span {
            font-size: 2.0rem; }
        #footerFixed dl.thermocoil dd.tel a::before {
          background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_tel_pc.png); }
      #footerFixed dl.thermocoil dd.mail {
        padding: 0 3rem;
        font-size: 1.6rem;
        font-weight: bold;
        position: relative; }
        #footerFixed dl.thermocoil dd.mail:after {
          content: "";
          width: 1px;
          height: 30px;
          background: #a6abbf;
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%); }
        #footerFixed dl.thermocoil dd.mail a::before {
          background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_mail_pc.png); } }
  @media screen and (max-width: 767px) {
    #footerFixed dl {
      display: flex;
      height: 5.7rem;
      justify-content: flex-start; }
      #footerFixed dl:before {
        display: none; }
      #footerFixed dl:after {
        display: none; }
      #footerFixed dl dt {
        padding: 0 1rem;
        display: flex;
        align-items: center; }
      #footerFixed dl dd.mail {
        padding: 0 1rem; }
      #footerFixed dl.thermocoil {
        display: none; }
        #footerFixed dl.thermocoil dt {
          background: none;
          height: 100%;
          font-size: 1.2rem;
          color: #fff;
          display: flex;
          justify-content: center;
          align-items: center;
          padding: 0 2rem;
          text-align: center; }
        #footerFixed dl.thermocoil dd {
          margin-left: 1px;
          background: none; }
          #footerFixed dl.thermocoil dd a {
            display: block;
            width: 5rem;
            height: 100%;
            position: relative;
            font-family: "Oswald", sans-serif;
            text-align: center;
            padding: 70% 0 0 0;
            background: #0c1f55;
            color: #fff; }
            #footerFixed dl.thermocoil dd a::before {
              content: "";
              position: absolute;
              left: 50%;
              transform: translateX(-50%);
              background-repeat: no-repeat;
              background-size: 100% auto; }
          #footerFixed dl.thermocoil dd.tel {
            padding: 0;
            font-size: 1.1rem; }
            #footerFixed dl.thermocoil dd.tel a::before {
              width: 1.9rem;
              height: 2rem;
              background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_tel_sp.png);
              top: 1rem; }
          #footerFixed dl.thermocoil dd.mail {
            padding: 0;
            font-size: 1.1rem; }
            #footerFixed dl.thermocoil dd.mail:after {
              display: none; }
            #footerFixed dl.thermocoil dd.mail a::before {
              width: 2rem;
              height: 1.7rem;
              background-image: url(/cms/wp-content/themes/sdat_renew/img/cmn/icon_mail_sp.png);
              top: 1rem; } }
@media screen and (max-width: 767px) and (max-width: 767px) {
  #footerFixed .sp_btn_menu {
    display: block;
    width: 5.0rem;
    height: 5.7rem;
    position: relative;
    background: #0f286c;
    cursor: pointer; }
    #footerFixed .sp_btn_menu p {
      padding-top: 8px;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.1em;
      font-family: 'Oswald', sans-serif;
      color: #fff; }
      #footerFixed .sp_btn_menu p span {
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.3s; }
        #footerFixed .sp_btn_menu p span:nth-child(2) {
          visibility: hidden;
          opacity: 0; }
    #footerFixed .sp_btn_menu > div {
      position: absolute;
      width: 56%;
      height: 27%;
      top: 50%;
      left: 20%; }
      #footerFixed .sp_btn_menu > div > span {
        display: block;
        height: 1px;
        position: absolute;
        right: 0;
        background: #fff;
        transition: 0.3s; }
        #footerFixed .sp_btn_menu > div > span:nth-child(1) {
          width: 100%;
          top: 0; }
        #footerFixed .sp_btn_menu > div > span:nth-child(2) {
          width: 69.4%;
          top: 50%;
          margin-top: -1px; }
        #footerFixed .sp_btn_menu > div > span:nth-child(3) {
          width: 55.5%;
          bottom: 0; }
    .js-menuOpen #footerFixed .sp_btn_menu p span:nth-child(1) {
      visibility: hidden;
      opacity: 0; }
    .js-menuOpen #footerFixed .sp_btn_menu p span:nth-child(2) {
      visibility: visible;
      opacity: 1; }
    .js-menuOpen #footerFixed .sp_btn_menu > div {
      left: 50%;
      transform: translateX(-50%); }
      .js-menuOpen #footerFixed .sp_btn_menu > div > span:nth-child(1) {
        top: 50%;
        transform: rotate(-150deg); }
      .js-menuOpen #footerFixed .sp_btn_menu > div > span:nth-child(2) {
        width: 100%;
        transform: rotate(150deg);
        opacity: 0; }
      .js-menuOpen #footerFixed .sp_btn_menu > div > span:nth-child(3) {
        width: 100%;
        bottom: auto;
        top: 50%;
        transform: rotate(150deg); } }

.cnavCover {
  max-width: 1200px;
  padding: 0 7vw;
  margin: 0 auto;
  box-sizing: content-box; }
  @media screen and (max-width: 1024px) {
    .cnavCover {
      padding: 0 4vw; } }
  @media screen and (max-width: 767px) {
    .cnavCover {
      padding: 0; } }

.cnav {
  margin: 70px auto 0;
  margin-bottom: 70px;
  display: table;
  table-layout: auto;
  width: 100%; }
  .cnav li {
    border-right: solid 1px #f3f4f6;
    line-height: 1.4;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    /* alumipole */ }
    .cnav li:first-child {
      border-left: solid 1px #f3f4f6; }
    .cnav li a {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.6rem;
      text-align: center;
      border-bottom: solid 5px #f3f4f6;
      padding-bottom: 12px;
      height: 90px; }
      .cnav li a::before {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 5.5px 0 5.5px;
        border-color: #a6abbf transparent transparent transparent;
        position: absolute;
        bottom: 13px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.3s; }
      .cnav li a:after {
        transition: 0.3s;
        content: "";
        width: 100%;
        height: 5px;
        background: #df8833;
        bottom: -5px;
        position: absolute;
        left: -1px;
        width: calc(100% + 2px);
        visibility: hidden;
        opacity: 0; }
      .cnav li a:hover::before, .cnav li a.current::before {
        border-color: #0c1f55 transparent transparent transparent;
        bottom: 8px; }
      .cnav li a:hover:after, .cnav li a.current:after {
        visibility: visible;
        opacity: 1; }
    .cnav li.trackrecord a {
      background: #50a6d8;
      color: #FFF; }
  @media screen and (max-width: 1024px) {
    .cnav li a {
      font-size: 1.4rem; } }
  @media screen and (max-width: 767px) {
    .cnav {
      padding: 0;
      margin: 2rem 1.5rem 4rem;
      display: flex;
      flex-wrap: wrap;
      border-top: solid 1px #f3f4f6;
      width: auto; }
      .cnav li {
        display: block;
        width: 50% !important; }
        .cnav li:nth-child(2n + 1) {
          border-left: solid 1px #f3f4f6; }
        .cnav li a {
          font-size: 1.3rem;
          padding-bottom: 0.5rem;
          height: auto;
          border-width: 0.3rem;
          justify-content: flex-start;
          padding: 0.8rem 0.5rem 0.8rem 1rem;
          height: auto; }
          .cnav li a span {
            display: inline-block;
            font-size: 1.0rem; }
          .cnav li a::before {
            border-width: 3px 0 3px 6px;
            border-color: transparent transparent transparent #a6abbf;
            bottom: auto;
            left: auto;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%); }
          .cnav li a:after {
            height: 0.3rem;
            bottom: -0.3rem; }
          .cnav li a:hover::before, .cnav li a.current::before {
            border-color: transparent transparent transparent #0c1f55;
            bottom: auto; }
          .cnav li a br {
            display: none; } }

/* print
---------------------------------------------------*/
@media print {
  header, #sidebar, .cnav, #topicpath, #footerFixed, #sitemapContainer, #footerContainer .inquiry {
    display: none !important; }

  #contents article {
    width: 100% !important; } }
body#print {
  padding-top: 0; }
  body#print #contents {
    padding: 0 7vw 5rem; }

#printfooter {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 2rem;
  width: 100%; }
  #printfooter .logo img {
    max-width: 146px; }
  #printfooter #copyright {
    padding-top: 1rem;
    border-top: 1px solid #CCC;
    width: 100%;
    text-align: center;
    font-size: 1.4rem; }
