@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Albert+Sans:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --main-color: #0057AA;
  --text-color: #343434;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-jp: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Albert Sans", sans-serif;
  --font-size-base-pc: 1.6rem;
  --font-size-base-sp: 1.4rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  html {
    font-size: calc(34% + 0.25vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 1.85;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
    letter-spacing: 0;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12;
  width: 100vw;
  padding: 0 4rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-header {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 60px;
    padding: 0 1.6rem;
  }
}
.l-footer {
  overflow: hidden;
}

.l-main {
  overflow: hidden;
  margin-top: 30rem;
}

@media (max-width: 767px) {
  .l-main {
    margin-top: 16rem;
  }
}
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container {
  width: 92%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) and (max-width: 999px) {
  .container {
    width: 88%;
  }
}
@media (max-width: 767px) {
  .container {
    width: 88%;
  }
}
.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  color: #fff;
  font-weight: 600;
  padding: 1.6rem 3.2rem 2rem 3.2rem;
  min-width: 18rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  background: #001976;
}
.c-button.has-allow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-button.has-allow img {
  display: block;
  width: 2.4rem;
}

.c-button:hover {
  color: #fff;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  opacity: 1;
}

@media (max-width: 767px) {
  .c-button.has-allow img {
    width: 1.6rem;
  }
}
.c-link-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-link-outer::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_link_outer.png) no-repeat center;
  background-size: contain;
  overflow: hidden;
  margin-left: 0.6rem;
}

.c-icon-circle-allow {
  width: 5rem;
  height: 5rem;
  position: relative;
  border: 1px solid var(--main-color);
  border-radius: 10rem;
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-icon-circle-allow .allow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 0.6rem;
  height: 1rem;
  overflow: hidden;
}
.c-icon-circle-allow .allow::before, .c-icon-circle-allow .allow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
  transition: 0.2s cubic-bezier(0.35, 0.1, 0.2, 1);
}
.c-icon-circle-allow .allow::after {
  background-image: url(../img/common/icon_button_allow.svg);
}
.c-icon-circle-allow .allow::before {
  background-image: url(../img/common/icon_button_allow_w.svg);
  left: -100%;
}
.c-icon-circle-allow.white {
  border-color: #fff;
}
.c-icon-circle-allow.white .allow::after {
  background-image: url(../img/common/icon_button_allow_w.svg);
}
.c-icon-circle-allow.white .allow::before {
  background-image: url(../img/common/icon_button_allow.svg);
  left: -100%;
}

.hover .c-icon-circle-allow {
  background-color: var(--main-color);
}
.hover .c-icon-circle-allow .allow::before, .hover .c-icon-circle-allow .allow::after {
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
}
.hover .c-icon-circle-allow.white {
  background-color: #fff;
}

.input-text {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
  line-height: 1.65;
  border: 1px solid #CDD6DD;
}

.input-textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: none;
  font-size: 1.6rem;
  border: 1px solid #CDD6DD;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1rem;
  background: #fff;
  border: 1px solid #CDD6DD;
  height: 44px;
  vertical-align: middle;
  font-size: 1.6rem;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .c-link-outer::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 2.4rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  left: 0.8rem;
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-bread-crumb ul li a {
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 2.4rem;
}

.none-visual .c-bread-crumb {
  margin-bottom: 6.4rem;
}
.none-visual .c-bread-crumb .container {
  border-bottom: 1px solid #CDD6DD;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.c-hover-roll:hover .c-hover-roll__text > span {
  -webkit-animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
          animation: textRollAnime 0.3s cubic-bezier(0.2, 0.58, 0.3, 1) 0s 1 normal none;
}

.c-hover-roll__text {
  display: block;
  height: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.c-hover-roll__text > span {
  display: block;
  width: 100%;
}
.c-hover-roll__text > span + span {
  left: 0;
  position: absolute;
  top: 100%;
}

@-webkit-keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes textRollAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.p-header {
  width: 100%;
  height: 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;
  position: relative;
}

.p-header__logo {
  width: 31rem;
  line-height: 1;
  position: fixed;
  top: 4rem;
  left: 4rem;
}
.p-header__logo a {
  display: block;
}

.p-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.6rem;
  position: fixed;
  top: 4rem;
  right: 4rem;
}
.p-header__buttons .c-button {
  width: 22rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 1;
  padding: 1.6rem 3.2rem;
}
.p-header__buttons .c-button.recruit {
  background-color: #fff;
  color: #001976;
}
.p-header__buttons .c-button.entry-26 {
  background-color: #0057AA;
}
.p-header__buttons .c-button.entry-27 {
  background-color: #001976;
}

.p-header__navi {
  position: fixed;
  top: 0;
  left: -100vw;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  width: 100vw;
  max-width: 68rem;
  height: 100dvh;
  overflow-y: scroll;
  padding: 8.8rem 8rem;
}
.p-header__navi::-webkit-scrollbar {
  width: 12px;
}
.p-header__navi::-webkit-scrollbar-track {
  background: #e5e5e5;
  border: none;
  border-radius: 10px;
}
.p-header__navi::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-header__navi .p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.p-header__navi .p-gnavi .parent:not(:last-of-type) {
  margin-bottom: 4rem;
}
.p-header__navi .p-gnavi .child .group-name {
  color: #0057AA;
}

.p-header__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  margin-top: 5.6rem;
}
.p-header__profile .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-header__profile .content .logo {
  margin-bottom: 1.6rem;
}
.p-header__profile .content .logo img {
  width: 24rem;
}
.p-header__profile .content .address {
  font-size: 1.4rem;
  line-height: 1.45;
  margin-bottom: 1.6rem;
}
.p-header__profile .content .copyright {
  color: #A3A3A3;
  letter-spacing: 0;
}
.p-header__profile .content .site-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.4rem;
  margin-bottom: 1.6rem;
}
.p-header__profile .sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.6rem 0;
}
.p-header__profile .sns-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.8rem;
}
.p-header__profile .sns-link img {
  width: 1.6rem;
}

.menu-open .p-header__navi {
  opacity: 1;
  pointer-events: initial !important;
  left: 0 !important;
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.3, 1);
          transition-timing-function: cubic-bezier(0, 1, 0.3, 1);
}

@media (max-width: 767px) {
  .p-header {
    letter-spacing: 0;
  }
  .p-header__logo {
    width: 17rem;
    position: relative;
    top: 0;
    left: 0;
  }
  .p-header__buttons {
    position: relative;
    top: 0;
    right: 0;
    gap: 0 0.6rem;
  }
  .p-header__buttons .c-button {
    display: none;
    width: auto;
    height: auto;
    min-width: initial;
    padding: 0.8rem 1.6rem 0.8rem 1.6rem;
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .p-header__navi {
    padding: 12rem 2.4rem 4rem 2.4rem;
  }
  .p-header__navi .group {
    width: 50%;
  }
  .p-header__navi .p-gnavi {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }
  .p-header__profile {
    font-size: 1rem;
    margin-top: 2.4rem;
  }
  .p-header__profile .content .logo {
    margin-bottom: 1rem;
  }
  .p-header__profile .content .logo img {
    width: 15rem;
  }
  .p-header__profile .content .address {
    font-size: 1rem;
  }
  .p-header__profile .content .site-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu-open .p-header__logo {
    z-index: 12;
  }
  .menu-open .p-header__navi {
    -webkit-transition-duration: 0.8s;
            transition-duration: 0.8s;
  }
}
.p-footer {
  background-color: #80CEF5;
  background-image: url(../img/common/bg_footer.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  min-height: 64rem;
  color: #fff;
  padding: 5.6rem 0;
  position: relative;
}
.p-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(121, 191, 216, 0.7);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.p-footer .container {
  position: relative;
  z-index: 1;
}
.p-footer .c-link-outer::after {
  background-image: url(../img/common/icon_link_outer_w.png);
}

.p-footer__gnavi {
  margin-top: 2.4rem;
}
.p-footer__gnavi .group-sp {
  display: contents;
}
.p-footer__gnavi.p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-footer__gnavi.p-gnavi a {
  color: #fff;
}
.p-footer__gnavi.p-gnavi .parent {
  font-size: 1.5rem;
  margin-bottom: 4rem;
}
.p-footer__gnavi.p-gnavi .parent:not(:last-of-type) {
  margin-right: 5.6rem;
}
.p-footer__gnavi.p-gnavi .parent:last-of-type {
  margin-right: 4rem;
}
.p-footer__gnavi.p-gnavi .parent > a {
  color: #fff;
}
.p-footer__gnavi.p-gnavi .parent > a::before {
  background-color: #fff;
}
.p-footer__gnavi.p-gnavi .child .group-name::after {
  border-color: #fff;
}
.p-footer__gnavi.p-gnavi .child .item {
  font-size: 1.3rem;
}
.p-footer__gnavi.p-gnavi .child .item::before {
  background-color: #fff;
}

.p-footer__profile {
  font-size: 1.4rem;
}
.p-footer__profile a {
  color: #fff;
}
.p-footer__profile .content {
  margin-bottom: 0.8rem;
}
.p-footer__profile .content .logo {
  width: 32rem;
  margin-bottom: 1.6rem;
}
.p-footer__profile .content .address {
  margin-bottom: 2.4rem;
}
.p-footer__profile .content .site-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
.p-footer__profile .sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
}
.p-footer__profile .sns-link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.8rem;
}
.p-footer__profile .sns-link img {
  width: 1.6rem;
}

.p-footer__copyright {
  margin-top: 2.4rem;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-footer {
    background-image: url(../img/common/bg_footer_sp.jpg);
    background-position: left bottom 4rem;
    background-size: contain;
    background-color: #80CEF5;
    padding: 4rem 0;
  }
  .p-footer__gnavi .group-sp {
    display: block;
    width: 50%;
  }
  .p-footer__gnavi .group-pc {
    display: contents;
  }
  .p-footer__gnavi.p-gnavi {
    margin-bottom: 14rem;
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer__gnavi.p-gnavi .parent:not(:last-of-type) {
    margin-right: 0;
  }
  .p-footer__gnavi.p-gnavi .child .group-name::after {
    width: 4rem;
  }
  .p-footer__profile {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 10%;
  }
  .p-footer__profile .content {
    width: 45%;
  }
  .p-footer__profile .content .logo {
    width: 100%;
  }
  .p-footer__profile .content .address {
    margin-bottom: 1.6rem;
  }
  .p-footer__profile .content .site-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer__profile .sns-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-bottom: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
  .p-footer__copyright {
    font-size: 1rem;
    margin-top: 1.6rem;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-loading__bar {
  position: relative;
  width: 90%;
  height: 1px;
  max-width: 20rem;
  margin: 0 auto;
  overflow: hidden;
}
.p-loading__bar span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
}
.p-loading__bar::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #001976;
  -webkit-animation: loading-bar-anim 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
          animation: loading-bar-anim 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}

@-webkit-keyframes loading-bar-anim {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}

@keyframes loading-bar-anim {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0);
  }
}
.p-menu-btn {
  width: 8rem;
  height: 8rem;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background-color: #fff;
  border-radius: 4rem;
  position: relative;
  margin-left: 0.8rem;
}
.p-menu-btn:hover {
  -webkit-box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.14);
          box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.14);
}
.p-menu-btn span {
  display: block;
  width: 3rem;
  height: 2px;
  position: absolute;
  z-index: 1;
  left: calc(50% - 1.5rem);
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-menu-btn span.l1 {
  top: 3rem;
  background-color: #6CA5D9;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-menu-btn span.l2 {
  top: 3.9rem;
  background-color: #0057AA;
}
.p-menu-btn span.l3 {
  top: 4.8rem;
  background-color: #1D1F82;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 3.9rem;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-145deg);
          transform: rotate(-145deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-menu-btn {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
    width: 4rem;
    height: 4rem;
    margin-left: 0.4rem;
  }
  .p-menu-btn span {
    width: 2rem;
    left: calc(50% - 1rem);
  }
  .p-menu-btn span.l1 {
    top: 1.3rem;
  }
  .p-menu-btn span.l2 {
    top: 1.9rem;
  }
  .p-menu-btn span.l3 {
    top: 2.5rem;
  }
  .menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
    top: 1.8rem;
  }
}
.p-gnavi .parent {
  position: relative;
}
.p-gnavi .parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  font-size: 1.6rem;
  color: #001976;
  position: relative;
}
.p-gnavi .parent > a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--main-color);
  width: 8.8rem;
  height: 1px;
}
.p-gnavi .child {
  font-size: 1.5rem;
  line-height: 1.4;
}
.p-gnavi .child .group-name {
  margin-bottom: 1.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  margin-top: 2.4rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .child .group-name::after {
  content: "";
  display: block;
  height: 1px;
  width: 6.4rem;
  border-width: 0 0 1px 0;
  border-style: dotted;
  border-color: #0057AA;
}
.p-gnavi .child .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-family: var(--font-family-base);
}
.p-gnavi .child .item::before {
  content: "";
  display: block;
  background-color: var(--main-color);
  width: 3px;
  height: 3px;
  border-radius: 2px;
  margin-right: 0.8rem;
  margin-top: 0.9rem;
}
.p-gnavi .child .item:not(:last-of-type) {
  margin-bottom: 1.2rem;
}

@media (max-width: 767px) {
  .p-gnavi .parent > a {
    font-size: 1.4rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
  }
  .p-gnavi .child {
    font-size: 1.3rem;
  }
  .p-gnavi .child .group-name {
    margin-bottom: 1.4rem;
    margin-top: 1.6rem;
  }
  .p-gnavi .child .item::before {
    margin-right: 0.6rem;
    margin-top: 0.8rem;
  }
}
.p-gotop {
  color: #fff;
}

.p-gotop__button {
  cursor: pointer;
}
.p-gotop__button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-gotop__button span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url(../img/common/icon_gotop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 0.4rem;
}
.p-gotop__button span:hover {
  opacity: 0.65;
}

.page-top .l-main {
  margin-top: 0;
}
.page-top .p-header__buttons .c-button {
  display: none;
}

.page-interview-list {
  background-image: url(../img/interview/bg_interview_list.png);
  background-repeat: repeat-y;
  background-size: cover;
  background-attachment: fixed;
}
.page-interview-list .container {
  max-width: 1180px;
}

.page-interview-detail .l-main {
  margin-top: 0;
}

.page-talk-session-detail .l-main {
  margin-top: 0;
}

.page-message {
  background-image: url(../img/message/bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

@media (max-width: 767px) {
  .page-message {
    background-image: url(../img/message/bg_sp.svg);
  }
}
.page-special .l-main {
  overflow: initial;
  margin-top: 0;
  position: relative;
}
.page-special .l-main::after, .page-special .l-main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.page-special .l-main::before {
  background-image: url(../img/division/bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  z-index: -1;
}
.page-special .l-main::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(220, 240, 247)));
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(220, 240, 247));
  z-index: -2;
}

.page-division .l-main {
  margin-top: 0;
  position: relative;
}
.page-division .l-main::after, .page-division .l-main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.page-division .l-main::before {
  background-image: url(../img/division/bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  z-index: -1;
}
.page-division .l-main::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(220, 240, 247)));
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(220, 240, 247));
  z-index: -2;
}

