@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}
body.modal {
  min-width: auto;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * 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;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

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

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-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] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  color: #383B47;
  line-height: 180%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #e0481d;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 100px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.l-section.lower {
  padding: 60px 0 100px;
}
@media screen and (max-width: 767px) {
  .l-section.lower {
    padding: 8vw 5.3333333333vw 13.3333333333vw;
  }
}
.l-section_btn_wrap {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-section_btn_wrap {
    width: 100%;
  }
}
.l-section_btn2col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-section_btn2col {
    flex-direction: column-reverse;
  }
}
.l-section_btn2col li {
  width: 400px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .l-section_btn2col li {
    width: 100%;
    margin: 4vw 0 0;
  }
  .l-section_btn2col li:last-child {
    margin: 0;
  }
}
.l-section_btn2col.long li {
  width: 400px;
  margin: 0 10px;
}
.l-section_btn2col.long li:last-child {
  width: 500px;
}
@media screen and (max-width: 767px) {
  .l-section_btn2col.long li {
    width: 100%;
    margin: 4vw 0 0;
  }
  .l-section_btn2col.long li:last-child {
    margin: 0;
    width: 100%;
  }
}

.bg_color {
  background-color: #e2e4f0;
}

.bg_color_white {
  background-color: #ffffff !important;
}

.l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 4vw;
  }
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

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

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-btn a {
  width: 100%;
  max-width: 400px;
  padding: 20px 0;
  border-radius: 100px;
  background: #5574b2;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 20px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .c-btn a {
    max-width: 100%;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 4vw 0;
  }
}
.c-btn a:hover {
  background: #3F4C62;
}
.c-btn.right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .c-btn.right a::after {
    right: 6.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-btn.right a:hover::after {
  right: 25px;
}
.c-btn.left a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(-135deg);
  transition: 0.3s all;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .c-btn.left a::after {
    left: 6.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.c-btn.left a:hover::after {
  left: 25px;
}
.c-btn.red a {
  background-color: #e0481d;
}
.c-btn.red a:hover {
  background-color: #b8300a;
}
.c-btn.download a {
  padding: 20px 20px 20px 0;
}
@media screen and (max-width: 767px) {
  .c-btn.download a {
    padding: 4vw 5.3333333333vw 4vw 0;
  }
}
.c-btn.download a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_download.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn.download a::after {
    right: 6.6666666667vw;
    width: 7.4666666667vw;
    height: 6.1333333333vw;
  }
}
.c-btn.small a {
  max-width: 300px;
  padding: 15px 0;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-btn.small a {
    max-width: 60%;
    padding: 2.6666666667vw 0;
    font-size: 18px;
    font-size: 1rem;
  }
}
.c-btn.long a {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .c-btn.long a {
    max-width: 100%;
    font-size: 17px;
    font-size: 0.9444444444rem;
    padding: 4.4vw 0;
  }
}
@media screen and (max-width: 767px) {
  .c-btn.txts a {
    font-size: 17px;
    font-size: 0.9444444444rem;
    padding: 4.4vw 0;
  }
}
.c-btn.contact a {
  width: 100%;
  height: 73px;
  padding: 0 0 0 40px;
  font-size: 20px;
  line-height: 73px;
  background: #5574b2;
}
@media screen and (max-width: 767px) {
  .c-btn.contact a {
    height: 14.9333333333vw;
    line-height: 14.1333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 0 0 0 4vw;
  }
}
.c-btn.contact a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 70px;
  width: 30px;
  height: 21px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn.contact a::before {
    left: 12vw;
    width: 7.2vw;
    height: 5.0666666667vw;
  }
}
.c-btn.contact a:hover {
  background: #768ebd;
}
.c-btn_apply {
  position: relative;
  position: fixed;
  z-index: 11;
  bottom: 180px;
  right: 0;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(20px);
}
@media screen and (max-width: 767px) {
  .c-btn_apply {
    bottom: 24vw;
  }
}
.c-btn_apply.show {
  opacity: 1;
  transform: translateY(0);
}
.c-btn_apply.hide-slide {
  transform: translateX(200px);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .c-btn_apply.hide-slide {
    transform: translateX(160px);
  }
}
.c-btn_apply a {
  width: 55px;
  height: 210px;
  padding: 0;
  border-radius: 10px 0 0 10px;
  background-color: #e0481d;
  color: #ffffff;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .c-btn_apply a {
    width: 13.3333333333vw;
    height: 48vw;
  }
  .c-btn_apply a img {
    width: 5.3333333333vw;
    height: 40.5333333333vw;
  }
}
.c-btn_apply a:hover {
  background-color: #b8300a;
}
.c-btn_apply_close {
  position: absolute;
  top: -13px;
  left: -10px;
  z-index: 12;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: url(../../src/img/icon/icon_close.svg) center center no-repeat;
  background-size: cover;
  border: none;
}
.c-btn.nolink {
  width: 100%;
  max-width: 400px;
  padding: 20px 0;
  border-radius: 100px;
  color: #CCCCCC;
  background-color: #888888;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
  font-size: 20px;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn.nolink {
    max-width: 100%;
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 4vw 0;
  }
}

.c-list__dot li {
  padding-left: 20px;
  position: relative;
  line-height: 180%;
  margin-bottom: 15px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .c-list__dot li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 4vw;
    padding-left: 5.3333333333vw;
  }
}
.c-list__dot li span {
  font-weight: bold;
}
.c-list__dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #5574b2;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-list__dot li::before {
    width: 1.6vw;
    height: 1.6vw;
    top: 2.6666666667vw;
    left: 0.5333333333vw;
  }
}
.c-list__dot li:last-child {
  margin-bottom: 0;
}
.c-list__no {
  counter-reset: cnt;
}
.c-list__no li {
  padding-left: 25px;
  position: relative;
  line-height: 180%;
  font-size: 18px;
  margin-bottom: 15px;
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-list__no li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding-left: 6.6666666667vw;
    margin-bottom: 4vw;
  }
}
.c-list__no li:last-child {
  margin-bottom: 0;
}
.c-list__no li::before {
  position: absolute;
  content: counter(cnt) ".";
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
  color: #5574b2;
  font-size: 20px;
  left: 2px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-list__no li::before {
    font-size: 20px;
    font-size: 1.1111111111rem;
    left: 1.3333333333vw;
    top: 0.2666666667vw;
  }
}

