@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://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.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: "Zen Kaku Gothic New", 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(24px, 1.666vw, 32px);
}

h3 {
  font-size: clamp(18px, 1.458vw, 28px);
}

main {
  overflow: hidden;
}

th,
td {
  word-break: auto-phrase;
}

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

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.l-container {
  z-index: 1;
  position: relative;
  padding: 0;
}
.l-container.width-sss {
  max-width: 900px;
}
.l-container.width-ss {
  max-width: 1100px;
}
.l-container.width-s {
  max-width: 1200px;
}
.l-container.width-m {
  max-width: 1260px;
}
.l-container--p0 {
  padding: 0 0 2.0833333333vw;
}

.l-footer {
  position: relative;
  background-color: #393939;
  color: #FFF;
}

.l-header {
  z-index: 99;
  position: fixed;
  top: 8px;
  width: calc(100% - 10rem);
  background-color: transparent;
  transition: 0.5s;
}

.l-wrapper {
  padding: 14.2rem 5rem 0 5rem;
  overflow: hidden;
}

#contents .l-wrapper {
  padding: 14.2rem 0 0;
  overflow: hidden;
}

#contents .l-wrapper .l-header {
  padding: 0 5rem;
}

.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: #f5f5f5;
}
.c-bg--bl {
  background: #5b7df9;
}
.c-bg--bl2 {
  background: #5172ea;
}
.c-bg--wh {
  background: #fff;
}
.c-bg--bl3 {
  background: linear-gradient(to bottom, #5b7df9 0%, #5b7df9 50%, #5172ea 50%, #5172ea 100%);
}
.c-bg--bl4 {
  background: linear-gradient(to bottom, #5b7df9 0%, #5b7df9 20%, #5172ea 20%, #5172ea 100%);
}
.c-bg--bl5 {
  background: linear-gradient(to bottom, #5172ea 0%, #5172ea 33%, #5172ea 33%, #5d7cfb 33%, #5d7cfb 33%, #5d7cfb 66%, #5172ea 66%, #5172ea 100%);
}
.c-bg--clg {
  position: absolute;
  width: 398px;
  height: 398px;
  border-radius: 50%;
  background: #b9f6b4;
  background-size: contain;
}
.c-bg--cly {
  position: absolute;
  width: 398px;
  height: 398px;
  border-radius: 50%;
  background: #fff694;
  background-size: contain;
}
.c-bg--triangle {
  background: #deecf6;
  background-image: url("/assets/img/service_bg.png");
  background-repeat: repeat;
  background-attachment: fixed;
}
.c-bg--inbound {
  background: rgba(52, 165, 182, 0.1);
}
.c-bg--inbound .p-service-archive__text h3,
.c-bg--inbound .p-service-archive__text h2 {
  color: #34a5b6;
}
.c-bg--inbound .p-service-archive__text:after {
  color: #34a5b6;
}
.c-bg--inbound .p-service-archive__text:before {
  border-color: #34a5b6;
}
.c-bg--outbound {
  background: rgba(5, 102, 212, 0.1);
}
.c-bg--outbound .p-service-archive__text h3,
.c-bg--outbound .p-service-archive__text h2 {
  color: #0566d4;
}
.c-bg--construction {
  background: rgba(225, 176, 4, 0.1);
}
.c-bg--construction .p-service-archive__text h3,
.c-bg--construction .p-service-archive__text h2 {
  color: #e1b004;
}
.c-bg--construction .p-service-archive__text:after {
  color: #e1b004;
}
.c-bg--construction .p-service-archive__text:before {
  border-color: #e1b004;
}
.c-bg--img__001 {
  position: relative;
  padding-top: 10rem;
}
.c-bg--img__001::before {
  display: block;
  position: absolute;
  top: -7rem;
  width: 100%;
  height: 800px;
  background: url(../img/encho/bg__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}

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

.c-btn--white {
  padding: 0.5208333333vw 2.6041666667vw;
  border: 2px solid #5b7df9;
  border-radius: 10rem;
  color: #5b7df9;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.c-btn--white2 {
  margin: auto;
  padding: 1rem 3rem;
  border: 2px solid #111;
  border-radius: 10rem;
  background: #fff;
  color: #5b7df9;
  color: #111;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.c-btn--white2::after {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 13px;
  height: 15px;
  margin: 0;
  background: url(../img/ico_arrow__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.c-btn--white3 {
  position: relative;
  margin: auto;
  padding: 2rem 8rem 2rem 6rem;
  border: 2px solid #111;
  border-radius: 10rem;
  background: #fff;
  color: #5b7df9;
  color: #111;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-btn--white3::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  content: "";
}
.c-btn--white3::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.c-btn--white3:hover {
  opacity: 1;
}
.c-btn--white3:hover::after {
  right: 15px;
}
.c-btn--gr {
  position: relative;
  margin: auto;
  padding: 2rem 8rem 2rem 6rem;
  border: 2px solid #111;
  border-radius: 10rem;
  background: #f5f5f5;
  color: #5b7df9;
  color: #111;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-btn--gr::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  background-color: #f5f5f5;
  content: "";
}
.c-btn--gr::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.c-btn--gr:hover {
  opacity: 1;
}
.c-btn--gr:hover::after {
  right: 15px;
}
.c-btn--blue {
  position: relative;
  margin: auto;
  padding: 2rem 8rem 2rem 6rem;
  border: 2px solid #111;
  border-radius: 10rem;
  background: #a0b2f8;
  color: #5b7df9;
  color: #111;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-btn--blue::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  background-color: #a0b2f8;
  content: "";
}
.c-btn--blue::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.c-btn--blue:hover {
  opacity: 1;
}
.c-btn--blue:hover::after {
  right: 15px;
}
.c-btn--pink {
  position: relative;
  margin: auto;
  padding: 2rem 8rem 2rem 6rem;
  border: 2px solid #111;
  border-radius: 10rem;
  background: #ffafbf;
  color: #5b7df9;
  color: #111;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-btn--pink::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  background-color: #ffafbf;
  content: "";
}
.c-btn--pink::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.c-btn--pink:hover {
  opacity: 1;
}
.c-btn--pink:hover::after {
  right: 15px;
}
.c-btn--p {
  display: block;
  padding: 0.5rem;
  border-radius: 10rem;
  background-color: #ff6d8a;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.c-btn--p::after {
  display: inline-block;
  width: 13px;
  height: 15px;
  margin: -5px 0 0 5px;
  background: url(../img/ico_arrow__009.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.c-btn--grad {
  display: inline-block; /* inline以外にする */
  z-index: 0; /* グラデーションよりも上に配置 */
  position: relative; /* static以外を指定 */
  padding: 0.5208333333vw 2.6041666667vw;
  overflow: hidden; /* はみ出した部分を非表示(角丸を付ける場合は必須) */
  border-radius: 10rem;
  background: transparent; /* 背景を透明にする */
  color: #fff;
  font-size: clamp(13px, 0.78vw, 15px);
  cursor: pointer; /* カーソルをポインターにする */
  /* ::before, ::afterで2種類のグラデーションを用意 */
  /* グラデーション1 */
  /* グラデーション2 */
  /* ホバー時にグラデーション1を透明にする */
}
.c-btn--grad::before, .c-btn--grad::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.c-btn--grad::before {
  z-index: -1;
  background: linear-gradient(135deg, #50cadc 0%, #0566d4 100%);
  transition: all 0.6s; /* アニメーション実行時間 */
}
.c-btn--grad::after {
  z-index: -2;
  background: linear-gradient(135deg, #0566d4 0%, #50cadc 100%);
}
.c-btn--grad:hover::before {
  opacity: 0;
}
.c-btn--grad2 {
  padding: 0.5208333333vw 2.6041666667vw;
  border-radius: 10rem;
  background: linear-gradient(to right, #50cadc 0%, #0566d4 100%);
  color: #fff;
  font-size: clamp(13px, 0.78vw, 15px);
}
.c-btn--line {
  min-width: 16.6666666667vw;
  padding: 1.0416666667vw 2.6041666667vw;
  border: 2px solid #0e1155;
  border-radius: 10rem;
  background: transparent;
  color: #0e1155;
  font-weight: 500;
  font-size: clamp(14px, 0.8333vw, 16px);
  letter-spacing: 0.1rem;
  text-align: center;
  transition: 0.5s;
}
.c-btn--line:focus:focus {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s;
}
.c-btn--yellow {
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: #fff694;
  color: #111 !important;
  font-size: 15px !important;
}
.c-btn--yellow::after {
  content: none !important;
}
.c-btn--green {
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: #b9f6b4;
  color: #111 !important;
  font-size: 15px !important;
}
.c-btn--green::after {
  content: none !important;
}
.c-btn-more {
  height: 60px;
  padding-left: 80px;
}
.c-btn-more::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
  width: 60px;
  height: 60px;
  background: url(../img/ico_arrow__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-btn-more a {
  display: inline-block;
  position: relative;
  margin-top: 15px;
  border-bottom: 1px solid #111;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-btn-more a:hover {
  opacity: 0.7;
}

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

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

#contents {
  background: url(../img/encho/bg__001.png) no-repeat 0 0;
  background-size: contain;
}

.c-contents-box {
  -webkit-border-top-left-radius: 80px;
  -webkit-border-top-right-radius: 80px;
  -moz-border-radius-topleft: 80px;
  -moz-border-radius-topright: 80px;
  z-index: 1;
  position: relative;
  padding: 4rem;
  border-top-right-radius: 80px;
  border-top-left-radius: 80px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.c-contents-box__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 2rem 0;
  gap: 4%;
}
.c-contents-box__flex figure {
  width: 46%;
}
.c-contents-box__flex--trade_in {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 2rem 0;
  gap: 4%;
}
.c-contents-box__flex--trade_in figure {
  width: 40%;
}
.c-contents-box__textarea {
  width: 46.5%;
  padding-top: 2rem;
}
.c-contents-box__textarea p {
  margin-bottom: 2em;
  font-size: clamp(18px, 1.25vw, 24px);
}
.c-contents-box__textarea p.small {
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-contents-box.top-14 {
  position: relative;
  top: -14rem;
  margin-top: 20rem;
}
.c-contents-box__ico {
  position: absolute;
  top: 5%;
  left: 10%;
  width: 147px;
}
.c-contents-box__ico img {
  width: 100%;
}
.c-contents-box-redarea {
  position: relative;
  margin-bottom: 3rem;
  padding: 3rem;
  border-radius: 25px;
  background-color: #ffeef1;
}
.c-contents-box-redarea__ttl {
  display: inline-block;
  position: absolute;
  top: -1.3rem;
  left: 8%;
  padding: 0 1rem;
  border: 1px solid #ff6d89;
  border-radius: 15px;
  background-color: #fff;
  color: #ff6d89;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}
.c-contents-box-bluearea {
  position: relative;
  padding: 3rem;
  border-radius: 25px;
  background-color: #dee5fe;
}
.c-contents-box-bluearea p {
  margin-bottom: 0;
  font-weight: 500;
}
.c-contents-box-bluearea p em {
  color: #fa2c54;
  font-weight: bold;
}
.c-contents-box-bluearea__ttl {
  display: inline-block;
  position: absolute;
  top: -1.3rem;
  left: 8%;
  padding: 0 1rem;
  border: 1px solid #3e5dd0;
  border-radius: 15px;
  background-color: #fff;
  color: #3e5dd0;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}
.c-contents-box-bluearea__ttl2 {
  display: block;
  position: absolute;
  top: -1.3rem;
  left: calc(50% - 50px);
  width: 100px;
  padding: 0 1rem;
  border-radius: 15px;
  background-color: #2b249b;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.c-contents-box2 {
  position: relative;
  margin-top: 7rem;
  margin-bottom: 3rem;
  padding: 4rem;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  background-color: #fff;
}
.c-contents-box2__ttl {
  position: absolute;
  top: -40px;
  left: calc(50% - 116px);
  width: 232px;
  height: 80px;
  background: url(../img/list/bg__001.png) no-repeat center center;
  background-size: contain;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 3.2;
  text-align: center;
}
.c-contents-box2__h3 {
  margin: 1rem 0 2rem 0;
  color: #ff6d89;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 1.6;
  text-align: center;
}
.c-contents-box2__img1 {
  margin-bottom: 2rem;
  text-align: center;
}
.c-contents-box2__img3 {
  width: 60%;
  margin: 2rem auto 0 auto;
  text-align: center;
}
.c-contents-box2__text {
  width: 32%;
  margin-top: -5rem;
  margin-left: 15%;
  color: #2c2599;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.c-contents-box2-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-contents-box2-list li {
  width: 31%;
}
.c-contents-box2-list__text {
  padding: 1.5rem;
}
.c-contents-box3 {
  position: relative;
  margin-top: 7rem;
  margin-bottom: 3rem;
  padding: 4rem;
  border-radius: 25px;
  background-color: #fff;
}
.c-contents-box3__ttl {
  margin-bottom: 4rem;
  padding-left: 5%;
  color: #5b7df9;
  font-weight: bold;
}
.c-contents-box3__num {
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-right: 2rem;
  border-radius: 30px;
  background-color: #5b7df9;
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  line-height: 1.5;
  text-align: center;
}
.c-contents-box3__ttl2 {
  max-width: 95%;
  min-height: 65px;
  margin: auto;
  padding-block: 0.5em 1.5em;
  background: url(../img/post-high-school/bg__002.png) no-repeat center center;
  background-size: contain;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.c-contents-box3__ttl3 {
  color: #fa2c54;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.c-contents-box3__ttl4 {
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-contents-box3__ttl5 {
  margin-bottom: 5rem;
  text-align: center;
}
.c-contents-box3__text1 {
  margin: 3rem 0 0 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-contents-box3__text2 {
  color: #888888;
  text-align: center;
}
.c-contents-box3-btn {
  margin: 3rem 0;
  text-align: center;
}
.c-contents-box4 {
  margin-bottom: 5rem;
  padding: 4rem;
  border-radius: 25px;
  background-color: #ff6d89;
}
.c-contents-box4__ttl {
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 1.77vw, 34px);
  text-align: center;
}
.c-contents-box4__ttl img {
  display: inline-block;
  margin-right: 2rem;
}
.c-contents-box4-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin: 4rem 0 0 0;
  gap: 0;
}
.c-contents-box4-list li {
  padding: 0 3rem 4rem;
}
.c-contents-box4-list li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  width: 33%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffedf0;
}
.c-contents-box4-list li:nth-child(2) {
  width: 33%;
  background-color: #ffe2e8;
}
.c-contents-box4-list li:nth-child(3) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  width: 34%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ffd2db;
}
.c-contents-box4-list__ttl {
  width: 230px;
  min-height: 69px;
  margin: -3rem auto 0 auto;
  padding-block: 0.6em 1.5em;
  background: url(../img/post-high-school/bg__001.png) no-repeat center center;
  background-size: contain;
  color: #fa2c54;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-contents-box4-list__img {
  text-align: center;
}
.c-contents-box4-list__ttl2 {
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-contents-box4-list-check {
  position: relative;
  padding-left: 25px;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-contents-box4-list-check::before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 12px;
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-contents-box4-list2 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin: 4rem 0 0 0;
  gap: 0;
}
.c-contents-box4-list2 li {
  width: 25%;
  padding: 4rem;
}
.c-contents-box4-list2 li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffedf0;
}
.c-contents-box4-list2 li:nth-child(2) {
  background-color: #ffe2e8;
}
.c-contents-box4-list2 li:nth-child(3) {
  background-color: #ffd2db;
}
.c-contents-box4-list2 li:nth-child(4) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ffbfcc;
}
.c-contents-box4-list2__ttl {
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-contents-box4-list2__img {
  display: flex;
  height: 100px;
  text-align: center;
}
.c-contents-box4-list2__img img {
  width: auto;
  margin: auto;
}
.c-contents-box4-list3 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin: 4rem 0 0 0;
  gap: 0;
}
.c-contents-box4-list3 li {
  width: 50%;
  padding: 0 2rem 2rem;
}
.c-contents-box4-list3 li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffedf0;
}
.c-contents-box4-list3 li:nth-child(2) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ffd2db;
}
.c-contents-box4-list3__ttl {
  width: 273px;
  height: 69px;
  margin: -3rem auto 0 auto;
  padding-top: 0.6rem;
  background: url(../img/post-high-school/bg__001.png) no-repeat center center;
  background-size: contain;
  color: #fa2c54;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.c-contents-box4-list3__img {
  height: 150px;
  margin: 3rem 0;
  padding: 0;
  text-align: center;
}
.c-contents-box4-list3-check {
  position: relative;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem 0.5rem 4rem;
  border-radius: 25px;
  background-color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-contents-box4-list3-check::before {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
  width: 18px;
  height: 12px;
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-contents-box4-list3__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.c-contents-box4-list3__flex .c-contents-box4-list3-check {
  width: 49%;
}
.c-contents-box4-list3__textr {
  text-align: right;
}
.c-contents-box-bl {
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #4665d6;
}
.c-contents-box-bl h3 {
  color: #fff;
  font-size: clamp(25px, 1.875vw, 36px);
  text-align: center;
}
.c-contents-box-bl h3 span {
  font-size: clamp(18px, 1.458vw, 28px);
}
.c-contents-box-bl-r {
  position: relative;
  width: 55%;
}
.c-contents-box-bl-wrap {
  margin-top: 2rem;
  padding: 4rem;
  border-radius: 20px;
  background-color: #fff;
}
.c-contents-box-bl-wrap figure {
  width: 30%;
}
.c-contents-box-bl__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2%;
}
.c-contents-box-bl2 {
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #5b7df9;
}
.c-contents-box-bl2 h3 {
  color: #fff;
  font-size: clamp(25px, 1.875vw, 36px);
  text-align: center;
}
.c-contents-box-bl2 h3 span {
  font-size: clamp(18px, 1.458vw, 28px);
}
.c-contents-box-bl2-r {
  position: relative;
  width: 55%;
}
.c-contents-box-bl2-wrap {
  margin-top: 2rem;
  padding: 4rem;
  border-radius: 20px;
  background-color: #fff;
}
.c-contents-box-pink {
  position: relative;
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #ff6d8a;
}
.c-contents-box-pink h3 {
  color: #fff;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1.4;
  text-align: center;
}
.c-contents-box-pink h3 span {
  font-size: clamp(18px, 1.458vw, 28px);
}
.c-contents-box-pink-r {
  position: relative;
  width: 55%;
}
.c-contents-box-pink-wrap {
  margin-top: 2rem;
  padding: 4rem;
  border-radius: 20px;
  background-color: #fff;
}
.c-contents-box-pink-wrap figure {
  width: 30%;
}
.c-contents-box-pink-wrap2 {
  margin-top: 2rem;
  padding: 4rem;
  border-radius: 20px;
  background-color: #fff;
}
.c-contents-box-pink-wrap2 figure {
  width: 100%;
}
.c-contents-box-pink-wrap2.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.c-contents-box-pink__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 2%;
}
.c-contents-box-pink-check {
  width: 75%;
}
.c-contents-box-pink-check li {
  min-height: 40px;
  margin-bottom: 0.5rem;
  padding-left: 45px;
  background: url(../img/post-high-school/byad/img__017.png) no-repeat 0 0;
  background-size: 37px;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-contents-box-pink-fig {
  width: 25% !important;
}
.c-contents-box-pink-inner {
  position: relative;
  margin-top: 5rem;
  padding: 4rem 4rem 4rem 25rem;
  border-radius: 25px;
  background-color: #f5f5f5;
  font-size: clamp(18px, 1.25vw, 24px);
}
.c-contents-box-pink-inner p {
  font-weight: bold;
}
.c-contents-box-pink-inner figure {
  position: absolute;
  top: -50px;
  left: 3%;
}
.c-contents-box-pink-lead {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.c-contents-box-pink__subttl {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0 2rem;
  border: 1px solid #ff6d8a;
  border-radius: 25px;
  background-color: #fff694;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.c-contents-box-wh {
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #fff;
}
.c-contents-box-wh h3 {
  color: #5b7df9;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.c-contents-box5 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-bottom: 3rem;
  overflow: hidden;
  gap: 0;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  background-color: #fff;
}
.c-contents-box5 figure {
  width: 360px;
  background-color: #d8e0ff;
}
.c-contents-box5__wrap {
  width: calc(100% - 360px);
  padding: 2rem 4rem;
}
.c-contents-box5__wrap h3 {
  margin-bottom: 0.6em;
  color: #2b249b;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
}
.c-contents-box5__wrap p {
  margin-bottom: 1em;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.6;
}
.c-contents-box5-check {
  position: relative;
  margin-bottom: 0.5em !important;
  padding-left: 25px;
}
.c-contents-box5-check::before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 12px;
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-contents-box6 {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-bottom: 3rem;
  overflow: hidden;
  gap: 0;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  background-color: #fff;
}
.c-contents-box6 figure {
  width: 400px;
  background-color: #ffc6ce;
}
.c-contents-box6__wrap {
  width: calc(100% - 400px);
  padding: 4rem 4rem;
}
.c-contents-box6__wrap h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-bottom: 1em;
  gap: 0;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
}
.c-contents-box6__wrap p {
  margin-bottom: 1em;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.8;
}
.c-contents-box6__img_r {
  order: 2;
}
.c-contents-box6__num {
  width: 80px;
  height: 80px;
  padding-top: 7px;
  border-radius: 40px;
  background-color: #5b7df9;
  color: #fff;
  line-height: 1;
  text-align: center;
}
.c-contents-box6__num1 {
  font-size: 15px;
}
.c-contents-box6__num2 {
  font-size: 36px;
}
.c-contents-box6__ttl {
  width: calc(100% - 95px);
  margin: auto 0;
  line-height: 1.4;
}

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

*[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-list--disc li {
  padding-left: 1em;
  line-height: 1.6;
  text-indent: -1em;
}
.c-list--disc li::before {
  padding-right: 1rem;
  content: "・";
}
.c-list--disc li + li {
  margin-top: 0.5em;
}
.c-list--indent li {
  padding-left: 2em;
  font-size: clamp(13px, 0.78vw, 15px);
  text-indent: -2em;
}
.c-list--indent li + li {
  margin-top: 0.5em;
}
.c-list-check li {
  position: relative;
  padding-left: 25px;
}
.c-list-check li::before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 12px;
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.c-list-bbl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 0;
}
.c-list-bbl li {
  position: relative;
  width: 30%;
  margin-bottom: 3%;
  border: 3px solid #2c2599;
  border-radius: 20px;
  background-color: #fff;
}
.c-list-bbl li figure {
  -webkit-border-top-left-radius: 18px;
  -webkit-border-top-right-radius: 18px;
  -moz-border-radius-topleft: 18px;
  -moz-border-radius-topright: 18px;
  overflow: hidden;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
}
.c-list-bbl__ttl {
  position: absolute;
  top: -40px;
  left: calc(50% - 116px);
  width: 232px;
  height: 80px;
  background: url(../img/list/bg__001.png) no-repeat center center;
  background-size: contain;
  color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 3.2;
  text-align: center;
}
.c-list-bbl__wrap {
  padding: 2rem 2.5rem 2rem 2.5rem;
}
.c-list-bbl2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 0;
}
.c-list-bbl2 li {
  position: relative;
  width: 30%;
  margin-bottom: 3%;
  border: 3px solid #d8e0ff;
  border-radius: 20px;
  background-color: #fff;
}
.c-list-bbl2 li figure {
  -webkit-border-top-left-radius: 18px;
  -webkit-border-top-right-radius: 18px;
  -moz-border-radius-topleft: 18px;
  -moz-border-radius-topright: 18px;
  overflow: hidden;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
}
.c-list-bbl2 li figure img {
  width: 100%;
}
.c-list-bbl2__num {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background-color: #5b7df9;
  color: #fff;
  font-size: 20px;
  line-height: 2.4;
  text-align: center;
}
.c-list-bbl2__ttl {
  margin: 1rem 0;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  text-align: center;
}
.c-list-bbl2__ttl span {
  font-size: 14px;
}
.c-list-bbl2__text {
  font-weight: normal;
  text-align: left;
}
.c-list-bbl2__wrap {
  padding: 1rem 2rem 2rem 2rem;
}
.c-list-red li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-list-red li::before {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #ff6d8a;
  content: "";
}
.c-list-gr li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}
.c-list-gr li::before {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #dddddd;
  content: "";
}

.c-page-top {
  z-index: 10;
  position: absolute;
  top: 25px;
  right: 25px;
  bottom: inherit !important;
}
.c-page-top a {
  display: block;
  width: 60px;
  height: 60px;
}

.c-table tr th {
  padding: 1rem;
  border-right: 1px solid #FFF;
  background-color: #5b7df9;
  color: #FFF;
  font-size: 18px;
  text-align: center;
}
.c-table tr th:last-child {
  border-right: none;
}
.c-table tr td {
  height: 110px;
  padding: 1rem 1rem 1rem 1rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-color: #FFF;
}
.c-table tr td:last-child {
  border-right: none;
}
.c-table-ico {
  color: #5b7df9;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}
.c-table-note {
  font-weight: normal;
  font-size: 11px;
  line-height: 1.2;
}
.c-table-head {
  font-weight: bold;
  vertical-align: middle;
}
.c-table-note-br {
  margin-top: 2rem;
  font-size: 12px;
  text-align: right;
}
.c-table-tag {
  width: 90px;
  border: 2px solid #ff6d8a;
  color: #ff6d8a;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}
.c-table-windows {
  margin-top: 5rem;
}
.c-table-windows td, .c-table-windows th {
  width: 20%;
}
.c-table-windows td {
  padding: 2rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-weight: 600;
  vertical-align: middle;
}
.c-table-windows__thb {
  border-right: 1px solid #d9d9d9;
}
.c-table-windows__th1 {
  padding: 1rem;
  border-bottom: 1px solid #d9d9d9;
  background-color: #5b7df9;
  color: #FFF;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.c-table-windows__th2 {
  padding: 1rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-color: #98BDEC;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.c-table-windows__th3 {
  padding: 1rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-weight: normal;
}
.c-table-windows-head {
  background-color: #5b7df9;
  color: #FFF;
}
.c-table-windows-head__ico {
  float: left;
}
.c-table-windows-head__text {
  padding-left: 6rem;
  line-height: 1.4;
}

.c-table2 {
  width: 100%;
}
.c-table2 tr th {
  padding: 1rem 2rem;
  border-right: 1px solid #FFF;
  background-color: #5b7df9;
  color: #FFF;
  font-size: 18px;
  text-align: left;
}
.c-table2 tr th:last-child {
  border-right: none;
}
.c-table2 tr td {
  padding: 1rem 2rem;
  border-bottom: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  background-color: #f5f5f5;
  text-align: left;
  vertical-align: middle;
}
.c-table2 tr td:first-child {
  border-left: none;
}

.c-table3 tr th {
  padding: 1.5rem 1rem;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  background-color: #5b7df9;
  color: #FFF;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.c-table3 tr td {
  min-height: 110px;
  padding: 1rem 1rem 1rem 1rem;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background-color: #FFF;
  font-size: 14px;
  vertical-align: middle;
}
.c-table3 tr td:last-child {
  border-right: none;
}
.c-table3 tr td span.font-s {
  font-size: 12px;
}
.c-table3 tr.c-table-th2 th {
  background-color: #4765d4;
}
.c-table3 tbody tr:nth-child(2n+1) td {
  min-height: 110px;
  border-right: 1px solid #FFF;
  background-color: #f4f4f4;
}
.c-table3-ico {
  color: #5b7df9;
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}
.c-table3-head {
  font-weight: bold;
  vertical-align: middle;
}

.c-table4 {
  width: 100%;
  margin: 3rem 0 2rem 0;
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}
.c-table4 tr th {
  width: 25%;
  padding: 3rem 4rem;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background-color: #f5f5f5;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  text-align: left;
  vertical-align: middle;
}
.c-table4 tr td {
  padding: 3rem 4rem;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background-color: #FFF;
  font-size: 14px;
  vertical-align: middle;
}
.c-table4 tr td:last-child {
  border-right: none;
}

.c-text-attention {
  color: #ff6d8a;
  font-weight: bold;
}
.c-text-attention__pink {
  color: #fa2b54;
  font-weight: 900;
}
.c-text-attention2 {
  color: #f92b53;
  font-weight: bold;
  font-size: 130%;
}
.c-text-attention2.p-trade_in {
  font-weight: 700;
  line-height: 1.25;
}
.c-text-attention3 {
  color: #fff15b;
  font-weight: bold;
}
.c-text-attention4 {
  color: #f92b53;
  font-weight: bold;
}
.c-text-attention5,
.c-text em.c-text-attention5 {
  color: #fa2b54;
  font-weight: bold;
  font-size: 130%;
}
.c-text-lead {
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.c-text-lead-s {
  padding: 3rem 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.c-text-note {
  font-size: 70%;
}

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

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

.white {
  color: #fff !important;
}

.c-title-area {
  padding-top: 5rem;
}
.c-title-area h1 {
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.3913043478;
}
.c-title-area--anchor {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding-top: 3rem;
  gap: 1.5rem;
}
.c-title-area--anchor li {
  width: 23%;
  max-width: 260px;
}
.c-title-area--anchor li a {
  display: block;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  min-height: 60px;
  padding-block: 1rem;
  border: 2px solid #ff6d8a;
  border-radius: 10px;
  background-color: #fff;
  color: #ff6d8a;
  font-weight: bold;
  line-height: 1.4;
}
.c-title-area--anchor li a::after {
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  width: 15px;
  height: 17px;
  background: url(../img/ico_arrow__006.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.5s;
}
.c-title-area--anchor li a:hover::after {
  top: 50%;
}
.c-title-area--anchor li a span {
  display: inline-block;
  line-height: 1.4;
  text-align: center;
}
.c-title-area--anchor li a em {
  display: block;
  font-size: 12px;
}
.c-title-area--anchor.w3 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 2rem;
}
.c-title-area--anchor.w3 li {
  width: 350px;
  max-width: 350px;
}
.c-title-area--anchor.w6 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 1%;
}
.c-title-area--anchor.w6 li {
  width: 15.8333333333%;
  max-width: 15.8333333333%;
  margin-bottom: 1%;
}
.c-title-area--anchor.w5 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 1%;
}
.c-title-area--anchor.w5 li {
  width: 19%;
  max-width: 19%;
  margin-bottom: 1%;
}
.c-title-area--anchor.w5 li a {
  font-size: clamp(18px, 1.046vw, 20px);
}
.c-title-area--anchor .small {
  display: inline-block;
  font-size: 12px;
  text-align: center;
}

.c-title-h2-nomal {
  margin-bottom: 4rem;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.4;
}
.c-title-h2-nomal.pink {
  color: #fa2b54;
}
.c-title-h2-nomal-s {
  margin-bottom: 2rem;
  color: #5b7df9;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1.4;
}
.c-title-h2-nomal-s span {
  display: block;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.2;
  text-align: center;
}
.c-title-h2-l {
  margin-bottom: 4rem;
  font-weight: bold;
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.4;
  text-align: center;
}
.c-title-h2-l img {
  display: inline-block;
  margin-top: -10px;
  margin-right: 15px;
  vertical-align: middle;
}
.c-title-h2-bl {
  margin-bottom: 4rem;
  padding: 10px 0;
  border-radius: 20vh;
  background-color: #5b7df9;
  color: #fff;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.4;
  text-align: center;
}
.c-title-h2-bl img {
  display: inline-block;
  margin-top: -45px;
  margin-right: 15px;
  vertical-align: middle;
}
.c-title-h2-wh {
  margin-bottom: 4rem;
  padding: 10px 0;
  border-radius: 40px;
  background-color: #fff;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.4;
  text-align: center;
}
.c-title-h2-wh img {
  display: inline-block;
  margin-top: -45px;
  margin-right: 15px;
  vertical-align: middle;
}

.p-breadcrumb {
  margin: 2rem 0 0;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}
.p-breadcrumb ul li + li::before {
  margin: 0 1rem;
  content: ">";
}
.p-breadcrumb ul a {
  position: relative;
  color: #c4c4c4;
  font-weight: normal;
}
.p-breadcrumb ul a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scale(0, 1);
  transform-origin: left top;
  background: #6e7786;
  content: "";
  transition: transform 0.2s;
}
.p-breadcrumb ul a:focus::after {
  transform: scale(1, 1);
}

.p-byad-sec01 {
  position: relative;
}
.p-byad-sec01 .c-contents-box {
  margin-bottom: -6rem;
}
.p-byad-sec01__ico {
  position: absolute;
  top: -30px;
  left: calc(32% - 200px);
  width: 150px;
  height: 150px;
}
.p-byad-sec01__ico img {
  width: 100%;
}
.p-byad-sec01-box1 {
  position: relative;
  max-width: 960px;
  margin: auto;
  margin-top: 4rem;
  padding: 2rem 15rem 2rem 10rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-byad-sec01-box1-img {
  position: absolute;
  top: -25px;
  right: 15px;
}
.p-byad-sec01-btnbox1 {
  max-width: 1000px;
  margin: 5rem auto 1rem auto;
  text-align: center;
}
.p-byad-sec01-btnbox1 a {
  width: 48%;
}
.p-byad-sec01-btnbox2 {
  margin-top: 2rem;
  text-align: center;
}
.p-byad-sec01-cta {
  margin-top: 5rem;
  padding: 4rem;
  border-radius: 40px;
  background-color: #5d7cfb;
  text-align: center;
}
.p-byad-sec01-cta__ttl1 {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-byad-sec01-cta__ttl2 {
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
}
.p-byad-sec03 {
  position: relative;
  padding: 8rem 0;
  background: url(../img/bg/bg__014.png) no-repeat center bottom;
  background-size: contain;
}
.p-byad-sec03 .c-bg--cly {
  top: -150px;
  right: -50px;
}
.p-byad-sec03 .c-contents-box {
  z-index: 10;
  position: relative;
  margin-bottom: -18rem;
}
.p-byad-sec03 .c-contents-box .c-text-lead-s {
  padding-top: 0;
  padding-bottom: 4rem;
}
.p-byad-sec03 .c-contents-box .c-text-lead-s > p {
  margin-bottom: 1.5em;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-byad-sec03-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-byad-sec03-list__wrap {
  position: relative;
  padding: 2rem;
  border-radius: 15px;
}
.p-byad-sec03-list li {
  width: 31%;
}
.p-byad-sec03-list li:nth-child(1) .p-byad-sec03-list__wrap {
  background-color: #dee5fe;
}
.p-byad-sec03-list li:nth-child(2) .p-byad-sec03-list__wrap {
  background-color: #cfd9fd;
}
.p-byad-sec03-list li:nth-child(3) .p-byad-sec03-list__wrap {
  background-color: #bdcbfd;
}
.p-byad-sec03-list__num {
  position: absolute;
  top: -25px;
  left: calc(50% - 26px);
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background-color: #5d7cfb;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 2.5;
  text-align: center;
}
.p-byad-sec03-list__ttl {
  margin: 2rem 0;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 1.2;
  text-align: center;
}
.p-byad-sec03-list__ttl span {
  font-size: clamp(18px, 1.146vw, 22px);
}
.p-byad-sec03-list__arrow {
  padding: 0.5rem 0;
  text-align: center;
}
.p-byad-sec03-list__arrow img {
  width: 60px;
}
.p-byad-sec03-list__wrap2 {
  min-height: 350px;
  padding: 2rem;
  border-radius: 15px;
  background-color: #fa2b54;
  color: #fff;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-byad-sec03-list__wrap3 {
  min-height: 350px;
  padding: 2rem;
  border-radius: 15px;
  background-color: #f5f5f5;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-byad-sec03-list__img2 {
  margin-bottom: -10rem;
  text-align: center;
}
.p-byad-sec03-teian {
  position: relative;
  margin-top: 10rem;
  margin-bottom: 5rem;
  padding: 2rem;
  border-radius: 50px;
  background-color: #ffc6ce;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: center;
}
.p-byad-sec03-teian::before {
  display: block;
  position: absolute;
  top: -15px;
  left: 15%;
  width: 50px;
  height: 50px;
  background: url(../img/post-high-school/byad/img__008.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-byad-sec04 {
  position: relative;
  padding: 15rem 0 8rem 0;
}
.p-byad-sec04 .c-contents-box-pink:has(.p-byad-sec04__ico) {
  margin-top: 10rem;
}
.p-byad-sec04__ico {
  position: absolute;
  top: -60px;
  left: 2%;
  width: 144px;
  height: 144px;
}
.p-byad-sec04__ico img {
  width: 100%;
}
.p-byad-sec04 .c-bg--cly {
  right: -50px;
  bottom: -150px;
}
.p-byad-sec04 .c-bg--clg {
  top: 40%;
  left: -50px;
}
.p-byad-sec05 {
  position: relative;
  padding: 8rem 0;
}
.p-byad-sec05__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 0;
}
.p-byad-sec05__flex figure {
  width: 25%;
}
.p-byad-sec05__wrap {
  width: 63%;
  margin: auto 0;
}
.p-byad-sec05__wrap p {
  margin-bottom: 1em;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-byad-sec05__img {
  width: 55%;
  margin: auto;
}
.p-byad-sec05__img img {
  width: 100%;
}
.p-byad-sec05-box {
  overflow: hidden;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
}
.p-byad-sec05-box-ttlarea {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 4rem;
  gap: 5%;
  background-color: #d8e0ff;
}
.p-byad-sec05-box-ttlarea__wrap {
  width: 55%;
  margin: auto 0;
  text-align: center;
}
.p-byad-sec05-box-ttlarea__wrap h3 {
  color: #2b249b;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-byad-sec05-box-ttlarea__wrap h3 + p {
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-byad-sec05-box-ttlarea__img {
  width: 30%;
}
.p-byad-sec05-box__wrap {
  padding: 4rem;
}
.p-byad-sec05-box__wrap ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}
.p-byad-sec05-box__wrap ul li {
  width: 20%;
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}
.p-byad-sec05 .c-text-lead-s p {
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-byad-sec05 .c-text-lead-s .font-s {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-byad-sec06 {
  position: relative;
  padding: 8rem 0;
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background-size: 90%;
}
.p-byad-sec06::after {
  display: block;
  position: absolute;
  top: -150px;
  left: 0;
  width: 100vw;
  height: 610px;
  background: url(../img/bg/bg__015.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-byad-sec06-btnbox {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 5rem 0;
  gap: 0;
}
.p-byad-sec06-btnbox a {
  width: 49%;
  margin: 0;
}
.p-byad-sec06-btnbox2 {
  padding: 5rem 0 0 0;
  text-align: center;
}
.p-byad-sec06-box1 {
  position: relative;
  margin-top: 4rem;
  padding: 4rem 15rem 4rem 10rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-byad-sec06-box1-img {
  position: absolute;
  top: -25px;
  right: 15px;
}
.p-byad-sec06-box2 {
  position: relative;
  padding: 4rem 10rem 4rem 20rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-byad-sec06-box2-img {
  position: absolute;
  top: -25px;
  left: 25px;
}
.p-byad-sec07 {
  position: relative;
  position: relative;
  padding: 8rem 0;
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background-size: 90%;
}
.p-byad-sec07::after {
  display: block;
  position: absolute;
  top: -150px;
  left: 0;
  width: 100vw;
  height: 610px;
  background: url(../img/bg/bg__015.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-byad-sec07 .c-contents-box3__ttl {
  font-size: clamp(28px, 2.083vw, 40px);
  text-align: center;
}
.p-byad-sec07 .c-contents-box3__wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.p-byad-sec08 {
  position: relative;
  position: relative;
  position: relative;
  padding: 8rem 0;
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background-size: 90%;
  background-size: 90%;
}
.p-byad-sec08::after {
  display: block;
  position: absolute;
  top: -150px;
  left: 0;
  width: 100vw;
  height: 610px;
  background: url(../img/bg/bg__015.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-byad-sec08::after {
  display: block;
  position: absolute;
  top: -150px;
  left: 0;
  width: 100vw;
  height: 610px;
  background: url(../img/bg/bg__015.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-byad-sec09 {
  position: relative;
  padding: 8rem 0;
}

.c-title-area-chrome {
  padding-top: 8rem;
}

.p-chrome-sec01 {
  position: relative;
  padding-bottom: 8rem;
}
.p-chrome-sec01::after {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 395px;
  background: url(../img/chrome/bg__003.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-chrome-sec01 .c-contents-box {
  position: relative;
  top: -14rem;
  margin-top: 20rem;
}
.p-chrome-sec01-box {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 2rem 0;
  gap: 4%;
}
.p-chrome-sec01-box figure {
  width: 40%;
}
.p-chrome-sec01-box__text {
  width: 40%;
  padding-top: 2rem;
}
.p-chrome-sec01-box__text p {
  margin-bottom: 2em;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-chrome-sec01-box__note {
  margin-bottom: 0 !important;
  padding-left: 1em;
  font-weight: normal !important;
  font-size: 16px !important;
  text-indent: -1em;
}
.p-chrome-sec01__btn {
  text-align: center;
}
.p-chrome-sec02 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: url(../img/chrome/bg__001.png) no-repeat center 0;
  background-size: 100%;
}
.p-chrome-sec02::after {
  position: absolute;
  right: -50px;
  bottom: 350px;
  width: 398px;
  height: 398px;
  background: url(../img/chrome/bg__004.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-chrome-sec02 .p-dx-sec03-listnum {
  padding-top: 120px;
  background: url(../img/chrome/img__006.png) no-repeat center 0;
  background-size: 501px 146px;
}
.p-chrome-sec02 .p-dx-sec03-listnum li {
  width: 25%;
}
.p-chrome-sec02 .p-dx-sec03-listnum::before {
  width: 75%;
}
.p-chrome-sec02 .p-dx-sec03-list li {
  width: 22%;
}
.p-chrome-sec02 .p-dx-sec03-list li figure {
  margin-bottom: 0;
}
.p-chrome-sec02 .p-dx-sec03-list__ttl {
  padding-top: 0;
  padding-bottom: 2rem;
  line-height: 1.4;
}
.p-chrome-sec02-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 8rem 0;
  gap: 0;
}
.p-chrome-sec02-list li {
  width: 40%;
  padding-bottom: 3rem;
  background-color: #dee5fe;
  text-align: center;
}
.p-chrome-sec02-list li figure {
  margin-bottom: 2rem;
}
.p-chrome-sec02-list li p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-chrome-sec02-list li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.p-chrome-sec02-list li:nth-child(2) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #bdcbfd;
}
.p-chrome-sec02-list__ttl {
  height: 83px;
  margin-top: -3rem;
  padding-top: 1rem;
  background: url(../img/chrome/bg__002.png) no-repeat center 0;
  background-size: contain;
  color: #2b249b;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.p-chrome-sec02 .c-title-h2-nomal-s.white {
  color: #fff;
}
.p-chrome-sec02 .c-contents-box {
  margin-bottom: 8rem;
}
.p-chrome-sec02-list2 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-top: 6rem;
  gap: 0;
}
.p-chrome-sec02-list2 li {
  position: relative;
  width: 29%;
  margin: 0 2%;
  padding: 2rem;
  border: 2px solid #2b249b;
  border-radius: 15px;
  background-color: #fff;
}
.p-chrome-sec02-list2 li figure {
  width: 135px;
  margin: auto;
}
.p-chrome-sec02-list2 li p {
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-chrome-sec02-list2__num {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #2b249b;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 2.6;
  text-align: center;
}
.p-chrome-sec02-list2__ttl {
  margin: 1.5rem 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-chrome-sec02-list2-box {
  position: relative;
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 15px;
  background-color: #dee5fe;
  text-align: left;
}
.p-chrome-sec02-list2-box p {
  text-align: left !important;
}
.p-chrome-sec02-list2-box__ttl {
  position: absolute;
  top: -15px;
  width: 80px;
  border: 1px solid #2b249b;
  border-radius: 15px;
  background-color: #fff;
  color: #2b249b;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.p-chrome-sec02-box2 {
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #ff6d8a;
}
.p-chrome-sec02-box2 h3 {
  color: #fff;
  font-size: clamp(25px, 1.875vw, 36px);
  text-align: center;
}
.p-chrome-sec02-box2-wrap {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 20px;
  background-color: #fff;
}
.p-chrome-sec02-box2__ttl1 {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.2;
  text-align: center;
}
.p-chrome-sec02-box2__ttl2 {
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.p-chrome-sec02-box2__list1 {
  margin: 3rem 0;
  text-align: center;
}
.p-chrome-sec02-box2__list1 li {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0 2rem;
  border: 1px solid #ff6d8a;
  border-radius: 25px;
  background-color: #fff694;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-chrome-sec02-box2__list2 {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto 4rem auto;
  gap: 0;
}
.p-chrome-sec02-box2__list2 li {
  width: 30%;
  padding: 3rem;
  border: 2px solid #d8e0ff;
  border-radius: 25px;
}
.p-chrome-sec02-box2__list2__ttl {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 25px;
  line-height: 1.4;
  text-align: center;
}
.p-chrome-sec02-box2-btn {
  text-align: right;
}
.p-chrome-sec02-btn {
  text-align: center;
}
.p-chrome-sec03 {
  position: relative;
  padding: 6rem 0;
}
.p-chrome-sec03::after {
  position: absolute;
  top: -150px;
  left: -50px;
  width: 398px;
  height: 398px;
  background: url(../img/chrome/bg__005.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-chrome-sec03-box {
  margin: 5rem 0;
  padding: 2rem 3rem 3rem;
  border-radius: 20px;
  background-color: #4665d6;
}
.p-chrome-sec03-box h3 {
  color: #fff;
  font-size: clamp(25px, 1.875vw, 36px);
  text-align: center;
}
.p-chrome-sec03-box h3 span {
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-chrome-sec03-box-r {
  position: relative;
  width: 55%;
}
.p-chrome-sec03-box-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 3rem;
  gap: 0;
  border-radius: 20px;
  background-color: #fff;
}
.p-chrome-sec03-box-wrap figure {
  width: 40%;
}
.p-chrome-sec03-btn {
  right: 0;
  bottom: 0;
  margin-top: 2rem;
  text-align: right;
}
.p-chrome-sec03-btn2 {
  text-align: center;
}
.p-chrome-sec04 {
  position: relative;
  padding: 8rem 0;
}
.p-chrome-sec04::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/chrome/bg__006.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-chrome-sec04 figure {
  margin: 4rem 0;
}
.p-chrome-sec04-btn {
  text-align: right;
}
.p-chrome-sec04-btn .c-btn-more a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.p-chrome-sec05 {
  padding: 8rem 0;
  background-size: 95%;
  background-color: #eef3f7;
}
.p-chrome-sec05-box {
  margin-bottom: 10rem;
}
.p-chrome-sec05-box .l-container {
  position: relative;
}
.p-chrome-sec05-box-r {
  width: 55%;
  margin: 0 0 0 auto;
  padding: 0 0 0 0;
}
.p-chrome-sec05-box-l {
  width: 55%;
  padding: 0 0 0 0;
}
.p-chrome-sec05-box__ttl1 {
  color: #ff6d89;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-chrome-sec05-box__ttl2 {
  width: 100px;
  margin-bottom: 1rem;
  border-radius: 15px;
  background-color: #2c2599;
  color: #fff;
  text-align: center;
}
.p-chrome-sec05-box .c-list-check {
  margin-bottom: 3rem;
}
.p-chrome-sec05-box .c-btn-more {
  margin-top: 8rem;
}
.p-chrome-sec05-box-imgl {
  position: absolute;
  left: -15%;
  width: 55%;
}
.p-chrome-sec05-box-imgr {
  position: absolute;
  right: -15%;
  width: 55%;
}

.p-column-list ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5%;
}
.p-column-list ul li {
  width: 30%;
  margin-bottom: 5%;
}
.p-column-list ul li figure {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.p-column-list__ttl {
  padding-top: 1.5rem;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.6;
}
.p-column-list__text {
  padding-top: 1.5rem;
  line-height: 1.8125;
}
.p-column-list__text > p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  /* ブラウザがサポートしていない場合のフェールセーフ */
}
.p-column-top {
  padding-top: 8rem;
}
.p-column-bg {
  background: url(../img/bg/bg__016.png) no-repeat center center;
  background-size: contain;
}
.p-column-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 5rem;
  gap: 0;
}
.p-column-secl {
  width: 68%;
}
.p-column-secr {
  width: 30%;
}
.p-column-detail h1 {
  margin-bottom: 2rem;
  font-size: clamp(30px, 2.5vw, 46px);
  line-height: 1.3913043478;
}
.p-column-detail-main {
  padding-top: 6rem;
}
.p-column-detail-main p {
  margin-bottom: 1em;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.75;
}
.p-column-detail-main .border-box {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border: 1px solid #d7e0ff;
}
.p-column-detail-main a:not(.c-btn--gr) {
  color: #5b7df9;
  text-decoration: underline;
}
.p-column-detail-main a:not(.c-btn--gr):focus {
  text-decoration: none;
}
.p-column-detail-main a:not(.c-btn--gr).blank {
  position: relative;
  color: #5b7df9;
  text-decoration: underline;
}
.p-column-detail-main a:not(.c-btn--gr).blank:focus {
  text-decoration: none;
}
.p-column-detail-main a:not(.c-btn--gr).blank::after {
  display: block;
  position: absolute;
  right: -1.2em;
  bottom: 0.25em;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.1em;
  background: url(../img/ico_out-black.svg) no-repeat center center;
  background-size: contain;
  content: "";
}
.p-column-detail-main a.c-btn--gr {
  margin-top: 1em;
}
.p-column-detail-main img {
  margin-bottom: 2rem;
}
.p-column-detail-main h2 {
  margin-top: 1.25em;
  margin-bottom: 1rem;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.6;
}
.p-column-detail-main h3 {
  position: relative;
  margin-top: 1em;
  margin-bottom: 1rem;
  padding-left: 1.25em;
  font-size: clamp(24px, 1.666vw, 32px);
}
.p-column-detail-main h3::before {
  display: inline-block;
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 0.75em;
  height: 4px;
  border-radius: 2px;
  background-color: #fff694;
  content: "";
  vertical-align: super;
}
.p-column-detail-main ul {
  margin-bottom: 1.5em;
  margin-left: 1.5em;
}
.p-column-detail-main ul li {
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.5;
}
.p-column-detail-img_eyecatch {
  -webkit-border-top-left-radius: 40px;
  -webkit-border-top-right-radius: 40px;
  -moz-border-radius-topleft: 40px;
  -moz-border-radius-topright: 40px;
  overflow: hidden;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}
.p-column-detail-img_rd {
  overflow: hidden;
  border-radius: 20px;
}
.p-column-detail__note {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-column-detail__note::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}
.p-column-toc {
  margin-bottom: 5rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  background-color: #fff;
}
.p-column-toc__ttl {
  position: relative;
  padding: 1rem 3rem;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-column-toc__ttl: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: #ff6d8a;
  content: "";
  transition: all 0.3s;
}
.p-column-toc__ttl: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: #ff6d8a;
  content: "";
  transition: all 0.3s;
}
.p-column-toc__ttl.is-open:after {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.p-column-toc__list {
  padding: 0 3rem 2rem;
}
.p-column-toc__list a {
  font-weight: normal;
  text-decoration: underline;
}
.p-column-bnr1 a {
  display: block;
  position: relative;
  max-width: 600px;
  min-height: 150px;
  margin: auto;
  padding: 3rem;
  border: 2px solid #111;
  border-radius: 20px;
  background: url(../img/column/bg__bnr1.png) no-repeat right 0 #f0f1f6;
  background-size: contain;
}
.p-column-bnr1__ttl {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
}
.p-column-bnr1__ttl span {
  display: block;
  font-size: 18px;
}
.p-column-bnr1__btn {
  margin-top: 1rem;
  margin-left: 20rem;
  font-weight: bold;
  font-size: 14px;
}
.p-column-bnr1__btn::before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -3px 10px 0 0;
  background: url(../img/ico_arrow__010.png) no-repeat right 0 #f0f1f6;
  background-size: contain;
  content: "";
  vertical-align: middle;
}
.p-column-menu {
  border: 3px solid #d7e0ff;
  border-radius: 20px;
  background-color: #ecf0fe;
}
.p-column-menu h2 {
  margin-bottom: 3rem;
  padding: 0.5rem 1rem;
  background-color: #d7e0ff;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-column-menu__link {
  margin: 0 3rem 2rem;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #d7e0ff;
}
.p-column-menu__link a {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  gap: 5%;
}
.p-column-menu__link figure {
  -webkit-border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright: 10px;
  width: 37%;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.p-column-menu__linktext {
  width: 58%;
}
.p-column-menu__linktext p {
  line-height: 1.4;
}
.p-column-menu__btnbox {
  padding: 0 3rem 1rem;
  text-align: right;
}
.p-column-menu__btn {
  display: inline-block;
  position: relative;
  height: 44px;
  padding-left: 60px;
}
.p-column-menu__btn::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
  width: 44px;
  height: 44px;
  background: url(../img/ico_arrow__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-column-menu__btn a {
  display: inline-block;
  position: relative;
  margin-top: 0;
  border-bottom: 1px solid #111;
}
.p-column-menu__btn a:hover {
  opacity: 0.7;
}

.p-contact-form {
  margin-top: 6rem;
}
.p-contact-form .satori__custom_form .satori__input_group:not(:last-of-type) {
  margin-bottom: 2.5rem;
}
.p-contact-form .satori__custom_form .satori__input_group input[type=email],
.p-contact-form .satori__custom_form .satori__input_group input[type=number],
.p-contact-form .satori__custom_form .satori__input_group input[type=password],
.p-contact-form .satori__custom_form .satori__input_group input[type=tel],
.p-contact-form .satori__custom_form .satori__input_group input[type=text],
.p-contact-form .satori__custom_form .satori__input_group input[type=url],
.p-contact-form .satori__custom_form .satori__input_group textarea {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: whitesmoke;
}
.p-contact-form .satori__custom_form .satori__input_group input[type=email]:focus,
.p-contact-form .satori__custom_form .satori__input_group input[type=number]:focus,
.p-contact-form .satori__custom_form .satori__input_group input[type=password]:focus,
.p-contact-form .satori__custom_form .satori__input_group input[type=tel]:focus,
.p-contact-form .satori__custom_form .satori__input_group input[type=text]:focus,
.p-contact-form .satori__custom_form .satori__input_group input[type=url]:focus,
.p-contact-form .satori__custom_form .satori__input_group textarea:focus {
  border-color: #5b7df9;
}
.p-contact-form input[type=checkbox] {
  transform: scale(1.5);
  vertical-align: inherit;
}
.p-contact-form label[for],
.p-contact-form .satori__custom_form .satori__input_group label {
  color: #111 !important;
  font-weight: 700;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-contact-form label[for] .satori__require,
.p-contact-form label[for] .satori__not_require,
.p-contact-form .satori__custom_form .satori__input_group label .satori__require,
.p-contact-form .satori__custom_form .satori__input_group label .satori__not_require {
  padding: 0.5em 0.35em;
  border-radius: 0.5rem;
  color: white;
  font-size: 80%;
  vertical-align: text-bottom;
}
.p-contact-form label[for] .satori__require,
.p-contact-form .satori__custom_form .satori__input_group label .satori__require {
  background-color: #b81c22;
}
.p-contact-form label[for] .satori__not_require,
.p-contact-form .satori__custom_form .satori__input_group label .satori__not_require {
  background-color: #54bccf;
}
.p-contact-form .satori__btn.submit {
  padding: 0.5em 2em !important;
  border-radius: 0.5rem !important;
  background-color: #5b7df9 !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-contact-form .satori__btn.submit:hover {
  background-color: rgb(41.8, 86, 247.2) !important;
}
.p-contact-form .satori__notes {
  border: none !important;
  background-color: transparent !important;
}

.p-cta {
  -webkit-border-top-left-radius: 80px;
  -webkit-border-top-right-radius: 80px;
  -moz-border-radius-topleft: 80px;
  -moz-border-radius-topright: 80px;
  position: relative;
  margin: 0 5rem;
  padding: 10rem 0;
  border-top-right-radius: 80px;
  border-top-left-radius: 80px;
  background-color: #5b7df9;
}
.p-cta h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  text-align: center;
}
.p-cta p {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-cta-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  gap: 2rem;
}
.p-cta-list li {
  width: 450px;
}
.p-cta-list li a {
  display: block;
  position: relative;
  height: 90px;
  padding: 2rem;
  border: 2px solid #111;
  border-radius: 45px;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.2;
  text-align: center;
}
.p-cta-list li a::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 15%;
  width: 20px;
  height: 2px;
  content: "";
}
.p-cta-list li a::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.p-cta-list li a:hover {
  opacity: 1;
}
.p-cta-list li a:hover::after {
  right: 15px;
}
.p-cta-list li a span {
  font-size: 14px;
}
.p-cta-list li:nth-child(1) a {
  padding-top: 3rem;
  background-color: #fff694;
}
.p-cta-list li:nth-child(1) a::before {
  background-color: #fff694;
}
.p-cta-list li:nth-child(2) a {
  background-color: #b9f6b4;
}
.p-cta-list li:nth-child(2) a::before {
  background-color: #b9f6b4;
}

.p-dx-high-school-sec01 {
  position: relative;
  padding-bottom: 0;
}
.p-dx-high-school-sec01 .c-contents-box__flex figure {
  width: 30%;
}
.p-dx-high-school-sec01 .c-contents-box__flex .c-list-red li {
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-dx-high-school-sec01 .c-bg--clg {
  right: -50px;
  bottom: 250px;
}
.p-dx-high-school-sec01 .c-title-h2-nomal-s span {
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-dx-high-school-sec02 {
  position: relative;
  padding-bottom: 10rem;
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background-size: 90%;
}
.p-dx-high-school-sec02 .c-title-h2-nomal-s {
  margin-bottom: 4rem;
}
.p-dx-high-school-sec02 .c-bg--cly {
  top: 250px;
  left: -50px;
}
.p-dx-high-school-sec02-arrow {
  text-align: center;
}
.p-dx-high-school-sec02-arrow img {
  width: 121px;
}
.p-dx-high-school-sec02-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 3rem;
  overflow: hidden;
  gap: 0;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  background-color: #fff;
}
.p-dx-high-school-sec02-box__ttlarea {
  width: 20%;
  background-color: #c5e4f9;
  text-align: center;
}
.p-dx-high-school-sec02-box__ttlarea__wrap {
  display: flex;
  height: 100%;
}
.p-dx-high-school-sec02-box__ttlarea__wrap2 {
  margin: auto;
}
.p-dx-high-school-sec02-box__ttlarea__ttl1 {
  display: inline-block;
  padding: 0 1rem;
  border-radius: 25px;
  background-color: #2b249b;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.p-dx-high-school-sec02-box__ttlarea__ttl2 {
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-dx-high-school-sec02-box__textarea {
  width: 80%;
  padding: 3rem 6rem;
}
.p-dx-high-school-sec02-box__text {
  margin-bottom: 3rem;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-dx-high-school-sec02-box__text em {
  color: #fa2b54;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-dx-high-school-sec02-box2 {
  position: relative;
  max-width: 860px;
  margin: 5rem auto 0 auto;
  padding: 5rem 2rem 5rem 22rem;
  border: 2px solid #fa385f;
  border-radius: 20px;
  background-color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-dx-high-school-sec02-box2-img {
  position: absolute;
  top: -90px;
  left: -80px;
  width: 354px;
}
.p-dx-high-school-sec02-box2-img img {
  width: 100%;
}
.p-dx-high-school-sec03 {
  position: relative;
  padding: 10rem 0;
  background: url(../img/bg/bg__007.png) no-repeat center 0;
  background-size: 100%;
}
.p-dx-high-school-sec03 h2 {
  margin: 0;
}
.p-dx-high-school-sec03-btn {
  margin-top: 3rem;
  margin-bottom: 5rem;
  text-align: center;
}
.p-dx-high-school-sec03 .c-list-bbl__text {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-dx-sec01 {
  padding-bottom: 8rem;
  background: url(../img/ict/dx/bg__001.png) no-repeat center bottom;
  background-size: 95%;
}
.p-dx-sec01 .c-contents-box {
  position: relative;
  top: -10rem;
  margin-top: 20rem;
}
.p-dx-sec01-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 1rem;
}
.p-dx-sec01-list li {
  width: 31%;
}
.p-dx-sec02 {
  padding: 8rem 0;
  background: url(../img/ict/dx/bg__002.png) no-repeat center 0;
  background-size: contain;
  color: #FFF;
}
.p-dx-sec02 h2 {
  color: #FFF;
}
.p-dx-sec02-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-top: 8rem;
  gap: 3%;
}
.p-dx-sec02-list__ttl {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 6em;
  color: #2c2599;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  text-align: center;
}
.p-dx-sec02-list__ttl span {
  display: inline-block;
  margin: auto 0;
}
.p-dx-sec02-list__wrap {
  width: 80%;
  margin: auto;
}
.p-dx-sec02-list__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin: 1rem 0;
  gap: 0;
}
.p-dx-sec02-list__ttl1 {
  border-radius: 15px;
  background-color: #fff694;
  color: #111;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.p-dx-sec02-list__ttl2 {
  width: 60%;
  padding-top: 2px;
  border: 2px solid #60cf68;
  color: #60cf68;
  text-align: center;
}
.p-dx-sec02-list__ttl3 {
  color: #60cf68;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1;
}
.p-dx-sec02-list__ttl3 span {
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-dx-sec02-list__ttl4 {
  width: 60%;
  padding-top: 2px;
  border: 2px solid #ff6d89;
  color: #ff6d89;
  text-align: center;
}
.p-dx-sec02-list__ttl5 {
  color: #ff6d89;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1;
}
.p-dx-sec02-list__ttl5 span {
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-dx-sec02-list__text {
  color: #111;
  line-height: 1.4;
}
.p-dx-sec02-list li {
  width: 30%;
  margin-bottom: 3%;
  padding: 2rem;
  border: 2px solid #2c2599;
  border-radius: 25px;
  background-color: #FFF;
}
.p-dx-sec03 {
  padding: 8rem 0;
  background: url(../img/ict/dx/bg__003.png) no-repeat 0 bottom;
  background-size: 90%;
}
.p-dx-sec03-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-dx-sec03-list > li {
  width: 30%;
  border: 2px solid #d8e0ff;
  border-radius: 25px;
  background-color: #FFF;
}
.p-dx-sec03-list > li figure {
  overflow: hidden;
  border-radius: 25px;
}
.p-dx-sec03-list__ttl {
  padding: 1rem;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-dx-sec03-list .c-list-check {
  padding: 0 2rem 2rem 2rem;
}
.p-dx-sec03-list-num {
  display: none;
}
.p-dx-sec03-listnum {
  position: relative;
  padding: 2rem 0;
}
.p-dx-sec03-listnum::before {
  display: block;
  z-index: 0;
  position: relative;
  bottom: -26px;
  width: 66%;
  height: 1px;
  margin: 0 auto 0 auto;
  background-color: #5b7df9;
  content: "";
}
.p-dx-sec03-listnum ul {
  display: flex;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-dx-sec03-listnum ul li {
  width: 30%;
  text-align: center;
}
.p-dx-sec03-listnum ul li span {
  display: inline-block;
  width: 53px;
  height: 53px;
  border-radius: 27px;
  background-color: #5b7df9;
  color: #FFF;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}
.p-dx-sec04 {
  padding: 8rem 0;
  color: #FFF;
}
.p-dx-sec04-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-top: 8rem;
  gap: 0;
}
.p-dx-sec04-list li {
  width: 31%;
  overflow: hidden;
  border-radius: 25px;
  background-color: #FFF;
}
.p-dx-sec04-list__ttl {
  color: #ff6d89;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-dx-sec04-list__text {
  padding: 0 2rem 2rem;
  color: #111;
}
.p-dx-sec05 {
  position: relative;
  padding: 8rem 0;
}
.p-dx-sec05::after {
  display: block;
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 398px;
  height: 398px;
  background: url(../img/ict/dx/bg__005.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-dx-sec05-box-r {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 0 0 10rem 0;
}
.p-dx-sec05-box-l {
  width: 50%;
  padding: 0 0 10rem 0;
}
.p-dx-sec05-box__ttl1 {
  color: #ff6d89;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-dx-sec05-box__ttl2 {
  width: 100px;
  margin-bottom: 1rem;
  border-radius: 15px;
  background-color: #2c2599;
  color: #FFF;
  text-align: center;
}
.p-dx-sec05-box .c-list-check {
  margin-bottom: 3rem;
}
.p-dx-sec05-box-imgl {
  position: absolute;
  left: -10%;
  width: 55%;
}
.p-dx-sec05-box-imgr {
  position: absolute;
  right: -5%;
  width: 55%;
}
.p-dx-sec06 {
  position: relative;
  padding: 8rem 0;
}
.p-dx-sec06::after {
  display: block;
  position: absolute;
  bottom: -420px;
  left: 0;
  width: 398px;
  height: 398px;
  background: url(../img/ict/dx/bg__006.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-dx-sec06-box {
  margin-top: 5rem;
  padding: 4rem;
  border-radius: 50px;
  background-color: #FFF;
}

.p-encho-sec01 {
  padding-top: 10rem;
}
.p-encho-sec01-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 3rem 0 2rem;
  gap: 1.5rem;
}
.p-encho-sec01-list li {
  width: 15%;
  text-align: center;
}
.p-encho-sec01-list__img {
  margin-bottom: 0.5rem;
}
.p-encho-sec01-list-note {
  font-size: 12px;
  text-align: center;
}
.p-encho-sec02 {
  padding-top: 10rem;
}
.p-encho-sec02-img {
  max-width: 800px;
  margin: 2rem auto;
}
.p-encho-sec02-box {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-top: 6rem;
  gap: 2%;
}
.p-encho-sec02-box__point {
  position: relative;
  width: 46%;
  max-width: 520px;
  border: 2px solid #ff6d8a;
  border-radius: 10px;
}
.p-encho-sec02-box__point__ttl {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 126px;
  border-radius: 16px;
  background-color: #ff6d8a;
  color: #FFF;
  text-align: center;
}
.p-encho-sec02-box__attention {
  position: relative;
  width: 46%;
  max-width: 520px;
  border: 2px solid #959595;
  border-radius: 10px;
}
.p-encho-sec02-box__attention__ttl {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 126px;
  border-radius: 16px;
  background-color: #959595;
  color: #FFF;
  text-align: center;
}
.p-encho-sec02-box ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 2rem;
  gap: 6%;
}
.p-encho-sec02-box ul li {
  list-style: disc;
}
.p-encho-sec03 {
  padding-top: 10rem;
}
.p-encho-sec03-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 5rem;
  gap: 0;
}
.p-encho-sec03-list li {
  position: relative;
  width: 30%;
  margin-bottom: 3%;
  border: 3px solid #d8e0ff;
  border-radius: 20px;
  background-color: #FFF;
}
.p-encho-sec03-list li figure {
  -webkit-border-top-left-radius: 18px;
  -webkit-border-top-right-radius: 18px;
  -moz-border-radius-topleft: 18px;
  -moz-border-radius-topright: 18px;
  overflow: hidden;
  border-top-right-radius: 18px;
  border-top-left-radius: 18px;
}
.p-encho-sec03-list__num {
  position: absolute;
  top: -26px;
  left: -26px;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background-color: #5b7df9;
  color: #FFF;
  font-size: 20px;
  line-height: 2.4;
  text-align: center;
}
.p-encho-sec03-list__ttl {
  margin: 1rem 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  text-align: center;
}
.p-encho-sec03-list__ttl span {
  font-size: 14px;
}
.p-encho-sec03-list__wrap {
  padding: 1rem 2rem 2rem 2rem;
}
.p-encho-sec04 {
  padding-top: 10rem;
}
.p-encho-sec05 {
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.p-encho-sec05-lead {
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-encho-sec05-box {
  margin: 5rem 0;
  padding: 0 5rem 5rem 5rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  text-align: center;
}
.p-encho-sec05-box h3 {
  margin-top: -3rem;
  margin-bottom: 1rem;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.p-encho-sec05-box h3 span {
  padding: 0 3rem;
  background-color: #FFF;
}
.p-encho-sec05-box p {
  text-align: center;
}
.p-encho-sec05-box figure {
  padding-top: 2rem;
}
.p-encho-sec05-box img {
  width: 80%;
}
.p-encho-sec06 {
  position: relative;
  padding-top: 10rem;
  text-align: center;
}
.p-encho-sec06::before {
  display: block;
  position: absolute;
  top: -7rem;
  width: 100%;
  height: 800px;
  background: url(../img/encho/bg__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec06-img1 {
  width: 70%;
  margin: 3rem auto;
}
.p-encho-sec06-img2 {
  width: 95%;
  margin: 3rem auto;
}
.p-encho-sec07 {
  padding-top: 10rem;
}
.p-encho-sec07 .p-encho-sec03-list__wrap {
  padding-top: 0;
}
.p-encho-sec08 {
  padding-top: 10rem;
}
.p-encho-sec08-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-encho-sec08-box__item {
  width: 30%;
  margin: 3rem 0;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background-color: #FFF;
}
.p-encho-sec08-box__ttl {
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.p-encho-sec08-box__imglist {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 6%;
}
.p-encho-sec08-box__imglist li {
  width: 18%;
}
.p-encho-sec08-box__imglist li img {
  width: 100%;
}
.p-encho-sec08-box__check li {
  position: relative;
  padding-left: 25px;
}
.p-encho-sec08-box__check li::before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 18px;
  height: 12px;
  background: url(../img/encho/ico__check__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec08-box__check.check-red li::before {
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
}
.p-encho-sec08-box .c-text-note {
  margin-top: 2rem;
  font-size: 12px;
}
.p-encho-sec08-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-top: 3rem;
  gap: 2%;
}
.p-encho-sec08-list img {
  width: 80px;
}
.p-encho-sec08-list li {
  width: 20%;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.p-encho-sec09 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.p-encho-sec09 table.c-table tr th {
  width: 16.6666666667%;
}
.p-encho-sec09 table.c-table tr th:nth-child(1) {
  width: 50%;
}
.p-encho-sec10 {
  position: relative;
  padding-top: 10rem;
  text-align: center;
}
.p-encho-sec10::before {
  display: block;
  position: absolute;
  top: -7rem;
  width: 100%;
  height: 800px;
  background: url(../img/bg/bg__013.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec10-box {
  margin: 5rem 0;
  padding: 0 5rem 5rem 5rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
  text-align: center;
}
.p-encho-sec10-box h3 {
  margin-top: -3rem;
  margin-bottom: 1rem;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.p-encho-sec10-box h3 span {
  padding: 0 3rem;
  background-color: #FFF;
}
.p-encho-sec10-box-lead {
  font-weight: bold;
  text-align: center;
}
.p-encho-sec10-box-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin: 4rem 2rem 2rem;
  gap: 0;
}
.p-encho-sec10-box-list li {
  position: relative;
  width: 13%;
  padding: 3rem 1rem 2rem 1rem;
  background-color: #f5f5f5;
}
.p-encho-sec10-box-list li p {
  font-size: clamp(12px, 0.729vw, 14px);
  text-align: left;
}
.p-encho-sec10-box-list li::after {
  display: inline-block;
  position: absolute;
  top: calc(50% - 13px);
  right: -25px;
  width: 12px;
  height: 26px;
  background: url(../img/ico_arrow__007.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec10-box-list li:last-child::after {
  content: none;
}
.p-encho-sec10-box-list__num {
  position: absolute;
  top: -23px;
  left: calc(50% - 23px);
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background-color: #ff6d8a;
  color: #FFF;
  line-height: 2.7;
  text-align: center;
}
.p-encho-sec10-box-list__ttl {
  color: #ff6d8a;
  font-weight: bold;
  font-weight: bold;
}
.p-encho-sec11 {
  padding-top: 10rem;
}
.p-encho-sec12 {
  padding-top: 10rem;
}
.p-encho-sec12 .c-table2 {
  margin-top: 3rem;
}
.p-encho-sec13 {
  padding-top: 10rem;
}
.p-encho-sec13 figure {
  max-width: 1000px;
  margin: auto;
  padding-bottom: 4rem;
}
.p-encho-sec13 h3 {
  margin-bottom: 2rem;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-encho-sec13 p {
  margin-bottom: 1em;
  text-align: center;
}
.p-encho-imglist {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 4rem;
  gap: 0;
}
.p-encho-imglist li {
  width: 48%;
}
.p-encho-imglist li figure {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.p-encho-imglist__ttl {
  padding: 1rem 0 0 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}

.p-event-sec01 h2 {
  margin-bottom: 2rem;
  padding-top: 6rem;
  color: #5b7df9;
  font-weight: bold;
  font-size: clamp(28px, 2.083vw, 40px);
  line-height: 1.25;
  text-align: center;
}
.p-event-sec01-lead p {
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-event-sec02 {
  padding: 6rem 0;
}
.p-event-tag {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  margin-bottom: 4rem;
  padding: 10px 3rem;
  gap: 1rem;
  border-radius: 20px;
  background-color: #FFF;
}
.p-event-tag__ttl {
  width: 8rem;
  margin: auto 0;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-event-tag__list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  width: calc(100% - 12rem);
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 4rem;
  gap: 2rem;
  border-left: 2px solid #dddddd;
}
.p-event-tag__list li {
  padding: 0.5rem 2rem;
  border-radius: 25px;
  background-color: #f4f4f4;
}
.p-event-tag.bg-gr {
  background-color: #f4f4f4;
}
.p-event-tag.bg-gr .p-event-tag__list li {
  background-color: #FFF;
}

.p-faq-list {
  margin-bottom: 2rem;
  padding: 2rem 4rem;
  overflow: hidden;
  border: 1px solid #5b7df9;
  border-radius: 40px;
  background-color: #FFF;
}
.p-faq-list.is-open {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.p-faq-list.is-open dt {
  padding-bottom: 2rem;
  border-bottom: 1px dashed #5b7df9;
}
.p-faq-list__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.p-faq-list dt {
  position: relative;
  padding: 0 0 0 0;
  background: #FFF;
  color: #5b7df9;
}
.p-faq-list dt i {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  color: #5b7df9;
  font-style: normal;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 4rem;
  text-align: center;
}
.p-faq-list dt span {
  display: block;
  width: 87%;
  margin: auto 0;
}
.p-faq-list dd {
  padding: 2rem 0 2rem 0;
  background: #fff;
}
.p-faq-list dd i {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  font-style: normal;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 4rem;
  text-align: center;
}
.p-faq-list dd span {
  display: block;
  width: 87%;
  margin: auto 0;
}
.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: #5b7df9;
  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: #5b7df9;
  content: "";
  transition: all 0.3s;
}
.p-faq-list.is-open dt:after {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.p-faq-list a {
  color: #0e1155;
  text-decoration: underline;
}
.p-faq-list a:hover {
  text-decoration: none;
}

.p-faq-sec01 {
  padding: 8rem 0;
}
.p-faq-sec02 {
  padding: 8rem 0;
}
.p-faq-sec02::after {
  display: block;
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 398px;
  height: 398px;
  background: url(../img/reason/bg__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-faq-sec03 {
  padding: 8rem 0;
}
.p-faq-sec04 {
  position: relative;
  padding: 8rem 0 1rem 0;
}
.p-faq-sec04::after {
  display: block;
  position: absolute;
  top: -200px;
  width: 398px;
  height: 398px;
  background: url(../img/reason/bg__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}

.p-footer-nav {
  padding: 10rem 0;
}
.p-footer-nav .l-container {
  padding: 0 5rem;
}
.p-footer-nav__logo {
  margin-bottom: 4rem;
}
.p-footer-nav__logo__img {
  display: block;
  margin-bottom: 1rem;
}
.p-footer-nav__logo__img img {
  width: 246px;
}
.p-footer-nav__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-footer-nav__item {
  width: 26%;
}
.p-footer-nav-list2 {
  width: 65%;
}
.p-footer-nav-list2 > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}
.p-footer-nav-list2 > ul > li {
  width: 25%;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}
.p-footer-nav-list2 > ul > li a {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.p-footer-nav-list2-text {
  color: #cacaca;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-footer-nav-list2-kitting {
  width: 100% !important;
}
.p-footer-nav-list2-kitting ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}
.p-footer-nav-list2-kitting ul li {
  width: 25%;
  margin-bottom: 1rem;
}
.p-footer-nav-list2-list1 {
  margin-bottom: 3rem;
}
.p-footer-nav-list2-list1 li {
  margin-bottom: 1rem;
}
.p-footer-nav-list2__bnr {
  margin-bottom: 1.5rem;
}
.p-footer-nav-list2__bnr a {
  display: block;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: #fff;
  color: #111;
  text-align: center;
}
.p-footer-nav-list2__copyright {
  padding-top: 10rem;
  font-size: 12px;
  text-align: right;
}
.p-footer .ico_out {
  display: inline-block;
  padding-right: 22px;
  background: url(../img/ico_out.png) no-repeat right center;
  background-size: 17px 14px;
}

.p-header {
  visibility: hidden;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-header__inner {
  overflow: hidden;
  border: 1px solid white;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.p-header__inner2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-header__inner3 {
  width: 100%;
  padding: 0 2rem;
  background-color: #5b7df9;
}
.p-header__logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 20.3645833333vw;
  max-width: 430px;
  padding: 0 1rem;
  gap: 0;
}
.p-header__logo a:focus {
  opacity: 0.7;
  transition: 0.3s;
}
.p-header__nav {
  margin-left: auto;
  padding: 1rem;
}
.p-header__nav nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 0;
}
.p-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 0;
}
.p-header__nav ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}
.p-header__nav ul li a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding-right: 25px;
  gap: 0;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px) !important;
}
.p-header__nav ul li a::after {
  position: absolute;
  right: 0;
  width: 6px;
  height: 10px;
  background: url(../img/ico_arrow__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-header__nav ul li a:hover {
  color: #ff6d8a;
}
.p-header__nav ul.p-header__menu-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
.p-header__nav ul.p-header__menu-form li {
  margin-left: 2rem;
}
.p-header__nav2 {
  margin-left: auto;
}
.p-header__nav2 nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 0;
}
.p-header__nav2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 4rem;
}
.p-header__nav2 ul li a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 1.5rem 0;
  gap: 0;
  border-bottom: 3px solid #5b7df9;
  color: #fff;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-header__nav2 ul li a:hover {
  border-bottom: 3px solid #fff;
  opacity: 1;
}
.p-header__toggle:hover .p-header__toggle-menu {
  max-height: 100vh;
  transition: max-height 0.3s ease-in;
}
.p-header__toggle-menu {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #19192b;
  text-align: center;
  transition: max-height 0.3s ease-out;
}
.p-header__toggle-menu ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  height: inherit;
  gap: 0;
}
.p-header__menu:nth-of-type(1) {
  height: 100%;
}
.p-header__toggle-menu {
  display: flex;
  left: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100vw;
  padding: 0 4rem;
  background: #5b7df9;
}
.p-header__toggle-item {
  width: 30%;
  margin: 4rem 0;
  color: #fff;
}
.p-header__toggle-item figure {
  max-height: 5vw;
  margin-bottom: 1rem;
  overflow: hidden;
}
.p-header__toggle-item img {
  transition: 0.3s;
}
.p-header__toggle-item img:hover {
  transform: scale(1.05);
}
.p-header__category {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}
.p-header__toggle-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.p-header__toggle-item ul li {
  width: 48%;
}
.p-header__toggle-item ul li a {
  position: relative;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-header__toggle-item ul li a:hover {
  text-decoration: underline;
}
.p-header__toggle-item ul li a span {
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}
.p-header__toggle-item ul li a span:after {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-color: rgba(255, 255, 255, 0.9);
  content: "";
  vertical-align: middle;
}
.p-header__nav .p-header__toggle-item ul:nth-of-type(1) li + li {
  margin: 0;
}

body#top {
  background: url(../img/top/mv_top_pc.png) no-repeat 0 0;
  background-size: contain;
}
body#top .l-wrapper {
  padding-inline: 0;
}
body#top .l-header {
  left: 50%;
  transform: translateX(-50%);
}

.p-home-mv {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
.p-home-mv h1 {
  margin-top: 6rem;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.40625;
}
.p-home-mv-h1-s {
  display: inline-block;
  color: #ff6d8a;
  font-weight: 900;
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-home-mv-h1-s2 {
  display: inline-block;
  padding: 5px 0 0 10px;
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
  vertical-align: middle;
}
.p-home-mv .l-container {
  position: relative;
  padding: 0 5rem;
}
.p-home-mv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  max-width: 852px;
}
.p-home-mv-img img {
  width: 100%;
}
.p-home-mv__bnr {
  position: absolute;
  top: 2rem;
  right: 0;
  width: 380px;
}
.p-home-mv__bnr a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
  border: 2px solid #111;
  border-radius: 10px;
  background-color: #fff;
}
.p-home-mv__bnr a::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  background-color: #fff;
  content: "";
}
.p-home-mv__bnr a::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
  width: 25px;
  height: 18px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-home-mv__bnr__img {
  width: 100px;
}
.p-home-mv__bnr__wrap {
  font-feature-settings: "palt";
  width: calc(100% - 110px);
  margin: auto 0;
}
.p-home-mv__bnr__ttl1 {
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.1;
}
.p-home-mv__bnr__ttl2 {
  font-size: 12px;
}
.p-home-mv__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 15rem;
  gap: 2rem;
}
.p-home-mv__link li {
  width: 450px;
}
.p-home-mv__link li a {
  display: block;
  position: relative;
  padding: 2rem;
  border: 2px solid #111;
  border-radius: 40px;
  /* font-size: clamp(18px, 1.046vw, 20px); */
  text-align: center;
}
.p-home-mv__link li a::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  content: "";
}
.p-home-mv__link li a::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.p-home-mv__link li a:hover {
  opacity: 1;
}
.p-home-mv__link li a:hover::after {
  right: 15px;
}
.p-home-mv__link li:nth-child(1) a {
  background-color: #fff694;
}
.p-home-mv__link li:nth-child(1) a::before {
  background-color: #fff694;
}
.p-home-mv__link li:nth-child(2) a {
  background-color: #b9f6b4;
}
.p-home-mv__link li:nth-child(2) a::before {
  background-color: #b9f6b4;
}
.p-home-mv__link2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 8rem 0;
  gap: 2rem;
}
.p-home-mv__link2 li {
  width: 535px;
}
.p-home-mv__link2 li a {
  display: block;
  position: relative;
  padding: 2rem 2rem 2rem 8rem;
  border: 2px solid #111;
  border-radius: 60px;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.32;
  text-align: left;
}
.p-home-mv__link2 li a::before {
  display: block;
  position: absolute;
  top: -2px;
  right: 10%;
  width: 20px;
  height: 2px;
  content: "";
}
.p-home-mv__link2 li a::after {
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.p-home-mv__link2 li a:hover {
  opacity: 1;
}
.p-home-mv__link2 li a:hover::after {
  right: 15px;
}
.p-home-mv__link2 li:nth-child(1) a {
  background-color: #9fb2fa;
}
.p-home-mv__link2 li:nth-child(1) a::before {
  background-color: #9fb2fa;
}
.p-home-mv__link2 li:nth-child(2) a {
  background-color: #ffafbf;
}
.p-home-mv__link2 li:nth-child(2) a::before {
  background-color: #ffafbf;
}
.p-home-mv__bnr2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  gap: 2rem;
}
.p-home-mv__bnr2 li {
  width: 31%;
}
.p-home-mv__bnr2 li a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  gap: 1rem;
  border: 2px solid #ff6d8a;
  border-radius: 10px;
}
.p-home-mv__bnr2 li a figure {
  width: 95px;
}
.p-home-mv__bnr2 li a::after {
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 21px;
  height: 15px;
  background: url(../img/ico_arrow__004.png) no-repeat 0 0;
  background-size: contain;
  content: "";
  transition: 0.7s;
}
.p-home-mv__bnr2 li a:hover::after {
  right: 10px;
}
.p-home-mv__bnr2__wrap {
  width: calc(100% - 120px);
  margin: auto 0;
  line-height: 1.2;
}
.p-home-mv__bnr2__ttl1 {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-home-mv__bnr2__ttl2 {
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.146vw, 22px);
}

.p-home-sec01 {
  position: relative;
  width: 100vw;
  margin-left: -5rem;
  padding-top: 8rem;
}
.p-home-sec01::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: #5b7df9;
  content: "";
}
.p-home-sec01-box {
  -webkit-border-top-left-radius: 80px;
  -webkit-border-top-right-radius: 80px;
  -moz-border-radius-topleft: 80px;
  -moz-border-radius-topright: 80px;
  z-index: 1;
  position: relative;
  padding: 4rem;
  border-top-right-radius: 80px;
  border-top-left-radius: 80px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.p-home-sec01-box h3 {
  margin-bottom: 3rem;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.8;
}
.p-home-sec01-box p {
  margin-bottom: 2em;
  line-height: 2;
}
.p-home-sec01-box__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 2%;
}
.p-home-sec01-box__wrap figure {
  width: 18%;
}
.p-home-sec01-box__item {
  width: 72%;
}
.p-home-sec02 {
  padding: 10rem 0;
}
.p-home-sec02 .l-container {
  position: relative;
  padding: 0 5rem;
}
.p-home-sec02-box {
  padding: 0 5rem 5rem 5rem;
  border: 2px solid #ff6d8a;
  border-radius: 20px;
}
.p-home-sec02-box h3 {
  margin-top: -3rem;
  margin-bottom: 1rem;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(24px, 1.562vw, 30px);
  text-align: center;
}
.p-home-sec02-box h3 span {
  padding: 0 3rem;
  background-color: #fff;
}
.p-home-sec02-box p {
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}
.p-home-sec02-box-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin-top: 4rem;
  gap: 2%;
}
.p-home-sec02-box-list li {
  width: 22%;
}
.p-home-sec02-box-list__ttl {
  padding: 1.5rem 0;
  color: #ff6d8a;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-home-sec02-box-list__text {
  padding-top: 1rem;
  clear: both;
  text-align: left;
}
.p-home-sec02 .c-btn-more {
  position: absolute;
  top: 0;
  right: 5rem;
}
.p-home-sec03 {
  width: 100vw;
  margin-left: -5rem;
  padding-bottom: 10rem;
  background: url(../img/top/bg__003.png) no-repeat 0 center;
  background-size: contain;
}
.p-home-sec03-box {
  -webkit-border-top-left-radius: 80px;
  -webkit-border-top-right-radius: 80px;
  -moz-border-radius-topleft: 80px;
  -moz-border-radius-topright: 80px;
  z-index: 1;
  position: relative;
  padding: 4rem;
  border-top-right-radius: 80px;
  border-top-left-radius: 80px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.p-home-sec03-box > p {
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-home-sec03-box-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 6rem 0;
  gap: 8%;
}
.p-home-sec03-box-list li {
  width: 93px;
  text-align: center;
}
.p-home-sec03-box .c-btn-more {
  display: inline-block;
  margin: 0 auto;
}
.p-home-sec04 {
  position: relative;
}
.p-home-sec04-box {
  margin-bottom: 10rem;
}
.p-home-sec04-box figure {
  -webkit-border-top-left-radius: 60px;
  -webkit-border-top-right-radius: 60px;
  -moz-border-radius-topleft: 60px;
  -moz-border-radius-topright: 60px;
  position: absolute;
  left: 2%;
  width: 46%;
  max-width: 800px;
  overflow: hidden;
  border-top-right-radius: 60px;
  border-top-left-radius: 60px;
}
.p-home-sec04-box__wrap {
  position: relative;
  width: 48%;
  min-height: 360px;
  margin: 0 0 0 auto;
}
.p-home-sec04-box__wrap .c-btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-home-sec04-box__wrap h2 {
  margin-bottom: 2rem;
}
.p-home-sec04-box.img-right figure {
  right: 2%;
  left: inherit;
}
.p-home-sec04-box.img-right .p-home-sec04-box__wrap {
  margin: 0 auto 0 0;
}
.p-home-sec04-box.img-right .p-home-sec04-box__wrap .c-btn-more {
  position: absolute;
  right: inherit;
  bottom: 0;
  left: 0;
}
.p-home-imgarea {
  width: 100vw;
  margin-left: -5rem;
  padding-top: 5rem;
  background: url(../img/top/img__008.png) repeat-x center 0;
  background-size: 1803px 110px;
}
.p-home-imgarea figure {
  width: 40%;
  margin: auto;
}
.p-home-sec05 {
  position: relative;
  width: 100vw;
  margin-left: -5rem;
  padding: 10rem 0;
  background-color: #f5f5f5;
}
.p-home-sec05-box {
  min-height: 500px;
}
.p-home-sec05-box h2 {
  margin-bottom: 2rem;
}
.p-home-sec05-box p {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  margin-bottom: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  /* ブラウザがサポートしていない場合のフェールセーフ */
}
.p-home-sec05-slide-box {
  position: absolute;
  top: 10rem;
  right: -5%;
  width: 70%;
  overflow: hidden;
}
.p-home-sec05-slide li {
  margin: 0 25px;
}
.p-home-sec05-slide li figure {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-top-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-topleft: 20px;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.p-home-sec05-slide__ttl {
  padding: 1rem 0;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.6;
}
.p-home-sec06 {
  padding: 10rem 0;
}
.p-home-sec06__item {
  padding-bottom: 3rem;
}
.p-home-sec06-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  margin-top: 5rem;
  gap: 2%;
}
.p-home-sec06-list li {
  width: 48%;
  margin-bottom: 5rem;
}
.p-home-sec06-list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-home-sec06-list li a:hover {
  opacity: 0.5;
}
.p-home-sec06-list li figure {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomleft: 20px;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.p-home-sec06-list__wrap {
  width: calc(100% - 150px);
}
.p-home-sec06-list__tag span {
  display: inline-block;
  margin-right: 1rem;
  padding: 0 1rem;
  border: 1px solid #111;
  border-radius: 15px;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-home-sec06-list__tag .tag_01 {
  background-color: #fff694;
}
.p-home-sec06-list__tag .tag_02 {
  background-color: #dfdfdf;
}
.p-home-sec06-list__tag .tag_03 {
  background-color: #b9f6b4;
}
.p-home-sec06-list__ttl {
  padding-top: 1rem;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.6;
}

#top main {
  background: url(../img/top/bg__002.png) repeat-x center bottom;
  background-size: contain;
}

.p-hybrid-class-sec01 {
  position: relative;
}
.p-hybrid-class-sec01 .c-title-h2-nomal-s {
  margin-bottom: 2em;
}
.p-hybrid-class-sec01 .c-contents-box__ico {
  top: 8px;
  left: 4px;
  width: 10%;
  max-width: 144px;
}
.p-hybrid-class-sec02 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: url(../img/bg/bg__001.png) no-repeat center bottom;
  background-size: 100%;
}
.p-hybrid-class-sec02 .c-bg--cly {
  z-index: 0;
  top: -250px;
  right: -50px;
}
.p-hybrid-class-sec02 .l-container {
  z-index: 4;
  position: relative;
}
.p-hybrid-class-sec02-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-hybrid-class-sec02-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-hybrid-class-sec02-list li:nth-child(1) {
  width: 62.5%;
}
.p-hybrid-class-sec02-list li:nth-child(2) {
  width: 33.5%;
}
.p-hybrid-class-sec02-list li figcaption {
  padding-top: 1rem;
  color: #fa385f;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-hybrid-class-sec03 {
  position: relative;
  padding: 6rem 0;
  background: url(../img/bg/bg__002.png) no-repeat center top;
  background-size: 90%;
}
.p-hybrid-class-sec03-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-hybrid-class-sec03 .c-contents-box2-list__text {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-hybrid-class-sec03 .c-contents-box2__text {
  width: 40%;
  margin-left: 5%;
}
.p-hybrid-class-sec04 {
  background: url(../img/bg/bg__005.png) no-repeat center top;
  background-size: 100%;
}
.p-hybrid-class-sec04-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  padding: 5rem 0;
  gap: 0;
}
.p-hybrid-class-sec04-list li {
  width: 60%;
  text-align: center;
}
.p-hybrid-class-sec04-list li:last-of-type {
  width: 30%;
}
.p-hybrid-class-sec04-list-box {
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 25px;
  background-color: #fff;
  text-align: center;
}
.p-hybrid-class-sec04-list-box iframe {
  aspect-ratio: 16/9;
  width: 100%;
  margin-top: 1.25rem;
  border: 1px solid #ddd;
  border-radius: 25px;
}
.p-hybrid-class-sec04-list__ttl {
  color: #f92b53;
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}

.p-ict-sec01 {
  position: relative;
}
.p-ict-sec02 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: url(../img/bg/bg__001.png) no-repeat center bottom;
  background-size: 100%;
}
.p-ict-sec02 .c-bg--cly {
  top: -250px;
  right: -50px;
}
.p-ict-sec02-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-ict-sec02 .c-list-bbl .c-list-bbl__text {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ict-sec02 .c-text-lead-s {
  font-size: clamp(24px, 1.666vw, 32px);
}
.p-ict-sec03 {
  position: relative;
  padding: 6rem 0;
  background: url(../img/bg/bg__002.png) no-repeat center top;
  background-size: 90%;
}
.p-ict-sec03-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-ict-sec03 .c-list-bbl2 .c-list-bbl2__text {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ict-sec03 .c-text-lead-s {
  font-size: clamp(24px, 1.666vw, 32px);
}

.p-ipad-sec01 {
  padding: 0 0 0 0;
  background: url(../img/bg/bg__006.png) no-repeat center bottom 15px;
  background-size: 90%;
}
.p-ipad-sec02 {
  padding: 10rem 0 6rem 0;
  background: url(../img/bg/bg__010.png) no-repeat center 0;
  background-size: 100%;
}
.p-ipad-sec02 .c-contents-box4-list li {
  padding: 0 3rem 4rem;
}
.p-ipad-sec02 .c-contents-box4-list__img {
  display: flex;
  height: 110px;
}
.p-ipad-sec02 .c-contents-box4-list__img img {
  display: inline-block;
  margin: auto;
}
.p-ipad-sec03 {
  position: relative;
  padding: 8rem 0 8rem 0;
}
.p-ipad-sec03 .p-dx-sec03-listnum {
  margin-top: 4rem;
  padding-top: 119px;
  background: url(../img/ipad/img__061.png) no-repeat center 0;
  background-size: 501px 146px;
}
.p-ipad-sec03 .p-dx-sec03-list__wrap {
  padding: 0 2rem 2rem;
}
.p-ipad-sec03 .c-bg--cly {
  top: -100px;
  left: -50px;
}
.p-ipad-sec03::after {
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 393px;
  background: url(../img/bg/bg__012.png) no-repeat center 0;
  background-size: contain;
  content: "";
}
.p-ipad-sec04 {
  padding: 8rem 0;
  background: url(../img/bg/bg__011.png) no-repeat center center;
  background-size: contain;
}
.p-ipad-sec04 .c-contents-box-bl__flex {
  padding-top: 2rem;
}
.p-ipad-sec04 .c-contents-box-bl-r {
  margin: auto 0;
}
.p-ipad-sec04-btn {
  text-align: center;
}
.p-ipad-sec04-btn p {
  margin-bottom: 1rem;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-ipad-sec04-box {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding-top: 5rem;
  gap: 0;
}
.p-ipad-sec04-box__item {
  width: 48%;
}
.p-ipad-sec05 {
  padding: 10rem 0;
  background: url(../img/bg/bg__013.png) no-repeat center center;
  background-size: contain;
}
.p-ipad-sec05 .c-contents-box {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.p-ipad-sec05 .c-contents-box figure {
  width: 50%;
  margin: 5rem auto 0 auto;
}
.p-ipad-sec05__img {
  margin: 1rem 0 4rem 0;
}
.p-ipad-sec06 {
  padding: 10rem 0;
}
.p-ipad-sec06 .c-contents-box-bl2 h3 {
  margin-bottom: 1rem;
}
.p-ipad-sec06 h4 {
  font-weight: 500;
  font-size: 18px;
}
.p-ipad-sec06 h4 + p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ipad-sec06__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding-top: 1rem;
  gap: 0;
}
.p-ipad-sec06__flex h4 {
  color: #2b249b;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.p-ipad-sec06__flex p {
  margin-bottom: 2rem;
  text-align: center;
}
.p-ipad-sec06__item1 {
  width: 40%;
  padding: 2rem;
  border-radius: 15px;
  background-color: #fff;
}
.p-ipad-sec06__item2 {
  width: 58%;
  padding: 2rem;
  border-radius: 15px;
  background-color: #fff;
}
.p-ipad-sec06 .c-table4 tr td {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-ipad-sec07 {
  padding: 10rem 0;
  background: url(../img/bg/bg__013.png) no-repeat center center;
  background-size: contain;
}
.p-ipad-sec07 .c-contents-box {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.p-ipad-sec07 .c-contents-box figure {
  width: 50%;
  margin: 5rem auto 0 auto;
}
.p-ipad-sec07__img {
  margin: 1rem 0 4rem 0;
}
.p-ipad-sec07-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding-top: 3rem;
  gap: 0;
}
.p-ipad-sec07-list li {
  width: 12.5%;
}
.p-ipad-sec07-list li figcaption {
  padding-top: 2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.p-ipad-sec07__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 3%;
}
.p-ipad-sec07__item1 {
  width: 24%;
}
.p-ipad-sec07__item2 {
  width: 30%;
}
.p-ipad-sec07__text {
  padding-top: 3rem;
  color: #fff;
  font-weight: bold;
  text-align: right;
}
.p-ipad-sec07__btn {
  padding-top: 3rem;
  text-align: right;
}
.p-ipad-sec07__btn a {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-weight: bold;
}
.p-ipad-sec08 {
  padding: 8rem 0;
}
.p-ipad-sec08-box {
  margin-bottom: 3rem;
  padding: 5px;
  overflow: hidden;
  border: 3px solid #5b7df9;
  border-radius: 25px;
  background-color: #dee5fe;
}
.p-ipad-sec08-box__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 5rem;
  overflow: hidden;
  gap: 4%;
  border-radius: 21px;
  background-color: #fff;
}
.p-ipad-sec08-box__inner figure {
  width: 50%;
}
.p-ipad-sec08-box-r {
  width: 40%;
  margin: auto;
}
.p-ipad-sec08-box-r .c-contents-box-bluearea__ttl2 + p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ipad-sec08 .p-dx-sec05-box {
  margin-top: 4rem;
}
.p-ipad-sec08 .p-dx-sec05-box__ttl1 {
  color: #2b249b;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-ipad-sec08 .p-dx-sec05-box__ttl1 + p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ipad-sec08 .p-dx-sec05-box-r .c-btn-more {
  margin-top: 3rem;
}
.p-ipad-sec08 .p-dx-sec05-box-r p {
  margin: 0 0 1em 0;
}
.p-ipad-sec09 {
  padding: 8rem 0;
}
.p-ipad-sec09-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-ipad-sec09-list li {
  width: 32%;
  padding: 2rem 1rem;
  border-radius: 15px;
  background-color: #dee5fe;
  text-align: center;
}
.p-ipad-sec09-list li p {
  padding: 2rem;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: left;
}
.p-ipad-sec09-list li:nth-of-type(3) .p-ipad-sec09-list__ttl3 {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-ipad-sec09-list__ttl {
  margin-bottom: 1rem;
  color: #2b249b;
  font-weight: 500;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-ipad-sec09-list__ttl2 {
  margin-bottom: 1rem;
  color: #2b249b;
  font-weight: 500;
  font-size: clamp(18px, 1.146vw, 22px);
}
.p-ipad-sec09-list__ttl3 {
  display: inline-block;
  padding: 0.2rem 2rem;
  border-radius: 15px;
  background-color: #2b249b;
  color: #fff;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.4;
}
.p-ipad-sec09-list__img {
  padding-bottom: 1rem;
}
.p-ipad-sec09-list__arrow {
  padding-bottom: 1rem;
}
.p-ipad-sec10 {
  padding: 8rem 0;
}
.p-ipad-sec10-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-ipad-sec10-list li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1rem;
  text-align: center;
}
.p-ipad-sec10-list li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  width: 33%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #ffedf0;
}
.p-ipad-sec10-list li:nth-child(2) {
  width: 33%;
  background-color: #ffe2e8;
}
.p-ipad-sec10-list li:nth-child(3) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  width: 34%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ffd2db;
}
.p-ipad-sec10-list li p {
  padding: 0 2rem 2rem;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}
.p-ipad-sec10-list li .c-btn-more {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-ipad-sec10-list__ttl {
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-ipad-sec10-list__ttl2 {
  margin-bottom: 1rem;
  color: #fa2b54;
  font-weight: 500;
  font-size: clamp(18px, 1.146vw, 22px);
}
.p-ipad-sec10-list__img {
  padding-bottom: 1rem;
}
.p-ipad-sec10-list__arrow {
  padding-bottom: 1rem;
}
.p-ipad-sec10 .c-contents-box {
  padding-inline: 0;
}
.p-ipad-sec11 {
  padding: 8rem 0 0;
}
.p-ipad-sec11 .p-dx-sec05-box {
  margin-bottom: 5rem;
}
.p-ipad-sec11 .p-dx-sec05-box p {
  padding: 1rem 0 2rem 0;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-ipad-sec11 .p-dx-sec05-box-l {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  width: 55%;
  min-height: 300px;
  margin-left: -7%;
  padding-bottom: 0;
}
.p-ipad-sec11 .p-dx-sec05-box-r {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
  padding-bottom: 0;
}
.p-ipad-sec11 .p-dx-sec05-box__ttl1 span {
  font-size: 70%;
}

.p-os-sec01-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8%;
}
.p-os-sec01-list li {
  width: 100px;
}
.p-os-sec01-list__text {
  font-size: 16px;
  text-align: center;
}
.p-os-sec01-list__img {
  width: 100%;
}
.p-os-sec02 {
  position: relative;
  padding-bottom: 6rem;
}
.p-os-sec02 .c-bg--cly {
  top: -250px;
  right: -50px;
}
.p-os-sec02-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-os-sec03 {
  padding: 10rem 0;
}
.p-os-sec03-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-os-sec04 {
  position: relative;
  padding: 10rem 0;
}
.p-os-sec04::after {
  z-index: 1;
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/chrome/bg__003.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-os-sec04 .l-container {
  z-index: 2 !important;
  position: relative;
}
.p-os-sec05 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: url(../img/chrome/bg__001.png) no-repeat center 0;
  background-size: 100%;
}
.p-os-sec05-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  gap: 3%;
}
.p-os-sec05-list li {
  width: 160px;
}
.p-os-sec05-list__ttl {
  display: flex;
  width: 100%;
  height: 55px;
  margin-top: 1.5rem;
  border: 1px solid #2b249b;
  border-radius: 30px;
  color: #2b249b;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2;
  text-align: center;
}
.p-os-sec05-list__ttl span {
  display: inline-block;
  margin: auto;
}
.p-os-sec05-list__img {
  width: 100%;
  text-align: center;
}
.p-os-sec05-note {
  margin-bottom: 5rem;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}

.p-os-device {
  position: relative;
  padding: 6rem 0;
}
.p-os-device::after {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 398px;
  background-size: contain;
  content: "";
}
.p-os-device .c-contents-box {
  margin-bottom: 8rem;
}
.p-os-device-box {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  padding: 2rem 0;
  gap: 4%;
}
.p-os-device-box figure {
  width: 40%;
}
.p-os-device-box__text {
  width: 40%;
  padding-top: 2rem;
}
.p-os-device-box__text p {
  margin-bottom: 2em;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-os-device-box .c-title-h3-nomal {
  margin-bottom: 0.5em;
  color: #5b7df9;
  font-size: clamp(28px, 2.083vw, 40px);
  text-align: center;
}
.p-os-device-box .c-text-lead {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.6;
}
.p-os-device-btn {
  text-align: center;
}
.p-os-device .c-table-box:not(:nth-of-type(1)) {
  margin-top: 10rem;
}
.p-os-device .c-table-box.scrollX {
  width: 100%;
  overflow-x: scroll;
  overflow-y: none;
}
.p-os-device .c-table-box.scrollX .c-table-os {
  width: -moz-max-content;
  width: max-content;
}
.p-os-device .c-table-box__note {
  display: block;
  margin-top: 1em;
  font-weight: 400;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.5;
  text-align: left;
}
.p-os-device .c-table-os {
  margin-top: 5rem;
  margin-inline: auto;
}
.p-os-device .c-table-os td,
.p-os-device .c-table-os th {
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.p-os-device .c-table-os td {
  padding: 0.75em 1.5em;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-size: clamp(16px, 0.9375vw, 18px);
  vertical-align: middle;
}
.p-os-device .c-table-os-text {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-os-device .c-table-os-content td:nth-of-type(even) {
  background-color: #f5f5f5;
}
.p-os-device .c-table-os__thb {
  border-right: 1px solid #d9d9d9;
}
.p-os-device .c-table-os__th1 {
  padding: 0.5em 1.5em;
  border-bottom: 1px solid #d9d9d9;
  background-color: #5b7df9;
  color: #fff;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-os-device .c-table-os__th1:not(:nth-of-type(1)) {
  border-left: 1px solid #d9d9d9;
}
.p-os-device .c-table-os__th1.dark {
  background-color: #4665d6;
}
.p-os-device .c-table-os__th2 {
  padding: 1rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background-color: #98bdec;
  font-weight: bold;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.p-os-device .c-table-os__th3 {
  padding: 1rem;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-weight: normal;
}
.p-os-device .c-table-os-head {
  background-color: #5b7df9;
  color: #fff;
}
.p-os-device .c-table-os-head__text {
  font-weight: 500;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-os-device .c-table-os__icon {
  position: relative;
  padding: 2rem;
  text-align: center;
}
.p-os-device .c-table-os__icon.new {
  background-color: #fffddf;
}
.p-os-device .c-table-os__icon .new-icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 6rem;
  height: 6rem;
}
.p-os-device .c-table-os__icon .new-icon img {
  width: 100%;
  height: 100%;
}

.p-page-nav {
  visibility: hidden;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-page-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 2rem;
}
.p-page-nav ul li a {
  position: relative;
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-page-nav li {
  width: 28%;
  text-align: center;
}
.p-page-nav li a {
  display: block;
  padding: 20px 10px;
  border: 2px solid #ccc;
  border-radius: 100px;
  box-shadow: 0rem 0.5rem 2rem rgba(1, 120, 228, 0.2);
  transition: 0.2s;
}
.p-page-nav ul li:nth-of-type(1) a {
  border-color: #34a5b6;
  color: #34a5b6;
}
.p-page-nav ul li:nth-of-type(2) a {
  border-color: #0566d4;
  color: #0566d4;
}
.p-page-nav ul li:nth-of-type(3) a {
  border-color: #e1b004;
  color: #e1b004;
}
.p-page-nav ul li:nth-of-type(1) a:hover {
  background: #34a5b6;
  color: #fff;
}
.p-page-nav ul li:nth-of-type(2) a:hover {
  background: #0566d4;
  color: #fff;
}
.p-page-nav ul li:nth-of-type(3) a:hover {
  background: #e1b004;
  color: #fff;
}
.p-page-nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: transparent transparent transparent transparent;
  content: "";
  transition: 0.5s;
}
.p-page-nav ul li a:hover:after {
  bottom: -12px;
}
.p-page-nav ul li:nth-of-type(1) a:hover:after {
  border-color: #34a5b6 transparent transparent transparent;
}
.p-page-nav ul li:nth-of-type(2) a:hover:after {
  border-color: #0566d4 transparent transparent transparent;
}
.p-page-nav ul li:nth-of-type(3) a:hover:after {
  border-color: #e1b004 transparent transparent transparent;
}

.p-policy {
  padding: 6rem 0 3rem;
}
.p-policy p,
.p-policy ul {
  margin-bottom: 2rem;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-policy a {
  color: #0e1155;
  font-weight: 700;
  word-break: break-word;
}

.p-post-high-school-sec01 {
  background: url(../img/bg/bg__006.png) no-repeat center bottom;
  background-size: 90%;
}
.p-post-high-school-sec01 .c-contents-box__flex figure {
  width: 30%;
}
.p-post-high-school-sec01 .c-text-lead {
  font-size: clamp(24px, 1.666vw, 32px);
}
.p-post-high-school-sec02 {
  position: relative;
  padding: 10rem 0;
  padding-bottom: 6rem;
  background: url(../img/bg/bg__007.png) no-repeat center 0;
  background-size: 100%;
}
.p-post-high-school-sec02::after {
  z-index: 1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 500px;
  background: url(../img/bg/bg__008.png) no-repeat center 0;
  background-size: 100%;
  content: "";
}
.p-post-high-school-sec02-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-post-high-school-sec02 .l-container {
  z-index: 2;
  position: relative;
}
.p-post-high-school-sec02 .c-text-lead-s {
  padding: 0;
}
.p-post-high-school-sec02 .c-contents-box3__wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.p-post-high-school-sec03 {
  padding: 0rem 0 10rem 0;
  background: url(../img/bg/bg__009.png) no-repeat center 0;
  background-size: 90%;
}
.p-post-high-school-sec03 h2 {
  margin: 0;
}
.p-post-high-school-sec03-btn {
  margin-top: 3rem;
  text-align: center;
}
.p-post-high-school-sec03 .c-text-lead-s {
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-post-high-school-sec04 {
  position: relative;
  padding: 0 0 10rem 0;
}
.p-post-high-school-sec04 .c-bg--cly {
  top: 250px;
  right: -50px;
}
.p-post-high-school-sec04 .c-contents-box.top-14 {
  margin-top: 7rem;
}
.p-post-high-school-sec04 .l-container {
  z-index: 2 !important;
  position: relative;
}
.p-post-high-school-sec04-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  padding-top: 4rem;
  gap: 0;
}
.p-post-high-school-sec04-list li {
  margin-bottom: 4%;
  padding: 2rem 3rem;
  border-radius: 15px;
  background-color: #fff;
}
.p-post-high-school-sec04-list li:nth-child(1), .p-post-high-school-sec04-list li:nth-child(2) {
  width: 48%;
}
.p-post-high-school-sec04-list li:nth-child(3), .p-post-high-school-sec04-list li:nth-child(4), .p-post-high-school-sec04-list li:nth-child(5) {
  width: 31%;
}
.p-post-high-school-sec04-list__ttl {
  margin-bottom: 2rem;
  color: #fb2953;
  font-weight: bold;
  font-size: clamp(18px, 1.354vw, 26px);
  text-align: center;
}
.p-post-high-school-sec04-btn {
  margin-top: 4rem;
  text-align: center;
}
.p-reason-sec01 {
  position: relative;
  padding-top: 8rem;
}
.p-reason-sec01 h2 {
  border-radius: 50px;
}
.p-reason-sec01 h2 img {
  margin-top: -8px;
  margin-bottom: -8px;
}
.p-reason-sec01 .c-contents-box {
  margin-bottom: 10rem;
}
.p-reason-sec01 .c-contents-box figure {
  padding: 4rem 0;
  text-align: center;
}
.p-reason-sec01 .c-contents-box img {
  width: 80%;
}
.p-reason-sec01::after {
  display: block;
  position: absolute;
  right: -50px;
  bottom: -150px;
  width: 398px;
  height: 398px;
  background: url(../img/reason/bg__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-reason-sec02 {
  padding: 8rem 0;
}
.p-reason-sec03 {
  position: relative;
  left: 0;
  padding: 8rem 0;
}
.p-reason-sec03::after {
  display: block;
  position: absolute;
  bottom: -50px;
  width: 398px;
  height: 398px;
  background: url(../img/reason/bg__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-reason-sec04 {
  padding: 8rem 0;
  background: url(../img/ict/dx/bg__003.png) no-repeat 0 bottom;
  background-size: 90%;
}
.p-reason-sec04-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin: 6rem 0;
  gap: 0;
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  background-color: #fff;
}
.p-reason-sec04-box figure {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  width: 25%;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #c4e2e2;
}
.p-reason-sec04-box-r {
  position: relative;
  width: 75%;
  padding: 4rem 6rem;
  text-align: center;
}
.p-reason-sec04-box-r h3 {
  margin-bottom: 2rem;
  font-size: 16px;
  text-align: center;
}
.p-reason-sec04-box-r p {
  margin-bottom: 2rem;
  text-align: center;
}
.p-reason-sec04-box-r figure {
  width: 100%;
  margin: 0 auto 2rem auto;
  background: none;
}
.p-reason-sec04-box__ttl {
  display: inline-block;
  padding: 0 2rem;
  border-radius: 25px;
  background-color: #ff6d8a;
  color: #fff;
  font-weight: bold;
}
.p-reason-sec04-box-ico {
  position: absolute;
  top: -45px;
  right: 65px;
  width: 93px;
}
.p-reason-sec04-box-ico img {
  width: 100%;
}
.p-reason-sec04-box2 {
  width: 100%;
  max-width: 1000px;
  margin: auto auto 5rem auto;
  padding: 2rem 3rem 3rem;
  border-radius: 25px;
  background-color: #5b7df9;
}
.p-reason-sec04-box2 h3 {
  color: #fff;
  font-weight: bold;
  font-size: clamp(24px, 1.77vw, 34px);
  text-align: center;
}
.p-reason-sec04-box2 figure {
  margin: 2rem 0;
}
.p-reason-sec04-box2__wrap {
  padding: 3rem 4rem;
  border-radius: 25px;
  background-color: #fff;
  text-align: center;
}
.p-reason-sec04-box2__wrap p {
  font-weight: bold;
  text-align: center;
}
.p-reason-sec04-box3 {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 10rem auto 0 auto;
  padding: 6rem 0 4rem 0;
  border-radius: 20px;
  background-color: #5172ea;
  color: #fff;
}
.p-reason-sec04-box3-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 15%;
}
.p-reason-sec04-box3-list__ttl {
  margin-top: 1rem;
  font-weight: bold;
  line-height: 1.4;
}
.p-reason-sec04-box3-list li {
  width: 122px;
  text-align: center;
}
.p-reason-sec04-box3__ttl {
  position: absolute;
  top: -4rem;
  width: 100%;
  height: 87px;
  background: url(../img/reason/bg__004.png) no-repeat center 0;
  background-size: contain;
  color: #2b249b;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 2.2;
  text-align: center;
}
.p-reason-sec04__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
.p-reason-sec04__flex .c-btn-more {
  margin: auto 0;
}
.p-reason-sec05 {
  padding: 8rem 0;
  padding: 8rem 0;
  background: url(../img/reason/bg__003.png) no-repeat right 1rem;
  background-size: 90%;
}
.p-reason-sec05-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 4rem;
  overflow: hidden;
  gap: 0;
  border: 2px solid #d8e0ff;
  border-radius: 25px;
}
.p-reason-sec05-box-img {
  width: 30%;
}
.p-reason-sec05-box-r {
  width: 65%;
  margin: auto 0;
}
.p-reason-sec06 {
  padding-top: 8rem;
}
.p-reason-sec06 .p-dx-sec06-box {
  text-align: center;
}
.p-reason-sec06 .p-dx-sec06-box img {
  width: 90%;
}
.p-reason-sec06-box {
  position: relative;
  max-width: 860px;
  margin: 5rem auto 0 auto;
  padding: 2rem 2rem 2rem 10rem;
  border: 2px solid #fa385f;
  border-radius: 20px;
}
.p-reason-sec06-box-img {
  position: absolute;
  top: -4rem;
  left: 4rem;
  width: 180px;
}
.p-reason-sec06-box-img img {
  width: 100%;
}
.p-trade_in__sec--01::after {
  z-index: 1;
  position: absolute;
  bottom: -40rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/chrome/bg__003.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-trade_in__sec--03 .c-bg--cly {
  position: absolute;
  top: 50%;
  width: 398px;
  height: 398px;
  border-radius: 50%;
  background: #b9f6b4;
  background-size: contain;
}
.p-trade_in__sec--03 .c-bg--clg {
  position: absolute;
  width: 398px;
  height: 398px;
  border-radius: 50%;
  background: #fff694;
  background-size: contain;
}
.p-trade_in__sec--contents .c-title-h2-wh {
  font-size: clamp(30px, 2.5vw, 46px);
}
.p-trade_in__sec--contents .c-title-h2-nomal-s {
  margin-bottom: 1rem;
  font-size: clamp(25px, 1.875vw, 36px);
}
.p-trade_in__sec--contents .c-text-attention2 {
  margin: 2rem 0;
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-trade_in__sec--contents .c-text-lead p {
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-trade_in__sec--contents .c-contents-box3 {
  margin-top: 0;
}
.p-trade_in__sec--contents .c-contents-box4-list__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 37.2rem;
  width: 100%;
  min-height: 8.3rem;
  margin: -3rem auto 0 auto;
  padding-block: 0.6em 1.5em;
  background: url(../img/trade_in/bg__01.png) no-repeat center center;
  background-size: contain;
  color: #2b249b;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.p-trade_in__sec--contents .c-contents-box4-list3 li:nth-child(1) {
  background-color: #dee5fe;
}
.p-trade_in__sec--contents .c-contents-box4-list3 li:nth-child(2) {
  background-color: #bdcbfd;
}
.p-trade_in__sec--contents .c-contents-box4-list___text {
  font-weight: 400;
  text-align: center;
}
.p-trade_in__sec--contents .c-contents-box__inner {
  margin-top: 7rem;
}
.p-trade_in__sec--contents .c-contents-box__flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
}
.p-trade_in__sec--contents .c-contents-box__flex.align-center {
  flex-wrap: nowrap;
  justify-content: center;
}
.p-trade_in__sec--contents .c-contents-box__flex.align-center.mw80 {
  max-width: 80%;
  margin: 0 auto;
}
.p-trade_in__sec--contents .c-contents-box__flex-item figure {
  width: 100%;
  text-align: center;
}
.p-trade_in__sec--contents .c-contents-box__flex-item p {
  width: 90%;
  margin: 2rem auto 0 auto;
}
.p-trade_in__sec--contents .c-contents-box__flex-item.bg-white {
  width: calc(50% - 4rem);
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
}
.p-trade_in__sec--contents .c-contents-box__flex-item.bg-white iframe {
  aspect-ratio: 16/9;
  width: 80%;
  height: auto;
  margin: 1rem auto 2rem auto;
  border-radius: 20px;
}
.p-trade_in__sec--contents .c-contents-box__flex-item.bg-white .c-text-attention2 {
  margin: 1rem 0 0 0;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-trade_in__sec--contents .c-contents-box__flex.pt-60 {
  padding-top: 4rem;
}
.p-trade_in__sec--contents .c-contents-box__flex.pb-60 {
  padding-bottom: 6rem;
}
.p-trade_in__sec--contents .c-contents-box__flex.pt-80 {
  padding-top: 8rem;
}
.p-trade_in__sec--contents .c-contents-box__flex.w100 figure {
  width: 100%;
  text-align: center;
}
.p-trade_in__sec--contents .c-contents-box__flex.w70 figure {
  width: 70%;
  text-align: center;
}
.p-trade_in__sec--contents .c-text-lead.align-left {
  text-align: left;
}
.p-trade_in__sec--contents .helper-mt-40 {
  margin-top: 4rem;
}
.p-trade_in__sec--contents .helper-mt-mainas-40 {
  margin-top: -4rem;
  padding-top: 6rem;
}
.p-trade_in__sec--contents .p-post-trade_in-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.p-trade_in__sec--contents .p-post-trade_in-list li {
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
}
.p-trade_in__sec--contents .p-post-trade_in-list li.js-area-link {
  transition: all 0.3s ease;
}
.p-trade_in__sec--contents .p-post-trade_in-list li.js-area-link:hover {
  scale: 1.03;
}
.p-trade_in__sec--contents .p-post-trade_in-list li.js-area-link:hover span figure {
  transform: translateY(5px);
}
.p-trade_in__sec--contents .p-post-trade_in-list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem 3rem 1rem;
}
.p-trade_in__sec--contents .p-post-trade_in-list li span figure {
  width: 100%;
  margin-top: 3rem;
  transition: all 0.3s ease;
}
.p-trade_in__sec--contents .p-post-trade_in-list__ttl {
  margin-top: 1rem;
  color: #5172ea;
  font-weight: bold;
  font-size: clamp(24px, 1.666vw, 32px);
}
.p-trade_in__sec--contents .p-post-trade_in-list__text {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-trade_in__sec--contents .p-post-trade_in-list__icon {
  width: 80%;
  margin: 1rem auto 0 auto;
}

.p-windows-sec01 {
  position: relative;
  padding-bottom: 8rem;
}
.p-windows-sec01 .c-contents-box {
  position: relative;
  top: -14rem;
  margin-top: 20rem;
}
.p-windows-sec01-list {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  margin: 4rem 0;
  gap: 0;
}
.p-windows-sec01-list li {
  width: 33.3333333333%;
  padding-bottom: 3rem;
  overflow: hidden;
}
.p-windows-sec01-list li h3 {
  margin-bottom: 1rem;
  line-height: 1.4;
}
.p-windows-sec01-list li p {
  padding: 0 3rem;
}
.p-windows-sec01-list li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #dee5fe;
}
.p-windows-sec01-list li:nth-child(2) {
  background-color: #cfd9fd;
}
.p-windows-sec01-list li:nth-child(3) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #bdcbfd;
}
.p-windows-sec01-list__ttl1 {
  font-weight: bold;
  font-size: clamp(18px, 1.046vw, 20px);
  text-align: center;
}
.p-windows-sec01-list__ttl2 {
  color: #fa2b54;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  text-align: center;
}
.p-windows-sec02 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: url(../img/chrome/bg__001.png) no-repeat center 0;
  background-size: 100%;
}
.p-windows-sec02::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background: #5b7df9;
  content: "";
}
.p-windows-sec02::after {
  position: absolute;
  top: -150px;
  right: -50px;
  width: 398px;
  height: 398px;
  background: url(../img/chrome/bg__004.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-windows-sec02 .c-contents-box {
  margin-bottom: 4rem;
}
.p-windows-sec02-img {
  margin-top: 4rem;
}
.p-windows-sec02__flex {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-windows-sec02-list__ttl {
  padding: 1rem 0;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-windows-sec02-list1 {
  width: 64%;
}
.p-windows-sec02-list1__ttl {
  z-index: 1;
  position: relative;
  height: 85px;
  margin-bottom: -4rem;
  background: url(../img/windows/bg__001.png) no-repeat center 0;
  background-size: contain;
  color: #2c2599;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 2.2;
  text-align: center;
}
.p-windows-sec02-list1 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-windows-sec02-list1 ul li {
  width: 50%;
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}
.p-windows-sec02-list1 ul li:nth-child(1) {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-bottomleft: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #5b7df9;
}
.p-windows-sec02-list1 ul li:nth-child(2) {
  -webkit-border-top-right-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #3e5dd0;
}
.p-windows-sec02-list1 ul li figure {
  width: 120px;
  margin: auto;
}
.p-windows-sec02-list2 {
  width: 32%;
}
.p-windows-sec02-list2__ttl {
  z-index: 1;
  position: relative;
  height: 83px;
  margin-bottom: -4rem;
  background: url(../img/windows/bg__002.png) no-repeat center 0;
  background-size: contain;
  color: #2c2599;
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 2.2;
  text-align: center;
}
.p-windows-sec02-list2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: space-between;
  gap: 0;
}
.p-windows-sec02-list2 ul li {
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}
.p-windows-sec02-list2 ul li:nth-child(1) {
  border-radius: 20px;
  background-color: #f5f5f5;
}
.p-windows-sec02-list2 ul li figure {
  width: 120px;
  margin: auto;
}
.p-windows-sec03 {
  position: relative;
  padding-block: 8rem;
}
.p-windows-sec03::after {
  position: absolute;
  top: -150px;
  left: -50px;
  width: 398px;
  height: 398px;
  background: url(../img/chrome/bg__005.png) no-repeat center bottom;
  background-size: contain;
  content: "";
}
.p-windows-sec03 .c-table-os {
  margin-top: 0;
}
.p-windows-sec04 {
  padding-block: 8rem;
  background-color: #f5f5f5;
}
.p-windows-sec04 .c-table-windows {
  background-color: #fff;
}
.p-windows-sec04 .c-table-windows .c-table-windows__thb {
  background-color: #f5f5f5;
}

.p-windows-h1 > div {
  display: grid;
  place-items: center;
  width: 8em;
  padding: 0.75em 1em;
  border-radius: 20px;
  background-color: #fff;
}

.p-windows-sec01-list__ttl1,
.p-windows-sec01-list__ttl2 {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
}

.p-windows-sec01-list li {
  width: 33.3333333333%;
}
.p-windows-sec01-list li:nth-child(1) {
  width: 33.3333333333%;
}
.p-windows-sec01-list li:nth-child(2) {
  width: 33.3333333333%;
}
.p-windows-sec01-list li:nth-child(3) {
  width: 33.3333333333%;
}

.p-windows-sec01-list li p {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
  line-break: strict;
}

.p-windows-sec01 .p-encho-sec03-list li {
  width: 31.25%;
}
.p-windows-sec02-list__ttl + p {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
}

.c-table-windows__th3 {
  line-height: 1.5;
  text-align: center;
}

.c-table-windows td {
  text-align: center;
}

.c-table-windows__note {
  display: block;
  margin-top: 1em;
  font-weight: 400;
  font-size: clamp(14px, 0.8333vw, 16px);
  line-height: 1.5;
  text-align: left;
}
.c-table-windows td.c-table-windows-head .c-table-windows-head__text {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-windows__eduwin11 {
  padding: 3rem 2rem;
  border-radius: 20px;
  background-color: #fff;
}
.p-windows__eduwin11-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.p-windows__eduwin11-wrapper > div {
  width: 50%;
  padding: 0 2rem;
}
.p-windows__eduwin11-wrapper > div > h3 {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.p-windows__eduwin11-wrapper > div > p {
  margin-bottom: 2em;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-windows__eduwin11-wrapper > figure {
  flex: 1;
  overflow: hidden;
  border-radius: 32px;
}

.u-mt--0 {
  margin-top: 0;
}
.u-mb--0 {
  margin-bottom: 0;
}
.u-mr--0 {
  margin-right: 0;
}
.u-ml--0 {
  margin-left: 0;
}

.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--0 {
  padding-top: 0;
}
.u-pb--0 {
  padding-bottom: 0;
}
.u-pr--0 {
  padding-right: 0;
}
.u-pl--0 {
  padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt10 {
  padding-top: 1rem;
}

.pb10 {
  padding-bottom: 1rem;
}

.pr10 {
  padding-right: 1rem;
}

.pl10 {
  padding-left: 1rem;
}

.pt20 {
  padding-top: 2rem;
}

.pb20 {
  padding-bottom: 2rem;
}

.pr20 {
  padding-right: 2rem;
}

.pl20 {
  padding-left: 2rem;
}

.pt30 {
  padding-top: 3rem;
}

.pb30 {
  padding-bottom: 3rem;
}

.pr30 {
  padding-right: 3rem;
}

.pl30 {
  padding-left: 3rem;
}

.pt40 {
  padding-top: 4rem;
}

.pb40 {
  padding-bottom: 4rem;
}

.pr40 {
  padding-right: 4rem;
}

.pl40 {
  padding-left: 4rem;
}

.pt50 {
  padding-top: 5rem;
}

.pb50 {
  padding-bottom: 5rem;
}

.pr50 {
  padding-right: 5rem;
}

.pl50 {
  padding-left: 5rem;
}

.pt60 {
  padding-top: 6rem;
}

.pb60 {
  padding-bottom: 6rem;
}

.pr60 {
  padding-right: 6rem;
}

.pl60 {
  padding-left: 6rem;
}

.pt70 {
  padding-top: 7rem;
}

.pb70 {
  padding-bottom: 7rem;
}

.pr70 {
  padding-right: 7rem;
}

.pl70 {
  padding-left: 7rem;
}

.pt80 {
  padding-top: 8rem;
}

.pb80 {
  padding-bottom: 8rem;
}

.pr80 {
  padding-right: 8rem;
}

.pl80 {
  padding-left: 8rem;
}

.pt90 {
  padding-top: 9rem;
}

.pb90 {
  padding-bottom: 9rem;
}

.pr90 {
  padding-right: 9rem;
}

.pl90 {
  padding-left: 9rem;
}

.pt100 {
  padding-top: 10rem;
}

.pb100 {
  padding-bottom: 10rem;
}

.pr100 {
  padding-right: 10rem;
}

.pl100 {
  padding-left: 10rem;
}

.pt110 {
  padding-top: 11rem;
}

.pb110 {
  padding-bottom: 11rem;
}

.pr110 {
  padding-right: 11rem;
}

.pl110 {
  padding-left: 11rem;
}

.pt120 {
  padding-top: 12rem;
}

.pb120 {
  padding-bottom: 12rem;
}

.pr120 {
  padding-right: 12rem;
}

.pl120 {
  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;
}

.p-encho-sec01 .l-container {
  position: relative;
}
.p-encho-sec01 .l-container::before {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 65%;
  margin-inline: calc(50% - 50vw);
  background-color: #f5f5f5;
  content: "";
}
.p-encho-sec01 .c-text-lead em {
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-encho-sec01-list li {
  display: flex;
  flex-direction: column;
}
.p-encho-sec01-list li:last-of-type .p-encho-sec01-list__img + p {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-encho-sec01-list__img + p {
  display: grid;
  place-items: center;
  width: 85%;
  height: 100%;
  margin: auto;
  padding: 0.25em 0;
  border: 1px solid #2b249b;
  border-radius: 20vh;
  color: #2b249b;
  font-weight: 500;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.25;
}

.p-encho-sec01-list-note {
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-encho-sec02-img01 {
  max-width: 1280px;
}

.p-encho-sec02-img02 {
  max-width: 1080px;
}

.p-encho-sec02-tips {
  margin-top: 0.5em;
  font-size: clamp(12px, 0.729vw, 14px);
  text-align: right;
}

.p-encho-sec03-list__ttl span {
  font-size: clamp(14px, 0.8333vw, 16px);
}

.p-encho-sec04 {
  position: relative;
  margin-top: 10rem;
  padding-bottom: 10rem;
}
.p-encho-sec04::after {
  display: block;
  position: absolute;
  top: -5rem;
  left: -10rem;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background: #fff694;
  content: "";
}
.p-encho-sec05 {
  padding-bottom: 8rem;
}
.p-encho-sec05__container {
  position: relative;
  max-width: 1280px;
  margin: 3em auto 0;
  padding: 2rem 3rem 3rem;
  border-radius: 30px;
  background: #ff6d8a;
  text-align: center;
}
.p-encho-sec05__containerTitle {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: clamp(24px, 1.562vw, 30px);
  line-height: 1.6;
}
.p-encho-sec05__containerTitle::after {
  display: block;
  position: absolute;
  top: -6rem;
  left: -20rem;
  width: 18rem;
  height: 18rem;
  background: url(../img/encho/encho-sec05-icon.png) no-repeat center/contain;
  content: "";
}
.p-encho-sec05__containerTitle--big {
  font-size: clamp(28px, 2.083vw, 40px);
}
.p-encho-sec05__box {
  margin-top: 2rem;
  padding: 3rem;
  border-radius: 30px;
  background: #fff;
  text-align: center;
}
.p-encho-sec05__example {
  font-weight: bold;
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-encho-sec05__example--small {
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-encho-sec05__example--pink {
  color: #ff6d8a;
  font-size: clamp(26px, 1.978vw, 38px);
}
.p-encho-sec05__pcflex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 0 8rem;
  gap: 2rem;
}
.p-encho-sec05__pcflex figure {
  width: 25rem;
}
.p-encho-sec05__list {
  display: flex;
  flex: 1;
  justify-content: center;
  width: 90%;
  margin: 3rem auto 0;
  border-radius: 20px;
}
.p-encho-sec05__list--pink {
  color: #ff6d8a;
}
.p-encho-sec05__list--big {
  font-weight: bold;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-encho-sec05__list--num {
  font-weight: bold;
  font-size: clamp(32px, 2.5vw, 48px);
}
.p-encho-sec05__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}
.p-encho-sec05__list li:not(:last-child) {
  position: relative;
}
.p-encho-sec05__list li:not(:last-child)::after {
  display: block;
  z-index: 1;
  position: absolute;
  top: 38%;
  right: -32px;
  width: 64px;
  height: 64px;
  background: url(../img/encho/encho-sec05_flow-icon01.png) no-repeat center/contain;
  content: "";
}
.p-encho-sec05__list li:first-child {
  border-radius: 30px 0 0 30px;
  background: #ffeef1;
}
.p-encho-sec05__list li:nth-child(2) {
  background: #ffe3e9;
}
.p-encho-sec05__list li:nth-child(2)::after {
  background: url(../img/encho/encho-sec05_flow-icon02.png) no-repeat center/contain;
}
.p-encho-sec05__list li:nth-child(3) {
  background: #ffd3dc;
}
.p-encho-sec05__list li:nth-child(3)::after {
  background: url(../img/encho/encho-sec05_flow-icon03.png) no-repeat center/contain;
}
.p-encho-sec05__list li:last-child {
  padding-top: 1rem;
  border-radius: 0 30px 30px 0;
  background: #ff6d8a;
  color: #fff;
}
.p-encho-sec05__list li:last-child p {
  font-weight: 100;
  line-height: 1.4;
}
.p-encho-sec05__list li:last-child p,
.p-encho-sec05__list li:last-child strong {
  color: #fff;
}
.p-encho-sec05__list li:last-child figure {
  margin-top: 0rem;
}
.p-encho-sec05__list li figure {
  max-width: 60%;
  margin-top: 2rem;
}
.p-encho-sec05__list li p {
  font-weight: bold;
}
.p-encho-sec05__result {
  position: relative;
  margin-top: 2rem;
  font-weight: bold;
}
.p-encho-sec05__result::after {
  display: inline-block;
  position: absolute;
  top: -9rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: scale(0.5);
  content: url("../img/encho/encho-sec05-arrow.png");
}
.p-encho-sec05__result--year {
  display: inline-block;
  margin-right: 30rem;
  padding: 0.2rem 2rem;
  border-radius: 20vh;
  background: #5b7df9;
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-encho-sec05__result--text {
  color: #ff6d8a;
  font-size: clamp(26px, 1.978vw, 38px);
}
.p-encho-sec05__result--text strong {
  margin: 0.3rem 1rem;
  font-size: clamp(32px, 3.2vw, 64px);
  line-height: 1.1;
}

.c-bg--bl3 {
  background: #5b7df9;
}

.p-encho-sec06 {
  padding-top: 12rem;
}
.p-encho-sec06::before {
  top: -22rem;
}
.p-encho-sec06__titleBox {
  display: inline-block;
  width: 80%;
  margin-bottom: 6rem;
  border-radius: 50vh;
  background: #fff;
}
.p-encho-sec06__title {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  padding: 0.5rem 0;
  color: #5b7df9;
}
.p-encho-sec06__title::before {
  display: block;
  position: absolute;
  top: 30%;
  left: -10rem;
  width: 10rem;
  height: 10rem;
  transform: translateY(-50%);
  background: url(../img/encho/encho-sec09-icon01.png) no-repeat center/cover;
  content: "";
}
.p-encho-sec06__yobiList {
  display: flex;
  position: relative;
  margin-top: 8rem;
  padding: 0 12vh;
  font-weight: bold;
}
.p-encho-sec06__yobiList--plusCont, .p-encho-sec06__yobiList--equalCont {
  position: relative;
  top: 80px;
}
.p-encho-sec06__yobiList--plus {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 4px;
  border-radius: 50vh;
  background: currentColor;
  color: #5b7df9;
  line-height: 1;
  vertical-align: middle;
}
.p-encho-sec06__yobiList--plus::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  border-radius: inherit;
  background: inherit;
  content: "";
}
.p-encho-sec06__yobiList--equal {
  display: inline-block;
  position: relative;
  width: 30px;
  height: 3px;
  border-radius: 0.1em;
  color: #5b7df9;
  font-size: 30px;
}
.p-encho-sec06__yobiList--equal::before, .p-encho-sec06__yobiList--equal::after {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 0.1em;
  transform: translateY(-50%);
  border-radius: 0.1em;
  background-color: currentColor;
  content: "";
}
.p-encho-sec06__yobiList--equal::before {
  top: calc(50% - 0.15em);
}
.p-encho-sec06__yobiList--equal::after {
  top: calc(50% + 0.15em);
}
.p-encho-sec06__yobiList ul:first-of-type {
  width: 38%;
}
.p-encho-sec06__yobiList ul:first-of-type figure img {
  max-width: 75%;
}
.p-encho-sec06__yobiList ul:nth-of-type(2) figure img {
  max-width: 50%;
}
.p-encho-sec06__yobiList ul:nth-of-type(2) li:last-of-type {
  position: relative;
  top: -3rem;
}
.p-encho-sec06__yobiList ul:last-of-type figure img {
  max-width: 50%;
}
.p-encho-sec06__yobiList ul:last-of-type li:last-of-type {
  position: relative;
  top: -3rem;
}
.p-encho-sec06__yobiList ul li:last-of-type {
  display: flex;
  position: relative;
  top: -5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.p-encho-sec06__yobiList ul li p {
  display: flex;
  position: relative;
  align-items: center;
  padding: 0.5rem;
  border-radius: 50vh;
  box-shadow: 0px 3px 5px 0px rgba(0, 36, 97, 0.22);
  color: #2b249b;
  font-size: clamp(18px, 1.354vw, 26px);
}
.p-encho-sec06__yobiList ul li p::before {
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 1.2rem solid #fff;
  border-right: 1.2rem solid transparent;
  border-left: 1.2rem solid transparent;
  content: "";
  filter: drop-shadow(0 0.4rem 0.3rem rgba(0, 36, 97, 0.22));
}
.p-encho-sec06__yobiList ul li p em {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
  border-radius: 50%;
  background: #2b249b;
  color: #fff;
  font-weight: 100;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-encho-sec06__yobiList--hojo p {
  position: relative;
  justify-content: center;
  border: 2px solid #fa2b54;
  color: #fa2b54 !important;
}
.p-encho-sec06__yobiList--hojo p:before {
  z-index: 2;
  position: absolute;
  bottom: -24px !important;
  left: 50% !important;
  margin-left: -15px !important;
  transform: none !important;
  border: 12px solid transparent;
  border-top: 12px solid #fff;
  content: "";
  filter: none !important;
}
.p-encho-sec06__yobiList--hojo p:after {
  z-index: 1;
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #fa2b54 !important;
  content: "";
  filter: drop-shadow(0 0.4rem 0.3rem rgba(0, 36, 97, 0.22));
}

.p-encho-sec07__bg {
  margin-top: -325px;
  padding-top: 425px;
  padding-bottom: 8rem;
  background: #5172ea;
}
.p-encho-sec07__white {
  color: #fff;
}
.p-encho-sec07__list li {
  border: 3px solid #2b249b;
}
.p-encho-sec07__list li figure {
  padding: 3rem 3rem 0 3rem;
}
.p-encho-sec07__list li .p-encho-sec03-list__num {
  background: #2b249b;
}

.p-encho-secAbout {
  padding: 10rem 0;
}
.p-encho-secAbout__yellow {
  color: #fff15b;
}
.p-encho-secAbout__box {
  margin-top: 6rem;
  padding: 5vh 12vh;
  border-radius: 40px;
}
.p-encho-secAbout .c-text-lead {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-encho-sec08 {
  padding-bottom: 7rem;
}
.p-encho-sec08 .p-encho-sec08-box .c-text-note {
  padding: 0 2rem;
}
.p-encho-sec08-box__imglist {
  gap: 4%;
}
.p-encho-sec08-box__imglist li {
  width: 30%;
}
.p-encho-sec08-box__imglist li figcaption {
  margin-top: 1rem;
  line-height: 1.4;
  text-align: center;
}
.p-encho-sec08-box__check {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  gap: 2rem;
}
.p-encho-sec08-box__check li {
  line-height: 1.5;
}
.p-encho-sec08-box__check li::before {
  top: 50%;
}
.p-encho-sec08-box .check-green li::before {
  background: url(../img/encho/ico__check__003.png) no-repeat 0 0;
  background-size: contain;
}

.p-encho-sec09__secret {
  color: #fff;
  text-align: center;
}
.p-encho-sec09__table {
  width: 100%;
  margin-top: 3rem;
}
.p-encho-sec09__table tr th {
  width: auto;
}
.p-encho-sec09__table tr:first-of-type th {
  background: #4665d6;
}
.p-encho-sec09__table tr:first-of-type th:first-of-type {
  width: 55% !important;
}
.p-encho-sec09__table tr:first-of-type th:not(:first-of-type) {
  width: 15%;
}
.p-encho-sec09__table tr td {
  height: auto;
  padding-block: 2rem;
  vertical-align: middle;
}
.p-encho-sec09__table tr td:first-of-type {
  display: flex;
  align-items: center;
}
.p-encho-sec09__table tr td:first-of-type figure {
  margin: 0 2rem;
}
.p-encho-sec09__table tr td:first-of-type figure img {
  width: 50px;
}
.p-encho-sec09__table tr td p {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-encho-sec09__table tr td p.c-table-ico {
  font-weight: 100;
}
.p-encho-sec09__table tr td p .circle {
  display: inline-block;
  position: relative;
}
.p-encho-sec09__table tr td p .note {
  position: absolute;
  top: 0.4em;
  left: 2.6em;
  color: #111;
  font-size: 0.4em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.p-encho-sec09__caption {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-end;
  height: 6em;
  margin-top: 3rem;
  gap: 0.5em 1em;
  color: #fff;
}
.p-encho-sec09__caption .c-table-note {
  font-size: clamp(12px, 0.729vw, 14px);
}

.p-encho-ttl_insec {
  margin-bottom: 1em;
  border-block: 1px solid #5b7df9;
  color: #5b7df9;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: center;
}

.p-encho-sec10-content-ttl {
  margin-bottom: 4rem;
}
.p-encho-sec10-content-ttl > h3 {
  margin-bottom: 0.5em;
}
.p-encho-sec10-content-ttl > p {
  margin-bottom: 0.25em;
  font-weight: 700;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.4;
}

.p-encho-sec10 {
  padding-bottom: 10rem;
}

.p-encho-sec10-content-lead {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.4;
}
.p-encho-sec10-content-list__wrapper {
  position: relative;
}
.p-encho-sec10-content-list__ttl {
  margin-block: 0.5em;
  color: #5b7df9;
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
}
.p-encho-sec10-content-list__plus {
  display: flex;
  position: absolute;
  top: 50%;
  left: calc(100% - 1.25rem);
  flex-wrap: nowrap;
  align-items: center;
  transform: translateY(-50%);
}
.p-encho-sec10-content-list__plus > img {
  height: 4rem;
}
.p-encho-sec10-content-list__plus > p {
  margin-left: 0.25em;
  color: #ec4e6e;
  font-weight: 900;
  font-size: clamp(18px, 1.25vw, 24px);
  letter-spacing: 0.1em;
  word-break: keep-all;
}
.p-encho-sec10-content .p-dx-sec03-listnum li {
  width: 20%;
}
.p-encho-sec10-content .p-dx-sec03-listnum::before {
  width: 80%;
}
.p-encho-sec10-content-list.p-dx-sec03-list {
  margin-bottom: 14rem;
}
.p-encho-sec10-content-list.p-dx-sec03-list li {
  width: 19%;
  padding-inline: 0.5rem;
}
.p-encho-sec10-content-list.p-dx-sec03-list li:nth-of-type(2) {
  position: relative;
}
.p-encho-sec10-content-list.p-dx-sec03-list li > p {
  margin-bottom: 1.5em;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.4;
}
.p-encho-sec10-content-list.p-dx-sec03-list .p-encho-sec10-content-tips {
  display: block;
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 1em;
  font-size: clamp(12px, 0.729vw, 14px);
  line-height: 1.4;
}
.p-encho-sec10-support.p-reason-sec04-box3 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list {
  justify-content: space-around;
  max-width: 1080px;
  margin: 4rem auto;
  gap: 5%;
}
.p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 21%;
}
.p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list > li figure {
  aspect-ratio: 1/1;
  width: 75%;
  margin-bottom: 1rem;
  padding: 3.5rem;
  border-radius: 20vh;
  background-color: white;
}
.p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list > li figure img {
  width: 100%;
  height: 100%;
}
.p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list__ttl {
  font-size: clamp(16px, 0.9375vw, 18px);
}
.p-encho-sec10-support__sup {
  display: flex;
  justify-content: flex-end;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-encho-sec10-support__sup > p {
  text-align: left;
}

.p-encho-sec11 {
  padding-bottom: 10rem;
}
.p-encho-sec11__list.p-encho-sec03-list li {
  margin-bottom: 2rem;
}
.p-encho-sec11__list.p-encho-sec03-list li figure {
  text-align: center;
}
.p-encho-sec11 .p-encho-sec03-list__ttl + p {
  font-size: clamp(14px, 0.8333vw, 16px);
  text-align: center;
}
.p-encho-sec12 {
  padding-bottom: 10rem;
}
.p-encho-sec12 .c-contents-box {
  border-radius: 30px;
}
.p-encho-sec12 .c-contents-box .p-reason-sec06-box {
  max-width: 1080px;
  margin-bottom: 4rem;
  padding-left: 16rem;
}
.p-encho-sec12 .c-contents-box .p-reason-sec06-box-img {
  top: -8rem;
  left: 0rem;
  width: 16rem;
}
.p-encho-sec12 .c-contents-box .p-reason-sec06-box P {
  text-align: center;
}
.p-encho-sec12__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
}
.p-encho-sec12__contents > li {
  width: 49%;
}
.p-encho-sec12__contents > li h3 {
  position: relative;
  max-width: 80%;
  margin: -2rem auto 2rem;
  padding: 0.5rem;
  border-radius: 50vh;
  background-color: #fff;
  box-shadow: 0px 1px 6px 1px rgba(0, 36, 97, 0.22);
  text-align: center;
}
.p-encho-sec12__contents > li h3::before {
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 1.2rem solid #fff;
  border-right: 1.2rem solid transparent;
  border-left: 1.2rem solid transparent;
  content: "";
  filter: drop-shadow(0 0.4rem 0.3rem rgba(0, 36, 97, 0.22));
}
.p-encho-sec12__contents > li:nth-of-type(1) h3 {
  color: #5b7df9;
}
.p-encho-sec12__contents > li:nth-of-type(2) h3 {
  color: #ff6d8a;
}
.p-encho-sec12__contents > li:nth-of-type(2) .p-encho-sec12__contents-ulist {
  margin-top: 4rem;
}
.p-encho-sec12__contents-dlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4%;
}
.p-encho-sec12__contents-dlist > dl {
  width: 48%;
}
.p-encho-sec12__contents-dlist > dl dt {
  margin-bottom: 1em;
  background-color: #5b7df9;
  color: white;
  font-size: clamp(16px, 0.9375vw, 18px);
  text-align: center;
}
.p-encho-sec12__contents-ulist {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-encho-sec12__contents-ulist li {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 2em;
  font-weight: 700;
  font-size: clamp(18px, 1.146vw, 22px);
  line-height: 1.25;
}
.p-encho-sec12__contents-ulist li::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/encho/encho-sec12-dlist-icon.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec12__contents-ulist li .font-s {
  font-weight: 400;
  font-size: clamp(14px, 0.8333vw, 16px);
}
.p-encho-sec13 {
  position: relative;
  padding-bottom: 10rem;
}
.p-encho-sec13::before {
  display: block;
  position: absolute;
  top: -22rem;
  width: 100%;
  height: 800px;
  background: url(../img/encho/bg__002.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec13 .c-title-h2-wh {
  margin-bottom: 6rem;
}
.p-encho-sec13__contents > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4rem;
  padding: 4rem 6rem;
  gap: 5%;
  border-radius: 20px;
  background-color: #fff;
}
.p-encho-sec13__contents > li > figure {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  padding-bottom: 0;
  text-align: center;
}
.p-encho-sec13__contents > li > figure img {
  max-width: 12rem;
}
.p-encho-sec13__contents > li h3 {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: clamp(24px, 1.666vw, 32px);
  text-align: left;
}
.p-encho-sec13__contents-list > li {
  position: relative;
  margin-bottom: 1.5em;
  padding-left: 2.25em;
  font-weight: 400;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.25;
}
.p-encho-sec13__contents-list > li::before {
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/encho/ico__check__001.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}
.p-encho-sec13 .p-encho-sec13__h3 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 80%;
  margin: -2rem auto 2em;
  padding: 0.5rem;
  padding-inline: 1.75em;
  border-radius: 50vh;
  background-color: #fff;
  box-shadow: 0px 1px 6px 1px rgba(0, 36, 97, 0.22);
  color: #2b249b;
  font-weight: 700;
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
}
.p-encho-sec13 .p-encho-sec13__h3::before {
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 1.2rem solid #fff;
  border-right: 1.2rem solid transparent;
  border-left: 1.2rem solid transparent;
  content: "";
  filter: drop-shadow(0 0.4rem 0.3rem rgba(0, 36, 97, 0.22));
}
.p-encho-sec13 .c-contents-box.add01 {
  margin-bottom: 6rem;
}
.p-encho-sec13 .c-contents-box.add01 > .c-text-lead-s {
  padding-top: 0;
}
.p-encho-sec13 .c-contents-box.add01 .p-os-sec05-list__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-inline: 1.5em;
  font-weight: 700;
}
.p-encho-sec13 .c-contents-box__add02 {
  margin-bottom: 6rem;
}
.p-encho-sec13 .c-contents-box__add02 .c-text-lead {
  color: #fff;
}
.p-encho-sec13 .c-contents-box__add02 .c-text-lead + p {
  color: #fff;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-encho-sec13 .c-contents-box__add02 .p-encho-sec13__h3 {
  margin-top: 1em;
}
.p-encho-sec13 .c-contents-box__add02 .p-chrome-sec02-list2 li figure {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 0;
}
.p-encho-sec13 .c-contents-box.last {
  border-radius: 30px;
  background-color: transparent;
  box-shadow: none;
}
.p-encho-sec13 .c-contents-box.last .c-text-lead {
  color: #fff;
}

.p-home-mv__bnr {
  top: 3rem;
  transform: translateX(-13%);
}

.p-home-sec01 {
  margin: 0 calc(50% - 50vw);
}
.p-home-sec01 .c-title-h3-nomal {
  font-size: clamp(18px, 1.25vw, 24px);
}

.p-home-sec01-box p {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-home-sec02-box-list__text {
  padding-top: 0;
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-home-sec02-box h3 {
  margin-top: -0.75em;
  font-size: clamp(25px, 1.875vw, 36px);
  line-height: 1.5;
}

.p-home-sec02-box p {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
}

.c-title-h2-nomal + p {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-home-sec03 {
  margin: 0 calc(50% - 50vw);
}

.p-home-sec05 {
  margin: 0 calc(50% - 50vw);
}

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

.home-slider-icon {
  position: absolute;
  top: 20%;
  right: 0;
  width: 60px;
  height: 60px;
  transform: translate(0, -50%);
  cursor: pointer;
}
.home-slider-icon::before {
  display: inline-block;
  position: absolute;
  top: calc(50% - 30px);
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/ico_arrow__003.png) no-repeat 0 0;
  background-size: contain;
  content: "";
}

.p-encho-sec03-list__ttl + p {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
  text-align: left;
}

.p-encho-sec03-list__ttl + p .al-c-span {
  display: block;
  margin-inline: auto;
  text-align: center;
}

.p-reason-sec04-box-r h3 {
  font-size: clamp(18px, 1.458vw, 28px);
  line-height: 1;
}

.p-reason-sec04-box__ttl {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto 0;
  padding-inline: 3em;
  font-size: clamp(18px, 1.458vw, 28px);
}

.p-reason-sec04-box-r p {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-reason-sec04-box2 {
  max-width: none;
}

.p-reason-sec04-box2__wrap {
  font-size: clamp(18px, 1.25vw, 24px);
}

.p-reason-sec04-box3 {
  max-width: none;
}
.p-reason-sec04-box3__ttl {
  height: 3.75em;
  padding-block: 0.35em;
}

.p-reason-sec04-box3-list__ttl {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-reason-sec05-box__ttl {
  font-size: clamp(18px, 1.25vw, 24px);
}

.p-reason-sec05-box__ttl + p {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-reason-sec06-box {
  max-width: 960px;
  padding-left: 16rem;
}
.p-reason-sec06-box-img {
  left: 0;
}
.p-reason-sec06-box > p {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.5;
}

.p-dx-sec05-box .c-list-check li {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-dx-sec03-list__ttl {
  font-size: clamp(18px, 1.458vw, 28px);
}
.p-dx-sec03-list .c-list-check li {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-dx-sec04-list__ttl {
  font-size: clamp(18px, 1.458vw, 28px);
}

.p-dx-sec04-list__text {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
}

.p-chrome-sec02 {
  word-break: auto-phrase;
}
.p-chrome-sec02 .p-chrome-sec02-list2-box {
  padding: 1.5rem 2rem;
}
.p-chrome-sec02 .p-chrome-sec02-list2-box dl dt {
  position: relative;
  padding-left: 1.5em;
  font-weight: normal;
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.5;
}
.p-chrome-sec02 .p-chrome-sec02-list2-box dl dt::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #0e1155;
  content: "";
}
.p-chrome-sec02 .p-chrome__img2text-google {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
  word-break: break-all;
}

.p-chrome-sec02-box2__list2__ttl + p {
  font-size: clamp(18px, 1.046vw, 20px);
  line-height: 1.5;
  word-break: break-all;
}

.p-chrome-sec03::after {
  width: calc(15vw + 15vh);
  height: calc(15vw + 15vh);
}

.p-chrome-sec03-box-r {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-chrome-sec02-btn .c-btn--white2,
.p-chrome-sec03-btn2 .c-btn--white2 {
  padding-right: 2.5em;
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-chrome-sec02-btn .c-btn--white2::after,
.p-chrome-sec03-btn2 .c-btn--white2::after {
  top: 50%;
  transform: translateY(-50%);
}

.p-chrome-sec05-box__ttl1 + p {
  font-size: clamp(18px, 1.046vw, 20px);
}

.p-chrome-sec05-box .c-btn-more {
  margin-top: 3rem;
}

/* .p-faq-list__flex {
  font-size: clamp(18px, 1.354vw, 26px);
} */

.p-faq-list dd span {
  font-weight: 700;
  font-size: clamp(18px, 1.046vw, 20px);
}

body:has(.p-faq-sec02) {
  overflow-x: hidden;
}

.p-event-sec01 {
  padding-bottom: 10rem;
}

.p-event-tag__list li {
  font-size: clamp(18px, 1.146vw, 22px);
}

.c-table3 .c-table-tag + a {
  transition: all 0.3s ease;
}
.c-table3 .c-table-tag + a:focus {
  color: #0e1155;
  font-weight: 700;
}
.c-table3 tbody tr td:first-of-type {
  padding-inline: 0.75em;
  border-left: 1px solid #fff;
  font-size: clamp(16px, 0.9375vw, 18px);
}
.c-table3 tbody tr td:nth-of-type(3) {
  border-left: 1px solid #fff;
  font-weight: 700;
  font-size: clamp(14px, 0.8333vw, 16px);
}
@media screen and (min-width: 769px) {
  a:hover, a:active {
    text-decoration: none;
  }
  .sp-only {
    display: none !important;
  }
  .p-encho-sec10-content-list__num {
    display: none;
  }
  .p-encho-sec13 .c-title-h2-wh img {
    height: 64px;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .c-bg--clg {
    width: 150px;
    height: 150px;
  }
  .c-bg--cly {
    width: 150px;
    height: 150px;
  }
  .c-btn--white3::before {
    right: 20%;
  }
  .c-btn--gr::before {
    right: 20%;
  }
  .c-btn--blue::before {
    right: 20%;
  }
  .c-btn--pink::before {
    right: 20%;
  }
  .c-btn--line {
    min-width: 80%;
  }
  .c-btn-more a {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .c-contents-box {
    padding: 4rem 2rem 2rem 2rem;
    border-radius: 40px;
  }
  .c-contents-box__flex figure {
    width: 100%;
  }
  .c-contents-box__flex--trade_in {
    width: 100%;
  }
  .c-contents-box__textarea {
    width: 100%;
  }
  .c-contents-box.top-14 {
    top: -10rem;
  }
  .c-contents-box__ico {
    top: -5%;
    left: -5%;
    width: 70px;
  }
  .c-contents-box2 {
    padding: 2rem;
  }
  .c-contents-box2__h3 {
    font-size: 18px;
    text-align: left;
  }
  .c-contents-box2__img3 {
    width: 100%;
  }
  .c-contents-box2__text {
    width: 100%;
    margin: 0;
  }
  .c-contents-box2__text br {
    display: none;
  }
  .c-contents-box2-list li {
    width: 100%;
  }
  .c-contents-box3 {
    padding: 2rem;
  }
  .c-contents-box3__ttl {
    position: relative;
    padding-left: 60px;
  }
  .c-contents-box3__num {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding-top: 2px;
    font-size: 22px;
  }
  .c-contents-box3__ttl2 {
    width: 250px;
    padding-top: 10px;
    font-size: 16px;
  }
  .c-contents-box3__ttl3 {
    font-size: 18px;
  }
  .c-contents-box3__ttl4 {
    font-size: 16px;
  }
  .c-contents-box3__text1 {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .c-contents-box4 {
    padding: 2rem;
  }
  .c-contents-box4__ttl img {
    display: block;
    margin: auto;
  }
  .c-contents-box4-list li {
    padding: 2rem;
  }
  .c-contents-box4-list li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .c-contents-box4-list li:nth-child(2) {
    width: 100%;
  }
  .c-contents-box4-list li:nth-child(3) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .c-contents-box4-list__ttl {
    width: 220px;
  }
  .c-contents-box4-list__ttl2 {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .c-contents-box4-list-check {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-contents-box4-list2 li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .c-contents-box4-list2 li:nth-child(2) {
    width: 100%;
  }
  .c-contents-box4-list2 li:nth-child(3) {
    width: 100%;
  }
  .c-contents-box4-list2 li:nth-child(4) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .c-contents-box4-list2__ttl {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .c-contents-box4-list3 li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .c-contents-box4-list3 li:nth-child(2) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .c-contents-box4-list3-check {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-contents-box4-list3__flex .c-contents-box4-list3-check {
    width: 100%;
  }
  .c-contents-box-bl {
    padding: 1rem;
  }
  .c-contents-box-bl h3 span {
    display: block;
  }
  .c-contents-box-bl-r {
    width: 100%;
  }
  .c-contents-box-bl-wrap figure {
    width: 100%;
  }
  .c-contents-box-bl2 {
    padding: 1rem;
  }
  .c-contents-box-bl2 h3 span {
    display: block;
  }
  .c-contents-box-bl2-r {
    width: 100%;
  }
  .c-contents-box-bl2-wrap {
    padding: 1rem;
  }
  .c-contents-box-pink {
    padding: 1rem;
  }
  .c-contents-box-pink h3 span {
    display: block;
  }
  .c-contents-box-pink-r {
    width: 100%;
  }
  .c-contents-box-pink-wrap figure {
    width: 100%;
  }
  .c-contents-box-pink-wrap2 figure {
    width: 100%;
  }
  .c-contents-box-pink-wrap2 {
    padding: 2rem;
  }
  .c-contents-box-pink-check {
    width: 100%;
  }
  .c-contents-box-pink-fig {
    width: 100% !important;
  }
  .c-contents-box-pink-inner {
    padding: 10rem 2rem 2rem;
  }
  .c-contents-box-pink-inner figure {
    width: 30%;
  }
  .c-contents-box-pink__subttl {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .c-contents-box-wh {
    padding: 1rem;
  }
  .c-contents-box5 figure {
    width: 100%;
    text-align: center;
  }
  .c-contents-box5 figure img {
    width: 40%;
  }
  .c-contents-box5__wrap {
    width: 100%;
    padding: 2rem;
  }
  .c-contents-box6 figure {
    width: 100%;
    text-align: center;
  }
  .c-contents-box6 figure img {
    width: 40%;
  }
  .c-contents-box6__wrap {
    width: 100%;
    padding: 2rem;
  }
  .c-contents-box6__wrap h3 {
    font-size: 20px;
  }
  .c-contents-box6__wrap p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-contents-box6__img_r {
    order: 0;
  }
  .c-contents-box6__num {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    padding-top: 2px;
  }
  .c-contents-box6__num1 {
    font-size: 10px;
  }
  .c-contents-box6__num2 {
    display: block;
    font-size: 18px;
  }
  .c-contents-box6__ttl {
    width: 100%;
  }
  *[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-list-bbl li {
    width: 100%;
    margin-bottom: 4rem;
  }
  .c-list-bbl2 li {
    width: 100%;
    margin-bottom: 4rem;
  }
  .c-list-bbl2__num {
    top: 15px;
    left: 15px;
  }
  .c-list-red li {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-table tr th {
    padding: 1rem 0;
    font-size: 16px;
  }
  .c-table tr td {
    height: inherit;
    font-size: 14px;
  }
  .c-table-ico {
    font-size: 16px;
  }
  .c-table2 tr th {
    font-size: 16px;
  }
  .c-table2 tr td {
    font-size: 14px;
  }
  .c-table3 tr th {
    padding: 1rem 0;
    font-size: 16px;
  }
  .c-table3-ico {
    font-size: 16px;
  }
  .c-table4 tr {
    display: block;
    width: 100%;
  }
  .c-table4 tr th {
    display: block;
    width: 100%;
    padding: 1rem;
    border-right: 1px none;
  }
  .c-table4 tr td {
    display: block;
    width: 100%;
    padding: 1rem;
    border-right: 1px none;
  }
  .c-text-attention2 {
    font-size: 100%;
  }
  .c-text-attention5,
  .c-text em.c-text-attention5 {
    font-size: 100%;
  }
  .c-text-lead {
    text-align: left;
  }
  .c-text-lead-s {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .c-title-area--anchor li {
    width: 100%;
    max-width: 100%;
  }
  .c-title-area--anchor.w5 li {
    width: 100%;
    max-width: 100%;
  }
  .c-title-h2-nomal {
    font-size: clamp(24px, 1.666vw, 32px);
  }
  .c-title-h2-nomal-s {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .c-title-h2-bl {
    position: relative;
    padding: 1rem 2rem 1rem 2rem;
    font-size: 22px;
    text-align: left;
  }
  .c-title-h2-bl img {
    display: none;
    position: absolute;
    left: 10px;
    width: 60px;
    height: auto;
    margin: auto;
  }
  .c-title-h2-wh {
    position: relative;
    padding: 1rem 2rem 1rem 4rem;
    font-size: 22px;
    text-align: left;
  }
  .c-title-h2-wh img {
    display: none;
    position: absolute;
    left: 10px;
    width: 32px;
    height: auto;
    margin: auto;
  }
  .p-breadcrumb ul {
    justify-content: flex-start;
  }
  .p-byad-sec01-box1-img {
    right: inherit;
    left: 32%;
    width: 90px;
  }
  .p-byad-sec01-box1-img img {
    width: 100%;
  }
  .p-byad-sec01-btnbox1 a {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-byad-sec01-cta {
    padding: 2rem;
  }
  .p-byad-sec03-list li {
    width: 100%;
    margin-bottom: 5rem;
  }
  .p-byad-sec03-teian {
    margin-top: 5rem;
    font-size: 16px;
  }
  .p-byad-sec03-teian::before {
    top: -80px;
    left: calc(50% - 25px);
  }
  .p-byad-sec05__flex figure {
    order: 2;
    width: 80%;
  }
  .p-byad-sec05__wrap {
    width: 100%;
  }
  .p-byad-sec05-box-ttlarea {
    padding: 2rem;
  }
  .p-byad-sec05-box-ttlarea__wrap {
    width: 100%;
  }
  .p-byad-sec05-box-ttlarea__wrap h3 + p {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .p-byad-sec05-box-ttlarea__img {
    width: 100%;
    margin-top: 2rem;
  }
  .p-byad-sec05-box__wrap {
    padding: 2rem;
  }
  .p-byad-sec05-box__wrap ul {
    display: flex;
    flex-wrap: wrap;
    align-items: normal;
    justify-content: space-between;
    gap: 0;
  }
  .p-byad-sec05-box__wrap ul li {
    width: 30%;
  }
  .p-byad-sec06-btnbox a {
    width: 100%;
    margin-bottom: 1rem;
  }
  .p-byad-sec06-box1-img {
    right: inherit;
    left: -15px;
    width: 150px;
  }
  .p-byad-sec06-box1-img img {
    width: 100%;
  }
  .p-byad-sec06-box2-img {
    right: inherit;
    left: -15px;
    width: 150px;
  }
  .p-byad-sec06-box2-img img {
    width: 100%;
  }
  .p-byad-sec07 .c-contents-box3__ttl {
    font-size: 20px;
    line-height: 1.4;
    text-align: left;
  }
  .p-byad-sec07 .c-contents-box3__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .p-byad-sec07 .c-contents-box3__img {
    width: 100%;
    text-align: center;
  }
  .c-title-area-chrome {
    padding-top: 4rem;
  }
  .p-chrome-sec01-box figure {
    width: 100%;
  }
  .p-chrome-sec01-box__text {
    width: 100%;
  }
  .p-chrome-sec02::after {
    width: 150px;
    height: 150px;
  }
  .p-chrome-sec02 .p-dx-sec03-list li {
    width: 100%;
  }
  .p-chrome-sec02-list li {
    width: 100%;
  }
  .p-chrome-sec02-list li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .p-chrome-sec02-list li:nth-child(2) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .p-chrome-sec02-list2 li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-chrome-sec02-box2 {
    padding: 1rem;
  }
  .p-chrome-sec02-box2-wrap {
    padding: 1rem;
  }
  .p-chrome-sec02-box2__list1 li {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 12px;
  }
  .p-chrome-sec02-box2__list2 li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .p-chrome-sec03::after {
    width: 150px;
    height: 150px;
  }
  .p-chrome-sec03-box h3 span {
    display: block;
  }
  .p-chrome-sec03-box-r {
    width: 100%;
  }
  .p-chrome-sec03-box-wrap figure {
    width: 100%;
  }
  .p-chrome-sec03-btn {
    position: inherit;
    margin-top: 2rem;
  }
  .p-chrome-sec03-btn a {
    margin-top: 0;
  }
  .p-chrome-sec04 {
    padding: 2rem 0 4rem;
  }
  .p-chrome-sec04::after {
    width: 150px;
    height: 150px;
  }
  .p-chrome-sec04-btn .c-btn-more a {
    margin-top: 0;
  }
  .p-chrome-sec05 {
    padding: 8rem 0 4rem;
  }
  .p-column-list ul li {
    width: 100%;
    margin-bottom: 10%;
  }
  .p-column-wrapper {
    padding-top: 3rem;
  }
  .p-column-secl {
    width: 100%;
    margin-bottom: 10%;
  }
  .p-column-secr {
    width: 100%;
  }
  .p-column-detail h1 {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-column-detail-main {
    padding-top: 3rem;
  }
  .p-column-detail-main p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-column-detail-main .border-box {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  .p-column-detail-main img {
    margin-bottom: 1rem;
  }
  .p-column-detail-main h2 {
    font-size: clamp(24px, 1.77vw, 34px);
  }
  .p-column-detail-main h3 {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-column-detail-main ul {
    margin-left: 1em;
  }
  .p-column-toc__ttl {
    padding: 1rem 2rem;
  }
  .p-column-toc__ttl:before {
    right: 1rem;
  }
  .p-column-toc__ttl:after {
    right: 1rem;
  }
  .p-column-bnr1 a {
    background: url(../img/column/bg__bnr1_sp.png) no-repeat center 0 #f0f1f6;
    background-size: contain;
  }
  .p-column-bnr1__ttl {
    font-size: 20px;
    text-align: left;
  }
  .p-column-bnr1__ttl span {
    font-size: 14px;
  }
  .p-column-bnr1__btn {
    margin-left: 0;
  }
  .p-contact-form {
    margin-top: 4rem;
  }
  .p-contact-form .satori__custom_form .satori__input_group:not(:last-of-type) {
    margin-bottom: 0;
  }
  .p-contact-form .p-dx-sec01 {
    padding-bottom: 0;
  }
  .p-cta {
    -webkit-border-top-left-radius: 40px;
    -webkit-border-top-right-radius: 40px;
    -moz-border-radius-topleft: 40px;
    -moz-border-radius-topright: 40px;
    width: 100vw;
    margin: 0;
    padding: 3rem 0;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
  }
  .p-dx-high-school-sec01 .c-contents-box__flex figure {
    width: 100%;
  }
  .p-dx-high-school-sec01 .c-contents-box__flex .c-list-red li {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-dx-high-school-sec01 .c-title-h2-nomal-s span {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-dx-high-school-sec02-box__ttlarea {
    width: 100%;
    padding: 2rem 0;
  }
  .p-dx-high-school-sec02-box__textarea {
    width: 100%;
    padding: 2rem;
  }
  .p-dx-high-school-sec02-box__text {
    font-size: clamp(18px, 1.046vw, 20px);
    text-align: left;
  }
  .p-dx-high-school-sec02-box__text em {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-dx-high-school-sec02-box2 {
    padding-left: 15rem;
    font-size: 14px;
    text-align: left;
  }
  .p-dx-high-school-sec02-box2 br {
    display: none;
  }
  .p-dx-high-school-sec02-box2-img {
    top: 3rem;
    left: 1rem;
    width: 120px;
  }
  .p-dx-high-school-sec03 .c-title-h2-wh {
    padding-left: 2rem;
  }
  .p-dx-sec02-list__ttl {
    height: auto;
    margin-bottom: 2rem;
  }
  .p-dx-sec02-list li {
    width: 100%;
  }
  .p-dx-sec03-list {
    margin-top: 4rem;
  }
  .p-dx-sec03-list > li {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-dx-sec03-list-num {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: -20px;
    width: 53px;
    height: 53px;
    border-radius: 27px;
    background-color: #5b7df9;
    color: #FFF;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
  }
  .p-dx-sec04-list li {
    width: 100%;
    margin-bottom: 3rem;
  }
  .p-dx-sec05::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-dx-sec06::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-dx-sec06-box {
    padding: 2rem;
  }
  .p-encho-sec01-list {
    display: flex;
    flex-wrap: wrap;
    align-items: normal;
    justify-content: center;
    gap: 2%;
  }
  .p-encho-sec01-list li {
    width: 21%;
    font-size: 11px;
  }
  .p-encho-sec01-list__img {
    min-height: 100px;
  }
  .p-encho-sec02-box__point {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-encho-sec02-box__attention {
    width: 100%;
  }
  .p-encho-sec02-box ul {
    margin-left: 3rem;
  }
  .p-encho-sec02-box ul li {
    width: 100%;
    text-align: left;
  }
  .p-encho-sec03-list li {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-encho-sec03-list__num {
    top: 15px;
    left: 15px;
  }
  .p-encho-sec05-box {
    padding: 0 2rem 2rem 2rem;
  }
  .p-encho-sec05-box h3 {
    font-size: 16px;
  }
  .p-encho-sec05-box h3 span {
    display: block;
  }
  .p-encho-sec05-box img {
    width: 100%;
  }
  .p-encho-sec06-img1 {
    width: 100%;
  }
  .p-encho-sec06-img2 {
    width: 100%;
  }
  .p-encho-sec08-box__item {
    width: 100%;
    margin: 0 0 3rem 0;
  }
  .p-encho-sec08-list li {
    width: 24%;
    line-height: 1.2;
  }
  .p-encho-sec08-list li p {
    margin-top: 1rem;
  }
  .p-encho-sec09 table.c-table tr th:nth-child(1) {
    width: 35%;
  }
  .p-encho-sec09 table.c-table tr th {
    width: 22%;
  }
  .p-encho-sec10-box {
    padding: 0 2rem 2rem 2rem;
  }
  .p-encho-sec10-box-list li {
    width: 80%;
    margin: auto;
    margin-bottom: 6rem;
  }
  .p-encho-sec10-box-list li::after {
    top: inherit;
    right: calc(50% - 13px);
    bottom: -25px;
    width: 26px;
    height: 12px;
    background: url(../img/ico_arrow__008.png) no-repeat 0 0;
    background-size: contain;
  }
  .p-encho-sec13 p {
    text-align: left;
  }
  .p-encho-imglist li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-encho .c-title-area--anchor {
    padding-inline: 2rem;
  }
  .p-event-sec01 h2 {
    text-align: left;
  }
  .p-event-sec01-lead p {
    text-align: left;
  }
  .p-event-tag__ttl {
    width: 100%;
    text-align: center;
  }
  .p-event-tag__list {
    width: 100%;
    padding-top: 2rem;
    padding-left: 0;
    gap: 1rem;
    border-top: 2px solid #ddd;
    border-left: none;
  }
  .p-event-tag__list li {
    font-size: 12px;
  }
  .p-faq-list {
    padding: 2rem 2rem;
  }
  .p-faq-list dt span {
    width: 72%;
  }
  .p-faq-list dd {
    font-size: 16px;
  }
  .p-faq-list dd span {
    width: 72%;
  }
  .p-faq-sec02::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-faq-sec04::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-footer-nav {
    padding: 4rem 0;
  }
  .p-footer-nav .l-container {
    padding: 0 5vw;
  }
  .p-footer-nav__logo__img img {
    width: 150px;
  }
  .p-footer-nav__item {
    width: 100%;
  }
  .p-footer-nav-list2 {
    width: 100%;
  }
  .p-footer-nav-list2 > ul > li {
    width: 49%;
    margin-bottom: 1rem;
  }
  .p-footer-nav-list2-kitting ul li {
    width: 100%;
  }
  .p-footer-nav-list2__copyright {
    padding-top: 2rem;
    text-align: left;
  }
  .p-header__inner {
    border-radius: 0;
    line-height: 1.8;
  }
  .p-header__inner3 {
    display: none;
    height: inherit;
    padding: 0;
    background: none;
  }
  .p-header__inner3 a {
    color: #5b7df9 !important;
  }
  .p-header__logo {
    width: inherit;
    max-width: 60%;
    height: 42px;
  }
  .p-header__nav {
    display: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .p-header__nav ul.p-header__menu-form {
    width: 100%;
    padding-top: 3rem;
    padding-left: 0;
  }
  .p-header__hamburger {
    display: block;
    z-index: 3;
    position: fixed;
    top: 0;
    right: 0;
    width: 4.2rem;
    height: 4.2rem;
    background-color: #5b7df9;
    text-align: center;
    cursor: pointer;
  }
  .p-header__hamburger span {
    display: block;
    position: absolute;
    left: 0.6rem;
    width: 3rem;
    height: 0.2rem;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .p-header__hamburger span:nth-child(1) {
    top: 1rem;
  }
  .p-header__hamburger span:nth-child(2) {
    top: 2rem;
  }
  .p-header__hamburger span:nth-child(3) {
    top: 3rem;
  }
  .p-header__hamburger.is-active span:nth-child(1) {
    top: 20px;
    left: 0.6rem;
    transform: rotate(-45deg);
    background: #fff;
  }
  .p-header__hamburger.is-active span:nth-child(2), .p-header__hamburger.is-active span:nth-child(3) {
    top: 20px;
    transform: rotate(45deg);
    background: #fff;
  }
  .p-header__inner2 {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: #fff;
    text-align: center;
    opacity: 1;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .p-header__inner2.is-active {
    height: 100vh;
    padding: 0;
    background: #fff;
    opacity: 100;
  }
  .p-header__inner2.is-active nav {
    display: block;
    padding: 0 2rem;
  }
  .p-header__inner2.is-active .p-header__nav,
  .p-header__inner2.is-active .p-header__inner3 {
    display: block;
  }
  .p-header__inner2.is-active ul {
    display: block;
    margin: 0 auto 0 !important;
  }
  .p-header__inner2.is-active ul li {
    display: block;
    margin: 1rem auto 1rem !important;
    text-align: center;
  }
  .p-header__inner2.is-active ul li a {
    display: inline-block;
    width: 100%;
    padding-right: 0;
    font-size: clamp(18px, 1.146vw, 22px);
  }
  .p-header__inner2.is-active ul li a::after {
    content: none;
  }
  .p-header__inner2.is-active ul:nth-of-type(2) li a {
    display: inline;
    width: auto;
    padding: 0;
    background: none !important;
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .p-header__inner2.is-active ul:nth-of-type(2) li a img {
    display: none;
  }
  .p-header__inner2.is-active ul:nth-of-type(2) li a:focus {
    background: none !important;
  }
  .p-header__nav ul {
    height: auto !important;
  }
  .p-header__nav.is-active {
    display: block;
  }
  .p-header__nav.is-active nav {
    display: block !important;
    height: auto;
    margin: 80px 0 0;
  }
  .p-header__nav.is-active ul:nth-of-type(2) li a:after, .p-header__nav.is-active ul:nth-of-type(2) li a:before {
    content: none;
  }
  .p-header__nav.is-active li {
    margin: 0 !important;
  }
  .p-header__nav.is-active ul li a {
    color: #fff !important;
    font-size: 18px !important;
  }
  body#top {
    background: url(../img/top/mv_top_sp.png) no-repeat 0 0;
    background-size: contain;
  }
  .p-home-mv h1 {
    margin-top: 8rem;
  }
  .p-home-mv-h1-catch {
    line-height: 1;
    margin-bottom: 1rem;
  }
  .p-home-mv-h1-s {
    font-size: 22px;
    display: inline;
  }
  .p-home-mv-h1-s2 {
    font-size: 18px;
    display: inline;
  }
  .p-home-mv .l-container {
    padding: 0 5vw;
  }
  .p-home-mv-img {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 100%;
  }
  .p-home-mv__bnr {
    right: auto;
    left: 5vw;
    width: 85%;
    transform: translateX(0);
  }
  .p-home-mv__bnr__img {
    width: 77px;
  }
  .p-home-mv__bnr__wrap {
    width: calc(100% - 90px);
  }
  .p-home-mv__bnr__ttl1 {
    font-size: 18px;
  }
  .p-home-mv__bnr__ttl2 {
    font-size: 11px;
  }
  .p-home-mv__link {
    padding-top: 5rem;
  }
  .p-home-mv__link li {
    width: 100%;
  }
  .p-home-mv__link li a {
    line-height: 1.1;
  }
  .p-home-mv__link2 {
    padding-top: 5rem;
  }
  .p-home-mv__link2 li {
    width: 100%;
  }
  .p-home-mv__link2 li a {
    padding: 2rem 2rem 2rem 2rem;
    line-height: 1.1;
  }
  .p-home-mv__bnr2 li {
    width: 100%;
  }
  .p-home-sec01 {
    width: 100%;
    margin-left: 0;
  }
  .p-home-sec01-box {
    padding: 4rem 2rem 0 2rem;
    border-radius: 40px;
  }
  .p-home-sec01-box__wrap figure {
    width: 50%;
    margin: auto;
  }
  .p-home-sec01-box__item {
    width: 100%;
  }
  .p-home-sec02 {
    text-align: center;
  }
  .p-home-sec02 .l-container {
    padding: 0 5vw;
  }
  .p-home-sec02-box {
    padding: 0 2rem 2rem 2rem;
  }
  .p-home-sec02-box p {
    text-align: left;
  }
  .p-home-sec02-box-list li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-home-sec02-box-list li figure {
    width: 30%;
    float: left;
    overflow: hidden;
    border-radius: 20px;
  }
  .p-home-sec02-box-list__ttl {
    margin: 10px 0 0 114px;
    text-align: left;
  }
  .p-home-sec02 .c-btn-more {
    display: inline-block;
    position: inherit;
    top: inherit;
    right: inherit;
    left: inherit;
    margin-top: 3rem;
  }
  .p-home-sec03 {
    width: 100%;
    margin-left: 0;
  }
  .p-home-sec03-box {
    padding: 4rem 2rem;
    border-radius: 40px;
  }
  .p-home-sec03-box > p {
    text-align: left;
  }
  .p-home-sec04-box {
    margin-bottom: 4rem;
  }
  .p-home-sec04-box figure {
    position: inherit;
    left: inherit;
    width: 100%;
    border-radius: 25px;
  }
  .p-home-sec04-box__wrap {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }
  .p-home-sec04-box__wrap .c-btn-more {
    display: inline-block;
    position: inherit;
    margin-top: 2rem;
  }
  .p-home-sec04-box__wrap h2 {
    text-align: left;
  }
  .p-home-sec04-box__wrap p {
    text-align: left;
  }
  .p-home-sec04-box.img-right .p-home-sec04-box__wrap {
    margin-top: 2rem;
  }
  .p-home-sec04-box.img-right .p-home-sec04-box__wrap .c-btn-more {
    display: inline-block;
    position: inherit;
    margin-top: 2rem;
  }
  .p-home-imgarea {
    width: 100%;
    margin-left: 0;
    background: url(../img/top/img__008.png) repeat-x center 0;
    background-size: 450px 27.5px;
  }
  .p-home-imgarea figure {
    width: 80%;
  }
  .p-home-sec05 {
    width: 100%;
    margin-left: 0;
    padding: 5rem 0;
  }
  .p-home-sec05-slide-box {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 100vw;
    margin-top: 4rem;
    margin-left: -5vw;
  }
  .p-home-sec06 {
    padding: 5rem 0;
  }
  .p-home-sec06-list li {
    width: 100%;
  }
  .p-home-sec06-list li figure {
    width: 90px;
    height: 90px;
    border-radius: 25px;
  }
  .p-home-sec06-list__wrap {
    width: calc(100% - 100px);
  }
  .p-home-sec06-list__tag span {
    font-size: 11px;
  }
  .p-home-sec06-list__ttl {
    font-size: 16px;
  }
  .p-hybrid-class-sec01 .c-contents-box__ico {
    width: auto;
    max-width: 100px;
  }
  .p-hybrid-class-sec02-list li:nth-child(1) {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-hybrid-class-sec02-list li:nth-child(2) {
    width: 100%;
  }
  .p-hybrid-class-sec02-list li figcaption {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .p-hybrid-class-sec03 .c-contents-box2-list__text {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-hybrid-class-sec03 .c-contents-box2__text {
    width: 90%;
    margin-inline: auto;
  }
  .p-hybrid-class-sec04-list li {
    width: 100%;
  }
  .p-hybrid-class-sec04-list li:last-of-type {
    width: 70%;
  }
  .p-hybrid-class-sec04-list-box iframe {
    aspect-ratio: 4/3;
  }
  .p-ict-sec02 .c-list-bbl .c-list-bbl__text {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-ict-sec02 .c-text-lead-s {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-ict-sec03 .c-list-bbl2 .c-list-bbl2__text {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-ict-sec03 .c-text-lead-s {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-ipad-sec04-box__item {
    width: 100%;
  }
  .p-ipad-sec06 h4 + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec06__item1 {
    width: 100%;
    margin-bottom: 4%;
  }
  .p-ipad-sec06__item2 {
    width: 100%;
  }
  .p-ipad-sec06 .c-table4 th,
  .p-ipad-sec06 .c-table4 td {
    text-align: center;
  }
  .p-ipad-sec07-list {
    display: flex;
    flex-wrap: wrap;
    align-items: normal;
    justify-content: center;
    gap: 2%;
  }
  .p-ipad-sec07-list li figcaption {
    font-size: 11px;
  }
  .p-ipad-sec07-list li figcaption br {
    display: none;
  }
  .p-ipad-sec07-list li {
    width: 23%;
    margin-bottom: 1%;
  }
  .p-ipad-sec07__item1 {
    width: 100%;
  }
  .p-ipad-sec07__item2 {
    width: 100%;
  }
  .p-ipad-sec07__text {
    text-align: left;
  }
  .p-ipad-sec07__btn {
    text-align: left;
  }
  .p-ipad-sec07__btn a {
    font-size: 14px;
  }
  .p-ipad-sec08-box__inner {
    padding: 2rem;
  }
  .p-ipad-sec08-box__inner figure {
    width: 100%;
  }
  .p-ipad-sec08-box-r {
    width: 100%;
    margin-top: 4rem;
  }
  .p-ipad-sec08-box-r .c-contents-box-bluearea__ttl2 + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec08 .p-dx-sec05-box__ttl1 + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec09-list li {
    width: 100%;
    margin-bottom: 2rem;
  }
  .p-ipad-sec09-list li p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec09-list__ttl3 {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec10-list li {
    width: 100%;
  }
  .p-ipad-sec10-list li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .p-ipad-sec10-list li:nth-child(2) {
    width: 100%;
  }
  .p-ipad-sec10-list li:nth-child(3) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .p-ipad-sec10-list li p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-ipad-sec11 .p-dx-sec05-box p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-sec01-list li {
    width: 28%;
  }
  .p-os-sec05-list li {
    width: 30%;
    margin-bottom: 1rem;
  }
  .p-os-sec05-list__ttl {
    height: 50px;
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-sec05-list__img img {
    width: auto;
    height: 70px;
  }
  .p-os-sec05-note {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-device-box figure {
    width: 100%;
  }
  .p-os-device-box__text {
    width: 100%;
  }
  .p-os-device-box__text p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-device-box .c-title-h3-nomal {
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .p-os-device-box .c-text-lead {
    font-size: clamp(14px, 0.8333vw, 16px);
    text-align: center;
  }
  .p-os-device .c-table-box:not(:nth-of-type(1)) {
    margin-top: 6rem;
  }
  .p-os-device .c-table-box__note {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-os-device .c-table-os {
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
  }
  .p-os-device .c-table-os td {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-device .c-table-os-text {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-device .c-table-os__th1 {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-os-device .c-table-os-head__text {
    padding-left: 0;
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-page-nav li {
    width: 100%;
  }
  .p-policy {
    padding: 3rem 0 0;
  }
  .p-policy .l-container {
    padding: 1.5rem 0 0;
  }
  .p-post-high-school-sec01 .c-contents-box__flex figure {
    width: 100%;
  }
  .p-post-high-school-sec01 .c-text-lead {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-post-high-school-sec02 .c-contents-box3__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .p-post-high-school-sec02 .c-contents-box3__img {
    width: 100%;
    text-align: center;
  }
  .p-post-high-school-sec03 .c-text-lead-s {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-post-high-school-sec04-list li:nth-child(1), .p-post-high-school-sec04-list li:nth-child(2) {
    width: 100%;
  }
  .p-post-high-school-sec04-list li:nth-child(3), .p-post-high-school-sec04-list li:nth-child(4), .p-post-high-school-sec04-list li:nth-child(5) {
    width: 100%;
  }
  .p-reason .c-title-h2-bl {
    padding-left: 2em;
  }
  .p-reason .c-title-h2-bl img {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-reason-sec01 .c-contents-box img {
    width: 100%;
  }
  .p-reason-sec01::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-reason-sec03::after {
    bottom: -50px;
    width: 150px;
    height: 150px;
  }
  .p-reason-sec04-box figure {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
    text-align: center;
  }
  .p-reason-sec04-box figure img {
    width: 35%;
  }
  .p-reason-sec04-box-r {
    width: 100%;
    padding: 4rem 2rem;
  }
  .p-reason-sec04-box-r h3 img {
    width: 50px;
  }
  .p-reason-sec04-box-r p {
    text-align: left;
  }
  .p-reason-sec04-box-r figure img {
    width: 100%;
  }
  .p-reason-sec04-box2 {
    padding: 1rem 2rem 2rem;
  }
  .p-reason-sec04-box2__wrap {
    padding: 1rem;
  }
  .p-reason-sec04-box3-list {
    gap: 1rem;
  }
  .p-reason-sec04-box3-list li {
    width: 30%;
  }
  .p-reason-sec04-box3__ttl {
    top: -2.5rem;
    font-size: 14px;
  }
  .p-reason-sec04__flex .c-btn-more {
    margin: 2rem 0 0 auto;
  }
  .p-reason-sec05-box-img {
    width: 100%;
  }
  .p-reason-sec05-box-r {
    width: 100%;
    padding: 2rem;
  }
  .p-reason-sec06 .p-dx-sec06-box img {
    width: 100%;
  }
  .p-reason-sec06-box {
    font-size: 14px;
    text-align: left;
  }
  .p-reason-sec06-box-img {
    top: 3rem;
    left: 1rem;
    width: 80px;
  }
  .p-trade_in__sec--contents .c-text-attention2 {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-trade_in__sec--contents .c-text-lead p {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .p-trade_in__sec--contents .c-contents-box__flex {
    flex-direction: column;
    gap: 2rem;
  }
  .p-trade_in__sec--contents .c-contents-box__flex.align-center.mw80 {
    max-width: 100%;
  }
  .p-trade_in__sec--contents .c-contents-box__flex-item.bg-white {
    width: 100%;
  }
  .p-trade_in__sec--contents .c-contents-box__flex-item.bg-white iframe {
    aspect-ratio: 4/3;
    height: auto;
  }
  .p-trade_in__sec--contents .c-contents-box__flex.pt-60 {
    padding-top: 0;
  }
  .p-trade_in__sec--contents .c-contents-box__flex.pb-60 {
    padding-top: 0;
  }
  .p-trade_in__sec--contents .c-contents-box__flex.w100 figure {
    width: 80%;
    margin-top: 2rem;
    margin-inline: auto;
  }
  .p-trade_in__sec--contents .c-contents-box__flex.w70 figure {
    width: 80%;
    margin-top: 2rem;
    margin-inline: auto;
  }
  .p-trade_in__sec--contents .c-text-lead p {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0 2rem;
  }
  .p-trade_in__sec--contents .p-post-trade_in-list {
    grid-template-columns: 1fr 1fr;
  }
  .p-trade_in__sec--contents .p-post-trade_in-list__ttl {
    font-size: clamp(18px, 1.458vw, 28px);
  }
  .p-trade_in__sec--contents .p-post-trade_in-list__text {
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-windows-sec01-list li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .p-windows-sec01-list li:nth-child(2) {
    width: 100%;
  }
  .p-windows-sec01-list li:nth-child(3) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .p-windows-sec01 .c-text-lead {
    text-align: center;
  }
  .p-windows-sec02::before {
    width: 150px;
    height: 150px;
  }
  .p-windows-sec02::after {
    width: 150px;
    height: 150px;
  }
  .p-windows-sec02-list1 {
    width: 100%;
  }
  .p-windows-sec02-list1__ttl {
    line-height: 4;
  }
  .p-windows-sec02-list1 ul li {
    width: 100%;
  }
  .p-windows-sec02-list1 ul li:nth-child(1) {
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomleft: 0;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
  }
  .p-windows-sec02-list1 ul li:nth-child(2) {
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  .p-windows-sec02-list2 {
    width: 100%;
  }
  .p-windows-sec02-list2__ttl {
    line-height: 4;
  }
  .p-windows-sec02-list2 ul li:nth-child(1) {
    width: 100%;
  }
  .p-windows-sec03::after {
    width: 150px;
    height: 150px;
  }
  .p-windows-h1 > div {
    width: 80%;
    max-width: 10em;
  }
  .p-windows-sec01-list__ttl1,
  .p-windows-sec01-list__ttl2 {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-windows-sec01-list li p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-windows-sec01 .p-encho-sec03-list li {
    width: 100%;
  }
  .p-windows-sec02-list__ttl + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-table-windows {
    width: 1100px !important;
  }
  .c-table-windows td.c-table-windows-head {
    width: 10%;
    padding-inline: 1rem !important;
  }
  .c-table-windows td.c-table-windows-head .c-table-windows-head__wrapper {
    display: flex;
    flex-direction: column;
  }
  .c-table-windows td.c-table-windows-head .c-table-windows-head__text {
    padding-left: 0;
  }
  .p-windows__eduwin11 {
    padding: 1.75rem 1rem;
  }
  .p-windows__eduwin11-wrapper {
    flex-direction: column-reverse;
  }
  .p-windows__eduwin11-wrapper > div {
    width: 100%;
  }
  .p-windows__eduwin11-wrapper > div > p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .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;
  }
  .p-encho-sec01 .l-container::before {
    height: 80%;
  }
  .p-encho-sec01-list {
    gap: 1rem 2%;
  }
  .p-encho-sec01-list li {
    width: 32%;
  }
  .p-encho-sec01-list__img + p {
    height: auto;
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec02-tips {
    text-align: center;
  }
  .p-encho-sec05__container {
    padding: 2rem 1rem;
  }
  .p-encho-sec05__containerTitle {
    margin-left: 7rem;
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-encho-sec05__containerTitle::after {
    top: -3rem;
    left: -11rem;
    width: 10rem;
    height: 10rem;
  }
  .p-encho-sec05__containerTitle--big {
    font-size: clamp(18px, 1.354vw, 26px);
  }
  .p-encho-sec05__box {
    padding: 3rem 0;
  }
  .p-encho-sec05__example {
    line-height: 1.4;
  }
  .p-encho-sec05__pcflex {
    flex-direction: column;
    margin: 2rem 0;
  }
  .p-encho-sec05__pcflex figure {
    width: 70%;
  }
  .p-encho-sec05__pcflex--text {
    line-height: 1.4;
  }
  .p-encho-sec05__list {
    flex-direction: column;
  }
  .p-encho-sec05__list--pink {
    line-height: 1.5;
  }
  .p-encho-sec05__list li {
    padding: 4rem 0;
  }
  .p-encho-sec05__list li:not(:last-child)::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-encho-sec05__list li:first-child {
    border-radius: 20px 20px 0 0;
  }
  .p-encho-sec05__list li:first-child:first-child::after {
    top: 50%;
    transform: rotate(90deg) translate(165%, 44%);
  }
  .p-encho-sec05__list li:nth-child(3)::after {
    top: 50%;
    transform: rotate(90deg) translate(165%, 44%);
  }
  .p-encho-sec05__list li:last-child {
    padding-top: 4rem;
    border-radius: 0 0 20px 20px;
  }
  .p-encho-sec05__list li figure {
    max-width: 50%;
    margin-top: 0;
  }
  .p-encho-sec05__result::after {
    margin-top: 2rem;
  }
  .p-encho-sec05__result--year {
    margin-top: 6rem;
    margin-right: 0;
  }
  .p-encho-sec05__result--text {
    margin-top: 2rem;
    line-height: 1.4;
  }
  .p-encho-sec06::before {
    top: -6rem;
  }
  .p-encho-sec06__lead {
    line-height: 1.4;
    text-align: center;
  }
  .p-encho-sec06__titleBox {
    width: 100%;
    margin-bottom: 3rem;
  }
  .p-encho-sec06__title::before {
    left: -8rem;
    width: 8rem;
    height: 8rem;
  }
  .p-encho-sec06__yobiList {
    flex-direction: column;
    margin-top: 4rem;
    padding: 0;
    gap: 1rem;
  }
  .p-encho-sec06__yobiList--plusCont, .p-encho-sec06__yobiList--equalCont {
    top: 0px;
  }
  .p-encho-sec06__yobiList--equal {
    width: 25px;
    transform: rotate(90deg);
  }
  .p-encho-sec06__yobiList ul:first-of-type {
    width: 100%;
  }
  .p-encho-sec06__yobiList ul:nth-of-type(2) li:last-of-type {
    position: static;
    margin-top: 2rem;
  }
  .p-encho-sec06__yobiList ul:last-of-type li:last-of-type {
    position: static;
    margin-top: 2rem;
  }
  .p-encho-sec06__yobiList ul li:last-of-type {
    position: static;
  }
  .p-encho-sec09__table {
    width: 600px;
  }
  .p-encho-sec09__table--wrap {
    overflow-x: scroll;
  }
  .p-encho-sec09__table tr:first-of-type th {
    padding: 0 2rem;
    white-space: nowrap;
  }
  .p-encho-sec09__table tr:first-of-type th:first-of-type {
    width: 80% !important;
  }
  .p-encho-sec09__table tr td:first-of-type {
    flex-direction: column;
    text-align: center;
  }
  .p-encho-sec09__table tr td p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec09__table tr td p .note {
    font-size: 0.6em;
  }
  .p-encho-sec09__caption {
    height: auto;
  }
  .p-encho-sec09__caption .c-table-note {
    font-size: clamp(10px, 0.625vw, 12px);
  }
  .p-encho-ttl_insec {
    font-size: clamp(18px, 1.25vw, 24px);
  }
  .p-encho-sec10-content-ttl > p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec10-content-lead {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec10-content-list__plus {
    display: block;
    position: static;
    top: auto;
    left: auto;
    margin-top: -2em;
    transform: none;
  }
  .p-encho-sec10-content-list__plus > img {
    transform: rotate(90deg);
  }
  .p-encho-sec10-content-list.p-dx-sec03-list {
    row-gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .p-encho-sec10-content-list.p-dx-sec03-list li {
    width: 80%;
    margin-inline: auto;
  }
  .p-encho-sec10-content-list.p-dx-sec03-list li:nth-of-type(2) {
    margin-bottom: 4em !important;
  }
  .p-encho-sec10-content-list.p-dx-sec03-list li > p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec10-content-list.p-dx-sec03-list li:nth-of-type(5) figure {
    margin-bottom: -3rem;
  }
  .p-encho-sec10-support.p-reason-sec04-box3 {
    padding-block: 1rem;
  }
  .p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list {
    width: 90%;
    gap: 1rem 2%;
  }
  .p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list > li {
    width: 47.5%;
  }
  .p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list > li figure img {
    width: 100%;
  }
  .p-encho-sec10-support.p-reason-sec04-box3 .p-reason-sec04-box3-list__ttl {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec10-support__sup {
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-encho-sec12 .c-contents-box .p-reason-sec06-box {
    margin-block: 2rem;
    padding-left: 10rem;
  }
  .p-encho-sec12 .c-contents-box .p-reason-sec06-box-img {
    top: 0rem;
    left: 0;
    width: 10rem;
  }
  .p-encho-sec12__contents {
    row-gap: 2rem;
  }
  .p-encho-sec12__contents > li {
    width: 100%;
  }
  .p-encho-sec12__contents > li h3 {
    max-width: 100%;
  }
  .p-encho-sec12__contents-dlist > dl dt {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec12__contents-ulist li {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec13__contents > li {
    row-gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
    padding: 2rem;
  }
  .p-encho-sec13__contents > li > figure {
    width: 75%;
    margin-inline: auto;
  }
  .p-encho-sec13__contents > li h3 {
    font-size: clamp(18px, 1.458vw, 28px);
    text-align: center;
  }
  .p-encho-sec13__contents-list > li {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-encho-sec13 .p-encho-sec13__h3 {
    max-width: 100%;
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-encho-sec13 .c-contents-box__add02 .c-text-lead + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-reason-sec04-box__ttl {
    width: 100%;
    padding-inline: 1em;
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-reason-sec04-box3__ttl {
    align-content: center;
    height: auto;
    padding: 0.5em 0.15em;
    border-radius: 20px 20px 0 0;
    background-image: none;
    background-color: white;
    font-size: clamp(18px, 1.046vw, 20px);
    line-height: 1.4;
  }
  .p-reason-sec04-box3-list__ttl {
    font-size: clamp(16px, 0.9375vw, 18px);
  }
  .p-reason-sec06-box {
    padding-left: 10rem;
  }
  .p-reason-sec06-box > p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  /* .p-dx-sec01 {
    padding-bottom: 2rem;
  } */
  .p-dx-sec01 .c-contents-box {
    top: -5rem;
    margin-top: 10rem;
  }
  .p-dx-sec03-list__ttl {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-dx-sec03-list .c-list-check li {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-dx-sec04-list__ttl {
    font-size: clamp(18px, 1.046vw, 20px);
  }
  .p-dx-sec04-list__text {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec02 .p-chrome-sec02-list2-box dl dt {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec02 .p-chrome__img2text-google {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec02-box2__list2__ttl + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec03-box-r {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec02-btn .c-btn--white2,
  .p-chrome-sec03-btn2 .c-btn--white2 {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-chrome-sec05-box__ttl1 + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .p-event-tag__list li {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
  .c-table3 tbody tr td:first-of-type {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
}
@media screen and (max-width: 1360px) {
  .l-container--p0, .l-container {
    width: 100%;
  }
  .l-container {
    box-sizing: border-box;
    padding: 0 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--p0 {
    box-sizing: border-box;
    padding: 3rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-header {
    width: calc(100% - 4rem);
  }
  .l-wrapper {
    padding: 14.2rem 2rem 0 2rem;
  }
  #contents .l-wrapper {
    padding: 14.2rem 0 0;
  }
  #contents .l-wrapper .l-header {
    padding: 0 2rem;
  }
  .c-btn--yellow {
    font-size: 13px !important;
  }
  .c-btn--green {
    font-size: 13px !important;
  }
  .c-table-box {
    width: 100%;
    overflow-x: scroll;
  }
  .c-table-box table {
    width: 1200px;
  }
  .c-title-area--anchor li a::after {
    visibility: hidden;
  }
  .c-title-area--anchor.w6 li {
    width: 23.75%;
    max-width: 23.75%;
  }
  .p-byad-sec01__ico {
    top: -2.5%;
    left: 3%;
    width: 100px;
  }
  .p-byad-sec01-box1 {
    padding: 4rem 20rem 4rem 2rem;
  }
  .p-byad-sec04__ico {
    top: -60px;
    left: 3%;
    width: 100px;
    height: 100px;
  }
  .p-byad-sec06-box1 {
    padding: 4rem 20rem 4rem 2rem;
  }
  .p-byad-sec06-box2 {
    padding: 4rem 2rem 4rem 20rem;
  }
  .p-chrome-sec05-box {
    margin-bottom: 6rem;
  }
  .p-chrome-sec05-box-r {
    width: 100%;
  }
  .p-chrome-sec05-box-l {
    width: 100%;
  }
  .p-chrome-sec05-box-imgl {
    position: inherit;
    left: inherit;
    width: 100%;
  }
  .p-chrome-sec05-box-imgr {
    position: inherit;
    right: inherit;
    width: 100%;
  }
  .p-dx-sec05-box-r {
    width: 100%;
  }
  .p-dx-sec05-box-l {
    width: 100%;
  }
  .p-dx-sec05-box-imgl {
    position: inherit;
    left: inherit;
    width: 100%;
  }
  .p-dx-sec05-box-imgr {
    position: inherit;
    right: inherit;
    width: 100%;
  }
  .p-ipad-sec11 .p-dx-sec05-box-l {
    width: 100%;
    min-height: inherit;
    margin-left: 0;
  }
  .p-ipad-sec11 .p-dx-sec05-box-r {
    min-height: inherit;
    margin-left: 0;
  }
  .p-ipad-sec11 .c-btn-more {
    position: relative;
  }
  .p-encho-sec03-list__ttl + p {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
}
@media screen and (max-width: 1360px) and (max-width: 768px) {
  .l-header {
    top: 0;
    width: 100%;
    line-height: 1.3;
  }
  .l-wrapper {
    padding: 7rem 0 0 0;
  }
  #contents .l-wrapper {
    padding: 7rem 0 0 0;
  }
  .c-title-area--anchor li a::after {
    visibility: visible;
  }
  .c-title-area--anchor.w6 li {
    width: 100%;
    max-width: 100%;
  }
  .p-byad-sec01-box1 {
    padding: 13rem 2rem 2rem;
  }
  .p-byad-sec04__ico {
    top: -60px;
    left: -3%;
    width: 80px;
    height: 80px;
  }
  .p-byad-sec06-box1 {
    padding: 13rem 2rem 2rem;
  }
  .p-byad-sec06-box2 {
    padding: 13rem 2rem 2rem;
  }
  .p-encho-sec10-content-list__plus > p {
    font-size: clamp(18px, 1.25vw, 24px);
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn--line:focus:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-btn--line:hover:focus {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
  .p-breadcrumb ul a:hover::after {
    transform: scale(1, 1);
  }
  .p-column-detail-main a:not(.c-btn--gr):hover {
    text-decoration: none;
  }
  .p-column-detail-main a:not(.c-btn--gr).blank:hover {
    text-decoration: none;
  }
  .p-header__logo a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
  .c-table3 .c-table-tag + a:hover {
    color: #0e1155;
    font-weight: 700;
  }
}
@media (hover: hover) and (pointer: fine) and (hover: hover) and (pointer: fine) {
  .c-btn--line:hover:hover {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media all and (max-width: 1080px) and (min-width: 768px) {
  .p-header__nav2 ul li a {
    font-size: clamp(14px, 0.8333vw, 16px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-header__inner2.is-active nav {
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) and (max-width: 768px) {
  .p-header__inner2.is-active nav a {
    color: #fff;
    font-size: 20px !important;
  }
}
@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
  .p-header__inner2.is-active ul:nth-of-type(2) li a:hover {
    background: none !important;
  }
}
@media screen and (max-width: 480px) {
  .p-hybrid-class-sec01 .c-title-h2-nomal-s {
    justify-self: flex-end;
    width: 70%;
  }
}

/* 250925 */
:is(#top, #contents.windows, #contents.hybrid-class, #contents.post-high-school) .p-cta-list li a,
.p-home-mv__link li a {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
:is(#top, #contents.windows, #contents.hybrid-class, #contents.post-high-school) .p-cta-list li:nth-child(1) a {
  padding-top: 2rem;
}
.c-problem {
  padding-bottom: 10rem;
}
.c-problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: auto;
}
.c-problem__item {
  width: calc((100% - 75px) / 4);
  border: 3px solid #d8e0ff;
  border-radius: 25px;
  overflow: hidden;
}
.c-problem__item--img {
  text-align: center;
}
.c-problem__item--img img {
  width: 100%;
}
.c-problem__item--txt {
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
}
.c-faq-inc {
  padding-bottom: 10rem;
}
.p-faq-list__flex {
  font-size: 20px;
}
.l-arrow-white {
  position: relative;
  padding-top: 8rem;
}
.l-arrow-white::after {
  content: '';
  display: block;
  width: 250px;
  height: 75px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0,
  50% 100%);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.l-arrow-blue {
  position: relative;
  padding-top: 8rem;
}
.l-arrow-blue::after {
  content: '';
  display: block;
  width: 250px;
  height: 75px;
  background: #5b7df9;
  clip-path: polygon(0 0, 100% 0,
  50% 100%);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.l-arrow-gr {
  position: relative;
  padding-top: 8rem;
}
.l-arrow-gr::after {
  content: '';
  display: block;
  width: 250px;
  height: 75px;
  background: #f5f5f5;
  clip-path: polygon(0 0, 100% 0,
  50% 100%);
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.c-text-lead-s .upper {
  font-size: 1.5em;
}
.c-page-mv {
  padding-top: 6rem;
  padding-bottom: 10rem;
  overflow: hidden;
}
.c-page-mv-logo {
  margin-bottom: 1rem;
}
.windows .c-page-mv-logo {
  background: #fff;
  padding: 15px;
  width: 200px;
  border-radius: 10px;
}
.c-page-mv h1 {
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.40625;
}
.c-page-mv-txt {
  font-size: clamp(18px, 1.458vw, 28px);
  font-weight: bold;
  margin-top: 2rem;
}
.c-page-mv .l-container {
  position: relative;
  padding: 0 5rem;
}
.c-page-mv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 852px;
}
.c-page-mv-img img {
  width: 100%;
}
.c-page-mv-cta {
  margin-top: 50px;
}
.c-page-mv-cta .p-cta-list {
  padding-top: 0;
}
.c-about-copilot {
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 4rem;
  max-width: 121rem;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 50px 70px;
}
.c-about-copilot__logo {
  width: 100%;
  text-align: center;
}
.c-about-copilot__logo img {
  width: 320px;
}
.c-about-copilot__img {
  width: 50%;
  text-align: center;
}
.c-about-copilot__txt {
  width: 50%;
}
.c-about-copilot__txt--lead p {
  color: #0078d4;
  font-size: clamp(18px, 1.458vw, 28px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.c-about-copilot__txt .c-text-attention {
  color: #fa2b54;
  font-size: 125%;
}

@media screen and (max-width: 768px) {
  .c-page-mv {
    padding-bottom: 0;
  }
  .c-page-mv .l-container {
    padding: 0 5vw;
  }
  .c-page-mv-img {
    position: inherit;
    top: inherit;
    right: inherit;
    width: 100%;
  }
  .c-problem__item {
    width: 100%;
  }
  .l-arrow-white::after,
  .l-arrow-blue::after,
  .l-arrow-gr::after {
    max-width: 250px;
    width: 70%;
    height: 50px;
  }
  .c-about-copilot {
    padding: 4rem 3rem 3rem;
    row-gap: 3rem;
  }
  .c-about-copilot__logo img {
    width: 200px;
  }
  .c-about-copilot__img,
  .c-about-copilot__txt {
    width: 100%;
  }
}
 /* 251204アンカーリンク設定*/
    #anker1 {
      scroll-margin-top: 140px;
    }
    #anker2 {
      scroll-margin-top: 140px;
    }
    #anker3 {
      scroll-margin-top: 140px;
    }
    #anker4 {
      scroll-margin-top: 100px;
    }

@media screen and (max-width: 768px) {
    #anker1 {
      scroll-margin-top: 60px;
    }
    #anker2 {
      scroll-margin-top: 60px;
    }
    #anker3 {
      scroll-margin-top: 60px;
    }
    #anker4 {
      scroll-margin-top: 60px;
    }
}