.page-division-detail .l-main {
  margin-top: 0;
  padding-top: 30rem;
  position: relative;
}
.page-division-detail .l-main::after, .page-division-detail .l-main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.page-division-detail .l-main::before {
  background-image: url(../img/division/bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  z-index: -1;
}
.page-division-detail .l-main::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(220, 240, 247)));
  background: linear-gradient(180deg, rgb(255, 255, 255), rgb(220, 240, 247));
  z-index: -2;
}

@media (max-width: 767px) {
  .page-division-detail .l-main {
    padding-top: 20rem;
  }
  .page-division-detail .l-main::before {
    background-image: url(../img/division/bg_sp.svg);
  }
}
.page-news-list {
  background-color: #F0F7FA;
}
.page-news-list .p-section-entry {
  margin-top: 20rem;
}

@media (max-width: 767px) {
  .page-news-list .p-section-entry {
    margin-top: 10rem;
  }
}
.page-news-detail {
  background-image: url(../img/post/bg_post_detail.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

@media (max-width: 767px) {
  .page-news-detail {
    background-image: url(../img/post/bg_post_detail_sp.svg);
  }
}
.p-top-visual {
  width: 100vw;
  height: 100vh;
  background-color: #7ECDF2;
  position: relative;
}

.p-top-visual__navi,
.p-top-visual__char {
  aspect-ratio: 2880/1710;
  width: min(100vw, 168.4210526316vh);
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.p-top-visual__char {
  background-image: url(../img/top/img_top_visual.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
.p-top-visual__char .item {
  position: absolute;
  height: auto;
}
.p-top-visual__char .item.airport {
  width: 6.5%;
  top: 9%;
  right: 37.6%;
}
.p-top-visual__char .item.lighthouse {
  width: 5.5%;
  top: 11.5%;
  right: 71.4%;
}
.p-top-visual__char .item.sakurajima {
  width: 10.5%;
  top: 31.5%;
  right: 27.7%;
}
.p-top-visual__char .item.dolphine {
  width: 12%;
  top: 51%;
  right: 36%;
}
.p-top-visual__char .item.chicken {
  width: 6.5%;
  top: 66.3%;
  right: 20%;
}
.p-top-visual__char .item.nyangokun {
  width: 3.2%;
  top: 57.4%;
  right: 57.4%;
}

.p-top-visual__navi {
  z-index: 11;
}
.p-top-visual__navi .c-button {
  position: absolute;
  background-color: #0057AA;
  min-width: 16rem;
  padding: 0.6rem 2rem 0.9rem 2rem;
  font-family: var(--font-family-jp);
  font-size: 1.5rem;
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  border: 2px solid #fff;
}
.p-top-visual__navi .c-button:hover {
  -webkit-box-shadow: 0 0 0 0 rgb(224, 224, 224);
          box-shadow: 0 0 0 0 rgb(224, 224, 224);
}
.p-top-visual__navi .c-button::before, .p-top-visual__navi .c-button::after {
  content: "";
  display: inline-block;
  border-style: solid;
  width: 0;
  height: 0;
  position: absolute;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
}
.p-top-visual__navi .c-button::before {
  border-width: 12px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
}
.p-top-visual__navi .c-button::after {
  border-width: 12px 12px 0 12px;
  border-color: #0057AA transparent transparent transparent;
}
.p-top-visual__navi .c-button.allow-tl::before, .p-top-visual__navi .c-button.allow-tl::after {
  left: 20px;
  -webkit-transform: rotate(180deg) scaleX(0.6);
          transform: rotate(180deg) scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-tl::before {
  top: -12px;
}
.p-top-visual__navi .c-button.allow-tl::after {
  top: -8px;
}
.p-top-visual__navi .c-button.allow-bc::before, .p-top-visual__navi .c-button.allow-bc::after {
  left: calc(50% - 14px);
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-bc::before {
  bottom: -12px;
}
.p-top-visual__navi .c-button.allow-bc::after {
  bottom: -8px;
}
.p-top-visual__navi .c-button.allow-tc::before, .p-top-visual__navi .c-button.allow-tc::after {
  left: calc(50% - 14px);
  -webkit-transform: rotate(180deg) scaleX(0.6);
          transform: rotate(180deg) scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-tc::before {
  top: -12px;
}
.p-top-visual__navi .c-button.allow-tc::after {
  top: -8px;
}
.p-top-visual__navi .c-button.allow-bl::before, .p-top-visual__navi .c-button.allow-bl::after {
  left: 30px;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-bl::before {
  bottom: -12px;
}
.p-top-visual__navi .c-button.allow-bl::after {
  bottom: -8px;
}
.p-top-visual__navi .c-button.allow-br::before, .p-top-visual__navi .c-button.allow-br::after {
  right: 20px;
  -webkit-transform: scaleX(0.6);
          transform: scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-br::before {
  bottom: -12px;
}
.p-top-visual__navi .c-button.allow-br::after {
  bottom: -8px;
}
.p-top-visual__navi .c-button.allow-cl::before, .p-top-visual__navi .c-button.allow-cl::after {
  top: calc(50% - 0.8rem);
  -webkit-transform: rotate(90deg) scaleX(0.6);
          transform: rotate(90deg) scaleX(0.6);
}
.p-top-visual__navi .c-button.allow-cl::before {
  left: -18px;
}
.p-top-visual__navi .c-button.allow-cl::after {
  left: -14px;
}
.p-top-visual__navi .c-button.news {
  left: 23%;
  top: 23%;
}
.p-top-visual__navi .c-button.recruit {
  left: 38%;
  top: 9%;
}
.p-top-visual__navi .c-button.interview {
  left: 55%;
  top: 26%;
}
.p-top-visual__navi .c-button.welfare {
  left: 37%;
  bottom: 44%;
}
.p-top-visual__navi .c-button.special {
  right: 25%;
  top: 47%;
}
.p-top-visual__navi .c-button.talk-session {
  left: 40%;
  top: 32%;
}
.p-top-visual__navi .c-button.business {
  left: 58%;
  top: 18%;
}
.p-top-visual__navi .c-button.message {
  right: 33%;
  bottom: 24%;
}

.is_animate_done .p-top-visual__navi .c-button {
  opacity: 1;
}

.menu-open .p-top-visual__navi {
  z-index: 9;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-visual__navi,
  .p-top-visual__char {
    aspect-ratio: 1724/2298;
    width: min(100dvw, 75.0217580505dvh);
    height: auto;
  }
  .p-top-visual__navi .c-button.news {
    left: 27%;
    top: 15%;
  }
  .p-top-visual__navi .c-button.recruit {
    left: 18%;
    top: 20%;
  }
  .p-top-visual__navi .c-button.interview {
    left: 48%;
    top: 32.5%;
  }
  .p-top-visual__navi .c-button.welfare {
    right: 47%;
    bottom: 40%;
  }
  .p-top-visual__navi .c-button.special {
    right: 23%;
    top: 48%;
  }
  .p-top-visual__navi .c-button.talk-session {
    left: 22%;
    top: 36%;
  }
  .p-top-visual__navi .c-button.business {
    left: 52%;
    top: 27%;
  }
  .p-top-visual__navi .c-button.message {
    left: 48%;
    bottom: 30.5%;
  }
  .p-top-visual__char {
    background-image: url(../img/top/img_top_visual_tb.jpg);
    background-position: center;
  }
  .p-top-visual__char .item.lighthouse {
    width: 9.5%;
    top: 7%;
    right: initial;
    left: 26%;
  }
  .p-top-visual__char .item.airport {
    width: 12.5%;
    top: 21.5%;
    right: 41.6%;
  }
  .p-top-visual__char .item.nyangokun {
    width: 6.5%;
    top: 54%;
    right: initial;
    left: 18%;
  }
  .p-top-visual__char .item.chicken {
    width: 12%;
    top: 60.5%;
    right: 11%;
  }
  .p-top-visual__char .item.sakurajima {
    width: 17%;
    top: 37.5%;
    right: 26%;
  }
  .p-top-visual__char .item.dolphine {
    width: 20%;
    top: 51%;
    right: 39%;
  }
}
@media (max-width: 767px) {
  .p-top-visual__navi,
  .p-top-visual__char {
    aspect-ratio: 1724/2298;
    width: 100vw;
    height: auto;
    top: 2.4rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-top-visual__char {
    background-image: url(../img/top/img_top_visual_tb.jpg);
  }
  .p-top-visual__char .item.lighthouse {
    width: 10.5%;
    top: 3%;
    right: 64.4%;
  }
  .p-top-visual__char .item.airport {
    width: 15%;
    top: 19%;
    right: 39.6%;
  }
  .p-top-visual__char .item.nyangokun {
    width: 8%;
    top: 53%;
    right: initial;
    left: 16%;
  }
  .p-top-visual__char .item.chicken {
    width: 12.5%;
    top: 61.3%;
    right: 11%;
  }
  .p-top-visual__char .item.sakurajima {
    width: 22%;
    top: 35%;
    right: 23%;
  }
  .p-top-visual__char .item.dolphine {
    width: 19%;
    top: 52%;
    right: 39%;
  }
  .p-top-visual__navi .c-button {
    min-width: 10rem;
    padding: 0.2rem 1.6rem 0.4rem 1.6rem;
    font-size: 1.2rem;
  }
  .p-top-visual__navi .c-button.news {
    left: 24.5%;
    top: 11%;
  }
  .p-top-visual__navi .c-button.news::after, .p-top-visual__navi .c-button.news::before {
    left: 10px;
  }
  .p-top-visual__navi .c-button.special {
    right: 14%;
    top: 48%;
  }
  .p-top-visual__navi .c-button.special::before, .p-top-visual__navi .c-button.special::after {
    left: 10px;
  }
  .p-top-visual__navi .c-button.business {
    left: 56%;
    top: 10%;
  }
  .p-top-visual__navi .c-button.business::before, .p-top-visual__navi .c-button.business::after {
    -webkit-transform: scaleX(0.6);
            transform: scaleX(0.6);
    left: 10px;
    top: initial;
  }
  .p-top-visual__navi .c-button.business::before {
    bottom: -12px;
  }
  .p-top-visual__navi .c-button.business::after {
    bottom: -8px;
  }
  .p-top-visual__navi .c-button.recruit {
    left: 7%;
    top: 18%;
  }
  .p-top-visual__navi .c-button.recruit::after, .p-top-visual__navi .c-button.recruit::before {
    left: initial;
    right: 10px;
  }
  .p-top-visual__navi .c-button.interview {
    left: 40%;
    top: 29%;
  }
  .p-top-visual__navi .c-button.talk-session {
    left: 4%;
    top: 35%;
  }
  .p-top-visual__navi .c-button.talk-session::before, .p-top-visual__navi .c-button.talk-session::after {
    left: initial;
    right: 10px;
  }
  .p-top-visual__navi .c-button.message {
    left: initial;
    right: 4%;
    bottom: 20%;
  }
  .p-top-visual__navi .c-button.message::before {
    top: -12px;
  }
  .p-top-visual__navi .c-button.message::after {
    top: -8px;
  }
  .p-top-visual__navi .c-button.message::before, .p-top-visual__navi .c-button.message::after {
    left: 10px;
    -webkit-transform: rotate(180deg) scaleX(0.6);
            transform: rotate(180deg) scaleX(0.6);
  }
  .p-top-visual__navi .c-button.welfare {
    right: initial;
    left: 5%;
    bottom: 32%;
  }
  .p-top-visual__navi .c-button.welfare::before {
    top: -12px;
  }
  .p-top-visual__navi .c-button.welfare::after {
    top: -8px;
  }
  .p-top-visual__navi .c-button.welfare::before, .p-top-visual__navi .c-button.welfare::after {
    left: initial;
    right: calc(50% - 14px);
    -webkit-transform: rotate(180deg) scaleX(0.6);
            transform: rotate(180deg) scaleX(0.6);
  }
}
@media only screen and (max-width: 375px) {
  .p-top-visual {
    width: 100vw;
    height: 100vh;
  }
  .p-top-visual__navi,
  .p-top-visual__char {
    aspect-ratio: 1724/2298;
    width: 100vw;
    height: auto;
    top: 4rem;
    aspect-ratio: initial;
  }
  .p-top-visual__navi::after,
  .p-top-visual__char::after {
    display: block;
    padding-top: 133.3%;
    content: "";
  }
  .p-top-visual__char {
    background-image: url(../img/top/img_top_visual_sps.jpg);
  }
  .p-top-visual__char .item.lighthouse {
    width: 10%;
    top: 3%;
    right: initial;
    left: 10%;
  }
  .p-top-visual__char .item.airport {
    width: 15%;
    top: 10%;
    right: 40.6%;
  }
  .p-top-visual__char .item.nyangokun {
    width: 7.6%;
    top: 44%;
    right: initial;
    left: 17%;
  }
  .p-top-visual__char .item.chicken {
    width: 11.5%;
    top: 52.3%;
    right: 11%;
  }
  .p-top-visual__char .item.sakurajima {
    width: 21%;
    top: 26.4%;
    right: 24%;
  }
  .p-top-visual__char .item.dolphine {
    width: 18%;
    top: 42%;
    right: 40%;
  }
  .p-top-visual__navi .c-button {
    min-width: 9rem;
  }
  .p-top-visual__navi .c-button.news {
    left: 21%;
    top: 4%;
  }
  .p-top-visual__navi .c-button.news::after, .p-top-visual__navi .c-button.news::before {
    -webkit-transform: rotate(90deg) scaleX(0.6);
            transform: rotate(90deg) scaleX(0.6);
    top: 6px;
  }
  .p-top-visual__navi .c-button.news::before {
    left: -17px;
  }
  .p-top-visual__navi .c-button.news::after {
    left: -13px;
  }
  .p-top-visual__navi .c-button.special {
    right: 11%;
    top: 39%;
  }
  .p-top-visual__navi .c-button.business {
    left: 56%;
    top: 2%;
  }
  .p-top-visual__navi .c-button.recruit {
    left: 5%;
    top: 12%;
  }
  .p-top-visual__navi .c-button.interview {
    left: 41%;
    top: 20%;
  }
  .p-top-visual__navi .c-button.talk-session {
    left: 6%;
    top: 28%;
  }
  .p-top-visual__navi .c-button.message {
    right: 6%;
    bottom: 28%;
  }
  .p-top-visual__navi .c-button.message::after, .p-top-visual__navi .c-button.message::before {
    left: 10px;
  }
  .p-top-visual__navi .c-button.welfare {
    bottom: 42%;
    left: 7%;
  }
  .p-top-visual__navi .c-button {
    padding: 0.1rem 1rem 0.4rem 1rem;
  }
}
.p-top-content {
  position: fixed;
  z-index: 12;
  left: 8rem;
  bottom: 26rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.p-top-content .introduction h1 {
  color: #001976;
  font-size: 5.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  margin-bottom: 1.6rem;
  margin-left: -1.2rem;
}
.p-top-content .introduction h1 span {
  display: block;
  letter-spacing: 0.3rem;
  color: #0F266B;
  margin-bottom: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-top-content .introduction h1 span::after {
  content: "";
  display: block;
  width: calc(100% - 3.2rem);
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 1.4rem;
  top: 1rem;
  z-index: -1;
}
.p-top-content .introduction p {
  color: #fff;
  font-size: 2rem;
  font-weight: var(--font-weight-semiBold);
  margin-bottom: 6.4rem;
}

.is_animate_run .p-top-content {
  opacity: 1;
}

.menu-open .p-top-content {
  z-index: 9;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-content {
    bottom: 16rem;
  }
}
@media (max-width: 767px) {
  .p-top-content {
    left: 2.4rem;
    bottom: 7.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 4.8rem);
  }
  .p-top-content .introduction h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .p-top-content .introduction h1 span {
    font-size: 3.4rem;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
  }
  .p-top-content .introduction h1 span::after {
    left: 1rem;
    top: 0.8rem;
    width: calc(100% - 2rem);
  }
  .p-top-content .introduction p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .p-top-content {
    bottom: 7rem;
  }
  .p-top-content .introduction p {
    font-size: 1.2rem;
    margin-bottom: 1.6rem;
  }
  .p-top-content .introduction h1 span {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
}
.p-top-navi {
  position: fixed;
  z-index: 12;
  left: 8rem;
  bottom: 18rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.p-top-navi.auxiliary {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 1.6rem 0;
  position: fixed;
  right: 6.4rem;
  bottom: 8rem;
}
.p-top-navi .c-button {
  max-width: 20rem;
  padding: 1.6rem 4rem 2rem 4rem;
  height: 7rem;
  -webkit-box-shadow: 0.5rem 0.5rem 0 0 rgb(224, 224, 224);
          box-shadow: 0.5rem 0.5rem 0 0 rgb(224, 224, 224);
  font-family: var(--font-family-jp);
  font-size: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-navi .c-button.recruit {
  background-color: #fff;
  color: #001976;
}
.p-top-navi .c-button.entry-26 {
  background-color: #0057AA;
}
.p-top-navi .c-button.entry-27 {
  background-color: #001976;
}
.p-top-navi .c-button:hover {
  -webkit-box-shadow: 0 0 0 0 rgb(224, 224, 224);
          box-shadow: 0 0 0 0 rgb(224, 224, 224);
}

.is_animate_run .p-top-navi {
  opacity: 1;
}

.menu-open .p-top-navi {
  z-index: 9;
}
.menu-open .p-top-navi.auxiliary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 11 !important;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-navi {
    bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .p-top-navi {
    gap: 0 1.2rem;
    left: 2.4rem;
    bottom: 2.4rem;
    width: calc(100% - 4.8rem);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-navi .c-button {
    width: 32%;
    max-width: initial;
    min-width: initial;
    height: 4.2rem;
    padding: 1rem 1rem 1.2rem 1rem;
    font-size: 1.3rem;
    line-height: 1.25;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .p-top-navi {
    bottom: 2.4rem;
  }
  .p-top-navi .c-button {
    width: 30%;
  }
}
.p-interview-detail {
  font-size: 1.8rem;
}

.p-interview-detail__group-a {
  background-image: url(../img/interview/bg_interview_detail_a.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 16rem;
}

.p-interview-detail__group-b {
  background-image: url(../img/interview/bg_interview_detail_b.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 5.6rem;
}

.p-interview-detail__head {
  width: 84%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  grid-template-rows: 1fr;
  margin-bottom: 10rem;
  position: relative;
}
.p-interview-detail__head .content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  width: 100%;
  grid-column: 1/30;
  grid-row: 1;
  align-self: end;
}
.p-interview-detail__head .content h1 {
  z-index: 1;
  font-size: 5.8rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-interview-detail__head .content h1 span.base {
  padding: 0.8rem 1rem 1.2rem 1rem;
}
.p-interview-detail__head .content .profile {
  margin-top: 2rem;
  margin-left: 1.6rem;
  position: relative;
}
.p-interview-detail__head .content .profile .name {
  font-size: 4rem;
  line-height: 1;
  font-weight: var(--font-weight-medium);
  color: #00005C;
  margin-top: 2rem;
}
.p-interview-detail__head .content .profile .name .honor {
  font-size: 1.8rem;
  margin-left: 0.4rem;
  letter-spacing: 0;
}
.p-interview-detail__head .content .profile .division {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.65;
  border-left: 2px solid #6CA5D9;
  padding-left: 1.6rem;
}
.p-interview-detail__head .content .profile .division .uncommon-br {
  display: block;
}
.p-interview-detail__head .serial-number {
  font-size: 4rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-regular);
  font-style: italic;
  color: var(--main-color);
  position: absolute;
  right: -12rem;
  bottom: -7rem;
}
.p-interview-detail__head .serial-number .number {
  font-weight: var(--font-weight-extraLight);
  font-size: 16rem;
  padding-left: 0.8rem;
}
.p-interview-detail__head .main-image {
  display: block;
  -webkit-transform: translateX(6%);
          transform: translateX(6%);
  overflow: hidden;
  grid-column: 7/-3;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}
.p-interview-detail__head .main-image::before {
  content: "";
  display: block;
  padding-top: 73rem;
}
.p-interview-detail__head .main-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-interview-detail__head .content .profile {
  -webkit-transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  opacity: 0;
}

.inview.p-interview-detail__head .content .profile {
  opacity: 1;
}

.p-interview-detail__block-head .pre-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-medium);
  font-style: italic;
  color: #0057AA;
  margin-bottom: 6.4rem;
}
.p-interview-detail__block-head .pre-title::after {
  content: "";
  display: block;
  height: 1px;
  width: 24%;
  border-bottom: 1px solid #0057AA;
  margin-left: 1.6rem;
}
.p-interview-detail__block-head h3 {
  font-size: 3rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-interview-detail__block-head h3 span {
  display: block;
  background-color: #fff;
  padding: 0.8rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-interview-detail__block-body {
  font-size: 1.8rem;
  text-align: justify;
}

.p-interview-detail__block-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12%;
  padding-top: 12rem;
  padding-bottom: 28rem;
}
.p-interview-detail__block-a.container {
  max-width: 1170px;
  padding-right: 6%;
}
.p-interview-detail__block-a > .p-interview-detail__block-head {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-left: 6%;
}
.p-interview-detail__block-a > .p-interview-detail__block-body {
  margin-top: 9rem;
  text-align: justify;
}

.p-interview-detail__block-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5%;
  padding-bottom: 16rem;
}
.p-interview-detail__block-b.container {
  max-width: 1440px;
}
.p-interview-detail__block-b > .image {
  width: 50%;
}
.p-interview-detail__block-b > .content {
  width: 45%;
  padding-right: 10%;
}
.p-interview-detail__block-b > .content .p-interview-detail__block-head {
  margin-bottom: 4rem;
}
.p-interview-detail__block-b > .content .p-interview-detail__block-head .pre-title {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-interview-detail__block-b > .content .p-interview-detail__block-head .pre-title::after {
  margin-left: 0;
  margin-right: 1.6rem;
}
.p-interview-detail__schedule {
  background-image: url(../img/interview/bg_interview_detail_c.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-bottom: 15rem;
}
.p-interview-detail__schedule > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 10rem;
}
.p-interview-detail__schedule > .container > .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-interview-detail__schedule > .container > .image picture {
  display: block;
  width: calc(100vw - 68rem);
  position: relative;
  left: -6.7rem;
}
.p-interview-detail__schedule > .container > .image picture::before {
  display: block;
  padding-top: 75.38%;
  content: "";
}
.p-interview-detail__schedule > .container > .image picture img {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-interview-detail__schedule > .container > .image picture img.large {
  width: 85%;
  top: 0;
  left: 0;
}
.p-interview-detail__schedule > .container > .image picture img.small {
  width: 30%;
  bottom: 0;
  right: 0;
}
.p-interview-detail__schedule > .container > .content {
  width: 48rem;
}
.p-interview-detail__schedule > .container > .content > .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4rem;
}
.p-interview-detail__schedule > .container > .content > .head span {
  display: block;
  line-height: 1;
  text-align: right;
}
.p-interview-detail__schedule > .container > .content > .head .en {
  font-size: 6rem;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  color: #0057AA;
}
.p-interview-detail__schedule > .container > .content > .head .jp {
  font-size: 1.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
  margin-top: 0.4rem;
}
.p-interview-detail__schedule > .container > .content .figure {
  display: block;
  margin-top: 6.4rem;
}
.p-interview-detail__schedule > .container > .content .figure .figure-attention {
  width: 80%;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: 0;
  font-size: 1.3rem;
}

.p-interview-detail__message {
  padding-bottom: 15rem;
}
.p-interview-detail__message > .container {
  max-width: 88rem;
  background-color: #79BFD8;
  color: #fff;
  -webkit-box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 8rem 6% 12rem 6%;
  position: relative;
  border-radius: 1rem;
}
.p-interview-detail__message .heading {
  margin-bottom: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-interview-detail__message .heading span {
  font-family: var(--font-family-jp);
  text-align: center;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: var(--font-weight-semiBold);
  display: inline-block;
  position: relative;
  padding: 0 4rem;
}
.p-interview-detail__message .heading span::after, .p-interview-detail__message .heading span::before {
  content: "";
  display: block;
  width: 1px;
  height: 4.2rem;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-interview-detail__message .heading span::before {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  right: 0;
  left: initial;
}
.p-interview-detail__message .text {
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-jp);
  text-align: justify;
}

.p-interview-detail__other {
  background-image: url(../img/talk-session/bg_talk-session_detail_b.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16rem;
  padding-bottom: 16rem;
}

.p-interview-detail__other-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30%;
  min-width: 40rem;
  margin-left: 4%;
}
.p-interview-detail__other-head h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-interview-detail__other-head h3 .en {
  font-size: 7rem;
  line-height: 1;
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-regular);
  color: #0057AA;
}
.p-interview-detail__other-head h3 .jp {
  font-size: 1.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  margin-top: 0.72rem;
}

.p-interview-detail__other-slide .p-interview-list__block {
  width: 100%;
  padding-left: 1rem;
}
.p-interview-detail__other-slide .p-interview-list__block .visual h2 {
  left: -1rem;
}
.p-interview-detail__other-slide .p-interview-list__block .visual h2 span {
  font-size: 2rem;
}

.p-interview-detail__refresh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2rem;
  margin-top: 6.4rem;
}
.p-interview-detail__refresh .title {
  width: 30%;
  max-width: 13rem;
}
.p-interview-detail__refresh .summary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  font-weight: var(--font-weight-medium);
  text-align: justify;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-interview-detail__head .content h1 {
    font-size: 4.8rem;
  }
  .p-interview-detail__head .main-image {
    min-height: 66rem;
  }
  .p-interview-detail__schedule > .container > .content {
    width: 40rem;
  }
  .p-interview-detail__schedule > .container > .image picture {
    width: calc(100vw - 56rem);
  }
}
@media (max-width: 767px) {
  .p-interview-detail {
    font-size: 1.4rem;
  }
  .p-interview-detail__group-a {
    padding-top: 8rem;
  }
  .p-interview-detail__head {
    margin-bottom: 4rem;
    width: 92%;
    grid-template-columns: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-interview-detail__head .content {
    grid-column: none;
    grid-row: none;
  }
  .p-interview-detail__head .content h1 {
    gap: 0.4rem 0;
    font-size: 2.2rem;
    position: relative;
    margin-top: -11rem;
    z-index: 3;
    margin-bottom: 4rem;
  }
  .p-interview-detail__head .content h1.line-3 {
    margin-top: -15rem;
  }
  .p-interview-detail__head .content picture {
    display: block;
    width: 88vw;
    height: initial;
    min-height: initial;
    margin-left: auto;
    margin-right: -6vw;
  }
  .p-interview-detail__head .content .profile {
    margin-left: 0;
  }
  .p-interview-detail__head .content .profile .name {
    font-size: 2.5rem;
    margin-left: 1rem;
    margin-top: 1.4rem;
  }
  .p-interview-detail__head .content .profile .name .honor {
    font-size: 1.3rem;
    margin-left: 0.4rem;
  }
  .p-interview-detail__head .content .profile .division {
    font-size: 1.3rem;
    padding-left: 1rem;
    margin-left: 1rem;
  }
  .p-interview-detail__head .main-image {
    min-height: initial;
  }
  .p-interview-detail__head .main-image::before {
    padding-top: 100%;
  }
  .p-interview-detail__head .serial-number {
    font-size: 1.3rem;
    right: -0.5rem;
    bottom: 0;
  }
  .p-interview-detail__head .serial-number .number {
    font-size: 7rem;
  }
  .p-interview-detail__block-body {
    font-size: 1.4rem;
  }
  .p-interview-detail__block-a {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
  .p-interview-detail__block-a > .p-interview-detail__block-head {
    padding-left: 0;
  }
  .p-interview-detail__block-a > .p-interview-detail__block-head h3 {
    font-size: 2.2rem;
  }
  .p-interview-detail__block-a > .p-interview-detail__block-head h3 span {
    padding: 0.4rem 0.6rem 0.6rem 0.6rem;
    margin-bottom: 0.4rem;
  }
  .p-interview-detail__block-a > .p-interview-detail__block-head .pre-title {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .p-interview-detail__block-a > .p-interview-detail__block-body {
    margin-top: 0;
    padding: 0 0.6rem;
  }
  .p-interview-detail__block-a.container {
    max-width: 1170px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
    padding-right: 0;
  }
  .p-interview-detail__block-b {
    padding-bottom: 0;
  }
  .p-interview-detail__block-b.container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
  .p-interview-detail__block-b > .image {
    width: 100%;
    margin-right: auto;
    margin-left: -11%;
    margin-bottom: 4rem;
  }
  .p-interview-detail__block-b > .content {
    width: 100%;
    padding-right: 0;
  }
  .p-interview-detail__block-b > .content .p-interview-detail__block-head .pre-title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-interview-detail__block-b > .content .p-interview-detail__block-head .pre-title::after {
    margin-left: 1.6rem;
    margin-right: 0;
  }
  .p-interview-detail__block-b > .content .p-interview-detail__block-body {
    padding: 0 0.6rem;
  }
  .p-interview-detail__block-head {
    margin-bottom: 1.6rem !important;
  }
  .p-interview-detail__block-head .pre-title {
    margin-bottom: 2rem;
  }
  .p-interview-detail__block-head h3 {
    font-size: 2rem;
  }
  .p-interview-detail__block-head h3 span {
    padding: 0.4rem 0.6rem 0.6rem 0.6rem;
    margin-bottom: 0.6rem;
  }
  .p-interview-detail__message > .container {
    padding: 4rem 2.4rem 5.6rem 2.4rem;
  }
  .p-interview-detail__message .heading span {
    font-size: 2rem;
    font-weight: var(--font-weight-medium);
  }
  .p-interview-detail__message .heading span::before, .p-interview-detail__message .heading span::after {
    height: 3.2rem;
  }
  .p-interview-detail__message .text {
    font-size: 1.4rem;
  }
  .p-interview-detail__schedule {
    padding-bottom: 10rem;
  }
  .p-interview-detail__schedule > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.4rem 0;
  }
  .p-interview-detail__schedule > .container > .image {
    width: 100%;
  }
  .p-interview-detail__schedule > .container > .image picture {
    width: 100%;
    position: relative;
    left: initial;
  }
  .p-interview-detail__schedule > .container > .image picture::before {
    display: none;
  }
  .p-interview-detail__schedule > .container > .image picture img.large {
    width: 100%;
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 1.6rem;
    margin-left: -11%;
    margin-right: auto;
  }
  .p-interview-detail__schedule > .container > .image picture img.small {
    width: 60%;
    position: relative;
    bottom: initial;
    right: initial;
    margin-left: auto;
    margin-right: -11%;
  }
  .p-interview-detail__schedule > .container > .content {
    width: 100%;
    margin-top: 4.8rem;
  }
  .p-interview-detail__schedule > .container > .content > .head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 4rem;
  }
  .p-interview-detail__schedule > .container > .content > .head .en {
    font-size: 3.8rem;
  }
  .p-interview-detail__schedule > .container > .content > .head .jp {
    font-size: 1.4rem;
  }
  .p-interview-detail__schedule > .container > .content .figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-interview-detail__schedule > .container > .content .figure img {
    width: 90%;
  }
  .p-interview-detail__schedule > .container > .content .figure .figure-attention {
    font-size: 1.2rem;
  }
  .p-interview-detail__other {
    padding-top: 10rem;
    padding-bottom: 10rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-interview-detail__other-head {
    margin-bottom: 4rem;
    margin-left: 6%;
  }
  .p-interview-detail__other-head h3 .en {
    font-size: 4.7rem;
  }
  .p-interview-detail__other-head h3 .jp {
    font-size: 1.5rem;
    margin-top: 0.6rem;
  }
  .p-interview-detail__refresh {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
    margin-top: 5.6rem;
  }
  .p-interview-detail__other-slide {
    width: 100%;
    margin-left: 6%;
  }
  .p-interview-detail__other-slide .p-interview-list__block {
    width: 100%;
    padding-left: 1rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .visual h2 {
    left: -1rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .visual h2 span {
    font-size: 2rem;
    padding: 0.6rem 1rem 0.8rem 1rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .profile .division {
    font-size: 1.2rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .profile .name {
    font-size: 2.5rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .profile .name .honor {
    font-size: 1.3rem;
  }
  .p-interview-detail__other-slide .p-interview-list__block .c-icon-circle-allow {
    right: 0.5rem;
  }
}
.p-interview-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.6rem 5%;
}

.p-interview-list__block {
  position: relative;
  display: block;
  width: 30%;
}
.p-interview-list__block.inview .visual picture img {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-interview-list__block:hover {
  opacity: 1;
}
.p-interview-list__block:hover .visual picture img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-interview-list__block:hover .visual h2 {
  color: var(--main-color);
}
.p-interview-list__block:hover .c-icon-circle-allow::before {
  background-color: var(--main-color);
}
.p-interview-list__block:hover .c-icon-circle-allow::after {
  background: url(../img/common/icon_button_allow_w.svg) no-repeat center/contain;
}
.p-interview-list__block .visual {
  position: relative;
}
.p-interview-list__block .visual picture {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.p-interview-list__block .visual picture::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-interview-list__block .visual picture img {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-interview-list__block .visual h2 {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.p-interview-list__block .visual h2 span.text {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  display: block;
  color: #001976;
  background-color: #fff;
  padding: 0.8rem 1.2rem 1rem 1.2rem;
  margin-bottom: 0.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-interview-list__block .profile {
  margin-top: 1.2rem;
  padding-right: 6rem;
}
.p-interview-list__block .profile .division {
  font-size: 1.3rem;
  line-height: 1.45;
  color: #1D1D1D;
}
.p-interview-list__block .profile .division .uncommon-br {
  display: none;
}
.p-interview-list__block .profile .name {
  font-size: 2.7rem;
  color: #001976;
}
.p-interview-list__block .profile .name .honor {
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
.p-interview-list__block .c-icon-circle-allow {
  position: absolute;
  bottom: 0.5rem;
  right: 0;
}

@-webkit-keyframes shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .p-interview-list__block .visual h2 span.text {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-interview-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.4rem 0;
  }
  .p-interview-list__block {
    width: 100%;
  }
  .p-interview-list__block .visual picture::before {
    padding-top: 75%;
  }
  .p-interview-list__block .visual h2 {
    left: -1.2rem;
    bottom: 1.6rem;
  }
  .p-interview-list__block .visual h2 span.text {
    font-size: 2rem;
    padding: 0.4rem 0.6rem 0.6rem 0.6rem;
  }
}
.p-talk-session-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 5%;
}

.p-talk-session-list__block {
  position: relative;
  display: block;
  width: 47.5%;
  -webkit-box-shadow: 1rem 1rem 0 0 rgb(108, 165, 217);
          box-shadow: 1rem 1rem 0 0 rgb(108, 165, 217);
}
.p-talk-session-list__block.inview .visual picture img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-talk-session-list__block:hover {
  -webkit-box-shadow: 0 0 0 0 rgb(108, 165, 217);
          box-shadow: 0 0 0 0 rgb(108, 165, 217);
  opacity: 1;
}
.p-talk-session-list__block:hover .visual picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-talk-session-list__block .visual {
  position: relative;
}
.p-talk-session-list__block .visual .serial-number {
  font-size: 11rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-extraLight);
  font-style: italic;
  color: #00005C;
  position: absolute;
  top: -6rem;
  right: 1rem;
  z-index: 1;
}
.p-talk-session-list__block .visual picture {
  display: block;
  width: 100%;
  overflow: hidden;
}
.p-talk-session-list__block .visual picture img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-talk-session-list__block .visual .heading {
  position: absolute;
  left: -2rem;
  bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-talk-session-list__block .visual .heading .pre-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #001976;
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-family-jp);
  padding: 0.2rem 1.2rem 0.2rem 1.2rem;
  margin-bottom: 0.8rem;
}
.p-talk-session-list__block .visual .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  color: #001976;
}
.p-talk-session-list__block .visual .title span {
  font-size: 3rem;
  letter-spacing: 0.03em;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  display: block;
  background-color: #fff;
  padding: 0.8rem 1.2rem 1rem 1.2rem;
  margin-bottom: 0.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  #talk-session {
    padding-top: 4rem;
    padding-bottom: 12rem;
  }
  #talk-session .p-section-interview-list__head {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 8rem;
    padding-bottom: 5.6rem;
  }
  .p-talk-session-list {
    gap: 6.4rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }
  .p-talk-session-list__block {
    width: 100%;
    -webkit-box-shadow: 0.6rem 0.6rem 0 0 rgb(108, 165, 217);
            box-shadow: 0.6rem 0.6rem 0 0 rgb(108, 165, 217);
  }
  .p-talk-session-list__block .visual .serial-number {
    font-size: 6.4rem;
    top: -3rem;
  }
  .p-talk-session-list__block .visual .heading {
    left: -1rem;
  }
  .p-talk-session-list__block .visual .heading .pre-title {
    margin-bottom: 0.4rem;
  }
  .p-talk-session-list__block .visual .heading .title span {
    font-size: 2rem;
    padding: 0.4rem 0.6rem 0.6rem 0.6rem;
  }
}
.p-talk-session-detail {
  font-size: 1.8rem;
}

.p-talk-session-detail__group-a {
  background-image: url(../img/talk-session/bg_talk-session_detail_a.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-talk-session-detail__group-b {
  background-image: url(../img/talk-session/bg_talk-session_detail_b.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 10rem;
}

.inview .title-animation .base::after {
  width: 100%;
}
.inview .title-animation .text {
  opacity: 1;
}
.inview.p-talk-session-detail__head .serial-number {
  opacity: 1;
}

.title-animation {
  color: #001976;
}
.title-animation span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
}
.title-animation span.base {
  position: relative;
}
.title-animation span.base::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
  z-index: -1;
  background-color: #fff;
}
.title-animation span.text {
  position: relative;
  overflow: hidden;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  opacity: 0;
}

.p-talk-session-detail__head {
  position: relative;
  padding-bottom: 7.2rem;
  margin-bottom: 2.4rem;
}
.p-talk-session-detail__head .main-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.p-talk-session-detail__head .main-image img {
  width: 97%;
}
.p-talk-session-detail__head .content {
  position: absolute;
  z-index: 1;
  left: 7%;
  bottom: 6rem;
}
.p-talk-session-detail__head .content .heading {
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-medium);
  font-style: italic;
  color: #00005C;
}
.p-talk-session-detail__head .content .title {
  font-size: 5.8rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem 0;
  margin-top: 1rem;
}
.p-talk-session-detail__head .content .title span.base {
  padding: 0.8rem 1rem 1.2rem 1rem;
}
.p-talk-session-detail__head .content .pre-title {
  margin-top: 2.4rem;
  color: #fff;
  font-size: 2.4rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
}
.p-talk-session-detail__head .content .pre-title span.base {
  padding: 0.2rem 1.6rem 0.4rem 1.6rem;
}
.p-talk-session-detail__head .content .pre-title span.base::after {
  background-color: #001976;
}
.p-talk-session-detail__head .serial-number {
  font-size: 31.2rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-extraLight);
  font-style: italic;
  color: #00005C;
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 0;
  -webkit-transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  transition: 0.4s cubic-bezier(0.45, 0.2, 0.1, 1);
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
  opacity: 0;
}

.p-talk-session-detail__intro {
  color: #0057AA;
  font-family: var(--font-family-jp);
  text-align: center;
  padding: 4rem 0;
  margin-top: 8rem;
  margin-bottom: 8rem;
  background: url(../img/talk-session/bg_question.png) no-repeat center;
  background-size: contain;
}
.p-talk-session-detail__intro.container {
  max-width: 770px;
}

.p-talk-session-detail__peoples {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 6%;
  margin-bottom: 10rem;
}
.p-talk-session-detail__peoples.container {
  max-width: 148rem;
}
.p-talk-session-detail__peoples .item {
  position: relative;
  width: 20%;
  max-width: 30rem;
}
.p-talk-session-detail__peoples .item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 12rem;
  border-left: 1px solid #6CA5D9;
  position: absolute;
  right: -15%;
  top: calc(50% - 3.2rem);
}
.p-talk-session-detail__peoples .item picture {
  display: block;
  margin-bottom: 1.6rem;
}
.p-talk-session-detail__peoples .item .division {
  font-size: 1.2rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}
.p-talk-session-detail__peoples .item .name {
  color: #001976;
  font-size: 3rem;
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.4rem;
}
.p-talk-session-detail__peoples .item .name .honar {
  font-size: 1.3rem;
  margin-left: 0.4rem;
}
.p-talk-session-detail__peoples .item .summary {
  font-size: 1.5rem;
  line-height: 1.65;
}

.p-talk-session-detail__content {
  margin-top: 16rem;
}
.p-talk-session-detail__content.reverse .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-talk-session-detail__content.reverse .talk-topic {
  margin-left: 3.2rem;
}
.p-talk-session-detail__content.reverse .talk-image picture {
  left: initial;
  right: 8rem;
}
.p-talk-session-detail__content .container {
  max-width: 132rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-talk-session-detail__content .talk-topic {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #79BFD8;
  color: #fff;
  padding: 3.8rem 6.4rem 4rem 8rem;
  border-radius: 100rem;
  line-height: 1.65;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 6.4rem;
  margin-left: 3.2rem;
  position: relative;
}
.p-talk-session-detail__content .talk-topic.answer {
  background-color: #FFF72F;
  color: var(--main-color);
}
.p-talk-session-detail__content .talk-topic.answer .icon {
  background-image: url(../img/talk-session/icon_a.svg);
}
.p-talk-session-detail__content .talk-topic.answer.m-top {
  margin-top: 8.8rem;
}
.p-talk-session-detail__content .talk-topic.question .icon {
  background-image: url(../img/talk-session/icon_q.svg);
}
.p-talk-session-detail__content .talk-topic .icon {
  display: block;
  font-size: 0;
  width: 8rem;
  height: 10rem;
  position: absolute;
  left: -3rem;
  top: -4rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-talk-session-detail__content .talk-list {
  width: 50%;
  margin-bottom: 2.4rem;
}
.p-talk-session-detail__content .talk-list .talk-block-last-group {
  width: 100vw;
  position: relative;
  left: 100%;
  right: 100%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-talk-session-detail__content .talk-list .talk-block-last-group .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-talk-session-detail__content .talk-list .talk-block-last-group .talk-block {
  width: 50%;
  margin-bottom: 0;
}
.p-talk-session-detail__content .talk-list .talk-block-last-group .talk-topic {
  width: calc(50% - 12rem);
  margin-left: 12rem;
  margin-bottom: 0;
  -webkit-transform: translateY(4rem);
          transform: translateY(4rem);
}
.p-talk-session-detail__content .talk-list .talk-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
  margin-bottom: 4rem;
}
.p-talk-session-detail__content .talk-list .talk-block .prof {
  width: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-talk-session-detail__content .talk-list .talk-block .prof picture {
  border: 2px solid #fff;
  border-radius: 10rem;
}
.p-talk-session-detail__content .talk-list .talk-block .prof .name {
  color: #001976;
  font-size: 1.9rem;
}
.p-talk-session-detail__content .talk-list .talk-block .prof .name .honor {
  font-size: 1rem;
  margin-left: 0.4rem;
}
.p-talk-session-detail__content .talk-list .talk-block .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border: 2px solid #E0E0E0;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 2;
  padding: 2.4rem 3.2rem 3.2rem 3.2rem;
  position: relative;
}
.p-talk-session-detail__content .talk-list .talk-block .text:before, .p-talk-session-detail__content .talk-list .talk-block .text:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.p-talk-session-detail__content .talk-list .talk-block .text:before {
  top: calc(26% - 10px);
  left: -10px;
  border-style: solid;
  border-color: transparent transparent #E0E0E0 transparent;
  border-width: 0 20px 20px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-talk-session-detail__content .talk-list .talk-block .text:after {
  top: calc(26% - 8px);
  left: -8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0 16px 16px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.p-talk-session-detail__content .talk-list .talk-block .text strong {
  font-weight: var(--font-weight-medium);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FFF72F));
  background: linear-gradient(transparent 0%, #FFF72F 0%);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.p-talk-session-detail__content .talk-list .talk-block.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-talk-session-detail__content .talk-list .talk-block.reverse .text:before {
  top: calc(26% - 10px);
  left: initial;
  right: -10px;
  border-style: solid;
  border-color: transparent transparent #E0E0E0 transparent;
  border-width: 0 20px 20px 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.p-talk-session-detail__content .talk-list .talk-block.reverse .text:after {
  top: calc(26% - 8px);
  left: initial;
  right: -8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  border-width: 0 16px 16px 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  z-index: 1;
}
.p-talk-session-detail__content .talk-image {
  width: 50%;
  position: relative;
  margin-top: 18rem;
}
.p-talk-session-detail__content .talk-image.no-top-margin {
  margin-top: 0;
}
.p-talk-session-detail__content .talk-image picture {
  display: block;
  width: calc(50vw - 8rem);
  position: absolute;
  left: 8rem;
}

.p-talk-session-detail__insert {
  overflow: hidden;
  height: 47rem;
}
.p-talk-session-detail__insert img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-talk-session-detail__other {
  padding-top: 18rem;
  padding-bottom: 18rem;
  background-color: #fff;
}
.p-talk-session-detail__other .p-talk-session-detail__heading {
  font-size: 3rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-medium);
  font-style: italic;
  color: #00005C;
}
.p-talk-session-detail__other .container {
  display: block;
  position: relative;
  background: url(../img/talk-session/bg_other_banner.jpg) no-repeat left top;
  background-size: cover;
  max-width: 97rem;
  -webkit-box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
          box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
}
.p-talk-session-detail__other .container:hover {
  -webkit-box-shadow: 0 0 0px 0px rgb(108, 165, 217);
          box-shadow: 0 0 0px 0px rgb(108, 165, 217);
  opacity: 1;
}
.p-talk-session-detail__other .container .content {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.p-talk-session-detail__other .container .content .title {
  font-size: 3.5rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  letter-spacing: 0.03em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #001976;
}
.p-talk-session-detail__other .container .content .title span {
  display: block;
  background-color: #fff;
  padding: 0.8rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 0.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-talk-session-detail__other .container .content .pre-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #001976;
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
  padding: 0.2rem 1.6rem 0.4rem 1.6rem;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}
.p-talk-session-detail__other .container .post-image {
  display: block;
  width: 60%;
  margin-right: 0;
  margin-left: auto;
}
.p-talk-session-detail__other .container .serial-number {
  font-size: 11rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-extraLight);
  font-style: italic;
  color: #00005C;
  position: absolute;
  z-index: 1;
  right: 1.6rem;
  top: -6.4rem;
}

.p-talk-session-detail__spacer {
  height: 1px;
}

#talk-session1-1 .talk-image picture {
  width: 90%;
  max-width: 65rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-talk-session-detail__head .content .title {
    font-size: 4.8rem;
  }
  .p-talk-session-detail__head .serial-number {
    font-size: 18.2rem;
  }
  .p-talk-session-detail__content .talk-topic {
    padding: 3.8rem 4rem 4rem 6.4rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-talk-session-detail__group-b {
    padding-top: 1rem;
    padding-bottom: 2.4rem;
  }
  .p-talk-session-detail {
    font-size: 1.4rem;
  }
  .p-talk-session-detail__intro {
    font-size: 1.5rem;
    margin-top: 2.4rem;
    background-size: 40% auto;
  }
  .p-talk-session-detail__peoples {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-talk-session-detail__peoples .item {
    width: 100%;
    max-width: initial;
  }
  .p-talk-session-detail__peoples .item:not(:last-of-type) {
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 3.2rem;
    margin-bottom: 3.2rem;
  }
  .p-talk-session-detail__peoples .item:not(:last-of-type)::after {
    width: 12rem;
    height: 1px;
    border-left: none;
    border-bottom: 1px solid #6CA5D9;
    position: absolute;
    right: calc(50% - 6rem);
    top: initial;
    bottom: 0;
  }
  .p-talk-session-detail__peoples .item .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.6rem;
  }
  .p-talk-session-detail__peoples .item .head picture {
    width: 12rem;
    margin-bottom: 0;
    margin-right: 2.4rem;
  }
  .p-talk-session-detail__peoples .item .head .name {
    font-size: 2.7rem;
    margin-bottom: 0;
  }
  .p-talk-session-detail__peoples .item .head .name .honar {
    font-size: 1.2rem;
  }
  .p-talk-session-detail__peoples .item .head .division {
    font-size: 1.2rem;
  }
  .p-talk-session-detail__peoples .item .summary {
    font-size: 1.4rem;
  }
  .p-talk-session-detail__peoples .item .summary br {
    display: none;
  }
  .p-talk-session-detail__head .main-image img {
    width: 100%;
  }
  .p-talk-session-detail__head .content {
    position: relative;
    left: initial;
    top: -4rem;
    bottom: initial;
    margin-left: 4%;
  }
  .p-talk-session-detail__head .content .heading {
    font-size: 2.4rem;
  }
  .p-talk-session-detail__head .content .title {
    font-size: 2.2rem;
    gap: 0.4rem 0;
    margin-top: 1rem;
  }
  .p-talk-session-detail__head .content .title span.base {
    padding: 0.6rem 1rem 1rem 1rem;
  }
  .p-talk-session-detail__head .content .pre-title {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .p-talk-session-detail__head .serial-number {
    font-size: 11rem;
    bottom: -1rem;
  }
  .p-talk-session-detail__content {
    margin-top: 10rem;
  }
  .p-talk-session-detail__content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-talk-session-detail__content .container.hide-mobile {
    display: none;
  }
  .p-talk-session-detail__content .talk-topic {
    width: 100%;
    font-size: 1.5rem;
    margin-left: 0;
    padding: 4rem 2.4rem 4.1rem 2.4rem;
    margin-bottom: 4rem;
  }
  .p-talk-session-detail__content .talk-topic .icon {
    width: 6rem;
    height: 7rem;
    left: 0;
    top: -4.6rem;
  }
  .p-talk-session-detail__content .talk-topic.answer.answer.m-top {
    margin-top: 8rem;
  }
  .p-talk-session-detail__content.reverse {
    margin-top: 4rem;
  }
  .p-talk-session-detail__content.reverse .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
  }
  .p-talk-session-detail__content.reverse .talk-topic {
    margin-left: 0;
    margin-top: 10rem;
  }
  .p-talk-session-detail__content.reverse .talk-image {
    margin-bottom: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-talk-session-detail__content.reverse .talk-image picture {
    right: -5vw;
  }
  .p-talk-session-detail__content .talk-image {
    width: 90vw;
    margin-top: 8rem;
  }
  .p-talk-session-detail__content .talk-image picture {
    width: 100%;
    position: relative;
    left: -6vw;
  }
  .p-talk-session-detail__content .talk-list {
    width: 100%;
  }
  .p-talk-session-detail__content .talk-list .talk-block-last-group {
    width: 100%;
    position: relative;
    left: initial;
    right: initial;
    margin-left: initial;
    margin-right: initial;
  }
  .p-talk-session-detail__content .talk-list .talk-block-last-group .container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-talk-session-detail__content .talk-list .talk-block-last-group .talk-topic {
    margin-left: 0;
    width: 100%;
  }
  .p-talk-session-detail__content .talk-list .talk-block-last-group .talk-block {
    width: 100%;
    margin-bottom: -2.4rem;
  }
  .p-talk-session-detail__content .talk-list .topic {
    padding: 1.2rem 2.4rem 1.6rem 2.4rem;
    font-size: 1.5rem;
  }
  .p-talk-session-detail__content .talk-list .topic .en {
    font-size: 2.8rem;
  }
  .p-talk-session-detail__content .talk-list .talk-block .prof {
    width: 8rem;
  }
  .p-talk-session-detail__content .talk-list .talk-block .prof .name {
    font-size: 1.8rem;
  }
  .p-talk-session-detail__content .talk-list .talk-block .prof .name .honar {
    display: none;
  }
  .p-talk-session-detail__content .talk-list .talk-block .text {
    font-size: 1.3rem;
    padding: 1.2rem;
  }
  .p-talk-session-detail__content .talk-list .talk-image {
    width: 100%;
  }
  .p-talk-session-detail__other {
    padding-top: 14rem;
    padding-bottom: 12rem;
  }
  .p-talk-session-detail__other .p-talk-session-detail__heading {
    font-size: 2.4rem;
    position: absolute;
    top: 0;
    margin-left: -0.4rem;
  }
  .p-talk-session-detail__other .container {
    -webkit-box-shadow: 0.6rem 0.6rem 0px 0px rgb(108, 165, 217);
            box-shadow: 0.6rem 0.6rem 0px 0px rgb(108, 165, 217);
  }
  .p-talk-session-detail__other .container .post-image {
    width: 100%;
  }
  .p-talk-session-detail__other .container .serial-number {
    font-size: 6.4rem;
    top: -4.4rem;
  }
  .p-talk-session-detail__other .container .content {
    -webkit-transform: initial;
            transform: initial;
    left: 0;
    top: initial;
    bottom: -2rem;
  }
  .p-talk-session-detail__other .container .content .pre-title {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
    margin-left: -0.4rem;
  }
  .p-talk-session-detail__other .container .content .title {
    font-size: 2rem;
  }
  .p-talk-session-detail__other .container .content .title span {
    margin-bottom: 0.4rem;
    padding: 0.8rem 1rem 1rem 1rem;
  }
  .p-talk-session-detail__insert {
    height: 49vw;
  }
  #talk-session1-1 .talk-topic.answer {
    margin-top: 6.4rem;
  }
  #talk-session1-1 .talk-image {
    margin-top: 0;
  }
  #talk-session1-1 .talk-image picture {
    width: 90%;
    max-width: initial;
  }
  #talk-session1-2 .talk-topic.answer {
    margin-left: 0;
    margin-top: 6.4rem;
  }
  #talk-session1-3 .talk-image {
    margin-top: 0;
    margin-bottom: 4rem;
  }
  #talk-session1-2 .talk-image,
  #talk-session2-2 .talk-image {
    margin-top: 0;
    margin-bottom: 0;
  }
  #talk-session1-2 .talk-list,
  #talk-session2-2 .talk-list {
    margin-bottom: 0;
  }
  #talk-session2-1 .talk-list .talk-block-last-group .talk-topic {
    margin-top: 5.6rem;
  }
  #talk-session2-3.p-talk-session-detail__content .talk-list .talk-block-last-group .talk-block {
    margin-bottom: 3.2rem;
  }
  #talk-session2-3 .talk-image {
    margin-bottom: 4rem;
  }
}
.p-section-interview-list {
  padding-bottom: 14rem;
}

.p-section-interview-list__head {
  padding-top: 14rem;
  padding-bottom: 10rem;
}
.p-section-interview-list__head h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.p-section-interview-list__head h1 span {
  display: inline-block;
}
.p-section-interview-list__head h1 span.en {
  font-family: var(--font-family-en);
  font-size: 8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
  color: #0057AA;
  margin-bottom: 0.8rem;
}
.p-section-interview-list__head h1 span.jp {
  font-size: 2rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
}

#talk-session {
  padding-top: 4rem;
  padding-bottom: 18rem;
}
#talk-session.p-section-interview-list {
  background-color: rgba(200, 240, 247, 0.6);
}

@media (max-width: 767px) {
  #talk-session {
    padding-bottom: 12rem;
  }
  .p-section-interview-list {
    padding-bottom: 10rem;
  }
  .p-section-interview-list__head {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .p-section-interview-list__head h1 span {
    display: inline-block;
  }
  .p-section-interview-list__head h1 span.en {
    font-size: 4.2rem;
  }
  .p-section-interview-list__head h1 span.jp {
    font-size: 1.5rem;
  }
}
.p-section-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
}
.p-section-entry a {
  background-color: #0057AA;
  color: #fff;
  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;
  text-align: center;
  position: relative;
  width: 50%;
  padding: 12rem 0 12rem 0;
}
.p-section-entry a:hover {
  opacity: 0.8;
}
.p-section-entry a.item-2026 {
  background-color: #0057AA;
}
.p-section-entry a.item-2027 {
  background-color: #001976;
}
.p-section-entry .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
}
.p-section-entry .content .en {
  font-size: 8rem;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0;
}
.p-section-entry .content .jp {
  font-size: 1.6rem;
  line-height: 1.45;
  margin-top: 0.6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
}
.p-section-entry .c-icon-circle-allow {
  width: 9rem;
  height: 9rem;
}
.p-section-entry .c-icon-circle-allow::before {
  width: 9rem;
  height: 9rem;
}
.p-section-entry .c-icon-circle-allow::after {
  width: 1rem;
  height: 1.4rem;
  right: 4.1rem;
}
.p-section-entry .p-gotop {
  position: absolute;
  bottom: 2.4rem;
  right: 4%;
}

@media (max-width: 767px) {
  .p-section-entry a {
    padding: 4.8rem 0;
  }
  .p-section-entry .content .en {
    font-size: 3.3rem;
  }
  .p-section-entry .content .jp {
    font-size: 1.1rem;
    margin-top: 1.4rem;
  }
  .p-section-entry .c-icon-circle-allow {
    width: 5rem;
    height: 5rem;
  }
  .p-section-entry .c-icon-circle-allow::before {
    width: 5rem;
    height: 5rem;
  }
  .p-section-entry .c-icon-circle-allow::after {
    width: 0.6rem;
    height: 1rem;
    right: 2.2rem;
  }
}
.p-message {
  margin-bottom: 12rem;
}

.p-message__visual {
  overflow: hidden;
  margin-bottom: 11.2rem;
}
.p-message__visual .swiper.swiper-initialized.swiper-horizontal {
  cursor: inherit;
}
.p-message__visual .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  height: auto;
}

.p-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
}

.p-message__heading {
  width: 45%;
  font-size: 4rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-message__content {
  width: 50%;
  font-weight: var(--font-weight-medium);
  line-height: 2;
}
.p-message__content p {
  margin-bottom: 1.6rem;
}

.p-message__from {
  text-align: right;
  margin-top: 4rem;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-message__heading {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .p-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-message__visual {
    margin-bottom: 8rem;
  }
  .p-message__heading {
    width: 100%;
    font-size: 2rem;
    margin-bottom: 6rem;
  }
  .p-message__content {
    width: 100%;
    margin-bottom: 12rem;
  }
}
.p-division__head {
  position: relative;
  margin-bottom: 8rem;
}
.p-division__head .main-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
}
.p-division__head .main-image img {
  width: 97%;
  margin-right: -2px;
}
.p-division__head .main-image .title {
  position: absolute;
  bottom: 12rem;
  right: 4%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  line-height: 1;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-division__head .main-image .title .en {
  font-size: 8rem;
  font-weight: var(--font-weight-medium);
}
.p-division__head .main-image .title .jp {
  font-size: 2rem;
  font-weight: var(--font-weight-semiBold);
  margin-top: 1.2rem;
}
.p-division__head .content {
  width: 42rem;
  position: absolute;
  bottom: 0;
  left: 5.5%;
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-jp);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-division__head .main-image {
    padding-bottom: 6.4rem;
  }
  .p-division__head .main-image .title {
    bottom: 16rem;
  }
}
@media (max-width: 767px) {
  .p-division__head {
    margin-bottom: 6rem;
  }
  .p-division__head .main-image img {
    width: 100%;
    margin-right: 0;
  }
  .p-division__head .main-image .title {
    bottom: 13rem;
  }
  .p-division__head .main-image .title .en {
    font-size: 4rem;
  }
  .p-division__head .main-image .title .jp {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  .p-division__head .content {
    font-size: 1.4rem;
    position: relative;
    width: auto;
    left: initial;
    padding: 0 5.5%;
  }
}
.p-page-head {
  max-width: 1320px;
  margin-bottom: 10rem;
}
.p-page-head h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.45;
}
.p-page-head h1 .jp {
  font-size: 6rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
}
.p-page-head h1 .en {
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  color: var(--main-color);
  margin-top: 0.6rem;
}

@media (max-width: 767px) {
  .p-page-head {
    margin-bottom: 6rem;
  }
  .p-page-head.container {
    width: 90%;
  }
  .p-page-head h1 .jp {
    font-size: 3.2rem;
  }
  .p-page-head h1 .en {
    font-size: 1.2rem;
  }
}
.p-news-list {
  max-width: 82rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem 0;
}

.p-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5.6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #6CA5D9;
  position: relative;
}
.p-news-list__item:hover::after {
  width: 100%;
}
.p-news-list__item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--main-color);
  -webkit-transition: 0.5s cubic-bezier(0.22, 0.22, 0, 1);
  transition: 0.5s cubic-bezier(0.22, 0.22, 0, 1);
}
.p-news-list__item .p-post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2.4rem;
}
.p-news-list__item .p-post-meta .date {
  width: 10rem;
  font-size: 1.7rem;
}
.p-news-list__item .p-post-meta .categroy {
  width: 12rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem 0;
}
.p-news-list__item .content {
  margin-top: -1rem;
}
.p-news-list__item .content .title {
  font-family: var(--font-family-jp);
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.55;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .p-news-list {
    gap: 5.2rem 0;
  }
  .p-news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem 0;
    padding-bottom: 5.2rem;
  }
  .p-news-list__item .p-post-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
  .p-news-list__item .p-post-meta .date {
    width: 100%;
    font-size: 1.4rem;
  }
  .p-news-list__item .p-post-meta .categroy {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.8rem;
  }
  .p-news-list__item .content .title {
    margin-bottom: 2rem;
  }
}
.p-post-navi {
  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;
  gap: 0 2.4rem;
  margin-top: 10rem;
  margin-bottom: 12rem;
}
.p-post-navi a.prev, .p-post-navi a.next, .p-post-navi span.prev, .p-post-navi span.next {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  width: 5rem;
  height: 5rem;
  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;
  border-radius: 0.4rem;
}
.p-post-navi a.prev, .p-post-navi span.prev {
  background: #fff url(../img/common/icon_allow_prev.svg) no-repeat center;
  background-size: 40% auto;
}
.p-post-navi a.next, .p-post-navi span.next {
  background: #fff url(../img/common/icon_allow_next.svg) no-repeat center;
  background-size: 40% auto;
}
.p-post-navi a.back, .p-post-navi span.back {
  background-color: #0057AA;
  padding-left: 4rem;
  padding-right: 4rem;
}
.p-post-navi a.back img, .p-post-navi span.back img {
  width: 2rem;
  height: 2rem;
  margin-left: 0.6rem;
}

@media (max-width: 767px) {
  .p-post-navi {
    gap: 0 1rem;
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
  .p-post-navi a.prev, .p-post-navi a.next, .p-post-navi span.prev, .p-post-navi span.next {
    width: 4rem;
    height: 4rem;
    background-size: 50% auto;
  }
  .p-post-navi a.back, .p-post-navi span.back {
    font-size: 1.2rem;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }
}
.p-post-list-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10rem;
}
.p-post-list-navi.back-navi {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-post-list-navi.paging-navi {
  font-family: var(--font-family-en);
  font-weight: var(--font-weight-medium);
}
.p-post-list-navi.paging-navi a {
  display: block;
  color: var(--main-color);
}
.p-post-list-navi.paging-navi a:hover {
  opacity: 0.7;
}
.p-post-list-navi.paging-navi .wp-pagenavi {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.p-post-list-navi.paging-navi .wp-pagenavi span,
.p-post-list-navi.paging-navi .wp-pagenavi a {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  border: none;
  min-width: 5rem;
  height: 5rem;
  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;
  background-color: #fff;
  border-radius: 0.4rem;
}
.p-post-list-navi.paging-navi .wp-pagenavi .previouspostslink, .p-post-list-navi.paging-navi .wp-pagenavi .nextpostslink {
  text-indent: -9999px;
}
.p-post-list-navi.paging-navi .wp-pagenavi .previouspostslink {
  background: #fff url(../img/common/icon_allow_prev.svg) no-repeat center;
  background-size: 40% auto;
}
.p-post-list-navi.paging-navi .wp-pagenavi .nextpostslink {
  background: #fff url(../img/common/icon_allow_next.svg) no-repeat center;
  background-size: 40% auto;
}
.p-post-list-navi.paging-navi .wp-pagenavi a:hover,
.p-post-list-navi.paging-navi .wp-pagenavi span.current {
  color: #fff;
  background-color: var(--main-color);
}

@media (max-width: 767px) {
  .p-post-list-navi {
    margin-top: 8rem;
  }
  .p-post-list-navi.paging-navi .wp-pagenavi span,
  .p-post-list-navi.paging-navi .wp-pagenavi a {
    min-width: 3.5rem;
    height: 3.5rem;
  }
}
.p-post-meta .date {
  font-weight: var(--font-weight-medium);
}
.p-post-meta .categroy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-post-meta .categroy span {
  display: inline-block;
  background-color: #E0E0E0;
  line-height: 1;
  padding: 1rem 1rem;
  text-align: center;
  color: #A3A3A3;
  font-size: 1.2rem;
  font-weight: var(--font-weight-medium);
}

@media (max-width: 767px) {
  .p-post-meta .categroy span {
    padding: 0.6rem 0.8rem;
  }
}
.p-post-detail {
  padding: 0 0 6rem 0;
  max-width: 82rem;
}

.p-post-detail__head {
  margin-bottom: 8rem;
}
.p-post-detail__head .title {
  font-family: var(--font-family-jp);
  font-size: 3.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.55;
  margin-bottom: 3.2rem;
}
.p-post-detail__head .p-post-meta .date {
  margin-bottom: 1rem;
  color: #707070;
}
.p-post-detail__head .p-post-meta .categroy {
  gap: 0.8rem;
}

@media (max-width: 767px) {
  .p-post-detail__head .title {
    font-size: 2rem;
  }
}
.p-post-body {
  /* 見出し */
  /* 段落 */
  /* リスト */
  /* 画像 */
  /* レイアウト */
  /* カラム */
  /* 引用 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-bottom: 2.4rem;
}
.p-post-body h1 {
  font-size: 4rem;
  margin-bottom: 3.2rem;
}
.p-post-body h2 {
  font-size: 2.8rem;
}
.p-post-body h3 {
  font-size: 2rem;
}
.p-post-body h4 {
  font-size: var(--font-size-base-pc);
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 2.4rem;
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body ul {
  margin-bottom: 2.4rem;
}
.p-post-body ul li {
  line-height: 1.65;
  position: relative;
  margin-left: 0.6rem;
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
}
.p-post-body ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--text-color);
  position: absolute;
  left: 0;
  top: 1.2rem;
}
.p-post-body .wp-block-image {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.4rem;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-quote p {
  border-left: 2px solid var(--text-color);
  padding: 0 0 0 1.4rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.2rem;
  padding: 0 0 0 2rem;
  color: #acacac;
}
.p-post-body .wp-block-table {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-table table {
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.2rem;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  background-color: #fff;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.3rem 1.6rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-post-body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-post-body.container {
  max-width: 90rem;
}

/* 区切り線 */
.wp-block-separator {
  margin: 4rem 0;
  border: none !important;
  border-bottom: 1px solid #CDD6DD !important;
}

@media (max-width: 767px) {
  .p-post-body {
    /* 見出し */
    /* 画像 */
    /* レイアウト */
  }
  .p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    margin-bottom: 1.4rem;
  }
  .p-post-body h1 {
    font-size: 2rem;
    margin-bottom: 2.4rem;
  }
  .p-post-body h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .p-post-body h3 {
    font-size: 1.6rem;
  }
  .p-post-body h4 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body .wp-block-image {
    margin-bottom: 2.4rem;
  }
  .p-post-body .wp-block-image.size-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.4rem;
    margin: 0.4rem 6% 0 6%;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
}
.p-content-section {
  padding: 20rem 0;
}

.p-content-section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-bottom: 2.4rem;
  margin-bottom: 8rem;
  line-height: 1;
}
.p-content-section__head::after {
  display: block;
  content: "";
  height: 1px;
  width: 28rem;
  border-bottom: 2px dotted #79BFD8;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-content-section__head .jp {
  font-family: var(--font-family-jp);
  font-size: 3.6rem;
  font-weight: var(--font-weight-medium);
}
.p-content-section__head .en {
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  color: var(--main-color);
  margin-top: 1.3rem;
}

@media (max-width: 767px) {
  .p-content-section {
    padding: 10rem 0;
  }
  .p-content-section__head {
    padding-bottom: 1.6rem;
    margin-bottom: 4rem;
  }
  .p-content-section__head::after {
    width: 15rem;
  }
  .p-content-section__head .jp {
    font-size: 2.4rem;
  }
  .p-content-section__head .en {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}
.p-organizational-chart {
  background-color: #fff;
}
.p-organizational-chart .container {
  max-width: 1320px;
}
.p-organizational-chart .p-content-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-organizational-chart .p-content-section__body figure {
  max-width: 1180px;
}

@media (max-width: 767px) {
  .p-organizational-chart .p-content-section__body figure {
    width: 100%;
    max-width: 100%;
    overflow-x: scroll;
    padding-bottom: 4rem;
  }
  .p-organizational-chart .p-content-section__body figure::-webkit-scrollbar {
    height: 10px;
  }
  .p-organizational-chart .p-content-section__body figure::-webkit-scrollbar-track {
    background-color: #e4e4e4;
    border-radius: 100px;
  }
  .p-organizational-chart .p-content-section__body figure::-webkit-scrollbar-thumb {
    background-color: #6CA5D9;
    border-radius: 100px;
  }
  .p-organizational-chart .p-content-section__body figure img {
    width: 80rem;
  }
}
.p-division-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4rem 0;
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.p-division-list.container {
  max-width: 1320px;
}

.p-division-list__block {
  background-color: #fff;
  -webkit-box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
          box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5%;
  padding: 5% 10% 5% 10%;
}
.p-division-list__block .image {
  width: 40%;
}
.p-division-list__block .content {
  width: 55%;
}
.p-division-list__block .content .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1;
  color: var(--main-color);
  margin-bottom: 3.2rem;
}
.p-division-list__block .content .title .jp {
  font-family: var(--font-family-jp);
  font-size: 3.3rem;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-bold);
  text-indent: -0.2rem;
}
.p-division-list__block .content .title .en {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  margin-top: 1.2rem;
}
.p-division-list__block .content .summary h3 {
  font-family: var(--font-family-jp);
  font-size: 2.4rem;
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.4rem;
}
.p-division-list__block .content .summary p {
  font-size: 1.7rem;
}
.p-division-list__block .navi {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.p-division-list__block .navi .c-button {
  width: 16rem;
  padding: 1.3rem 2.4rem 1.6rem 2.4rem;
  background-color: var(--main-color);
  -webkit-box-shadow: 0.4rem 0.4rem 0 0 rgb(200, 200, 200);
          box-shadow: 0.4rem 0.4rem 0 0 rgb(200, 200, 200);
}
.p-division-list__block .navi .c-button:hover {
  -webkit-box-shadow: 0 0 0 0 rgb(200, 200, 200);
          box-shadow: 0 0 0 0 rgb(200, 200, 200);
}
.p-division-list__block .navi .c-button img {
  display: inline-block;
  width: 2rem;
  margin-left: 0.5rem;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-division-list__block .navi {
    margin-top: 2.4rem;
  }
}
@media (max-width: 767px) {
  .p-division-list {
    margin-top: 6rem;
    margin-bottom: 6rem;
    gap: 4rem 0;
  }
  .p-division-list__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0.6rem 0.6rem 0px 0px rgb(108, 165, 217);
            box-shadow: 0.6rem 0.6rem 0px 0px rgb(108, 165, 217);
    padding: 4rem 2.8rem;
  }
  .p-division-list__block .image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-bottom: -3.2rem;
    margin-right: -2.4rem;
  }
  .p-division-list__block .image img {
    width: 80%;
  }
  .p-division-list__block .content {
    width: 100%;
  }
  .p-division-list__block .content .title {
    margin-bottom: 2.4rem;
  }
  .p-division-list__block .content .title .jp {
    font-size: 2.3rem;
  }
  .p-division-list__block .content .title .en {
    font-size: 1rem;
    margin-top: 0.8rem;
  }
  .p-division-list__block .content .summary h3 {
    font-size: 1.6rem;
  }
  .p-division-list__block .content .summary p {
    font-size: 1.3rem;
  }
  .p-division-list__block .navi {
    margin-top: 2.4rem;
  }
  .p-division-list__block .navi .c-button {
    width: 11rem;
    min-width: inherit;
    padding: 0.8rem 1.4rem 0.9rem 1.4rem;
    font-size: 1.2rem;
  }
}
.p-division-detail__head .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8rem;
}
.p-division-detail__head .heading.container {
  max-width: 1320px;
}
.p-division-detail__head .heading .title {
  width: 47%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-division-detail__head .heading .title .jp {
  font-family: var(--font-family-jp);
  font-size: 4.7rem;
  letter-spacing: 0.06em;
  font-weight: var(--font-weight-semiBold);
  text-indent: -0.4rem;
}
.p-division-detail__head .heading .title .en {
  font-size: 1.8rem;
  font-weight: var(--font-weight-medium);
  color: var(--main-color);
  margin-top: 1.4rem;
}
.p-division-detail__head .heading .summary {
  width: 47%;
  font-size: 1.8rem;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-division-detail__head .heading .summary h2 {
  font-family: var(--font-family-jp);
  font-size: 2.6rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.p-division-detail__head .main-image {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.p-division-detail__head .main-image.container {
  width: 96%;
  overflow: hidden;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .p-division-detail__head .heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4rem;
  }
  .p-division-detail__head .heading.container {
    width: 88%;
  }
  .p-division-detail__head .heading .title {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-division-detail__head .heading .title .jp {
    font-size: 3rem;
    text-indent: -0.2rem;
  }
  .p-division-detail__head .heading .title .en {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  .p-division-detail__head .heading .summary {
    width: 100%;
    font-size: 1.4rem;
  }
  .p-division-detail__head .heading .summary h2 {
    font-size: 2rem;
  }
  .p-division-detail__head .main-image.container {
    width: 88%;
  }
}
.p-strengths-list {
  background-image: url(../img/division/bg_strengths_list.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}
.p-strengths-list .container {
  max-width: 1260px;
}
.p-strengths-list .p-content-section__head {
  margin-bottom: 12rem;
}
.p-strengths-list .p-content-section__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12rem;
}

.p-strengths-list__block {
  position: relative;
}
.p-strengths-list__block.reverse .picture {
  left: initial;
  right: 0;
}
.p-strengths-list__block.reverse .content {
  margin-right: auto;
  margin-left: -4%;
  -webkit-box-shadow: -1rem 1rem 0px 0px rgb(108, 165, 217);
          box-shadow: -1rem 1rem 0px 0px rgb(108, 165, 217);
}
.p-strengths-list__block.reverse .content::after {
  right: initial;
  left: 8%;
}
.p-strengths-list__block .picture {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45%;
  z-index: 1;
}
.p-strengths-list__block .content {
  width: 64%;
  margin-left: auto;
  margin-right: -4%;
  position: relative;
  background-color: #fff;
  border-radius: 0.6rem;
  -webkit-box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
          box-shadow: 1rem 1rem 0px 0px rgb(108, 165, 217);
  padding: 14% 14%;
}
.p-strengths-list__block .content::after {
  display: inline-block;
  content: attr(data-number);
  position: absolute;
  top: -8rem;
  right: 12%;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-medium);
  font-size: 9rem;
  color: var(--main-color);
}
.p-strengths-list__block .content .title {
  font-family: var(--font-family-jp);
  font-size: 3rem;
  line-height: 1.55;
  font-weight: var(--font-weight-bold);
  color: var(--main-color);
  margin-bottom: 2.4rem;
}
.p-strengths-list__block .content p {
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
  text-align: justify;
}

@media (max-width: 767px) {
  .p-strengths-list {
    padding: 14rem 0 8rem 0;
  }
  .p-strengths-list .container {
    width: 88%;
  }
  .p-strengths-list .p-content-section__head {
    margin-bottom: 4.8rem;
    margin-left: 4%;
  }
  .p-strengths-list .p-content-section__body {
    gap: 4rem;
  }
  .p-strengths-list__block.reverse .content {
    margin-left: 0;
    -webkit-box-shadow: -0.5rem 0.5rem 0px 0px rgb(108, 165, 217);
            box-shadow: -0.5rem 0.5rem 0px 0px rgb(108, 165, 217);
  }
  .p-strengths-list__block.reverse .content::after {
    left: initial;
    right: 3rem;
  }
  .p-strengths-list__block .picture {
    position: relative;
    top: initial;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -4rem;
  }
  .p-strengths-list__block .content {
    width: 100%;
    margin-left: initial;
    margin-right: initial;
    -webkit-box-shadow: 0.5rem 0.5rem 0px 0px rgb(108, 165, 217);
            box-shadow: 0.5rem 0.5rem 0px 0px rgb(108, 165, 217);
    padding: 8rem 3rem 4rem 3rem;
  }
  .p-strengths-list__block .content::after {
    font-size: 5rem;
    top: -0.5rem;
    right: 3rem;
  }
  .p-strengths-list__block .content .title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
  .p-strengths-list__block .content p {
    font-size: 1.4rem;
  }
}
.p-job-category {
  background-color: #fff;
}
.p-job-category .container {
  max-width: 1180px;
  position: relative;
}
.p-job-category .p-content-section__head {
  padding-top: 14%;
  margin-bottom: 12%;
}

.p-job-category__visual {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
}

.p-job-category__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.p-job-category__block {
  width: calc(50% - 1rem);
  background-color: #F0F7FA;
  padding: 6% 4% 3% 4%;
  border-radius: 0.6rem;
}
.p-job-category__block .title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 0.8rem;
}
.p-job-category__block .summary {
  font-size: 1.7rem;
}
.p-job-category__block .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1rem;
  margin-top: 4rem;
}
.p-job-category__block .navi .c-button {
  width: 15rem;
  padding: 1rem 2.4rem 1.3rem 2.4rem;
  -webkit-box-shadow: 0.4rem 0.4rem 0px 0px rgb(200, 200, 200);
          box-shadow: 0.4rem 0.4rem 0px 0px rgb(200, 200, 200);
}
.p-job-category__block .navi .c-button:hover {
  -webkit-box-shadow: 0 0 0 0 rgb(200, 200, 200);
          box-shadow: 0 0 0 0 rgb(200, 200, 200);
}
.p-job-category__block .navi .c-button img {
  display: inline-block;
  width: 2rem;
  margin-left: 0.5rem;
}
.p-job-category__block .navi .c-button.entry {
  background-color: var(--main-color);
}

@media (max-width: 767px) {
  .p-job-category__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-job-category__visual {
    width: 46%;
  }
  .p-job-category__block {
    width: 100%;
    padding: 3rem 2rem;
  }
  .p-job-category__block .title {
    font-size: 2rem;
  }
  .p-job-category__block .summary {
    font-size: 1.4rem;
  }
  .p-job-category__block .navi {
    margin-top: 2.4rem;
  }
  .p-job-category__block .navi .c-button {
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: initial;
    padding: 0.7rem 1.4rem 1rem 2rem;
  }
}
.p-service-office {
  background-color: #fff;
}
.p-service-office .container {
  max-width: 1180px;
}
.p-service-office .p-content-section__head {
  margin-bottom: 2.4rem;
}

.p-service-office__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.p-service-office__content ul {
  width: 40%;
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
}
.p-service-office__content figure {
  width: 60%;
}

@media (max-width: 767px) {
  .p-service-office__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-service-office__content ul {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
  .p-service-office__content figure {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
  }
  .p-service-office__content figure img {
    width: 96%;
  }
}
.p-service-area {
  background-image: url(../img/division/automotive/bg_service_area.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}
.p-service-area .container {
  max-width: 1180px;
}

.p-service-area__table {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.p-service-area__table tr {
  border-bottom: 1px solid #F4F4F6;
}
.p-service-area__table td {
  padding: 1.6rem 2.4rem;
  font-weight: var(--font-weight-medium);
  font-size: 1.7rem;
}
.p-service-area__table td.label {
  width: 25rem;
  background-color: var(--main-color);
  color: #fff;
  font-weight: var(--font-weight-bold);
}

@media (max-width: 767px) {
  .p-service-area .container {
    width: 88%;
  }
  .p-service-area .p-content-section__head {
    margin-left: 4%;
  }
  .p-service-area__table td {
    padding: 1.4rem 1rem;
    font-size: 1.3rem;
  }
  .p-service-area__table td.label {
    width: 11rem;
  }
}
.p-404 {
  text-align: center;
  padding-bottom: 16rem;
}

.p-404 h1 {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-family: var(--font-family-en);
  font-weight: 700;
}

.p-404 h1 span {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p-404 h1 span:first-of-type {
  font-size: 12rem;
  margin-bottom: 2rem;
  color: var(--color-green);
}

.p-404-content p {
  line-height: 2;
}

.p-404-back-navi {
  margin-top: 4rem;
}

.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .p-404 {
    padding-bottom: 10rem;
  }
  .p-404 h1 {
    margin: 0 auto 6.4rem auto;
  }
  .p-404 h1 span {
    font-size: 2rem;
  }
  .p-404 h1 span:first-of-type {
    font-size: 10rem;
    margin-bottom: 1rem;
  }
}
.p-history {
  background-color: #79BFD8;
  padding: 22rem 0;
}
.p-history .container {
  max-width: 1320px;
}
.p-history .p-key-number__heading .title::after {
  border-color: #fff;
}
.p-history .p-key-number__heading .title .jp {
  color: #fff;
}

.p-history__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 4vw;
  width: 96vw;
  margin-top: 8.8rem;
}

@media only screen and (min-width: 1435px) {
  .p-history__body {
    margin-left: calc(4vw + (92vw - 1320px) / 2);
    width: calc(100vw - (4vw + (92vw - 1320px) / 2));
  }
}
.p-history__index {
  width: 30rem;
}
.p-history__index ul {
  position: sticky;
  top: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem 0;
}
.p-history__index ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-history__index ul li a:hover {
  opacity: 1;
}
.p-history__index ul li a:hover .title {
  color: #0057AA;
}
.p-history__index ul li a .year {
  color: #0057AA;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.p-history__index ul li a .title {
  font-family: var(--font-family-jp);
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-history__index ul li a .title .t-small {
  display: none;
}
.p-history__index ul li.active a .title {
  color: #0057AA;
}

.p-history__content {
  width: calc(100% - 34rem);
  background-color: #fff;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 12rem 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12rem 0;
}

.p-history__block-head {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 7.2rem;
}
.p-history__block-head .year {
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: #0057AA;
  margin-bottom: 1.4rem;
  font-weight: var(--font-weight-medium);
}
.p-history__block-head .title {
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-semiBold);
  color: #001976;
  font-family: var(--font-family-jp);
}
.p-history__block-head .title .t-small {
  font-size: 2.2rem;
  color: #343434;
  margin-left: 2rem;
}

.p-history__timeline {
  list-style: none;
  padding-top: 3.2rem;
}
.p-history__timeline > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-history__timeline > li:last-of-type .content::after {
  display: none;
}
.p-history__timeline .date {
  width: 26rem;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-transform: translateY(-2.6rem);
          transform: translateY(-2.6rem);
}
.p-history__timeline .date .year {
  width: 15rem;
  min-height: 5rem;
  font-size: 6rem;
  color: #001976;
  margin-right: 1rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.p-history__timeline .date .month {
  width: 6rem;
  color: #0057AA;
  font-size: 2rem;
  font-weight: var(--font-weight-semiBold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  gap: 0.24rem;
}
.p-history__timeline .date .month .en {
  display: block;
  font-size: 3.5rem;
  font-weight: var(--font-weight-medium);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.p-history__timeline .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5%;
  padding-bottom: 4rem;
  position: relative;
}
.p-history__timeline .content::before, .p-history__timeline .content::after {
  display: block;
  content: "";
  position: absolute;
  top: 1rem;
}
.p-history__timeline .content::before {
  width: 9px;
  height: 9px;
  background: #0057AA;
  left: -4px;
  border-radius: 100%;
}
.p-history__timeline .content::after {
  width: 1px;
  height: 100%;
  border-left: 1px #0057AA solid;
  left: 0;
}
.p-history__timeline .content p {
  max-width: 64rem;
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}
.p-history__timeline .content .d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.p-history__timeline .content picture {
  display: block;
}
.p-history__timeline .content picture img {
  max-width: 420px;
  max-height: 220px;
  width: auto;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-history {
    padding: 18rem 0;
  }
  .p-history__index {
    width: initial;
    display: none;
  }
  .p-history__content {
    width: 92vw;
    border-radius: 1rem;
  }
  .p-history__timeline .content picture img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .p-history {
    padding: 10rem 0;
  }
  .p-history__body {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6.4rem;
  }
  .p-history__index {
    width: initial;
    display: none;
  }
  .p-history__content {
    border-radius: 0.6rem;
    width: 100%;
    padding: 6rem 2.4rem;
    gap: 7.2rem 0;
  }
  .p-history__block-head {
    margin-bottom: 5.6rem;
  }
  .p-history__block-head .year {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .p-history__block-head .title {
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-history__block-head .title .t-small {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin-left: 0;
    margin-top: 1rem;
  }
  .p-history__timeline .date {
    width: 7.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin-right: 1.6rem;
    -webkit-transform: translateY(-3.2rem);
            transform: translateY(-3.2rem);
  }
  .p-history__timeline .date .year {
    width: initial;
    min-height: 3rem;
    font-size: 3rem;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
  .p-history__timeline .date .month {
    width: inherit;
    font-size: 1.1rem;
  }
  .p-history__timeline .date .month .en {
    font-size: 2.4rem;
  }
  .p-history__timeline .content p {
    font-size: 1.4rem;
  }
  .p-history__timeline .content picture img {
    max-height: 240px;
    width: 100%;
  }
}
.p-key-number {
  padding: 14rem 0 0 0;
}
.p-key-number.container {
  max-width: 1320px;
}

.p-key-number__heading {
  margin-bottom: 6.4rem;
}
.p-key-number__heading .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.45;
  position: relative;
}
.p-key-number__heading .title::after {
  content: "";
  display: block;
  width: 26rem;
  height: 1px;
  border-bottom: 1px dotted #79BFD8;
  position: relative;
  bottom: -1rem;
  left: 0;
}
.p-key-number__heading .title span {
  display: block;
}
.p-key-number__heading .title .jp {
  font-size: 3.6rem;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-jp);
  margin-bottom: 0.24rem;
}
.p-key-number__heading .title .en {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  color: #0057AA;
}
.p-key-number__heading .attention {
  text-align: right;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  margin-top: 2.4rem;
}

.p-key-number__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.p-key-number__item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.2);
  border-radius: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.6rem 2.4rem 6.4rem 2.4rem;
}
.p-key-number__item .data-list dl {
  width: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.p-key-number__item .data-list dl dt {
  width: 10rem;
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.p-key-number__item .data-list dl dd {
  width: calc(100% - 10rem);
}
.p-key-number__item .data-list dl dd.data .number {
  font-size: 8.6rem;
}
.p-key-number__item .label {
  font-size: 2.2rem;
  line-height: 1.45;
  font-weight: var(--font-weight-medium);
  margin-bottom: 1.6rem;
}
.p-key-number__item .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
}
.p-key-number__item .data .number {
  font-family: "Open Sans", sans-serif;
  font-size: 12.4rem;
  letter-spacing: -0.04em;
  font-weight: var(--font-weight-semiBold);
  position: relative;
}
.p-key-number__item .data .number span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.p-key-number__item .data .number::after {
  content: attr(data-num);
  opacity: 0;
}
.p-key-number__item .data .number .blue {
  color: #0057AA;
}
.p-key-number__item .data .number .t-small {
  font-size: 8rem;
}
.p-key-number__item .data .unit {
  font-size: 4rem;
  font-weight: var(--font-weight-black);
  margin-left: 0.4rem;
}
.p-key-number__item .attention {
  text-align: right;
  font-size: 1.6rem;
  margin-top: 0.8rem;
}
.p-key-number__item#staff-number, .p-key-number__item#sales {
  width: calc((100% - 4rem) * 0.32);
}
.p-key-number__item#founding {
  width: calc((100% - 4rem) * 0.36);
}
.p-key-number__item#average-employment {
  width: calc((100% - 2rem) * 0.36);
}
.p-key-number__item#average-age {
  width: calc((100% - 2rem) * 0.64);
}
.p-key-number__item#average-age .d-flex {
  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: 0 6rem;
}
.p-key-number__item#average-age .d-flex > div {
  width: calc(100% - 100px);
}
.p-key-number__item#average-age .d-flex .graph-block {
  width: 20rem !important;
}
.p-key-number__item#average-age .d-flex .graph-block > .wrap {
  height: 20rem !important;
}
.p-key-number__item#average-age .d-flex .graph-block img {
  display: block;
  max-width: 23rem;
  height: 4.5rem;
}
.p-key-number__item#childcare-leave {
  width: calc((100% - 4rem) * 0.4);
}
.p-key-number__item#average-paid-vacation {
  width: calc((100% - 4rem) * 0.3);
}
.p-key-number__item#female-manager {
  width: calc((100% - 4rem) * 0.3);
}
.p-key-number__item#transportation-number {
  width: calc((100% - 2rem) * 0.64);
}
.p-key-number__item#transportation-number .data .number {
  font-size: 10rem;
}
.p-key-number__item#transportation-number figure {
  width: 50rem;
  margin-top: 4rem;
}
.p-key-number__item#transportation-number .graph-block {
  width: 50rem !important;
  margin-top: 1.6rem;
}
.p-key-number__item#transportation-number .graph-block > .wrap {
  height: 30rem !important;
}
.p-key-number__item#transportation-number .graph-block img {
  display: block;
  max-width: 45rem;
  height: 11rem;
  margin-top: 1.6rem;
}
.p-key-number__item#transportation-ratio {
  width: calc((100% - 2rem) * 0.36);
}
.p-key-number__item#transportation-ratio figure {
  width: 34rem;
  max-width: 100%;
  margin-top: 8rem;
}
.p-key-number__item#transportation-ratio .graph-block {
  width: 34rem !important;
  margin-top: 8rem;
}
.p-key-number__item#transportation-ratio .graph-block > .wrap {
  height: 30rem !important;
}
.p-key-number__item#transportation-ratio .graph-block img {
  display: block;
  max-width: 31rem;
  height: 5rem;
  margin-top: 3.2rem;
}

