/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

:root {
  --vw: 1vw;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1120px) {
  html {
    font-size: 0.8928571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  min-width: 110rem;
  font-synthesis: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0;
  color: #333;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
body.is-fixed {
  overflow: hidden;
}

:target,
:focus {
  outline: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-orientation: none;
}
.safari img {
  image-rendering: inherit;
}
img {
  width: 100%;
  height: auto;
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #333;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #333;
  transition: 0.3s;
  will-change: transform;
}
button:focus {
  text-decoration: none;
}

.l-header {
  position: relative;
  width: 100%;
  height: 8rem;
  background: #fff;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7.4rem;
  }
}
.l-header__wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header__wrap {
    padding: 0 1.9rem;
  }
}
.l-header-logo {
  flex-shrink: 0;
}
.l-header-logo__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-logo__inner {
    gap: 0 0.6rem;
  }
}
.l-header-logo__img {
  width: 23.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-logo__img {
    width: 15.1rem;
  }
}
.l-header-logo__txt {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3064db;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0.6rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-logo__txt {
    font-size: 0.9rem;
    margin: 0.3rem 0 0;
  }
}
.l-header-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -8rem;
}
@media screen and (max-width: 1200px) {
  .l-header-menu {
    margin-right: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu {
    margin: 0;
  }
}
.l-header-menu-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu-list {
    display: none;
  }
}
.l-header-menu-list__item {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (any-hover: hover) {
  .l-header-menu-list__item:hover .l-header-menu-child {
    opacity: 1;
    pointer-events: all;
  }
  .l-header-menu-list__item:hover .l-header-menu-list__parent {
    color: #308ddb;
  }
}
.l-header-menu-list__parent {
  cursor: pointer;
}
.l-header-menu__ig {
  width: 3rem;
  margin-left: 3.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu__ig {
    width: 4.3rem;
    margin: 0;
    line-height: 1;
  }
}
.l-header-menu-toggle {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.6rem;
  background: #1a1a1a;
  margin-left: 1.8rem;
  cursor: pointer;
  appearance: none;
  border: 0;
  padding: 0;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-header-menu-toggle:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 0.7rem;
    margin-left: 1rem;
  }
}
.l-header-menu-toggle__bar {
  position: absolute;
  left: 1rem;
  height: 2px;
  width: 2rem;
  background: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__bar {
    left: 1.1rem;
    width: 2.2rem;
  }
}
.l-header-menu-toggle__bar--top {
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__bar--top {
    top: 1.7rem;
  }
}
.is-fixed .l-header-menu-toggle__bar--top {
  top: 1.9rem;
  transform: rotate(-135deg);
}
@media screen and (max-width: 767px) {
  .is-fixed .l-header-menu-toggle__bar--top {
    top: 2.1rem;
  }
}
.l-header-menu-toggle__bar--bottom {
  bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-menu-toggle__bar--bottom {
    bottom: 1.7rem;
  }
}
.is-fixed .l-header-menu-toggle__bar--bottom {
  bottom: 1.9rem;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .is-fixed .l-header-menu-toggle__bar--bottom {
    bottom: 2.1rem;
  }
}
.l-header-menu-child {
  pointer-events: none;
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
  padding: 3rem 0 0;
}
.l-header-menu-child__wrap {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem 0 4rem 0;
}
.l-header-menu-child__inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 100rem;
  margin: 0 auto;
}
.l-header-menu-child__balloon {
  display: block;
  position: relative;
  width: 9rem;
  background: #308ddb;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  margin: 0 0 1.3rem;
}
.l-header-menu-child__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 1rem;
  height: 0.5rem;
  background: #308ddb;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.l-header-menu-child__ttl {
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 1.6rem;
  width: 20rem;
  flex-shrink: 0;
}
.l-header-menu-child-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  margin-right: -5rem;
  padding: 2.8rem 0 0 0;
}
.l-header-menu-child-list__item {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
.l-header-menu-child-list__link {
  position: relative;
  display: inline-block;
}
.l-header-menu-child-list__link::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 0;
  width: 0;
  height: 1px;
  background: #308ddb;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .l-header-menu-child-list__link:hover {
    color: #308ddb;
    opacity: 1;
  }
  .l-header-menu-child-list__link:hover::after {
    width: 100%;
  }
}
.l-header-menu-child-list--persons .l-header-menu-child-list__item {
  width: calc((100% - 10rem) / 3);
}
.l-header-menu-child-list--persons .l-header-menu-child-list__item:first-child {
  width: 100%;
}
.l-header-drawer {
  pointer-events: none;
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 3rem 0 5rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header-drawer {
    top: 7.4rem;
    height: calc(100vh - 7.4rem);
    padding: 2.5rem 1.9rem;
    overflow-y: scroll;
  }
}
.is-fixed .l-header-drawer {
  pointer-events: all;
  opacity: 1;
}
.l-header-drawer-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 87rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-menu {
    flex-flow: column;
    width: 100%;
  }
}
.l-header-drawer-menu__item {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-menu__item {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #fff;
  }
}
.l-header-drawer-menu__item a {
  color: #333;
}
.l-header-drawer-menu__corp {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  margin: 3.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-menu__corp {
    font-size: 1.2rem;
    margin: 4.8rem 0 0;
  }
}
.l-header-drawer-menu__corp a {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
  padding: 0 1.2rem 0.8rem 0;
}
.l-header-drawer-menu__corp a::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  right: -0.1rem;
  width: 0.6rem;
  height: 0.1rem;
  background: #1a1a1a;
  transform: rotate(45deg);
}
.l-header-drawer-menu__balloon {
  display: block;
  position: relative;
  width: 9rem;
  background: #308ddb;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  margin: 0 0 1.3rem;
}
.l-header-drawer-menu__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 1rem;
  height: 0.5rem;
  background: #308ddb;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.l-header-drawer-menu__parent {
  position: relative;
  transition: 0.3s;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #333;
  border-bottom: 1px solid #308ddb;
  padding: 0 0 1.1rem;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-menu__parent {
    display: block;
    width: 100%;
  }
  .l-header-drawer-menu__parent::before, .l-header-drawer-menu__parent::after {
    content: "";
    position: absolute;
    bottom: 1.9rem;
    right: 0.5rem;
    width: 2rem;
    height: 2px;
    background: #3064db;
    transition: 0.3s;
  }
  .l-header-drawer-menu__parent::before {
    transform: rotate(90deg);
  }
  .is-open .l-header-drawer-menu__parent::before {
    opacity: 0;
  }
}
.l-header-drawer-child {
  /*
  pointer-events: none;
  position: absolute;
  top: 4.3rem;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: $duration;
  */
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child {
    pointer-events: all;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: 0;
    overflow: hidden;
    opacity: 1;
    translate: none;
    transition: height 0.3s ease;
    transform: none;
    padding: 0;
  }
}
.l-header-drawer-child__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child__inner {
    background: none;
    border-top: 0;
  }
}
.l-header-drawer-child-list {
  padding: 1rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-flow: column;
    padding: 0;
  }
}
.l-header-drawer-child-list__item {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.l-header-drawer-child-list__item + .l-header-drawer-child-list__item {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child-list__item + .l-header-drawer-child-list__item {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child-list__item {
    font-size: 1.2rem;
    border-bottom: 1px solid #e8e8e8;
  }
}
.l-header-drawer-child-list__item a {
  position: relative;
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child-list__item a {
    display: block;
    padding: 1.2rem 0;
  }
}
.l-header-drawer-child-list__item a[target=_blank] {
  position: relative;
  padding-right: 2rem;
}
.l-header-drawer-child-list__item a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-header-drawer-child-list__item a[target=_blank]::after {
    mask: url(../img/common/icn_blank.svg) center/100% auto no-repeat;
    background: #fff;
  }
}

.l-footer {
  position: relative;
  background: #f6f6f6;
  padding: 6.8rem 0 5rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 3rem 1.9rem 10.5rem;
  }
}
.l-footer-block {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  z-index: 100;
}
.l-footer-block__logo {
  width: 31.4rem;
  margin: 0 0 3.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer-block__logo {
    display: none;
  }
}
.l-footer-block-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu {
    display: none;
  }
}
.l-footer-block-menu + .l-footer-block-menu {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu + .l-footer-block-menu {
    display: block;
    margin: 0;
  }
}
.l-footer-block-menu__item {
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__item {
    width: 100%;
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #fff;
  }
}
.l-footer-block-menu__item a {
  color: #333;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__item a {
    color: #fff;
  }
}
.l-footer-block-menu__corp {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__corp {
    font-size: 1.2rem;
  }
}
.l-footer-block-menu__corp a {
  display: inline-block;
  position: relative;
  border-bottom: 1px solid #1a1a1a;
  padding: 0 1.2rem 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__corp a {
    padding: 0;
    border: 0;
  }
}
.l-footer-block-menu__corp a::after {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  right: -0.1rem;
  width: 0.6rem;
  height: 0.1rem;
  background: #1a1a1a;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__corp a::after {
    content: none;
  }
}
.l-footer-block-menu__other {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .l-footer-block-menu__other {
    font-size: 1.2rem;
    margin-top: 3rem;
  }
}
.l-footer-block-menu__balloon {
  display: block;
  position: relative;
  width: 9rem;
  background: #308ddb;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 0.4rem 0;
  margin: 0 0 1.3rem;
}
.l-footer-block-menu__balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 1rem;
  height: 0.5rem;
  background: #308ddb;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.l-footer-block-menu__parent {
  position: relative;
  transition: 0.3s;
  line-height: 1;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #308ddb;
  padding: 0 0 1.1rem;
}
.l-footer-block-child__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer-block-child__inner {
    background: none;
    border-top: 0;
    padding: 1rem 0 3.2rem;
  }
}
.l-footer-block-child-list {
  padding: 1rem 0 0;
}
.l-footer-block-child-list__item {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.l-footer-block-child-list__item + .l-footer-block-child-list__item {
  margin-top: 1rem;
}
.l-footer-block-child-list__item a {
  position: relative;
  color: #333;
}
.l-footer-block-child-list__item a[target=_blank] {
  position: relative;
  padding-right: 2rem;
}
.l-footer-block-child-list__item a[target=_blank]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icn_blank.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .l-footer-block-child-list__item a[target=_blank]::after {
    mask: url(../img/common/icn_blank.svg) center/100% auto no-repeat;
    background: #fff;
  }
}
.l-footer-block__copy {
  position: absolute;
  bottom: 0.8rem;
  right: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer-block__copy {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin: 3.2rem 0 0;
  }
}

.l-main {
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 7.4rem;
  }
}

.c-heading__en {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 11rem;
  height: 1.8rem;
  line-height: 1;
  background: #fff;
  color: #308ddb;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 1.8rem;
  padding: 0 0 0.1rem;
}
@media screen and (max-width: 767px) {
  .c-heading__en {
    width: 11rem;
    height: 1.8rem;
    font-size: 1.2rem;
    margin: 0 0 1.3rem;
  }
}
.c-heading__en::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 1rem;
  height: 0.5rem;
  background: #fff;
  transform: translateX(-50%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (max-width: 767px) {
  .c-heading__en::after {
    bottom: -0.4rem;
    width: 0.9rem;
    height: 0.5rem;
  }
}
.c-heading__ttl {
  font-size: 4rem;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading__ttl {
    font-size: 3.6rem;
    letter-spacing: 0.1em;
  }
}
.c-heading--blue .c-heading__en {
  background: #3064db;
  color: #fff;
}
.c-heading--blue .c-heading__en::after {
  background: #3064db;
}
.c-heading--blue .c-heading__ttl {
  color: #3064db;
}

.c-sub__ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 0 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3064db;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-sub__ttl {
    gap: 0 1.6rem;
    letter-spacing: 0.15em;
  }
}
.c-sub__en {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #acc1f1;
}
@media screen and (max-width: 767px) {
  .c-sub__en {
    letter-spacing: 0.12em;
  }
}

