@charset "UTF-8";

:root {
  --primary-c: #00a9e0;
  --link-c: #009bc3;
}

@media print,
all and (min-width: 751px) {
  body {
    font-size: 100%;
    /* 16pt */
    font-family: YuGothic, "Noto Sans JP", sans-serif;
    color: var(--color-body);
    background: #ffffff;
    line-height: 1.875;
    word-wrap: break-word;
  }

  a,
  span,
  img {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
  }

  a,
  a:link,
  a:visited {
    color: var(--link-c);
    text-decoration: none;
  }

  a:hover {
    color: var(--link-c);
    text-decoration: underline;
  }

  .container {
    width: 100%;
    min-width: 1120px;
  }

  .container-inner {
    width: 1040px;
    margin: 0 auto;
  }

  .pc-anchor {
    margin-top: -80px !important;
    padding-top: 80px !important;
  }

  .fade-in {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }

  .scroll-in {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  /* HEADER */
  #header {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  #header .container-inner {
    width: 100%;
    padding-inline: 45px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
  }

  #header .container-inner .primary {
    padding-top: 30px;
  }

  #header .container-inner .primary .h-logo a {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
      メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
  }

  #header .container-inner .primary .h-logo a:hover {
    opacity: 0.6;
  }

  #header .container-inner .primary .h-logo a .ja-text {
    color: #ffffff;
    letter-spacing: 0.06em;
    font-size: 143.75%;
    /* 23px */
    font-weight: bold;
    line-height: 1.55;
    margin-bottom: 2px;
  }

  #header .container-inner .primary .h-logo a .ja-text .text-s {
    display: inline-block;
    font-size: 69.565217%;
    /* 16px */
    margin: 0 0 0 -4px;
    vertical-align: middle;
  }

  #header .container-inner .primary .h-logo a .ja-text em {
    display: block;
    font-size: 141.304347%;
    /* 32.5px */
    font-weight: bold;
    margin-top: -4px;
  }

  #header .container-inner .primary .h-logo a .en-text {
    margin: 0 0 0 1px;
    line-height: 1;
  }

  #header .container-inner .primary .h-logo a .en-text img {
    vertical-align: middle;
  }

  #header .container-inner .secondary .h-link_btnbox .h-btn {
    margin-bottom: 0;
    line-height: 1.4;
  }

  #header .container-inner .secondary .h-link_btnbox .h-btn>a {
    display: inline-block;
    color: #ffffff;
    background-color: #00a9e0;
    font-size: 112.5%;
    /* 18px */
    font-family: YuGothic, "Noto Sans JP", sans-serif;
    font-weight: 600;
    padding: 14px 20px;
    text-decoration: none;
    transition: filter 0.3s ease-in-out;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.319);
  }

  #header .container-inner .secondary .h-link_btnbox .h-btn>a:hover {
    filter: brightness(0.8);
  }

  #header .container-inner .h-contact {
    text-align: right;
  }

  #header .container-inner .h-contact>a {
    display: inline-block;
    padding: 2px 10px;
    color: #ffffff;
    font-size: 93.33333%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
  }

  #header .container-inner .h-contact>a:hover {
    background-color: #666666;
  }

  /* NAV */
  #nav #pc-nav {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
      メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    margin-bottom: 0;
  }

  #nav {
    height: 330px;
    position: absolute;
    top: 166px;
    left: 0;
  }

  #pc-nav {
    --gap: 2em;

    >li {
      line-height: 1.55;
      padding-right: var(--gap);
      padding-block: 12px;

      &:has(.second) {
        position: relative;

        &:hover .second {
          translate: 0;
          opacity: 1;
          pointer-events: auto;
        }
      }

      >a {
        display: inline-block;
        color: #ffffff;
        text-decoration: none;
        letter-spacing: 0.06em;
        font-weight: bold;
        padding: 0 0 6px 45px;
        position: relative;

        &:before {
          content: "";
          display: block;
          width: 100%;
          height: 2px;
          background-color: var(--primary-c);
          position: absolute;
          inset: auto auto 0 0;
          translate: -100%;
          transition: 0.3s ease-in-out;
        }
      }

      &:hover a:before,
      &.on a:before {
        translate: 0;
      }
    }

    .second {
      box-sizing: border-box;
      position: absolute;
      inset: 50% auto auto 100%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 1em;
      margin-bottom: 0;
      padding: 1em 2em;
      width: fit-content;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background-color: color-mix(in srgb, var(--primary-c), transparent 70%);
      opacity: 0;
      pointer-events: none;
      translate: -1em;
      transition-property: opacity, translate;
      transition-duration: 0.3s;
      transition-delay: 0.2s;

      a {
        color: #ffffff;
        /* font-size: 125%; */
        font-weight: bold;
        text-decoration: none;
        white-space: nowrap;
        transition: opacity 0.3s ease-in-out;

        &:hover {
          opacity: 0.6;
        }
      }
    }
  }

  #nav.active #pc-nav>li>a:before {
    background-color: #ffffff;
  }

  #nav.active #pc-nav>li>a:before {
    background-color: #ffffff;
  }

  /* GMAP */
  #gmap {
    margin: 0;
  }

  #gmap #gmap-area {
    height: 290px;
    margin: 0;
  }

  #gmap #gmap-area iframe {
    width: 100%;
    height: 290px;
    margin: 0;
  }

  /* FOOTER */
  #footer {
    background-color: #d8dfe6;
  }

  #footer a {
    color: #000000;
  }

  #footer .container-inner {
    padding: 40px 0 25px;
  }

  #footer .container-inner .f-sign {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: flex-start;
    gap: 0 60px;
    margin-bottom: 16px;
  }

  #footer .container-inner .f-sign .f-names {
    padding-left: 40px;
  }

  #footer .container-inner .f-sign .f-names .f-name {
    margin-bottom: 3px;
  }

  #footer .container-inner .f-sign .f-names .f-name a {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
      メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease-in-out;
    position: relative;
    padding-left: 75px;
    margin-left: -75px;
  }

  #footer .container-inner .f-sign .f-names .f-name a:after {
    content: "";
    display: block;
    width: 61px;
    height: 67px;
    background-image: url(../images/common/logo.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 5px;
    left: 0;
  }

  #footer .container-inner .f-sign .f-names .f-name a:hover {
    opacity: 0.6;
  }

  #footer .container-inner .f-sign .f-names .f-name a .ja-text {
    letter-spacing: 0.06em;
    font-size: 143.75%;
    /* 23px */
    font-weight: bold;
    line-height: 1.55;
    margin-bottom: 2px;
  }

  #footer .container-inner .f-sign .f-names .f-name a .ja-text .text-s {
    display: inline-block;
    font-size: 69.565217%;
    /* 16px */
    margin: 0 0 0 -4px;
    vertical-align: middle;
  }

  #footer .container-inner .f-sign .f-names .f-name a .ja-text em {
    display: block;
    font-size: 141.304347%;
    /* 32.5px */
    font-weight: bold;
    margin-top: -4px;
  }

  #footer .container-inner .f-sign .f-names .f-name a .en-text {
    margin: 0 0 0 1px;
    line-height: 1;
  }

  #footer .container-inner .f-sign .f-names .f-name a .en-text img {
    vertical-align: middle;
  }

  #footer .container-inner .f-sign .f-address {
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
      メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    line-height: 1.75;
    font-size: 93.75%;
    /* 15px */
  }

  #footer .container-inner .f-sign .f-address .f-place {
    margin-bottom: 0;
  }

  #footer .container-inner .f-sign .f-address .f-tel {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
    margin-bottom: 0;
  }

  #footer .container-inner .f-sign .f-address .f-fax {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
  }

  #footer .container-inner .f-sign .f-banner {
    display: flex;
    gap: 0 20px;
    padding-top: 38px;
  }

  #footer .container-inner .f-sign .f-banner .banner {
    margin-bottom: 0;
  }

  #footer .container-inner .f-sign .f-banner .banner>a {
    width: 250px;
    height: 100%;
    padding: 11px 15px;
    box-sizing: border-box;
    font-size: 106.25%;
    /* 17px */
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
    text-decoration: none;
    transition: filter 0.3s ease-in-out;
    line-height: 1.55;
    display: grid;
    place-items: center;
  }

  #footer .container-inner .f-sign .f-banner .banner>a em {
    font-size: 117.647058%;
    /* 20px */
    font-weight: bold;
  }

  #footer .container-inner .f-sign .f-banner .banner>a:hover {
    filter: brightness(0.9);
  }

  #footer .copyright {
    margin: 0;
    font-size: 87.5%;
    /* 14px */
    font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
      メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
    text-align: center;
  }

  /* NAVIGATION */
  #toggle {
    display: none;
  }

  .fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: -40px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }

  /* TITLE */
  #title {
    height: 508px;
    background-image: url(../images/common/title-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }

  #title .title-box {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 3, 0, 0.18);
    position: absolute;
    top: 0;
    left: 0;
  }

  #title .title-box .title-area {
    display: inline-block;
    padding: 0 calc((100% - 960px) / 2) 16px 45px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  #title .title-box .title-area .title {
    color: #ffffff;
    line-height: 1.5;
    padding-top: 3px;
    position: relative;
    z-index: 2;
  }

  #title .title-box .title-area .title .ja-text {
    display: block;
    font-size: 200%;
    /* 20px */
    font-family: var(--yu-gothic);
    font-weight: bold;
    letter-spacing: 0.06em;
    margin-bottom: -2px;
  }

  #title .title-box .title-area .title .en-text {
    display: block;
    font-family: "Aoboshi One", serif;
    transform: scaleY(0.8);
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-size: 106.25%;
    /* 17px */
  }

  #title .title-box .title-area .title .en-text:first-letter {
    font-size: 117.647058%;
    /* 20px */
    margin-left: 4px;
  }

  #title .title-box .title-area:before {
    content: "";
    display: block;
    width: 100%;
    height: 64px;
    background-color: #00a9e0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
  }

  #title .title-box .title-area:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00a9e0;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
  }

  #title .title-box .filter01 {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 50%);
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }

  #title .title-box .filter02 {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgb(0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 50%);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
  }

  #title .title-box .triangle01 {
    width: 308px;
    height: 100%;
    background-color: #ffffff;
    clip-path: polygon(0 100%, 0.25px 100%, 100% 0, 208px 0);
    opacity: 0.11;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% + 181px));
  }

  #title .title-box .triangle02 {
    width: 1208px;
    height: 100%;
    background-color: #00a9e0;
    clip-path: polygon(0 100%, 0.25px 100%, 100% 0, 624px 0);
    opacity: 0.19;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% + 410px));
  }

  #title .container-inner {
    padding: 0;
    height: 280px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    display: none;
  }

  #title .container-inner .title-box {
    display: inline-block;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.85);
  }

  #title .container-inner .title-box .level01 {
    margin-bottom: 0;
    color: #ff0000;
    font-size: 112.5%;
    font-family: "UD Shin Go Regular", "UD新ゴ R", "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
      "MS PGothic", sans-serif;
    font-weight: bold;
    letter-spacing: 0.5pt;
    text-indent: 0.5pt;
    line-height: 1.5;
  }

  #title .container-inner .title-box .level01 strong {
    font-weight: bold;
  }

  #title .container-inner .title-box .title {
    margin-bottom: 0;
    color: #ff0000;
    font-size: 200%;
    font-family: "UD Shin Go Regular", "UD新ゴ R", "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
      "MS PGothic", sans-serif;
    font-weight: bold;
    letter-spacing: 0.5pt;
    text-indent: 0.5pt;
    line-height: 1.5;
  }

  #pcnav-filter {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 169, 224, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
  }

  /* CONTENT */
  #content {
    position: relative;
    overflow: hidden;
  }

  #content a {
    text-decoration: underline;
  }

  #content a:hover {
    text-decoration: none;
  }

  #content:before {
    content: "";
    display: block;
    width: 500px;
    height: 858px;
    background-color: #00a9e0;
    opacity: 0.09;
    clip-path: polygon(0 0, 160px 0, 100% 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% + 73px));
    z-index: -1;
  }

  #content:after {
    content: "";
    display: block;
    width: 1953px;
    height: 855px;
    background-color: #00a9e0;
    opacity: 0.09;
    clip-path: polygon(0 0, 934px 0, 100% 100%);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(calc(-50% - 324px));
    z-index: -1;
  }

  #breadcrumb {
    line-height: 1.55;
    padding-top: 23px;
    margin-bottom: 48px;
  }

  #breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 81.25%;
  }

  #breadcrumb li a {
    color: #000000;
  }

  #breadcrumb li a:hover {
    text-decoration: none;
  }

  #breadcrumb li.on {
    font-weight: bold;
  }

  #main {
    float: left;
    width: 710px;
  }

  #side {
    float: right;
    width: 200px;
  }

  .section {
    margin-bottom: 120px;
  }

  .section-s {
    margin-bottom: 80px;
  }

  .section-ss {
    margin-bottom: 60px;
  }

  .section-sss {
    margin-bottom: 40px;
  }

  .section-ssss {
    margin-bottom: 20px;
  }

  .pagetop {
    position: fixed;
    bottom: 0;
    right: 3px;
    text-align: right;
    margin: 0;
    z-index: 5000;
  }

  .pagetop a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 0;
    text-decoration: none;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .pagetop a:hover {
    filter: alpha(opacity=60);
    /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)";
    /* IE 8,9 */
    -moz-opacity: 0.6;
    /* FF , Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.6;
    zoom: 1;
    /*IE*/
  }

  .pagetop a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  #md-site.blue .pagetop a,
  #md-site.black .pagetop a {
    background-color: transparent;
  }

  .inlink {
    margin-top: -70px;
    padding-top: 70px;
  }

  /* SNAV */
  /* SUBNAV */
  #subnav {
    text-align: center;
    margin-bottom: 70px;

    .subnav-list {
      max-width: 1020px;
      display: inline-flex;
      flex-wrap: wrap;
      gap: 22px calc((1020px - 230px * 4) / 3);
      margin-bottom: 0;

      >li {
        >a {
          display: flex;
          align-items: center;
          justify-content: center;
          line-height: 1.4;
          width: 230px;
          height: 100%;
          padding: 12px 22px 12px 28px;
          box-sizing: border-box;
          min-height: 54px;
          font-weight: bold;
          border: 1px solid var(--link-c);
          box-sizing: border-box;
          text-decoration: none;
          transition: 0.3s ease-in-out;
          position: relative;

          &:before {
            content: "";
            display: inline-block;
            width: 26px;
            height: 8px;
            background: url(../images/common/arrow02_r.svg) no-repeat center / contain;
            position: absolute;
            top: 50%;
            left: 0;
            translate: 0 -50%;
          }

          &:hover {
            color: #ffffff;
            background-color: var(--link-c);

            &:before {
              background-image: url(../images/common/arrow02_r_white.svg);
            }
          }
        }

        &.on {
          >a {
            color: #ffffff;
            background-color: var(--link-c);

            &:before {
              background-image: url(../images/common/arrow02_r_white.svg);
            }
          }
        }
      }
    }
  }

  #bottoms {
    display: none;
  }
}

/*# sourceMappingURL=layout_pc.css.map */