@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #0F1520;
}

article,
aside,
details,
figure,
figcaption,
footer,
header,
main,
menu,
nav,
hgroup,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

a {
  color: #0F1520;
  text-decoration: none;
}

p {
  margin: 0 0 1.5em;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

table {
  width: 100%;
  margin: 0 auto;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
}

th {
  white-space: nowrap;
  font-weight: normal;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  .pc {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  /* ----- ヘッダー ----- */
  #header {
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding: 15px 4vw;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header.active {
    background-color: #0F1520;
  }
  #header.active #site_logo a {
    background-color: #fff;
  }
  #header #site_logo {
    width: 100px;
    height: 29px;
    margin: 0;
    line-height: 1em;
  }
  #header #site_logo a {
    display: block;
    width: 100%;
    height: 29px;
    padding-top: 29px;
    overflow: hidden;
    -webkit-mask-image: url(../img/common/logo.svg);
            mask-image: url(../img/common/logo.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #0F1520;
  }
  #header #site_logo a:hover {
    opacity: 0.8;
  }
  #header .header-nav {
    display: none;
    position: absolute;
    inset: 59px 0 0 auto;
    width: 100vw;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 30px 4vw 40px;
    background-color: #0F1520;
  }
  #header .header-nav.active {
    display: block;
  }
  #header .header-nav nav {
    display: grid;
    gap: 24px;
    font-size: clamp(14px, 1vw, 16px);
  }
  #header .header-nav nav .header-nav-list {
    font-weight: 700;
  }
  #header .header-nav nav .header-nav-list > li {
    position: relative;
    padding: 0.5em 0;
    border-bottom: 1px solid #979797;
  }
  #header .header-nav nav .header-nav-list > li a {
    display: block;
    padding: 0.75em 0;
    color: #fff;
  }
  #header .header-nav nav .header-nav-list > li::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    display: block;
    width: 18px;
    height: 14px;
    -webkit-mask-image: url(../img/common/ico-arrow.svg);
            mask-image: url(../img/common/ico-arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
  }
  #header .header-nav nav .header-nav-list > li::after {
    display: none;
  }
  #header .header-nav nav .header-nav-list > li.parent::before, #header .header-nav nav .header-nav-list > li.parent::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-mask-image: none;
            mask-image: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-nav nav .header-nav-list > li.parent::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #header .header-nav nav .header-nav-list > li.parent.active::after {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  #header .header-nav nav .header-nav-list .sublist {
    display: none;
  }
  #header .header-nav nav .header-nav-list .sublist li a::before {
    content: "- ";
  }
  #header .header-nav nav .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 7px;
  }
  .header-btn,
  .footer-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    height: 52px;
    font-weight: 700;
    color: #0F1520;
    background-color: #fff;
    border-radius: 4px;
    border: 2px solid #0F1520;
  }
  .header-btn::before,
  .footer-btn::before {
    content: "";
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    background-color: #0F1520;
  }
  .header-btn.btn-download::before,
  .footer-btn.btn-download::before {
    width: 19px;
    height: 20px;
    -webkit-mask-image: url(../img/common/ico-download.svg);
            mask-image: url(../img/common/ico-download.svg);
  }
  .header-btn.btn-contact::before,
  .footer-btn.btn-contact::before {
    width: 17px;
    height: 17px;
    -webkit-mask-image: url(../img/common/ico-contact.svg);
            mask-image: url(../img/common/ico-contact.svg);
  }
  #hamburger {
    position: absolute;
    top: 5px;
    right: 2vw;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 9995;
    cursor: pointer;
  }
  #hamburger.active i {
    background-color: #fff;
  }
  #hamburger.active i::before, #hamburger.active i::after {
    background-color: #fff;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #hamburger i {
    display: inline-block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: #0F1520;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    border-radius: 2px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #0F1520;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -8px);
            transform: translate(0px, -8px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 6px);
            transform: translate(0px, 6px);
  }
  #hamburger.active div {
    background: none;
    border: none;
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -1px);
            transform: rotate(45deg) translate(-1px, -1px);
  }
  #container {
    position: relative;
    width: 100vw;
  }
  #container:has(.page-case), #container:has(.archive-voice) {
    background-color: #F8F8F8;
  }
  main {
    padding: 40px 0;
    background-color: #F8F8F8;
  }
  .pankz {
    display: none;
  }
  /* ----- フッター ----- */
  #footer {
    position: relative;
    z-index: 99;
    padding: 60px 0 0;
    color: #fff;
    background-color: #3C434B;
  }
  #footer .footer-top {
    width: 700px;
    max-width: 92vw;
    margin: 0 auto;
    padding: 0 0 32px;
    border-bottom: 1px solid #BDBDBD;
  }
  #footer .footer-top .footer-address {
    margin-bottom: 60px;
  }
  #footer .footer-top .footer-address h2 {
    width: 130px;
    margin-bottom: 32px;
  }
  #footer .footer-top .footer-address p {
    font-size: 14px;
    line-height: 1.6em;
  }
  #footer .footer-top .footer-menu {
    margin-bottom: 60px;
  }
  #footer .footer-top .footer-menu > ul {
    font-weight: 700;
  }
  #footer .footer-top .footer-menu > ul > li {
    position: relative;
    padding: 0.5em 0;
    border-bottom: 1px solid #979797;
  }
  #footer .footer-top .footer-menu > ul > li a {
    display: block;
    padding: 0.75em 0;
    color: #fff;
  }
  #footer .footer-top .footer-menu > ul > li::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 0;
    display: block;
    width: 18px;
    height: 14px;
    -webkit-mask-image: url(../img/common/ico-arrow.svg);
            mask-image: url(../img/common/ico-arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #fff;
  }
  #footer .footer-top .footer-menu > ul > li::after {
    display: none;
  }
  #footer .footer-top .footer-menu > ul > li.parent::before, #footer .footer-top .footer-menu > ul > li.parent::after {
    content: "";
    position: absolute;
    top: 27px;
    right: 0;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-mask-image: none;
            mask-image: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-top .footer-menu > ul > li.parent::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #footer .footer-top .footer-menu > ul > li.parent.active::after {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  #footer .footer-top .footer-menu > ul .sublist {
    display: none;
  }
  #footer .footer-top .footer-menu > ul .sublist li a::before {
    content: "- ";
  }
  #footer .footer-top .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 7px;
  }
  #footer .footer-bottom {
    padding: 10px 4vw 40px;
  }
  #footer .footer-bottom .footer-partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 30px;
  }
  #footer .footer-bottom .footer-partner .google {
    display: block;
    width: 105px;
  }
  #footer .footer-bottom .footer-partner .yahoo {
    width: 200px;
  }
  #footer .footer-bottom p {
    margin: 0;
    font-size: clamp(13px, 3.46vw, 15px);
    font-weight: 700;
    text-align: center;
  }
  #footer .copyright {
    display: block;
    padding: 16px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background-color: #0F1520;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .sp {
    display: none !important;
  }
  html.scroll-prevent {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  @-webkit-keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* ----- ヘッダー ----- */
  #header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100vw;
    padding: 15px 80px;
  }
  #header.fixed {
    -webkit-animation: show 0.2s ease 0s;
            animation: show 0.2s ease 0s;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
  }
  #header #site_logo {
    width: 130px;
    height: 38px;
    margin: 0;
    line-height: 1em;
  }
  #header #site_logo a {
    display: block;
    width: 100%;
    height: 38px;
    padding-top: 38px;
    overflow: hidden;
    -webkit-mask-image: url(../img/common/logo.svg);
            mask-image: url(../img/common/logo.svg);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    background-color: #0F1520;
  }
  #header #site_logo a:hover {
    opacity: 0.8;
  }
  #header .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #header .header-nav nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    font-size: clamp(14px, 1vw, 16px);
  }
  #header .header-nav nav .header-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5em;
    font-weight: 700;
  }
  #header .header-nav nav .header-nav-list li.parent {
    position: relative;
  }
  #header .header-nav nav .header-nav-list li a {
    display: block;
    padding: 1.5em 0.5em;
  }
  #header .header-nav nav .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
  }
  #header .header-nav .sublist {
    display: none;
    position: absolute;
    top: 60px;
    left: -24px;
    width: 360px;
    padding: 20px 24px;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 2px 20px rgba(140, 140, 140, 0.08);
            box-shadow: 0 2px 20px rgba(140, 140, 140, 0.08);
  }
  #header .header-nav .sublist li.pc {
    margin-bottom: 0.5em;
    background-color: #F5F5F3;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-nav .sublist li.pc a {
    display: block;
    padding: 12px 24px;
  }
  #header .header-nav .sublist li.pc small {
    display: block;
    margin: 0 0 0.5em;
    padding-left: 18px;
    font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #878786;
    background-image: url(../img/common/title-tri.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: left 2px;
  }
  #header .header-nav .sublist li.pc b {
    font-size: 16px;
    font-weight: 700;
  }
  #header .header-nav .sublist li.pc:hover {
    background-color: #EDEDED;
  }
  #header .header-nav .sublist li:not(.pc) {
    font-weight: 400;
  }
  #header .header-nav .sublist li:not(.pc) a {
    padding: 10px 24px;
    border-radius: 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-nav .sublist li:not(.pc) a::before {
    content: "・";
  }
  #header .header-nav .sublist li:not(.pc) a:hover {
    background-color: #F5F5F3;
  }
  .header-btn,
  .footer-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    min-width: 175px;
    height: 52px;
    font-weight: 700;
    border-radius: 4px;
    border: 2px solid #0F1520;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-btn::before,
  .footer-btn::before {
    content: "";
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header-btn.btn-download,
  .footer-btn.btn-download {
    color: #0F1520;
    background-color: #fff;
  }
  .header-btn.btn-download::before,
  .footer-btn.btn-download::before {
    width: 19px;
    height: 20px;
    -webkit-mask-image: url(../img/common/ico-download.svg);
            mask-image: url(../img/common/ico-download.svg);
    background-color: #0F1520;
  }
  .header-btn.btn-download:hover,
  .footer-btn.btn-download:hover {
    color: #0F1520;
    background-color: #FCD118;
  }
  .header-btn.btn-contact,
  .footer-btn.btn-contact {
    color: #fff;
    background-color: #0F1520;
  }
  .header-btn.btn-contact::before,
  .footer-btn.btn-contact::before {
    width: 17px;
    height: 17px;
    -webkit-mask-image: url(../img/common/ico-contact.svg);
            mask-image: url(../img/common/ico-contact.svg);
    background-color: #fff;
  }
  .header-btn.btn-contact:hover,
  .footer-btn.btn-contact:hover {
    color: #0F1520;
    background-color: #FCD118;
  }
  .header-btn.btn-contact:hover::before,
  .footer-btn.btn-contact:hover::before {
    background-color: #0F1520;
  }
  #hamburger {
    display: none;
  }
  #container {
    position: relative;
    width: 100vw;
  }
  #container:has(.page-case), #container:has(.archive-voice) {
    background-color: #F8F8F8;
  }
  main {
    padding: 100px 0;
    background-color: #F8F8F8;
  }
  .pankz {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
    width: 100vw;
    margin: 0 auto 80px;
    padding: 15px 80px;
    font-size: 14px;
    line-height: 1em;
  }
  .pankz li:not(:first-child)::before {
    content: "/";
  }
  .pankz li:not(:first-child) a:hover span {
    text-decoration: underline;
  }
  /* ----- フッター ----- */
  #footer {
    position: relative;
    z-index: 99;
    margin: 0;
    padding: 60px 0 0;
    color: #fff;
    background-color: #3C434B;
  }
  #footer .footer-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 1280px;
    max-width: calc(100vw - 160px);
    margin: 0 auto;
    padding: 0 0 48px;
    border-bottom: 1px solid #BDBDBD;
  }
  #footer .footer-top .footer-address {
    margin-right: clamp(40px, 3.6vw, 80px);
  }
  #footer .footer-top .footer-address h2 {
    width: 130px;
    margin-bottom: 32px;
  }
  #footer .footer-top .footer-address h2 a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #footer .footer-top .footer-address h2 a:hover {
    opacity: 0.8;
  }
  #footer .footer-top .footer-address p {
    font-size: 14px;
    line-height: 1.6em;
  }
  #footer .footer-top .footer-menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(30px, 2.7vw, 50px);
  }
  #footer .footer-top .footer-menu ul {
    font-size: 14px;
  }
  #footer .footer-top .footer-menu ul li {
    margin-bottom: 1em;
    font-weight: 700;
  }
  #footer .footer-top .footer-menu ul li.mt2 {
    margin-top: 2em;
  }
  #footer .footer-top .footer-menu ul li a {
    color: #fff;
  }
  #footer .footer-top .footer-menu ul li ul {
    margin-top: 1em;
  }
  #footer .footer-top .footer-menu ul li ul li {
    font-weight: 400;
  }
  #footer .footer-top .footer-menu ul li ul li a::before {
    content: "- ";
  }
  #footer .footer-top .btn-area {
    display: grid;
    gap: 16px;
    width: clamp(175px, 16vw, 280px);
    margin-left: auto;
  }
  #footer .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 45px;
    padding: 10px 0;
  }
  #footer .footer-bottom .footer-partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer-bottom .footer-partner .google {
    display: block;
    width: 105px;
  }
  #footer .footer-bottom .footer-partner .yahoo {
    width: 200px;
  }
  #footer .footer-bottom p {
    margin: 0;
    font-weight: 700;
  }
  #footer .copyright {
    display: block;
    padding: 16px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background-color: #0F1520;
  }
}