.p-key-number__heading-inner {
  margin-top: 10rem;
  margin-bottom: 8rem;
}
.p-key-number__heading-inner .title {
  font-size: 2.8rem;
  color: #0057AA;
  margin-bottom: 0.8rem;
  position: relative;
}
.p-key-number__heading-inner .title::after {
  content: "";
  display: block;
  width: calc(100% - 30rem);
  height: 1px;
  border-top: 1px solid #79BFD8;
  position: absolute;
  right: 0;
  top: 2.4rem;
}
.p-key-number__heading-inner p {
  font-size: 2rem;
}

.p-key-number.bottom {
  padding: 8rem 0 20rem 0;
  background-image: url(../img/special/bg_bottom.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-key-number {
    padding: 6rem 0 0 0;
  }
  .p-key-number__item#transportation-number {
    width: calc((100% - 2rem) * 0.59);
  }
  .p-key-number__item#transportation-number .data .number {
    font-size: 7.2rem;
  }
  .p-key-number__item .label {
    font-size: 1.8rem;
  }
  .p-key-number__item .data .number {
    font-size: 7.2rem;
  }
  .p-key-number__item .data-list dl dt {
    width: 8rem;
    font-size: 3.2rem;
  }
  .p-key-number__item .data-list dl dd.data .number {
    font-size: 6.4rem;
  }
  .p-key-number__item#transportation-ratio {
    width: calc((100% - 2rem) * 0.41);
  }
  .p-key-number__item#transportation-ratio figure {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-key-number__item#average-age .d-flex > div {
    width: 20rem;
  }
  .p-key-number.bottom {
    padding: 4rem 0 14rem 0;
  }
}
@media (max-width: 767px) {
  .p-key-number {
    padding: 8rem 0 0 0;
  }
  .p-key-number__heading .title::after {
    width: 15rem;
  }
  .p-key-number__heading .title .jp {
    font-size: 2.4rem;
  }
  .p-key-number__heading .title .en {
    font-size: 1.1rem;
  }
  .p-key-number__heading .attention {
    font-size: 1rem;
  }
  .p-key-number__group {
    gap: 1rem;
  }
  .p-key-number__item {
    padding: 3.2rem 2rem 4rem 2rem;
  }
  .p-key-number__item .data-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-key-number__item .data-list dl {
    width: 50%;
  }
  .p-key-number__item .data-list dl dt {
    width: 3.8rem;
    font-size: 1.5rem;
  }
  .p-key-number__item .data-list dl dd {
    width: auto;
  }
  .p-key-number__item .data-list dl dd.data .number {
    font-size: 4.6rem;
  }
  .p-key-number__item .label {
    font-size: 1.3rem;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  .p-key-number__item .data .number {
    font-size: 5.2rem;
  }
  .p-key-number__item .data .unit {
    font-size: 1.5rem;
  }
  .p-key-number__item .attention {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
  .p-key-number__item#staff-number, .p-key-number__item#sales {
    width: calc((100% - 1rem) * 0.5);
  }
  .p-key-number__item#average-employment, .p-key-number__item#founding {
    width: calc((100% - 1rem) * 0.5);
  }
  .p-key-number__item#childcare-leave, .p-key-number__item#average-age {
    width: 100%;
  }
  .p-key-number__item#childcare-leave .inner {
    width: 100%;
  }
  .p-key-number__item#average-age .d-flex {
    gap: 0 3.2rem;
  }
  .p-key-number__item#average-age .d-flex > div {
    width: 13rem;
  }
  .p-key-number__item#average-age .d-flex .graph-block {
    width: 15rem !important;
  }
  .p-key-number__item#average-age .d-flex .graph-block > .wrap {
    height: 16rem !important;
  }
  .p-key-number__item#average-age .d-flex .graph-block img {
    height: 2.4rem;
    margin-top: -0.8rem;
  }
  .p-key-number__item#average-paid-vacation {
    width: calc((100% - 1rem) * 0.45);
  }
  .p-key-number__item#female-manager {
    width: calc((100% - 2rem) * 0.55);
  }
  .p-key-number__item#female-manager .label {
    font-size: 1.2rem;
  }
  .p-key-number__item#transportation-ratio {
    width: 100%;
  }
  .p-key-number__item#transportation-ratio figure {
    width: 70%;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-key-number__item#transportation-ratio .graph-block {
    width: 100% !important;
    margin-top: 4rem;
  }
  .p-key-number__item#transportation-ratio .graph-block > .wrap {
    height: 26rem !important;
  }
  .p-key-number__item#transportation-ratio .graph-block img {
    height: 3.2rem;
  }
  .p-key-number__item#transportation-number {
    width: 100%;
  }
  .p-key-number__item#transportation-number .data {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-key-number__item#transportation-number .data .number {
    font-size: 5.6rem;
  }
  .p-key-number__item#transportation-number .graph-block {
    width: 100% !important;
  }
  .p-key-number__item#transportation-number .graph-block > .wrap {
    height: 24rem !important;
  }
  .p-key-number__item#transportation-number .graph-block img {
    margin-top: 0.8rem;
  }
  .p-key-number__item#transportation-number figure {
    width: 100%;
    margin-top: 2.4rem;
  }
  .p-key-number.bottom {
    padding: 0 0 10rem 0;
  }
  .p-key-number__heading-inner {
    margin-bottom: 4rem;
  }
  .p-key-number__heading-inner .title {
    font-size: 1.8rem;
  }
  .p-key-number__heading-inner .title::after {
    width: calc(100% - 19rem);
    top: 1.6rem;
  }
  .p-key-number__heading-inner p {
    font-size: 1.5rem;
  }
}
.p-value .p-page-head {
  margin-bottom: 18rem;
}