.c-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .c-nav_menu {
    justify-content: center;
    text-align: center;
    border-top: 1px solid #a5a7b7;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-nav_menu li {
    width: 100%;
    width: 100%;
    border-bottom: 1px solid #a5a7b7;
    padding: 20px 0;
  }
}
.c-nav_menu li a {
  margin-right: 40px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #383B47;
}
@media screen and (max-width: 767px) {
  .c-nav_menu li a {
    margin-right: 0;
  }
}
.c-nav_menu li a:hover {
  color: #5574b2;
}
.c-nav_menu li a:hover::after {
  transform: scale(1, 1);
}
.c-nav_menu li a::after {
  position: absolute;
  bottom: -28px;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #5574b2;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s all;
}
@media screen and (max-width: 1400px) {
  .c-nav_menu li a::after {
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  .c-nav_menu li a::after {
    display: none;
  }
}
.c-nav_login a {
  width: 120px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  background-color: #5574b2;
  text-decoration: none;
  position: relative;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-nav_login a {
    width: 100%;
    height: 14.9333333333vw;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    line-height: 14.1333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 0 auto 20px;
    display: inline-block;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }
}
.c-nav_login a:hover {
  background-color: #384f7e;
}
.c-nav_login a::before {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 44px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_login.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-nav_login a::before {
    top: 50%;
    left: 6.6666666667vw;
    width: 8vw;
    height: 8vw;
    transform: translateY(-50%);
  }
}
.c-nav_login.nolink {
  width: 120px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #CCCCCC;
  background-color: #888888;
  text-decoration: none;
  position: relative;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-nav_login.nolink {
    width: 100%;
    height: 14.9333333333vw;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    line-height: 14.1333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 0 auto 20px;
    display: inline-block;
  }
}
.c-nav_login.nolink::before {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 44px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_login.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .c-nav_login.nolink::before {
    top: 50%;
    left: 6.6666666667vw;
    width: 8vw;
    height: 8vw;
    transform: translateY(-50%);
  }
}
.c-nav_apply a {
  width: 120px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  background-color: #e0481d;
  text-decoration: none;
  position: relative;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-nav_apply a {
    width: 100%;
    height: 14.9333333333vw;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    line-height: 14.1333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 0 auto 20px;
    display: inline-block;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }
}
.c-nav_apply a:hover {
  background-color: #b8300a;
}
.c-nav_apply a::before {
  display: block;
  content: "";
  position: absolute;
  top: 25px;
  left: 44px;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_apply.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-nav_apply a::before {
    top: 50%;
    left: 6.6666666667vw;
    width: 8vw;
    height: 8vw;
    transform: translateY(-50%);
  }
}
.c-nav_mail a {
  width: 120px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  background-color: #3F4C62;
  text-decoration: none;
  position: relative;
  padding: 30px 0 0 0;
}
@media screen and (max-width: 767px) {
  .c-nav_mail a {
    width: 100%;
    height: 14.9333333333vw;
    padding: 0;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    line-height: 14.1333333333vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin: 0 auto 20px;
    display: inline-block;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }
}
.c-nav_mail a:hover {
  background-color: #383B47;
}
.c-nav_mail a::before {
  display: block;
  content: "";
  position: absolute;
  top: 27px;
  left: 46px;
  width: 27px;
  height: 19px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-nav_mail a::before {
    top: 50%;
    left: 6.6666666667vw;
    width: 7.2vw;
    height: 5.0666666667vw;
    transform: translateY(-50%);
  }
}

.rounded-table {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #CCCCCC;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .rounded-table {
    margin-bottom: 5.3333333333vw;
  }
}
.rounded-table.green .c-table th {
  background-color: #e2f0ea;
  color: #2AB572;
}
.rounded-table .c-table {
  border-collapse: collapse;
  width: 100%;
}
.rounded-table .c-table th {
  border-right: none;
  font-size: 18px;
  font-weight: 600;
  background-color: #e2e4f0;
  color: #5574b2;
  text-align: center;
  padding: 15px 10px;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table th {
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding: 2.6666666667vw 1.3333333333vw;
    line-height: 130%;
  }
}
.rounded-table .c-table th.last {
  border-right: none;
}
.rounded-table .c-table td {
  background: #ffffff;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  text-align: center;
  vertical-align: middle;
  padding: 15px 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .rounded-table .c-table td {
    font-size: 13px;
    font-size: 0.7222222222rem;
    padding: 2.6666666667vw 2.1333333333vw;
    text-align: left;
  }
}
.rounded-table .c-table td.last {
  border-right: none;
}
.rounded-table .c-table td.no {
  border-bottom: none;
}
.rounded-table .c-table tr:last-of-type td {
  border-bottom: none;
}

.c-title-toph2 {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 900;
  line-height: 160%;
  color: #383B47;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    margin: 0 0 4vw;
    font-size: 26px;
    font-size: 1.4444444444rem;
    line-height: 130%;
  }
}
.c-title-toph3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 170%;
  color: #ffffff;
  text-align: center;
  background-color: #3F4C62;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .c-title-toph3 {
    font-size: 22px;
    font-size: 1.2222222222rem;
    padding: 2.6666666667vw 0;
  }
}
.c-title-toph4 {
  font-size: 20px;
  font-weight: 900;
  line-height: 170%;
  color: #5574b2;
  text-align: center;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title-toph4 {
    font-size: 18px;
    font-size: 1rem;
    padding-bottom: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
.c-title_h2 {
  width: 100%;
  height: 300px;
  background: url(../../src/img/lower/ttl_bg.png) center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 45px;
  font-weight: bold;
  color: #ffffff;
  line-height: 120%;
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 1400px) {
  .c-title_h2 {
    padding: 0 0 20px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .c-title_h2 {
    height: 42.6666666667vw;
    font-size: 24px;
    font-size: 1.3333333333rem;
    padding: 13.8666666667vw 0 0;
  }
}
.c-title_h2 span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-title_h2 span {
    font-size: 18px;
    font-size: 1rem;
  }
}
.c-title_h3 {
  width: 100%;
  background-color: #e2e4f0;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 600;
  color: #5574b2;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-title_h3 {
    padding: 2.6666666667vw 4vw;
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 4vw;
  }
}
.c-title_h3 span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .c-title_h3 span {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-right: 2.6666666667vw;
  }
}

