@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;800&display=swap");
@import url("https://use.typekit.net/yvr1aan.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
}

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

a:hover, a:active, a.active {
  color: #E6E6E6;
}

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

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

a, span {
  box-sizing: border-box;
}

br.brsp {
  display: none;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
header {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
}
header .inner {
  width: 100%;
  padding: 24px;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header .inner .logo a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;
}
header .inner .logo a h1 {
  width: 151px;
  height: 35px;
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  margin: 0px;
  display: block;
}
header .inner .logo a h2 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
header .inner ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 0 auto;
}
header .inner ul li {
  width: 120px;
}
header .inner ul li a {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  width: 100%;
  height: 40px;
  background-color: #fb4b23;
  border-radius: 20px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.15s ease-in;
}
header .inner ul li a:hover {
  color: #FFF;
  background-color: #f7931e;
}
header .inner .hum {
  width: 40px;
  height: 40px;
  margin: 0 0 0 8px;
  border-radius: 20px;
  background-color: #fb4b23;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in 0s;
  cursor: pointer;
}
header .inner .hum:hover {
  background-color: #f7931e;
}
header .inner .hum.on div {
  transform: rotate(180deg);
}
header .inner .hum.on div span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}
header .inner .hum.on div span:nth-child(2) {
  opacity: 0;
}
header .inner .hum.on div span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}
header .inner .hum div {
  width: 16px;
  height: 16px;
  position: relative;
  transition: all 0.3s ease-in 0s;
}
header .inner .hum div span {
  width: 16px;
  height: 2px;
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 0px;
  transition: all 0.15s ease-in 0s;
}
header .inner .hum div span:nth-child(1) {
  top: 2px;
}
header .inner .hum div span:nth-child(2) {
  top: 7px;
}
header .inner .hum div span:nth-child(3) {
  top: 12px;
}

nav {
  width: 100%;
  min-width: 1080px;
  background-color: #fb4b23;
  position: fixed;
  top: 88px;
  left: 0px;
  z-index: 999;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s ease-out 0s;
  pointer-events: none;
  overflow: auto;
}
nav.on {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
nav .wrapper {
  width: 100%;
  max-height: calc(100vh - 88px);
  padding: 40px 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: auto;
}
nav .wrapper .inner {
  text-align: left;
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px 0;
}
nav .wrapper .inner dl {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
nav .wrapper .inner dl dt {
  width: 100%;
  padding: 0 0 8px 0;
  margin-bottom: 16px;
  border-bottom: solid 1px #000;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
nav .wrapper .inner dl dt.cat1 span {
  width: 324px;
  height: 24px;
  background-image: url(../images/title_cat1.png);
}
nav .wrapper .inner dl dt.cat2 span {
  width: 202px;
  height: 25px;
  background-image: url(../images/title_cat2.png);
}
nav .wrapper .inner dl dt.cat3 span {
  width: 155px;
  height: 25px;
  background-image: url(../images/title_cat3.png);
}
nav .wrapper .inner dl dt span {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
nav .wrapper .inner dl dd {
  width: 100%;
}
nav .wrapper .inner dl dd:not(:last-child) {
  margin-bottom: 40px;
}
nav .wrapper .inner dl dd.interview h5 {
  width: 100%;
  background-image: url(../images/dotline.png);
  background-repeat: repeat-x;
  background-position: center left;
  background-size: 6px 2px;
  margin-bottom: 16px;
}
nav .wrapper .inner dl dd.interview h5 span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  background-color: #fb4b23;
  padding: 8px 8px 8px 0;
  display: inline-block;
}
nav .wrapper .inner dl dd.interview ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;
}
nav .wrapper .inner dl dd.interview ul li {
  width: 170px;
}
nav .wrapper .inner dl dd.interview ul li a {
  align-items: center;
  gap: 0 8px;
}
nav .wrapper .inner dl dd.interview ul li a::before {
  width: 48px;
  height: 48px;
  background-color: #FFF;
  background-size: contain;
  border-right: none;
  border-radius: 24px;
}
nav .wrapper .inner dl dd.interview ul li a.pp1::before {
  background-image: url(../images/thumb_pp1.jpg);
}
nav .wrapper .inner dl dd.interview ul li a.pp2::before {
  background-image: url(../images/thumb_pp2.jpg);
}
nav .wrapper .inner dl dd.interview ul li a.pp3::before {
  background-image: url(../images/thumb_pp3.jpg);
}
nav .wrapper .inner dl dd.interview ul li a.pp4::before {
  background-image: url(../images/thumb_pp4.jpg);
}
nav .wrapper .inner dl dd.interview ul li a.pp5::before {
  background-image: url(../images/thumb_pp5.jpg);
}
nav .wrapper .inner dl dd.interview ul li a.pp6::before {
  background-image: url(../images/thumb_pp6.jpg);
}
nav .wrapper .inner dl dd.interview ul li a span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}
nav .wrapper .inner dl dd ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 40px;
}
nav .wrapper .inner dl dd ul li {
  transition: opacity 0.2s ease-in 0s;
}
nav .wrapper .inner dl dd ul li:hover {
  opacity: 0.7;
}
nav .wrapper .inner dl dd ul li a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0 8px;
}
nav .wrapper .inner dl dd ul li a::before {
  content: "";
  width: 14px;
  border-right: solid 1px #FFF;
  background-image: url(../images/arrow_navi.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 9px 10px;
  display: block;
}
nav .wrapper .inner dl dd ul li a span {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
}

footer {
  text-align: left;
  width: 100%;
  padding: 48px 0;
  box-sizing: border-box;
  position: relative;
}
footer .pgtop {
  width: 40px;
  height: 96px;
  position: fixed;
  top: calc(100% - 63px - 115px);
  right: 0px;
  z-index: 10;
  display: none;
}
footer .pgtop a {
  width: 100%;
  height: 100%;
  border-radius: 8px 0 0 8px;
  background-color: #fb4b23;
  background-image: url(../images/pagetop.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 46px;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  transition: all 0.3s ease-in 0s;
}
footer .pgtop a:hover {
  background-color: #f7931e;
}
footer .link {
  width: calc(100% - 160px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px 0;
}
footer .link a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  transition: all 0.3s ease-in 0s;
}
footer .link a:hover {
  color: #f7931e;
}
footer .link p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  br.brsp {
    display: block;
  }

  header .inner {
    padding: 16px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }
  header .inner .logo a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
  }
  header .inner .logo a h1 {
    width: 151px;
    height: 35px;
    background-image: url(../images/logo.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin: 0px;
    display: block;
  }
  header .inner .logo a h2 {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  header .inner ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 0 auto;
  }
  header .inner ul li {
    width: 102px;
  }
  header .inner ul li a {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    width: 100%;
    height: 40px;
    background-color: #fb4b23;
    border-radius: 20px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease-in;
  }
  header .inner ul li a:hover {
    color: #FFF;
    background-color: #f7931e;
  }
  header .inner .hum {
    width: 40px;
    height: 40px;
    margin: 0 0 0 8px;
    border-radius: 20px;
    background-color: #fb4b23;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in 0s;
    cursor: pointer;
  }
  header .inner .hum:hover {
    background-color: #f7931e;
  }
  header .inner .hum.on div {
    transform: rotate(180deg);
  }
  header .inner .hum.on div span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  header .inner .hum.on div span:nth-child(2) {
    opacity: 0;
  }
  header .inner .hum.on div span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }
  header .inner .hum div {
    width: 16px;
    height: 16px;
    position: relative;
    transition: all 0.3s ease-in 0s;
  }
  header .inner .hum div span {
    width: 16px;
    height: 2px;
    background-color: #FFF;
    display: block;
    position: absolute;
    left: 0px;
    transition: all 0.15s ease-in 0s;
  }
  header .inner .hum div span:nth-child(1) {
    top: 2px;
  }
  header .inner .hum div span:nth-child(2) {
    top: 7px;
  }
  header .inner .hum div span:nth-child(3) {
    top: 12px;
  }

  nav {
    min-width: 100%;
    position: fixed;
    top: 89px;
    left: 0px;
    overflow: auto;
  }
  nav .wrapper {
    width: 100%;
    max-height: calc(100vh - 89px);
    padding: 24px 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: auto;
  }
  nav .wrapper .inner {
    text-align: left;
    width: calc(100% - 24px);
    padding-bottom: 48px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px 0;
  }
  nav .wrapper .inner dl {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav .wrapper .inner dl dt {
    width: 100%;
    padding: 0 0 8px 0;
    margin-bottom: 16px;
    border-bottom: solid 1px #000;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav .wrapper .inner dl dt.cat1 span {
    width: 100%;
    height: 20px;
    background-image: url(../images/title_cat1.png);
  }
  nav .wrapper .inner dl dt.cat2 span {
    width: 100%;
    height: 20px;
    background-image: url(../images/title_cat2.png);
  }
  nav .wrapper .inner dl dt.cat3 span {
    width: 100%;
    height: 20px;
    background-image: url(../images/title_cat3.png);
  }
  nav .wrapper .inner dl dt span {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
  }
  nav .wrapper .inner dl dd {
    width: 100%;
  }
  nav .wrapper .inner dl dd:not(:last-child) {
    margin-bottom: 40px;
  }
  nav .wrapper .inner dl dd.interview h5 {
    width: 100%;
    background-image: url(../images/dotline.png);
    background-repeat: repeat-x;
    background-position: center left;
    background-size: 6px 2px;
    margin-bottom: 16px;
  }
  nav .wrapper .inner dl dd.interview h5 span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    background-color: #fb4b23;
    padding: 8px 8px 8px 0;
    display: inline-block;
  }
  nav .wrapper .inner dl dd.interview ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  nav .wrapper .inner dl dd.interview ul li {
    width: 100%;
  }
  nav .wrapper .inner dl dd.interview ul li a {
    align-items: center;
    gap: 0 8px;
  }
  nav .wrapper .inner dl dd.interview ul li a::before {
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
  nav .wrapper .inner dl dd.interview ul li a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  nav .wrapper .inner dl dd.interview ul li a span br.sp {
    display: none;
  }
  nav .wrapper .inner dl dd ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
  }
  nav .wrapper .inner dl dd ul li {
    transition: opacity 0.2s ease-in 0s;
  }
  nav .wrapper .inner dl dd ul li:hover {
    opacity: 0.7;
  }
  nav .wrapper .inner dl dd ul li a {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0 8px;
  }
  nav .wrapper .inner dl dd ul li a::before {
    content: "";
    width: 14px;
    border-right: solid 1px #FFF;
    background-image: url(../images/arrow_navi.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 9px 10px;
    display: block;
  }
  nav .wrapper .inner dl dd ul li a span {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
  }

  footer {
    padding: 40px 0 40px 0;
  }
  footer .pgtop {
    width: 32px;
    height: 72px;
    position: fixed;
    top: calc(100% - 72px - 72px);
  }
  footer .pgtop a {
    width: 100%;
    height: 100%;
    border-radius: 8px 0 0 8px;
    background-color: #fb4b23;
    background-image: url(../images/pagetop.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 46px;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    transition: all 0.3s ease-in 0s;
  }
  footer .pgtop a:hover {
    background-color: #f7931e;
  }
  footer .link {
    width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  footer .link a {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    transition: all 0.3s ease-in 0s;
  }
  footer .link a:hover {
    color: #f7931e;
  }
  footer .link p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
  }
}

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