.p-value__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0 8rem;
  width: 70%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22rem;
}
.p-value__content .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: var(--font-weight-medium);
  font-style: italic;
  color: #0057AA;
  margin-bottom: 6.4rem;
  width: 22rem;
}
.p-value__content .label::after {
  content: "";
  display: block;
  height: 1px;
  width: 13rem;
  border-bottom: 1px solid #6CA5D9;
  margin-left: 1.6rem;
}
.p-value__content .text {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.02em;
}
.p-value__content.philosophy .text {
  font-size: 4rem;
}
.p-value__content.motto .text {
  font-size: 3rem;
  line-height: 2;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-value__content {
    width: 80%;
  }
  .p-value__content.philosophy .text {
    font-size: 3.6rem;
  }
  .p-value__content.motto .text {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .p-value .p-page-head {
    margin-bottom: 12rem;
  }
  .p-value__content {
    width: 78%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 12rem;
  }
  .p-value__content .label {
    margin-bottom: 3.2rem;
    width: 18rem;
  }
  .p-value__content.philosophy .text {
    font-size: 2.2rem;
  }
  .p-value__content.motto .text {
    font-size: 1.8rem;
  }
}
.page-job-description .l-main {
  margin-top: 0;
  position: relative;
}
.page-job-description .l-main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.page-job-description .l-main::before {
  background-image: url(../img/job_description/bg.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
}

.p-job-description__content {
  padding-bottom: 18rem;
}
.p-job-description__content.container {
  max-width: 1120px;
}
.p-job-description__content.pamphlet .p-key-number__heading, .p-job-description__content.movie .p-key-number__heading {
  margin-bottom: 8rem;
}
.p-job-description__content .p-key-number__heading {
  margin-bottom: 12rem;
}
.p-job-description__content.public-info {
  padding-top: 18rem;
  background-color: #79BFD8;
  mix-blend-mode: multiply;
}
.p-job-description__content.public-info .container {
  max-width: 1120px;
}
.p-job-description__content.public-info .p-key-number__heading {
  color: #fff;
}
.p-job-description__content.public-info .p-key-number__heading .title::after {
  border-bottom: 1px dotted #fff;
}
.p-job-description__content.public-info .p-job-description__navi {
  max-width: 984px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-job-description__content.other {
  padding-top: 18rem;
}
.p-job-description__content.other .p-job-description__navi {
  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;
}

.p-job-description__flow {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.p-job-description__flow .item {
  background-color: #fff;
  padding: 4.8rem 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-job-description__flow .item:not(:last-of-type) {
  margin-bottom: 8rem;
}
.p-job-description__flow .item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  border-left: 1px solid #0057AA;
  border-bottom: 1px solid #0057AA;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-job-description__flow .item .label {
  width: 18rem;
  font-weight: var(--font-weight-medium);
  font-size: 2.4rem;
  color: #0057AA;
}
.p-job-description__flow .item .label .number {
  font-size: 3.5rem;
}
.p-job-description__flow .item .text h3 {
  font-size: 2.2rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-jp);
  margin-bottom: 0.8rem;
}
.p-job-description__flow .item .text p {
  line-height: 2;
}

.p-job-description__navi .c-button {
  background-color: #0057AA;
  width: 100%;
  max-width: 46rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 4rem 2.4rem 4rem;
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
}
.p-job-description__navi .c-button::after {
  display: block;
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(../img/common/icon_link_outer_w.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 1rem;
}

.p-job-description__pamphlet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1124px;
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}
.p-job-description__pamphlet .item {
  width: 31%;
  max-width: 336px;
}
.p-job-description__pamphlet .item img {
  -webkit-box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
}
.p-job-description__pamphlet .item .name {
  margin-top: 2.4rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-jp);
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.p-job-description__movie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-job-description__movie .item {
  width: 46%;
  aspect-ratio: 16/9;
}
.p-job-description__movie .item iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .p-job-description__content {
    padding-bottom: 12rem;
  }
  .p-job-description__content.public-info {
    padding-top: 12rem;
  }
  .p-job-description__content.public-info .p-job-description__navi {
    gap: 2rem 0;
  }
  .p-job-description__content.other {
    padding-top: 11rem;
  }
  .p-job-description__content .p-key-number__heading {
    margin-bottom: 8rem;
  }
  .p-job-description__content.pamphlet .p-key-number__heading, .p-job-description__content.movie .p-key-number__heading {
    margin-bottom: 4.8rem;
  }
  .p-job-description__flow .item {
    padding: 3.2rem 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-job-description__flow .item:not(:last-of-type) {
    margin-bottom: 6.4rem;
  }
  .p-job-description__flow .item:not(:last-of-type)::after {
    bottom: -3.2rem;
  }
  .p-job-description__flow .item .text h3 {
    font-size: 1.8rem;
  }
  .p-job-description__navi .c-button {
    padding: 2rem 4rem 2.4rem 4rem;
    font-size: 1.6rem;
  }
  .p-job-description__navi .c-button::after {
    width: 2.4rem;
    height: 2.4rem;
  }
  .p-job-description__pamphlet {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem 0;
  }
  .p-job-description__pamphlet .item {
    width: 46%;
  }
  .p-job-description__pamphlet .item .name {
    font-size: 1.3rem;
  }
  .p-job-description__movie {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem 0;
  }
  .p-job-description__movie .item {
    width: 100%;
  }
}
.p-requirement__block:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
.p-requirement__block.is-open .heading::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-requirement__block.is-open .heading::after {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  opacity: 0;
}
.p-requirement__block .heading {
  background-color: #001976;
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-jp);
  padding: 4.8rem 4rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-requirement__block .heading:hover {
  opacity: 0.9;
}
.p-requirement__block .heading::before, .p-requirement__block .heading::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 4rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-requirement__block .heading::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-requirement__block .content {
  display: none;
  background-color: #0057AA;
  padding: 4rem;
}
.p-requirement__block .content .wrap {
  background-color: #fff;
  padding: 4rem;
}
.p-requirement__block .content .wrap .item {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  padding: 2.4rem 0;
}
.p-requirement__block .content .wrap .item:not(:last-of-type) {
  border-bottom: 1px solid #E0E0E0;
}
.p-requirement__block .content .wrap .item .label {
  width: 15rem;
  font-weight: var(--font-weight-bold);
  color: #0057AA;
}
.p-requirement__block .content .wrap .item .text {
  width: calc(100% - 23rem);
}
.p-requirement__block .content .wrap .item .text a {
  color: #0057AA;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-requirement__block .heading {
    font-size: 1.6rem;
    padding: 3.2rem 6rem 3.2rem 2.4rem;
  }
  .p-requirement__block .heading::before, .p-requirement__block .heading::after {
    width: 18px;
    right: 2.4rem;
  }
  .p-requirement__block .content {
    padding: 2rem;
  }
  .p-requirement__block .content .wrap {
    padding: 2.4rem;
  }
  .p-requirement__block .content .wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
    padding: 4rem 0;
  }
  .p-requirement__block .content .wrap .item .label {
    width: 100%;
  }
  .p-requirement__block .content .wrap .item .text {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}
.page-benefits .l-main {
  margin-top: 0;
  position: relative;
}
.page-benefits .l-main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.page-benefits .l-main::before {
  background-image: url(../img/job_description/bg.png);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  z-index: -1;
}

.p-benefits .p-division__head {
  margin-bottom: 18rem;
}

.p-benefits__content {
  margin-bottom: 24rem;
}
.p-benefits__content.container {
  max-width: 1130px;
}
.p-benefits__content .p-key-number__heading {
  margin-bottom: 14.4rem;
}

.p-benefits__list {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-benefits__list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.8rem 0;
  border-bottom: 1px solid #fff;
}
.p-benefits__list .item .label {
  width: 30rem;
  color: #0057AA;
  font-size: 2rem;
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
}
.p-benefits__list .item .label .t-small {
  font-size: 1.6rem;
}
.p-benefits__list .item .text {
  font-size: 1.7rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-benefits__cards {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4rem;
}
.p-benefits__cards .item {
  width: calc((100% - 7.2rem) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 4rem 2rem;
}
.p-benefits__cards .item .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  margin-bottom: 1.6rem;
}
.p-benefits__cards .item .label {
  font-family: var(--font-family-jp);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.45;
  color: #0057AA;
}

.p-benefits__others {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem 0;
}
.p-benefits__others .item .label {
  font-family: var(--font-family-jp);
  font-size: 2rem;
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
}
.p-benefits__others .item .picture {
  display: block;
  background-color: #fff;
  margin-top: 1.6rem;
  padding: 3.2rem;
  max-width: 300px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .p-benefits .p-division__head {
    margin-bottom: 14rem;
  }
  .p-benefits__content {
    margin-bottom: 14rem;
  }
  .p-benefits__content .p-key-number__heading {
    margin-bottom: 6.2rem;
  }
  .p-benefits__list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem 0;
    padding: 3.2rem 0;
  }
  .p-benefits__list .item .label {
    width: 100%;
    font-size: 1.8rem;
  }
  .p-benefits__list .item .label br {
    display: none;
  }
  .p-benefits__cards {
    gap: 1rem;
  }
  .p-benefits__cards .item {
    width: calc((100% - 1rem) / 2);
    padding: 2rem 1rem;
  }
  .p-benefits__cards .item .icon {
    width: 80%;
  }
  .p-benefits__cards .item .label {
    font-size: 1.4rem;
  }
  .p-benefits__others .item .label {
    font-size: 1.8rem;
  }
  .p-benefits__others .item .picture {
    max-width: 200px;
  }
}
.page-privacy {
  background-image: url(../img/message/bg.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}

@media (max-width: 767px) {
  .page-privacy {
    background-image: url(../img/message/bg_sp.svg);
  }
}
.p-privacy__content {
  font-size: 1.8rem;
  padding-bottom: 18rem;
}
.p-privacy__content.container {
  max-width: 1120px;
}
.p-privacy__content h2 {
  font-size: 3rem;
  margin-top: 6.4rem;
  margin-bottom: 3.2rem;
}
.p-privacy__content p {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
.p-privacy__content ul li {
  list-style: disc;
  margin-left: 3rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .p-privacy__content {
    font-size: 1.4rem;
    padding-bottom: 14rem;
  }
  .p-privacy__content h2 {
    font-size: 2.2rem;
  }
  .p-privacy__content p {
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    text-indent: 1.4rem;
  }
  .p-privacy__content ul li {
    margin-left: 2rem;
    margin-top: 1rem;
  }
}
.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-tablet-inline,
.show-tablet,
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-tablet,
.hide-mobile {
  display: block;
}

.hide-tablet-inline,
.hide-mobile-inline {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .show-tablet {
    display: block;
  }
  .show-tablet-inline {
    display: inline-block;
  }
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */