@charset "UTF-8";
/* ======================================
    Reset CSS 
====================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
main,
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;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

nav ul,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* form reset
------------------------------- */
input,
select {
  vertical-align: middle;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* IE text マーク削除 */
input::-ms-clear {
  visibility: hidden;
}

/* IE password マーク削除 */
input::-ms-reveal {
  visibility: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* ======================================
    Base (SP)
====================================== */
.check {
  font-weight: 700;
  color: red;
}

html {
  background: #fff;
  overflow-x: hidden;
  font-size: 100%;
}

body {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
}

h1 {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
}

p {
  font-size: 16px;
  font-size: 1rem;
  /* フォントサイズはbodyを継承 */
  line-height: 2;
}

/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: middle;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a img {
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

strong {
  font-weight: 700;
  color: #d46790;
}

address {
  font-style: normal;
}

/* リンク----------------------------- */
a {
  color: inherit;
  /* ブレ防止追加 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
  }
  a:hover img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

/* =================================================
    .ly_header 
=================================================== */
.ly_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 15px 15px;
  z-index: 10010;
}
@media screen and (min-width: 1025px) {
  .ly_header {
    padding: 25px 15px;
    height: 90px;
  }
}
.ly_header_inner {
  width: 90.6666666667%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .ly_header_inner {
    width: 96%;
  }
}

/* =================================================
    .bl_header
=================================================== */
.bl_header h1.el_topLogo {
  width: 58.5915492958%;
  max-width: 245px;
  height: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .bl_header h1.el_topLogo {
    position: absolute;
    top: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 430px;
    height: auto;
    max-width: none;
  }
}
.bl_header_logo {
  width: 58.5915492958%;
  max-width: 245px;
  height: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.bl_header .bl_sidenavi {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi {
    bottom: auto;
    top: 110px;
    width: 100px;
    height: 280px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
  }
}
.bl_header .bl_sidenavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bl_header .bl_sidenavi ul li {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.bl_header .bl_sidenavi ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi ul li a {
    display: block;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 20px;
  }
  .bl_header .bl_sidenavi ul li a:hover {
    opacity: 1;
    background: #e5105a;
  }
}
.bl_header .bl_sidenavi ul li a::before {
  content: "";
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi ul li a::before {
    margin-bottom: 10px;
  }
}
.bl_header .bl_sidenavi ul li:first-of-type {
  background: #808080;
}
.bl_header .bl_sidenavi ul li:first-of-type a::before {
  width: 46px;
  height: 40px;
  background: url(../images/common/side-navi/icon_nav-recruit.svg) no-repeat center center/contain;
}
.bl_header .bl_sidenavi ul li:nth-of-type(2) {
  background: #53b276;
}
.bl_header .bl_sidenavi ul li:nth-of-type(2) a::before {
  width: 50px;
  height: 32px;
  margin-bottom: 3px;
  background: url(../images/common/side-navi/icon_nav-application.svg) no-repeat center center/contain;
}
.bl_header .bl_sidenavi ul li:nth-of-type(3) {
  background: #d46790;
}
.bl_header .bl_sidenavi ul li:nth-of-type(3) a::before {
  width: 33px;
  height: 24px;
  margin-bottom: 8px;
  background: url(../images/common/side-navi/icon_nav-contact.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi ul li:nth-of-type(3) a:hover {
    opacity: 1;
    background: #e5105a;
  }
}
.bl_header .bl_sidenavi ul li:nth-of-type(4) {
  background: #159944;
  -ms-flex-preferred-size: 14.6666666667%;
      flex-basis: 14.6666666667%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi ul li:nth-of-type(4) {
    display: none;
  }
}
.bl_header .bl_sidenavi ul li:nth-of-type(4) a::before {
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-bottom: 5px;
}
.bl_header .bl_sidenavi_reqruit {
  width: 100%;
  height: 80px;
  position: fixed;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit {
    bottom: auto;
    top: 100px;
    width: 130px;
    height: auto;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    display: block;
  }
}
.bl_header .bl_sidenavi_reqruit h2 {
  margin-bottom: 8px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.bl_header .bl_sidenavi_reqruit .el_jobOffer {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #ffa319;
  padding: 8px;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit .el_jobOffer {
    padding: 18px 10px;
  }
}
.bl_header .bl_sidenavi_reqruit .el_jobOffer li {
  border: none;
}
.bl_header .bl_sidenavi_reqruit .el_jobOffer a {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
}
.bl_header .bl_sidenavi_reqruit .el_jobOffer a::after {
  content: "";
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit .el_jobOffer a::after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 10px;
    height: 10px;
    font-style: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-variant: normal;
    text-rendering: auto;
    letter-spacing: 0;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "\f054";
  }
}
.bl_header .bl_sidenavi_reqruit .el_entry {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #87a7e3;
  padding: 8px;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit .el_entry {
    padding: 18px 10px;
  }
}
.bl_header .bl_sidenavi_reqruit .el_gotop {
  background: #159944;
  -ms-flex-preferred-size: 14.6666666667%;
      flex-basis: 14.6666666667%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit .el_gotop {
    display: none;
  }
}
.bl_header .bl_sidenavi_reqruit .el_gotop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.bl_header .bl_sidenavi_reqruit .el_gotop a::before {
  content: "\f062";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-bottom: 5px;
}
.bl_header .bl_sidenavi_reqruit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.bl_header .bl_sidenavi_reqruit ul li {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li {
    border-bottom: 1px solid #fff;
  }
}
.bl_header .bl_sidenavi_reqruit ul li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li a {
    display: block;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    padding: 10px 8px;
  }
  .bl_header .bl_sidenavi_reqruit ul li a:hover {
    opacity: 1;
    background: #d46790;
  }
}
.bl_header .bl_sidenavi_reqruit ul li a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f078";
  display: block;
  width: 100%;
  height: 10px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li a::after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 10px;
    height: 10px;
    font-style: normal;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-variant: normal;
    text-rendering: auto;
    letter-spacing: 0;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    content: "\f054";
  }
}
.bl_header .bl_sidenavi_reqruit ul li.el_tel {
  border-right: 1px solid #fff;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li.el_tel {
    border-right: none;
  }
}
.bl_header .bl_sidenavi_reqruit ul li.el_tel span {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li.el_tel span {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.bl_header .bl_sidenavi_reqruit ul li.el_line {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_header .bl_sidenavi_reqruit ul li.el_line {
    display: block;
    border-right: 1px solid #fff;
  }
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_sidenavi_reqruit ul li.el_line {
    border-right: none;
    border-top: 1px solid #fff;
  }
}
.bl_header.is_scroll {
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.bl_header .bl_pageNavi {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_pageNavi {
    display: block;
    width: 60%;
    position: absolute;
    top: 50%;
    right: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (min-width: 1280px) {
  .bl_header .bl_pageNavi {
    width: 820px;
  }
}
.bl_header .bl_pageNavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_header .bl_pageNavi ul li {
  margin: 0 1%;
}
@media screen and (min-width: 1280px) {
  .bl_header .bl_pageNavi ul li {
    margin: 0 15px;
  }
}
.bl_header .bl_pageNavi ul li a {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(11.2px, 1.0479041916vw, 14px);
  font-weight: 500;
}
.bl_header .bl_pageNavi ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #d46790;
  position: absolute;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  bottom: -3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 1025px) {
  .bl_header .bl_pageNavi ul li a:hover {
    opacity: 1;
  }
  .bl_header .bl_pageNavi ul li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.is_btnHamburger__on .bl_header {
  background: rgba(255, 255, 255, 0.9);
}

@media screen and (min-width: 768px) {
  .home.is_btnHamburger__on h1,
  .home .is_scroll h1 {
    top: 10px;
    width: 300px;
  }
}
@media screen and (min-width: 1025px) {
  .home.is_btnHamburger__on h1,
  .home .is_scroll h1 {
    top: 12px;
    width: 390px;
  }
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  margin: 0;
  border-radius: 100vh;
  overflow: hidden;
  background: #e5105a;
  z-index: 11100;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .el_btnHamburger {
    top: 20px;
    right: 20px;
  }
  .el_btnHamburger:hover {
    background: #71c18e;
  }
}
.el_btnHamburger__animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 8px;
  text-align: center;
  z-index: 11000;
}
.el_btnHamburger_line {
  background: #fff;
  width: 100%;
  height: 2px;
  border-radius: 100vh;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 10100;
}

.el_btnHamburger_line.el_btnHamburger_line__top {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.el_btnHamburger_line.el_btnHamburger_line__bottom {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__top {
  background: #fff;
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__bottom {
  background: #fff;
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
}

/* 背景 */
.bl_wrapBg {
  position: fixed;
  left: 0;
  top: 70px;
  width: 100vw;
  height: 100%;
  z-index: 10000;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .bl_wrapBg {
    top: 90px;
  }
}

/* 表示された時用のCSS */
.is_btnHamburger__on .bl_wrapBg {
  opacity: 0.8;
  visibility: visible;
}

/* ======================================
    .bl_headerNav
====================================== */
.bl_headerNav {
  position: fixed;
  top: 70px;
  /* 右から出す場合 */
  right: -500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  max-width: 490px;
  height: calc(100% - 90px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.9); /* 背景色 */
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10010;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .bl_headerNav {
    right: -500px;
    max-width: 490px;
    padding: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .bl_headerNav {
    top: 90px;
  }
}
.bl_headerNav_leftbox, .bl_headerNav_rightbox {
  width: 45.5882352941%;
  max-width: 155px;
}
@media screen and (min-width: 768px) {
  .bl_headerNav_leftbox, .bl_headerNav_rightbox {
    width: 177px;
    max-width: none;
  }
}
.bl_headerNav_sec {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_headerNav_sec {
    margin-bottom: 40px;
  }
}
.bl_headerNav_sec h2 {
  padding-bottom: 3px;
  border-bottom: 3px solid #d46790;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #d46790;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_headerNav_sec h2 {
    padding-bottom: 13px;
  }
}
.bl_headerNav .menu-item {
  position: relative;
  border-bottom: 1px solid #d46790;
}
.bl_headerNav .menu-item::after {
  position: absolute;
  top: 50%;
  right: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #d46790;
  font-size: 10px;
  pointer-events: none;
}
.bl_headerNav .menu-item a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .bl_headerNav .menu-item a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.bl_headerNav_link {
  position: relative;
  display: block;
  padding: 2em;
  line-height: 1.6; /* 項目高さ */
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-bottom: 1px dotted #fff;
}
@media screen and (min-width: 1025px) {
  .bl_headerNav_link {
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid transparent;
    color: #222;
    line-height: 1;
  }
  .bl_headerNav_link:focus, .bl_headerNav_link:hover {
    border-bottom-color: #d46790;
  }
}

.is_btnHamburger__on .bl_headerNav {
  right: 0; /* 右から出す場合 */
}

@media screen and (min-width: 1025px) {
  /*　for PC　*/
  .bl_headerNav_item:last-child .bl_headerNav_link::after {
    content: none;
  }
}
/* =================================================
    footer
=================================================== */
.bl_footer {
  background: #71c18e;
  padding-top: 70px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .bl_footer {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-bottom: 0;
  }
}
.bl_footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .bl_footer_inner {
    width: 96%;
    max-width: 1000px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 55px;
  }
}
.bl_footer_logo {
  text-align: center;
}
.bl_footer_logo img {
  width: 245px;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (min-width: 960px) {
  .bl_footer_logo img {
    width: 368px;
  }
}
.bl_footer_copyright {
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
.bl_footer_nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 70px;
}
@media screen and (min-width: 960px) {
  .bl_footer_nav {
    width: 300px;
    margin-bottom: 0;
  }
}
.bl_footer_nav .el_sns {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 102px;
  height: auto;
  z-index: 11;
}
@media screen and (min-width: 960px) {
  .bl_footer_nav .el_sns {
    width: 86px;
  }
}
.bl_footer_nav .el_sns .el_fb,
.bl_footer_nav .el_sns .el_youtube,
.bl_footer_nav .el_sns .el_tiktok {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 20px;
  margin-right: 20px;
  margin-bottom: 0;
}
.bl_footer_nav .el_sns .el_fb a,
.bl_footer_nav .el_sns .el_youtube a,
.bl_footer_nav .el_sns .el_tiktok a {
  display: block;
  width: 100%;
  height: 100%;
}
.bl_footer_nav .el_sns .el_fb a {
  background: url(../images/common/icon_fb.svg) no-repeat center center/contain;
}
.bl_footer_nav .el_sns .el_youtube a {
  background: url(../images/common/icon_youtube.svg) no-repeat center center/contain;
}
.bl_footer_nav .el_sns .el_tiktok a {
  background: url(../images/common/icon_tiktok.svg) no-repeat center center/contain;
}

.bl_footer_nav .menu-item {
  margin-bottom: 18px;
}
@media screen and (min-width: 960px) {
  .bl_footer_nav .menu-item {
    margin-bottom: 20px;
  }
}
.bl_footer_nav .menu-item:last-of-type {
  margin-bottom: 0;
}
.bl_footer_nav .menu-item a:not(.el_sns a) {
  color: #fff;
}
.bl_footer_nav .menu-item a:not(.el_sns a)::after {
  content: "\f054";
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.ly_sec_inner {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ly_sec_inner {
    width: 80%;
  }
}
@media screen and (min-width: 1025px) {
  .ly_sec_inner {
    width: 96%;
    max-width: 1000px;
  }
}

/* =================================================
    main
=================================================== */
main.bl_page_front {
  margin-top: 70px;
}
@media screen and (min-width: 1025px) {
  main.bl_page_front {
    margin-top: 90px;
  }
}

/* =================================================
    2カラムレイアウト 
=================================================== */
@media screen and (min-width: 1025px) {
  .ly_single {
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.ly_single .ly_cont_side {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .ly_single .ly_cont_side {
    width: 250px;
  }
}

/* ==============================================
    form Reset
================================================= */
input[type=submit] {
  -webkit-appearance: none !important;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
}

input[type=text],
input[type=email] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + label {
  background: #967a7a;
}

input[type=radio]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
          box-shadow: 0 0 0 1000px white inset;
}

/* ==============================================
   form module
================================================= */
/* required item
  ------------------------------ */
.el_required {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #d46790;
  vertical-align: super;
}

/* error item
  ------------------------------ */
.el_error_ttl {
  display: block;
  color: #e5105a;
  font-weight: bold;
}

/* ------------------------------ */
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea {
  width: 100%;
  background: #fff;
  padding: 0.6em 0.9em;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
}

input[type=hidden],
textarea[type=hidden],
select[type=hidden] {
  display: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #ccc;
  font-weight: normal;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #ccc;
  font-weight: normal;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #ccc;
  font-weight: normal;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #ccc;
  font-weight: normal;
}

input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #ccc;
  font-weight: normal;
}

/* select box
  ---------------------------------------- */
.selectbox {
  position: relative;
  width: 170px;
  margin: 0;
}

.selectbox::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  right: 10%;
  top: 35%;
  border-bottom: #707070 1px solid;
  border-right: #707070 1px solid;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 0.5em 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #707070;
  border-radius: 3px;
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
}

/* check box
  ---------------------------------------- */
.checkbox {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 90%;
}

.checkboxSpan {
  padding-left: 1.5em;
  position: relative;
  margin-right: 20px;
}

.checkboxSpan::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  border-radius: 2px;
}

.checkbox input:checked + .checkboxSpan {
  color: #000;
}

.checkbox input:checked + .checkboxSpan::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #707070;
  border-right: 2px solid #707070;
}

/* radio
  ---------------------------------------- */
.radio {
  display: none;
}

.wrapRadio label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 1em;
  padding-left: 2em;
}

.wrapRadio span {
  padding-left: 2em;
}

.radio + span::before,
.radio + span::after {
  position: absolute;
  display: block;
  content: "";
  border-radius: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* 外枠 */
.radio + span::before {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #707070;
}

/* チェックマーク */
.radio + span::after {
  opacity: 0;
  top: 50%;
  left: 4px; /* 18 = befre w + border*/
  width: 10px;
  height: 10px;
  background: #000;
  -webkit-transform: translateY(-50%) scale(2);
          transform: translateY(-50%) scale(2);
}

.radio:checked + span::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}

/* 送信ボタン
  ---------------------------------------- */
input.btn_check,
input.btn_back,
input.btn_send,
button[type=submit],
input[type=submit] {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-width: 300px;
  padding: 16px;
  border: 1px solid #d46790;
  border-radius: 100vh;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #d46790;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  input.btn_check:hover,
  input.btn_back:hover,
  input.btn_send:hover,
  button[type=submit]:hover,
  input[type=submit]:hover {
    opacity: 1;
    background: #d46790;
    color: #fff;
  }
  input.btn_check:hover::after,
  input.btn_back:hover::after,
  input.btn_send:hover::after,
  button[type=submit]:hover::after,
  input[type=submit]:hover::after {
    background: url(../images/common/icon_arrow-r_white.svg) no-repeat center center/15px 12px;
  }
}
input.btn_check::after,
input.btn_back::after,
input.btn_send::after,
button[type=submit]::after,
input[type=submit]::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-left: 1em;
  background: url(../images/common/icon_arrow-r_pink.svg) no-repeat center center/15px 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input.btn_back,
input[name=submitBack],
button[name=submitBack] {
  margin-top: 50px;
  border: 1px solid #707070;
  color: #707070;
}
input.btn_back::after,
input[name=submitBack]::after,
button[name=submitBack]::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  input.btn_back:hover,
  input[name=submitBack]:hover,
  button[name=submitBack]:hover {
    opacity: 1;
    background: #707070;
    color: #fff;
  }
}

input[type=submit]:disabled {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  input[type=submit]:disabled:hover {
    cursor: default;
    background-color: #ccc;
    border-color: #ccc;
  }
}

/* ==============================================
    .ly_form
================================================= */
dl.ly_form {
  width: 80%;
  max-width: 700px;
  margin: 90px auto;
}
@media screen and (min-width: 768px) {
  dl.ly_form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
}
dl.ly_form dt {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  dl.ly_form dt {
    -ms-flex-preferred-size: 28.5714285714%;
        flex-basis: 28.5714285714%;
    padding-top: 20px;
  }
  dl.ly_form dt:first-child {
    padding-top: 10px;
  }
}
dl.ly_form dd {
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  dl.ly_form dd {
    -ms-flex-preferred-size: 71.4285714286%;
        flex-basis: 71.4285714286%;
  }
}
dl.ly_form dd .el_innnerdl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.mw_wp_form_confirm dl.ly_form dd {
  padding-top: 20px;
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  opacity: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_fadeInTrigger,
.js_fadeUpTrigger,
.js_fadeDownTrigger,
.js_fadeLeftTrigger,
.js_fadeRightTrigger {
  opacity: 0;
}

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown {
  -webkit-animation-name: flipDownAnime;
          animation-name: flipDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}

@keyframes flipDownAnime {
  from {
    -webkit-transform: perspective(2500px) rotateX(100deg);
            transform: perspective(2500px) rotateX(100deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(2500px) rotateX(0);
            transform: perspective(2500px) rotateX(0);
    opacity: 1;
  }
}
/* 左へ */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: left center;
          perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 左上へ */
.flipLeftTop {
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* 右へ */
.flipRight {
  -webkit-animation-name: flipRightAnime;
          animation-name: flipRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-perspective-origin: right center;
          perspective-origin: right center;
  opacity: 0;
}

@-webkit-keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
            transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/* 右上へ */
.flipRightTop {
  -webkit-animation-name: flipRightTopAnime;
          animation-name: flipRightTopAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_flipDownTrigger,
.js_flipLeftTrigger,
.js_flipLeftTopTrigger,
.js_flipRightTrigger,
.js_flipRightTopTrigger {
  opacity: 0;
}

/*==================================================
くるっ
===================================*/
/* X 軸（縦へ） */
.rotateX {
  -webkit-animation-name: rotateXAnime;
          animation-name: rotateXAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}

@keyframes rotateXAnime {
  from {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    opacity: 1;
  }
}
/*　Y軸（横へ） */
.rotateY {
  -webkit-animation-name: rotateYAnime;
          animation-name: rotateYAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}

@keyframes rotateYAnime {
  from {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateY(-360deg);
            transform: rotateY(-360deg);
    opacity: 1;
  }
}
/* Z 軸（左へ） */
.rotateLeftZ {
  -webkit-animation-name: rotateLeftZAnime;
          animation-name: rotateLeftZAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}

@keyframes rotateLeftZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(-360deg);
            transform: rotateZ(-360deg);
    opacity: 1;
  }
}
/*　Z 軸（右へ） */
.rotateRightZ {
  -webkit-animation-name: rotateRightZAnime;
          animation-name: rotateRightZAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}

@keyframes rotateRightZAnime {
  from {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
    opacity: 0;
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_rotateXTrigger,
.js_rotateYTrigger,
.js_rotateLeftZTrigger,
.js_rotateRightZTrigger {
  opacity: 0;
}

/*==================================================
ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_zoomInTrigger,
.js_zoomOutTrigger {
  opacity: 0;
}

/*==================================================
じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_blurTrigger {
  opacity: 0.1;
}

/*==================================================
にゅーん
===================================*/
/* 滑らかに変形して出現 */
.smooth {
  -webkit-animation-name: smoothAnime;
          animation-name: smoothAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0;
}

@-webkit-keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}

@keyframes smoothAnime {
  from {
    -webkit-transform: translate3d(0, 100%, 0) skewY(12deg);
            transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
            transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_smoothTrigger {
  opacity: 0;
  opacity: 1;
}

/*==================================================
スーッ（枠線が伸びて出現）
===================================*/
/*枠線が伸びて出現*/
.js_lineTrigger {
  position: relative; /* 枠線が書かれる基点*/
  opacity: 0;
}

.js_lineTrigger.lineanime {
  -webkit-animation-name: lineAnimeBase;
          animation-name: lineAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lineAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*上下線*/
.js_lineTrigger::before,
.js_lineTrigger::after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #333; /* 枠線の色*/
}

/*左右線*/
.line2::before,
.line2::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 0;
  background: #333; /* 枠線の色*/
}

/*上線*/
.js_lineTrigger::before {
  top: 0;
  left: 0;
}

.js_lineTrigger.lineanime::before {
  -webkit-animation: lineAnime 0.5s linear 0s forwards;
          animation: lineAnime 0.5s linear 0s forwards; /*表示されて0秒後に上線が0.5秒かけて表示*/
}

/*右線*/
.js_line2::before {
  top: 0;
  right: 0;
}

.js_lineTrigger.lineanime .line2::before {
  -webkit-animation: lineAnime2 0.5s linear 0.5s forwards;
          animation: lineAnime2 0.5s linear 0.5s forwards; /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}

/*下線*/
.js_lineTrigger::after {
  bottom: 0;
  right: 0;
}

.js_lineTrigger.lineanime::after {
  -webkit-animation: lineAnime 0.5s linear 1s forwards;
          animation: lineAnime 0.5s linear 1s forwards; /*表示されて1秒後に下線が0.5秒かけて表示*/
}

/*左線*/
.line2::after {
  bottom: 0;
  left: 0;
}

.js_lineTrigger.lineanime .line2::after {
  -webkit-animation: lineAnime2 0.5s linear 1.5s forwards;
          animation: lineAnime2 0.5s linear 1.5s forwards; /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@-webkit-keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes lineAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes lineAnime2 {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*枠線内側の要素*/
.js_lineTrigger.lineanime .lineinappear {
  -webkit-animation: lineInnerAnime 0.5s linear 1.5s forwards;
          animation: lineInnerAnime 0.5s linear 1.5s forwards; /*1.5秒後に中央のエリアが0.5秒かけて表示*/
  opacity: 0; /*初期値を透過0にする*/
}

@-webkit-keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes lineInnerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
シャッ（背景色が伸びて出現）
===================================*/
/*背景色が伸びて出現（共通）*/
.js_bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.js_bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から*/
.js_bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7e0e9; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*右から*/
.js_bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7e0e9; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*下から*/
.js_bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7e0e9; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  100% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/*上から*/
.js_bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7e0e9; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  50.001% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.js_bgappearTrigger,
.js_bgUDextendTrigger,
.js_bgDUextendTrigger,
.js_bgRLextendTrigger,
.js_bgLRextendTrigger {
  opacity: 0;
}

/* =================================================
    アニメーション設定
=================================================== */
/* アニメーションの回数を決めるCSS*/
.count2 {
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2; /*この数字を必要回数分に変更*/
}

.countinfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.hp_delay_time0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.hp_delay_time1 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.hp_delay_time2 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.hp_delay_time3 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.hp_delay_time4 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hp_delay_time5 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.hp_delay_time6 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.hp_delay_time7 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.hp_delay_time8 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.hp_delay_time9 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.hp_delay_time10 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.hp_change_time0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
}

.hp_change_time1 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.hp_change_time2 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.hp_change_time3 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.hp_change_time4 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.hp_change_time5 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.hp_change_time6 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.hp_change_time7 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}

.hp_change_time8 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
}

.hp_change_time9 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
}

.hp_change_time10 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

/* ======================================
    .mask
====================================== */
.js_mask {
  position: relative;
  display: block;
  overflow: hidden;
}

/* ======================================
    .js_pageTop
====================================== */
.bl_pageTop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_pageTop {
    position: fixed;
    width: 70px;
    height: 35px;
    bottom: 0;
    right: 2%;
    cursor: pointer;
    z-index: 11010;
  }
  .bl_pageTop:hover {
    opacity: 0.7;
  }
  .bl_pageTop img {
    border-radius: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}

.el_spgotop {
  position: fixed;
  width: 70px;
  height: 60px;
  bottom: 0;
  right: 2%;
  padding-top: 10px;
  background: #159944;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  cursor: pointer;
  z-index: 11010;
}
@media screen and (min-width: 1025px) {
  .el_spgotop {
    display: none;
  }
}
.el_spgotop:hover {
  opacity: 0.7;
}
.el_spgotop img {
  border-radius: 0;
}

/* ======================================
    .bl_modal
====================================== */
.js_lock {
  overflow: hidden;
}

.bl_modal {
  position: fixed;
  display: none;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  padding: 50px 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  z-index: 11112;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_modal {
    padding: 80px 0;
  }
}
.bl_modal_inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1.5em;
  margin: 0 auto;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .bl_modal_inner {
    padding: 0 5%;
  }
}
@media screen and (min-width: 1280px) {
  .bl_modal_inner {
    max-width: 1200px;
    padding: 0 15%;
  }
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 11110;
}

.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11112;
}

.el_modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 100vh;
  padding: 0;
  cursor: pointer;
  background: #e5105a;
  font-size: 18px;
  color: #fff;
  border: none;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 11112;
}
@media screen and (min-width: 768px) {
  .el_modal_close {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .el_modal_close {
    top: 50px;
    right: 50px;
  }
}

.el_modal_close:hover {
  background: #71c18e;
}

/* ======================================
    TAB 設定
====================================== */
.js_tabArea {
  display: none;
  opacity: 0;
}

.js_tabArea.is-show {
  display: block;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ======================================
    Common Class
====================================== */
/*  display
-------------------------------------- */
.sp_none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .sp_none {
    display: block !important;
  }
}

.sp_display {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp_display {
    display: none !important;
  }
}

.pc_none {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .pc_none {
    display: none !important;
  }
}

.pc_display {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .pc_display {
    display: block !important;
  }
}

/*  direction
-------------------------------------- */
.hp_row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/*  text_align
-------------------------------------- */
.hp_text_center {
  text-align: center !important;
}

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

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

/*  margin padding
-------------------------------------- */
/* margin 部分的な設定*/
.hp_mb-0 {
  margin-bottom: 0px !important;
  margin-bottom: 0rem !important;
}

.hp_mb-5 {
  margin-bottom: 5px !important;
  margin-bottom: 0.5rem !important;
}

.hp_mb-10 {
  margin-bottom: 10px !important;
  margin-bottom: 1rem !important;
}

.hp_mb-15 {
  margin-bottom: 15px !important;
  margin-bottom: 1.5rem !important;
}

.hp_mb-20 {
  margin-bottom: 20px !important;
  margin-bottom: 2rem !important;
}

.hp_mb-25 {
  margin-bottom: 25px !important;
  margin-bottom: 2.5rem !important;
}

.hp_mb-30 {
  margin-bottom: 30px !important;
  margin-bottom: 3rem !important;
}

.hp_mb-35 {
  margin-bottom: 35px !important;
  margin-bottom: 3.5rem !important;
}

.hp_mb-40 {
  margin-bottom: 40px !important;
  margin-bottom: 4rem !important;
}

.hp_mb-45 {
  margin-bottom: 45px !important;
  margin-bottom: 4.5rem !important;
}

.hp_mb-50 {
  margin-bottom: 50px !important;
  margin-bottom: 5rem !important;
}

.hp_mb-55 {
  margin-bottom: 55px !important;
  margin-bottom: 5.5rem !important;
}

.hp_mb-60 {
  margin-bottom: 60px !important;
  margin-bottom: 6rem !important;
}

.hp_mb-65 {
  margin-bottom: 65px !important;
  margin-bottom: 6.5rem !important;
}

.hp_mb-70 {
  margin-bottom: 70px !important;
  margin-bottom: 7rem !important;
}

.hp_mb-75 {
  margin-bottom: 75px !important;
  margin-bottom: 7.5rem !important;
}

.hp_mb-80 {
  margin-bottom: 80px !important;
  margin-bottom: 8rem !important;
}

.hp_mb-85 {
  margin-bottom: 85px !important;
  margin-bottom: 8.5rem !important;
}

.hp_mb-90 {
  margin-bottom: 90px !important;
  margin-bottom: 9rem !important;
}

.hp_mb-95 {
  margin-bottom: 95px !important;
  margin-bottom: 9.5rem !important;
}

.hp_mb-100 {
  margin-bottom: 100px !important;
  margin-bottom: 10rem !important;
}

.hp_mt-0 {
  margin-top: 0px !important;
  margin-top: 0rem !important;
}

.hp_mt-5 {
  margin-top: 5px !important;
  margin-top: 0.5rem !important;
}

.hp_mt-10 {
  margin-top: 10px !important;
  margin-top: 1rem !important;
}

.hp_mt-15 {
  margin-top: 15px !important;
  margin-top: 1.5rem !important;
}

.hp_mt-20 {
  margin-top: 20px !important;
  margin-top: 2rem !important;
}

.hp_mt-25 {
  margin-top: 25px !important;
  margin-top: 2.5rem !important;
}

.hp_mt-30 {
  margin-top: 30px !important;
  margin-top: 3rem !important;
}

.hp_mt-35 {
  margin-top: 35px !important;
  margin-top: 3.5rem !important;
}

.hp_mt-40 {
  margin-top: 40px !important;
  margin-top: 4rem !important;
}

.hp_mt-45 {
  margin-top: 45px !important;
  margin-top: 4.5rem !important;
}

.hp_mt-50 {
  margin-top: 50px !important;
  margin-top: 5rem !important;
}

/* padding 部分的な設定*/
.hp_pb-0 {
  padding-bottom: 0px !important;
  padding-bottom: 0rem !important;
}

.hp_pb-5 {
  padding-bottom: 5px !important;
  padding-bottom: 0.5rem !important;
}

.hp_pb-10 {
  padding-bottom: 10px !important;
  padding-bottom: 1rem !important;
}

.hp_pb-15 {
  padding-bottom: 15px !important;
  padding-bottom: 1.5rem !important;
}

.hp_pb-20 {
  padding-bottom: 20px !important;
  padding-bottom: 2rem !important;
}

.hp_pb-25 {
  padding-bottom: 25px !important;
  padding-bottom: 2.5rem !important;
}

.hp_pb-30 {
  padding-bottom: 30px !important;
  padding-bottom: 3rem !important;
}

.hp_pb-35 {
  padding-bottom: 35px !important;
  padding-bottom: 3.5rem !important;
}

.hp_pb-40 {
  padding-bottom: 40px !important;
  padding-bottom: 4rem !important;
}

.hp_pb-45 {
  padding-bottom: 45px !important;
  padding-bottom: 4.5rem !important;
}

.hp_pb-50 {
  padding-bottom: 50px !important;
  padding-bottom: 5rem !important;
}

/* =================================================
    お知らせ一覧へ戻る ボタン
=================================================== */
.el_btnAll {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-width: 300px;
  padding: 16px;
  border: 1px solid #d46790;
  border-radius: 100vh;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #d46790;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .el_btnAll:hover {
    opacity: 1;
    background: #d46790;
    color: #fff;
  }
  .el_btnAll:hover::after {
    background: url(../images/common/icon_arrow-r_white.svg) no-repeat center center/15px 12px;
  }
}
.el_btnAll::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-left: 1em;
  background: url(../images/common/icon_arrow-r_pink.svg) no-repeat center center/15px 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* =================================================
    詳しく見る ボタン
=================================================== */
.el_btnMore {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  max-width: 300px;
  padding: 16px;
  border: 1px solid #d46790;
  border-radius: 100vh;
  background: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #d46790;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .el_btnMore:hover {
    opacity: 1;
    background: #d46790;
    color: #fff;
  }
  .el_btnMore:hover::after {
    background: url(../images/common/icon_arrow-r_white.svg) no-repeat center center/15px 12px;
  }
}
.el_btnMore::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 12px;
  margin-left: 1em;
  background: url(../images/common/icon_arrow-r_pink.svg) no-repeat center center/15px 12px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* =================================================
    お問い合わせフォームはこちら ボタン
=================================================== */
.el_btnContactForm {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 340px;
  padding: 15px 2em;
  border: 1px solid #d46790;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .el_btnContactForm {
    max-width: 600px;
    padding: 30px 2em;
  }
}
@media screen and (min-width: 1025px) {
  .el_btnContactForm:hover {
    opacity: 1;
    background: rgba(212, 103, 144, 0.2);
  }
}
.el_btnContactForm span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 30px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #d46790;
  text-align: left;
  background: url(../images/common/icon_arrow-r_pink.svg) no-repeat center right/15px 12px;
}
@media screen and (min-width: 768px) {
  .el_btnContactForm span {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .el_btnContactForm span br {
    display: none;
  }
}

/* =================================================
    nav icon　設定
=================================================== */
.el_campusNav {
  padding: 40px 6px 40px;
}
@media screen and (min-width: 768px) {
  .el_campusNav {
    width: 100%;
    padding: 40px 50px 40px;
  }
}
.el_campusNav li {
  display: inline-block;
  width: 49%;
  padding: 10px 0 10px 32px;
}
@media screen and (min-width: 1025px) {
  .el_campusNav li {
    width: 32%;
  }
}
@media screen and (min-width: 1280px) {
  .el_campusNav li {
    width: auto;
    margin-right: 2em;
  }
}
.el_campusNav li.el_icon__campus {
  background: url(../images/common/icon_01.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__nursingHome {
  background: url(../images/common/icon_02.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__inHomeCareOffice {
  background: url(../images/common/icon_03.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__groupHome {
  background: url(../images/common/icon_05.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__shortStay {
  background: url(../images/common/icon_06.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__homeCareCenter {
  background: url(../images/common/icon_07.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon__helperStation {
  background: url(../images/common/icon_08.svg) no-repeat left center;
  background-size: 26px 24px;
}
.el_campusNav li.el_icon a {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  font-size: 0.8125rem;
  font-size: clamp(10.4px, 3.4666666667vw, 13px);
}
@media screen and (min-width: 1025px) {
  .el_campusNav li.el_icon a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #71c18e;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    bottom: -3px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .el_campusNav li.el_icon a:hover {
    opacity: 1;
  }
  .el_campusNav li.el_icon a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

/* =================================================
    見出し設定
=================================================== */
/* 見出し_1 */
/* 見出し_2 */
/* トップ セクション見出し_2 */
/* 見出し_3 */
/* 見出し_4 */
/* 見出し_5 */
/* 見出し_6 */
.el_fillBland {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  padding-top: 3px;
  padding-bottom: 4px;
  background: #d46790;
  border-radius: 8px;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(14.4px, 4.2056074766vw, 18px);
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .el_fillBland {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

/* =================================================
    .bl_topfv
=================================================== */
.bl_topfv {
  position: relative;
  aspect-ratio: 375/566;
}
@media screen and (min-width: 1025px) {
  .bl_topfv {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 1280px) {
  .bl_topfv {
    aspect-ratio: 1920/1080;
  }
}
.bl_topfv_inner {
  width: 94.6666666667%;
  max-width: 1460px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .bl_topfv_inner {
    top: 140px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topfv_inner {
    width: 76.0416666667%;
    top: 100px;
  }
}
.bl_topfv_inner .el_img {
  position: absolute;
  display: inline-block;
  height: auto;
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.bl_topfv_inner .el_img img {
  border-radius: 100vh;
  border: 2px solid #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.bl_topfv_inner .el_img_staff01 {
  width: 33.8028169014%;
  max-width: 220px;
  top: 70px;
  left: 0;
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff01 {
    width: 220px;
    top: 0;
    left: 0;
  }
}
.bl_topfv_inner .el_img_staff02 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff02 {
    display: block;
    width: 170px;
    top: 110px;
    left: 15.0684931507%;
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s; /* アニメーションの開始時間指定 */
  }
}
.bl_topfv_inner .el_img_staff03 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff03 {
    display: block;
    width: 170px;
    top: 120px;
    left: 36.6438356164%;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; /* アニメーションの開始時間指定 */
  }
}
.bl_topfv_inner .el_img_staff04 {
  width: 28.1690140845%;
  max-width: 220px;
  top: 135px;
  left: 33%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff04 {
    width: 220px;
    top: 180px;
    left: auto;
    right: 36.6438356164%;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s; /* アニメーションの開始時間指定 */
  }
}
.bl_topfv_inner .el_img_staff05 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff05 {
    display: block;
    width: 170px;
    top: 110px;
    right: 15.0684931507%;
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s; /* アニメーションの開始時間指定 */
  }
}
.bl_topfv_inner .el_img_staff06 {
  width: 36.6197183099%;
  max-width: 220px;
  top: 70px;
  right: 0;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 1280px) {
  .bl_topfv_inner .el_img_staff06 {
    width: 220px;
    top: 0;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s; /* アニメーションの開始時間指定 */
  }
}
@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bl_topfv_mainImg {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 676/457;
  width: 170%;
  height: auto;
  -webkit-animation-name: blurtopAnime;
          animation-name: blurtopAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 768px) {
  .bl_topfv_mainImg {
    top: 10%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topfv_mainImg {
    top: 100px;
    width: 120%;
    aspect-ratio: 2100/766;
  }
}
@-webkit-keyframes blurtopAnime {
  from {
    -webkit-filter: blur(30px);
            filter: blur(30px);
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes blurtopAnime {
  from {
    -webkit-filter: blur(30px);
            filter: blur(30px);
    -webkit-transform: translateX(-50%) scale(1.05);
            transform: translateX(-50%) scale(1.05);
    opacity: 0.1;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
.bl_topfv_nav {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 94.6666666667%;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .bl_topfv_nav {
    max-width: 1020px;
  }
}
.bl_topfv_nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28.1690140845%;
  max-width: 160px;
}
@media screen and (min-width: 1025px) {
  .bl_topfv_nav li {
    max-width: 180px;
  }
}
.bl_topfv_nav li:first-of-type a {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
}
.bl_topfv_nav li:nth-of-type(2) a {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; /* アニメーションの開始時間指定 */
}
.bl_topfv_nav li:nth-of-type(3) a {
  -webkit-animation-delay: 1s;
          animation-delay: 1s; /* アニメーションの開始時間指定 */
}
.bl_topfv_nav li:nth-of-type(4) a {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; /* アニメーションの開始時間指定 */
}
.bl_topfv_nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: #d46790;
  border-radius: 100vh;
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* アニメーションをループさせる */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
}
@media screen and (min-width: 768px) {
  .bl_topfv_nav li a {
    border: 10px solid #fff;
    position: relative;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3;
  }
  .bl_topfv_nav li a::before {
    position: absolute;
    content: "";
    top: -55%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 140px;
    height: 130px;
    background: url(../images/top/window_01.svg) no-repeat center center/contain;
    -webkit-transition: all ease-in-out 0.6s;
    transition: all ease-in-out 0.6s;
  }
  .bl_topfv_nav li a:hover {
    opacity: 1;
    background: #71c18e;
  }
  .bl_topfv_nav li a:hover::before {
    opacity: 1;
    position: absolute;
    content: "";
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 150px;
    height: 140px;
    background: url(../images/top/window_02.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topfv_nav li a {
    font-size: 38px;
    font-size: 2.375rem;
  }
  .bl_topfv_nav li a::before {
    width: 150px;
    height: 140px;
  }
}
.bl_topfv_nav li a .el_sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .bl_topfv_nav li a .el_sub {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topfv_nav li a .el_sub {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.bl_topfv_nav li a .el_en {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_topfv_nav li a .el_en {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
  }
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* =================================================
    .bl_topTopics
=================================================== */
.bl_topTopics {
  padding-top: 70px;
  padding-bottom: 0px;
}
@media screen and (min-width: 1025px) {
  .bl_topTopics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topTopics_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    max-width: none;
  }
}
.bl_topTopics_img {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_topTopics_img {
    display: block;
    -ms-flex-preferred-size: 52%;
        flex-basis: 52%;
    aspect-ratio: 960/450;
  }
  .bl_topTopics_img img {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: -2%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topTopics_cont {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 4%;
  }
}
.bl_topTopics_cont h2 {
  margin-bottom: 50px;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(32px, 10.6666666667vw, 40px);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #159944;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_topTopics_cont h2 {
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(32px, 2.0833333333vw, 40px);
    margin-bottom: 20px;
    text-align: left;
  }
}
.bl_topTopics_cont ul {
  border-top: 1px dotted #707070;
}
.bl_topTopics_cont ul li {
  position: relative;
  border-bottom: 1px dotted #707070;
  padding-top: 18px;
  padding-left: 10px;
  padding-bottom: 18px;
}
.bl_topTopics_cont ul li::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  font-size: 10px;
  font-size: 0.625rem;
  color: #71c18e;
}
@media screen and (min-width: 768px) {
  .bl_topTopics_cont ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.bl_topTopics_cont ul .el_listheader {
  display: block;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .bl_topTopics_cont ul .el_listheader {
    -ms-flex-preferred-size: 170px;
        flex-basis: 170px;
    margin-bottom: 0;
  }
}
.bl_topTopics_cont ul .el_listheader .el_iconCategory {
  display: inline-block;
  background: #71c18e;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.bl_topTopics_cont ul .el_listheader time {
  display: inline-block;
}
.bl_topTopics_cont ul a {
  display: block;
  padding-right: 3em;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .bl_topTopics_cont ul a {
    -ms-flex-preferred-size: calc(100% - 170px);
        flex-basis: calc(100% - 170px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_topTopics_cont ul a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}
.bl_topTopics .el_wrapBtn {
  margin-top: 50px;
  text-align: center;
}
.bl_topTopics .el_btn_more {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 2em;
  width: 300px;
  background: #fff;
  border: 1px solid #71c18e;
  border-radius: 100vh;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  color: #71c18e;
}
@media screen and (min-width: 1025px) {
  .bl_topTopics .el_btn_more:hover {
    opacity: 1;
    background: #71c18e;
    color: #fff;
  }
}
.bl_topTopics .el_btn_more::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f061";
  margin-left: 1em;
}

/* =================================================
    .bl_topAbout
=================================================== */
.bl_topAbout {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1025px) {
  .bl_topAbout_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    max-width: none;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topAbout_cont {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 4%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_topAbout_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  width: 100%;
  height: 250px;
  padding-bottom: 40px;
  margin: 0 auto;
  background: #bfd9f2;
  border-radius: 8px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .bl_topAbout_link {
    max-width: 800px;
    height: 320px;
    padding-bottom: 50px;
  }
}
.bl_topAbout_link::before {
  content: "";
  display: block;
  position: absolute;
  top: -14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 313px;
  height: 161px;
  background: url(../images/top/il_to-madoka_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  .bl_topAbout_link::before {
    width: 616px;
    height: 250px;
    top: -50px;
    z-index: 100;
    background: url(../images/top/il_to-madoka.svg) no-repeat center center/contain;
  }
}
.bl_topAbout_link a {
  display: inline-block;
  width: 88.2352941176%;
  max-width: 300px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 100vh;
  padding: 15px 1em;
  background: #fff;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 1025px) {
  .bl_topAbout_link a:hover {
    opacity: 1;
    background: #71c18e;
    color: #fff;
  }
}
@media screen and (min-width: 1280px) {
  .bl_topAbout_link a {
    width: 80%;
    max-width: 500px;
    padding: 30px 1em;
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.bl_topAbout_link a::after {
  margin-left: 0.5em;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f061";
  color: #d46790;
}
.bl_topAbout_img {
  display: none;
}
@media screen and (min-width: 1025px) {
  .bl_topAbout_img {
    display: block;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    aspect-ratio: 960/450;
  }
  .bl_topAbout_img img {
    border-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 0;
       object-position: 50% 0;
    margin-right: -2%;
  }
}

/* =================================================
    .bl_topSlideImg
=================================================== */
.bl_topSlideImg .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.bl_topSlideImg img {
  border-radius: 0;
}

/* =================================================
    .bl_topCampus
=================================================== */
.bl_topCampus {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fffbee;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus {
    padding-top: 130px;
    padding-bottom: 100px;
    border-bottom: 1px solid #d46790;
  }
}
.bl_topCampus_takarazuka {
  border-bottom: none;
  padding-bottom: 10rem;
}
.bl_topCampus_wrap {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_wrap {
    width: 100%;
    max-width: none;
    padding-left: 4%;
  }
}
.bl_topCampus_ttlWrap {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttlWrap {
    position: absolute;
    top: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 88%;
    max-width: 1180px;
    z-index: 100;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_kobe .bl_topCampus_wrap, .bl_topCampus_yamasaki .bl_topCampus_wrap {
    padding-left: 0;
    padding-right: 4%;
  }
}
@media screen and (min-width: 1280px) {
  .bl_topCampus_kobe .bl_topCampus_topics .el_img, .bl_topCampus_yamasaki .bl_topCampus_topics .el_img {
    margin-right: auto;
    margin-left: -2%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_kobe .bl_topCampus_ttlWrap, .bl_topCampus_yamasaki .bl_topCampus_ttlWrap {
    position: absolute;
    top: -30px;
    right: 4%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 88%;
    max-width: 1180px;
    z-index: 100;
  }
}
.bl_topCampus_ttl a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding-top: 25px;
  padding-bottom: 25px;
  background: #d46790;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttl a {
    -ms-flex-preferred-size: 32.2033898305%;
        flex-basis: 32.2033898305%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.bl_topCampus_ttl h2 {
  margin-bottom: 5px;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(32px, 10.6666666667vw, 40px);
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttl h2 {
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(32px, 2.0833333333vw, 40px);
  }
}
.bl_topCampus_ttl h2 .el_en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 5.3333333333vw, 20px);
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttl h2 .el_en {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
.bl_topCampus_ttl h2 .el_sub {
  margin-right: 0.5em;
  margin-left: 0.3em;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 5.3333333333vw, 20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttl h2 .el_sub {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(16px, 1.0416666667vw, 20px);
  }
}
.bl_topCampus_ttl address {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(11.2px, 3.7333333333vw, 14px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_ttlNav {
    -ms-flex-preferred-size: 67.7966101695%;
        flex-basis: 67.7966101695%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_topics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    min-height: 600px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_topics .el_cont {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 0 3%;
  }
}
.bl_topCampus_topics .el_cont .el_swipeWrap {
  position: relative;
  max-width: 715px;
  margin: 0 auto;
}
.bl_topCampus_topics .el_cont .swiper {
  padding: 0 5px;
}
.bl_topCampus_topics .el_cont .swiper-wrapper {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.bl_topCampus_topics .el_cont .swiper-slide {
  height: auto;
}
.bl_topCampus_topics .el_cont .swiper-button-prev,
.bl_topCampus_topics .el_cont .swiper-button-next {
  display: none;
}
.bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev,
.bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev + .swiper-button-next {
  display: block;
  width: 40px;
  height: 40px;
  top: 36%;
  right: -10px;
  background: url(../images/common/icon_slide_next_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev,
  .bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev + .swiper-button-next {
    right: -30px;
  }
}
.bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev::after,
.bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev + .swiper-button-next::after {
  content: "";
}
.bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev {
  left: -10px;
  right: auto;
  background: url(../images/common/icon_slide_reverse_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_topCampus_topics .el_cont .swiper-initialized + .swiper-button-prev {
    left: -30px;
  }
}
.bl_topCampus_topics .el_cont .el_wrapBtn {
  margin-top: 10px;
  text-align: center;
}
.bl_topCampus_topics .el_cont .el_btn_more {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 2em;
  width: 300px;
  background: #fff;
  border: 1px solid #d46790;
  border-radius: 100vh;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  color: #d46790;
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_topics .el_cont .el_btn_more:hover {
    opacity: 1;
    background: #d46790;
    color: #fff;
  }
}
.bl_topCampus_topics .el_cont .el_btn_more::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f061";
  margin-left: 1em;
}
.bl_topCampus_topics .el_img {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_topCampus_topics .el_img {
    display: block;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-right: -2%;
  }
  .bl_topCampus_topics .el_img img {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 0;
       object-position: 50% 0;
  }
}
.bl_topCampus_topicsSlide {
  margin: 0 auto 30px;
}
.bl_topCampus_topicsSlide .el_slideItem {
  max-width: 338px;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1025px) {
  .bl_topCampus_topicsSlide .el_slideItem a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.bl_topCampus_topicsSlide .el_slideItem_thum {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bl_topCampus_topicsSlide .el_slideItem_thum img {
  border-radius: 8px;
}
.bl_topCampus_topicsSlide .el_slideItem_header {
  display: block;
  margin-bottom: 8px;
}
.bl_topCampus_topicsSlide .el_slideItem_header .el_iconCategory {
  display: inline-block;
  background: #d46790;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.bl_topCampus_topicsSlide .el_slideItem_header time {
  display: inline-block;
}
.bl_topCampus_topicsSlide .el_nopost {
  margin: 100px auto;
  text-align: center;
}
.bl_topCampus_topicsSlide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_topCampus_topicsSlide .slick-slide {
  height: auto !important;
}
.bl_topCampus_topicsSlide .slick-list {
  padding-bottom: 30px;
}
.bl_topCampus_topicsSlide .slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
}
.bl_topCampus_topicsSlide .slick-next {
  right: -5px;
}
.bl_topCampus_topicsSlide .slick-prev {
  left: -5px;
}
.bl_topCampus_topicsSlide .slick-prev:before,
.bl_topCampus_topicsSlide .slick-next:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  left: 20px;
}
.bl_topCampus_topicsSlide .slick-next::before {
  background: url(../images/common/icon_slide_next_pink.svg) no-repeat center center/contain;
}
.bl_topCampus_topicsSlide .slick-prev::before {
  right: 22px;
  background: url(../images/common/icon_slide_reverse_pink.svg) no-repeat center center/contain;
}

/* =================================================
    .bl_topSns
=================================================== */
.bl_topSns {
  padding-top: 20px;
  padding-bottom: 100px;
}
.bl_topSns_wrap {
  max-width: 450px;
  margin: 0 auto 50px;
}
@media screen and (min-width: 768px) {
  .bl_topSns_wrap {
    max-width: 1000px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.bl_topSns_fb {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bl_topSns_fb {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    max-width: 450px;
    margin-bottom: 0;
  }
}
.bl_topSns_fb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bl_topSns_fb .fb-page,
.bl_topSns_fb .fb-page span,
.bl_topSns_fb .facebook_wrap iframe {
  width: 100% !important;
  height: 500px !important;
}
.bl_topSns_youtube img {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media screen and (min-width: 768px) {
  .bl_topSns_youtube {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    max-width: 450px;
  }
}
.bl_topSns_banner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_topSns_banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 730px;
    margin: 0 auto;
  }
  .bl_topSns_banner::after {
    content: "";
    display: block;
    width: 30%;
  }
}
.bl_topSns_banner li {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bl_topSns_banner li {
    width: 30%;
    margin-bottom: 0;
  }
}
.bl_topSns_banner li:last-of-type {
  margin-bottom: 0;
}
.bl_topSns_banner li img {
  border-radius: 0;
}

/* =================================================
    .bl_campus
=================================================== */
@media screen and (min-width: 1680px) {
  .bl_campus {
    position: relative;
  }
  .bl_campus::before, .bl_campus::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 120%;
    z-index: 10000;
  }
  .bl_campus::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 120px;
    background-size: 100%;
  }
  .bl_campus::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}
.bl_campus .bl_fv {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}
.bl_campus .bl_fv h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_campus .bl_fv h1 span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_campus .bl_fv .el_lead {
  margin: 15px auto;
  text-align: center;
}
.bl_campus .bl_fv_ttl {
  position: relative;
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl {
    width: 100%;
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_map {
    width: 42.3177083333%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_map {
    width: 325px;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li {
  position: absolute;
}
.bl_campus .bl_fv_ttl .el_campusList li a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.bl_campus .bl_fv_ttl .el_campusList li a .el_btnMore {
  position: relative;
  width: 150px;
  font-size: 12px;
  font-size: 0.75rem;
  z-index: 10;
}
.bl_campus .bl_fv_ttl .el_campusList li a .el_btnMore::after {
  width: 12px;
  height: 15px;
  background: url(../images/common/icon_arrow-b_pink.svg) no-repeat center center/12px 16px;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li a .el_btnMore {
    width: 200px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li a .el_img {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li a .el_img {
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid #d46790;
    border-radius: 100vh;
    overflow: hidden;
  }
  .bl_campus .bl_fv_ttl .el_campusList li a .el_img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_campusList li a .el_img {
    width: 300px;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li:first-of-type {
  top: 10%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li:first-of-type {
    top: inherit;
    bottom: 10%;
    left: 0;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:first-of-type .el_img {
    top: 10%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_campusList li:first-of-type {
    bottom: 85px;
    left: 164px;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:first-of-type .el_img {
    top: -28px;
    left: -164px;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(2) {
  right: 45%;
  bottom: 26%;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(2) {
    right: 15%;
    bottom: 10%;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(2) .el_img {
    top: 10%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(2) {
    right: 250px;
    bottom: 75px;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(2) .el_img {
    top: -38px;
    left: 120px;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(3) {
  right: 0;
  bottom: 55%;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(3) {
    right: 0;
    bottom: 45%;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(3) .el_img {
    bottom: 40%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(3) {
    right: 140px;
    bottom: 273px;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(3) .el_img {
    bottom: 25px;
    right: -140px;
    left: auto;
  }
}
.bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(4) {
  left: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(4) {
    top: inherit;
    bottom: 45%;
    left: 0;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(4) .el_img {
    bottom: 40%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(4) {
    top: 190px;
    left: 164px;
  }
  .bl_campus .bl_fv_ttl .el_campusList li:nth-of-type(4) .el_img {
    top: -160px;
    left: -164px;
  }
}
.bl_campus .bl_campusIndex {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fffbee;
}
.bl_campus .bl_campusIndex_wrap {
  max-width: 900px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_wrap {
    position: relative;
  }
}
.bl_campus .bl_campusIndex_ttl {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  background: #d46790;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_ttl {
    width: 380px;
    position: absolute;
    top: -20px;
    left: -10%;
    border-radius: 8px;
    padding-top: 18px;
    padding-bottom: 18px;
    z-index: 10;
    -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  }
}
.bl_campus .bl_campusIndex_ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url(../images/common/icon_arrow-r_maru__white.svg) no-repeat center center/contain;
}
.bl_campus .bl_campusIndex_ttl a {
  color: #fff;
}
.bl_campus .bl_campusIndex_ttl h2 {
  margin-bottom: 5px;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(32px, 10.6666666667vw, 40px);
  font-weight: 700;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_ttl h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.bl_campus .bl_campusIndex_ttl h2 .el_en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 5.3333333333vw, 20px);
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_ttl h2 .el_en {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.bl_campus .bl_campusIndex_ttl h2 .el_sub {
  margin-right: 0.5em;
  margin-left: 0.3em;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 5.3333333333vw, 20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_ttl h2 .el_sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.bl_campus .bl_campusIndex_ttl address {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(11.2px, 3.7333333333vw, 14px);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_ttl address {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bl_campus .bl_campusIndex_img {
  position: relative;
}
.bl_campus .bl_campusIndex_img img {
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_img img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.bl_campus .bl_campusIndex_img .el_map {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_campus .bl_campusIndex_img .el_map {
    display: block;
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 203px;
    height: auto;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campus .bl_campusIndex_img .el_map {
    left: -80px;
    bottom: -180px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campus .bl_campusIndex_ttlNav .el_campusNav {
    padding: 30px 80px;
    padding-left: 150px;
  }
}

/* =================================================
    .bl_campusPage
=================================================== */
@media screen and (min-width: 1680px) {
  .bl_campusPage {
    position: relative;
  }
  .bl_campusPage::before, .bl_campusPage::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 100%;
    z-index: 10000;
  }
  .bl_campusPage::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 1200px;
    background-size: 100%;
  }
  .bl_campusPage::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}
.bl_campusPage .bl_fv {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fffbee;
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_fv {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}
.bl_campusPage .bl_fv h1 {
  margin-bottom: 90px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_fv h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_fv h1 {
    margin-bottom: 50px;
  }
}
.bl_campusPage .bl_fv h1 span {
  margin-right: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_fv h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_campusPage .bl_fv h1 span.el_en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_fv h1 span.el_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_campusPage .bl_fv .el_mainImg {
  display: block;
  max-width: 640px;
  margin: 0 auto;
}
.bl_campusPage .bl_fv_maru {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1700px;
  height: 100%;
}
.bl_campusPage .bl_fv_maru_img {
  position: absolute;
  -webkit-animation-name: updown1;
          animation-name: updown1; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.bl_campusPage .bl_fv_maru_img img {
  border-radius: 100vh;
  border: 2px solid #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
.bl_campusPage .bl_fv_maru_img01 {
  width: 29.4117647059%;
  max-width: 220px;
  top: 130px;
  left: 2%;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img01 {
    width: 220px;
    height: 220px;
    top: 0;
    left: 8%;
  }
}
.bl_campusPage .bl_fv_maru_img02 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img02 {
    display: block;
    width: 180px;
    height: 180px;
    top: 210px;
    left: 20%;
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; /* アニメーションの開始時間指定 */
  }
}
.bl_campusPage .bl_fv_maru_img03 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img03 {
    display: block;
    width: 250px;
    height: 250px;
    top: 293px;
    left: 0;
  }
}
.bl_campusPage .bl_fv_maru_img04 {
  width: 23.5294117647%;
  max-width: 270px;
  top: 190px;
  left: 30%;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_fv_maru_img04 {
    top: auto;
    bottom: 5%;
    left: 15%;
    -webkit-animation-duration: 3.5s;
            animation-duration: 3.5s;
  }
}
.bl_campusPage .bl_fv_maru_img05 {
  width: 23.5294117647%;
  max-width: 270px;
  top: 130px;
  right: 25%;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_fv_maru_img05 {
    top: 130px;
    right: 10%;
  }
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img05 {
    width: 270px;
    height: 270px;
    top: 0;
    right: 5%;
  }
}
.bl_campusPage .bl_fv_maru_img06 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img06 {
    display: block;
    width: 180px;
    height: 180px;
    top: 210px;
    right: 20%;
    -webkit-animation-duration: 3.5s;
            animation-duration: 3.5s;
  }
}
.bl_campusPage .bl_fv_maru_img07 {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img07 {
    display: block;
    width: 250px;
    height: 250px;
    top: 293px;
    right: 0;
  }
}
.bl_campusPage .bl_fv_maru_img08 {
  width: 29.4117647059%;
  max-width: 270px;
  top: 200px;
  right: 2%;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_fv_maru_img08 {
    top: auto;
    bottom: 5%;
    right: 5%;
  }
}
@media screen and (min-width: 1280px) {
  .bl_campusPage .bl_fv_maru_img08 {
    display: block;
    width: 270px;
    height: 270px;
    bottom: 5%;
    right: 15%;
  }
}
.bl_campusPage .el_campusNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_campusPage .bl_campusTopics {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fffbee;
}
.bl_campusPage .bl_campusTopics .ly_sec_inner {
  max-width: 1100px;
}
.bl_campusPage .bl_campusTopics h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_campusTopics h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_campusPage .bl_campusTopics .el_swipeWrap {
  position: relative;
}
.bl_campusPage .bl_campusTopics .el_swipeWrap .el_wrapBtn {
  margin-top: 30px;
  text-align: center;
}
.bl_campusPage .bl_campusTopics .el_swipeWrap .el_nopost {
  margin: 100px auto;
  text-align: center;
}
.bl_campusPage .bl_campusTopics .swiper {
  padding: 6px;
}
.bl_campusPage .bl_campusTopics .swiper-wrapper {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.bl_campusPage .bl_campusTopics .swiper-slide {
  height: auto;
}
.bl_campusPage .bl_campusTopics .swiper-button-prev,
.bl_campusPage .bl_campusTopics .swiper-button-next {
  display: none;
}
.bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev,
.bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev + .swiper-button-next {
  display: block;
  width: 40px;
  height: 40px;
  top: 36%;
  right: -10px;
  background: url(../images/common/icon_slide_next_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev,
  .bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev + .swiper-button-next {
    right: -30px;
  }
}
.bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev::after,
.bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev + .swiper-button-next::after {
  content: "";
}
.bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev {
  left: -10px;
  right: auto;
  background: url(../images/common/icon_slide_reverse_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_campusTopics .swiper-initialized + .swiper-button-prev {
    left: -30px;
  }
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem {
  max-width: 352px;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_campusTopics_slide .el_slideItem a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem_thum {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem_thum img {
  border-radius: 8px;
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem_header {
  display: block;
  margin-bottom: 8px;
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem_header .el_iconCategory {
  display: inline-block;
  background: #d46790;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.bl_campusPage .bl_campusTopics_slide .el_slideItem_header time {
  display: inline-block;
}
.bl_campusPage .bl_managementpolicy,
.bl_campusPage .bl_feature {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_campusPage .bl_managementpolicy .ly_sec_inner,
.bl_campusPage .bl_feature .ly_sec_inner {
  padding: 70px 18px;
  border: 1px solid #d46790;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_managementpolicy .ly_sec_inner,
  .bl_campusPage .bl_feature .ly_sec_inner {
    padding: 70px 5.2083333333%;
  }
}
.bl_campusPage .bl_managementpolicy h2,
.bl_campusPage .bl_feature h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_managementpolicy h2,
  .bl_campusPage .bl_feature h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_campusPage .bl_managementpolicy h3,
.bl_campusPage .bl_feature h3 {
  margin-bottom: 0.5em;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_managementpolicy h3,
  .bl_campusPage .bl_feature h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.bl_campusPage .bl_managementpolicy p,
.bl_campusPage .bl_feature p {
  margin-bottom: 2em;
}
.bl_campusPage .bl_managementpolicy p:last-of-type,
.bl_campusPage .bl_feature p:last-of-type {
  margin-bottom: 0;
}
.bl_campusPage .bl_managementpolicy ul li,
.bl_campusPage .bl_feature ul li {
  padding-left: 30px;
  text-indent: -34px;
  margin-bottom: 50px;
  line-height: 2;
}
.bl_campusPage .bl_managementpolicy ul li:last-of-type,
.bl_campusPage .bl_feature ul li:last-of-type {
  margin-bottom: 0;
}
.bl_campusPage .bl_managementpolicy ul li::before,
.bl_campusPage .bl_feature ul li::before {
  content: "一、";
  margin-right: 10px;
}
.bl_campusPage .bl_imgSlide {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_main {
    -ms-flex-preferred-size: 66%;
        flex-basis: 66%;
    width: 66%;
  }
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_thum {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    width: 32%;
  }
}
.bl_campusPage .bl_imgSlide_thum .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_campusPage .bl_imgSlide_thum .swiper-wrapper::after {
  content: "";
  display: block;
  width: 22%;
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_thum .swiper-wrapper::after {
    width: 48%;
  }
}
.bl_campusPage .bl_imgSlide_thum .swiper-wrapper::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  display: block;
  width: 22%;
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_thum .swiper-wrapper::before {
    width: 48%;
  }
}
.bl_campusPage .bl_imgSlide_thum .el_slideItem {
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
  margin-top: 10px;
  background: #000000;
  border-radius: 8px;
}
@media screen and (min-width: 960px) {
  .bl_campusPage .bl_imgSlide_thum .el_slideItem {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .bl_campusPage .bl_imgSlide_thum .el_slideItem:last-of-type, .bl_campusPage .bl_imgSlide_thum .el_slideItem:nth-last-of-type(2) {
    margin-bottom: 0;
  }
  .bl_campusPage .bl_imgSlide_thum .el_slideItem:hover img {
    opacity: 0.6;
  }
}
.bl_campusPage .bl_imgSlide_thum .swiper-slide-thumb-active img {
  opacity: 0.6;
  display: block;
}
.bl_campusPage .bl_businessInfo {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #fdf7f9;
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo .ly_sec_inner {
    max-width: 1100px;
  }
}
.bl_campusPage .bl_businessInfo h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_businessInfo h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_campusPage .bl_businessInfo_slideWrap {
  position: relative;
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper {
  padding: 50px 5px 5px;
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper-wrapper {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper-slide {
  height: auto;
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev,
.bl_campusPage .bl_businessInfo_slideWrap .swiper-button-next {
  width: 40px;
  height: 40px;
  top: 50%;
  right: -10px;
  background: url(../images/common/icon_slide_next_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev,
  .bl_campusPage .bl_businessInfo_slideWrap .swiper-button-next {
    right: -30px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev,
  .bl_campusPage .bl_businessInfo_slideWrap .swiper-button-next {
    display: none;
  }
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev::after,
.bl_campusPage .bl_businessInfo_slideWrap .swiper-button-next::after {
  content: "";
}
.bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev {
  left: -10px;
  right: auto;
  background: url(../images/common/icon_slide_reverse_pink.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_businessInfo_slideWrap .swiper-button-prev {
    left: -30px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo_slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
/*    gap: 0 2.5vw; */
    gap: 0 2vw;
  }
}
.bl_campusPage .bl_businessInfo_slideItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  padding: 110px 30px 30px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo_slideItem {
    width: 30.9090909091%;
    margin-bottom: 60px;
  }
}
.bl_campusPage .bl_businessInfo_slideItem::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100px;
  height: 100px;
  border-radius: 100vh;
  border: 2px solid #d46790;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_businessInfo_slideItem::before {
    width: 140px;
    height: 140px;
    top: -40px;
  }
}
.bl_campusPage .bl_businessInfo_slideItem__home::before {
  background-image: url(../images/common/icon_02.svg);
  background-size: 72px 72px;
}
.bl_campusPage .bl_businessInfo_slideItem__careSupport::before {
  background-image: url(../images/common/icon_03.svg);
  background-size: 86px 72px;
}
.bl_campusPage .bl_businessInfo_slideItem__shortStay::before {
  background-image: url(../images/common/icon_06.svg);
  background-size: 54px 72px;
}
.bl_campusPage .bl_businessInfo_slideItem__grouphome::before {
  background-image: url(../images/common/icon_05.svg);
  background-size: 80px 72px;
}
.bl_campusPage .bl_businessInfo_slideItem__careCenter::before {
  background-image: url(../images/common/icon_07.svg);
  background-size: 72px 72px;
}
.bl_campusPage .bl_businessInfo_slideItem__helperStation::before {
  background-image: url(../images/common/icon_08.svg);
  background-size: 68px 68px;
}
.bl_campusPage .bl_businessInfo_slideItem h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #d46790;
  text-align: center;
}
.bl_campusPage .bl_businessInfo_slideItem p {
  margin-bottom: 30px;
}
.bl_campusPage .bl_businessInfo_slideItem .el_btnWrap {
  margin-top: auto;
  text-align: center;
}
.bl_campusPage .bl_businessInfo_slideItem .el_btnWrap .el_btnMore {
  width: 200px;
  padding: 10px;
}
.bl_campusPage .bl_floorMap {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_campusPage .bl_floorMap h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_floorMap h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_campusPage .bl_floorMap img {
  border-radius: 0;
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
/*
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 10px;
  gap: 0 10px;
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabGroup::after {
  content: "";
  display: block;
  width: 48%;
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_floorMap .bl_floorMap_tabGroup::after {
    width: 24%;
  }
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_floorMap .bl_floorMap_tabGroup {
    border-bottom: 4px solid #d46790;
  }
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .el_tab {
  width: 48%;
  height: 52px;
  margin-bottom: 10px;
  border-top-right-radius: 8px;
  padding-top: 2px;
  padding-right: 2px;
  border-top: 1px solid #d46790;
  border-right: 1px solid #d46790;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .el_tab {
    width: 48%;
    border-top: 2px solid #d46790;
    border-right: 2px solid #d46790;
  }
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .el_tab {
    width: 24%;
  }
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .el_tab span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-top-right-radius: 6px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(12.8px, 4.2666666667vw, 16px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .el_tab span:hover {
    background: rgba(212, 103, 144, 0.2);
  }
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabGroup .js_tab.is-active span {
  background: rgba(212, 103, 144, 0.2);
}
.bl_campusPage .bl_floorMap .bl_floorMap_tabContent {
  border: 1px solid #f0b9cf;
}
.bl_campusPage .bl_access {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 800px;
  margin: 0 auto;
}
.bl_campusPage .bl_access h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_access h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_campusPage .bl_access_map {
  margin-bottom: 10px;
}
.bl_campusPage .bl_access_map img {
  border-radius: 0;
}
.bl_campusPage .bl_access_gmap {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_access_gmap {
    margin-bottom: 100px;
  }
}
.bl_campusPage .bl_access_gmap iframe {
  width: 100%;
  aspect-ratio: 375/234;
}
.bl_campusPage .bl_access_table {
  width: 100%;
  text-align: left;
  border-top: 1px dotted #707070;
}
.bl_campusPage .bl_access_table th,
.bl_campusPage .bl_access_table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_access_table th,
  .bl_campusPage .bl_access_table td {
    display: table-cell;
  }
}
.bl_campusPage .bl_access_table tr {
  border-bottom: 1px dotted #707070;
}
.bl_campusPage .bl_access_table th {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_access_table th {
    padding-left: 50px;
  }
}
.bl_campusPage .bl_access_table td {
  padding-bottom: 18px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .bl_campusPage .bl_access_table td {
    border-bottom: none;
  }
  .bl_campusPage .bl_access_table td br {
    display: none;
  }
}

/* =================================================
    .bl_recruitment
=================================================== */
.bl_recruitment .bl_fv {
  position: relative;
  aspect-ratio: 375/480;
  background: url(../images/recruitment/header_sp.jpg) no-repeat center top;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv {
    background: url(../images/recruitment/header_pc.jpg) no-repeat center top/cover;
    aspect-ratio: auto;
    height: 810px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitment .bl_fv {
    background-size: 1680px 810px;
  }
}
.bl_recruitment .bl_fv_ttl {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38.2352941176%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_ttl {
    width: 400px;
    height: 150px;
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_ttl {
    top: 30%;
  }
}
.bl_recruitment .bl_fv_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_recruitment .bl_fv_ttl h1 span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_recruitment .bl_fv_nav {
  position: absolute;
  bottom: 1%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90.6666666667%;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav {
    position: relative;
    top: 0;
    bottom: auto;
    display: block;
    width: 95%;
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruitment .bl_fv_nav {
    max-width: 1020px;
  }
}
@media screen and (min-width: 1680px) {
  .bl_recruitment .bl_fv_nav {
    max-width: 1380px;
  }
}
.bl_recruitment .bl_fv_nav li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23.8095238095%;
  max-width: 180px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_nav li {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav li {
    position: absolute;
    width: 180px;
    height: 180px;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav li:first-of-type {
    left: 5%;
  }
}
@media screen and (min-width: 1680px) {
  .bl_recruitment .bl_fv_nav li:first-of-type {
    top: 2%;
    left: 16%;
  }
}
.bl_recruitment .bl_fv_nav li:first-of-type a {
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(2) {
    top: 15%;
    right: 0;
  }
}
@media screen and (min-width: 1680px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(2) {
    right: 0;
  }
}
.bl_recruitment .bl_fv_nav li:nth-of-type(2) a {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(3) {
    bottom: 0;
    right: 14%;
  }
}
@media screen and (min-width: 1680px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(3) {
    bottom: 2%;
    right: 14%;
  }
}
.bl_recruitment .bl_fv_nav li:nth-of-type(3) a {
  -webkit-animation-delay: 1s;
          animation-delay: 1s; /* アニメーションの開始時間指定 */
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(4) {
    bottom: 20%;
    left: 10%;
  }
}
@media screen and (min-width: 1680px) {
  .bl_recruitment .bl_fv_nav li:nth-of-type(4) {
    bottom: 33%;
    left: 10%;
  }
}
.bl_recruitment .bl_fv_nav li:nth-of-type(4) a {
  -webkit-animation-delay: 1s;
          animation-delay: 1s; /* アニメーションの開始時間指定 */
}
.bl_recruitment .bl_fv_nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: #d46790;
  border-radius: 100vh;
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki; /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s; /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s; /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き（徐々に早く徐々に遅く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite; /* アニメーションをループさせる */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_nav li a {
    border: 10px solid #fff;
    position: relative;
    font-size: 38px;
    font-size: 2.375rem;
  }
}
.bl_recruitment .bl_fv_nav li a .el_sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_nav li a .el_sub {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}
.bl_recruitment .bl_fv_nav li a .el_en {
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_fv_nav li a .el_en {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
  }
}
.bl_recruitment .bl_message {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fffbee;
}
.bl_recruitment .bl_message strong {
  font-weight: inherit;
}
.bl_recruitment .bl_message p {
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_message p br {
    display: none;
  }
}
.bl_recruitment .bl_message_lead {
  margin-bottom: 28px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_message_lead {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_message_lead2 {
  margin-bottom: 28px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_message_lead2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.bl_recruitment .bl_voice {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitment .bl_voice h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_voice h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_voice_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
}
.bl_recruitment .bl_voice_list li {
  margin-bottom: 50px;
  text-align: center;
}
.bl_recruitment .bl_voice_list li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .bl_recruitment .bl_voice_list li {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_voice_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}
.bl_recruitment .bl_voice_list li a img {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_voice_list li a img {
    width: 300px;
  }
}
.bl_recruitment .bl_voice_list li a h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_voice_list li a h3 {
    margin-bottom: 35px;
  }
}
.bl_recruitment .bl_voice_list li a .el_caption {
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
}
.bl_recruitment .bl_voice_list li a .el_btnMore {
  margin-top: auto;
}
.bl_recruitment .bl_modalPerson_thum {
  position: relative;
  margin-bottom: 30px;
}
.bl_recruitment .bl_modalPerson_thum .el_ttl {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_thum .el_ttl {
    position: absolute;
    bottom: 10%;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 1em;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruitment .bl_modalPerson_thum .el_ttl {
    bottom: 115px;
    padding: 20px;
  }
}
.bl_recruitment .bl_modalPerson_thum .el_ttl h3 {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d46790;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3076923077;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_thum .el_ttl h3 {
    padding: 0;
    font-size: 26px;
    font-size: 1.625rem;
    font-size: clamp(20.8px, 2.6vw, 26px);
  }
}
.bl_recruitment .bl_modalPerson_thum .el_ttl h4 {
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(11.2px, 3.7333333333vw, 14px);
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_thum .el_ttl h4 {
    padding: 0;
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(16px, 2vw, 20px);
  }
}
.bl_recruitment .bl_modalPerson_about dt, .bl_recruitment .bl_modalPerson_qa dt {
  padding: 5px 14px 6px;
  margin-bottom: 20px;
  background: #d46790;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_about dt, .bl_recruitment .bl_modalPerson_qa dt {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 30px;
  }
}
.bl_recruitment .bl_modalPerson_about dd, .bl_recruitment .bl_modalPerson_qa dd {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_about dd, .bl_recruitment .bl_modalPerson_qa dd {
    margin-bottom: 50px;
  }
}
.bl_recruitment .bl_modalPerson_qa dt {
  background: #71c18e;
}
.bl_recruitment .bl_modalPerson_message {
  padding: 20px;
  border-radius: 8px;
  background: #fffbee;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_message {
    padding: 5%;
  }
}
.bl_recruitment .bl_modalPerson_message h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_modalPerson_message h4 {
    margin-bottom: 30px;
    padding: 20px 50px;
  }
}
.bl_recruitment .bl_modalPerson p.fila_atn {
  text-align: right;
  font-size: 0.85rem;
  color: #999;
  margin-top: -20px;
}
.bl_recruitment .bl_modalPerson p.fila_main {
  font-size: 0.9rem;
  margin: 0 0 20px;
  color: #777;
}
.bl_recruitment .bl_modalPerson p.fila_ttl {
  font-size: 1rem;
  margin: 20px 0 10px;
  color: #777;
}
.bl_recruitment .bl_modalPerson span.fila_txt {
  display: block;
  font-size: 0.9rem;
  margin: 10px 0 20px;
  color: #777;
}
.bl_recruitment .bl_growth {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitment .bl_growth h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_growth h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_growth .bl_flex {
  padding-bottom: 100px;
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_growth .bl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_growth .bl_flex.hp_row-reverse .el_img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
.bl_recruitment .bl_growth .el_img {
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_growth .el_img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
  }
}
.bl_recruitment .bl_growth .el_img img {
  border-radius: 0;
}
@media screen and (min-width: 960px) {
  .bl_recruitment .bl_growth .el_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bl_recruitment .bl_growth .el_cont {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_growth .el_cont {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 0 4%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruitment .bl_growth .el_cont {
    padding: 0 100px;
  }
}
.bl_recruitment .bl_growth .el_cont h3 {
  margin-bottom: 30px;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_growth .el_cont h3 {
    margin-bottom: 50px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_growth .el_cont .bl_flexImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_growth .el_cont .bl_flexImg {
    margin-top: 50px;
  }
}
.bl_recruitment .bl_growth .el_cont .bl_flexImg div {
  width: 48.8235294118%;
}
.bl_recruitment .bl_growth .el_cont .bl_flexImg div img {
  width: 100%;
}
.bl_recruitment .bl_training {
  position: relative;
  padding-top: 114px;
  padding-bottom: 100px;
  background: #fffbee;
}
@media screen and (min-width: 1280px) {
  .bl_recruitment .bl_training {
    background: #fffbee url(../images/recruitment/bak_img_pc.png) no-repeat center center;
    background-size: 1780px;
  }
}
.bl_recruitment .bl_training::before {
  content: "";
  display: block;
  position: absolute;
  top: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 130px;
  background: url(../images/recruitment/training_header-img_sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  .bl_recruitment .bl_training::before {
    display: none;
  }
}
.bl_recruitment .bl_training::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 130px;
  background: url(../images/recruitment/training_bottom-img_sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 1280px) {
  .bl_recruitment .bl_training::after {
    display: none;
  }
}
.bl_recruitment .bl_training .ly_sec_inner {
  max-width: 1060;
}
.bl_recruitment .bl_training h2 {
  margin-bottom: 48px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4615384615;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_training h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .bl_recruitment .bl_training h2 br {
    display: none;
  }
}
.bl_recruitment .bl_training_list {
  position: relative;
}
.bl_recruitment .bl_training_list .swiper-wrapper {
  width: 90.6666666667%;
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
  padding-top: 40px;
  padding-bottom: 50px;
}
.bl_recruitment .bl_training_list .swiper-slide {
  height: auto;
}
.bl_recruitment .bl_training_list .swiper-button-prev,
.bl_recruitment .bl_training_list .swiper-button-next {
  width: 40px;
  height: 40px;
  right: -10px;
  background: url(../images/common/icon_slide_next_green.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_training_list .swiper-button-prev,
  .bl_recruitment .bl_training_list .swiper-button-next {
    right: -30px;
  }
}
.bl_recruitment .bl_training_list .swiper-button-prev::after,
.bl_recruitment .bl_training_list .swiper-button-next::after {
  content: "";
}
.bl_recruitment .bl_training_list .swiper-button-prev {
  left: -10px;
  right: auto;
  background: url(../images/common/icon_slide_reverse_green.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_training_list .swiper-button-prev {
    left: -30px;
  }
}
.bl_recruitment .bl_training_listItem {
  position: relative;
  background: #fff;
  padding: 70px 30px 30px;
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
.bl_recruitment .bl_training_listItem h3 {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 140px;
  height: 80px;
  background: #71c18e;
  border-radius: 8px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.bl_recruitment .bl_training_listItem h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #159944;
  text-align: center;
}
.bl_recruitment .bl_training h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
.bl_recruitment .bl_welfare {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bl_recruitment .bl_welfare h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_welfare h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_welfare dl dt {
  padding: 1em;
  border-top: 1px dotted #707070;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.bl_recruitment .bl_welfare dl dd {
  padding: 1em;
  padding-top: 0;
  border-bottom: 1px dotted #707070;
  line-height: 2;
}
.bl_recruitment .bl_welfare dl dd ul.el_liststyle li {
  padding-left: 1em;
  text-indent: -0.5em;
}
.bl_recruitment .bl_welfare dl dd ul.el_liststyle li::before {
  content: "・";
}
.bl_recruitment .bl_welfare dl dd ul li h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.bl_recruitment .bl_welfare dl dd ul li p {
  margin-bottom: 1em;
}
.bl_recruitment .bl_salary {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fffbee;
}
.bl_recruitment .bl_salary h2 {
  margin-bottom: 130px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 49px;
  }
}
.bl_recruitment .bl_salary_wrap {
  position: relative;
  border: 2px solid #9d9ddb;
  border-radius: 8px;
  padding: 68px 5px 20px;
  background: #fff;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary_wrap {
    width: 84%;
    max-width: 840px;
    padding: 20px;
    padding-left: 80px;
    margin: 0 auto 70px;
    margin-left: 11%;
  }
}
.bl_recruitment .bl_salary_wrap h3 {
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
  height: 120px;
  border-radius: 100vh;
  background: #9d9ddb;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary_wrap h3 {
    top: 50%;
    left: -60px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.bl_recruitment .bl_salary_wrap ul {
  padding-left: 26.4705882353%;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary_wrap ul {
    padding: 20px;
    padding-left: 80px;
  }
}
.bl_recruitment .bl_salary_wrap ul li {
  position: relative;
  border-radius: 8px;
  width: 70.5882352941%;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 18px;
  padding: 20px;
  padding-left: 40px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary_wrap ul li {
    margin-bottom: 46px;
  }
}
.bl_recruitment .bl_salary_wrap ul li:last-of-type {
  margin-bottom: 0;
}
.bl_recruitment .bl_salary_wrap ul li h4 {
  position: absolute;
  top: -18px;
  left: -80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 100vh;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_salary_wrap ul li h4 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.bl_recruitment .bl_salary_wrap ul li:first-of-type {
  border: 2px solid #ebac8a;
}
.bl_recruitment .bl_salary_wrap ul li:first-of-type h4 {
  background: #ebac8a;
}
.bl_recruitment .bl_salary_wrap ul li:nth-of-type(2) {
  border: 2px solid #94ceba;
}
.bl_recruitment .bl_salary_wrap ul li:nth-of-type(2) h4 {
  background: #94ceba;
}
.bl_recruitment .bl_salary_wrap ul li:nth-of-type(3) {
  border: 2px solid #f0b9cf;
}
.bl_recruitment .bl_salary_wrap ul li:nth-of-type(3) h4 {
  background: #f0b9cf;
}
.bl_recruitment .bl_salary ol {
  list-style: none;
}
.bl_recruitment .bl_salary ol > li {
  padding: 15px 20px 20px;
  border-bottom: 1px dotted #707070;
}
.bl_recruitment .bl_salary ol > li:first-of-type {
  border-top: 1px dotted #707070;
}
.bl_recruitment .bl_salary ol > li h5 {
  margin-bottom: 1em;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.bl_recruitment .bl_salary ol > li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}
.bl_recruitment .bl_salary ol > li ul::after {
  content: "";
  display: block;
  width: 24%;
}
.bl_recruitment .bl_salary ol > li ul::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  display: block;
  width: 24%;
}
.bl_recruitment .bl_salary ol > li ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48.5%;
  padding: 20px 10px;
  margin-bottom: 10px;
  background: #fff;
  border: 2px solid #f0b9cf;
  border-radius: 8px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .bl_recruitment .bl_salary ol > li ul li {
    width: 24%;
  }
}
.bl_recruitment .bl_salary .el_annotation {
  padding-left: 20px;
}
.bl_recruitment .bl_dataillust {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitment .bl_dataillust h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_dataillust h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_dataillust p {
  margin: 0 0 20px;
  text-align: center;
}
.bl_recruitment .bl_dataillust .zukai {
  background-color: #D2285B;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_dataillust .zukai {
    padding: 40px;
  }
}
.bl_recruitment .bl_dataillust .zukai ul {
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-template-columns: repeat(2, auto);
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_dataillust .zukai ul {
    grid-template-columns: repeat(3, auto);
  }
}
.bl_recruitment .bl_dataillust .zukai ul li {
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_dataillust .zukai ul li {
    padding: 20px;
  }
}
.bl_recruitment .bl_careerstep {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitment .bl_careerstep h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_careerstep h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_careerstep p {
  margin: 0 0 20px;
  text-align: center;
}
.bl_recruitment .bl_careerstep .careerstep ul {
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-template-columns: repeat(2, auto);
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_careerstep .careerstep ul {
    grid-template-columns: repeat(4, auto);
  }
}
.bl_recruitment .bl_careerstep .careerstep ul li {
  padding: 20px 20px 0;
}
.bl_recruitment .bl_careerstep .careerstep ul li p {
  line-height: 1.8;
}
.bl_recruitment .bl_careerstep .careerstep .cs_cycle {
  margin: 0 auto;
  width: 80%;
  border: 2px solid #E5005A;
  border-top: none;
  position: relative;
}
.bl_recruitment .bl_careerstep .careerstep .cs_cycle::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -7px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  border: 5px solid transparent;
  border-left: 8px solid #E5005A;
}
.bl_recruitment .bl_careerstep .careerstep .cs_cycle p {
  color: #E5005A;
}
.bl_recruitment .bl_safeenvironment {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitment .bl_safeenvironment h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitment .bl_safeenvironment h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitment .bl_safeenvironment p {
  margin: 0 0 20px;
  text-align: center;
}

/* =================================================
    .bl_recruitmentCampus
=================================================== */
.bl_recruitmentCampus-ichinomiya .bl_fv {
  background: url(../images/recruitment/ichinomiya/header_sp.jpg) no-repeat center center;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus-ichinomiya .bl_fv {
    background: url(../images/recruitment/ichinomiya/header_pc.jpg) no-repeat center top/cover;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitmentCampus-ichinomiya .bl_fv {
    background-size: 1380px 810px;
  }
}
.bl_recruitmentCampus-kobe .bl_fv {
  background: url(../images/recruitment/kobe/header_sp.jpg) no-repeat center center;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus-kobe .bl_fv {
    background: url(../images/recruitment/kobe/header_pc.jpg) no-repeat center top/cover;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitmentCampus-kobe .bl_fv {
    background-size: 1380px 810px;
  }
}
.bl_recruitmentCampus-takarazuka .bl_fv {
  background: url(../images/recruitment/takarazuka/header_sp.jpg) no-repeat center center;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus-takarazuka .bl_fv {
    background: url(../images/recruitment/takarazuka/header_pc.jpg) no-repeat center top/cover;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitmentCampus-takarazuka .bl_fv {
    background-size: 1380px 810px;
  }
}
.bl_recruitmentCampus-yamasaki .bl_fv {
  background: url(../images/recruitment/yamasaki/header_sp.jpg) no-repeat center center;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus-yamasaki .bl_fv {
    background: url(../images/recruitment/yamasaki/header_pc.jpg) no-repeat center top/cover;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitmentCampus-yamasaki .bl_fv {
    background-size: 1380px 810px;
  }
}
.bl_recruitmentCampus .bl_fv {
  position: relative;
  aspect-ratio: 375/480;
  background-size: 90.6666666667%;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_fv {
    aspect-ratio: auto;
    height: 810px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_recruitmentCampus .bl_fv {
    background-size: 1380px 810px;
    margin-bottom: 66px;
  }
}
.bl_recruitmentCampus .bl_fv_ttl {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 38.2352941176%;
  min-width: 170px;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_fv_ttl {
    width: 400px;
    height: 150px;
    aspect-ratio: auto;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_fv_ttl {
    top: 41%;
  }
}
.bl_recruitmentCampus .bl_fv_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_fv_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.5;
  }
}
.bl_recruitmentCampus .bl_fv_ttl h1 .el_place {
  font-weight: 500;
}
.bl_recruitmentCampus .bl_fv_ttl h1 span:not(.el_place) {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_fv_ttl h1 span:not(.el_place) {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_recruitmentCampus .bl_message {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fffbee;
}
.bl_recruitmentCampus .bl_message strong {
  font-weight: inherit;
}
.bl_recruitmentCampus .bl_message p {
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_message p br {
    display: none;
  }
}
.bl_recruitmentCampus .bl_message_lead {
  margin-bottom: 28px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_message_lead {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitmentCampus .bl_message_lead2 {
  margin-bottom: 28px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_message_lead2 {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.bl_recruitmentCampus .bl_introduction {
  padding-top: 100px;
  padding-bottom: 0px;
}
.bl_recruitmentCampus .bl_introduction h2 {
  padding-bottom: 8px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d46790;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_introduction h2 {
    margin-bottom: 50px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitmentCampus .bl_introduction .bl_flex {
  padding-bottom: 100px;
}
.bl_recruitmentCampus .bl_introduction .bl_flex:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_introduction .bl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_introduction .bl_flex.hp_row-reverse .el_img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
}
.bl_recruitmentCampus .bl_introduction .el_img {
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_introduction .el_img {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
  }
}
.bl_recruitmentCampus .bl_introduction .el_img img {
  border-radius: 0;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentCampus .bl_introduction .el_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bl_recruitmentCampus .bl_introduction .el_cont {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_introduction .el_cont {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 0 4%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruitmentCampus .bl_introduction .el_cont {
    padding: 0 100px;
  }
}
.bl_recruitmentCampus .bl_introduction .el_cont h3 {
  margin-bottom: 30px;
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_introduction .el_cont h3 {
    margin-bottom: 50px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitmentCampus .bl_introduction .el_cont .bl_flexImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentCampus .bl_introduction .el_cont .bl_flexImg {
    margin-top: 30px;
  }
}
.bl_recruitmentCampus .bl_introduction .el_cont .bl_flexImg div {
  width: 48.8235294118%;
}
.bl_recruitmentCampus .bl_introduction .el_cont .bl_flexImg div img {
  width: 100%;
}

/* =================================================
    お問い合わせ
=================================================== */
.bl_inquiry .bl_header {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: url(../images/page/header_inquiry_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_header {
    aspect-ratio: auto;
    height: 427px;
    background: url(../images/page/header_inquiry_pc.jpg) no-repeat top center/cover;
  }
}
.bl_inquiry .bl_header::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_header::after {
    aspect-ratio: auto;
    height: 427px;
  }
}
.bl_inquiry .bl_header_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 35px;
}
.bl_inquiry .bl_header_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_header_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_inquiry .bl_header_ttl h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_header_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_inquiry .bl_nav_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_inquiry .bl_nav_list li {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_nav_list li {
    width: auto;
  }
}
.bl_inquiry .bl_contactForm {
  padding-top: 0px;
  padding-bottom: 100px;
  text-align: center;
}
.bl_inquiry .bl_contactForm h2:not(.el_formttl) {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_inquiry .bl_contactForm h2:not(.el_formttl) {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

/* =================================================
    お問い合わせ
=================================================== */
.bl_application .bl_header {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: url(../images/page/header_recruitment-application_pc.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .bl_application .bl_header {
    aspect-ratio: auto;
    height: 427px;
    background: url(../images/page/header_recruitment-application_pc.jpg) no-repeat top center/cover;
  }
}
.bl_application .bl_header::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_application .bl_header::after {
    aspect-ratio: auto;
    height: 427px;
  }
}
.bl_application .bl_header_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 35px;
}
.bl_application .bl_header_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_application .bl_header_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_application .bl_header_ttl h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_application .bl_header_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_application .bl_nav_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_application .bl_nav_list li {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .bl_application .bl_nav_list li {
    width: auto;
  }
}
.bl_application .bl_contactForm {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.bl_application .bl_contactForm h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_application .bl_contactForm h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_application .bl_contactForm .el_lead {
  text-align: center;
}

/* =================================================
    料金表・資料請求
=================================================== */
.bl_offer .bl_header {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: url(../images/page/header_offer_pc_sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header {
    aspect-ratio: auto;
    height: 427px;
    background: url(../images/page/header_offer_pc.jpg) no-repeat top center/cover;
  }
}
.bl_offer .bl_header::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header::after {
    aspect-ratio: auto;
    height: 427px;
  }
}
.bl_offer .bl_header_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 35px;
}
.bl_offer .bl_header_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_offer .bl_header_ttl h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_offer .bl_nav_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_offer .bl_nav_list li {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_nav_list li {
    width: auto;
  }
}
.bl_offer .bl_document {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.bl_offer .bl_document h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_offer .bl_document h3 {
  margin-bottom: 20px;
  text-align: left;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
.bl_offer .bl_document_list {
  margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .bl_offer .bl_document_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .bl_offer .bl_document_list::after {
    content: "";
    display: block;
    width: 49%;
  }
}
@media screen and (min-width: 960px) and (min-width: 1280px) {
  .bl_offer .bl_document_list::after {
    width: 32%;
  }
}
.bl_offer .bl_document_list li:not(.has_2item) {
  position: relative;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
  .bl_offer .bl_document_list li:not(.has_2item) {
    width: 49%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_offer .bl_document_list li:not(.has_2item):hover {
    opacity: 1;
  }
  .bl_offer .bl_document_list li:not(.has_2item):hover::after {
    opacity: 1;
    background: #fff;
    color: #d46790;
  }
}
@media screen and (min-width: 1280px) {
  .bl_offer .bl_document_list li:not(.has_2item) {
    width: 32%;
  }
}
.bl_offer .bl_document_list li:not(.has_2item)::after {
  content: "料金表";
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100px;
  padding: 3px 1em;
  background: #d46790;
  border: 1px solid #d46790;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bl_offer .bl_document_list li:not(.has_2item) a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 26px 20px;
  border-radius: 8px;
  border: 1px dotted #707070;
  font-size: 16px;
}
@media screen and (min-width: 1025px) {
  .bl_offer .bl_document_list li:not(.has_2item) a:hover {
    opacity: 1;
  }
}
.bl_offer .bl_document_list .has_2item {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 50% 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px dotted #707070;
  margin-bottom: 20px;
  text-align: left;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document_list .has_2item {
    grid-template-columns: 1fr 100px;
  }
}
@media screen and (min-width: 960px) {
  .bl_offer .bl_document_list .has_2item {
    width: 49%;
    padding: 6px 20px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_offer .bl_document_list .has_2item {
    width: 32%;
  }
}
.bl_offer .bl_document_list .has_2item a {
  display: block;
  padding: 16px 3px;
  margin-top: 10px;
  background: #d46790;
  border: 1px solid #d46790;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document_list .has_2item a {
    width: 100px;
    padding: 3px;
    margin: 3px 0;
  }
}
@media screen and (min-width: 1025px) {
  .bl_offer .bl_document_list .has_2item a:hover {
    opacity: 1;
    background: #fff;
    color: #d46790;
  }
}
.bl_offer .bl_document_list .has_2item span {
  display: block;
  grid-row: 1/2;
  grid-column: 1/3;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document_list .has_2item span {
    grid-row: 1/3;
    grid-column: 1/2;
  }
}
.bl_offer .bl_document_list .has_2item .el_price {
  grid-row: 2/3;
  grid-column: 1/2;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document_list .has_2item .el_price {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
.bl_offer .bl_document_list .has_2item .el_application {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_document_list .has_2item .el_application {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.bl_offer .bl_contactForm {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.bl_offer .bl_contactForm h2 {
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_contactForm h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_offer .bl_contactForm .el_lead {
  text-align: center;
}

/* =================================================
    料金表・資料請求
=================================================== */
.bl_offer .bl_header {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  background: url(../images/page/header_offer_pc.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header {
    aspect-ratio: auto;
    height: 427px;
    background: url(../images/page/header_offer_pc.jpg) no-repeat top center/cover;
  }
}
.bl_offer .bl_header::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header::after {
    aspect-ratio: auto;
    height: 427px;
  }
}
.bl_offer .bl_header_ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 35px;
}
.bl_offer .bl_header_ttl h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_offer .bl_header_ttl h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_header_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_offer .bl_financial,
.bl_offer .bl_corporateInfo,
.bl_offer .bl_financialYear,
.bl_offer .bl_actionPlan {
  padding-top: 0px;
  padding-bottom: 100px;
  text-align: center;
}
.bl_offer .bl_financial h2,
.bl_offer .bl_corporateInfo h2,
.bl_offer .bl_financialYear h2,
.bl_offer .bl_actionPlan h2 {
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 4px solid #d46790;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_financial h2,
  .bl_offer .bl_corporateInfo h2,
  .bl_offer .bl_financialYear h2,
  .bl_offer .bl_actionPlan h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_financial .bl_flex,
  .bl_offer .bl_corporateInfo .bl_flex,
  .bl_offer .bl_financialYear .bl_flex,
  .bl_offer .bl_actionPlan .bl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .bl_offer .bl_financial .bl_flex::after,
  .bl_offer .bl_corporateInfo .bl_flex::after,
  .bl_offer .bl_financialYear .bl_flex::after,
  .bl_offer .bl_actionPlan .bl_flex::after {
    content: "";
    display: block;
    width: 32%;
  }
}
@media screen and (min-width: 768px) {
  .bl_offer .bl_financial .bl_flex .el_listBlank,
  .bl_offer .bl_corporateInfo .bl_flex .el_listBlank,
  .bl_offer .bl_financialYear .bl_flex .el_listBlank,
  .bl_offer .bl_actionPlan .bl_flex .el_listBlank {
    width: 49%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_offer .bl_financial .bl_flex .el_listBlank,
  .bl_offer .bl_corporateInfo .bl_flex .el_listBlank,
  .bl_offer .bl_financialYear .bl_flex .el_listBlank,
  .bl_offer .bl_actionPlan .bl_flex .el_listBlank {
    width: 32%;
  }
}
.bl_offer .bl_financial .el_listBlank,
.bl_offer .bl_corporateInfo .el_listBlank,
.bl_offer .bl_financialYear .el_listBlank,
.bl_offer .bl_actionPlan .el_listBlank {
  position: relative;
}
.bl_offer .bl_financial .el_listBlank::after,
.bl_offer .bl_corporateInfo .el_listBlank::after,
.bl_offer .bl_financialYear .el_listBlank::after,
.bl_offer .bl_actionPlan .el_listBlank::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_link_01.svg) no-repeat;
}
.bl_offer .bl_financial .el_listBlank a,
.bl_offer .bl_corporateInfo .el_listBlank a,
.bl_offer .bl_financialYear .el_listBlank a,
.bl_offer .bl_actionPlan .el_listBlank a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px 40px;
  padding-right: 70px;
  border: 1px dotted #707070;
  border-radius: 8px;
  font-size: 16px;
  text-align: left;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .bl_offer .bl_financial .el_listBlank a:hover,
  .bl_offer .bl_corporateInfo .el_listBlank a:hover,
  .bl_offer .bl_financialYear .el_listBlank a:hover,
  .bl_offer .bl_actionPlan .el_listBlank a:hover {
    opacity: 1;
    background: #fdf7f9;
  }
}
.bl_offer .bl_financial {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bl_archive_news .bl_topicsHeader_subTtl {
  background: #fffbee;
}

/* =================================================
    .bl_single
=================================================== */
.bl_topicsHeader {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader {
    margin-bottom: 100px;
  }
}
.bl_topicsHeader_ttl {
  width: 90%;
  position: relative;
  padding: 20px;
  background: #d46790;
  border-top-right-radius: 100vh;
  border-bottom-right-radius: 100vh;
  margin-bottom: -10px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader_ttl {
    width: 46.875%;
    margin-bottom: -140px;
    padding: 50px;
  }
}
.bl_topicsHeader_ttl h1 {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader_ttl h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bl_topicsHeader_ttl h1 span {
  margin-top: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  display: block;
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader_ttl h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_topicsHeader_subTtl p {
  padding: 20px;
  margin-left: 10%;
  background: #f7e0e9;
  border-top-left-radius: 100vh;
  border-bottom-left-radius: 100vh;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader_subTtl p {
    padding: 6.9% 30px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_topicsHeader_subTtl p {
    padding: 60px 100px;
  }
}
@media screen and (min-width: 1280px) {
  .bl_topicsHeader_subTtl p {
    padding: 80px 120px;
  }
}
@media screen and (min-width: 768px) {
  .bl_topicsHeader_subTtl p {
    font-size: 40px;
    font-size: 2.5rem;
    font-size: clamp(32px, 3.9024390244vw, 40px);
  }
}
@media screen and (min-width: 1025px) {
  .bl_topicsHeader_subTtl p {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .bl_topicsHeader_subTtl p {
    font-size: 80px;
    font-size: 5rem;
    font-size: clamp(64px, 4.1666666667vw, 80px);
  }
}

/* =================================================
    .bl_post_header
=================================================== */
.bl_post_header {
  display: grid;
  grid-template-areas: "ar_cats_parent ar_cat ar_time" "ar_cats_parent ar_postTtl ar_postTtl";
  grid-template-columns: 100px auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #cccccc;
}
.bl_post_header .el_cats_parent {
  grid-area: ar_cats_parent;
}
.bl_post_header .el_cats_parent span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  background: #71c18e;
  border-radius: 100vh;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  color: #fff;
}
.bl_post_header .el_cat {
  grid-area: ar_cat;
}
.bl_post_header .el_cat span {
  display: inline-block;
  background: #d46790;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.bl_post_header .el_time {
  grid-area: ar_time;
}
.bl_post_header .el_postTtl {
  grid-area: ar_postTtl;
}
.bl_post_header .el_postTtl h2 {
  margin-top: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

/* =================================================
    .bl_single 共通パーツ
=================================================== */
@media screen and (min-width: 1680px) {
  .bl_single {
    position: relative;
  }
  .bl_single::before, .bl_single::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 120%;
    z-index: 10000;
  }
  .bl_single::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 120px;
    background-size: 100%;
  }
  .bl_single::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}
.bl_single .bl_pagenavi {
  padding-top: 40px;
  padding-bottom: 40px;
}
.bl_single .bl_pagenavi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.bl_single .bl_pagenavi ul li a {
  position: relative;
}
.bl_single .bl_pagenavi ul li a::before, .bl_single .bl_pagenavi ul li a::after {
  position: absolute;
  top: 0.3em;
}
.bl_single .bl_pagenavi_before a {
  padding-left: 1em;
}
.bl_single .bl_pagenavi_before a::before {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f053";
  left: 0;
}
.bl_single .bl_pagenavi_after a {
  padding-right: 1em;
}
.bl_single .bl_pagenavi_after a::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f054";
  right: 0;
}
.bl_single .el_btnWrap {
  padding-top: 50px;
  padding-bottom: 100px;
  text-align: center;
}

/* =================================================
    .bl_post
=================================================== */
.bl_post h2:not(.bl_post_ttl) {
  padding: 4px 18px 5px;
  margin-bottom: 30px;
  background: #159944;
  border-radius: 6px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_post h2:not(.bl_post_ttl) {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.bl_post h3 {
  padding-bottom: 4px;
  margin-bottom: 0.3em;
  font-size: 20px;
  font-size: 1.25rem;
  color: #159944;
  font-weight: 700;
  border-bottom: 2px solid #159944;
}
.bl_post h4 {
  padding-bottom: 4px;
  margin-bottom: 0.3em;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #159944;
  border-bottom: 1px dashed #159944;
}
.bl_post h5 {
  padding-bottom: 4px;
  margin-bottom: 0.3em;
  font-size: 18px;
  font-size: 1.125rem;
  color: #159944;
  font-weight: 700;
  border-bottom: 1px dotted #333333;
}
.bl_post h6 {
  margin-bottom: 0.3em;
  font-size: 16px;
  font-size: 1rem;
  color: #159944;
  font-weight: 700;
}
.bl_post p {
  margin-bottom: 1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
}
.bl_post p::last-of-type {
  margin-bottom: 0;
}
.bl_post strong {
  font-weight: bold;
  color: #e5105a;
}
.bl_post a:link,
.bl_post a:visited,
.bl_post a:active {
  color: #71c18e;
  text-decoration: underline;
}
.bl_post ul {
  margin-bottom: 1em;
}
.bl_post ul li {
  position: relative;
  padding-left: 0.6em;
  margin-bottom: 0.3em;
}
.bl_post ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100vh;
  background: #333333;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.bl_post ol {
  margin-bottom: 1em;
  counter-reset: count 0;
}
.bl_post ol li {
  margin-bottom: 0.3em;
}
.bl_post ol li::before {
  content: counter(count, decimal-leading-zero) ". ";
  counter-increment: count 1;
}
.bl_post table {
  margin-bottom: 30px;
}
.bl_post table th,
.bl_post table td {
  border-color: #333333;
}
@media screen and (min-width: 768px) {
  .bl_post .wp-block-video {
    margin: 0 auto 1em;
    width: 80%;
  }
}

/* =================================================
    両サイドのイラスト
=================================================== */
@media screen and (min-width: 1680px) {
  .bl_archive_news {
    position: relative;
  }
  .bl_archive_news::before, .bl_archive_news::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 120%;
    z-index: 10000;
  }
  .bl_archive_news::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 120px;
    background-size: 100%;
  }
  .bl_archive_news::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}

/* =================================================
    .bl_important
=================================================== */
.bl_important {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fffbee;
}
.bl_important_cont {
  width: 90%;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 50px 30px;
}
@media screen and (min-width: 768px) {
  .bl_important_cont {
    max-width: 1000px;
    padding: 100px 50px;
    border-radius: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .bl_important_cont {
    border-radius: 100px;
  }
}
.bl_important_cont h2 {
  margin-bottom: 50px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.bl_important_cont h2 span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-size: 1rem;
  color: #d46790;
  font-weight: 700;
}
.bl_important_post {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dotted #707070;
}
.bl_important_post:first-of-type {
  border-top: 1px dotted #707070;
}
.bl_important_post h3 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

.bl_topics h2 {
  margin-bottom: 50px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.bl_topics h2 span {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-size: 1rem;
  color: #d46790;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_topics ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.bl_topics_article {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 0 10px 50px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .bl_topics_article {
    width: 47%;
  }
}
.bl_topics_article .el_cats_parent {
  position: absolute;
  top: -10px;
  left: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  background: #71c18e;
  border-radius: 100vh;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  color: #fff;
  z-index: 11;
}
.bl_topics_article .el_topics_thum {
  margin-bottom: 20px;
}
.bl_topics_article .el_topics_thum img {
  border-radius: 8px;
}
.bl_topics_article .el_cat {
  grid-area: ar_cat;
}
.bl_topics_article .el_cat span {
  display: inline-block;
  background: #d46790;
  padding: 3px 10px;
  margin-right: 1em;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}
.bl_topics_article .el_cont .el_cont_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 8px;
}

/* =================================================
    .bl_shoukyu
=================================================== */
.bl_shoukyu {
  overflow: hidden;
}
@media screen and (min-width: 1680px) {
  .bl_shoukyu {
    position: relative;
  }
  .bl_shoukyu::before, .bl_shoukyu::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 120%;
    z-index: 10000;
  }
  .bl_shoukyu::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 120px;
    background-size: 100%;
  }
  .bl_shoukyu::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}
.bl_shoukyu .bl_fv {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #fffbee;
}
@media screen and (min-width: 1025px) {
  .bl_shoukyu .bl_fv {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}
.bl_shoukyu .bl_fv h1 {
  margin-bottom: 50px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_fv h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .bl_shoukyu .bl_fv h1 {
    margin-bottom: 50px;
  }
}
.bl_shoukyu .bl_fv h1 span {
  margin-right: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_fv h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_shoukyu .bl_fv h1 span.el_en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_fv h1 span.el_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_shoukyu .bl_fv .el_mainImg {
  display: block;
  max-width: 1070px;
  margin: 0 auto;
}
.bl_shoukyu .bl_shoukyusSec {
  padding-top: 0px;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
.bl_shoukyu .bl_shoukyusSec:first-of-type {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec:first-of-type {
    margin-top: 100px;
  }
}
.bl_shoukyu .bl_shoukyusSec .ly_sec_inner {
  padding: 50px 18px;
  border: 1px solid #d46790;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .ly_sec_inner {
    padding: 70px 5.2083333333%;
  }
}
.bl_shoukyu .bl_shoukyusSec h2 {
  position: relative;
  margin-bottom: 50px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_shoukyu .bl_shoukyusSec h2::after {
  content: "";
  display: block;
  width: 210px;
  height: 4px;
  background: #d46790;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.bl_shoukyu .bl_shoukyusSec .el_philosophy {
  font-size: 24px;
  font-size: 1.5rem;
}
.bl_shoukyu .bl_shoukyusSec .el_img__origin {
  width: 80%;
  max-width: 312px;
  margin: 50px auto 0;
}
.bl_shoukyu .bl_shoukyusSec table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}
.bl_shoukyu .bl_shoukyusSec table tr {
  border-bottom: 1px dotted #707070;
}
.bl_shoukyu .bl_shoukyusSec table tr:first-of-type {
  border-top: 1px dotted #707070;
}
.bl_shoukyu .bl_shoukyusSec table th,
.bl_shoukyu .bl_shoukyusSec table td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec table th,
  .bl_shoukyu .bl_shoukyusSec table td {
    display: table-cell;
    padding: 20px;
    text-align: center;
  }
}
.bl_shoukyu .bl_shoukyusSec table th {
  padding: 20px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec table th {
    padding: 20px;
  }
}
.bl_shoukyu .bl_shoukyusSec table td {
  padding: 20px;
  padding-top: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec table td {
    padding: 20px;
  }
}
.bl_shoukyu .bl_shoukyusSec table td a {
  display: block;
  color: #d46790;
  text-decoration: underline;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus {
  width: 80%;
  margin: 0 auto 60px;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 800px;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname {
    margin-bottom: 0;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname dl {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname dl dt {
  text-align: left;
  margin-right: 1em;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_campusname dl dd {
  text-align: left;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_btnWrap {
  -ms-flex-preferred-size: 44.375%;
      flex-basis: 44.375%;
}
.bl_shoukyu .bl_shoukyusSec .bl_shoukyusSec_campus .el_btnWrap .el_btnMore {
  width: 100%;
  max-width: 355px;
  padding: 25px;
}
.bl_shoukyu .bl_shoukyusSec ul li {
  padding-left: 30px;
  text-indent: -34px;
  margin-bottom: 50px;
  line-height: 2;
}
.bl_shoukyu .bl_shoukyusSec ul li:last-of-type {
  margin-bottom: 0;
}
.bl_shoukyu .bl_shoukyusSec ul li::before {
  content: "一、";
  margin-right: 10px;
}
.bl_shoukyu .bl_shoukyusSec .bl_access {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 800px;
  margin: 0 auto;
}
.bl_shoukyu .bl_shoukyusSec .bl_access h2 {
  margin-bottom: 49px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_access h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_access_map {
  margin-bottom: 10px;
}
.bl_shoukyu .bl_shoukyusSec .bl_access_map img {
  border-radius: 0;
}
.bl_shoukyu .bl_shoukyusSec .bl_access_gmap {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_access_gmap {
    margin-bottom: 100px;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_access_gmap iframe {
  width: 100%;
  aspect-ratio: 375/234;
}
.bl_shoukyu .bl_shoukyusSec .bl_access_table {
  width: 100%;
  text-align: left;
  border-top: 1px dotted #707070;
}
.bl_shoukyu .bl_shoukyusSec .bl_access_table th,
.bl_shoukyu .bl_shoukyusSec .bl_access_table td {
  display: block;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_access_table th,
  .bl_shoukyu .bl_shoukyusSec .bl_access_table td {
    display: table-cell;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_access_table tr {
  border-bottom: 1px dotted #707070;
}
.bl_shoukyu .bl_shoukyusSec .bl_access_table th {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_access_table th {
    padding-left: 50px;
  }
}
.bl_shoukyu .bl_shoukyusSec .bl_access_table td {
  padding-bottom: 18px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .bl_shoukyu .bl_shoukyusSec .bl_access_table td {
    border-bottom: none;
  }
  .bl_shoukyu .bl_shoukyusSec .bl_access_table td br {
    display: none;
  }
}

/* =================================================
    .bl_servicePage
=================================================== */
@media screen and (min-width: 1680px) {
  .bl_servicePage {
    position: relative;
  }
  .bl_servicePage::before, .bl_servicePage::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 310px;
    height: 100%;
    z-index: 10000;
  }
  .bl_servicePage::before {
    left: 0;
    background: url(../images/common/page_illust_left.svg) no-repeat;
    background-position: 0 120px;
    background-size: 100%;
  }
  .bl_servicePage::after {
    right: 0;
    background: url(../images/common/page_illust_right.svg) no-repeat;
    background-position: 0 1000px;
    background-size: 100%;
  }
}
.bl_servicePage .bl_fv {
  position: relative;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_fv {
    width: 720px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.bl_servicePage .bl_fv h1 {
  display: inline-block;
  margin: 0 auto 30px;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_fv h1 {
    margin-bottom: 50px;
    -ms-flex-preferred-size: 360px;
        flex-basis: 360px;
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1025px) {
  .bl_servicePage .bl_fv h1 {
    margin-bottom: 50px;
  }
}
.bl_servicePage .bl_fv h1 span {
  margin-right: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_fv h1 span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_servicePage .bl_fv h1 span.el_en {
  display: block;
  padding-top: 5px;
  margin-top: 10px;
  border-top: 4px solid #d46790;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #d46790;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_fv h1 span.el_en {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.bl_servicePage .bl_fv .el_img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_fv .el_img {
    -ms-flex-preferred-size: 335px;
        flex-basis: 335px;
  }
}
.bl_servicePage .bl_nav_list li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_nav_list li {
    width: auto;
  }
}
.bl_servicePage .bl_serviceWrap {
  background: #fffbee;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_serviceWrap {
    padding-top: 100px;
  }
}
.bl_servicePage .bl_serviceSec {
  padding-top: 0px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_serviceSec {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
.bl_servicePage .bl_serviceSec .ly_sec_inner {
  padding: 40px 28px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_serviceSec .ly_sec_inner {
    max-width: 1060px;
    padding: 50px 28px;
  }
}
.bl_servicePage .bl_serviceSec h2 {
  width: 100%;
  padding: 10px 15%;
  background: #d46790;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .bl_serviceSec h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_servicePage .bl_serviceSec h2 span.el_icon {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.bl_servicePage .bl_serviceSec h2 span.el_icon:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .bl_servicePage .bl_serviceSec h2 span.el_icon {
    margin-right: 80px;
    margin-bottom: 0;
  }
  .bl_servicePage .bl_serviceSec h2 span.el_icon:last-of-type {
    margin-right: 0;
  }
}
.bl_servicePage .bl_serviceSec h2 span.el_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.bl_servicePage .bl_serviceSec h2 span.el_icon__inHomeCareOffice::before {
  background: url(../images/common/icon_03.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2 span.el_icon__homeCareCenter::before {
  background: url(../images/common/icon_07.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon span {
  position: relative;
  display: inline-block;
}
.bl_servicePage .bl_serviceSec h2.el_icon span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.bl_servicePage .bl_serviceSec h2.el_icon__campus span::before {
  background: url(../images/common/icon_01.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__nursingHome span::before {
  background: url(../images/common/icon_02.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__inHomeCareOffice span::before {
  background: url(../images/common/icon_03.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__groupHome span::before {
  background: url(../images/common/icon_05.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__shortStay span::before {
  background: url(../images/common/icon_06.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__homeCareCenter span::before {
  background: url(../images/common/icon_07.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec h2.el_icon__helperStation span::before {
  background: url(../images/common/icon_08.svg) no-repeat left center;
}
.bl_servicePage .bl_serviceSec .bl_imgSlide {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_main {
    -ms-flex-preferred-size: 66%;
        flex-basis: 66%;
    width: 66%;
  }
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_thum {
    -ms-flex-preferred-size: 31%;
        flex-basis: 31%;
    width: 31%;
  }
}
.bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-wrapper::after {
  content: "";
  display: block;
  width: 22%;
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-wrapper::after {
    width: 48%;
  }
}
.bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-wrapper::before {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  content: "";
  display: block;
  width: 22%;
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-wrapper::before {
    width: 48%;
  }
}
.bl_servicePage .bl_serviceSec .bl_imgSlide_thum .el_slideItem {
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
  margin-top: 10px;
  background: #000000;
  border-radius: 8px;
}
@media screen and (min-width: 960px) {
  .bl_servicePage .bl_serviceSec .bl_imgSlide_thum .el_slideItem {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .bl_servicePage .bl_serviceSec .bl_imgSlide_thum .el_slideItem:hover img {
    opacity: 0.6;
  }
}
.bl_servicePage .bl_serviceSec .bl_imgSlide_thum .swiper-slide-thumb-active img {
  opacity: 0.6;
  display: block;
}
.bl_servicePage .el_cont {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .bl_servicePage .el_cont {
    width: 80%;
    max-width: 800px;
  }
}
.bl_servicePage .el_cont .el_lead {
  margin-bottom: 30px;
  font-weight: 700;
}
.bl_servicePage .el_cont ul:not(.el_flow) li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.5em;
}
.bl_servicePage .el_cont .el_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.bl_servicePage .el_cont .el_flow li {
  position: relative;
  padding: 3px;
  margin-right: 40px;
  margin-bottom: 30px;
  border: 1px solid #e5105a;
  color: #e5105a;
  font-weight: 700;
  line-height: 1;
}
.bl_servicePage .el_cont .el_flow li:last-of-type {
  margin-right: 0;
}
.bl_servicePage .el_cont .el_flow li:last-of-type::after {
  display: none;
}
.bl_servicePage .el_cont .el_flow li::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  background: url(../images/campus/ichinomiya/yajirushi_r.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.bl_servicePage .el_cont ol li {
  margin-bottom: 30px;
}
.bl_servicePage .el_cont ol li strong {
  color: #333333;
}
.bl_servicePage .el_cont .el_btnWrap {
  padding-top: 50px;
  text-align: center;
}
.bl_servicePage .el_cont .el_btnWrap .el_btnMore {
  margin: 0 1em 30px;
}
@media screen and (min-width: 1025px) {
  .bl_servicePage .el_cont .el_btnWrap .el_btnMore {
    margin: 0 1em;
  }
}

/* =================================================
    PC両サイドイラスト
=================================================== */
.bl_page__illust {
  display: none;
}
@media screen and (min-width: 1280px) {
  .bl_page__illust {
    display: block;
    width: 1860px;
    margin: 0 auto;
    position: relative;
  }
  .bl_page__illust .el_illustLeft {
    position: absolute;
    top: 50px;
    left: 0;
    width: 320px;
    height: auto;
    z-index: 10000;
  }
  .bl_page__illust .el_illustRight {
    position: absolute;
    top: 450px;
    right: 0;
    width: 320px;
    height: auto;
    z-index: 10000;
  }
}

/* =================================================
    section parts
=================================================== */
.bl_nav {
  padding-top: 30px;
  padding-bottom: 10px;
  background: #f7e0e9;
}
.bl_nav_list {
  width: 86%;
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_nav_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.bl_nav_list li {
  width: 46%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_nav_list li {
    width: auto;
    background: none;
    padding-right: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.bl_nav_list li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-weight: 500;
  vertical-align: middle;
  padding-right: 30px;
  background: url(../images/common/icon_nav_arrow-b.svg) no-repeat right center/24px;
}
@media screen and (min-width: 768px) {
  .bl_nav_list li a {
    background: none;
    padding-right: 0;
  }
  .bl_nav_list li a::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-left: 5px;
    background: url(../images/common/icon_nav_arrow-b.svg) no-repeat center center/24px;
    vertical-align: text-bottom;
  }
}
.bl_nav_list li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #d46790;
  position: absolute;
  bottom: 4px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .bl_nav_list li a:hover {
    opacity: 1;
  }
  .bl_nav_list li a:hover::before {
    bottom: -5px;
    visibility: visible;
    opacity: 1;
  }
}

.bl_helloWork {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bl_helloWork .ly_sec_inner {
  width: 95%;
  max-width: 1600px;
}
.bl_helloWork h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_helloWork h2 {
    margin-bottom: 49px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_helloWork .el_lead {
  margin-bottom: 50px;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_helloWork ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_helloWork ul li {
  max-width: 300px;
  margin: 0 auto 50px;
  text-align: center;
}
.bl_helloWork ul li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .bl_helloWork ul li {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .bl_helloWork ul li {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
.bl_helloWork ul li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.bl_helloWork ul li a img {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .bl_helloWork ul li a img {
    margin-bottom: 10px;
  }
}

.bl_line {
  padding-top: 100px;
  padding-bottom: 100px;
  background: rgba(0, 187, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .bl_line .ly_sec_inner {
    width: 95%;
  }
}
.bl_line_header {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-areas: "ar_icon ar_ttl ar_ttl" "ar_icon ar_id ar_id" "ar_btn ar_btn ar_qr";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_line_header {
    max-width: 806px;
    grid-template-areas: "ar_icon ar_ttl ar_ttl ar_btn ar_qr" "ar_icon ar_id ar_id ar_btn ar_qr";
  }
}
.bl_line_header .el_icon {
  grid-area: ar_icon;
  padding-right: 10px;
}
.bl_line_header .el_icon img {
  width: 60px;
  height: 60px;
}
@media screen and (min-width: 768px) {
  .bl_line_header .el_icon img {
    width: 80px;
    height: 80px;
  }
}
.bl_line_header .el_ttl {
  grid-area: ar_ttl;
  align-self: end;
}
.bl_line_header .el_ttl h2 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .bl_line_header .el_ttl h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_line_header .el_id {
  grid-area: ar_id;
  align-self: self-start;
}
.bl_line_header .el_id p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}
.bl_line_header .el_btnWrap {
  margin-top: 50px;
  grid-area: ar_btn;
}
@media screen and (min-width: 768px) {
  .bl_line_header .el_btnWrap {
    margin-top: 0;
    margin-left: 30px;
  }
}
.bl_line_header .el_btnWrap .el_btnLine {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 100vh;
  background: #00bb00;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.bl_line_header .el_qr {
  grid-area: ar_qr;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .bl_line_header .el_qr {
    margin-top: 0;
    margin-left: 30px;
  }
}
.bl_line .el_lead {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .bl_line .el_lead {
    text-align: center;
  }
}

.bl_recruitmentTel {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bl_recruitmentTel h2 {
  margin-bottom: 18px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentTel h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.bl_recruitmentTel .el_lead {
  margin-bottom: 49px;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
.bl_recruitmentTel_listWrap {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 3px solid #d46790;
  border-bottom: 3px solid #d46790;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentTel_listWrap .el_firstList {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid #d46790;
    margin-bottom: 50px;
  }
  .bl_recruitmentTel_listWrap .el_firstList .bl_recruitmentTel_listItem {
    width: auto;
    grid-template-columns: 115px 1fr;
    padding-bottom: 50px;
    margin-bottom: 0;
  }
  .bl_recruitmentTel_listWrap .el_firstList .bl_recruitmentTel_listItem .el_icon {
    width: 100px;
    height: 100px;
    font-size: 30px;
    font-size: 1.875rem;
  }
  .bl_recruitmentTel_listWrap .el_firstList .bl_recruitmentTel_listItem h3 {
    display: grid;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    font-size: 23px;
    font-size: 1.4375rem;
  }
  .bl_recruitmentTel_listWrap .el_firstList .bl_recruitmentTel_listItem a {
    display: inline-block;
    padding-left: 50px;
    font-size: 48px;
    font-size: 3rem;
    font-weight: 500;
    background: url(../images/common/icon_tel.svg) no-repeat;
    background-position: left bottom 10px;
    background-size: 44px;
  }
}
.bl_recruitmentTel_listWrap .bl_flex .bl_recruitmentTel_listItem:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .bl_recruitmentTel_listWrap .bl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
  }
  .bl_recruitmentTel_listWrap .bl_flex .bl_recruitmentTel_listItem {
    margin-bottom: 0;
  }
}
.bl_recruitmentTel_listItem {
  display: grid;
  grid-template-areas: "ar_icon ar_ttl" "ar_icon ar_tel";
  grid-template-columns: 90px 1fr;
  margin-bottom: 30px;
  width: 326px;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentTel_listItem {
    margin-bottom: 50px;
  }
}
.bl_recruitmentTel_listItem .el_icon {
  grid-area: ar_icon;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  background: #808080;
  border-radius: 100vh;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.bl_recruitmentTel_listItem h3 {
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  font-size: 18px;
  font-size: 1.125rem;
}
.bl_recruitmentTel_listItem a {
  display: inline-block;
  padding-left: 40px;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  background: url(../images/common/icon_tel.svg) no-repeat left center/34px 34px;
}
.bl_recruitmentTel .el_btnWrap {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_recruitmentTel .el_btnWrap {
    margin-top: 100px;
  }
}

/* =================================================
    .bl_recruit
=================================================== */
.bl_recruit {
  padding-top: 70px;
  padding-bottom: 70px;
  background: url(../images/common/recruit_sp.jpg) no-repeat center center/cover;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .bl_recruit {
    height: 375px;
    background: url(../images/common/recruit_pc.jpg) no-repeat center center/cover;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruit_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 80%;
    max-width: 960px;
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .bl_recruit_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.bl_recruit h2 {
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(32px, 10.6666666667vw, 40px);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1025px) {
  .bl_recruit h2 {
    margin-bottom: 0;
    font-size: 60px;
    font-size: 3.75rem;
    font-size: clamp(48px, 3.125vw, 60px);
    text-align: left;
  }
}
.bl_recruit .el_lead {
  margin-bottom: 16px;
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(14.4px, 4.8vw, 18px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_recruit .el_lead {
    font-size: 20px;
    font-size: 1.25rem;
    font-size: clamp(16px, 1.0416666667vw, 20px);
    text-align: left;
  }
}
.bl_recruit_wrapBtn {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .bl_recruit_wrapBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.bl_recruit_wrapBtn .el_recruit_btn {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 2em;
  width: 300px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100vh;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  color: #333333;
}
.bl_recruit_wrapBtn .el_recruit_btn::after {
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f061";
  margin-left: 1em;
  color: #d46790;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .bl_recruit_wrapBtn .el_recruit_btn {
    width: 500px;
    padding: 30px 2em;
    font-size: 26px;
    font-size: 1.625rem;
    font-size: clamp(20.8px, 1.3541666667vw, 26px);
  }
  .bl_recruit_wrapBtn .el_recruit_btn:hover {
    opacity: 1;
    color: #fff;
    background: rgba(212, 103, 144, 0.8);
  }
  .bl_recruit_wrapBtn .el_recruit_btn:hover::after {
    color: #fff;
  }
}

/* =================================================
    .bl_contactBtn
=================================================== */
.bl_contactBtn {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .bl_contactBtn {
    padding-top: 126px;
    padding-bottom: 100px;
  }
}
.bl_contactBtn_btnWrap {
  text-align: center;
}
.bl_contactBtn_btnWrap .el_contact_btn {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 3em;
  width: 300px;
  background: #d46790;
  border-radius: 100vh;
  border: 2px solid #d46790;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: left;
  color: #fff;
}
.bl_contactBtn_btnWrap .el_contact_btn::after {
  position: absolute;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-variant: normal;
  text-rendering: auto;
  letter-spacing: 0;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  content: "\f061";
  margin-left: 1em;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .bl_contactBtn_btnWrap .el_contact_btn::after {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 768px) {
  .bl_contactBtn_btnWrap .el_contact_btn {
    width: 80%;
    max-width: 800px;
    padding: 30px 2em;
    font-size: 26px;
    font-size: 1.625rem;
    font-size: clamp(20.8px, 1.3541666667vw, 26px);
    text-align: center;
  }
  .bl_contactBtn_btnWrap .el_contact_btn br {
    display: none;
  }
  .bl_contactBtn_btnWrap .el_contact_btn:hover {
    opacity: 1;
    color: #d46790;
    background: #fff;
  }
  .bl_contactBtn_btnWrap .el_contact_btn:hover::after {
    color: #d46790;
  }
}

/* ======================================
    page 404
====================================== */
.bl_page404 {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.bl_page404 h2 {
  margin-bottom: 6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop {
  position: relative;
  width: 220px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop a {
  position: absolute;
  width: 100%;
  height: 50px;
  background: #d46790;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_page404 .el_btnBacktoTop a {
    background: #fff;
    color: #d46790;
    border: 1px solid #d46790;
    opacity: 1;
  }
  .bl_page404 .el_btnBacktoTop a:hover {
    background: #d46790;
    color: #fff;
  }
}

/* ==============================================
   mw form 追加設定
================================================= */
.mwform-radio-field {
  position: relative;
}
.mwform-radio-field-field-text {
  position: relative;
}
.mwform-radio-field label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 1em;
  padding-left: 2em;
}

.mwform-checkbox-field {
  position: relative;
}
.mwform-checkbox-field-text {
  padding-left: 30px;
  position: relative;
}
.mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
}

input:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 3px solid #d46790;
  border-right: 3px solid #d46790;
}

.mw_wp_form .el_formttl {
  margin-bottom: 10px;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mw_wp_form .el_formttl {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.mw_wp_form .el_lead {
  padding-bottom: 50px;
  border-bottom: 4px solid #d46790;
}

/* ==============================================
    完了メッセージ
================================================= */
.bl_sendmessage .ef_lead {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
.bl_sendmessage .el_btnWrap {
  padding-top: 80px;
  text-align: center;
}

.mw_wp_form_complete .el_formttl,
.mw_wp_form_complete .el_lead {
  display: none;
}

/* ======================================
  .wp-pagenavi
======================================= */
.pagenation {
  padding-top: 50px;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 0;
  margin-right: 17px;
  padding: 0;
  border: none;
}

.wp-pagenavi a:nth-child(1),
.wp-pagenavi span:nth-child(1) {
  margin-right: 0;
  font-size: 20px;
  font-size: 1.25rem;
}

.wp-pagenavi a:nth-last-child(1),
.wp-pagenavi span:nth-last-child(1) {
  margin-right: 0;
  font-size: 20px;
  font-size: 1.25rem;
}

.wp-pagenavi .pages {
  display: block;
  width: 100%;
  margin-top: 2rem;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.wp-pagenavi .page {
  line-height: 2em;
  width: 2em;
  height: 2em;
}

.wp-pagenavi span.current {
  font-weight: 400;
  line-height: 2.2em;
  width: 2.2em;
  height: 2.2em;
  color: #fff;
  background-color: rgba(212, 103, 144, 0.5);
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  font-size: 20px;
  font-size: 1.25rem;
  width: 0.7em;
  padding-bottom: 0.3em;
}

.wp-pagenavi__container {
  margin-bottom: 1.5em;
}

.wp-pagenavi__container a {
  margin-right: 2.1em;
}

.wp-pagenavi__container a:nth-last-of-type(1) {
  margin-right: 0;
}

.wp-pagenavi__container span {
  margin-right: 2.1em;
  padding: 0.5em 0.7em;
  color: #fff;
  background-color: #e84709;
}

.wp-pagenavi__last-prev {
  width: 1em;
  height: 1em;
  background: transparent url(./../images/topics/last-prev.png) no-repeat top center/100%;
}

.wp-pagenavi__prev {
  width: 0.5em;
  height: 0.9em;
  background: transparent url(./../images/topics/prev.png) no-repeat top center/100%;
}

.wp-pagenavi__last-next {
  width: 1em;
  height: 1em;
  background: transparent url(./../images/topics/last-next.png) no-repeat top center/100%;
}

.wp-pagenavi__next {
  width: 0.5em;
  height: 0.9em;
  background: transparent url(./../images/topics/next.png) no-repeat top center/100%;
}

/* =================================================
    折り畳みアーカイブウィジェット
=================================================== */
.bl_aside {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .bl_aside {
    padding-bottom: 100px;
  }
}

.bl_cat_list {
  border-top: 1px solid #d46790;
  border-bottom: 1px solid #d46790;
}
.bl_cat_list li {
  padding: 5px 10px;
  border-bottom: 1px dotted #d46790;
}
.bl_cat_list li:last-of-type {
  border-bottom: none;
}
.bl_cat_list li a {
  display: inline-block;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .bl_cat_list li a:hover {
    opacity: 1;
    color: #d46790;
  }
}

/* =================================================
    .bl_breadcrumb
=================================================== */
.bl_breadcrumb {
  margin-top: 70px;
  padding-top: 0px;
  padding-bottom: 5px;
}
@media screen and (min-width: 1025px) {
  .bl_breadcrumb {
    margin-top: 90px;
  }
}
.bl_breadcrumb ul {
  padding-left: 20px;
}
.bl_breadcrumb ul li {
  display: inline-block;
  color: #888888;
  font-size: 12px;
  font-size: 0.75rem;
}
.bl_breadcrumb ul li::after {
  content: ">";
  font-size: inherit;
  margin-left: 0.3em;
}
.bl_breadcrumb ul li:last-of-type::after {
  content: "";
}
.bl_breadcrumb ul li a {
  color: inherit;
}

/* =================================================
    functionで定義したパーツ
=================================================== */
/* テンプレートパーツ： 上マージン削除 */
.wp-block-template-part.is-style-rm-margin-top {
  margin-top: 0;
}

/* カラム：モバイル逆順 */
@media (max-width: 781px) {
  .wp-block-columns.is-style-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.hp_text_center {
  text-align: center !important;
}

/* 投稿エディターに左右の余白を入れる */
.is-root-container {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

.is-root-container :where(.has-global-padding) {
  padding-right: 0;
  padding-left: 0;
}

.is-root-container > .alignfull {
  margin-right: calc(var(--wp--style--root--padding-right) * -1);
  margin-left: calc(var(--wp--style--root--padding-left) * -1);
}

.is-root-container :where(.has-global-padding) > .alignfull {
  margin-right: 0;
  margin-left: 0;
}

/* 間隔をカスタマイズする */
.wp-site-blocks > header + main {
  -webkit-margin-before: var(--wp--preset--spacing--70);
          margin-block-start: var(--wp--preset--spacing--70);
}

.wp-site-blocks > main + footer {
  -webkit-margin-before: var(--wp--preset--spacing--80);
          margin-block-start: var(--wp--preset--spacing--80);
}

.page .wp-site-blocks > main + footer {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

main > .mainTitle + .mainBody {
  -webkit-margin-before: var(--wp--preset--spacing--70);
          margin-block-start: var(--wp--preset--spacing--70);
}

.page-template-wp-custom-template-no-title-php .wp-site-blocks > header + main {
  margin-top: var(--wp--preset--spacing--50);
}

