@charset "UTF-8";
:root {
  --black: 51,51,51;
  --orange: 252,122,19;
  --orange02: 231,98,3;
  --yellow: 255,162,0;
  --yellow02: 255,238,206;
  --yellow03: 254,247,232;
  --gray: 245,245,245;
  --gray02: 149,156,162;
  --gray03: 180,187,193;
  --gray04: 207,207,207;
  --gray05: 210,210,210;
  --green: 0,156,68;
  --border: rgba(var(--black),.6);
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
}

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

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

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

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  min-width: 320px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    font-size: 1.6rem;
  }
}

.l-wrapper {
  position: relative;
}

@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}

/* sp <--> tb <--> pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1159px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1160px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1160px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-font-en {
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

.u-font-oswald {
  font-family: "Oswald", sans-serif;
  line-height: 1.1;
}

.u-font-mincho {
  font-family: "Shippori Mincho", serif;
  line-height: 1.1;
}

/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}

a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}

/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-style: solid;
  border-width: 1px 0 0;
}
.c-archive01__item:last-child {
  border-width: 1px 0;
}
.c-archive01__item-in {
  display: block;
  padding: 10px 0;
}
.c-archive01__item-meta {
  display: flex;
  flex-wrap: wrap;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  padding: 5px 0;
}
.c-archive01__item-cat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -5px -5px 0;
}
.c-archive01__item-cat-item {
  margin: 0 5px 5px 0;
  padding: 5px 10px;
  background: rgb(var(--black));
  color: #fff;
}
.c-archive01__item-head {
  overflow: hidden;
  display: -webkit-box;
  max-height: 1.8em;
  line-height: 1.8;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 5px;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-head {
    max-height: 3.6em;
    -webkit-line-clamp: 2;
  }
}

/* .c-bg-gray
================================================== */
.c-bg-gray {
  background-color: rgb(var(--gray));
}

/* .c-bg-white
================================================== */
.c-bg-white {
  background-color: #fff;
}