.p-header {
  width: 100%;
  min-width: 1240px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 1400px) {
  .p-header {
    position: sticky;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    min-width: 100%;
    position: fixed;
  }
}
.p-header .hBox {
  width: 100%;
  height: 80px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-header .hBox {
    height: 60px;
  }
}
.p-header .hBox .logo {
  width: 361px;
  height: 25px;
  margin: 0 0 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header .hBox .logo {
    height: auto;
    width: 60%;
    margin: 0 0 0 4vw;
  }
}
.p-header .hBox .logo:hover {
  opacity: 0.8;
}
.p-header .hBox .logo img {
  display: block;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-header .hBox .logo img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 2500;
    color: #383B47;
    background: #e2e4f0;
    text-align: left;
    width: 100vw;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    height: auto;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    padding: 30px 20px;
  }
  #globalMenuSp.active {
    display: block;
    height: 100vh;
    overflow: auto;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 2501;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #5574b2;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 28px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 28px;
    background: #ffffff;
    transform: rotate(40deg);
  }
}
.p-footer {
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 8vw 5.3333333333vw;
  }
}
.p-footer .logo {
  width: 158px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .p-footer .logo {
    width: 40%;
    margin: 0 auto 2.6666666667vw;
  }
}
.p-footer .copy {
  font-size: 16px;
  font-family: "Barlow Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-footer .copy {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 20;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 5.3333333333vw;
    right: 2.6666666667vw;
    padding-bottom: 0;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top {
  text-align: center;
}
.p-top_txt {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top_txt {
    text-align: left;
    margin-bottom: 4vw;
  }
}
.p-top_main {
  width: 100%;
  height: auto;
  background: url(../../src/img/main_bg.png) center center no-repeat;
  background-size: cover;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .p-top_main {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top_main {
    margin-top: 60px;
    background: url(../../src/img/main_bg_sp.png) center center no-repeat;
  }
}
.p-top_main_wrap {
  width: 100%;
  height: 100%;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-delay: 0.5s;
  animation-fill-mode: both;
  z-index: 1;
  overflow: hidden;
}
.p-top_main_wrap img {
  width: 100%;
  height: auto;
}
.p-top_main_ttl {
  position: absolute;
  width: 43%;
  top: 6%;
  left: 2%;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_main_ttl {
    width: 93%;
    top: 5%;
    left: 3%;
  }
}
.p-top_main_icon {
  position: absolute;
  width: 10%;
  bottom: 40%;
  left: 4%;
  animation-name: fade;
  animation-duration: 2s;
  animation-iteration-count: 1;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_main_icon {
    width: 18%;
    bottom: 56%;
    left: 4%;
  }
}
.p-top_titlewrap {
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap {
    margin: 0 auto 4vw;
  }
}
.p-top_titlewrap .en {
  font-size: 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  color: #5574b2;
  line-height: 150%;
  margin-bottom: 0;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap .en {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-bottom: 0.5333333333vw;
  }
}
.p-top_titlewrap .enred {
  font-size: 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  color: #ffffff;
  background-color: #e0481d;
  border-radius: 6px;
  line-height: 150%;
  letter-spacing: 0.03em;
  width: 170px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap .enred {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-bottom: 0.5333333333vw;
    width: 32vw;
    margin: 0 auto 2.1333333333vw;
  }
}
.p-top_titlewrap.contact {
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap.contact {
    margin: 0 0 5.3333333333vw;
  }
}
.p-top_titlewrap.contact .c-title-toph2 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_titlewrap.contact .c-title-toph2 {
    margin: 0 0 4vw;
    font-size: 26px;
    font-size: 1.4444444444rem;
    line-height: 130%;
  }
}
.p-top_titlewrap.contact .en {
  color: #ffffff;
}
.p-top_summary_wrap {
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap {
    margin: 0 auto 5.3333333333vw;
    max-width: 100%;
  }
}
.p-top_summary_wrap.lower {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap.lower {
    margin-bottom: 21.3333333333vw;
  }
}
.p-top_summary_wrap_ttl {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ttl {
    margin-bottom: 4vw;
  }
}
.p-top_summary_wrap_ttl .ttl01 {
  font-size: 24px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ttl .ttl01 {
    font-size: 17px;
    font-size: 0.9444444444rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-top_summary_wrap_ttl .ttl02 {
  font-size: 36px;
  font-weight: 900;
  line-height: 160%;
  margin-bottom: 40px;
  color: #5574b2;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ttl .ttl02 {
    font-size: 28px;
    font-size: 1.5555555556rem;
    margin-bottom: 8vw;
    line-height: 140%;
  }
}
.p-top_summary_wrap_ttl .ttl02 span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 2px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ttl .ttl02 span {
    font-size: 30px;
    font-size: 1.6666666667rem;
  }
}
.p-top_summary_wrap_ttl .txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ttl .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
    text-align: left;
  }
}
.p-top_summary_wrap_ditail {
  width: 100%;
  background-color: #EEEFF6;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail {
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_summary_wrap_ditail .l-section_btn_wrap {
  width: 100%;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail .l-section_btn_wrap {
    position: relative;
    bottom: inherit;
    left: inherit;
    transform: inherit;
    padding: 6.6666666667vw 5.3333333333vw 9.3333333333vw;
  }
}
.p-top_summary_wrap_ditail .l-section_btn_wrap_txt {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail .l-section_btn_wrap_txt {
    margin: -6.6666666667vw 0 6.6666666667vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.p-top_summary_wrap_ditail_inner {
  width: 100%;
  padding: 30px 50px 50px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner {
    padding: 4vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-top_summary_wrap_ditail_inner.col2 {
  padding: 30px 30px 120px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner.col2 {
    padding: 5.3333333333vw 5.3333333333vw 0;
  }
}
.p-top_summary_wrap_ditail_inner .box {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box {
    margin-bottom: 4.8vw;
  }
}
.p-top_summary_wrap_ditail_inner .box .ttl {
  font-size: 28px;
  font-weight: 900;
  color: #3F4C62;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  margin-bottom: 2px;
  line-height: 160%;
  padding-left: 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box .ttl {
    font-size: 22px;
    font-size: 1.2222222222rem;
    margin-bottom: 1.3333333333vw;
    padding-left: 5.3333333333vw;
  }
}
.p-top_summary_wrap_ditail_inner .box .ttl .no {
  position: absolute;
  color: #5574b2;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 42px;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box .ttl .no {
    font-size: 32px;
    font-size: 1.7777777778rem;
  }
}
.p-top_summary_wrap_ditail_inner .box .txt {
  font-size: 16px;
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
    padding-left: 5.3333333333vw;
  }
}
.p-top_summary_wrap_ditail_inner .box_list {
  width: 100%;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box_list {
    margin-bottom: 6.6666666667vw;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4vw;
  }
}
.p-top_summary_wrap_ditail_inner .box_list li {
  padding: 0 0 0 38px;
  position: relative;
  font-size: 18px;
  line-height: 160%;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box_list li {
    padding: 0 0 0 9.3333333333vw;
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_summary_wrap_ditail_inner .box_list li::before {
  display: block;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/check_blue.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .box_list li::before {
    top: 0.8vw;
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}
.p-top_summary_wrap_ditail_inner .linkbox a {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  color: #383B47;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a {
    grid-template-columns: 1fr;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a::after {
  content: "";
  display: block;
  background-color: #e2e4f0;
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a::after {
    display: none;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s all;
  border-top: 2px solid #3F4C62;
  border-right: 2px solid #3F4C62;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a::before {
    top: 7.2vw;
    right: 5.3333333333vw;
    width: 3.2vw;
    height: 3.2vw;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a:hover {
  opacity: 0.8;
}
.p-top_summary_wrap_ditail_inner .linkbox a:hover::before {
  right: 10px;
}
.p-top_summary_wrap_ditail_inner .linkbox a .img {
  background-color: #7A9BDD;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .img {
    height: 14.6666666667vw;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a .img img {
  max-width: 184px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .img img {
    max-width: 43.7333333333vw;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a .img p {
  font-size: 18px;
  line-height: 160%;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .img p {
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a .txt {
  padding: 23px 50px 23px 20px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .txt {
    padding: 4vw;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a .txt p {
  font-size: 14px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .txt p {
    font-size: 15px;
    font-size: 0.8333333333rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-top_summary_wrap_ditail_inner .linkbox a .txt p.txt_s {
  font-size: 12px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap_ditail_inner .linkbox a .txt p.txt_s {
    font-size: 12px;
    font-size: 0.6666666667rem;
  }
}
.p-top_summary_wrap2 {
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2 {
    max-width: 100%;
  }
}
.p-top_summary_wrap2_ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ttl {
    margin-bottom: 4vw;
  }
}
.p-top_summary_wrap2_ttl .ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ttl .ttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-top_summary_wrap2_ttl .ttl .blue {
  color: #5574b2;
}
.p-top_summary_wrap2_ttl .ttl .red {
  color: #e0481d;
}
.p-top_summary_wrap2_ttl .ttl .no {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 2px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ttl .ttl .no {
    font-size: 26px;
    font-size: 1.4444444444rem;
  }
}
.p-top_summary_wrap2_ditail {
  width: 100%;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail {
    margin-bottom: 13.3333333333vw;
    gap: 2.6666666667vw;
  }
}
.p-top_summary_wrap2_ditail dl {
  background-color: #EEEFF6;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail dl {
    grid-template-columns: 13.3333333333vw 1fr;
  }
}
.p-top_summary_wrap2_ditail dl dt {
  background-color: #3F4C62;
  font-family: "Barlow Condensed", sans-serif;
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail dl dt {
    font-size: 26px;
    font-size: 1.4444444444rem;
    flex-direction: column;
    line-height: 0.5;
  }
}
.p-top_summary_wrap2_ditail dl dt span {
  font-size: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail dl dt span {
    font-size: 18px;
    font-size: 1rem;
    margin-right: 0;
  }
}
.p-top_summary_wrap2_ditail dl dd {
  text-align: left;
  font-size: 26px;
  font-weight: 600;
  padding: 20px 30px;
  color: #3F4C62;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail dl dd {
    font-size: 18px;
    font-size: 1rem;
    padding: 3.2vw;
  }
}
.p-top_summary_wrap2_ditail dl dd span {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail dl dd span {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_summary_wrap2_ditail.lower a {
  text-decoration: none;
}
.p-top_summary_wrap2_ditail.lower a dl {
  background-color: #ffffff;
}
.p-top_summary_wrap2_ditail.lower a:hover {
  opacity: 0.8;
}
.p-top_summary_wrap2_ditail2 {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.p-top_summary_wrap2_ditail2 .c-title-toph3 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail2 .c-title-toph3 {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-top_summary_wrap2_ditail2 .c-title-toph3 small {
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_summary_wrap2_ditail2 .c-title-toph3 small {
    font-size: 15px;
    font-size: 0.8333333333rem;
    margin: 0;
  }
}
.p-top_flow_wrap {
  /*margin: 0 auto 50px;*/
  margin: 0 auto;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap {
    /*margin: pw(35) auto pw(20);*/
    margin: 9.3333333333vw auto 0;
    max-width: 100%;
  }
}
.p-top_flow_wrap_ditail {
  width: 100%;
  margin-bottom: 35px;
  position: relative;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 0;
  border: 2px solid #5574b2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail {
    margin-bottom: 14.9333333333vw;
    grid-template-columns: 1fr;
  }
}
.p-top_flow_wrap_ditail::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #5574b2;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail::after {
    bottom: -5.3333333333vw;
    border-left: 5.8666666667vw solid transparent;
    border-right: 5.8666666667vw solid transparent;
    border-top: 5.3333333333vw solid #5578b1;
  }
}
.p-top_flow_wrap_ditail:last-of-type {
  margin-bottom: 0;
}
.p-top_flow_wrap_ditail:last-of-type::after {
  display: none;
}
.p-top_flow_wrap_ditail dt {
  background-color: #7A9BDD;
  position: relative;
  min-height: 106px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dt {
    min-height: auto;
    padding: 10.6666666667vw 0 3.2vw;
    justify-content: center;
  }
}
.p-top_flow_wrap_ditail dt .ttl {
  padding: 0 0 0 106px;
  color: #ffffff;
  font-size: 18px;
  line-height: 160%;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dt .ttl {
    font-size: 18px;
    font-size: 1rem;
    padding: 0;
    text-align: center;
  }
}
.p-top_flow_wrap_ditail dt .img {
  position: absolute;
  width: 66px;
  height: 66px;
  background-color: #ffffff;
  border-radius: 100px;
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dt .img {
    width: 17.6vw;
    height: 17.6vw;
    top: -8.8vw;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #5574b2;
  }
}
.p-top_flow_wrap_ditail dd {
  padding: 20px 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dd {
    padding: 4vw 5.3333333333vw;
  }
}
.p-top_flow_wrap_ditail dd .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dd .txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    line-height: 150%;
  }
}
.p-top_flow_wrap_ditail dd .txt_s {
  font-size: 14px;
  line-height: 160%;
  margin-top: 5px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top_flow_wrap_ditail dd .txt_s {
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 150%;
    margin-top: 1.3333333333vw;
  }
}
.p-top_flow_wrap_ditail dd .txt_s.red {
  color: #e0481d;
}
.p-top_cv {
  text-align: center;
  position: relative;
  padding: 50px 0;
  background: #3F4C62 url(../../src/img/lower/contact_bg.png);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_cv {
    padding: 10.6666666667vw 5.3333333333vw;
  }
}
.p-top_cv_ttl {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_cv_ttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_cv_txt {
  color: #ffffff;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-top_cv_txt {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.p-top_cv_txt2 {
  color: #ffffff;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_cv_txt2 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_cv_txt2 a {
  color: #ffffff;
}
.p-top_cv_txt2 .tel-link {
  margin-left: 20px;
}
.p-top_cv_txt2 small {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-top_cv_txt2 small {
    font-size: 12px;
    font-size: 0.6666666667rem;
  }
}
.p-top_cv_wrap {
  width: 100%;
  max-width: 830px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
    margin: 5.3333333333vw auto 0;
  }
}
.p-top_cv_wrap a {
  text-decoration: none;
  color: #ffffff;
}
.p-top_cv_wrap .link {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap .link {
    margin-top: 2.1333333333vw;
  }
}
.p-top_cv_wrap .link a {
  font-size: 16px;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap .link a {
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-top_cv_wrap .link a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-top_cv_wrap .tel {
  width: 100%;
  max-width: 400px;
  height: 73px;
  padding: 0 0 0 40px;
  border-radius: 100px;
  background: #3F4C62;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 70px;
  font-size: 32px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0;
  position: relative;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  font-family: "Barlow Condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap .tel {
    max-width: 100%;
    height: 14.9333333333vw;
    line-height: 14.1333333333vw;
    font-size: 30px;
    font-size: 1.6666666667rem;
    padding: 0 0 0 4vw;
    background: #5574b2;
    color: #ffffff;
    border: none;
  }
}
.p-top_cv_wrap .tel::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 88px;
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_tel.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top_cv_wrap .tel::before {
    left: 18.6666666667vw;
    width: 8vw;
    height: 8vw;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-lower_back {
  width: 100%;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-lower_back {
    padding: 6.6666666667vw 0;
  }
}

.p-privacy {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    max-width: 100%;
    padding: 8vw 5.3333333333vw 13.3333333333vw;
  }
}
.p-privacy_wrap {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-privacy_wrap {
    max-width: 100%;
    margin: 0 0 10.6666666667vw;
  }
}
.p-privacy_wrap:last-of-type {
  margin: 0;
}

.p-news {
  padding: 60px 0 70px;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 8vw 5.3333333333vw 13.3333333333vw;
  }
}
.p-news_wrap {
  width: 100%;
  max-width: 1100px;
  background-color: #ffffff;
  border-radius: 6px;
  margin: 0 auto;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap {
    padding: 4vw 0.5333333333vw 4vw 4vw;
  }
}
.p-news_wrap .scrollable-div {
  overflow-y: auto;
  max-height: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div {
    max-height: 61.3333333333vw;
  }
}
.p-news_wrap .scrollable-div li {
  width: calc(100% - 20px);
  border-bottom: 1px solid #CCCCCC;
  padding: 25px 15px 25px 5px;
  font-size: 16px;
  color: #383B47;
  line-height: 180%;
  display: flex;
  align-items: flex-start;
  text-align: left;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li {
    padding: 4vw 0;
    font-size: 15px;
    font-size: 0.8333333333rem;
    position: relative;
    display: block;
  }
}
.p-news_wrap .scrollable-div li:last-child {
  border-bottom: none;
}
.p-news_wrap .scrollable-div li .date {
  width: 100px;
  font-size: 16px;
  color: #888888;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .date {
    width: 100%;
    font-size: 18px;
    font-size: 1rem;
    display: block;
  }
}
.p-news_wrap .scrollable-div li .budge {
  width: 100px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  margin: 0 20px 0 0;
  color: #ffffff;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .budge {
    width: 26.6666666667vw;
    font-size: 13px;
    font-size: 0.7222222222rem;
    height: 5.8666666667vw;
    line-height: 5.8666666667vw;
    position: absolute;
    right: 0;
    top: 3.2vw;
    margin: 0;
  }
}
.p-news_wrap .scrollable-div li .budge.ico_seminar {
  background-color: #e0481d;
}
.p-news_wrap .scrollable-div li .budge.ico_question {
  background-color: #273c83;
}
.p-news_wrap .scrollable-div li .budge.ico_etc {
  background-color: #5574b2;
}
.p-news_wrap .scrollable-div li .main {
  width: calc(100% - 220px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-news_wrap .scrollable-div li .main {
    width: 100%;
  }
}
.p-news_wrap .scrollable-div li .main a {
  color: #383B47;
  text-decoration: none;
}
.p-news_wrap .scrollable-div li .main a:hover {
  color: #e0481d;
  text-decoration: underline;
}

.scrollable-div::-webkit-scrollbar {
  width: 10px;
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #e2e4f0;
  border-radius: 10px;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #5574b2;
  border: 1px solid #e2e4f0;
  background-clip: content-box;
  border-radius: 10px;
}

.p-faq_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq_wrap {
    max-width: 100%;
  }
}
.p-faq .faq-list {
  padding: 0 0 30px;
  cursor: pointer;
  text-align: left;
  position: relative;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list {
    padding: 0 0 5.3333333333vw;
    margin-bottom: 4vw;
  }
}
.p-faq .faq-list:last-of-type {
  margin-bottom: 0;
}
.p-faq .faq-list > dt.btn_detail {
  display: inline-block;
  width: 100%;
  transition: 0.3s all;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.p-faq .faq-list > dt.btn_detail:hover {
  color: #768ebd;
}
.p-faq .faq-list > dt.btn_detail .ttl_q {
  font-family: "Barlow Condensed", sans-serif;
  color: #ffffff;
  background-color: #5574b2;
  font-size: 18px;
  font-weight: 600;
  width: 35px;
  height: 35px;
  padding: 0 0 2px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 32px;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list > dt.btn_detail .ttl_q {
    font-size: 18px;
    font-size: 1rem;
    width: 8vw;
    height: 8vw;
    padding: 0 0 0.5333333333vw 0;
    top: 6.6666666667vw;
    left: 4vw;
  }
}
.p-faq .faq-list > dt.btn_detail .txt_q {
  padding: 30px 70px 0 90px;
  font-size: 22px;
  font-weight: 500;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list > dt.btn_detail .txt_q {
    font-size: 18px;
    font-size: 1rem;
    padding: 5.3333333333vw 10.6666666667vw 0 14.6666666667vw;
  }
}
.p-faq .faq-list > dt.btn_detail::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #5574b2;
  top: 48px;
  right: 25px;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list > dt.btn_detail::before {
    width: 4vw;
    top: 9.3333333333vw;
    right: 4vw;
  }
}
.p-faq .faq-list > dt.btn_detail:after {
  content: "";
  position: absolute;
  background-color: #5574b2;
  top: 48px;
  right: 25px;
  width: 20px;
  height: 2px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list > dt.btn_detail:after {
    width: 4vw;
    top: 9.3333333333vw;
    right: 4vw;
  }
}
.p-faq .faq-list > dt.btn_detail.active::after {
  transform: rotate(0);
}
.p-faq .faq-list > dt.btn_detail.active + dd {
  display: block;
}
.p-faq .faq-list dd.close {
  display: none;
}
.p-faq .faq-list dd {
  position: relative;
}
.p-faq .faq-list dd .ttl_a {
  font-family: "Barlow Condensed", sans-serif;
  color: #ffffff;
  background-color: #e0481d;
  font-size: 18px;
  font-weight: 600;
  width: 35px;
  height: 35px;
  padding: 0 0 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 18px;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list dd .ttl_a {
    font-size: 18px;
    font-size: 1rem;
    width: 8vw;
    height: 8vw;
    padding: 0 0 0.5333333333vw 0;
    top: 6.6666666667vw;
    left: 4vw;
  }
}
.p-faq .faq-list dd > .txt_a {
  padding: 20px 70px 10px 90px;
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-faq .faq-list dd > .txt_a {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 5.3333333333vw 4vw 2.6666666667vw 14.6666666667vw;
  }
}

.p-consulting_top {
  width: 100%;
  height: 650px;
  background: url(../../src/img/lower/consulting_img.png) center center no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-consulting_top {
    height: 42.6666666667vw;
    padding-top: 0;
  }
}
.p-consulting_top_ttl {
  z-index: 2;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #FFF 61.54%);
  width: calc(50% + 70px);
  border-radius: 6px 0 0 6px;
  position: absolute;
  bottom: -63px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl {
    width: 89.3333333333vw;
    border-radius: 6px;
    bottom: -52.2666666667vw;
    right: 5.3333333333vw;
  }
}
.p-consulting_top_ttl_wrap {
  padding: 65px 0 80px 60px;
  text-align: left;
  max-width: 620px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap {
    padding: 5.3333333333vw 5.0666666667vw;
    text-align: center;
    max-width: 89.3333333333vw;
  }
}
.p-consulting_top_ttl_wrap .icon {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 30px;
  right: 50%;
  margin-right: -360px;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap .icon {
    width: 17.3333333333vw;
    height: 17.3333333333vw;
    top: -8vw;
    right: -2.6666666667vw;
    margin-right: 0;
  }
}
.p-consulting_top_ttl_wrap .ttl01 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap .ttl01 {
    font-size: 17px;
    font-size: 0.9444444444rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-consulting_top_ttl_wrap .ttl02 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  color: #5574b2;
  line-height: 140%;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap .ttl02 {
    font-size: 23px;
    font-size: 1.2777777778rem;
    margin-bottom: 1.8666666667vw;
    line-height: 160%;
  }
}
.p-consulting_top_ttl_wrap .ttl02 span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0 3px;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap .ttl02 span {
    font-size: 30px;
    font-size: 1.6666666667rem;
  }
}
.p-consulting_top_ttl_wrap .txt {
  font-size: 20px;
  font-weight: 400;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .p-consulting_top_ttl_wrap .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
    text-align: left;
  }
}
.p-consulting_flow {
  padding-top: 170px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow {
    padding-top: 64vw;
  }
}
.p-consulting_flow_ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_ttl {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-consulting_flow_wrap {
  margin: 0 auto;
  max-width: 1100px;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap {
    max-width: 100%;
  }
}
.p-consulting_flow_wrap_inner {
  padding: 50px 40px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_inner {
    padding: 6.6666666667vw 5.3333333333vw 8vw;
  }
}
.p-consulting_flow_wrap_txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 0 0 0 70px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt {
    flex-direction: column;
    margin-bottom: 3.4666666667vw;
    padding: 0;
  }
}
.p-consulting_flow_wrap_txt_ttl {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt_ttl {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 2.6666666667vw;
  }
}
.p-consulting_flow_wrap_txt_ttl span {
  font-size: 28px;
  font-weight: 700;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt_ttl span {
    font-size: 22px;
    font-size: 1.2222222222rem;
    margin-left: 1.3333333333vw;
  }
}
.p-consulting_flow_wrap_txt_list li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 130%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt_list li {
    font-size: 14px;
    font-size: 0.7777777778rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-consulting_flow_wrap_txt_list li:last-of-type {
  margin-bottom: 0;
}
.p-consulting_flow_wrap_txt_ttl2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt_ttl2 {
    font-size: 18px;
    font-size: 1rem;
    margin-top: 1.0666666667vw;
  }
}
.p-consulting_flow_wrap_txt_ttl2 span {
  font-size: 28px;
  font-weight: 700;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_wrap_txt_ttl2 span {
    font-size: 22px;
    font-size: 1.2222222222rem;
    margin-left: 0;
  }
}
.p-consulting_flow_box_ditail {
  width: 100%;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail {
    grid-template-columns: 1fr;
  }
}
.p-consulting_flow_box_ditail .no {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 700;
  vertical-align: bottom;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .no {
    display: none;
  }
}
.p-consulting_flow_box_ditail .no span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-right: 4px;
}
.p-consulting_flow_box_ditail .box {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #5574b2;
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 0;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-template-columns: inherit;
    margin-bottom: 6.6666666667vw;
  }
}
.p-consulting_flow_box_ditail .box.green {
  border: 2px solid #2AB572;
}
.p-consulting_flow_box_ditail .box.green:after {
  border-top: 20px solid #2AB572;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box.green:after {
    border-top: 5.3333333333vw solid #2AB572;
  }
}
.p-consulting_flow_box_ditail .box.green .box01 {
  background-color: #7FC791;
  border-right: 2px solid #2AB572;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box.green .box01 {
    border-right: none;
    border-left: 2px solid #2AB572;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box.green .box02 {
    border-top: 2px solid #2AB572;
  }
}
.p-consulting_flow_box_ditail .box.green .box02 .point::before {
  background: url(../../src/img/icon/check_green.svg) center center no-repeat;
  background-size: cover;
}
.p-consulting_flow_box_ditail .box.green .box03 {
  background-color: #7FC791;
  border-left: 2px solid #2AB572;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box.green .box03 {
    border-left: none;
    border-top: 2px solid #2AB572;
  }
}
.p-consulting_flow_box_ditail .box::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 20px solid #5574b2;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box::after {
    bottom: -5.3333333333vw;
    border-left: 5.8666666667vw solid transparent;
    border-right: 5.8666666667vw solid transparent;
    border-top: 5.3333333333vw solid #5578b1;
  }
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .no2 {
    width: 50%;
    font-size: 14px;
    font-size: 0.7777777778rem;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .p-consulting_flow_box_ditail .box .no2 span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    font-size: 1.4444444444rem;
    font-weight: 700;
    margin-right: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-consulting_flow_box_ditail .box .no2 {
    display: none;
  }
}
.p-consulting_flow_box_ditail .box .box01 {
  background-color: #7A9BDD;
  border-right: 2px solid #5574b2;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box01 {
    width: 50%;
    border-right: none;
    border-left: 2px solid #5574b2;
    font-size: 18px;
    font-size: 1rem;
    padding: 2.1333333333vw 0;
  }
}
.p-consulting_flow_box_ditail .box .box02 {
  text-align: left;
  padding: 18px 25px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box02 {
    width: 100%;
    border-top: 2px solid #5574b2;
    padding: 3.4666666667vw 4.5333333333vw;
  }
}
.p-consulting_flow_box_ditail .box .box02 .ttl {
  font-size: 24px;
  font-weight: 700;
  color: #e0481d;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box02 .ttl {
    font-size: 18px;
    font-size: 1rem;
    margin-bottom: 1.3333333333vw;
  }
}
.p-consulting_flow_box_ditail .box .box02 .point {
  position: relative;
  padding-left: 32px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box02 .point {
    padding-left: 6.9333333333vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
    line-height: 140%;
  }
}
.p-consulting_flow_box_ditail .box .box02 .point::before {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../../src/img/icon/check_blue.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box02 .point::before {
    top: 0.5333333333vw;
    width: 4.8vw;
    height: 4.8vw;
  }
}
.p-consulting_flow_box_ditail .box .box03 {
  background-color: #7A9BDD;
  border-left: 2px solid #5574b2;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-consulting_flow_box_ditail .box .box03 {
    width: 100%;
    border-left: none;
    border-top: 2px solid #5574b2;
    font-size: 18px;
    font-size: 1rem;
    padding: 2.1333333333vw 0;
  }
}
.p-consulting_effect {
  margin: 0 auto 50px;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-consulting_effect {
    margin: 0 auto 8vw;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-consulting_effect_ditail {
  width: 100%;
  border-radius: 6px;
  background-color: #EEEFF6;
  padding: 45px 40px;
}
@media screen and (max-width: 767px) {
  .p-consulting_effect_ditail {
    padding: 8vw 6.6666666667vw 6.6666666667vw;
  }
}
.p-consulting_effect_ditail dt .img {
  width: 150px;
  height: 150px;
  background-color: #ffffff;
  border-radius: 150px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-consulting_effect_ditail dt .img {
    width: 32vw;
    height: 32vw;
    border-radius: 32vw;
  }
}
.p-consulting_effect_ditail dd .ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 900;
  color: #5574b2;
  margin: 25px auto 20px;
}
@media screen and (max-width: 767px) {
  .p-consulting_effect_ditail dd .ttl {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin: 5.3333333333vw auto 2.6666666667vw;
  }
}
.p-consulting_effect_ditail dd .txt {
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-consulting_effect_ditail dd .txt {
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.p-consulting_plus {
  position: absolute;
  width: 60px;
  height: 60px;
  top: -30px;
  left: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .p-consulting_plus {
    width: 40px;
    height: 40px;
    top: -20px;
    left: calc(50% - 20px);
  }
}

.p-outline {
  position: relative;
}
.p-outline_wrap {
  width: calc(100% - 40px);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap {
    width: 100%;
    margin: 0 auto 5.3333333333vw;
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}
.p-outline_wrap_ditail {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.p-outline_wrap_ditail a {
  text-decoration: none;
  color: #383B47;
}
.p-outline_wrap_ditail .img {
  overflow: hidden;
}
.p-outline_wrap_ditail .img img {
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.p-outline_wrap_ditail .text_wrap {
  padding: 20px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap {
    padding: 5.3333333333vw;
  }
}
.p-outline_wrap_ditail .text_wrap .icon {
  width: 100px;
  height: 26px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  text-align: center;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap .icon {
    width: 26.6666666667vw;
    height: 6.9333333333vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 6.4vw;
    margin-right: 4vw;
  }
}
.p-outline_wrap_ditail .text_wrap .icon.online {
  background-color: #2AB572;
}
.p-outline_wrap_ditail .text_wrap .icon.venue {
  background-color: #5574b2;
}
.p-outline_wrap_ditail .text_wrap p.day {
  width: calc(100% - 120px);
  font-size: 16px;
  color: #383B47;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 160%;
  color: #3F4C62;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap p.day {
    width: calc(100% - 30.6666666667vw);
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-outline_wrap_ditail .text_wrap p.day span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap p.day span {
    font-size: 22px;
    font-size: 1.2222222222rem;
    margin-right: 2.1333333333vw;
  }
}
.p-outline_wrap_ditail .text_wrap p.ttl {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  color: #3F4C62;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap p.ttl {
    font-size: 18px;
    font-size: 1rem;
    margin-top: 2.1333333333vw;
  }
}
.p-outline_wrap_ditail .text_wrap p.txt {
  width: 100%;
  font-size: 16px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-outline_wrap_ditail .text_wrap p.txt {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 2.1333333333vw;
  }
}
.p-outline_wrap_ditail:hover {
  opacity: 0.8;
}
.p-outline_wrap_ditail:hover .img img {
  transform: scale(1.08);
  opacity: 0.8;
}
.p-outline_lower_nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_nav {
    max-width: 100%;
    height: 13.3333333333vw;
  }
}
.p-outline_lower_nav li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #CCCCCC;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  background-color: #AFAFAF;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_nav li {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.p-outline_lower_nav li span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  margin: 0 3px -1px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_nav li span {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin: 0 0.5333333333vw -1px;
  }
}
.p-outline_lower_nav li.is-active {
  color: #ffffff;
}
.p-outline_lower_nav li.is-active:first-of-type {
  background-color: #5574b2;
}
.p-outline_lower_nav li.is-active:last-of-type {
  background-color: #2AB572;
}
.p-outline_lower_nav li:hover {
  opacity: 0.8;
}
.p-outline_lower .filter-item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 0 0 10px 10px;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower .filter-item {
    max-width: 100%;
    padding: 5.3333333333vw;
  }
}
.p-outline_lower_box {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_box {
    margin-bottom: 8vw;
    padding-bottom: 0;
  }
}
.p-outline_lower_box:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
}
.p-outline_lower_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.p-outline_lower_wrap_ditail {
  width: 100%;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 8vw;
  }
}
.p-outline_lower_wrap_ditail .img {
  width: 450px;
  height: 285px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .img {
    width: 100%;
    height: auto;
  }
}
.p-outline_lower_wrap_ditail .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
.p-outline_lower_wrap_ditail .text_wrap {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.p-outline_lower_wrap_ditail .text_wrap .icon {
  width: 100px;
  height: 26px;
  color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap .icon {
    width: 28vw;
    height: 6.9333333333vw;
    font-size: 14px;
    font-size: 0.7777777778rem;
    line-height: 6.4vw;
    top: 0.2666666667vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap .icon.online {
  background-color: #2AB572;
}
.p-outline_lower_wrap_ditail .text_wrap .icon.venue {
  background-color: #5574b2;
}
.p-outline_lower_wrap_ditail .text_wrap p.day {
  width: calc(100% - 120px);
  font-size: 20px;
  color: #383B47;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  line-height: 150%;
  color: #3F4C62;
  font-weight: 600;
  padding-left: 120px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap p.day {
    width: calc(100% - 28vw);
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-outline_lower_wrap_ditail .text_wrap p.day span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap p.day span {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-right: 1.3333333333vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap p.ttl {
  width: 100%;
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
  color: #3F4C62;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap p.ttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-top: 2.6666666667vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap p.txt {
  width: 100%;
  font-size: 18px;
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap p.txt {
    font-size: 18px;
    font-size: 1rem;
    margin-top: 2.6666666667vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap p.main {
  width: 100%;
  font-size: 15px;
  margin-top: 5px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap p.main {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 2.1333333333vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap_btn {
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap_btn {
    margin: 5.3333333333vw auto 0;
  }
}
.p-outline_lower_wrap_ditail .text_wrap_btn li {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap_btn li {
    width: 100%;
  }
  .p-outline_lower_wrap_ditail .text_wrap_btn li:first-child {
    margin-bottom: 2.6666666667vw;
  }
}
.p-outline_lower_wrap_ditail .text_wrap_btn li.c-btn a {
  padding: 16px 0;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_wrap_ditail .text_wrap_btn li.c-btn a {
    font-size: 20px;
    font-size: 1.1111111111rem;
    padding: 3.7333333333vw 0;
  }
}
.p-outline_lower .l-section_btn_wrap {
  margin: 50px auto 0;
  text-align: center;
}
.p-outline_lower_modal {
  height: 100%;
  padding: 50px 80px;
  background-color: #ffffff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal {
    padding: 5.3333333333vw;
  }
}
.p-outline_lower_modal_wrap_head {
  width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 20px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head {
    grid-template-columns: 1fr;
    gap: 2.6666666667vw;
    padding-bottom: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-outline_lower_modal_wrap_head .text_wrap {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.p-outline_lower_modal_wrap_head .text_wrap p.day {
  width: calc(100% - 120px);
  font-size: 22px;
  color: #383B47;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 26px;
  color: #3F4C62;
  font-weight: 600;
  padding-left: 120px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head .text_wrap p.day {
    width: calc(100% - 30.6666666667vw);
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 6.9333333333vw;
  }
}
.p-outline_lower_modal_wrap_head .text_wrap p.txt {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head .text_wrap p.txt {
    font-size: 20px;
    font-size: 1.1111111111rem;
  }
}
.p-outline_lower_modal_wrap_head .text_wrap p.txt2 {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head .text_wrap p.txt2 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 1.8666666667vw;
  }
}
.p-outline_lower_modal_wrap_head .text_wrap p.main {
  width: 100%;
  font-size: 15px;
  margin-top: 10px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head .text_wrap p.main {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-top: 2.6666666667vw;
  }
}
.p-outline_lower_modal_wrap_head .img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 25px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_head .img {
    margin-bottom: 4vw;
  }
}
.p-outline_lower_modal_wrap_head .img img {
  width: 100%;
}
.p-outline_lower_modal_wrap_body {
  width: 100%;
}
.p-outline_lower_modal_wrap_body .ttl {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #3F4C62;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_body .ttl {
    font-size: 20px;
    font-size: 1.1111111111rem;
    margin-bottom: 4vw;
  }
}
.p-outline_lower_modal_wrap_btn {
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 30px;
  margin: 30px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_modal_wrap_btn {
    padding-top: 8vw;
    margin: 8vw auto 5.3333333333vw;
  }
}
.p-outline_lower_comingsoon {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-outline_lower_comingsoon {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 4vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--100 {
    margin-bottom: 13.3333333333vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-fontsize--22 {
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .u-fontsize--22 {
    font-size: 18px;
    font-size: 1rem;
  }
}

.u-fontcolor--red {
  color: #e0481d;
}
.u-fontcolor--black {
  color: #383B47 !important;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

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

.u-width--200 {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200 {
    width: 80px !important;
  }
}
.u-width--200_ttl {
  width: 200px !important;
}
@media screen and (max-width: 767px) {
  .u-width--200_ttl {
    width: 60px !important;
  }
}
.u-width--170 {
  width: 170px !important;
}
@media screen and (max-width: 767px) {
  .u-width--170 {
    width: 60px !important;
  }
}
.u-width--180 {
  width: 180px !important;
}
.u-width--260 {
  width: 260px !important;
}
@media screen and (max-width: 767px) {
  .u-width--260 {
    width: 100px !important;
  }
}/*# sourceMappingURL=style.css.map */