.c-btn {
  width: 100%;
  height: 6.6rem;
}
.c-btn__link {
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 0.9rem;
  height: 1.1rem;
  background: #fff;
  transform: translateY(-50%);
  clip-path: polygon(100% 50%, 0% 100%, 0 0);
  z-index: 2;
  transition: 0.3s;
}
.c-btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4.2rem;
  height: 4.2rem;
  background: #3064db;
  border: 1px solid #fff;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-btn__link:hover {
    opacity: 1;
  }
  .c-btn__link:hover::before {
    background: #3064db;
  }
  .c-btn__link:hover::after {
    background: #fff;
  }
  .c-btn__link:hover .c-btn__txt {
    color: #fff;
    background: #3064db;
  }
}
.c-btn__link:focus-visible, .c-btn__link:active {
  opacity: 1;
}
.c-btn__link:focus-visible::before, .c-btn__link:active::before {
  background: #3064db;
}
.c-btn__link:focus-visible::after, .c-btn__link:active::after {
  background: #fff;
}
.c-btn__link:focus-visible .c-btn__txt, .c-btn__link:active .c-btn__txt {
  color: #fff;
  background: #3064db;
}
.c-btn__txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 2.2rem);
  height: 100%;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #333;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn__txt {
    width: calc(100% - 1.45rem);
  }
}

.c-follow {
  position: fixed;
  top: 19rem;
  right: 3.8rem;
  z-index: 3;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-follow {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    flex-flow: row-reverse;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    width: 100%;
    background: #fff;
  }
}
.c-follow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.c-follow__item {
  width: 14rem;
}
@media screen and (max-width: 767px) {
  .c-follow__item {
    width: 60%;
    height: 7.5rem;
  }
}
.c-follow__item + .c-follow__item {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-follow__item + .c-follow__item {
    width: 40%;
    margin-top: 0;
  }
}
.c-follow__img {
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-follow__img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-follow__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 767.1px) and (any-hover: hover) {
  .c-follow__link:hover {
    opacity: 1;
  }
  .c-follow__link:hover .c-follow__img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .c-follow:not(:has(.c-follow__item--growth)) .c-follow__item--entry {
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, rgb(234, 97, 124) 0%, rgb(234, 70, 120) 100%);
  }
}
.c-follow:not(:has(.c-follow__item--growth)) .c-follow__item--entry .c-follow__img img {
  width: auto;
}

.c-page-header {
  position: relative;
  background: #308ddb;
}
.c-page-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30rem;
  height: 100%;
  background: linear-gradient(90deg, #308ddb 0%, #3064db 100%);
}
.c-page-header__inner {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 1.2rem;
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
  z-index: 2;
  padding: 1.8rem 0;
}
@media screen and (max-width: 767px) {
  .c-page-header__inner {
    padding: 1.1rem 1rem 1.1rem 1.9rem;
  }
}
.c-page-header__en {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 11.4rem;
  height: 1.8rem;
  background: #fff;
  color: #3064db;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  clip-path: polygon(96% 0, 96% 25%, 100% 50%, 96% 75%, 96% 100%, 0 100%, 0 0);
  padding: 0 0 0.2rem;
}
@media screen and (max-width: 767px) {
  .c-page-header__en {
    width: 8.6rem;
  }
}
.c-page-header__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #fff;
}

.c-profile {
  width: 32rem;
  height: 16rem;
  background: linear-gradient(90deg, #308ddb 0%, #3064db 100%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-profile {
    width: 28.8rem;
    height: 14.4rem;
  }
}
.c-profile__inner {
  position: relative;
  height: 100%;
  padding: 1.8rem 0 0;
}
@media screen and (max-width: 767px) {
  .c-profile__inner {
    padding: 1.6rem 0 0;
  }
}
.c-profile__inner::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #308ddb;
  background: #fff;
  opacity: 0;
  transition: 0.3s;
}
.c-profile__overview {
  position: relative;
  line-height: 1.625;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-profile__overview {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.c-profile__name {
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  margin: 1.5rem 0 0;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-profile__name {
    font-size: 2.7rem;
  }
}
.c-profile__en {
  position: relative;
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 1.1rem 0 0;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-profile__en {
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
  margin-top: 1rem;
}
.u-mt15 {
  margin-top: 1.5rem;
}
.u-mt20 {
  margin-top: 2rem;
}
.u-mt30 {
  margin-top: 3rem;
}
.u-mt40 {
  margin-top: 4rem;
}
.u-mt50 {
  margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold { /*font-weight: 700;*/ }

/* --------------------------------------------------
colorset
-------------------------------------------------- */
.-u34 .grad {
  background: linear-gradient(135deg, #FFAE18 0%, #FFC526 73%);
}
.-u34 .bg {
  background: #FFF4D7;
}
.-u34 .txt {
  color: #FFA700;
}

.-u56 .grad {
  background: linear-gradient(135deg, rgb(255, 105, 24) 0%, rgb(255, 147, 38) 73%);
}
.-u56 .bg {
  background: #FFEEE4;
}
.-u56 .txt {
  color: #FF5E19;
}

.-jr1 .grad {
  background: linear-gradient(135deg, #16B970 0%, #26D084 73%);
}
.-jr1 .bg {
  background: #EBFFF6;
}
.-jr1 .txt {
  color: #00A259;
}

.-jr2 .grad {
  background: linear-gradient(135deg, #00867C 0%, #00ADA0 73%);
}
.-jr2 .bg {
  background: #EBFFF6;
}
.-jr2 .txt {
  color: #00736B;
}

.-jr3 .grad {
  background: linear-gradient(135deg, #05A1EA 0%, #2CA7E0 73%);
}
.-jr3 .bg {
  background: #EEFAFF;
}
.-jr3 .txt {
  color: #008DCF;
}

.-jr1a .grad,
.-jr2a .grad,
.-jr3a .grad {
  background: linear-gradient(135deg, #0862EA 0%, #2471E5 73%);
}
.-jr1a .bg,
.-jr2a .bg,
.-jr3a .bg {
  background: #D9E8FF;
}
.-jr1a .txt,
.-jr2a .txt,
.-jr3a .txt {
  color: #1F6EE6;
}

.-youth .grad {
  background: linear-gradient(135deg, #B05BE9 0%, #BD7BEA 73%);
}
.-youth .bg {
  background: #F1DBFF;
}
.-youth .txt {
  color: #B05BE9;
}

.-skill1 .grad,
.-skill2 .grad {
  background: linear-gradient(135deg, #DF3573 0%, #F35A92 73%);
}
.-skill1 .txt,
.-skill2 .txt {
  color: #DA2668;
}

.js-fadeUp,
.js-fade {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadeUp {
  transform: translateY(2rem);
}

.js-fade {
  transform: none;
}

.js-fadeUp.is-show,
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}