/* .c-btn01
================================================== */
.c-btn01 {
  width: 100%;
  height: 86px;
  background-color: rgb(var(--green));
  color: #fff;
  position: relative;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.16);
}
.c-btn01__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.c-btn01__txt {
  line-height: 1.1;
  font-weight: 700;
}
.c-btn01__txt.is-sub {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.c-btn01__txt.is-main {
  font-size: 1.8rem;
}
.c-btn01__ico {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.c-btn01__ico svg {
  width: 18px;
  height: 8px;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 120px;
  }
  .c-btn01::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
  }
  .c-btn01:hover {
    background-color: #00AF4C;
    color: #fff;
  }
  .c-btn01:hover::before {
    -webkit-animation: shine 0.7s;
    animation: shine 0.7s;
  }
  .c-btn01__txt.is-sub {
    font-size: 1.7rem;
  }
  .c-btn01__txt.is-main {
    font-size: 2.6rem;
  }
  .c-btn01__ico {
    right: 25px;
  }
  .c-btn01__ico svg {
    width: 43px;
    height: 13px;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-orange
================================================== */
.c-color-orange {
  color: rgb(var(--orange));
}

/* .c-color-gray03
================================================== */
.c-color-gray03 {
  color: rgb(var(--gray03));
}

/* .c-color-gray05
================================================== */
.c-color-gray05 {
  color: rgb(var(--gray05));
}

/* .c-color-yellow
================================================== */
.c-color-yellow {
  color: rgb(var(--yellow));
}

/* .c-color-green
================================================== */
.c-color-green {
  color: rgb(var(--green));
}

/* .c-content01
================================================== */
.c-content01 {
  position: relative;
}
.c-content01::before, .c-content01::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.c-content01::before {
  width: 30px;
  height: 30px;
  background: url(../img/common/ico_square01.png) no-repeat center/cover;
  top: calc(50% - 8px);
  right: 15px;
  transform: translateY(-50%);
}
.c-content01::after {
  width: 28px;
  height: 30px;
  background: url(../img/common/ico_square02.png) no-repeat center/cover;
  bottom: -15px;
  left: 20px;
}
.c-content01.is-point::before {
  top: calc(50% + 18px);
}
.c-content01.is-point::after {
  display: none;
}
.c-content01.is-point .c-content01-list__item:last-child {
  border-bottom: 2px dotted rgb(var(--gray03));
  padding-bottom: 18px;
}
.c-content01__item {
  padding: 25px 20px 30px;
  box-sizing: border-box;
  position: relative;
}
.c-content01__item:last-child .c-content01__head {
  font-size: 2.4rem;
  color: rgb(var(--orange));
}
.c-content01__item:last-child .c-content01-list__item::before {
  background: url(../img/common/ico_check01.png) no-repeat center/cover;
}
.c-content01__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.c-content01__lbl {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  box-sizing: border-box;
  background-color: rgb(var(--black));
  color: #fff;
  margin-bottom: 6px;
}
.c-content01__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}
.c-content01__head.is-has-img {
  width: 100%;
  display: flex;
  align-items: center;
}
.c-content01__head span {
  color: rgb(var(--gray02));
}
.c-content01__head-img {
  display: block;
  width: 43px;
  margin-right: 10px;
}
.c-content01-list__item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 2px dotted rgb(var(--gray03));
}
.c-content01-list__item::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/common/ico_check02.png) no-repeat center/cover;
  position: absolute;
  top: 2px;
  left: 0;
}
.c-content01-list__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-content01-list__txt {
  font-size: 1.6rem;
  font-weight: 500;
}
.c-content01-list__line {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.c-content01-list__line::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: rgba(var(--gray04), 0.6);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.c-content01-list__line.is-yellow::before {
  background-color: #FFF700;
}
@media all and (min-width: 768px) {
  .c-content01 {
    display: flex;
    align-items: stretch;
  }
  .c-content01::before {
    width: 40px;
    width: 41px;
    transform: none;
    top: -11px;
    right: 80px;
  }
  .c-content01::after {
    width: 91px;
    height: 96px;
    left: 129px;
    bottom: -68px;
  }
  .c-content01 .c-content01__item.c-bg-white .c-content01__head {
    margin-bottom: 23px;
    transform: translateY(10px);
  }
  .c-content01.is-point::before {
    top: -16px;
  }
  .c-content01.is-point .c-content01-list__item {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .c-content01.is-point .c-content01-list__item:last-child {
    border-bottom: none;
  }
  .c-content01.is-point .c-content01__item.c-bg-gray .c-content01__head {
    margin-bottom: 30px;
  }
  .c-content01.is-point .c-content01__item.c-bg-white .c-content01__head {
    margin-bottom: 0;
    padding-left: 24px;
  }
  .c-content01__item {
    width: 50%;
    padding: 46px 50px;
  }
  .c-content01__item:first-child {
    position: relative;
  }
  .c-content01__item:first-child::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 36.5px 0 36.5px 25px;
    border-color: transparent transparent transparent rgb(var(--orange));
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    z-index: 1;
  }
  .c-content01__item:last-child .c-content01__head {
    font-size: 3.2rem;
  }
  .c-content01__item:last-child .c-content01-list__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .c-content01__header {
    margin-bottom: 30px;
  }
  .c-content01__lbl {
    font-size: 1.6rem;
  }
  .c-content01__head {
    font-size: 2.5rem;
  }
  .c-content01__head-img {
    width: 64px;
    margin-right: 15px;
  }
  .c-content01-list__item {
    font-size: 1.9rem;
    margin-bottom: 33px;
    padding-bottom: 33px;
  }
  .c-content01-list__item::before {
    width: 26px;
    height: 26px;
  }
}

/* .c-counseling01
================================================== */
.c-counseling01 {
  position: relative;
  color: #fff;
}
.c-counseling01::before, .c-counseling01::after {
  content: "";
  position: absolute;
}
.c-counseling01::before {
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_counseling_sp.png) no-repeat top center/cover;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.c-counseling01::after {
  width: 339px;
  height: 121px;
  background: url(../img/common/txt_counseling.png) no-repeat top center/cover;
  opacity: 0.58;
  left: calc(50% - 10px);
  top: 60px;
  transform: translateX(-50%);
}
.c-counseling01__inner {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.c-counseling01-head {
  text-align: center;
  margin-bottom: 12px;
}
.c-counseling01-head__sub {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.c-counseling01-head__main {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.c-counseling01__desc {
  margin-bottom: 32px;
}
.c-counseling01-list {
  margin-bottom: 30px;
}
.c-counseling01-list__item {
  display: flex;
  align-items: center;
  position: relative;
}
.c-counseling01-list__item + .c-counseling01-list__item {
  margin-top: 15px;
}
.c-counseling01-list__item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #FFC868 transparent transparent transparent;
  position: absolute;
  left: 37px;
  bottom: -9px;
}
.c-counseling01-list__item:last-child::before {
  display: none;
}
.c-counseling01-list__lbl {
  width: 84px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  background-color: #fff;
  color: rgb(var(--black));
  margin-right: 20px;
}
.c-counseling01-list__txt {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 700;
}
.c-counseling01__btn {
  margin-bottom: 9px;
}
.c-counseling01__note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .c-counseling01.is-last {
    z-index: 1;
  }
  .c-counseling01::before {
    background: url(../img/common/bg_counseling_pc.png) no-repeat top center/cover;
  }
  .c-counseling01::after {
    width: 827px;
    height: 369px;
    top: 112px;
    left: calc(50% + 21px);
  }
  .c-counseling01__inner {
    padding-top: 205px;
    padding-bottom: 177px;
  }
  .c-counseling01-head {
    margin-bottom: 24px;
  }
  .c-counseling01-head__sub {
    font-size: 2.2rem;
  }
  .c-counseling01-head__main {
    font-size: 4.5rem;
    line-height: 1.3333333333;
    letter-spacing: 0.08em;
  }
  .c-counseling01__desc {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
  }
  .c-counseling01-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
  }
  .c-counseling01-list::before {
    content: "";
    width: 1px;
    height: 100px;
    background-color: #ffffff40;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .c-counseling01-list__item {
    width: 25%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .c-counseling01-list__item + .c-counseling01-list__item {
    margin-top: 0;
  }
  .c-counseling01-list__item::before {
    border-width: 14px 0 14px 22px;
    border-color: transparent transparent transparent #FFC868;
    top: 50%;
    right: -15px;
    left: unset;
    bottom: unset;
    transform: translateY(-50%);
    z-index: 1;
  }
  .c-counseling01-list__item::after {
    content: "";
    width: 1px;
    height: 100px;
    background-color: #ffffff40;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .c-counseling01-list__lbl {
    height: 28px;
    padding-top: 2px;
    margin: 0 auto 9px;
    font-size: 1.9rem;
  }
  .c-counseling01-list__txt {
    font-size: 2rem;
    line-height: 1.75;
  }
  .c-counseling01__btn {
    max-width: 580px;
    width: 100%;
    margin: 0 auto 40px;
  }
  .c-counseling01__note {
    font-size: 1.5rem;
    text-align: center;
  }
}

/* .c-head01
================================================== */
.c-head01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 28px;
}
.c-head01__ja {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.c-head01__en {
  font-size: 4.8rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}
.c-head01__img {
  position: absolute;
}
.c-head01__img img {
  position: relative;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .c-head01 {
    margin-bottom: 85px;
  }
  .c-head01__ja {
    font-size: 1.7rem;
    margin-bottom: 23px;
  }
  .c-head01__en {
    font-size: 11rem;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* .c-lbl01
================================================== */
.c-lbl01 {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 5px 9px;
  box-sizing: border-box;
  background-image: linear-gradient(to right, #F6B129, #FF5D07);
  color: #fff;
}
@media all and (min-width: 768px) {
  .c-lbl01 {
    font-size: 3.3rem;
    line-height: 1.3333333333;
    padding: 7px 16px;
  }
}

/* .c-line01
================================================== */
.c-line01 {
  width: 100%;
  height: 3px;
  background-color: rgb(var(--gray03));
  margin-top: 14px;
  position: relative;
}
.c-line01::before, .c-line01::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 14.5px 0 14.5px;
}
.c-line01::before {
  border-color: rgb(var(--gray03)) transparent transparent transparent;
  bottom: -9px;
}
.c-line01::after {
  border-color: #F5F5F5 transparent transparent transparent;
  bottom: -5px;
}
.c-line01__bg {
  width: 100%;
  height: 4px;
  background-color: rgb(var(--gray));
  position: absolute;
  top: -4px;
  left: 0;
}
.c-line01.is-orange {
  background-color: rgb(var(--orange));
}
.c-line01.is-orange::before {
  border-color: rgb(var(--orange)) transparent transparent transparent;
}
.c-line01.is-orange::after {
  border-color: #fff transparent transparent transparent;
}
.c-line01.is-orange .c-line01__bg {
  background-color: #fff;
}
.c-line01.is-black {
  background-color: #000;
}
.c-line01.is-black::before {
  border-color: #000 transparent transparent transparent;
}
.c-line01.is-black::after {
  border-color: rgb(var(--yellow03)) transparent transparent transparent;
}
.c-line01.is-black .c-line01__bg {
  background-color: rgb(var(--yellow03));
}
@media all and (min-width: 768px) {
  .c-line01 {
    margin-top: 20px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
}
.c-pager01 li.pages span {
  width: auto;
  border: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--black));
}
.c-pager01 li.first, .c-pager01 li.previous {
  margin-right: 15px;
}
.c-pager01 li.first a, .c-pager01 li.last a {
  width: auto;
  border-color: transparent;
  padding-right: 15px;
  padding-left: 15px;
}
.c-pager01 li.next, .c-pager01 li.last {
  margin-left: 15px;
}
.c-pager01 li.extend span {
  border: 0;
}
@media all and (min-width: 768px) {
  .c-pager01 li a:hover {
    text-decoration: none;
    border: 1px solid rgb(var(--black));
    background-color: rgb(var(--black));
    color: #fff;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  line-height: 1;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 50px;
  padding: 15px;
  border: 1px solid;
  text-decoration: none;
}
.c-pager02__previous, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__previous {
  float: left;
}
.c-pager02__previous a {
  justify-content: flex-start;
  padding-left: 30px;
}
.c-pager02__next {
  float: right;
}
.c-pager02__next a {
  justify-content: flex-end;
  padding-right: 30px;
}
.c-pager02__all {
  width: 100%;
  clear: both;
  padding-top: 20px;
}
.c-pager02__all a {
  justify-content: center;
}
@media all and (min-width: 768px) {
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    background: rgb(var(--black));
    color: #fff;
    border-color: rgb(var(--black));
  }
}

/* .c-single-content
================================================== */
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 1em 0;
}
.c-single-content a {
  text-decoration: underline;
}
@media all and (min-width: 1160px) {
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content .alignleft {
    float: left;
  }
  .c-single-content .alignright {
    float: right;
  }
  .c-single-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* .c-tab01
================================================== */
.c-tab01 {
  display: flex;
  align-items: stretch;
  margin-left: -4px;
}
.c-tab01.is-price {
  margin-left: -5px;
}
.c-tab01.is-price .c-tab01__item {
  width: calc(50% - 5px);
  height: 60px;
}
.c-tab01.is-price .c-tab01__item-ja {
  font-size: 1rem;
  line-height: 1.7;
}
.c-tab01.is-price .c-tab01__item-en {
  font-size: 1.8rem;
  line-height: 1.5;
}
.c-tab01.is-price .c-tab01__item.is-active {
  background-color: #fff;
}
.c-tab01.is-price .c-tab01__item.is-active .c-tab01__item-ja {
  color: rgb(var(--orange));
}
.c-tab01.is-price .c-tab01__item.is-active .c-tab01__item-en {
  color: #212121;
}
.c-tab01__item {
  width: calc(33.3333333333% - 4px);
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  background-color: rgb(var(--yellow));
  color: #fff;
}
.c-tab01__item-num {
  font-size: 1.8rem;
}
.c-tab01__item.is-active {
  background-color: rgb(var(--yellow03));
  color: rgb(var(--orange));
  border-top: 3px solid rgb(var(--orange));
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-tab01 {
    margin-left: -15px;
  }
  .c-tab01.is-price {
    margin-left: -20px;
  }
  .c-tab01.is-price .c-tab01__item {
    width: calc(50% - 20px);
    height: 100px;
    margin-left: 20px;
  }
  .c-tab01.is-price .c-tab01__item-ja {
    font-size: 1.3rem;
    line-height: 1.5384615385;
    margin-bottom: -7px;
  }
  .c-tab01.is-price .c-tab01__item-en {
    font-size: 3.7rem;
    line-height: 1.5135135135;
  }
  .c-tab01__item {
    width: calc(33.3333333333% - 15px);
    height: 100px;
    margin-left: 15px;
    font-size: 2.7rem;
  }
  .c-tab01__item-num {
    font-size: 3.2rem;
  }
  .c-tab01__item-desc {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5384615385;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
    margin-top: 3px;
  }
  .c-tab01__item.is-active {
    border-top-width: 5px;
  }
  .c-tab01__item.is-active .c-tab01__item-num {
    font-size: 4.5rem;
  }
  .c-tab01__item.is-active .c-tab01__item-desc {
    color: #212121;
  }
}

/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}

/* .l-footer
================================================ */
.l-footer {
  background: url(../img/common/bg_footer01_sp.png) no-repeat top center/cover;
  margin-top: -159px;
}
.l-footer__inner {
  padding-top: 312px;
  padding-bottom: 50px;
  position: relative;
}
.l-footer__inner::before {
  content: "";
  width: 81px;
  height: 69px;
  background: url(../img/common/ico_square03.png) no-repeat center/cover;
  position: absolute;
  top: 178px;
  right: 33px;
}
.l-footer__logo {
  width: 75px;
  margin: 0 auto 38px;
}
.l-footer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}
.l-footer__menu-item {
  line-height: 1.1;
}
.l-footer__menu-item + .l-footer__menu-item {
  margin-top: 18px;
}
.l-footer__menu-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #212121;
  position: relative;
  padding-right: 17px;
}
.l-footer__menu-link::after {
  content: "";
  width: 11px;
  height: 11px;
  background: url(../img/common/ico_link01.png) no-repeat center/cover;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
.l-footer__cr {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: rgb(var(--gray03));
  text-align: center;
}
.l-footer-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 65px;
  background-color: #F6D9B8;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.l-footer-nav.is-shown {
  opacity: 1;
  visibility: visible;
}
.l-footer-nav__inner {
  max-width: 344px;
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer-nav__txt {
  width: 170px;
  text-align: center;
  font-weight: 700;
}
.l-footer-nav__txt-sub {
  font-size: 0.9rem;
  line-height: 1.3333333333;
  color: #212121;
}
.l-footer-nav__txt-main {
  font-size: 1.3rem;
  color: rgb(var(--orange));
  line-height: 1.6153846154;
}
.l-footer-nav__btn {
  width: 158px;
  height: 46px;
  position: relative;
}
.l-footer-nav__btn::before {
  content: "";
  width: 42px;
  height: 43px;
  background: url(../img/common/img_footer01_sp.png) no-repeat center/cover;
  position: absolute;
  top: -19px;
  right: -15px;
  pointer-events: none;
}
.l-footer-nav__btn-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--green));
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}
.l-footer-nav__btn-sub {
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.l-footer-nav__btn-main {
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .l-footer {
    background: url(../img/common/bg_footer01_pc.png) no-repeat top center/cover;
    position: relative;
    margin-top: -151px;
  }
  .l-footer::before {
    content: "";
    width: calc(100% - 80px);
    height: 1px;
    background-color: #A3CDE251;
    position: absolute;
    top: 532px;
    transform: translateX(-50%);
    left: 50%;
  }
  .l-footer__inner {
    padding-top: 568px;
    padding-bottom: 57px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-footer__inner::before {
    width: 178px;
    height: 152px;
    top: 148px;
    right: 54px;
  }
  .l-footer__logo {
    width: 98px;
    margin: 0;
  }
  .l-footer__info {
    max-width: 563px;
    width: 100%;
  }
  .l-footer__menu {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 28px;
  }
  .l-footer__menu-item {
    margin-right: 20px;
    padding-right: 20px;
    position: relative;
  }
  .l-footer__menu-item + .l-footer__menu-item {
    margin-top: 0;
  }
  .l-footer__menu-item::after {
    content: "";
    width: 1px;
    height: 13px;
    background-color: #212121;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
  }
  .l-footer__menu-item:last-child {
    margin: 0;
    padding-right: 0;
  }
  .l-footer__menu-item:last-child::after {
    display: none;
  }
  .l-footer__menu-link {
    font-size: 1.5rem;
    padding-right: 23px;
  }
  .l-footer__menu-link:hover {
    opacity: 0.7;
  }
  .l-footer__menu-link::after {
    width: 13px;
    height: 13px;
  }
  .l-footer__cr {
    font-size: 1.5rem;
    text-align: right;
  }
  .l-footer-nav {
    height: 90px;
  }
  .l-footer-nav__inner {
    max-width: 785px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-left: 82px;
  }
  .l-footer-nav__inner::before {
    content: "";
    width: 138px;
    height: 147px;
    background: url(../img/common/logo01.png) no-repeat center/cover;
    position: absolute;
    transform: translateY(-50%);
    top: calc(50% + 16px);
    left: -4px;
    opacity: 0.24;
    z-index: -1;
  }
  .l-footer-nav__txt {
    width: 280px;
  }
  .l-footer-nav__txt-sub {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  .l-footer-nav__txt-main {
    font-size: 2.1rem;
    line-height: 1;
  }
  .l-footer-nav__btn {
    width: 360px;
    height: 70px;
  }
  .l-footer-nav__btn:hover {
    opacity: 0.7;
  }
  .l-footer-nav__btn::before {
    content: "";
    width: 94px;
    height: 92px;
    background: url(../img/common/img_footer01_pc.png) no-repeat center/cover;
    position: absolute;
    top: -19px;
    right: unset;
    left: -40px;
  }
  .l-footer-nav__btn::after {
    content: "";
    width: 9px;
    height: 12px;
    background: url(../img/common/ico_footer01.png) no-repeat center/cover;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    pointer-events: none;
  }
  .l-footer-nav__btn-sub {
    font-size: 1.3rem;
    line-height: 1.6923076923;
    margin-bottom: 0;
  }
  .l-footer-nav__btn-main {
    font-size: 1.6rem;
    line-height: 1.3125;
  }
}

/* .l-header
================================================ */
.l-header {
  min-width: 320px;
  z-index: 2000;
  margin-bottom: -73px;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    margin-bottom: -148px;
  }
}
@media screen and (min-width: 1921px) {
  .l-header {
    max-width: 1920px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
}
.l-header-info__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-header-info__logo {
  width: 57px;
  height: 61px;
  padding: 12px 0 0 15px;
}
.l-header-info__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.l-header-info__btn {
  position: absolute;
  top: 0;
  right: 0;
}
.l-header-info__btn-link {
  width: 100px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background-color: rgb(var(--green));
  color: #fff;
  text-align: center;
}
@media all and (min-width: 768px) {
  .l-header-info__logo {
    width: 110px;
    height: 117px;
    padding: 30px 0 0 40px;
  }
  .l-header-info__btn {
    top: 20px;
    right: 30px;
  }
  .l-header-info__btn:hover {
    opacity: 0.7;
  }
  .l-header-info__btn-link {
    width: 190px;
    height: 65px;
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}

/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}

/* .l-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img {
  position: relative;
  margin-bottom: -35px;
  z-index: 0;
}
.l-main-img__content {
  width: calc(100% - 20px);
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
}
.l-main-img__info {
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 128px;
}
.l-main-img__txt {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.27em;
  margin-bottom: 15px;
}
.l-main-img-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-bottom: -5px;
}
.l-main-img-list__item {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding: 3px 19px;
  box-sizing: border-box;
  background-color: rgb(var(--yellow));
  color: #fff;
  margin-left: 5px;
  margin-bottom: 5px;
}
.l-main-img-desc {
  background-color: #ffffff50;
  padding: 12px 13px;
  box-sizing: border-box;
}
.l-main-img-desc__txt {
  font-size: 1rem;
  line-height: 1.3;
  opacity: 0.3;
}
@media all and (max-width: 767px) {
  .l-main-img__info {
    margin-bottom: 40%;
  }
  .l-main-img-desc {
    transform: translateY(-20px);
  }
}
@media all and (min-width: 768px) {
  .l-main-img {
    margin-bottom: -228px;
  }
  .l-main-img__content {
    width: calc(100% - 220px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    bottom: 216px;
  }
  .l-main-img__info {
    padding: 0;
    margin-bottom: 10px;
    max-width: 885px;
    width: 100%;
  }
  .l-main-img__txt {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
  .l-main-img-list {
    margin-left: -11px;
    margin-bottom: -11px;
  }
  .l-main-img-list__item {
    font-size: 1.7rem;
    margin-left: 11px;
    margin-bottom: 11px;
    padding: 6px 27px;
  }
  .l-main-img-desc {
    max-width: 760px;
    width: 100%;
    background-color: transparent;
    padding: 0;
  }
  .l-main-img-desc__txt {
    font-size: 1rem;
    opacity: 0.35;
    transform: translateY(-10px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1830px) {
  .l-main-img {
    margin-bottom: -95px;
  }
  .l-main-img__content {
    width: calc(100% - 50px);
    bottom: 90px;
  }
  .l-main-img__txt {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .l-main-img-list__item {
    padding: 5px 10px;
    font-size: 1.2rem;
  }
  .l-main-img-desc__txt {
    font-size: 1rem;
    transform: translateY(5px);
  }
}
@media screen and (min-width: 1201px) and (max-width: 1830px) {
  .l-main-img {
    margin-bottom: -140px;
  }
  .l-main-img__content {
    bottom: 140px;
  }
}
@media screen and (min-width: 1921px) {
  .l-main-img {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
  }
}

/* .l-main-img-counseling
================================================ */
.l-main-img-counseling {
  position: relative;
  max-height: 636px;
  height: 100%;
  z-index: 1;
}
.l-main-img-counseling__img {
  position: absolute;
  top: -16px;
  left: 0;
  z-index: -1;
}
.l-main-img-counseling__inner {
  padding-top: 85px;
  padding-bottom: 70px;
}
.l-main-img-counseling__first {
  margin-bottom: 30px;
}
.l-main-img-counseling-header {
  font-weight: 700;
  margin-bottom: 14px;
}
.l-main-img-counseling-header__sub {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.l-main-img-counseling-header__main {
  font-size: 3.2rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.l-main-img-counseling__lbl {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  background-color: rgb(var(--orange));
  color: #fff;
  text-align: center;
  padding: 6px 16px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.l-main-img-counseling-list__item {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7857142857;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 28px;
}
.l-main-img-counseling-list__item + .l-main-img-counseling-list__item {
  margin-top: 5px;
}
.l-main-img-counseling-list__item::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/common/ico_check01.png) no-repeat center/cover;
  position: absolute;
  top: 5px;
  left: 0;
}
.l-main-img-counseling-time {
  max-width: 196px;
  width: 100%;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  position: relative;
}
.l-main-img-counseling-time::before, .l-main-img-counseling-time::after {
  content: "";
  width: 3px;
  height: 18px;
  background-color: rgb(var(--orange02));
  position: absolute;
  bottom: 5px;
}
.l-main-img-counseling-time::before {
  left: 5px;
  transform: rotate(-45deg);
}
.l-main-img-counseling-time::after {
  right: 5px;
  transform: rotate(45deg);
}
.l-main-img-counseling-time__wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(var(--orange));
  letter-spacing: 0.05em;
  font-weight: 900;
}
.l-main-img-counseling-time__num {
  font-size: 2rem;
}
.l-main-img-counseling-time__txt {
  font-size: 1.2rem;
}
.l-main-img-counseling__btn {
  margin-bottom: 5px;
}
.l-main-img-counseling__note {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #fff;
}
@media all and (min-width: 768px) {
  .l-main-img-counseling {
    max-height: 604px;
    height: 100%;
  }
  .l-main-img-counseling__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 160px;
    padding-bottom: 180px;
    padding-right: 60px;
    padding-left: 70px;
  }
  .l-main-img-counseling__first {
    max-width: 447px;
    width: 100%;
    margin-bottom: 0;
  }
  .l-main-img-counseling__img {
    top: 16px;
  }
  .l-main-img-counseling__img img {
    min-height: 500px;
  }
  .l-main-img-counseling__second {
    max-width: 450px;
    width: 100%;
  }
  .l-main-img-counseling-header {
    margin-bottom: 7px;
  }
  .l-main-img-counseling-header__sub {
    font-size: 1.9rem;
  }
  .l-main-img-counseling-header__main {
    font-size: 4.5rem;
    line-height: 1.3333333333;
  }
  .l-main-img-counseling__lbl {
    font-size: 1.8rem;
    padding: 8px 18px;
  }
  .l-main-img-counseling-list__item {
    font-size: 1.5rem;
  }
  .l-main-img-counseling-list__item + .l-main-img-counseling-list__item {
    margin-top: 0;
  }
  .l-main-img-counseling-time {
    max-width: 272px;
    font-size: 2.2rem;
    margin-bottom: 17px;
  }
  .l-main-img-counseling-time::before, .l-main-img-counseling-time::after {
    height: 35px;
    bottom: 2px;
  }
  .l-main-img-counseling-time::before {
    left: 0;
  }
  .l-main-img-counseling-time::after {
    right: 0;
  }
  .l-main-img-counseling-time__wrap {
    width: 56px;
    height: 56px;
    margin-right: 4px;
  }
  .l-main-img-counseling-time__num {
    font-size: 2.9rem;
  }
  .l-main-img-counseling-time__txt {
    font-size: 1.8rem;
  }
  .l-main-img-counseling__btn {
    margin-bottom: 20px;
  }
  .l-main-img-counseling__note {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1830px) {
  .l-main-img-counseling__inner {
    padding-top: 150px;
    padding-bottom: 90px;
  }
  .l-main-img-counseling__img {
    top: -13px;
  }
  .l-main-img-counseling-time {
    margin-bottom: 10px;
  }
  .l-main-img-counseling__btn {
    height: 90px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1201px) and (max-width: 1830px) {
  .l-main-img-counseling__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1921px) {
  .l-main-img-counseling {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
  }
}

/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}

@-webkit-keyframes effect {
  0% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: left;
  }
  59% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: left;
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: right;
  }
}

@keyframes effect {
  0% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: left;
  }
  59% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: left;
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1, 1);
    transform-origin: right;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0, 1);
    transform-origin: right;
  }
}
.js-c-anime-txt {
  position: relative;
  display: inline-block;
  z-index: 4;
}
.js-c-anime-txt__item {
  position: relative;
  opacity: 0;
  z-index: 1;
  transition-delay: 0.8s;
  display: block;
}

.js-c-anime-txt-wrap.is-animated .js-c-anime-txt__item::after {
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(90deg, #F6B129 0%, #FF5D07 100%);
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: effect 0.8s 0.8s cubic-bezier(0.77, 0, 0.175, 1) both;
  animation: effect 0.8s 0.8s cubic-bezier(0.77, 0, 0.175, 1) both;
}
.js-c-anime-txt-wrap.is-animated .js-c-anime-txt__item {
  opacity: 1;
}

.js-c-switch-tab {
  cursor: pointer;
}

.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.js-c-toggle-content {
  display: none;
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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 {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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-home-slider
================================================ */
.js-home-slider {
  display: none;
}
.js-home-slider.slick-initialized {
  display: block;
}
.js-home-slider .slick-arrow {
  font-size: 0;
  width: 35px;
  height: 35px;
  border: none;
  position: absolute;
  top: 123px;
  z-index: 1;
}
.js-home-slider .slick-prev {
  background: url(../img/common/ico_arrow01.png) no-repeat center/cover;
  left: 5px;
}
.js-home-slider .slick-next {
  background: url(../img/common/ico_arrow02.png) no-repeat center/cover;
  right: 5px;
}
.js-home-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -7px;
  margin-top: 30px;
}
.js-home-slider .slick-dots li {
  margin-left: 7px;
}
.js-home-slider .slick-dots li.slick-active button {
  background-color: rgb(var(--orange));
}
.js-home-slider .slick-dots button {
  font-size: 0;
  border: none;
  width: 25px;
  height: 4px;
  background-color: rgb(var(--gray04));
}
@media all and (min-width: 768px) {
  .js-home-slider .slick-arrow {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  .js-home-slider .slick-prev {
    background: url(../img/common/ico_arrow01.png) no-repeat center/cover;
    left: -30px;
  }
  .js-home-slider .slick-next {
    background: url(../img/common/ico_arrow02.png) no-repeat center/cover;
    right: -30px;
  }
  .js-home-slider .slick-dots {
    margin-left: -10px;
    margin-top: 40px;
  }
  .js-home-slider .slick-dots li {
    margin-left: 10px;
  }
  .js-home-slider .slick-dots button {
    width: 40px;
    height: 6px;
  }
}

/* .js-home-voice-slider
================================================ */
.js-home-voice-slider .slick-list {
  margin: 0 -12px;
}
.js-home-voice-slider .slick-slide {
  margin: 0 12px;
}
@media all and (min-width: 768px) {
  .js-home-voice-slider .slick-list {
    margin: 0 -25px;
    overflow: unset;
  }
  .js-home-voice-slider .slick-slide {
    margin: 0 25px;
  }
}

/* .js-home-feature-slider
================================================ */
.js-home-feature-slider .slick-list {
  margin: 0 -12px;
}
.js-home-feature-slider .slick-slide {
  margin: 0 12px;
}
.js-home-feature-slider .slick-prev {
  left: -17px;
}
.js-home-feature-slider .slick-next {
  right: -17px;
}
@media all and (min-width: 768px) {
  .js-home-feature-slider .slick-list {
    overflow: hidden;
  }
  .js-home-feature-slider .slick-track {
    position: relative;
  }
  .js-home-feature-slider .slick-slide {
    margin: 0 27px;
    width: 470px !important;
  }
  .js-home-feature-slider .slick-arrow {
    top: 155px;
    transform: none;
  }
  .js-home-feature-slider .slick-prev {
    left: -30px;
  }
  .js-home-feature-slider .slick-next {
    left: 1480px;
    right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .js-home-feature-slider .slick-list {
    margin: 0 -20px;
  }
  .js-home-feature-slider .slick-slide {
    margin: 0 20px;
  }
}

/* .js-home-modelcase-slider
================================================ */
.js-home-modelcase-slider .slick-list {
  overflow: unset;
  margin: 0 -15px;
}
.js-home-modelcase-slider .slick-slide {
  margin: 0 15px;
}
@media all and (max-width: 767px) {
  .js-home-modelcase-slider .slick-arrow {
    top: calc(50% - 40px);
    transform: translateY(-50%);
  }
  .js-home-modelcase-slider .slick-prev {
    left: -20px;
  }
  .js-home-modelcase-slider .slick-next {
    right: -20px;
  }
}
@media all and (min-width: 768px) {
  .js-home-modelcase-slider .slick-list {
    margin: 0 -30px;
  }
  .js-home-modelcase-slider .slick-slide {
    margin: 0 30px;
  }
}

/* .js-home-counseling-slider
================================================ */
.js-home-counseling-slider .slick-list {
  margin: 0 -15px;
}
.js-home-counseling-slider .slick-slide {
  margin: 0 15px;
}
@media all and (min-width: 768px) {
  .js-home-counseling-slider .slick-list {
    margin: 0 -30px;
    overflow: unset;
  }
  .js-home-counseling-slider .slick-slide {
    margin: 0 30px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* .home-moya
================================================ */
.home-moya {
  background: url(../img/home/bg_moya01_sp.png) no-repeat center/cover;
  margin-top: -110px;
  position: relative;
}
.home-moya::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 40px 0 40px;
  border-color: rgb(var(--orange)) transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
}
.home-moya__main {
  position: relative;
  padding-top: 110px;
}
.home-moya__inner {
  padding-top: 155px;
  padding-bottom: 71px;
}
.home-moya__img {
  max-width: 250px;
  width: 100%;
  margin: 0 auto 24px;
}
.home-moya__head {
  font-size: 2.4rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
.home-moya__head span {
  display: inline-block;
  padding: 0 11px;
  box-sizing: border-box;
  margin-left: 10px;
  background-color: rgb(var(--black));
  color: #fff;
}
.home-moya-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -20px;
  margin-right: -13px;
  margin-bottom: -7px;
}
.home-moya-list__item {
  width: calc(50% - 7px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  margin-left: 7px;
  margin-bottom: 7px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6153846154;
  border-radius: 45px;
  background: url(../img/home/bg_moya02.png) repeat;
  text-align: center;
  position: relative;
}
.home-moya-list__item:nth-child(1)::before, .home-moya-list__item:nth-child(2)::before {
  content: "";
  width: 19px;
  height: 11px;
  background: url(../img/home/ico_arrow01.png) no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
}
@media all and (min-width: 768px) {
  .home-moya {
    background: url(../img/home/bg_moya01_pc.png) no-repeat center/cover;
    margin-top: -213px;
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
  .home-moya::after {
    border-width: 38px 54.5px 0 54.5px;
    bottom: -19px;
  }
  .home-moya__deco {
    position: absolute;
    width: 100%;
    top: 60%;
    overflow: hidden;
    transform: translateY(-50%);
  }
  @-webkit-keyframes moya-loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  @keyframes moya-loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .home-moya__deco-txt {
    z-index: 0;
    display: block;
    -webkit-animation: moya-loop 12s linear infinite;
    animation: moya-loop 12s linear infinite;
    will-change: left;
    text-align: right;
  }
  .home-moya__deco-txt.is-01 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    margin-right: -600px;
    margin-bottom: 100px;
  }
  .home-moya__deco-txt.is-02 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    margin-left: -600px;
  }
  .home-moya__inner {
    padding-top: 253px;
    padding-bottom: 110px;
  }
  .home-moya__main {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-moya__img {
    max-width: 505px;
    margin: 0 0 0 -50px;
  }
  .home-moya__info {
    max-width: 565px;
    width: 100%;
  }
  .home-moya__head {
    position: static;
    font-size: 4.1rem;
    line-height: 1.3414634146;
    margin-top: 74px;
    margin-bottom: 70px;
    margin-left: 55px;
  }
  .home-moya__head span {
    padding: 3px 12px;
    margin-bottom: 5px;
  }
  .home-moya-list {
    margin-left: -15px;
    margin-right: 0;
  }
  .home-moya-list__item {
    font-size: 1.8rem;
    line-height: 1.6111111111;
    width: calc(50% - 15px);
    margin-left: 15px;
    margin-bottom: 15px;
    padding: 16px 0;
  }
  .home-moya-list__item:nth-child(1)::before, .home-moya-list__item:nth-child(2)::before {
    width: 11px;
    height: 18px;
    background: url(../img/home/ico_arrow02.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
  }
  .home-moya-list__item::before {
    content: "";
    width: 11px;
    height: 18px;
    background: url(../img/home/ico_arrow02.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .home-moya {
    width: calc(100% - 40px);
  }
  .home-moya__img {
    margin-left: 0;
  }
}

/* .home-web-skill
================================================ */
.home-web-skill__inner {
  padding-top: 50px;
  padding-bottom: 85px;
}
.home-web-skill-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.home-web-skill-head__txt {
  font-size: 1.8rem;
  font-weight: 700;
}
.home-web-skill-head__txt + .home-web-skill-head__txt {
  margin-top: 8px;
}
.home-web-skill-head__txt:nth-child(2), .home-web-skill-head__txt:nth-child(3) {
  font-size: 1.6rem;
}
.home-web-skill-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -21px;
  margin-bottom: -55px;
}
.home-web-skill-list__item {
  position: relative;
  width: calc(50% - 21px);
  margin-left: 21px;
  margin-bottom: 55px;
}
.home-web-skill-list__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  bottom: -35px;
  left: -5px;
}
.home-web-skill-list__head-txt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  padding: 4px 7px;
  box-sizing: border-box;
  background-color: rgb(var(--orange));
  color: #fff;
}
@media all and (min-width: 768px) {
  .home-web-skill__inner {
    padding-top: 60px;
    padding-bottom: 166px;
  }
  .home-web-skill-head {
    margin-bottom: 65px;
  }
  .home-web-skill-head__txt {
    font-size: 4rem;
  }
  .home-web-skill-head__txt + .home-web-skill-head__txt {
    margin-top: 32px;
  }
  .home-web-skill-head__txt:nth-child(2), .home-web-skill-head__txt:nth-child(3) {
    font-size: 3.3rem;
  }
  .home-web-skill-head__txt:nth-child(3) {
    margin-top: 14px;
  }
  .home-web-skill-list {
    margin-bottom: 0;
    margin-left: -250px;
    margin-right: -200px;
  }
  .home-web-skill-list__item {
    width: calc(25% - 50px);
    margin-left: 50px;
    margin-bottom: 0;
  }
  .home-web-skill-list__head {
    bottom: -55px;
    left: -10px;
  }
  .home-web-skill-list__head-txt {
    font-size: 2.3rem;
    padding: 6px 9px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1550px) {
  .home-web-skill-list {
    margin-left: -50px;
    margin-right: 0;
  }
}

/* .home-carefull
================================================ */
.home-carefull {
  background-color: rgb(var(--yellow02));
  position: relative;
  margin-bottom: 40px;
}
.home-carefull::before {
  content: "";
  width: 375px;
  height: 153px;
  background: url("../img/home/txt_careful01_sp.png") no-repeat top center/cover;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.home-carefull::after {
  content: "";
  width: 100%;
  height: 40px;
  background: url("../img/home/bg_carefull01_sp.png") no-repeat top center/cover;
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  z-index: 1;
}
.home-carefull__inner {
  padding-top: 50px;
  padding-bottom: 30px;
}
.home-carefull-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.home-carefull-head__lbl {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  background-color: rgb(var(--black));
  color: #fff;
  padding: 6px 8px;
  box-sizing: border-box;
  margin-bottom: 14px;
}
.home-carefull-head__txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.home-carefull-content {
  margin-bottom: 30px;
}
.home-carefull__desc {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 13px;
}
.home-carefull__lbl {
  width: 260px;
  height: 45px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}
.home-carefull__lbl-num {
  font-size: 3.6rem;
}
.home-carefull__lbl-txt {
  font-size: 2.4rem;
}
@media all and (min-width: 768px) {
  .home-carefull {
    width: calc(100% - 80px);
    margin: 0 auto;
    margin-bottom: 203px;
  }
  .home-carefull::before {
    width: 812px;
    height: 295px;
    background: url("../img/home/txt_careful01_pc.png") no-repeat top center/cover;
    left: calc(50% - 40px);
  }
  .home-carefull::after {
    width: 100%;
    height: 203px;
    background: url("../img/home/bg_carefull01_pc.png") no-repeat top center/cover;
    bottom: -203px;
    z-index: -1;
  }
  .home-carefull__inner {
    padding-top: 90px;
    padding-bottom: 0;
  }
  .home-carefull-head {
    margin-bottom: 37px;
  }
  .home-carefull-head__lbl {
    font-size: 3.3rem;
    padding: 10px 18px;
    margin-bottom: 24px;
  }
  .home-carefull-head__txt {
    font-size: 3.3rem;
  }
  .home-carefull-content {
    margin-bottom: 55px;
  }
  .home-carefull__desc {
    font-size: 2.7rem;
    line-height: 1.6666666667;
    margin-bottom: -75px;
  }
  .home-carefull__lbl {
    width: 417px;
    height: 72px;
    font-size: 3.6rem;
    transform: translateY(90px);
  }
  .home-carefull__lbl-num {
    font-size: 6.6rem;
  }
  .home-carefull__lbl-txt {
    font-size: 3.9rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .home-carefull {
    width: 100%;
  }
}

/* .home-powers
================================================ */
.home-powers {
  overflow: hidden;
  position: relative;
}
.home-powers::before {
  content: "";
  width: 790px;
  height: 60px;
  background: url(../img/home/txt_powers02_sp.png) no-repeat center/cover;
  position: absolute;
  top: calc(50% - 15px);
  left: -50px;
  transform: translateY(-50%);
}
.home-powers__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-powers-head {
  max-width: 286px;
  width: 100%;
  margin: 0 auto 30px;
}
.home-powers-head__txt {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.home-powers-list {
  margin-bottom: 30px;
}
.home-powers-list__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(var(--gray04));
}
.home-powers-list__item:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.home-powers-list__ico {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}
.home-powers-list__info {
  flex: 1;
}
.home-powers-list__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  margin-bottom: 7px;
}
.home-powers-desc {
  border: 3px solid rgb(var(--orange));
  box-sizing: border-box;
  position: relative;
}
.home-powers-desc__txt {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.home-powers-desc__txt::after {
  content: "";
  position: absolute;
  width: 111px;
  height: 118px;
  background: url(../img/common/logo01.png) no-repeat center/cover;
  opacity: 0.22;
  bottom: -48px;
  left: 24px;
}
.home-powers-desc__txt span {
  display: inline-block;
  background-color: rgb(var(--orange));
  color: #fff;
  line-height: 1.1;
  padding: 4px 5px;
  box-sizing: border-box;
  margin: 0 3px;
}
.home-powers-desc::after {
  content: "";
  position: absolute;
  width: 53px;
  height: 56px;
  background: url(../img/common/ico_square02.png) no-repeat center/cover;
  bottom: -28px;
  right: 20px;
}
@media all and (min-width: 768px) {
  .home-powers::before {
    width: 1910px;
    height: 145px;
    background: url(../img/home/txt_powers02_pc.png) no-repeat center/cover;
    top: calc(50% - 176px);
    left: 50%;
    transform: translateX(-50%);
  }
  .home-powers__inner {
    padding-top: 73px;
    padding-bottom: 130px;
  }
  .home-powers-head {
    max-width: 540px;
    margin-bottom: 40px;
  }
  .home-powers-head__txt {
    font-size: 2.7rem;
    margin-bottom: 25px;
  }
  .home-powers-list {
    display: flex;
    align-items: flex-start;
    margin-left: -105px;
    padding: 0 40px;
    box-sizing: border-box;
    margin-bottom: 59px;
  }
  .home-powers-list__item {
    border: none;
    max-width: 270px;
    width: 100%;
    margin-left: 105px;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
  }
  .home-powers-list__ico {
    width: 200px;
    height: 200px;
    margin-right: 0;
    margin-bottom: 21px;
  }
  .home-powers-list__head {
    font-size: 2.8rem;
    line-height: 1.5714285714;
    text-align: center;
    margin-bottom: 22px;
  }
  .home-powers-desc {
    border-width: 5px;
  }
  .home-powers-desc::after {
    width: 120px;
    height: 126px;
    right: 98px;
    bottom: -63px;
  }
  .home-powers-desc__txt {
    padding: 34px;
    font-size: 2.3rem;
    line-height: 2;
    text-align: center;
  }
  .home-powers-desc__txt::after {
    width: 211px;
    height: 225px;
    left: 45px;
    bottom: -70px;
  }
  .home-powers-desc__txt span {
    padding: 4px 7px;
  }
}

/* .home-about
================================================ */
.home-about {
  background-color: rgb(var(--yellow03));
}
.home-about__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.home-about__head-en-img {
  width: 124px;
  bottom: -22px;
  left: -32px;
}
.home-about-intro__inner {
  padding-bottom: 70px;
}
.home-about-intro__img {
  margin-bottom: 26px;
}
.home-about-intro__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 19px;
}
.home-about-intro__txt {
  margin-bottom: 31px;
}
.home-about-intro-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-left: -10px;
}
.home-about-intro-list__item {
  width: 102px;
  height: 79px;
  margin-left: 10px;
  border: 3px solid rgb(var(--orange));
  box-sizing: border-box;
  padding: 10px 5px;
  position: relative;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
}
.home-about-intro-list__item::before, .home-about-intro-list__item::after {
  content: "";
  position: absolute;
  background-color: rgb(var(--yellow03));
}
.home-about-intro-list__item::before {
  width: 55px;
  height: 3px;
  top: -3px;
  left: 0;
}
.home-about-intro-list__item::after {
  width: 3px;
  height: 12px;
  top: -3px;
  left: -3px;
}
.home-about-intro-list__lbl {
  position: absolute;
  top: -8px;
  left: 0;
}
.home-about-intro-list__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
.home-about-intro-list__num {
  font-size: 2.6rem;
}
.home-about-intro-list__desc {
  font-weight: 700;
  text-align: center;
}
.home-about-strength {
  position: relative;
  overflow: hidden;
}
.home-about-strength::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/home/bg_about01_sp.png) no-repeat top center/cover;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.home-about-strength__inner {
  padding-top: 47px;
  padding-bottom: 70px;
  position: relative;
}
.home-about-strength__img {
  margin-bottom: 20px;
  position: relative;
}
.home-about-strength__img img {
  position: relative;
  z-index: 1;
}
.home-about-strength__img::before {
  content: "";
  width: 381px;
  height: 60px;
  background: url(../img/home/txt_about02.png) no-repeat center/cover;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.home-about-strength__lbl {
  width: 226px;
  padding: 2px 0;
  margin: 0 auto 19px;
  font-size: 2.4rem;
}
.home-about-strength-list__item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 19px;
  padding-bottom: 19px;
  border-bottom: 2px solid rgb(var(--orange));
  padding-left: 34px;
  position: relative;
}
.home-about-strength-list__item::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../img/common/ico_check01.png) no-repeat center/cover;
  position: absolute;
  top: 4px;
  left: 0;
}
.home-about-strength-list__item:last-child {
  margin-bottom: 0;
}
.home-about-point__inner {
  padding-top: 50px;
  padding-bottom: 40px;
}
.home-about-point__head {
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 34px;
  position: relative;
}
.home-about-point__head::before {
  content: "";
  width: 167px;
  height: 110px;
  background: url(../img/home/txt_about03.png) no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
}
.home-about-point-content {
  margin-bottom: 30px;
}
.home-about-point-desc {
  border: 3px solid rgb(var(--orange));
  box-sizing: border-box;
  position: relative;
}
.home-about-point-desc__txt {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.home-about-point-desc__txt::after {
  content: "";
  position: absolute;
  width: 111px;
  height: 118px;
  background: url(../img/common/logo01.png) no-repeat center/cover;
  opacity: 0.22;
  bottom: -48px;
  left: 24px;
}
.home-about-point-desc__bg {
  display: inline-block;
  background-color: rgb(var(--orange));
  color: #fff;
  line-height: 1.1;
  padding: 4px 5px;
  box-sizing: border-box;
  margin: 0 3px;
}
.home-about-point-desc__light {
  display: inline;
  position: relative;
  z-index: 1;
}
.home-about-point-desc__light::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #FFF700;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.home-about-media {
  position: relative;
}
.home-about-media::before, .home-about-media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-about-media::before {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.home-about-media::after {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 3px solid rgb(var(--orange));
  box-sizing: border-box;
}
.home-about-media__inner {
  padding-top: 36px;
  padding-bottom: 34px;
  position: relative;
  z-index: 1;
}
.home-about-media__inner::before, .home-about-media__inner::after {
  content: "";
  position: absolute;
}
.home-about-media__inner::before {
  width: 77px;
  height: 65px;
  background: url(../img/common/ico_square03.png) no-repeat center/cover;
  top: -6px;
  right: 32px;
}
.home-about-media__inner::after {
  width: 57px;
  height: 59px;
  background: url(../img/common/ico_square04.png) no-repeat center/cover;
  left: 18px;
  bottom: -43px;
}
.home-about-media__lbl {
  text-align: left;
}
.home-about-media__lbl-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
.home-about-media__lbl + .home-about-media__lbl {
  margin-top: 5px;
}
.home-about-media__img {
  margin-bottom: 20px;
}
.home-about-media__desc {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: rgb(var(--gray05));
}
.home-about-media__desc-txt {
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .home-about__inner {
    padding-top: 110px;
    padding-bottom: 100px;
  }
  .home-about__head-en-img {
    width: 299px;
    bottom: -91px;
    left: -75px;
  }
  .home-about-intro__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 84px;
  }
  .home-about-intro__img {
    max-width: 467px;
    width: 100%;
    margin: 50px 0 0 0;
  }
  .home-about-intro__info {
    max-width: 550px;
    width: 100%;
  }
  .home-about-intro__head {
    font-size: 3.2rem;
    margin-bottom: 29px;
  }
  .home-about-intro__txt {
    margin-bottom: 40px;
  }
  .home-about-intro-list {
    margin-left: -20px;
  }
  .home-about-intro-list__item {
    width: 170px;
    height: 135px;
    margin-left: 20px;
    border-width: 5px;
    padding: 25px 5px;
  }
  .home-about-intro-list__item::before {
    width: 95px;
    height: 5px;
    top: -5px;
  }
  .home-about-intro-list__item::after {
    width: 5px;
    height: 24px;
    top: -5px;
    left: -5px;
  }
  .home-about-intro-list__lbl {
    font-size: 2rem;
    top: -15px;
  }
  .home-about-intro-list__meta {
    margin-bottom: 3px;
  }
  .home-about-intro-list__num {
    font-size: 4.7rem;
    letter-spacing: 0;
  }
  .home-about-intro-list__txt {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0;
  }
  .home-about-intro-list__txt.is-unit {
    transform: translateY(6px);
  }
  .home-about-intro-list__desc {
    font-size: 1.3rem;
    font-weight: 500;
  }
  .home-about-strength::before {
    width: calc(100% - 80px);
    margin: 0 auto;
    background: url(../img/home/bg_about01_pc.png) no-repeat top center/cover;
  }
  .home-about-strength__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 175px;
    padding-bottom: 175px;
  }
  .home-about-strength__img {
    max-width: 523px;
    width: 100%;
    margin: 0 0 0 -69px;
  }
  .home-about-strength__img::before {
    width: 642px;
    height: 101px;
    left: -80px;
    bottom: -50px;
  }
  .home-about-strength__info {
    max-width: 600px;
    width: 100%;
  }
  .home-about-strength__lbl {
    width: 359px;
    padding: 7px 0;
    font-size: 3.8rem;
    margin-bottom: 40px;
  }
  .home-about-strength-list__item {
    font-size: 2.2rem;
    line-height: 1.6818181818;
    padding-left: 44px;
    border-bottom-width: 3px;
  }
  .home-about-strength-list__item::before {
    width: 26px;
    height: 26px;
    top: 7px;
  }
  .home-about-strength-list__item:last-child {
    border-bottom: none;
  }
  .home-about-point__inner {
    padding-bottom: 100px;
  }
  .home-about-point__head {
    font-size: 4.3rem;
    margin-bottom: 58px;
  }
  .home-about-point__head::before {
    width: 438px;
    height: 288px;
    top: -106px;
    left: calc(50% + 35px);
  }
  .home-about-point-content {
    margin-bottom: 60px;
  }
  .home-about-point-desc {
    border-width: 5px;
  }
  .home-about-point-desc__txt {
    padding: 34px;
    font-size: 2.3rem;
    line-height: 2;
    text-align: center;
  }
  .home-about-point-desc__txt:after {
    width: 211px;
    height: 225px;
    left: 45px;
    bottom: -98px;
  }
  .home-about-media::before {
    width: calc(100% - 120px);
  }
  .home-about-media::after {
    width: calc(100% - 150px);
    height: calc(100% - 25px);
    border-width: 4px;
  }
  .home-about-media__inner {
    padding-top: 110px;
    padding-bottom: 88px;
  }
  .home-about-media__inner::before {
    width: 178px;
    height: 151px;
    right: 78px;
    top: -40px;
  }
  .home-about-media__inner::after {
    width: 91px;
    height: 95px;
    left: 79px;
    bottom: 465px;
  }
  .home-about-media__lbl + .home-about-media__lbl {
    margin-top: 10px;
  }
  .home-about-media__lbl-wrap {
    margin-bottom: 39px;
  }
  .home-about-media__img {
    margin-bottom: 50px;
  }
  .home-about-media__desc {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .home-about-strength::before {
    width: 100%;
  }
  .home-about-strength__img {
    margin-left: 0;
    margin-right: 30px;
    max-width: 470px;
  }
  .home-about-media__lbl-wrap, .home-about-media__img, .home-about-media__desc {
    padding: 0 140px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 1440px) {
  .home-about-media__desc {
    padding: 0 115px;
  }
}

/* .home-voice
================================================ */
.home-voice {
  position: relative;
  overflow: hidden;
}
.home-voice::before {
  content: "";
  width: 788px;
  height: 60px;
  background: url(../img/home/txt_voice02_sp.png) no-repeat center/cover;
  position: absolute;
  top: 360px;
  left: -20px;
}
.home-voice__inner {
  padding-top: 50px;
}
.home-voice__head-en-img {
  width: 77px;
  bottom: -20px;
  left: -42px;
}
.home-voice__desc {
  margin-bottom: 30px;
}
.home-voice-list-wrap {
  margin-bottom: 35px;
}
.home-voice-list__item {
  position: relative;
}
.home-voice-list__item + .home-voice-list__item {
  margin-top: 10px;
}
.home-voice-list__video {
  position: relative;
  padding-bottom: 200px;
  z-index: 0;
}
.home-voice-list__video-link {
  display: block;
}
.home-voice-list__video-ico {
  display: inline-block;
  content: "";
  width: 45px;
  height: 45px;
  background: url(../img/common/ico_movie01.png) no-repeat top/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
.home-voice-list__video-img {
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-voice-list__video-img.is-01 {
  background: url(../img/home/img_voice01.png) no-repeat top/cover;
}
.home-voice-list__video-img.is-02 {
  background: url(../img/home/img_voice01_02.png) no-repeat top/cover;
}
.home-voice-list__video-img.is-03 {
  background: url(../img/home/img_voice01_03.png) no-repeat top/cover;
}
.home-voice-list__video-img.is-04 {
  background: url(../img/home/img_voice01_04.png) no-repeat top/cover;
}
.home-voice-list__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-voice-list__txt {
  width: 80%;
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  background-color: rgb(var(--orange));
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  text-align: center;
}
.home-voice-list__txt-notes {
  position: relative;
  padding-top: 17px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  color: rgb(var(--gray05));
}
.home-voice-list__txt-notes::before {
  content: "※";
  position: absolute;
  top: 18px;
  left: 70px;
}
.home-voice-slider__item {
  background-color: #FEF8EC;
  padding: 30px 20px;
  box-sizing: border-box;
}
.home-voice-slider__img {
  max-width: 200px;
  margin: 0 auto 37px;
  position: relative;
}
.home-voice-slider__rank {
  position: absolute;
  top: 0;
  left: -42px;
  color: rgb(var(--orange));
  display: flex;
  align-items: flex-start;
}
.home-voice-slider__rank-sym {
  font-size: 2.5rem;
  margin-top: 5px;
}
.home-voice-slider__rank-num {
  font-size: 6rem;
}
.home-voice-slider__desc {
  width: 134px;
  height: 58px;
  padding: 0 14px;
  box-sizing: border-box;
  position: absolute;
  bottom: -17px;
  left: -43px;
  background-image: linear-gradient(to right, #F6B129, #FF5D07);
  color: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-voice-slider__desc-txt {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4166666667;
}
.home-voice-slider__desc-txt span {
  font-size: 1rem;
}
.home-voice-slider__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.home-voice-slider__head::after {
  content: "";
  width: 42px;
  height: 36px;
  background: url(../img/common/ico_quote01.png) no-repeat center/cover;
  position: absolute;
  top: -16px;
  right: 0;
  z-index: -1;
}
.home-voice-note {
  margin-top: 30px;
  margin-bottom: 40px;
}
.home-voice-note__txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: rgb(var(--gray05));
  position: relative;
  padding-left: 13px;
}
.home-voice-note__txt::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.home-voice-banner {
  position: relative;
}
.home-voice-banner__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 25px;
  right: 25px;
}
.home-voice-banner__txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background-color: #fff;
  color: rgb(var(--orange));
  padding: 4px 9px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .home-voice::before {
    content: "";
    width: 1963px;
    height: 149px;
    background: url(../img/home/txt_voice02_pc.png) no-repeat center/cover;
    top: 740px;
    left: 50%;
    transform: translateX(-50%);
  }
  .home-voice__inner {
    padding-top: 110px;
  }
  .home-voice__head-en-img {
    width: 177px;
    bottom: -55px;
    left: -72px;
  }
  .home-voice__desc {
    text-align: center;
    margin-bottom: 50px;
  }
  .home-voice-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: -80px;
    margin-bottom: -80px;
  }
  .home-voice-list-wrap {
    margin-bottom: 100px;
    padding: 0 50px;
    box-sizing: border-box;
  }
  .home-voice-list__item {
    max-width: 460px;
    width: 100%;
    margin-left: 80px;
    margin-bottom: 80px;
  }
  .home-voice-list__item + .home-voice-list__item {
    margin-top: 0;
  }
  .home-voice-list__video {
    padding-bottom: 284px;
  }
  .home-voice-list__video-ico {
    width: 80px;
    height: 80px;
  }
  .home-voice-list__txt {
    bottom: 28px;
    width: 80%;
    font-size: 2.1rem;
    padding: 8px 5px;
  }
  .home-voice-list__txt-notes {
    padding-top: 31px;
  }
  .home-voice-list__txt-notes::before {
    top: 31px;
    left: 53px;
  }
  .home-voice-slider__item-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-voice-slider__item {
    padding: 70px 50px 60px 60px;
  }
  .home-voice-slider__img {
    max-width: 310px;
    width: 100%;
  }
  .home-voice-slider__rank {
    left: 0;
    top: -24px;
  }
  .home-voice-slider__rank-sym {
    font-size: 3.5rem;
    margin-top: 8px;
  }
  .home-voice-slider__rank-num {
    font-size: 8rem;
  }
  .home-voice-slider__desc {
    width: 182px;
    height: 76px;
    padding: 0 18px;
    left: -20px;
    bottom: -36px;
  }
  .home-voice-slider__desc-txt {
    font-size: 1.7rem;
  }
  .home-voice-slider__desc-txt span {
    font-size: 1.3rem;
  }
  .home-voice-slider__info {
    max-width: 610px;
    width: 100%;
  }
  .home-voice-slider__head {
    font-size: 2.6rem;
    margin-bottom: 19px;
  }
  .home-voice-slider__head::after {
    width: 58px;
    height: 50px;
    top: 0;
    right: 30px;
  }
  .home-voice-note {
    margin-top: 24px;
    margin-bottom: 86px;
  }
  .home-voice-note__txt {
    font-size: 1.3rem;
    line-height: 2.2307692308;
    letter-spacing: 0.05em;
    padding-left: 15px;
  }
  .home-voice-banner__info {
    top: 51px;
    right: 48px;
  }
  .home-voice-banner__txt {
    font-size: 3rem;
    line-height: 1.4666666667;
    padding: 2px 9px;
  }
}
@media screen and (min-width: 1921px) {
  .home-voice-banner {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
  }
}

/* .home-feature
================================================ */
.home-feature {
  margin-bottom: -1px;
}
.home-feature__inner {
  padding-top: 50px;
}
.home-feature__desc {
  margin-bottom: 40px;
}
.home-feature__head-en-img {
  width: 112px;
  bottom: -21px;
  left: unset;
  right: -54px;
}
.home-feature-list {
  position: relative;
  margin-bottom: 50px;
}
.home-feature-list::before {
  content: "";
  width: 80px;
  height: 41px;
  background: url(../img/common/ico_square05.png) no-repeat center/cover;
  position: absolute;
  top: calc(50% - 65px);
  right: 34px;
  transform: translateY(-50%);
}
.home-feature-list__item + .home-feature-list__item {
  margin-top: 40px;
}
.home-feature-list__ico {
  position: absolute;
  top: calc(50% - 56px);
  left: 4px;
  width: 160px;
  height: 99px;
}
.home-feature-list__ico-txt {
  position: absolute;
  top: calc(50% - 18px);
  left: 48px;
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  transform: rotate(-8deg);
}
.home-feature-list__ico-txt-sub {
  font-size: 1.2rem;
}
.home-feature-list__img {
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 25px;
}
.home-feature-list__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.home-feature-list__lbl + .home-feature-list__lbl {
  margin-top: 5px;
}
.home-feature-list__box {
  border: 3px solid rgb(var(--orange));
  padding: 15px 20px;
  box-sizing: border-box;
  margin-top: 20px;
}
.home-feature-list__box-lbl {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  background-color: #000;
  color: #fff;
  padding: 4px 10px;
  box-sizing: border-box;
  margin-bottom: 13px;
}
.home-feature-list__box-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.1em;
}
.home-feature-slider {
  background-color: rgb(var(--yellow03));
}
.home-feature-slider__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-feature-slider__head {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
  text-align: center;
  margin-bottom: 10px;
}
.home-feature-slider-list__item-wrap {
  padding-top: 35px;
}
.home-feature-slider-list__img {
  position: relative;
  margin-bottom: 15px;
}
.home-feature-slider-list__rank {
  position: absolute;
  top: -36px;
  left: 20px;
}
.home-feature-slider-list__rank span {
  display: block;
  color: rgb(var(--orange));
}
.home-feature-slider-list__rank-txt {
  font-size: 1.4rem;
}
.home-feature-slider-list__rank-num {
  font-size: 6rem;
}
.home-feature-slider-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(var(--orange));
  text-align: center;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .home-feature-slider__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media all and (min-width: 768px) {
  .home-feature {
    position: relative;
    overflow: hidden;
  }
  .home-feature::before {
    content: "";
    width: 156px;
    height: 624px;
    background: url(../img/home/txt_feature02.png) no-repeat center/cover;
    position: absolute;
    top: 68px;
    right: 63px;
  }
  .home-feature__inner {
    padding-top: 130px;
  }
  .home-feature__head-en-img {
    width: 237px;
    bottom: -68px;
    right: -77px;
  }
  .home-feature-list {
    margin-bottom: 140px;
  }
  .home-feature-list::before {
    width: 188px;
    height: 97px;
    top: calc(50% - 72px);
    right: -30px;
  }
  .home-feature-list__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .home-feature-list__item + .home-feature-list__item {
    margin-top: 100px;
  }
  .home-feature-list__item.is-reverse {
    flex-direction: row-reverse;
  }
  .home-feature-list__item.is-reverse .home-feature-list__img {
    margin: 0 -210px 0 0;
  }
  .home-feature-list__item.is-reverse .home-feature-list__head {
    margin-top: 16px;
  }
  .home-feature-list__img {
    max-width: 720px;
    width: 100%;
    margin: 0 0 0 -210px;
  }
  .home-feature-list__ico {
    top: 52%;
    left: 93%;
    width: 230px;
    height: 144px;
  }
  .home-feature-list__ico-txt {
    top: calc(50% - 27px);
    left: 65px;
    font-size: 2.6rem;
  }
  .home-feature-list__ico-txt-sub {
    font-size: 1.9rem;
  }
  .home-feature-list__info {
    max-width: 530px;
    width: 100%;
  }
  .home-feature-list__head {
    margin-top: 37px;
    margin-bottom: 24px;
  }
  .home-feature-list__lbl {
    font-size: 3.2rem;
  }
  .home-feature-list__lbl + .home-feature-list__lbl {
    margin-top: 10px;
  }
  .home-feature-list__box {
    border-width: 5px;
    margin-top: 30px;
  }
  .home-feature-list__box-lbl {
    font-size: 1.5rem;
  }
  .home-feature-list__box-txt {
    font-size: 1.5rem;
  }
  .home-feature-slider {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: none;
  }
  .home-feature-slider:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    height: 100%;
    background: rgb(var(--yellow03));
    z-index: -1;
  }
  .home-feature-slider__inner {
    max-width: 1520px;
    margin-right: auto;
    margin-left: auto;
  }
  .home-feature-slider__head {
    font-size: 3.3rem;
    line-height: 1.3333333333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 23px;
  }
  .home-feature-slider-list {
    margin: 0 calc((100vw - 1520px) / 2 * -1) 0 0;
  }
  .home-feature-slider-list__item {
    top: 0;
  }
  .home-feature-slider-list__item-wrap {
    padding-top: 42px;
  }
  .home-feature-slider-list__rank {
    top: -43px;
  }
  .home-feature-slider-list__rank-txt {
    font-size: 1.9rem;
  }
  .home-feature-slider-list__rank-num {
    font-size: 8rem;
  }
  .home-feature-slider-list__img {
    margin-bottom: 30px;
    text-align: center;
  }
  .home-feature-slider-list__img img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
  }
  .home-feature-slider-list__head {
    font-size: 2.6rem;
    line-height: 1.3461538462;
    margin-bottom: 29px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .home-feature-list__item.is-reverse .home-feature-list__img {
    margin-right: 0;
    margin-left: 40px;
  }
  .home-feature-list__img {
    margin-left: 0;
    margin-right: 40px;
  }
  .home-feature-list__ico {
    left: 85%;
  }
  .home-feature-slider__inner {
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box;
  }
}

/* .home-curriculum
================================================ */
.home-curriculum__inner {
  padding-top: 70px;
  padding-bottom: 50px;
  position: relative;
}
.home-curriculum__inner::before {
  content: "";
  width: 72px;
  height: 61px;
  background: url(../img/common/ico_square03.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 25px;
}
.home-curriculum__head-en-img {
  width: 172px;
  height: 60px;
  top: 0;
  left: -20px;
}
.home-curriculum__title {
  width: 292px;
  margin: 0 auto 19px;
  font-size: 2.4rem;
  padding: 2px;
  box-sizing: border-box;
}
.home-curriculum__desc {
  margin-bottom: 20px;
}
.home-curriculum-list__item {
  padding: 16px 18px 20px 25px;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
}
.home-curriculum-list__item + .home-curriculum-list__item {
  margin-top: 15px;
}
.home-curriculum-list__item::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgb(var(--orange));
  position: absolute;
  bottom: -5px;
  right: -5px;
  z-index: -1;
}
.home-curriculum-list__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.home-curriculum-list__ico {
  width: 102px;
  margin-right: 30px;
}
.home-curriculum-list__head {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2777777778;
}
.home-curriculum-list__lbl {
  display: inline-block;
  width: 94px;
  background-color: #212121;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  padding: 4px 0;
  box-sizing: border-box;
  margin-bottom: 10px;
  text-align: center;
}
.home-curriculum-list__txt {
  word-break: break-word;
}
@media all and (min-width: 768px) {
  .home-curriculum__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .home-curriculum__inner::before {
    width: 176px;
    height: 150px;
    top: 0;
    right: 9px;
  }
  .home-curriculum__head {
    align-items: flex-start;
  }
  .home-curriculum__head-en-img {
    width: 390px;
    bottom: -82px;
    left: -49px;
  }
  .home-curriculum__title {
    width: 465px;
    font-size: 3.8rem;
    padding: 7px;
    margin-bottom: 28px;
    align-items: flex-start;
  }
  .home-curriculum__desc {
    text-align: center;
    margin-bottom: 50px;
  }
  .home-curriculum-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -29px;
    margin-bottom: -57px;
  }
  .home-curriculum-list__item {
    max-width: 345px;
    width: 100%;
    min-height: 378px;
    padding: 23px 20px;
    box-sizing: border-box;
    margin-left: 29px;
    margin-bottom: 57px;
  }
  .home-curriculum-list__item + .home-curriculum-list__item {
    margin-top: 0;
  }
  .home-curriculum-list__item::before {
    bottom: -7px;
    right: -7px;
  }
  .home-curriculum-list__header {
    flex-direction: column;
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
  .home-curriculum-list__ico {
    width: 144px;
    height: 144px;
    margin: 0;
  }
  .home-curriculum-list__head {
    min-height: 58px;
    font-size: 2.1rem;
    text-align: center;
  }
  .home-curriculum-list__lbl {
    width: 100px;
    font-size: 1.5rem;
    padding: 5px 0;
    margin-bottom: 9px;
  }
}

/* .home-plan
================================================ */
.home-plan {
  background: url(../img/home/bg_plan01_sp.png) no-repeat top center/cover;
}
.home-plan__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-plan__head {
  width: 234px;
  margin: 0 auto 19px;
  padding: 2px 5px;
  box-sizing: border-box;
  font-size: 2.4rem;
}
.home-plan__desc {
  margin-bottom: 30px;
}
.home-plan-item + .home-plan-item {
  margin-top: 30px;
}
.home-plan-item-head {
  display: inline-block;
  margin-bottom: 31px;
}
.home-plan-item-head__sub {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgb(var(--orange));
  margin-bottom: 10px;
}
.home-plan-item-head__main {
  font-size: 3.6rem;
  color: #212121;
  position: relative;
  z-index: 1;
}
.home-plan-item-head__main::before {
  content: "";
  width: calc(100% + 10px);
  height: 17px;
  background-color: #FFF700;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.home-plan-item__content {
  background-color: rgb(var(--yellow03));
  padding: 25px 20px;
  box-sizing: border-box;
}
.home-plan-item__desc {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 15px;
}
.home-plan-item-list01 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  margin-bottom: 30px;
}
.home-plan-item-list01::before {
  content: "＋";
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-plan-item-list01__item {
  width: 127px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(var(--yellow));
  border: 3px solid rgb(var(--yellow));
  box-sizing: border-box;
}
.home-plan-item-list01__item:last-child {
  color: rgb(var(--orange));
  border: 3px solid rgb(var(--orange));
}
.home-plan-item-list01__num {
  font-size: 2rem;
}
.home-plan-item-list01__sub {
  font-size: 1rem;
  font-weight: bold;
}
.home-plan-item-list01__main {
  font-size: 1.4rem;
  font-weight: bold;
}
.home-plan-item-lead {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
.home-plan-item-lead__txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6666666667;
  text-align: center;
}
.home-plan-item-lead__line {
  margin-top: 6px;
}
.home-plan-item-list02__item {
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}
.home-plan-item-list02__item + .home-plan-item-list02__item {
  margin-top: 5px;
}
.home-plan-item-list02__lbl {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(var(--orange));
  margin-bottom: 3px;
}
.home-plan-item-list02__head {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
.home-plan-item-list02__tool {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  box-sizing: border-box;
  background-color: #212121;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 10px;
}
.home-plan-item-list02__txt {
  word-break: break-word;
}
@media all and (min-width: 768px) {
  .home-plan {
    background: url(../img/home/bg_plan01_pc.png) no-repeat top center/cover;
  }
  .home-plan__inner {
    padding-top: 90px;
    padding-bottom: 130px;
  }
  .home-plan__head {
    width: 358px;
    margin-bottom: 29px;
    padding: 7px 5px;
    font-size: 3.8rem;
  }
  .home-plan__desc {
    text-align: center;
  }
  .home-plan-item + .home-plan-item {
    margin-top: 60px;
  }
  .home-plan-item-head {
    margin-bottom: 40px;
  }
  .home-plan-item-head__sub {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .home-plan-item-head__main {
    font-size: 6rem;
  }
  .home-plan-item-head__main::before {
    width: calc(100% + 14px);
    height: 27px;
  }
  .home-plan-item__content {
    padding: 50px 60px;
  }
  .home-plan-item-list01 {
    margin-bottom: 47px;
  }
  .home-plan-item-list01::before {
    font-size: 4.7rem;
  }
  .home-plan-item-list01__item {
    width: 430px;
    height: 80px;
    border-width: 5px;
  }
  .home-plan-item-list01__item:last-child {
    border-width: 5px;
  }
  .home-plan-item-list01__num {
    font-size: 3.2rem;
  }
  .home-plan-item-list01__sub {
    font-size: 2rem;
  }
  .home-plan-item-list01__main {
    font-size: 2.7rem;
  }
  .home-plan-item-lead {
    margin-bottom: 24px;
  }
  .home-plan-item-lead__txt {
    font-size: 2.3rem;
  }
  .home-plan-item-list02 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
  .home-plan-item-list02__item {
    padding: 30px 35px;
    margin-left: 10px;
  }
  .home-plan-item-list02__item + .home-plan-item-list02__item {
    margin-top: 0;
  }
  .home-plan-item-list02__lbl {
    font-size: 1.1rem;
  }
  .home-plan-item-list02__head {
    font-size: 2rem;
  }
  .home-plan-item-list02__tool {
    font-size: 1.3rem;
    padding: 5px 10px;
    margin-bottom: 6px;
  }
  .home-plan-item-list02__txt {
    font-size: 1.4rem;
  }
}

/* .home-modelcase
================================================ */
.home-modelcase {
  background-color: rgb(var(--yellow03));
  overflow: hidden;
  margin-bottom: -1px;
}
.home-modelcase__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-modelcase__head-en-img {
  width: 182px;
  bottom: -33px;
  left: unset;
  right: -71px;
}
.home-modelcase-slider-list__item {
  background-color: #fff;
  padding: 20px 20px 25px 20px;
  box-sizing: border-box;
}
.home-modelcase-slider-list__header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.home-modelcase-slider-list__img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}
.home-modelcase-slider-list__info {
  flex: 1;
}
.home-modelcase-slider-list__head {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
.home-modelcase-slider-list__desc {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}
.home-modelcase-slider-list__list01 {
  margin-bottom: 25px;
}
.home-modelcase-slider-list__list01-item {
  display: flex;
  align-items: center;
}
.home-modelcase-slider-list__list01-item + .home-modelcase-slider-list__list01-item {
  margin-top: 8px;
}
.home-modelcase-slider-list__list01-lbl {
  width: 83px;
  height: 22px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin-right: 10px;
  padding: 3px 2px 1px;
  box-sizing: border-box;
}
.home-modelcase-slider-list__list01-txt {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.1;
}
.home-modelcase-slider-list__list02 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 25px;
}
.home-modelcase-slider-list__list02-item {
  width: 127px;
  height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid rgb(var(--yellow));
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.1;
}
.home-modelcase-slider-list__list02-item:nth-child(2) {
  border-color: rgb(var(--orange));
}
.home-modelcase-slider-list__list02-item:nth-child(2) .home-modelcase-slider-list__list02-head,
.home-modelcase-slider-list__list02-item:nth-child(2) .home-modelcase-slider-list__list02-meta {
  color: rgb(var(--orange));
}
.home-modelcase-slider-list__list02-item:nth-child(2) {
  position: relative;
}
.home-modelcase-slider-list__list02-item:nth-child(2)::before {
  content: "＋";
  font-size: 2rem;
  color: #000;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: -29px;
  transform: translateY(-50%);
}
.home-modelcase-slider-list__list02-item:nth-child(3) {
  width: calc(100% - 16px);
  height: 81px;
  margin-top: 15px;
  margin-left: auto;
  background-color: rgb(var(--yellow));
  color: #fff;
  position: relative;
}
.home-modelcase-slider-list__list02-item:nth-child(3)::before {
  content: "=";
  font-size: 1.9rem;
  color: #000;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: -19px;
  transform: translateY(-50%);
}
.home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-info {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 7px;
}
.home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-head,
.home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-meta {
  color: #fff;
}
.home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-head {
  margin-right: 10px;
  margin-bottom: 0;
}
.home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-meta {
  margin-bottom: -5px;
}
.home-modelcase-slider-list__list02-head {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(var(--yellow));
  margin-bottom: 3px;
}
.home-modelcase-slider-list__list02-meta {
  color: rgb(var(--yellow));
  margin-bottom: 2px;
}
.home-modelcase-slider-list__list02-num {
  font-size: 3.2rem;
}
.home-modelcase-slider-list__list02-time {
  font-size: 1.2rem;
  font-weight: 700;
}
.home-modelcase-slider-list__list02-desc {
  font-size: 1rem;
}
.home-modelcase-slider-list__list03-item {
  background-color: rgb(var(--gray));
  color: #212121;
  padding: 20px;
  box-sizing: border-box;
}
.home-modelcase-slider-list__list03-item + .home-modelcase-slider-list__list03-item {
  margin-top: 5px;
}
.home-modelcase-slider-list__list03-head {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7857142857;
  margin-bottom: 5px;
}
.home-modelcase-slider-list__list03-desc {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
}
.home-modelcase-slider-list__list03-info {
  display: flex;
  align-items: flex-end;
}
.home-modelcase-slider-list__list03-num {
  font-size: 3.2rem;
  letter-spacing: 0;
}
.home-modelcase-slider-list__list03-time, .home-modelcase-slider-list__list03-txt {
  font-size: 1.2rem;
  font-weight: 700;
}
.home-modelcase-slider-list__list03-txt {
  margin-bottom: 2px;
}
@media all and (min-width: 768px) {
  .home-modelcase {
    position: relative;
  }
  .home-modelcase::before {
    content: "";
    width: 282px;
    height: 893px;
    background: url(../img/home/txt_modelcase02.png) no-repeat center/cover;
    position: absolute;
    top: 36px;
    left: 0;
  }
  .home-modelcase__inner {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .home-modelcase__head-en-img {
    width: 406px;
    bottom: -104px;
    right: -74px;
  }
  .home-modelcase-slider-list__item {
    padding: 50px 60px 60px 60px;
  }
  .home-modelcase-slider-list__header {
    margin-bottom: 40px;
  }
  .home-modelcase-slider-list__img {
    width: 177px;
    height: 177px;
    margin-right: 50px;
  }
  .home-modelcase-slider-list__head {
    min-height: 96px;
    font-size: 3.2rem;
    margin-bottom: 8px;
  }
  .home-modelcase-slider-list__desc {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .home-modelcase-slider-list__list01-item + .home-modelcase-slider-list__list01-item {
    margin-top: 8px;
  }
  .home-modelcase-slider-list__list01-lbl {
    width: 94px;
    height: 24px;
    font-size: 1.4rem;
    padding: 4px;
    margin-right: 13px;
  }
  .home-modelcase-slider-list__list01-txt {
    font-size: 1.6rem;
  }
  .home-modelcase-slider-list__list02 {
    flex-wrap: nowrap;
    margin-left: -55px;
    margin-bottom: 40px;
  }
  .home-modelcase-slider-list__list02-item {
    max-width: 290px;
    width: 100%;
    height: 180px;
    border-width: 4px;
    margin-left: 55px;
  }
  .home-modelcase-slider-list__list02-item:nth-child(2)::before {
    font-size: 4.6rem;
    left: -55px;
  }
  .home-modelcase-slider-list__list02-item:nth-child(3) {
    max-width: 300px;
    width: 100%;
    height: 180px;
    margin-left: 45px;
    margin-top: 0;
  }
  .home-modelcase-slider-list__list02-item:nth-child(3)::before {
    font-size: 4.6rem;
    left: -40px;
  }
  .home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-modelcase-slider-list__list02-item:nth-child(3) .home-modelcase-slider-list__list02-head {
    margin-bottom: 5px;
  }
  .home-modelcase-slider-list__list02-head {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .home-modelcase-slider-list__list02-meta {
    margin-bottom: 5px;
  }
  .home-modelcase-slider-list__list02-num {
    font-size: 5.5rem;
  }
  .home-modelcase-slider-list__list02-time {
    font-size: 1.9rem;
  }
  .home-modelcase-slider-list__list02-desc {
    font-size: 1.5rem;
  }
  .home-modelcase-slider-list__list03 {
    display: flex;
    align-items: stretch;
    margin-left: -10px;
  }
  .home-modelcase-slider-list__list03-item {
    width: calc(33.3333333333% - 10px);
    min-height: 147px;
    margin-left: 10px;
    padding: 15px 20px;
  }
  .home-modelcase-slider-list__list03-item + .home-modelcase-slider-list__list03-item {
    margin-top: 0;
  }
  .home-modelcase-slider-list__list03-head {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 0;
  }
  .home-modelcase-slider-list__list03-desc {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8125;
    text-align: center;
  }
  .home-modelcase-slider-list__list03-info {
    flex-direction: column;
    align-items: center;
  }
  .home-modelcase-slider-list__list03-num {
    font-size: 3.5rem;
  }
  .home-modelcase-slider-list__list03-time {
    font-size: 1.9rem;
  }
  .home-modelcase-slider-list__list03-txt {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

/* .home-counseling
================================================ */
.home-counseling__inner {
  padding-bottom: 50px;
}
.home-counseling-banner {
  position: relative;
  margin-top: -26px;
}
.home-counseling-banner::before {
  content: "";
  width: 100%;
  height: 316px;
  background-image: linear-gradient(to right, #F6B129, #FC862C);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0.36;
}
.home-counseling-banner__inner {
  padding-top: 105px;
}
.home-counseling-banner__img {
  position: relative;
  margin-bottom: 30px;
}
.home-counseling-banner__img::before {
  content: "";
  width: 228px;
  height: 105px;
  background: url(../img/common/txt_counseling.png) no-repeat center/cover;
  position: absolute;
  top: -83px;
  left: -13px;
}
.home-counseling-banner__head {
  width: 174px;
  position: absolute;
  top: -15px;
  left: 10px;
}
.home-counseling-banner__txt {
  font-size: 1.2rem;
  position: absolute;
  display: flex;
  flex-direction: column;
}
.home-counseling-banner__txt.is-top {
  top: 28px;
  left: 10px;
  align-items: flex-start;
}
.home-counseling-banner__txt.is-bottom {
  bottom: -12px;
  right: 10px;
  align-items: flex-end;
}
.home-counseling-banner__txt-item {
  font-weight: 700;
  line-height: 1.1;
  background-color: #fff;
  color: rgb(var(--orange));
  padding: 5px;
  box-sizing: border-box;
}
.home-counseling-slider__inner {
  padding-top: 40px;
  padding-bottom: 70px;
}
.home-counseling-slider-list__item {
  position: relative;
}
.home-counseling-slider-list__item::after {
  content: "";
  width: 42px;
  height: 36px;
  background: url("../img/common/ico_quote01.png") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.home-counseling-slider-list__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.home-counseling-slider-list__img {
  width: 65px;
  height: 65px;
  margin-right: 15px;
}
.home-counseling-slider-list__head {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.home-counseling-content {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}
.home-counseling-content::before {
  content: "";
  width: 643px;
  height: 60px;
  background: url("../img/home/txt_free-counseling01.png") no-repeat center/cover;
  position: absolute;
  left: 50%;
  top: 3px;
  transform: translateX(-50%);
}
.home-counseling-content__lbl {
  width: 243px;
  margin: 0 auto 29px;
}
.home-counseling-content-list {
  margin-bottom: 30px;
}
.home-counseling-content-list__item + .home-counseling-content-list__item {
  margin-top: 30px;
}
.home-counseling-content-list__img {
  margin-bottom: 20px;
}
.home-counseling-content-list__head {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.home-counseling-img {
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .home-counseling__inner {
    padding-bottom: 120px;
  }
  .home-counseling-banner {
    margin-top: 110px;
  }
  .home-counseling-banner::before {
    height: 838px;
    top: -360px;
  }
  .home-counseling-banner__inner {
    max-width: 1320px;
  }
  .home-counseling-banner__img {
    margin-bottom: 80px;
  }
  .home-counseling-banner__img::before {
    width: 591px;
    height: 273px;
    top: -200px;
    left: 0px;
    z-index: -1;
  }
  .home-counseling-banner__head {
    width: 400px;
    top: -38px;
    left: 60px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .home-counseling-banner__txt {
    font-size: 1.9rem;
  }
  .home-counseling-banner__txt.is-top {
    top: 45px;
    left: 60px;
  }
  .home-counseling-banner__txt.is-bottom {
    font-size: 3rem;
    bottom: -36px;
    right: 50px;
  }
  .home-counseling-banner__txt.is-bottom .home-counseling-banner__txt-item {
    padding: 7px 15px;
  }
  .home-counseling-banner__txt-item {
    padding: 5px 15px;
  }
  .home-counseling-slider {
    overflow: hidden;
  }
  .home-counseling-slider__inner {
    padding-top: 110px;
    padding-bottom: 156px;
  }
  .home-counseling-slider-list {
    display: flex;
    align-items: flex-start;
  }
  .home-counseling-slider-list__item {
    max-width: 520px;
    width: 100%;
    padding-bottom: 5px;
  }
  .home-counseling-slider-list__item::after {
    right: 30px;
  }
  .home-counseling-slider-list__header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .home-counseling-slider-list__img {
    width: 80px;
    height: 80px;
    margin-right: 25px;
  }
  .home-counseling-slider-list__head {
    font-size: 2.3rem;
    line-height: 1.5217391304;
  }
  .home-counseling-content {
    padding-top: 55px;
  }
  .home-counseling-content::before {
    width: 1612px;
    height: 267px;
    background: url("../img/home/txt_free-counseling01.png") no-repeat center/cover;
    top: -45px;
  }
  .home-counseling-content__inner {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
  }
  .home-counseling-content__lbl {
    width: 564px;
    padding: 9px;
    margin-bottom: 50px;
    font-size: 3.8rem;
  }
  .home-counseling-content-list {
    display: flex;
    align-items: flex-start;
    margin-left: -55px;
    margin-bottom: 80px;
  }
  .home-counseling-content-list__item {
    max-width: 470px;
    width: 100%;
    margin-left: 55px;
  }
  .home-counseling-content-list__item + .home-counseling-content-list__item {
    margin-top: 0;
  }
  .home-counseling-content-list__img {
    margin-bottom: 30px;
  }
  .home-counseling-content-list__head {
    font-size: 2.6rem;
    line-height: 1.3461538462;
    margin-bottom: 30px;
  }
  .home-counseling-img {
    margin-bottom: 30px;
  }
  .home-counseling-img__inner {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
  }
  .home-counseling-btn {
    max-width: 580px;
    height: 130px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1600px) {
  .home-counseling-banner__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .home-counseling-content__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* .home-price
================================================ */
.home-price {
  background-color: rgb(var(--yellow03));
}
.home-price__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-price__head {
  margin-bottom: 31px;
}
.home-price__head-en-img {
  width: 70px;
  bottom: -40px;
  left: -23px;
}
.home-price__content {
  background-color: #fff;
  padding: 20px 0 30px 20px;
  box-sizing: border-box;
}
.home-price__content-list {
  margin-right: -25px;
}
.home-price-list {
  list-style: none;
  max-width: 980px;
  width: 100%;
  margin-left: -10px;
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  padding-bottom: 30px;
}
.home-price-list__item {
  width: 285px;
  margin-left: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.home-price-list-head {
  width: 285px;
  height: 70px;
  background-color: rgb(var(--orange));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-price-list-head__num {
  font-size: 3.1rem;
}
.home-price-list-head__txt {
  font-size: 1.9rem;
  font-weight: 700;
}
.home-price-list__content {
  padding: 15px 20px 25px;
  box-sizing: border-box;
  background-color: #fff;
}
.home-price-list-course {
  width: 100%;
  height: 139px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px;
  box-sizing: border-box;
  background-color: rgb(var(--gray));
  margin-bottom: 13px;
}
.home-price-list-course__lbl {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5384615385;
  color: #9F9F9F;
  margin-bottom: 6px;
}
.home-price-list-course__name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
.home-price-list-price {
  margin-bottom: 16px;
}
.home-price-list-price__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 6px;
}
.home-price-list-price__lbl {
  font-size: 1.7rem;
  line-height: 1.4705882353;
}
.home-price-list-price__num {
  font-size: 2.2rem;
  line-height: 1.1363636364;
}
.home-price-list-price__sym {
  font-size: 1.8rem;
}
.home-price-list-price__txt {
  font-size: 1.6rem;
}
.home-price-list-price__desc {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5454545455;
}
.home-price-list-list01__item {
  border-top: 1px solid #212121;
  padding-top: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
.home-price-list-list01__item:first-child .home-price-list-list01__lbl {
  position: relative;
}
.home-price-list-list01__item:first-child .home-price-list-list01__lbl::after {
  content: "";
  width: 10px;
  height: 7px;
  background: url(../img/common/ico_arrow03.png) no-repeat center/cover;
  position: absolute;
  top: 40%;
  transform: translateY(-40%);
  right: 10px;
}
.home-price-list-list01__item:first-child .home-price-list-list01__lbl.is-active::after {
  transform: rotate(180deg);
}
.home-price-list-list01__item:last-child {
  padding-bottom: 0;
}
.home-price-list-list01__lbl {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5833333333;
}
.home-price-list-list01__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.home-price-list-list01__head {
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
.home-price-list-list01__num {
  font-size: 2rem;
  line-height: 1.25;
}
.home-price-list-list01__txt {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}
.home-price-list-list01__ico {
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 17px;
}
@media all and (max-width: 767px) {
  .home-price {
    /* width */
    /* Track */
    /* Handle */
  }
  .home-price-list::-webkit-scrollbar {
    width: 100%;
    height: 5px;
  }
  .home-price-list::-webkit-scrollbar-track {
    background: rgb(var(--gray));
  }
  .home-price-list::-webkit-scrollbar-thumb {
    background: rgb(var(--yellow));
  }
}
@media all and (min-width: 768px) {
  .home-price {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
  .home-price__inner {
    padding-top: 110px;
    padding-bottom: 130px;
  }
  .home-price__head {
    margin-bottom: 72px;
    align-items: flex-start;
  }
  .home-price__head-en-img {
    width: 197px;
    bottom: -127px;
    left: -42px;
  }
  .home-price__content {
    padding: 35px 60px 50px;
  }
  .home-price__content-list {
    margin-right: 0;
  }
  .home-price-list {
    overflow-x: unset;
    padding-bottom: 0;
  }
  .home-price-list__item {
    width: 320px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  .home-price-list-head {
    width: 320px;
  }
  .home-price-list__content {
    padding: 15px 22px 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .home-price {
    width: 100%;
  }
}

/* .home-faq
================================================ */
.home-faq__inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
.home-faq__head-en-img {
  width: 57px;
  bottom: -35px;
  left: 11px;
}
.home-faq__main {
  position: relative;
  z-index: 1;
}
.home-faq__header, .home-faq__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 20px;
  box-sizing: border-box;
}
.home-faq__header {
  background-color: rgb(var(--yellow02));
}
.home-faq__sym {
  width: 30px;
  font-size: 2rem;
  margin-top: 3px;
}
.home-faq__head {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8125;
}
.home-faq__info {
  flex: 1;
}
.home-faq__txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7857142857;
}
.home-faq__note {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding-left: 1em;
}
.home-faq__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (min-width: 768px) {
  .home-faq__inner {
    padding-top: 110px;
    padding-bottom: 118px;
  }
  .home-faq__header, .home-faq__content {
    padding: 25px 30px;
    align-items: center;
  }
  .home-faq__sym {
    width: 65px;
    font-size: 4.5rem;
    margin-top: 0;
  }
  .home-faq__head {
    font-size: 2.3rem;
    line-height: 1.2608695652;
  }
  .home-faq__head-en-img {
    width: 160px;
    bottom: -124px;
    left: 29px;
  }
  .home-faq__txt, .home-faq__note {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}

/* .home-message
================================================ */
.home-message {
  background-color: #fef7e8;
  margin-bottom: -60px;
}
.home-message__inner {
  padding-top: 30px;
  padding-bottom: 88px;
  box-sizing: border-box;
}
.home-message__main {
  background-color: #fff;
  padding: 10px 10px 20px 10px;
  box-sizing: border-box;
}
.home-message__head {
  margin-bottom: 20px;
  background-color: rgb(var(--yellow));
  color: #fff;
  padding: 10px;
  text-align: center;
}
.home-message__head-main .in {
  position: relative;
  display: inline-block;
  margin: 0 20px 5px;
  font-size: 1.8rem;
  font-weight: 700;
}
.home-message__head-main .in::before, .home-message__head-main .in::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background: #fff;
}
.home-message__head-main .in::before {
  left: -90px;
}
.home-message__head-main .in::after {
  right: -90px;
}
.home-message__head-sub {
  font-size: 1.4rem;
}
.home-message__txt {
  padding: 0 10px;
  box-sizing: border-box;
}
.home-message__txt span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.home-message__txt span::before {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #FFF700;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 2px;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .home-message {
    margin-bottom: -180px;
  }
  .home-message__inner {
    padding-top: 80px;
    padding-bottom: 220px;
  }
  .home-message__main {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 10px 40px 10px;
  }
  .home-message__head {
    margin-bottom: 20px;
    padding: 12px 20px 16px;
  }
  .home-message__head-main {
    margin-bottom: 10px;
  }
  .home-message__head-main .in {
    font-size: 2.5rem;
  }
  .home-message__head-main .in::before, .home-message__head-main .in::after {
    width: 104px;
  }
  .home-message__head-main .in::before {
    left: -120px;
  }
  .home-message__head-main .in::after {
    right: -120px;
  }
  .home-message__head-sub {
    font-size: 1.6rem;
  }
  .home-message__txt {
    padding: 0;
    text-align: center;
  }
}

/* お詫びメッセージ 追記 230419
================================================ */
.top_message_owabi {
    padding-bottom: 20px;
}

/* twitter掲載 追記 230826
================================================ */
p.twitter-voice-content {
    width: fit-content;
    text-align: center;
    margin: 5px auto;
	font-size: 1.8rem;
}
p.twitter-voice__head-en-img {
    width: 30%;
    margin: -11% 0 0 0;
    left: 4%;
    z-index: 1;
}
h2.twitter-voice-header {
    text-align: center;
}
.twitter-voice-banner__img {
    padding: 5%;
}
.twitter-voice {
    padding: 10% 0 5% 0;
    background: #fef8ec;
}

@media all and (min-width: 768px) {
p.twitter-voice__head-en-img {
    width: 20%;
    left: 25%;
    margin: -10% 0 0 0;
    z-index: 1;
}
	p.twitter-voice-content {
    font-size: 3.3rem;
}
h2.twitter-voice-header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.twitter-voice-banner__img {
    padding: 3% 15%;
}
}