@charset "UTF-8";
/*---------------------------
/setting/size参照
---------------------------*/
/* min-width
-------------------------------------------------------------------------- */
/* max-width
-------------------------------------------------------------------------- */
/*黒：font*/
/*メインネイビー*/
/*メインとアクセントの中間の色*/
/*ボタンやアクセントの明るいブルー*/
/*ヘッダーダウンロードで使用ネイビー*/
/*濃紺：リンク他*/
/*エメラルド：装飾他*/
/*赤：装飾他*/
/*bg：背景*/
/*グラデーション*/
/*文字グラデーション*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@600&display=swap");
@import "https://pro.fontawesome.com/releases/v5.10.0/css/all.css";
.c_grad_font {
  background: -webkit-linear-gradient(0deg, #0768d4, #4fc8dc);
  color: #4ac2db;
}

em.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p.c_grad_font {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ja
-------------------------------------------------------------------------- */
/* en
-------------------------------------------------------------------------- */
#space {
  height: 1300px;
  background-color: blanchedalmond;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -80px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  transform: translate(0, 80px);
  opacity: 1;
}

.slideIn-down {
  transform: translate(0, -80px);
  opacity: 1;
}

.slideIn-left {
  transform: translate(-80px, 0);
  opacity: 1;
}

.slideIn-right {
  transform: translate(80px, 0);
  opacity: 1;
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

.is-fadein-active {
  visibility: visible !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

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

/* 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 {
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  line-height: 1.15; /* 1 */
}

/* 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 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* 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 */
  margin: 0;
  clear: both;
  overflow: visible; /* 2 */
  border-top-width: 1px;
  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-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          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-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * 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 {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* 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 */
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
}

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

[type=radio] {
  -webkit-appearance: radio;
  -moz-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 {
  min-width: 0;
  margin: 0;
  padding: 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 {
  padding: 0;
  vertical-align: top;
}

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

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}
body {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
}

em {
  font-style: initial;
}

/*各html要素*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

h2 {
  margin-bottom: 3.125vw;
  font-size: clamp(18px, 1.046vw, 20px);
}

h3 {
  font-size: clamp(18px, 1.25vw, 24px);
}

main {
  margin-top: 9.7rem;
}

.l-container--pt0, .l-container--p0, .l-container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}

.l-container {
  padding: 80px 0 100px 0;
}
.l-container--p0 {
  padding: 0;
}
.l-container--pt0 {
  padding: 0 0 100px 0;
}
.l-container.l-container-servicelist {
  padding-top: 0 !important;
}

header {
  font-family: YakuHanMP, "Noto Serif JP", serif;
}

.l-topicpath {
  padding: 0.5701660609em 0;
  background-color: #edf2f8;
}

.l-topicpath__inner {
  display: flex;
  width: 90%;
  max-width: 78.397833369em;
  margin: auto;
}

.l-topicpath__inner li {
  font-size: 79%;
  font-family: "Noto Sans JP", sans-serif;
}

.l-topicpath__inner li a {
  color: #878787;
  text-decoration: none;
}

.l-topicpath__inner li:not(:last-child) {
  margin-right: 0.5em;
}

.l-topicpath__inner li:not(:last-child)::after {
  margin-left: 0.5em;
  content: "\f105";
  color: #878787;
  font-weight: 500;
  font-family: "Font Awesome 5 Pro";
}

.c-arrow--center-bottom {
  width: 0;
  height: 0;
  margin: 4rem auto 0;
  border-width: 7rem 10rem 0 10rem;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
}

.c-bg--gr {
  background: #E8ECF4;
}
.c-bg--b {
  background: #D7E3F1;
}
.c-bg--wh {
  background: #fff;
}

.c-bnr_wrap {
  padding-top: 5rem;
}
.c-bnr-meeting a {
  display: block;
  position: relative;
  margin-top: 6rem;
  padding: 20px 70px 20px 0;
  background: url(../img/bg_bnr_001.jpg) no-repeat center center;
  background-size: cover;
  box-shadow: 6px 6px 10px -6px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-bnr-meeting a::after {
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 5%;
  width: 16px;
  height: 32px;
  background: url(../img/ico_arrow_01.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-meeting__wrap {
  width: 60%;
  margin-left: auto;
  padding: 3rem 0;
  text-align: center;
}
.c-bnr-meeting__ico {
  width: 150px;
  margin: auto;
  background-color: #FFF;
  color: #3974B9;
  font-weight: 500;
}
.c-bnr-meeting__ttl1 {
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-meeting__ttl2 {
  font-weight: 500;
  font-size: 38px;
  line-height: 1.4;
}
.c-bnr-meeting__ttl3 {
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-matching {
  margin-top: 6rem;
}
.c-bnr-matching a {
  display: block;
  position: relative;
  padding: 20px 70px 20px 0;
  background: url(../img/bg_bnr_003.jpg) no-repeat center center;
  background-size: cover;
  box-shadow: 6px 6px 10px -6px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-bnr-matching a::after {
  display: block;
  position: absolute;
  top: calc(50% - 108px);
  right: 3%;
  width: 220px;
  height: 220px;
  background: url(../img/ico_arrow_06.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-matching__wrap {
  width: 60%;
  margin-left: 6rem;
  padding: 3rem 2rem;
  text-align: center;
}
.c-bnr-matching__ico {
  width: 150px;
  margin: auto;
  background-color: #FFF;
  color: #3974B9;
  font-weight: 500;
}
.c-bnr-matching__ttl1 {
  font-weight: 500;
  font-size: 38px;
}
.c-bnr-matching__ttl2 {
  padding-bottom: 3rem;
  border-bottom: 1px solid #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}
.c-bnr-matching__ttl3 {
  padding-top: 3rem;
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-meeting a {
  display: block;
  position: relative;
  padding: 20px 70px 20px 0;
  background: url(../img/bg_bnr_001.jpg) no-repeat center center;
  background-size: cover;
  box-shadow: 6px 6px 10px -6px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-bnr-meeting a::after {
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 5%;
  width: 16px;
  height: 32px;
  background: url(../img/ico_arrow_01.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-meeting__wrap {
  width: 60%;
  margin-left: auto;
  padding: 3rem 0;
  text-align: center;
}
.c-bnr-meeting__ico {
  width: 150px;
  margin: auto;
  background-color: #FFF;
  color: #3974B9;
  font-weight: 500;
}
.c-bnr-meeting__ttl1 {
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-meeting__ttl2 {
  font-weight: 500;
  font-size: 38px;
  line-height: 1.4;
}
.c-bnr-meeting__ttl3 {
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-news a {
  display: block;
  position: relative;
  padding: 20px 70px 20px 0;
  background: url(../img/bg_bnr_004.jpg) no-repeat center center;
  background-size: cover;
  box-shadow: 6px 6px 10px -6px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-bnr-news a::after {
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 5%;
  width: 16px;
  height: 32px;
  background: url(../img/ico_arrow_01.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-news__wrap {
  margin-left: auto;
  padding: 3rem 0;
  text-align: center;
}
.c-bnr-news__ico {
  width: 150px;
  margin: auto;
  background-color: #FFF;
  color: #3974B9;
  font-weight: 500;
}
.c-bnr-news__ttl1 {
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-news__ttl2 {
  position: relative;
  max-width: 560px;
  margin: auto;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.4;
}
.c-bnr-news__ttl2 span {
  font-size: 50px;
}
.c-bnr-news__ttl2::after {
  display: block;
  position: absolute;
  top: calc(50% - 60px);
  width: 10%;
  height: 100%;
  background: url(../img/bg_bnr_004_icon01.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-news__ttl2::before {
  display: block;
  position: absolute;
  top: calc(50% - 60px);
  right: 0;
  width: 10%;
  height: 100%;
  background: url(../img/bg_bnr_004_icon02.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-bnr-news__ttl3 {
  padding-top: 2rem;
  font-weight: 500;
  font-size: 18px;
}
.c-bnr-book {
  position: relative;
  padding: 2rem 2rem 0 2rem;
  background: url(../img/bg_bnr_002.png) no-repeat center center;
  background-size: cover;
}
.c-bnr-book__ttl1 {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 25px;
  background-color: #17375B;
  color: #FFF;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1;
}
.c-bnr-book figure {
  width: 12%;
}
.c-bnr-book__ttl2 {
  width: 40%;
  margin: auto 0;
  font-weight: bold;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.4;
  text-align: center;
}
.c-bnr-book__ttl2 span {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.c-bnr-book__list {
  width: 30%;
}
.c-bnr-book__list li {
  margin-bottom: 2rem;
}
.c-bnr-book__list li a {
  display: block;
  position: relative;
  padding: 1.5rem 2rem;
  border: 1px solid #DADCE2;
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  transition: 0.7s;
}
.c-bnr-book__list li a:hover {
  opacity: 0.7;
}
.c-bnr-book__list li a.link_out::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  width: 16px;
  height: 16px;
  background: url(../img/ico_out.svg) no-repeat center center;
  content: "";
}
.c-bnr-book__list li a.link_in::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  width: 16px;
  height: 16px;
  background: url(../img/ico_arrow_02.svg) no-repeat center center;
  content: "";
}

.c-box {
  margin-bottom: 50px;
  padding: 2.9rem;
  background-color: #F3F5F7;
}

.c-text-link--arrow-right a::before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-color: #ccc;
  content: "";
  vertical-align: middle;
}

*[class^=c-btn] {
  display: inline-block;
  position: relative;
}

.c-btn-blue {
  display: block;
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1rem 0 1rem 2rem;
  background-color: #3974B9;
  box-shadow: 4px 4px 10px -7px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-weight: bold;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-btn-blue::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  width: 8px;
  height: 16px;
  background: url(../img/ico_arrow_01.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-btn-blue2 {
  display: block;
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 1rem 0 1rem 2rem;
  background-color: #17375B;
  box-shadow: 4px 4px 10px -7px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-weight: bold;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-btn-blue2::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  width: 8px;
  height: 16px;
  background: url(../img/ico_arrow_01.svg) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-btn-wrap-c {
  width: 100%;
}
.c-btn-wrap-c a {
  margin: auto;
}
.c-btn-wrap-c2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 8rem;
  gap: 3rem;
}
.c-btn-wrap-c2 li {
  width: 48%;
  max-width: 360px;
}
.c-btn-wrap-c3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 2rem;
  gap: 1rem;
}
.c-btn-wrap-c3 li {
  width: 42%;
}
.c-btn-consultant {
  display: block;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}

.c-btn-consultant:after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 1rem;
  transform: translateY(-25%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
  transition: transform 0.3s;
}

.consultant-active {
  display: none;
  margin-bottom: 4rem;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.8;
}

.c-cate--line {
  display: inline-block;
  padding: 0.2rem 5rem;
  border: 1px solid #17375B;
  color: #17375B;
  font-size: clamp(10px, 0.625vw, 12px);
}

.c-document {
  background-color: #17375B;
}
.c-document h2 {
  color: #FFF;
}
.c-document-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 4rem;
  padding-top: 4rem;
  gap: 0;
}
.c-document-list > li {
  display: flex;
  width: 32%;
  padding: 3rem;
  background-color: #FFF;
}
.c-document-list figure {
  margin-bottom: 2rem;
}
.c-document-list-ico {
  width: 100%;
}
.c-document-list-ico li {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 10px;
  background-color: #17375B;
  color: #FFF;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1;
}
.c-document-list__ttl {
  padding: 2rem 0;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5555555556;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-document-list p {
  line-height: 1.625;
}
.c-document-list .c-btn-blue {
  margin-top: 3rem;
}
.c-document .c-title-h2-nomal {
  font-size: clamp(24px, 1.77vw, 34px);
}

.c-faq {
  background-color: #E8ECF4;
}

.c-figure {
  margin: 6rem 0 0;
  text-align: center;
}

.c-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-flex p {
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.c-flex-60 {
  width: 60%;
  margin: auto 0;
}
.c-flex-50 {
  width: 48%;
  margin: auto 0;
}
.c-flex-44 {
  width: 44%;
  margin: auto 0;
}
.c-flex-40 {
  width: 40%;
  margin: auto 0;
}
.c-flex-32 {
  width: 32%;
}
.c-flex-mt0 {
  margin-top: 0;
}

.c-glossary-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding: 5rem 0;
  gap: 0;
}
.c-glossary-list li {
  width: 32%;
  margin-bottom: 2%;
}
.c-glossary-list li a {
  display: block;
  position: relative;
  padding: 2rem;
  box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.3);
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: left;
}
.c-glossary-list li a::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 25px;
  width: 16px;
  height: 16px;
  background: url(../img/ico_arrow_02.svg) no-repeat center center;
  content: "";
}

*[class^=c-img-box] {
  margin-bottom: 4rem;
  overflow: hidden;
}
*[class^=c-img-box] img {
  max-width: 44%;
}
*[class^=c-img-box] + * {
  overflow: hidden;
}

.c-img-box--l__item, .c-img-box--l img {
  max-width: 44%;
  margin-right: 4rem;
  float: left;
}
.c-img-box--r__item, .c-img-box--r img {
  max-width: 44%;
  margin-left: 4rem;
  float: right;
}
.c-img-box--half {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 8%;
}
.c-img-box--half__item {
  width: 46%;
  max-width: 46%;
  text-align: center;
}
.c-img-box--half__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto 0.5rem;
}

.c-img-c {
  padding: 3rem 0;
  text-align: center;
}
.c-img-c img {
  width: 100%;
}
.c-img-c_sp {
  display: none;
}

.c-information-list {
  width: 80%;
  margin: auto;
  overflow: hidden;
}
.c-information-list .swiper-slide a {
  display: block;
  padding: 2rem;
  background-color: #FFF;
}
.c-information-list .swiper-slide figure {
  margin-bottom: 2rem;
}
.c-information-list-ico li {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 10px;
  background-color: #17375B;
  color: #FFF;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1;
}
.c-information-list__ttl {
  padding: 2rem 0;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5555555556;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-information-list p {
  line-height: 1.625;
}
.c-information-list__date {
  margin-top: 2rem;
  color: #666;
  font-size: 14px;
}
.c-information-list-pagination {
  padding: 2rem 0 3rem 0;
  text-align: center;
}
.c-information-list-button-next {
  position: absolute;
  top: calc(50% - 40px);
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/ico_next_01.svg) no-repeat center center #FFF;
  background-size: 16px;
  box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.6);
}
.c-information-list-button-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.c-information-list-button-prev {
  position: absolute;
  top: calc(50% - 40px);
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/ico_prev_01.svg) no-repeat center center #FFF;
  background-size: 16px;
  box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.6);
}
.c-information-list-button-prev:hover {
  cursor: pointer;
  opacity: 0.7;
}

.swiper-pagination-bullet {
  width: 22px !important;
  height: 2px !important;
  border-radius: 0 !important;
  background-color: #8C9FC8;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1A3F91;
}

.c-information .c-title-h2-nomal {
  font-size: clamp(24px, 1.77vw, 34px);
}
.c-information .l-container {
  padding-top: 0;
}

.c-list-solution {
  padding: 6rem 8rem;
  background-color: #D7E3F1;
}
.c-list-solution ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-solution ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 33.3333333333%;
  padding: 0 4%;
  gap: 0;
  border-right: 1px solid #FFF;
}
.c-list-solution ul li:last-child {
  border: none;
}
.c-list-solution__num {
  width: 30%;
  margin: auto;
  color: #FFF;
  font-weight: 500;
  font-size: 150px;
  line-height: 0;
  font-family: "Crimson Text", serif;
}
.c-list-solution__text {
  width: 70%;
  margin: auto;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.6;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-list-service {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 4rem;
  gap: 0;
}
.c-list-service li {
  position: relative;
  margin-bottom: 4%;
  text-align: center;
}
.c-list-service li a {
  display: block;
  height: 100%;
  background-color: #EBF1F8;
  color: #17375B;
}
.c-list-service li p {
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-align: left;
}
.c-list-service__item {
  width: 48%;
}
.c-list-service__item .c-btn-blue {
  margin: auto;
}
.c-list-service__ttl {
  padding: 3.5rem 0;
  font-weight: 500;
  font-size: clamp(18px, 1.354vw, 26px);
  line-height: 1.3;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-list-service__ttl span {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #17375B;
  font-size: 18px;
}
.c-list-service__ttl.line2 {
  padding: 2rem 0;
}
.c-list-service__en {
  margin-bottom: 2rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
}
.c-list-service__more a {
  margin: auto;
  border: 1px solid #FFF;
}
.c-list-service__wrap {
  padding: 0 4rem 4rem 4rem;
}
.c-list-service__btn {
  width: 100%;
  max-width: 360px;
  margin: auto;
}
.c-list-service__btn a {
  border: 1px solid #FFF;
}
.c-list-service__ico {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 75px);
  width: 150px;
  background-color: #17375B;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(18px, 1.354vw, 26px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-list-service-cross-border {
  text-align: center;
}
.c-list-service-cross-border figure {
  margin-bottom: 6rem;
}
.c-list-service-cross-border img:nth-child(3) {
  margin-bottom: 5rem;
}
.c-list-service-ico {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-service-ico li {
  width: 31%;
  padding: 3rem;
  border: 1px solid #B9C3CE;
}
.c-list-service-ico li figure {
  padding-bottom: 3rem;
  text-align: center;
}
.c-list-service-ico li figure img {
  width: 80%;
  max-width: 170px;
}
.c-list-service-ico-growin {
  text-align: center;
}
.c-list-service-ico__ttl {
  margin-bottom: 2rem;
  color: #17375B;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.6;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-list-service.list-center {
  margin-bottom: 0;
}
.c-list-service.list-center li {
  margin: auto auto 0 auto;
}
.c-list-service2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-service2 li {
  position: relative;
  margin-bottom: 0.4%;
  padding: 5rem 6rem 4rem 6rem;
  color: #FFF;
  text-align: center;
}
.c-list-service2 li p {
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-align: left;
}
.c-list-service2__item {
  width: 49.8%;
}
.c-list-service2__item_a {
  width: 100%;
  background: url(../img/service/bg_c-list-service__001.jpg) no-repeat center center;
  background-size: cover;
}
.c-list-service2__item_a p {
  text-align: center !important;
}
.c-list-service2__ttl {
  font-weight: 500;
  font-size: clamp(24px, 1.562vw, 30px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-list-service2__en {
  margin-bottom: 2rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
}
.c-list-service2__bg1 {
  background: url(../img/service/bg_c-list-service__002.jpg) no-repeat center center;
  background-size: cover;
}
.c-list-service2__bg2 {
  background: url(../img/service/bg_c-list-service__003.jpg) no-repeat center center;
  background-size: cover;
}
.c-list-service2__bg3 {
  background: url(../img/service/bg_c-list-service__004.jpg) no-repeat center center;
  background-size: cover;
}
.c-list-service2__bg4 {
  background: url(../img/service/bg_c-list-service__005.jpg) no-repeat center center;
  background-size: cover;
}
.c-list-service2__more a {
  margin: auto;
  border: 1px solid #FFF;
}
.c-list-service2__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 25px;
}
.c-list-service2__btn {
  width: 100%;
  max-width: 360px;
}
.c-list-service2__btn a {
  border: 1px solid #FFF;
}
.c-list-service2__ico {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 75px);
  width: 150px;
  background-color: #17375B;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(18px, 1.354vw, 26px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-list-service2-ico {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-service2-ico li {
  width: 31%;
  padding: 3rem;
  border: 1px solid #B9C3CE;
}
.c-list-service2-ico li figure {
  padding-bottom: 3rem;
  text-align: center;
}
.c-list-service2-ico li figure img {
  width: 80%;
  max-width: 170px;
}
.c-list-service2-ico__ttl {
  margin-bottom: 2rem;
  color: #17375B;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.6;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-list-consultant {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.c-list-consultant li {
  width: 32.6666666667%;
  margin-right: 1%;
  margin-bottom: 0.8%;
  padding: 2rem;
  background-color: #FFF;
}
.c-list-consultant li a {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-consultant li figure {
  width: 30%;
  margin: auto 0;
}
.c-list-consultant li figure img {
  border-radius: 50%;
}
.c-list-consultant li:nth-child(3n) {
  margin-right: 0;
}
.c-list-consultant__wrap {
  width: 65%;
  margin: auto 0;
  color: #000;
  font-weight: 500;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-list-consultant__name {
  margin-bottom: 1rem;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-list-consultant__post {
  margin-bottom: 1rem;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.4;
}
.c-list-consultant__department {
  font-size: 13px;
  line-height: 1.4;
}
.c-list-information {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-information li {
  width: 49%;
  margin-bottom: 2rem;
  border: 1px solid #E8EBEF;
}
.c-list-information li a {
  display: block;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-list-information li a figure {
  width: 40%;
}
.c-list-information__ttl {
  width: 60%;
  margin: auto 0;
  padding: 0 3rem;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-list-blue1 {
  padding: 3rem 0 3rem 2rem;
}
.c-list-blue1 li {
  position: relative;
  padding-left: 1em;
}
.c-list-blue1 li::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "●";
  color: #26507D;
  font-size: 8px;
}
.c-list-blue2 {
  padding: 3rem 0 3rem 2rem;
}
.c-list-blue2 li {
  position: relative;
  padding-left: 1em;
}
.c-list-blue2 li::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "●";
  color: #3974B9;
  font-size: 8px;
}
.c-list-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 4rem;
  gap: 0;
}
.c-list-flow li {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 140px;
  height: 140px;
  gap: 0;
  border: 1px solid #26507D;
  border-radius: 70px;
  color: #26507D;
}
.c-list-flow li::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: -5rem;
  width: 12px;
  height: 15px;
  background: url(../img/ico_arrow_05.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.c-list-flow li:last-child::after {
  display: none;
}
.c-list-flow__item {
  margin: auto;
  font-weight: bold;
  text-align: center;
}

.c-list-consultant-close {
  display: none;
  margin-bottom: 4rem;
}

.c-page-top {
  position: fixed;
  right: 1.0416666667vw;
  bottom: 5.2083333333vw;
}
.c-page-top a {
  position: relative;
  width: 8rem;
  height: 8rem;
  border-radius: 8rem;
  background: #fff;
  box-shadow: 1rem 0 2rem rgba(1, 120, 228, 0.2);
  transition: 0.3s all;
}
.c-page-top a::before {
  display: block;
  position: absolute;
  content: "";
}
.c-page-top a:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}

.c-seminar-list {
  width: 80%;
  margin: 4rem auto;
  overflow: hidden;
}
.c-seminar-list .swiper-slide a {
  display: block;
}
.c-seminar-list .swiper-slide figure {
  margin-bottom: 1rem;
}
.c-seminar-list__ico__01 {
  display: inline-block;
  width: 130px;
  padding: 5px 0;
  border: 1px solid #17375B;
  background-color: #17375B;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
.c-seminar-list__ico__02 {
  display: inline-block;
  width: 130px;
  padding: 5px 0;
  border: 1px solid #17375B;
  background-color: #FFF;
  color: #17375B;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
.c-seminar-list__ttl {
  padding: 1rem 0;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5555555556;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-seminar-list p {
  line-height: 1.625;
}
.c-seminar-list__date {
  margin-top: 2rem;
  color: #666;
  font-size: 14px;
}
.c-seminar-list-pagination {
  padding: 2rem 0 3rem 0;
  text-align: center;
}
.c-seminar-list-button-next {
  position: absolute;
  top: 35%;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/ico_next_01.svg) no-repeat center center #FFF;
  background-size: 16px;
}
.c-seminar-list-button-next:hover {
  cursor: pointer;
  opacity: 0.7;
}
.c-seminar-list-button-prev {
  position: absolute;
  top: 35%;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background: url(../img/ico_prev_01.svg) no-repeat center center #FFF;
  background-size: 16px;
}
.c-seminar-list-button-prev:hover {
  cursor: pointer;
  opacity: 0.7;
}

.swiper-pagination-bullet {
  width: 22px !important;
  height: 2px !important;
  border-radius: 0 !important;
  background-color: #8C9FC8;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1A3F91;
}

.c-seminar {
  background-color: #E8ECF4;
}
.c-seminar .l-container {
  position: relative;
}
.c-seminar .c-title-h2-nomal {
  font-size: clamp(24px, 1.77vw, 34px);
}

.c-service-cta {
  background: url(../img/feature/bg_c-service-cta.jpg) no-repeat center 0;
  background-size: cover;
}
.c-service-cta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-service-cta-list li {
  width: 50%;
  padding: 15% 5% 5% 5%;
  color: #FFF;
  text-align: center;
}
.c-service-cta-list__ttl {
  margin-bottom: 3rem;
  font-weight: 500;
  font-size: clamp(28px, 2.083vw, 40px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-service-cta-list__lead {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-service-cta-list__btn {
  margin-top: 3rem;
}
.c-service-cta-list__btn a {
  margin: auto;
}

.c-table-df {
  width: 100%;
  width: 100%;
  margin-top: 5rem;
  table-layout: fixed;
}
.c-table-df th, .c-table-df td {
  border: 1px solid #B9C3CE;
}
.c-table-df th {
  padding: 1rem 2rem;
  background: #17375B;
  color: #FFF;
  text-align: center;
}
.c-table-df td {
  padding: 1rem 2rem;
  background: #F3F5F7;
}
.c-table-df .ta-center {
  text-align: center;
}

.c-text-link--arrow-right a, .c-text-link a {
  text-decoration: underline;
}
@includer hover {
  .c-text-link--arrow-right a, .c-text-link a {
    text-decoration: none;
  }
}

.c-text-link a {
  transition: 0.3s all;
}
.c-text-link--arrow-right {
  text-align: right;
}
.c-text-link--arrow-right a {
  position: relative;
}
.c-text-link--arrow-right a::before {
  left: -2rem;
  border-color: #17375B;
}
.c-text-link--underline {
  text-decoration: underline;
}
.c-text-link--underline:focus {
  text-decoration: none;
}

.c-text-lead-center {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.7777777778;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-text-lead-left {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.7777777778;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: left;
}
.c-text-lead-center-b {
  margin-bottom: 4rem;
  color: #17375B;
  font-weight: 600;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.7777777778;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-text-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.c-title-h2-nomal {
  margin-bottom: 2rem;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 1.263;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-title-h2-nomal.border-b {
  padding-bottom: 2rem;
  border-bottom: 1px solid #111;
}
.c-title-h2-nomal .font-s {
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-title-h2-nomal .font-m {
  font-size: clamp(24px, 1.562vw, 30px);
}
.c-title-h2-nomal-l {
  margin-bottom: 2rem;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(24px, 1.77vw, 34px);
  line-height: 1.263;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.c-title-h2-nomal-l.border-b {
  padding-bottom: 2rem;
  border-bottom: 1px solid #111;
}
.c-title-h2-ico-01 {
  display: inline-block;
  margin-right: 15px;
  padding: 8px 15px 10px 15px;
  background-color: #17375B;
  color: #FFF;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1;
  vertical-align: middle;
}
.c-title-h3-nomal {
  margin-bottom: 2rem;
  color: #17375B;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.263;
  line-height: 1.55;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.c-title-h3-border {
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #17375B;
  color: #17375B;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.263;
  line-height: 1.55;
  letter-spacing: 0.1em;
}
.c-title-h3-point {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 3rem;
  gap: 30px;
}
.c-title-h3-point__ico {
  width: 80px;
  height: 80px;
  padding-top: 1.7rem;
  border-radius: 40px;
  color: #FFF;
  font-size: 12px;
  line-height: 1;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.c-title-h3-point__ico em {
  font-size: 32px;
}
.c-title-h3-point__item {
  width: calc(100% - 130px);
  margin-top: auto;
  margin-bottom: auto;
  font-weight: bold;
  line-height: 1.4;
}
.c-title-h3-point__item_m {
  font-size: 28px;
}
.c-title-h3-point__item_s {
  font-size: 16px;
}

.h3_blue_01 .c-title-h3-point__ico {
  background-color: #17375B;
}
.h3_blue_01 .c-title-h3-point__item {
  color: #17375B;
}

.h3_blue_02 .c-title-h3-point__ico {
  background-color: #26507D;
}
.h3_blue_02 .c-title-h3-point__item {
  color: #26507D;
}

.h3_blue_03 .c-title-h3-point__ico {
  background-color: #3974B9;
}
.h3_blue_03 .c-title-h3-point__item {
  color: #3974B9;
}

.h2-left {
  text-align: left !important;
}

.c-title-blue .c-title-h2-nomal {
  color: #3974B9;
}
.c-title-blue .c-title-h2-ico-01 {
  background: #3974B9;
}
.c-title-blue .c-title-h3-border {
  border-bottom: 1px solid #3974B9;
  color: #3974B9;
}

.c-title-blue2 .c-title-h2-nomal {
  color: #26507D;
}
.c-title-blue2 .c-title-h2-ico-01 {
  background: #26507D;
}
.c-title-blue2 .c-title-h3-border {
  border-bottom: 1px solid #26507D;
  color: #26507D;
}

.font-s {
  font-size: clamp(18px, 1.046vw, 20px);
}

.font-m {
  font-size: clamp(24px, 1.562vw, 30px);
}

.font-l {
  font-size: clamp(28px, 2.083vw, 40px);
}

.c-titlearea-s {
  height: 190px;
  background: url(../img/bg_contents_mv.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}
.c-titlearea-s h1 {
  padding-top: 6.5rem;
  color: #FFF;
  font-weight: 500;
  font-size: clamp(19px, 1.458vw, 29px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.c-titlearea-m {
  height: 330px;
  border-top: 30px solid #17375B;
  color: #FFF;
  /*text-align: center;*/
  text-align: left;
}
.c-titlearea-m h1 {
  padding-top: 1rem;
  font-weight: 500;
  font-size: clamp(19px, 1.458vw, 29px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.c-titlearea-m h1 span.h1_ico {
  display: inline-block;
  margin-left: 10px;
  padding: 7px 10px 8px 10px;
  border: 1px solid #FFF;
  line-height: 1;
}
.c-titlearea-m__wrap {
  /*width: 55%;*/
  width: 100%;
}
.c-titlearea-m__ttl {
  padding-top: 1.5rem;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.c-titlearea-m__ttl2 {
  font-weight: 500;
  font-size: clamp(24px, 1.666vw, 32px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.c-titlearea-m__en {
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  font-family: "Crimson Text", serif;
  letter-spacing: 0.1em;
}
.c-titlearea-m .l-container {
  padding-top: 0;
  padding-bottom: 0;
}
.c-titlearea-m .c-btn-wrap-c3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 69%;
  padding-top: 3rem !important;
  gap: 1rem;
}
.c-titlearea-m .c-btn-wrap-c3 a {
  border: 1px solid #FFF;
}

.p-faq-list__wrap {
  width: calc(100% - 6rem);
  margin: auto 0;
}
.p-faq-list dt {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2rem;
  gap: 0;
  border: 1px solid #17375B;
  background: #FFF;
  color: #17375B;
}
.p-faq-list dt i {
  display: block;
  width: 4rem;
  margin: auto 0;
  margin-right: 1rem;
  color: #17375B;
  font-style: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  font-size: 26px;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.p-faq-list + .p-faq-list {
  margin-top: 1.5625vw;
}
.p-faq-list dd {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2rem;
  gap: 0;
}
.p-faq-list dd i {
  display: block;
  width: 4rem;
  margin-right: 1rem;
  color: #17375B;
  font-style: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  font-size: 26px;
  font-family: "Crimson Text", serif;
  text-align: center;
}
.p-faq-list dt:before {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  position: absolute;
  top: 50%;
  right: 1.5625vw;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background: #17375B;
  content: "";
  transition: all 0.3s;
}
.p-faq-list dt:after {
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  position: absolute;
  top: 50%;
  right: 1.5625vw;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  transform: rotate(-90deg);
  background: #17375B;
  content: "";
  transition: all 0.3s;
}
.p-faq-list.is-open dt:before {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #FFF;
}
.p-faq-list.is-open dt:after {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: #FFF;
}
.p-faq-list.is-open dt {
  background: #17375B;
  color: #FFF;
}
.p-faq-list.is-open dt i {
  color: #FFF;
}
.p-faq-list a {
  color: #0e1155;
  text-decoration: underline;
}
.p-faq-list a:hover {
  text-decoration: none;
}

.p-footer-cta {
  background: url(../img/bg_footer-cta.png) no-repeat center bottom;
  background-size: cover;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.p-footer-cta__bnr {
  position: relative;
  width: 100%;
  height: 194px;
  overflow: hidden;
  background-size: cover;
  box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: clamp(14px, 0.8333vw, 16px);
  text-align: left;
}
.p-footer-cta__bnr a:hover {
  opacity: 1;
}
.p-footer-cta__bnr img {
  width: 100%;
  transition: 0.5s all;
}
.p-footer-cta__bnr p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding-left: 2rem;
  transform: translate(-50%, -80%);
  font-weight: 500;
}
.p-footer-cta__bnr strong {
  display: block;
  margin-top: 2rem;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 1.8;
}
.p-footer-cta__bnr__btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 3rem;
  background: url(../img/ico_arrow_01.svg) no-repeat right 15px center rgba(0, 0, 0, 0.5);
  background-size: 8px 16px;
}
.p-footer-cta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2%;
}
.p-footer-cta-list li {
  width: 49%;
  max-width: 363px;
}
.p-footer-cta__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-bottom: 6rem;
  gap: 0;
}
.p-footer-cta__wrapl {
  width: 58%;
}
.p-footer-cta__wrapl h2 {
  margin-bottom: 0.5em;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(24px, 1.77vw, 34px);
}
.p-footer-cta__wrapl p {
  margin-bottom: 2.5rem;
}
.p-footer-cta__wrapr {
  width: 38%;
  padding: 3rem;
  background-color: #DCE1E6;
}
.p-footer-cta__wrapr h3 {
  margin-bottom: 1rem;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}
.p-footer-cta__wrapr ul > li {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #17375B;
  background-color: #FFF;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}
.p-footer-cta__wrapr ul > li em {
  font-size: clamp(24px, 1.77vw, 34px);
  font-family: "Crimson Text", serif;
}
.p-footer-cta__wrapr ul > li:last-child {
  margin-bottom: 0;
}
.p-footer-nav {
  background: #17375B;
  color: #FFF;
}
.p-footer-nav h3 {
  font-weight: bold;
  font-size: 16px;
}
.p-footer-nav h3 em {
  display: block;
  font-size: 22px;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.p-footer-nav__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-footer-nav__inner {
  padding: 0 8rem 0 4rem;
  border-right: 1px solid #FFF;
}
.p-footer-nav__inner:last-child {
  border-right: none;
}
.p-footer-nav-list {
  margin-bottom: 3rem;
}
.p-footer-nav-list li {
  margin-bottom: 0.5rem;
}
.p-footer-nav-list li > a {
  font-weight: bold;
}
.p-footer-nav-list__sub {
  margin-left: 2rem;
  padding-left: 1em;
  text-indent: -0.6em;
}
.p-footer-nav-list__sub a {
  font-weight: normal !important;
}
.p-footer-nav-list__sub a span {
  padding: 0 10px;
  border: 1px solid #FFF;
}
.p-footer-nav-list__sub::before {
  display: inline-block;
  padding-right: 5px;
  content: "ー";
}
.p-footer-nav-list__sub2 {
  margin-left: 4rem;
}
.p-footer-nav-list__sub2 a {
  font-weight: normal !important;
}
.p-footer-nav-list__sub2::before {
  display: inline-block;
  padding-right: 5px;
  content: "ー";
}

.p-form-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  width: calc(100% - 25px);
  gap: 0;
  border-left: 1px solid #17375B;
}
.p-form-pager li {
  position: relative;
  width: 33.3333333333%;
  height: 50px;
  padding: 1rem;
  border-top: 1px solid #17375B;
  border-bottom: 1px solid #17375B;
  color: #17375B;
  text-align: center;
}
.p-form-pager li::after, .p-form-pager li::before {
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  pointer-events: none;
}
.p-form-pager li::after {
  z-index: 2;
  margin-top: -25px;
  border-top-width: 25px;
  border-right-width: 25px;
  border-bottom-width: 25px;
  border-left-width: 25px;
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #FFF;
}
.p-form-pager li::before {
  z-index: 1;
  margin-top: -25px;
  margin-left: 1px;
  border-top-width: 25px;
  border-right-width: 25px;
  border-bottom-width: 25px;
  border-left-width: 25px;
  border-color: rgba(0, 0, 0, 0);
  border-left-color: #17375B;
}
.p-form-pager_active {
  position: relative;
  background-color: #17375B;
  color: #FFF !important;
}
.p-form-pager_active::after {
  border-left-color: #17375B !important;
}
.p-form__h2 {
  margin: 4rem 0;
  margin-bottom: 2rem;
  color: #17375B;
  font-weight: 500;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 1.263;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
.p-form-box {
  margin-bottom: 4rem;
}
.p-form-box dt {
  padding-bottom: 0.5rem;
  color: #17375B;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-form-box dt span.small {
  font-size: 14px;
}
.p-form-box dt span.required {
  display: inline-block;
  margin-left: 10px;
  padding: 5px;
  background-color: #17375B;
  color: #FFF;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.p-form-box dd input[type=text] {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  border: 1px solid #B9C3CE;
}
.p-form-box dd input[type=text]::-moz-placeholder {
  color: #B9C3CE;
}
.p-form-box dd input[type=text]::placeholder {
  color: #B9C3CE;
}
.p-form-box-check {
  padding: 1rem 2rem;
  border: 1px solid #B9C3CE;
}
.p-form-box-check ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.p-form-box-check ul li {
  width: 25%;
}
.p-form-box-check ul li input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #17375B;
  vertical-align: -2px;
}
.p-form-box-check ul li input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 10px;
  transform: rotate(50deg);
  border-right: 2px solid #17375B;
  border-bottom: 2px solid #17375B;
  content: "";
}
.p-form-box__input50 {
  width: 50% !important;
}
.p-form-box-btn {
  display: block;
  position: relative !important;
  width: 100%;
  max-width: 360px;
  margin: auto;
  padding: 1.5rem 0 1.5rem 2rem;
  background: url(../img/ico_arrow_01.svg) no-repeat right 15px center;
  background-size: 8px 16px;
  background-color: #17375B !important;
  box-shadow: 4px 4px 10px -7px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-weight: bold;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: left;
  transition: 0.7s;
}
.p-form-box-btn:hover {
  opacity: 0.7;
}
.p-form-box-btn__zip {
  display: inline-block;
  padding: 1rem 2rem;
  border: 1px solid #B9C3CE;
  background-color: #17375B;
  box-shadow: 4px 4px 10px -7px rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  vertical-align: top;
  transition: 0.7s;
}
.p-form-box-btn__zip:hover {
  cursor: pointer;
  opacity: 0.7;
}

.p-home-mv {
  position: relative;
  color: #FFF;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.p-home-mv h1 {
  padding: 3rem 2rem 4rem 2rem;
  font-weight: 400;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.675;
  letter-spacing: 0.1em;
}
.p-home-mv h1 span {
  display: block;
  font-size: clamp(24px, 1.77vw, 34px);
}
.p-home-mv h2 {
  margin: 0;
  padding: 1rem 2rem 3rem 2rem;
  font-weight: 400;
  font-size: clamp(32px, 2.5vw, 48px);
  line-height: 1.375;
  letter-spacing: 0.1em;
}
.p-home-mv__lead {
  padding: 0 2rem;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.77;
}
.p-home-mv__subttl {
  display: inline-block;
  padding: 12px;
  background-color: rgba(8, 25, 62, 0.7);
  font-size: 32px;
}
.p-home-mv__en {
  padding: 0 2rem;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5em;
}
.p-home-mv__slide .swiper-slide {
  color: #FFF;
}
.p-home-mv__slide .l-container {
  display: flex;
  align-items: center;
  height: 550px;
}
.p-home-mv__slide .mv_01 {
  background: url(../img/top/bg_mv_01.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_02 {
  background: url(../img/top/bg_mv_02.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_03 {
  background: url(../img/top/bg_mv_03.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_04 {
  background: url(../img/top/bg_mv_04.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_05 {
  background: url(../img/top/bg_mv_05.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_06 {
  background: url(../img/top/bg_mv_06.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_07 {
  background: url(../img/top/bg_mv_07.jpg) no-repeat center center;
  background-size: cover;
}
.p-home-mv__slide .mv_08 {
  background: url(../img/top/bg_mv_08.jpg) no-repeat center center;
  background-size: cover;
}

.p-home-mv-pagination {
  padding: 1rem 4rem;
}
.p-home-mv-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}
.p-home-mv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #173576;
}

.p-home-lead {
  overflow: visible;
}
.p-home-lead .l-container {
  position: relative;
  padding-right: 2%;
  padding-left: 0;
  background-color: #FFF;
}
.p-home-lead__wrap {
  padding-left: 6%;
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.p-home-lead__wrap h3 {
  margin-bottom: 2rem;
  padding-top: 4%;
  font-weight: 500;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.72;
  letter-spacing: 0.1em;
}
.p-home-lead__wrap p {
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.1em;
}
.p-home-lead__btn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.p-home-lead figure a {
  display: block;
  padding: 4rem 0;
}
.p-home-information {
  background: url(../img/bg_footer-cta.png) no-repeat center bottom;
  background-size: cover;
}
.p-home-information .l-container {
  position: relative;
}
.p-home-service .l-container {
  padding-top: 0;
}
.p-home-consultant {
  background-color: #17375B;
  color: #FFF;
}
.p-home-consultant h2 {
  color: #FFF;
}
.p-home-strength {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  background: #d7e3f1;
}
.p-home-strength h3 {
  margin-bottom: 2rem;
  padding-top: 4%;
  font-weight: 500;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.72;
  letter-spacing: 0.1em;
}
.c-num-box {
  position: relative;
  background: #fff;
}
.c-num-box__num {
  color: #fff;
  font-size: 12px;
  line-height: 1;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
}
.c-num-box:nth-child(1) .c-num-box__num {
  background: #17375b;
}
.c-num-box:nth-child(2) .c-num-box__num {
  background: #26507d;
}
.c-num-box:nth-child(3) .c-num-box__num {
  background: #3974b9;
}
.c-num-box__num span {
  font-size: 2.5em;
  font-weight: 600;
  display: block;
}
.c-num-box__img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 35px 25px;
}
.c-num-box__txt {
  padding: 0 35px 45px;
}
.p-home-case {
  background: #17375b;
}
.p-home-case .l-container {
  position: relative;
}
.p-home-case .c-title-h2-nomal,
.p-home-case .c-text-lead-center {
  color: #fff;
}

.c-list-3col {
  display: flex;
  gap: 30px;
}
.c-list-3col li {
  width: calc((100% - 60px) / 3);
}
@media (max-width: 768px) {
  .c-list-3col {
    flex-direction: column;
  }
  .c-list-3col li {
    width: 100%;
  }
}

.p-service-anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 5rem;
  gap: 0;
}
.p-service-anchor li {
  /*width: 31%;*/
  width: 48%;
  background: url(../img/service/bg_p-service-anchor_001.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-service-anchor li:nth-child(2) {
  background: url(../img/service/bg_p-service-anchor_002.jpg) no-repeat center center;
  background-size: cover;
}
.p-service-anchor li:nth-child(3) {
  background: url(../img/service/bg_p-service-anchor_003.jpg) no-repeat center center;
  background-size: cover;
}
.p-service-anchor li a {
  /* display: block; */
  padding: 8rem 0;
  box-shadow: 6px 6px 15px -6px rgba(0, 0, 0, 0.2);
  color: #FFF;
  font-weight: 500;
  font-size: clamp(24px, 1.562vw, 30px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-service-anchor li a::after {
  display: inline-block;
  width: 30px;
  height: 15px;
  margin-left: 1rem;
  background: url(../img/ico_arrow_03.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-service-worries-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-service-worries-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 23.5%;
  height: 260px;
  gap: 0;
  background: url(../img/service/ico_service__029.png) no-repeat center center;
  background-size: contain;
  color: #17375B;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-worries-list__item {
  margin: auto;
}
.p-service-worries-list2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 5rem;
  gap: 0;
}
.p-service-worries-list2__item {
  width: 48%;
  padding: 3rem;
  background-color: #EBF1F8;
}
.p-service-worries-list2__ttl {
  margin-bottom: 2rem;
  color: #17375B;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.4;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.p-service-worries-list2__ttl em {
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-service-worries-list2__logo {
  width: 282px;
  margin: auto auto 3rem auto;
}
.p-service-worries-list2__logo img {
  width: 100%;
}
.p-service-worries__h3_01 {
  padding: 8rem 0 4rem 0;
  font-weight: bold;
  text-align: center;
}
.p-service-worries__h3_02 {
  position: relative;
  padding: 4rem 0 2rem 0;
  font-weight: 500;
  font-size: clamp(18px, 1.458vw, 28px);
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.p-service-worries__h3_02::before {
  display: block;
  width: 100px;
  height: 80px;
  margin: auto auto 2rem auto;
  background: url(../img/ico_arrow_04.png) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-service-worries__h3_02 em {
  display: inline-block;
  position: relative;
  font-size: clamp(25px, 1.875vw, 36px);
}
.p-service-worries__h3_02 em::before {
  position: absolute;
  top: 0;
  left: 2em;
  content: "●";
  color: #3974B9;
  font-size: 8px;
}
.p-service-worries__h4_01 {
  padding: 0.5rem 0;
  border: 1px solid #26507D;
  border-radius: 5rem;
  color: #26507D;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-worries__h4_02 {
  padding: 0.5rem 0;
  border: 1px solid #3974B9;
  border-radius: 5rem;
  color: #3974B9;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-service-worries__lead {
  font-weight: 500;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  text-align: center;
}
.p-service-sec .l-container {
  padding-top: 0;
}
.p-service-sec .c-title-h2-nomal {
  font-size: clamp(24px, 1.77vw, 34px);
}

.bg_service_001 {
  background: url(../img/service/bg_c-titlearea-m__001.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_002 {
  background: url(../img/service/bg_c-titlearea-m__002.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_003 {
  background: url(../img/service/bg_c-titlearea-m__003.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_004 {
  background: url(../img/service/bg_c-titlearea-m__004.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_005 {
  background: url(../img/service/bg_c-titlearea-m__005.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_006 {
  background: url(../img/service/bg_c-titlearea-m__006.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_007 {
  background: url(../img/service/bg_c-titlearea-m__007.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_008 {
  background: url(../img/service/bg_c-titlearea-m__008.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_009 {
  background: url(../img/service/bg_c-titlearea-m__009.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_010 {
  background: url(../img/service/bg_c-titlearea-m__010.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_011 {
  background: url(../img/service/bg_c-titlearea-m__011.jpg) no-repeat center center;
  background-size: cover;
}

.bg_service_012 {
  background: url(../img/service/bg_c-titlearea-m__012.jpg) no-repeat center center;
  background-size: cover;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-margin--auto {
  margin-right: auto;
  margin-left: auto;
}

.u-pt--10 {
  padding-top: 1rem;
}

.u-pb--10 {
  padding-bottom: 1rem;
}

.u-pr--10 {
  padding-right: 1rem;
}

.u-pl--10 {
  padding-left: 1rem;
}

.u-pt--20 {
  padding-top: 2rem;
}

.u-pb--20 {
  padding-bottom: 2rem;
}

.u-pr--20 {
  padding-right: 2rem;
}

.u-pl--20 {
  padding-left: 2rem;
}

.u-pt--30 {
  padding-top: 3rem;
}

.u-pb--30 {
  padding-bottom: 3rem;
}

.u-pr--30 {
  padding-right: 3rem;
}

.u-pl--30 {
  padding-left: 3rem;
}

.u-pt--40 {
  padding-top: 4rem;
}

.u-pb--40 {
  padding-bottom: 4rem;
}

.u-pr--40 {
  padding-right: 4rem;
}

.u-pl--40 {
  padding-left: 4rem;
}

.u-pt--50 {
  padding-top: 5rem;
}

.u-pb--50 {
  padding-bottom: 5rem;
}

.u-pr--50 {
  padding-right: 5rem;
}

.u-pl--50 {
  padding-left: 5rem;
}

.u-pt--60 {
  padding-top: 6rem;
}

.u-pb--60 {
  padding-bottom: 6rem;
}

.u-pr--60 {
  padding-right: 6rem;
}

.u-pl--60 {
  padding-left: 6rem;
}

.u-pt--70 {
  padding-top: 7rem;
}

.u-pb--70 {
  padding-bottom: 7rem;
}

.u-pr--70 {
  padding-right: 7rem;
}

.u-pl--70 {
  padding-left: 7rem;
}

.u-pt--80 {
  padding-top: 8rem;
}

.u-pb--80 {
  padding-bottom: 8rem;
}

.u-pr--80 {
  padding-right: 8rem;
}

.u-pl--80 {
  padding-left: 8rem;
}

.u-pt--90 {
  padding-top: 9rem;
}

.u-pb--90 {
  padding-bottom: 9rem;
}

.u-pr--90 {
  padding-right: 9rem;
}

.u-pl--90 {
  padding-left: 9rem;
}

.u-pt--100 {
  padding-top: 10rem;
}

.u-pb--100 {
  padding-bottom: 10rem;
}

.u-pr--100 {
  padding-right: 10rem;
}

.u-pl--100 {
  padding-left: 10rem;
}

.u-pt--110 {
  padding-top: 11rem;
}

.u-pb--110 {
  padding-bottom: 11rem;
}

.u-pr--110 {
  padding-right: 11rem;
}

.u-pl--110 {
  padding-left: 11rem;
}

.u-pt--120 {
  padding-top: 12rem;
}

.u-pb--120 {
  padding-bottom: 12rem;
}

.u-pr--120 {
  padding-right: 12rem;
}

.u-pl--120 {
  padding-left: 12rem;
}

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

.u-text--left {
  text-align: left;
}

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

.u-sp {
  display: none;
}
.u-sp {
  display: none;
}
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  text-align: center;
}

.lity-wrap:before {
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  content: "";
  vertical-align: middle;
}

.lity-loader {
  z-index: 9991;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -0.8em;
  color: #fff;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  display: inline-block;
  z-index: 9992;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content, .lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: "";
}

.lity-close {
  -webkit-appearance: none;
  z-index: 9994;
  position: fixed;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.lity-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  display: block;
  max-width: 100%;
  border: 0;
  line-height: 0;
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  transform: translateZ(0);
  pointer-events: auto;
}

.lity-iframe-container iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-hide {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/../../img/slick.woff") format("woff"), url("./fonts/../../img/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-family: "slick";
}
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 1;
  font-family: "slick";
  opacity: 1;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  /*margin-bottom: 30px;*/
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  color: black;
  font-size: 6px;
  line-height: 20px;
  font-family: "slick";
  text-align: center;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.js-slide.slick-initialized {
  opacity: 1;
}

@media (max-width: 1350px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}

@media screen and (min-width: 769px) {
  a:hover, a:active {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 8rem;
  }
  .l-container.l-container-servicelist {
    padding-top: 3vw !important;
  }
  .c-bnr_wrap {
    padding-top: 2rem;
  }
  .c-bnr-meeting a {
    background: url(../img/bg_bnr_001.jpg) no-repeat -280px 0;
    background-size: cover;
  }
  .c-bnr-meeting__wrap {
    width: 80%;
  }
  .c-bnr-meeting__ico {
    width: 120px;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .c-bnr-meeting__ttl1 {
    font-size: 14px;
  }
  .c-bnr-meeting__ttl2 {
    font-size: 20px;
  }
  .c-bnr-meeting__ttl3 {
    font-size: 12px;
  }
  .c-bnr-matching a {
    background: url(../img/bg_bnr_003.jpg) no-repeat -280px 0;
    background-size: cover;
  }
  .c-bnr-matching a::after {
    display: block;
    position: absolute;
    top: calc(50% - 16px);
    right: 5%;
    width: 16px;
    height: 32px;
    background: url(../img/ico_arrow_01.svg) no-repeat center center;
    background-size: contain;
    content: "";
  }
  .c-bnr-matching__wrap {
    width: 80%;
  }
  .c-bnr-matching__ico {
    width: 120px;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .c-bnr-matching__ttl1 {
    font-size: 14px;
  }
  .c-bnr-matching__ttl2 {
    font-size: 20px;
  }
  .c-bnr-matching__ttl3 {
    font-size: 12px;
  }
  .c-bnr-meeting a {
    background: url(../img/bg_bnr_001.jpg) no-repeat -280px 0;
    background-size: cover;
  }
  .c-bnr-meeting__wrap {
    width: 80%;
  }
  .c-bnr-meeting__ico {
    width: 120px;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .c-bnr-meeting__ttl1 {
    font-size: 14px;
  }
  .c-bnr-meeting__ttl2 {
    font-size: 20px;
  }
  .c-bnr-meeting__ttl3 {
    font-size: 12px;
  }
  .c-bnr-news a {
    background: url(../img/bg_bnr_004.jpg) no-repeat -280px 0;
    background-size: cover;
  }
  .c-bnr-news__wrap {
    width: 80%;
  }
  .c-bnr-news__ico {
    width: 120px;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .c-bnr-news__ttl1 {
    font-size: 14px;
  }
  .c-bnr-news__ttl2 {
    max-width: 400px;
    font-size: 20px;
  }
  .c-bnr-news__ttl2 span {
    font-size: 25px;
  }
  .c-bnr-news__ttl2::after {
    top: calc(50% - 45px);
  }
  .c-bnr-news__ttl2::before {
    top: calc(50% - 45px);
  }
  .c-bnr-news__ttl3 {
    font-size: 12px;
  }
  .c-bnr-book figure {
    width: 50%;
    margin: 3rem auto;
  }
  .c-bnr-book__ttl2 {
    width: 100%;
    padding-top: 4rem;
  }
  .c-bnr-book__list {
    width: 100%;
  }
  .c-box {
    padding: 2rem;
  }
  .c-btn-wrap-c2 {
    padding-top: 4rem;
  }
  .c-btn-wrap-c2 li {
    width: 100%;
  }
  .c-btn-wrap-c3 {
    padding-top: 4rem;
  }
  .c-btn-wrap-c3 li {
    width: 100%;
  }
  .c-document-list > li {
    width: 100%;
    margin-bottom: 4rem;
  }
  .c-document .c-title-h2-nomal {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .c-flex-60 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .c-flex-50 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .c-flex-44 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .c-flex-40 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .c-flex-32 {
    width: 100%;
    padding-bottom: 2rem;
  }
  .c-glossary-list li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .c-glossary-list li a {
    padding: 2rem;
  }
  *[class^=c-img-box] img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 2rem;
    float: none;
  }
  .c-img-box--l__item, .c-img-box--l img {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-img-box--r__item, .c-img-box--r img {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-img-box--half__item {
    width: 100%;
    max-width: initial;
    margin-right: 0;
  }
  .c-img-c img {
    max-width: 100%;
  }
  .c-img-c_pc {
    display: none;
  }
  .c-img-c_sp {
    display: block;
  }
  .c-information-list-button-next {
    right: 1%;
    width: 40px;
    height: 40px;
    background-size: 10px;
  }
  .c-information-list-button-prev {
    left: 1%;
    width: 40px;
    height: 40px;
    background-size: 10px;
  }
  .c-information .c-title-h2-nomal {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .c-list-solution {
    padding: 2rem;
  }
  .c-list-solution ul li {
    width: 100%;
    padding: 3rem 0;
    border-right: none;
    border-bottom: 1px solid #FFF;
  }
  .c-list-solution__num {
    font-size: 70px;
    text-align: center;
  }
  .c-list-service li p {
    font-size: 12px;
  }
  .c-list-service__item {
    width: 100%;
  }
  .c-list-service__ttl {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .c-list-service__wrap {
    padding: 0 2rem 2rem 2rem;
  }
  .c-list-service-cross-border figure {
    margin-bottom: 4rem;
  }
  .c-list-service-cross-border img:nth-child(3) {
    width: 60%;
    margin-bottom: 2rem;
  }
  .c-list-service-ico li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .c-list-service2 li {
    padding: 2rem;
  }
  .c-list-service2 li p {
    font-size: 12px;
  }
  .c-list-service2__item {
    width: 100%;
  }
  .c-list-service2__item_a p {
    text-align: left !important;
  }
  .c-list-service2__ttl {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .c-list-service2-ico li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .c-list-consultant li {
    width: 100%;
    margin: auto auto 2rem auto;
  }
  .c-list-information li {
    width: 100%;
  }
  .c-list-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 25px;
  }
  .c-list-flow li {
    width: 100px;
    height: 100px;
    font-size: 11px;
  }
  .c-list-flow li::after {
    right: -2rem;
  }
  .c-page-top {
    right: 5%;
    bottom: 1.0416666667vw;
  }
  .c-page-top a {
    width: 3rem;
    height: 3rem;
  }
  .c-seminar-list-button-next {
    right: 1%;
    width: 40px;
    height: 40px;
    background-size: 10px;
  }
  .c-seminar-list-button-prev {
    left: 1%;
    width: 40px;
    height: 40px;
    background-size: 10px;
  }
  .c-seminar .c-title-h2-nomal {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .c-service-cta {
    background: none;
  }
  .c-service-cta .l-container {
    padding: 0;
  }
  .c-service-cta-list li {
    width: 100%;
  }
  .c-service-cta-list li:first-child {
    background: url(../img/feature/bg_c-service-cta__001.jpg) no-repeat center 0;
    background-size: cover;
  }
  .c-service-cta-list li:last-child {
    background: url(../img/feature/bg_c-service-cta__002.jpg) no-repeat center 0;
    background-size: cover;
  }
  .table_scroll {
    width: 100%;
    overflow-x: scroll;
  }
  .table_scroll table {
    width: 1000px;
  }
  .c-title-h2-nomal .font-s {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .c-title-h2-nomal .font-m {
    font-size: clamp(18px, 1.354vw, 26px);
  }
  .c-title-h2-ico-01 {
    display: block;
    width: 40%;
    font-size: clamp(14px, 0.8333vw, 16px);
    text-align: center;
  }
  .c-title-h3-point__item_m {
    font-size: 20px;
  }
  .c-title-h3-point__item_s {
    font-size: 12px;
  }
  .font-s {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .font-m {
    font-size: clamp(18px, 1.354vw, 26px);
  }
  .font-l {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .c-titlearea-m {
    height: inherit;
    padding: 0 4% 3rem 4%;
  }
  .c-titlearea-m__wrap {
    width: 100%;
  }
  .c-titlearea-m__en {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .c-titlearea-m .c-btn-wrap-c3 {
    width: 100%;
  }
  .c-titlearea-m .c-btn-wrap-c3 a {
    margin: auto;
  }
  .p-faq-list dt {
    padding-left: 0;
  }
  .p-faq-list dd {
    padding-left: 0;
  }
  .p-faq-list dd {
    font-size: 16px;
  }
  .p-footer-cta__bnr {
    height: auto;
  }
  .p-footer-cta__bnr p {
    font-size: 14px;
  }
  .p-footer-cta-list li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-footer-cta__wrapl {
    width: 100%;
  }
  .p-footer-cta__wrapl h2 {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-footer-cta__wrapl p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-footer-cta__wrapr {
    width: 100%;
  }
  .p-footer-nav h3 {
    width: 100%;
    padding-bottom: 3rem;
  }
  .p-footer-nav__inner {
    width: 100%;
    padding: 0;
    border: none;
  }
  .p-footer-nav-list {
    margin-bottom: 1.5rem;
  }
  .p-footer-nav-list__sub a {
    font-size: 14px;
  }
  .p-form-pager li {
    padding-left: 2rem;
    font-size: 10px;
    line-height: 1.4;
  }
  .p-form-box-check ul li {
    width: 49%;
  }
  .p-home-mv {
    overflow: visible !important;
  }
  .p-home-mv-pagination {
    text-align: center;
  }
  .p-home-lead .l-container {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding: 7rem 5vw;
  }
  .p-home-lead__wrap {
    padding-right: 0;
    padding-left: 0;
  }
  .p-home-lead__item {
    width: 100%;
  }
  .p-home-lead figure {
    width: 100%;
  }
  .p-service-anchor li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-anchor li a {
    padding: 6rem 0;
  }
  .p-service-worries-list li {
    width: 48%;
    height: 200px;
    margin-bottom: 2rem;
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-service-worries-list2__item {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-service-worries-list2__logo {
    width: 140px;
  }
  .p-service-worries__h3_01 {
    padding: 4rem 0 4rem 0;
  }
  .p-service-worries__h3_02 {
    padding: 4rem 0 4rem 0;
  }
  .p-service-sec .c-title-h2-nomal {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  br.u-sp {
    display: inline;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  br.u-sp {
    display: inline;
  }
}

@media screen and (max-width: 1280px) {
  .l-container--pt0, .l-container--p0, .l-container {
    width: 100%;
  }
  .l-container {
    box-sizing: border-box;
    padding: 4rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--p0 {
    box-sizing: border-box;
    padding: 4rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--pt0 {
    box-sizing: border-box;
    padding: 4rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .c-list-solution {
    padding: 4rem 2rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .c-page-top a:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-page-top a:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-text-link--underline:hover {
    text-decoration: none;
  }
  .p-footer-cta__bnr:hover img {
    transform: scale(2, 2);
    transition: 0.5s all;
  }
}

@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-page-top a:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
}

.results-list-item {
  display: flex;
}
.results-list-item:not(:last-child) {
  border-bottom: 1px solid #d7d5dc;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.results-list-item__img {
  width: calc(20% + 55px);
  display: flex;
  align-items: center;
  padding: 45px 0 45px 55px;
  background: #fff;
}
.results-list-item__img figure {
  width: 100%;
  height: 250px;
  position: relative;
}
.results-list-item__img figure.has_consultant a::before {
    content: '';
    display: block;
    width: 100%;
    height: 35%;
    background: linear-gradient(0deg, rgb(36 37 120 / 67%) 1%, rgba(255, 255, 255, 0) 72%);
    position: absolute;
    bottom: 0;
}
.results-list-item__img p {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #fff;
  font-weight: bold;
  text-align: right;
}
.results-list-item__img p small {
  font-size: 14px;
}
.results-list-item__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.results-list-item__text {
  width: calc(100% - (20% + 55px));
  background: #fff;
  padding: 45px 55px;
}
.results-list-item__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.results-list-item__comment {
  margin-bottom: 10px;
}
.results-list-item__comment p:first-child {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.results-list-item__comment p:last-child {
  letter-spacing: -0.05em;
}
.results-list-item__detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}
.results-list-item__detail::after {
  content: url(../../image/img_arrow_right.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.results-list-item__assignment {
  width: 45%;
}
/* .results-list-item__assignment.select {
  background: #ebf1f8;
  border: 1px solid #d7d5dc;
} */
.results-list-item__assignment table {
  width: 100%;
  text-align: left;
  margin: 0!important;
}
.results-list-item__assignment table caption {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #08193e;
  padding: 7px 0;
}
.results-list-item__assignment table :is(th, td) {
  font-size: 14px;
  padding: 7px 20px;
}
.results-list-item__assignment table th {
  width: 35%;
}
.results-list-item__transfer {
  width: 45%;
}
/* .results-list-item__transfer.select {
  background: #ebf1f8;
  border: 1px solid #d7d5dc;
} */
.results-list-item__transfer table {
  width: 100%;
  text-align: left;
  margin: 0!important;
}
.results-list-item__transfer table caption {
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #3974b9;
  padding: 7px 0;
}
.results-list-item__transfer table :is(th, td) {
  font-size: 14px;
  padding: 7px 20px;
}
.results-list-item__transfer table th {
  width: 35%;
}
.results-list-item__service {
  width: 100%;
  margin: auto;
  border: 1px solid #d7d5dc;
  display: flex;
}
.results-list-item__service__head {
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  background: #ebf1f8;
  border-right: 1px solid #d7d5dc;
}
.results-list-item__service__body {
  padding: 15px 25px;
  width: calc(100% - 140px);
}
.results-list-item__service__body li {
  position: relative;
  padding-left: 15px;
}
.results-list-item__service__body li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #242578;
  position: absolute;
  left: 0;
  top: 11px;
}
.results-list-item__service__body li a {
  text-decoration: underline;
}
.results-list-item__link {
  width: 100%;
}
.results-list-item__link .c-btn-blue {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .results-list-item {
    flex-direction: column;
  }
  .results-list-item:not(:last-child) {
    padding-bottom: 35px;
    margin-bottom: 35px;
  }
  .results-list-item__img {
    text-align: center;
    width: 100%;
    padding: 35px 35px 0;
  }
  .results-list-item__img figure {
    width: 65%;
    height: 55vw;
    margin: auto;
  }
  .results-list-item__img img {
    height: 55vw;
  }
  .results-list-item__text {
    width: 100%;
    padding: 25px 35px 35px;
  }
  .results-list-item__detail {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
  .results-list-item__assignment {
    width: 100%;
    margin-bottom: 70px;
  }
  .results-list-item__transfer {
    width: 100%;
  }
  .results-list-item__detail::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .results-list-item__link .c-btn-blue {
    margin: auto;
  }
  .results-list-item__service {
    margin-top: 20px;
    flex-direction: column;
  }
  .results-list-item__service__head {
    width: 100%;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid #d7d5dc;
  }
  .results-list-item__service__body {
    width: 100%;
  }
}
.u-sp2 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .u-sp2 {
    display: inline-block;
  }
}

/**250611**/
.has_menu_contents > div{
cursor: initial;
}
.menu_contents {
  background: rgba(17, 17, 17, 0.8);
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
    padding: 35px;
}

.menu_contents .menu_contents-inner {
  width: 100%;
  display: flex;
   justify-content: center;
          align-items: center;
gap:25px;
    flex-wrap: wrap;
}

.menu_contents .menu_contents-inner .menu_contents-item {
  color: #fff;
}

.menu_contents .menu_contents-inner .menu_contents-item a {
    position: relative;
  color: #fff;
  display: flex;
  padding: 10px 20px;
  width: 300px;
  align-items: center;
  font-size: 16px;
    border: 1px solid #fff;
    justify-content: center;
}

.menu_contents .menu_contents-inner .menu_contents-item a:before {
display: block;
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 1rem;
    transform: rotate(45deg);
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-color: #fff;
    content: "";
    vertical-align: middle;
}
.menu_contents .menu_contents-inner .menu_contents-item:nth-child(2n - 1) a {
  background: #fff;
  color: #111;
}
.menu_contents .menu_contents-inner .menu_contents-item:nth-child(2n - 1) a:before {
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  border-color: #111;
}
.menu_contents .menu_contents-inner .menu_contents-item a:after {
  background: #FFF !important;
}

/* 250715 */
.font-serif {
  font-family: YakuHanMP, "Noto Serif JP", serif;
}
.c-titlearea-m__logo {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}
.c-arrow-and-text {
    max-width: 1100px;
    width: 85%;
    text-align: center;
    margin: 40px auto 0;
}
.c-arrow-and-text__arrow {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #f3f5f7;
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
}
.c-arrow-and-text__text {
    font-size: clamp(24px, 1.562vw, 30px);
    font-weight: bold;
    line-height: 1.5;
}
.c-list-service-num {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.c-list-service-num li {
    width: calc((100% - 90px) / 3);
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #f3f5f7;
}
.c-list-service-num__num {
    display: flex;
    justify-content: flex-start;
}
.c-list-service-num__num .numbox {
    width: 80px;
    height: 80px;
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.c-list-service-num__num .numbox span {
  display: block;
  font-size: 2.8em;
}
.c-list-service-num li:nth-of-type(3n-2) .c-list-service-num__num .numbox {
    background: #17375b;
}
.c-list-service-num li:nth-of-type(3n-1) .c-list-service-num__num .numbox {
    background: #26507d;
}
.c-list-service-num li:nth-of-type(3n) .c-list-service-num__num .numbox {
    background: #3974b9;
}
.c-list-service-num__title {
    text-align: center;
    font-size: clamp(18px, 1.458vw, 28px);
    font-weight: bold;
    color: #17375b;
}
.c-list-service-num__text {
    padding: 0 50px 50px;
}
.c-list-service-flow {
    display: flex;
}
.c-list-service-flow.col4 {
    gap: 45px;
}
.c-list-service-flow li {
    padding: 30px;
    background: #f3f5f7;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.c-list-service-flow.col4 li {
    width: calc((100% - 135px) / 4);
}
.c-list-service-flow li:not(:last-child) {
    position: relative;
}
.c-list-service-flow li:not(:last-child)::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: solid #17375b;
    border-width: 3px 3px 0 0;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    right: -21px;
    top: 50%;
}
.c-table-sevice {
    width: 1280px;
  }
.c-table-sevice th {
    color: #fff;
    text-align: center;
    background: #17375b;
    padding: 5px;
}
.c-table-sevice th:first-child {
    border-right: 1px solid #b9c3ce;
}
.c-table-sevice tr td {
    border: solid #b9c3ce;
    border-width: 0 1px 1px 0;
    padding: 20px 25px;
    vertical-align: middle;
}
.c-table-sevice tr td:first-child {
    border-left: 1px solid #b9c3ce;
}
.c-scroll-x__msg {
    display: none;
}
@media screen and (max-width: 1280px) {
    .c-scroll-x {
        overflow-x: scroll;
    }
    .c-scroll-x__msg {
      display: block;
    }
}
.c-flex__inner {
  width: 50%;
}
.c-flex__inner:has(img) {
    text-align: center;
}
.c-flex__inner__ul li {
    list-style: disc inside;
}
.c-flex__inner__ul li::marker {
    color: #17375b;
    font-size: 110%;
}
.c-bnr-service a {
    display: flex;
    position: relative;
    overflow: hidden;
}
.c-bnr-service a::before {
    position: absolute;
    top: 0;
    left: -10%;
    content: '';
    width: 65%;
    height: 100%;
    background: #f3f5f7;
    display: block;
    transform: skew(-18deg, 0);
    z-index: 0;
}
.c-bnr-service__text {
    width: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    /*background: #f3f5f7;*/
}
.c-bnr-service__img {
    width: 50%;
    position: absolute;
    z-index: -1;
    right: 10%;
}
.c-bnr-service__img img {
  max-width: none;
  width: auto;
  height: 100%;
}
.c-bnr-service__title {
    font-size: 50px;
    font-family: YakuHanMP, "Noto Serif JP", serif;
    line-height: 1.3;
    color: #17375b;
    margin-bottom: 10px;
}
.c-bnr-service__title span {
    font-size: clamp(1.25rem, 1.020rem + 0.921vw, 2.125rem);
    display: block;
}
.c-bnr-service__title + p {
  font-size: 18px;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  margin-bottom: 15px;
}
.c-bnr-service__btn {
    display: block;
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 1rem 0 1rem 2rem;
    background-color: #17375b;
    color: #FFF;
    font-weight: bold;
    text-align: center;
}
.c-bnr-service__btn::after {
    display: block;
    position: absolute;
    top: calc(50% - 8px);
    right: 15px;
    width: 8px;
    height: 16px;
    background: url(../img/ico_arrow_01.svg) no-repeat 0 0;
    background-size: contain;
    content: "";
}
@media screen and (max-width: 768px) {
  .c-titlearea-m__logo {
    flex-direction: column;
    align-items: flex-start;
  }
  .c-list-service-num li {
    width: 100%;
  }
  .c-list-service-flow {
    flex-direction: column;
  }
  .c-list-service-flow.col4 li {
    width: 100%;
  }
  .c-list-service-flow li:not(:last-child)::after {
    right: 50%;
    left: auto;
    top: auto;
    bottom: -28px;
    transform: translateX(55%) rotate(135deg);
    transform-origin: center;
  }
  .c-flex {
    flex-direction: column;
    gap: 30px;
  }
  .c-flex__inner {
    width: 100%;
  }
  .c-bnr-service a {
    flex-direction: column-reverse;
  }
  .c-bnr-service a::before {
    display: none;
  }
  .c-bnr-service__text,
  .c-bnr-service__img {
    width: 100%;
  }
  .c-bnr-service__text {
    padding: 30px;
    background: #f3f5f7;
    text-align: center;
  }
  .c-bnr-service__title {
    font-size: 35px;
  }
  .c-bnr-service__btn {
    margin: auto;
  }
  .c-bnr-service__img {
    position: static;
  }
  .c-bnr-service__img img {
    width: 100%;
    height: auto;
  }
}