@charset "UTF-8";
/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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,
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, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul,
ol {
  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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  vertical-align: middle;
}

.bg_pink {
  background: #FBDAD7;
}

.bg_yellow {
  background: #fffeef;
}

.l-section {
  width: 100%;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .l-section {
    padding: 40px 0;
  }
}
.l-section__inner {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  .l-section__inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}

/* header */
@media screen and (min-width: 1025px) {
  .l-header {
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
  }
  .l-header__container {
    width: 100%;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .l-header__base {
    margin-left: 40px;
    margin-right: 20px;
  }
  .l-header__base .header-logo {
    display: block;
    width: 250px;
  }
  .l-header__base .js-spMenu-btn {
    display: none;
  }
  .l-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-header__menu .spMenu-logo {
    display: none;
  }
  .l-header .header-guide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    margin-left: 40px;
  }
  .l-header .header-guide .sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    margin-left: 10px;
  }
  .l-header .header-guide .sns-list li a {
    display: block;
    width: 40px;
  }
  .l-header .header-guide .contact a {
    display: block;
    width: 188px;
    height: 80px;
    background: #E94738;
    color: #fff;
    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;
  }
  .l-header .header-guide .contact a .icon {
    display: block;
    width: 30px;
  }
  .l-header .header-guide .contact a .text {
    font-size: 1.8rem;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .l-header .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  .l-header .menu li a {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    font-style: normal;
    display: block;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
  }
}
@media (min-width: 1025px) and (max-width: 1335px) {
  .l-header .header-guide {
    margin-left: 20px;
  }
  .l-header .header-guide .contact a {
    width: auto;
    padding: 0 10px;
  }
  .l-header .header-guide .contact a .icon {
    width: 2.247vw;
  }
  .l-header .header-guide .contact a .text {
    font-size: 1.124vw;
  }
}
@media (min-width: 1120px) and (max-width: 1335px) {
  .l-header .menu {
    left: 50%;
    gap: 1.5vw;
  }
  .l-header .menu li a {
    font-size: 1.333vw;
  }
}
@media (min-width: 1025px) and (max-width: 1119px) {
  .l-header .menu {
    gap: 1.3vw;
  }
  .l-header .menu li a {
    font-size: 1.2vw;
  }
}
/*
@media (min-width:769px) and (max-width:1024px) {
    .l-header {
        &__base {
            .header-logo {
                display: block;
                width: 20.833vw;
                margin-right: 1vw;
            }
        }
        .menu {
            gap: 1.5vw;

            li {
                a {
                    font-size: 1.333vw;
                }
            }
        }
        .header-guide {
            gap: 1.667vw;

            .sns-list {
                gap: 1.5vw;

                li {
                    a {
                        width: 3.333vw;
                    }
                }
            }

            .contact {
                a {
                    width: 15.667vw;

                    .icon {
                        width: 2.5vw;
                    }

                    .text {
                        font-size: 1.5vw;
                    }
                }

            }
        }

    }
}

*/
@media screen and (max-width: 1024px) {
  .l-header {
    background: #fff;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
  }
  .l-header__container {
    width: 100%;
    height: 60px;
  }
  .l-header__base {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .l-header__base .header-logo {
    display: block;
    width: 168px;
    padding-top: 13px;
    margin-left: 20px;
  }
  .l-header__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    height: 100%;
    background: #fffeef;
    color: #FFFFFF;
    -webkit-transform: translate(80vw);
            transform: translate(80vw);
    overflow: auto;
    /*opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;*/
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    z-index: 99;
    will-change: transform;
  }
  .l-header__menu.is-active {
    /*opacity: 100;
    visibility: visible;*/
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .l-header__menu .spMenu-logo {
    width: 154px;
    padding-top: 10px;
    margin-left: 20px;
  }
  .l-header__menu .menu {
    margin: 60px 20px 50px;
    position: relative;
    z-index: 100;
  }
  .l-header__menu .menu li {
    padding-left: 44px;
    position: relative;
  }
  .l-header__menu .menu li::after {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: "";
    width: 30px;
    height: 30px;
  }
  .l-header__menu .menu li:nth-child(1)::after {
    left: 3px;
    height: 40px;
    background: url(../images/common/icon_logo.png) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(2)::after {
    background: url(../images/common/icon_kyusyokusha_red.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(3)::after {
    background: url(../images/common/icon_transition_red.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(4)::after {
    top: 60%;
    background: url(../images/common/icon_school_official_red.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(5)::after {
    width: 35px;
    background: url(../images/common/icon_event.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(6)::after {
    background: url(../images/common/icon_access.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li:nth-child(7)::after {
    top: 60%;
    background: url(../images/common/icon_contact_red.svg) no-repeat;
    background-size: contain;
  }
  .l-header__menu .menu li a {
    display: block;
    color: #000;
    font-family: "M PLUS 1p", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
  }
  .l-header__menu .menu li + li {
    margin-top: 50px;
  }
  .l-header__menu .header-guide {
    margin: 0 20px 20px;
  }
  .l-header__menu .header-guide .sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .l-header__menu .header-guide .sns-list li {
    width: 40px;
  }
  .l-header__menu .header-guide .contact {
    display: none;
  }
  .js-spMenu-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 40px;
    height: 40px;
    z-index: 1000;
    border: none;
    background: #E94738;
    border-radius: 50%;
    cursor: pointer;
  }
  .js-spMenu-btn span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    width: 24px;
    height: 1px;
    background: #FFFFFF;
    position: absolute;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    left: 50%;
    top: 50%;
  }
  .js-spMenu-btn span:nth-child(1) {
    -webkit-transform: translate(-50%, -6px);
            transform: translate(-50%, -6px);
  }
  .js-spMenu-btn span:nth-child(2) {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .js-spMenu-btn span:nth-child(3) {
    -webkit-transform: translate(-50%, 6px);
            transform: translate(-50%, 6px);
  }
  .js-spMenu-btn.is-active span {
    width: 24px;
    height: 2px;
  }
  .js-spMenu-btn.is-active span:nth-child(1) {
    -webkit-transform: translate(-50%, 50%) rotate(45deg);
            transform: translate(-50%, 50%) rotate(45deg);
  }
  .js-spMenu-btn.is-active span:nth-child(2) {
    opacity: 0;
    left: 50%;
  }
  .js-spMenu-btn.is-active span:nth-child(3) {
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }
}
/* footer */
.l-footer {
  width: 100%;
  background: #F19187;
}
.l-footer__container {
  padding: 40px 0;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 940px) {
  .l-footer__container {
    width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__container {
    /*width: calc(100% - 40px);*/
    width: 335px;
  }
}
@media screen and (max-width: 374px) {
  .l-footer__container {
    width: 100%;
  }
}
.l-footer h2 {
  width: 300px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .l-footer h2 {
    max-width: 300px;
    width: 100%;
  }
}
@media screen and (max-width: 374px) {
  .l-footer h2 {
    max-width: 100%;
  }
}
.l-footer .address {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .l-footer .address {
    width: auto;
    text-align: left;
  }
}
@media screen and (max-width: 374px) {
  .l-footer .address {
    font-size: 1.3rem;
  }
}
.l-footer .contact-address {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 40px;
}
.l-footer .contact-address .tel {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.7;
  position: relative;
  margin-bottom: 20px;
}
.l-footer .contact-address .tel span {
  display: inline-block;
  padding-left: 31px;
  position: relative;
}
.l-footer .contact-address .tel span::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 29px;
  height: 38px;
  background: url(../images/common/icon_tel_w.svg) no-repeat;
  background-size: contain;
}
.l-footer .contact-address .tel_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer .contact-address .tel_col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer .contact-address .tel_col2 .tel_col .tel {
  margin-bottom: 0;
}
.l-footer .contact-address .tel_col2 .tel_col span.add {
  color: #fff;
  display: block;
  font-size: 1.4rem;
  text-align: right;
}
.l-footer .contact-address .email {
  display: inline-block;
  padding-left: 37px;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-footer .contact-address .email {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 374px) {
  .l-footer .contact-address .email {
    font-size: 1.8rem;
  }
}
.l-footer .contact-address .email::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: url(../images/common/icon_mail_w.svg) no-repeat;
  background-size: contain;
}
.l-footer .menu {
  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;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 940px) {
  .l-footer .menu {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.l-footer .menu li {
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.l-footer .menu li a {
  display: block;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer .menu li a {
    text-align: left;
  }
}
.l-footer .footer-about {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer .footer-about {
    width: 100%;
    margin: 0 calc(50% - 50vw) 40px;
  }
}
.l-footer .footer-about p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer .footer-about p {
    text-align: left;
    padding: 0 20px;
  }
}
.l-footer .footer-about p span {
  font-size: 1.4rem;
}
.l-footer .sns-list {
  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;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer .sns-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
}
.l-footer .copyright {
  width: 100%;
  height: 50px;
  background: #E94738;
}
.l-footer .copyright p {
  color: #fff;
  font-size: 1rem;
  line-height: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .home .l-footer {
    padding-bottom: 100px;
  }
}

.c-heading2 {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-heading2 {
    margin-bottom: 30px;
  }
}
.c-heading2 .en {
  display: block;
  margin: 0 auto 6px;
}
.c-heading2 .jp {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.about-head .en {
  width: 135px;
}
@media screen and (max-width: 768px) {
  .about-head .en {
    width: 105px;
  }
}

.access-head .en {
  width: 147px;
}
@media screen and (max-width: 768px) {
  .access-head .en {
    width: 114px;
  }
}

.news-head .en {
  width: 118px;
}
@media screen and (max-width: 768px) {
  .news-head .en {
    width: 92px;
  }
}

.blog-head .en {
  width: 101px;
}
@media screen and (max-width: 768px) {
  .blog-head .en {
    width: 79px;
  }
}

.link-head .en {
  width: 84px;
}
@media screen and (max-width: 768px) {
  .link-head .en {
    width: 74px;
  }
}

.voice-head .en {
  width: 119px;
}
@media screen and (max-width: 768px) {
  .voice-head .en {
    width: 74px;
  }
}

.service-head .en {
  width: 163px;
}
@media screen and (max-width: 768px) {
  .service-head .en {
    width: 127px;
  }
}

.steps-head .en {
  width: 124px;
}
@media screen and (max-width: 768px) {
  .steps-head .en {
    width: 108px;
  }
}

.event-head .en {
  width: 121px;
}
@media screen and (max-width: 768px) {
  .event-head .en {
    width: 94px;
  }
}

.faq-head .en {
  width: 98px;
}
@media screen and (max-width: 768px) {
  .faq-head .en {
    width: 80px;
  }
}

.dl-head .en {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .dl-head .en {
    width: 175px;
  }
}

.contact-head .en {
  width: 170px;
}
@media screen and (max-width: 768px) {
  .contact-head .en {
    width: 132px;
  }
}

.recruitment-head .en {
  width: 277px;
}
@media screen and (max-width: 768px) {
  .recruitment-head .en {
    width: 216px;
  }
}

.seminar-head .en {
  width: 182px;
}
@media screen and (max-width: 768px) {
  .seminar-head .en {
    width: 141px;
  }
}

.c-button--more {
  display: block;
  max-width: 335px;
  width: 100%;
  height: 60px;
  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;
  text-align: center;
  background: #E94738;
  border: #E94738 solid 2px;
  border-radius: 30px;
  position: relative;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more {
    max-width: 27.917vw;
    height: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-button--more {
    width: 100%;
    max-width: 335px;
  }
}
.c-button--more {
  /*@include g.mq(sp) {
      width: 89.333vw;
      height: 16vw;
      line-height: 16vw;
      border-radius: 8vw;
  }*/
}
.c-button--more::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 11px;
  height: 11px;
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
  border-radius: 2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more::after {
    right: 2vw;
  }
}
.c-button--more::after {
  /*@include g.mq(sp) {
      right: 6.4vw;
      width: 2.933vw;
      height: 2.933vw;
  }*/
}
.c-button--more span {
  display: inline-block;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more span {
    font-size: 1.667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-button--more span {
    font-size: 1.8rem;
  }
}
.c-button--more:hover {
  background: #fff;
  opacity: 1;
}
.c-button--more:hover::after {
  border-top: #E94738 solid 2px;
  border-right: #E94738 solid 2px;
}
.c-button--more:hover span {
  color: #E94738;
}
.c-button--more::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 1;
}
.c-button--more.kyusyokusha::before {
  left: 33px;
  width: 46px;
  height: 46px;
  background: url(../images/common/icon_kyusyokusha.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more.kyusyokusha::before {
    left: 2.75vw;
    width: 3.833vw;
    height: 3.833vw;
  }
}
.c-button--more.kyusyokusha::before {
  /*@include g.mq(sp) {
      left: 8.8vw;
      width: 12.267vw;
      height: 12.267vw;
  }*/
}
.c-button--more.kyusyokusha:hover::before {
  background: url(../images/common/icon_kyusyokusha_red.svg) no-repeat;
  background-size: contain;
}
.c-button--more.transition::before {
  left: 37px;
  width: 37px;
  height: 41px;
  background: url(../images/common/icon_transition.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more.transition::before {
    left: 3.083vw;
    width: 3.083vw;
    height: 3.417vw;
  }
}
.c-button--more.transition::before {
  /*@include g.mq(sp) {
      left: 9.867vw;
      width: 9.867vw;
      height: 10.933vw;
  }*/
}
.c-button--more.transition:hover::before {
  background: url(../images/common/icon_transition_red.svg) no-repeat;
  background-size: contain;
}
.c-button--more.school_official::before {
  left: 32px;
  width: 50px;
  height: 34px;
  background: url(../images/common/icon_school_official.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--more.school_official::before {
    left: 2.667vw;
    width: 4.167vw;
    height: 2.833vw;
  }
}
.c-button--more.school_official::before {
  /*@include g.mq(sp) {
      left: 8.533vw;
      width: 13.333vw;
      height: 9.067vw;
  }*/
}
.c-button--more.school_official:hover::before {
  background: url(../images/common/icon_school_official_red.svg) no-repeat;
  background-size: contain;
}
.c-button--more.--narrow {
  width: 218px;
  height: 55px;
}
.c-button--more.--narrow::after {
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  .c-button--more.--narrow::after {
    width: 9px;
    height: 9px;
  }
}
.c-button--more.--narrow span {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-button--more.--narrow span {
    font-size: 1.4rem;
  }
}
.c-button--more.--bg_white {
  background: #fff;
  border: #E94738 solid 2px;
}
.c-button--more.--bg_white::after {
  border-top: #E94738 solid 2px;
  border-right: #E94738 solid 2px;
}
.c-button--more.--bg_white span {
  color: #E94738;
}
.c-button--more.--bg_white:hover {
  background: #E94738;
}
.c-button--more.--bg_white:hover::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
.c-button--more.--bg_white:hover span {
  color: #fff;
}

.c-button--dl {
  display: block;
  width: 295px;
  height: 62px;
  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;
  text-align: center;
  background: #fff;
  border: #E94738 solid 1px;
  border-radius: 30px;
  position: relative;
}
.c-button--dl::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 21px;
  height: 22px;
  background: url(../images/common/icon_dl.svg) no-repeat;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--dl::after {
    right: 2vw;
  }
}
.c-button--dl span {
  display: inline-block;
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .c-button--dl span {
    font-size: 1.667vw;
  }
}
@media screen and (max-width: 768px) {
  .c-button--dl span {
    font-size: 1.8rem;
  }
}

.c-button--dl-excel {
  display: block;
  width: 350px;
  height: 58px;
  text-align: center;
  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;
  color: #E94738;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  border: #E94738 solid 1px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .c-button--dl-excel {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 450px) {
  .c-button--dl-excel {
    line-height: 1.2;
  }
}
.c-button--dl-excel span {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 500px) {
  .c-button--dl-excel span {
    font-size: 3.6vw;
  }
}
.c-button--dl-excel::before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 33px;
  background: url(../images/common/icon_excel.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .c-button--dl-excel::before {
    left: 4vw;
    width: 5.2vw;
    height: 6.6vw;
  }
}
.c-button--dl-excel::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url(../images/common/icon_dl.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 500px) {
  .c-button--dl-excel::after {
    right: 4vw;
    width: 5.2vw;
    height: 5.2vw;
  }
}

.p-news__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-news__list {
    margin-bottom: 30px;
  }
}
.p-news__list li {
  border-bottom: #000 dashed 1px;
}
.p-news__list li a .date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.p-news__list li a p {
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .p-news__list li a p {
    font-size: 1.4rem;
    padding: 6px 0;
  }
}
.p-news__list li + li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-news__list li + li {
    margin-top: 20px;
  }
}
.p-news__more {
  text-align: right;
}
.p-news__more a {
  font-size: 1.4rem;
  line-height: 1;
  padding-right: 1em;
  position: relative;
}
.p-news__more a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.p-blog__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-blog__list {
    margin-bottom: 30px;
  }
}
.p-blog__list li {
  border-bottom: #000 dashed 1px;
}
.p-blog__list li a .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
.p-blog__list li a .row .date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.p-blog__list li a .row .category {
  display: block;
  color: #E94738;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  padding: 4px;
  border: #E94738 solid 1px;
  border-radius: 6px;
}
.p-blog__list li a p {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .p-blog__list li a p {
    padding: 6px 0;
  }
}
.p-blog__list li + li {
  margin-top: 10px;
}
.p-blog__more {
  text-align: right;
}
.p-blog__more a {
  font-size: 1.4rem;
  line-height: 1;
  padding-right: 1em;
  position: relative;
}
.p-blog__more a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.p-link__contents {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .p-link__contents {
    margin-bottom: 23px;
  }
}
.p-link__contents .link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-link__contents .link-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-link__contents .link-list li {
  aspect-ratio: 230/130;
}
.p-link__contents .link-list li a {
  display: block;
  width: 100%;
}
.p-link__contents .link-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-link__sns h3 {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 20px;
}
.p-link__sns .sns-list {
  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;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-link__sns .sns-list {
    gap: 10px;
  }
}

.p-event__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-event__list {
    margin-bottom: 30px;
  }
}
.p-event__list li {
  border-bottom: #000 dashed 1px;
}
.p-event__list li a .date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.p-event__list li a p {
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .p-event__list li a p {
    font-size: 1.4rem;
    padding: 6px 0;
  }
}
.p-event__list li + li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-event__list li + li {
    margin-top: 20px;
  }
}
.p-event__more {
  text-align: right;
}
.p-event__more a {
  font-size: 1.4rem;
  line-height: 1;
  padding-right: 1em;
  position: relative;
}
.p-event__more a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #000 solid 2px;
  border-right: #000 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.p-main-mv {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #E94738;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-main-mv {
    height: 26vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv {
    height: 98.4vw;
  }
}
.p-main-mv__contents {
  width: 954px;
  margin: 0 auto;
  height: 100%;
  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;
  gap: 60px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv__contents {
    width: 100%;
    padding: 0 20px;
    gap: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.333vw;
  }
}
.p-main-mv__contents .text {
  width: 344px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv__contents .text {
    width: 34.4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv__contents .text {
    width: 100%;
  }
}
.p-main-mv__contents .text h2 {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv__contents .text h2 {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv__contents .text h2 {
    width: 91.733vw;
  }
}
.p-main-mv__contents .text p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 1000px) {
  .p-main-mv__contents .text p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv__contents .text p {
    font-size: 4.267vw;
  }
}
.p-main-mv__contents .image {
  width: 550px;
  height: 550px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .p-main-mv__contents .image {
    width: 55vw;
    height: 55vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv__contents .image {
    width: 32vw;
    height: auto;
    background: none;
    border-radius: 0;
  }
}
.p-main-mv.kyusyokusha-mv .p-main-mv__contents .image img {
  position: absolute;
  bottom: 144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 153px;
  height: 227px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv.kyusyokusha-mv .p-main-mv__contents .image img {
    bottom: 14.4vw;
    width: 15.3vw;
    height: 22.7vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv.kyusyokusha-mv .p-main-mv__contents .image img {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: auto;
  }
}
.p-main-mv.transition-mv .p-main-mv__contents .image img {
  position: absolute;
  bottom: 144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 550px;
  height: 206px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv.transition-mv .p-main-mv__contents .image img {
    bottom: 14.4vw;
    width: 55vw;
    height: 20.6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv.transition-mv .p-main-mv__contents .image img {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: auto;
  }
}
.p-main-mv.school_official-mv .p-main-mv__contents {
  width: 1010px;
}
@media screen and (max-width: 1040px) {
  .p-main-mv.school_official-mv .p-main-mv__contents {
    width: 100%;
    padding: 0 20px;
  }
}
.p-main-mv.school_official-mv .p-main-mv__contents .text {
  width: 400px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv.school_official-mv .p-main-mv__contents .text {
    width: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv.school_official-mv .p-main-mv__contents .text {
    width: 100%;
  }
}
.p-main-mv.school_official-mv .p-main-mv__contents .image img {
  position: absolute;
  bottom: 144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 165px;
  height: 233px;
}
@media screen and (max-width: 1000px) {
  .p-main-mv.school_official-mv .p-main-mv__contents .image img {
    bottom: 14.4vw;
    width: 16.5vw;
    height: 23.3vw;
  }
}
@media screen and (max-width: 768px) {
  .p-main-mv.school_official-mv .p-main-mv__contents .image img {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
    height: auto;
  }
}

.p-sub-mv {
  width: 100%;
  height: 468px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 840px) {
  .p-sub-mv {
    place-content: initial;
  }
}
@media screen and (max-width: 768px) {
  .p-sub-mv {
    height: auto;
    margin-top: 40px;
  }
}
.p-sub-mv__contents {
  width: 800px;
  height: 348px;
  border: #E94738 solid 1px;
  border-radius: 10px;
  margin: 0 auto;
  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;
  gap: 20px;
}
@media screen and (max-width: 840px) {
  .p-sub-mv__contents {
    width: calc(100% - 40px);
    margin: auto 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-sub-mv__contents {
    height: auto;
    padding: 30px 0;
  }
}
.p-sub-mv__contents h2 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-sub-mv__contents h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.p-sub-mv__contents figure {
  width: 160px;
}
.p-sub-mv__contents p {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}

.p-main-guide__contents {
  width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-main-guide__contents {
    width: 100%;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 20px;
  }
}
.p-main-guide__contents .col {
  padding: 34px 20px 36px;
  border: #E94738 solid 1px;
  border-radius: 11px;
  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;
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-main-guide__contents .col {
    padding: 30px 20px;
  }
}
.p-main-guide__contents .col h3,
.p-main-guide__contents .col p,
.p-main-guide__contents .col figure,
.p-main-guide__contents .col a {
  text-align: center;
}
.p-main-guide__contents .col h3 {
  color: #E94738;
  font-size: 2.2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .p-main-guide__contents .col h3 {
    font-size: 2rem;
  }
}
.p-main-guide__contents .col figure {
  width: 140px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-main-guide__contents .col figure {
    width: 100px;
  }
}
.p-main-guide__contents .col .about {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
  .p-main-guide__contents .col .about {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.p-main-guide__contents .col .more {
  margin-top: auto;
}
.p-main-guide__contents .col .more a + a {
  margin-top: 18px;
}

.p-service__lead {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.p-service__lead strong {
  font-weight: 700;
  color: #E94738;
}
.p-service__contents {
  width: 100%;
  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: 40px;
}
@media screen and (max-width: 768px) {
  .p-service__contents {
    -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;
    gap: 20px;
  }
}
.p-service__contents .col {
  width: calc(50% - 20px);
  padding: 20px;
  background: #FFFEEF;
  border: #E94738 solid 3px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-service__contents .col {
    width: 100%;
  }
}
.p-service__contents .col figure {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-service__contents .col .text h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.p-service__contents .col .text p {
  font-size: 1.6rem;
  font-weight: 400;
}

.p-steps__contents {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-steps__contents {
    width: 100%;
  }
}
.p-steps__list {
  width: 100%;
}
.p-steps__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding-bottom: 40px;
  position: relative;
}
.p-steps__list li:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-steps__list li {
    gap: 20px;
    padding-right: 20px;
  }
}
.p-steps__list li::after {
  position: absolute;
  left: 72px;
  top: 0;
  content: "";
  width: 20px;
  height: 100%;
  background: #f5aca5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-steps__list li::after {
    left: 20px;
  }
}
.p-steps__list li .number {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 48px;
  width: 68px;
}
@media screen and (max-width: 768px) {
  .p-steps__list li .number {
    margin-left: 0;
    width: 60px;
  }
}
.p-steps__list li .row {
  padding-top: 20px;
}
.p-steps__list li .row h3 {
  color: #E94738;
  font-size: 2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-steps__list li .row h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.p-steps__list li .row p {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .p-steps__list li .row p {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.p-steps__list li .row .c-button--more {
  width: 350px;
}
@media screen and (max-width: 768px) {
  .p-steps__list li .row .c-button--more {
    max-width: 240px;
  }
}
.p-steps__list li:nth-child(3)::after {
  height: 10px;
}

.p-faq__contents {
  width: 100%;
}
.p-faq__contents dl {
  width: 100%;
  padding: 20px;
  background: #FBDAD7;
  border-radius: 10px;
}
.p-faq__contents dl dt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #E94738;
  padding-left: 45px;
  min-height: 35px;
  position: relative;
}
.p-faq__contents dl dt::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/common/icon_question.svg);
}
.p-faq__contents dl dd {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 10px;
  min-height: 35px;
  padding-left: 45px;
  position: relative;
}
.p-faq__contents dl dd::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/common/icon_answer.svg);
}
.p-faq__contents dl + dl {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq__contents dl + dl {
    margin-top: 10px;
  }
}

.p-dl__lead {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.p-dl__lead strong {
  font-weight: 700;
  color: #E94738;
}
.p-dl__contents .dl-list {
  display: grid;
  grid-template-columns: repeat(2, 295px);
  gap: 20px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact__contents {
  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;
  gap: 20px;
}
.p-contact__contents h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
}
.p-contact__contents .tel_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__contents .tel_col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-contact__contents .tel_col2 .tel_col span {
  display: block;
  font-size: 1.4rem;
  text-align: right;
}
.p-contact__contents .tel {
  display: block;
  padding-left: 27px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  position: relative;
}
.p-contact__contents .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 28px;
  background: url(../images/common/icon_tel.svg) no-repeat;
  background-size: contain;
}
.p-contact__contents .time {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-voice__lead {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.p-voice__contents {
  width: 100%;
}
.p-voice__contents .row {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.p-voice__contents .row::after {
  position: absolute;
  bottom: -15px;
  left: 27px;
  content: "";
  width: 20px;
  height: 23px;
  background: url(../images/common/voice_bg_01.png) no-repeat;
  background-size: contain;
}
.p-voice__contents .row.--right::after {
  left: auto;
  right: 18px;
  background: url(../images/common/voice_bg_02.png) no-repeat;
  background-size: contain;
}
.p-voice__contents .row .comment {
  margin-bottom: 10px;
}
.p-voice__contents .row .commentator {
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}
.p-voice__contents .row + .row {
  margin-top: 30px;
}

.u-sp-show {
  display: none !important;
}

.u-sp-hide {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .u-sp-show {
    display: block !important;
  }
  .u-sp-hide {
    display: none !important;
  }
}
.u-tab-show {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .u-tab-show {
    display: block !important;
  }
}
.u-sp-m-show {
  display: none !important;
}

@media screen and (max-width: 450px) {
  .u-sp-m-show {
    display: block !important;
  }
}
.u-text-left {
  text-align: left !important;
}

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

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

.u-font-bold {
  font-weight: 700 !important;
}

.u-underline {
  text-decoration: underline;
}

.u-text-red {
  color: #E94738;
}

.u-text-link {
  color: #006CCC;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

/* home */
.home-mv {
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-image: url(../images/home/mv_bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.home-mv::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(233, 71, 56, 0.55);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home-mv::after {
    position: absolute;
    bottom: 5.333vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    width: 9.6vw;
    height: 11.2vw;
    background: url(../images/home/scroll.png) no-repeat;
    background-size: contain;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .home-mv {
    height: 187.2vw;
  }
}
.home-mv__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home-mv__container {
    top: 10.667vw;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 100%;
    height: 154.667vw;
    background-color: transparent;
    background-image: url(../images/home/mv_bg_sp.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    border-radius: 0;
  }
}
.home-mv__contents {
  height: 100%;
  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;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .home-mv__contents {
    gap: 5.333vw;
  }
}
.home-mv__contents h2 {
  width: 375px;
}
@media screen and (max-width: 768px) {
  .home-mv__contents h2 {
    width: 100%;
  }
}
.home-mv__contents .logo {
  width: 236px;
}
@media screen and (max-width: 768px) {
  .home-mv__contents .logo {
    width: 62.933vw;
  }
}
.home-mv__contents p {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .home-mv__contents p {
    font-size: 4.267vw;
  }
}

.home-slider {
  padding: 60px 0 90px;
}
.home-slider .js-slider {
  width: 100%;
}
.home-slider .js-slider .slider-item {
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .home-slider .js-slider .slider-item {
    margin: 0 10px;
  }
}
.home-slider .js-slider .slider-item figure {
  /*aspect-ratio: 900 / 450;*/
  aspect-ratio: 544/400;
}
.home-slider .js-slider .slider-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-slider .js-slider .slick-dots {
  bottom: -55px;
}
.home-slider .js-slider .slick-dots li button:before {
  font-size: 10px;
}

.home-guidance__container._01 {
  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;
  gap: 24px;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .home-guidance__container._01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 20px;
  }
}
.home-guidance__container._01 a:nth-child(1) {
  background: #06C755;
  border: none;
}
.home-guidance__container._01 a:nth-child(1):hover {
  opacity: 0.7;
  background: #06C755;
}
.home-guidance__container._01 a:nth-child(1):hover span {
  color: #fff;
}
.home-guidance__container._01 a:nth-child(1):hover::before {
  background: url(../images/common/icon_kyusyokusha.svg) no-repeat;
  background-size: contain;
}
.home-guidance__container._01 a:nth-child(1):hover::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
.home-guidance__container._01 a:nth-child(2) {
  background: #006CCC;
  border: none;
}
.home-guidance__container._01 a:nth-child(2):hover {
  opacity: 0.7;
  background: #006CCC;
}
.home-guidance__container._01 a:nth-child(2):hover span {
  color: #fff;
}
.home-guidance__container._01 a:nth-child(2):hover::before {
  background: url(../images/common/icon_transition.svg) no-repeat;
  background-size: contain;
}
.home-guidance__container._01 a:nth-child(2):hover::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
.home-guidance__container._01 a:nth-child(2):hover::before {
  background: url(../images/common/icon_transition.svg) no-repeat;
  background-size: contain;
}
.home-guidance__container._01 a:nth-child(3) {
  background: #E7A713;
  border: none;
}
.home-guidance__container._01 a:nth-child(3):hover {
  opacity: 0.7;
  background: #E7A713;
}
.home-guidance__container._01 a:nth-child(3):hover span {
  color: #fff;
}
.home-guidance__container._01 a:nth-child(3):hover::before {
  background: url(../images/common/icon_school_official.svg) no-repeat;
  background-size: contain;
}
.home-guidance__container._01 a:nth-child(3):hover::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
.home-guidance__container._02 {
  max-width: 920px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 32px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .home-guidance__container._02 {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .home-guidance__container._02 {
    max-width: 420px;
    grid-template-columns: 100%;
  }
}
.home-guidance__container._02 .c-button--guid {
  display: block;
  width: 100%;
  height: 45px;
  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;
  text-align: center;
  background: #fff;
  border: #E94738 solid 2px;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-guidance__container._02 .c-button--guid {
    height: 50px;
  }
}
.home-guidance__container._02 .c-button--guid::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 11px;
  height: 11px;
  border-top: #E94738 solid 2px;
  border-right: #E94738 solid 2px;
  border-radius: 2px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home-guidance__container._02 .c-button--guid::after {
    right: 2vw;
  }
}
.home-guidance__container._02 .c-button--guid span {
  display: inline-block;
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .home-guidance__container._02 .c-button--guid span {
    font-size: 1.667vw;
  }
}
@media screen and (max-width: 768px) {
  .home-guidance__container._02 .c-button--guid span {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.home-guidance__container._02 .c-button--guid:hover {
  background: #E94738;
  opacity: 1;
}
.home-guidance__container._02 .c-button--guid:hover::after {
  border-top: #fff solid 2px;
  border-right: #fff solid 2px;
}
.home-guidance__container._02 .c-button--guid:hover span {
  color: #fff;
}

.home-access .l-section__inner {
  width: 1040px;
}
@media screen and (max-width: 1080px) {
  .home-access .l-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
.home-access__wrap {
  background: #fffeef;
  border: #E94738 solid 1px;
  border-radius: 14px;
  padding: 60px 80px;
}
@media screen and (max-width: 768px) {
  .home-access__wrap {
    padding: 20px;
  }
}
.home-access__jobStation {
  background: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 50px 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation {
    padding: 20px;
  }
}
.home-access__jobStation h3 {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation h3 {
    margin-bottom: 10px;
  }
}
.home-access__jobStation .lead {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation .lead {
    text-align: left;
    margin-bottom: 10px;
  }
}
.home-access__jobStation .image {
  text-align: center;
  margin-bottom: 30px;
}
.home-access__jobStation .c-button--more.--large {
  max-width: 420px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation .c-button--more.--large {
    max-width: 335px;
    width: 100%;
    line-height: 1.2;
  }
}
.home-access__jobStation .info-01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  padding: 35px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  border: #E94738 solid 1px;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation .info-01 {
    padding: 10px;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
  }
}
.home-access__jobStation .info-01 dl dt {
  font-size: 2rem;
  font-weight: 500;
  color: #E94738;
  margin-bottom: 10px;
}
.home-access__jobStation .info-01 dl dd {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}
.home-access__jobStation .info-01 dl dd span {
  font-size: 1.6rem;
}
.home-access__jobStation .info-01 dl dd a {
  text-decoration: underline;
}
.home-access__jobStation .info-02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.home-access__jobStation .info-02 li {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .home-access__jobStation .info-02 li {
    line-height: 1.2;
  }
}
.home-access__jobStation .info-02 li a {
  color: #E94738;
  text-decoration: underline;
}
.home-access__jobStation .info-02 li + li {
  margin-top: 16px;
}
.home-access__satellite {
  background: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .home-access__satellite {
    padding: 20px;
  }
}
.home-access__satellite h3 {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home-access__satellite h3 {
    margin-bottom: 10px;
  }
}
.home-access__satellite .lead {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home-access__satellite .lead {
    text-align: left;
  }
}
.home-access__satellite .satellite-list {
  /*width: 440px;*/
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .home-access__satellite .satellite-list {
    width: 335px;
    gap: 20px;
  }
}
@media screen and (max-width: 450px) {
  .home-access__satellite .satellite-list {
    grid-template-columns: 100%;
  }
}
.home-access__satellite .satellite-list li {
  position: relative;
  padding-left: 20px;
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home-access__satellite .satellite-list li {
    font-size: 1.8rem;
  }
}
.home-access__satellite .satellite-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/home/icon_arrow.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .home-access__satellite .satellite-list li::before {
    width: 16px;
    height: 16px;
  }
}
.home-access__satellite .c-button--more {
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .home-access__satellite .c-button--more {
    max-width: 335px;
    width: 100%;
  }
}

.home-report p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
}
.home-report .c-button--more {
  margin: 0 auto;
}

.cta {
  position: fixed;
  bottom: 100px;
  right: 0;
  padding: 12px 10px 27px;
  background: #FFFEEF;
  border: #E94738 solid 2px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .cta {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 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;
    gap: 10px;
    background: rgba(255, 254, 239, 0.7);
    border: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 385px) {
  .cta {
    padding: 5vw 2.5vw;
    gap: 2.5vw;
  }
}
.cta p {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.7;
  text-align: center;
  padding-bottom: 9px;
  border-bottom: #E94738 dotted 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .cta p {
    font-size: 2rem;
    line-height: 1.2;
    white-space: nowrap;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
}
@media (max-width: 385px) {
  .cta p {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta-list {
    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;
    gap: 10px;
  }
}
@media (max-width: 385px) {
  .cta .cta-list {
    gap: 2.5vw;
  }
}
.cta .cta-list a {
  display: block;
  width: 100%;
  padding: 8px 9px;
  text-align: center;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 30px;
}
.cta .cta-list a:nth-child(1) {
  background: #06C755;
}
.cta .cta-list a:nth-child(2) {
  background: #A4CC03;
}
.cta .cta-list a:nth-child(3) {
  background: #006CCC;
}
@media screen and (max-width: 768px) {
  .cta .cta-list a {
    font-size: 1.6rem;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 20px;
    padding: 10px;
    height: 60px;
  }
}
@media (max-width: 385px) {
  .cta .cta-list a {
    font-size: 4vw;
    padding: 2.597vw;
    height: 15vw;
  }
}
.cta .cta-list a span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .cta .cta-list a span {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cta .cta-list a:nth-child(3) {
    line-height: 2;
  }
}
.cta .cta-list a + a {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .cta .cta-list a + a {
    margin-top: 0;
  }
}

#kyusyokusha-guide .p-main-guide__contents .col .c-button-more.--narrow {
  margin-top: auto;
}
#kyusyokusha-guide .p-main-guide__contents .col .c-button-more + .c-button-more {
  margin-top: 16px;
}

.jobcafe-voice__lead {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.jobcafe-voice__lead strong {
  font-weight: 700;
  color: #E94738;
}
.jobcafe-voice__contents {
  width: 100%;
}
.jobcafe-voice__contents .row {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.jobcafe-voice__contents .row::after {
  position: absolute;
  bottom: -15px;
  left: 27px;
  content: "";
  width: 20px;
  height: 23px;
  background: url(../images/common/voice_bg_01.png) no-repeat;
  background-size: contain;
}
.jobcafe-voice__contents .row.--right::after {
  left: auto;
  right: 18px;
  background: url(../images/common/voice_bg_02.png) no-repeat;
  background-size: contain;
}
.jobcafe-voice__contents .row .comment {
  margin-bottom: 10px;
}
.jobcafe-voice__contents .row .commentator {
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}
.jobcafe-voice__contents .row + .row {
  margin-top: 30px;
}

.jobcafe-report p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
}
.jobcafe-report .c-button--more {
  margin: 0 auto;
}

/*
#jobcafe-steps {
    &__list {
        .c-button--more {
            width: 350px;
        }
    }
}*/
.uij-report p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .uij-report p {
    margin-bottom: 20px;
  }
}
.uij-report .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .uij-report .row {
    -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;
  }
}
.uij-report .c-button--more {
  margin: 0 auto;
}

.uij-subsidy p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .uij-subsidy p {
    margin-bottom: 20px;
  }
}
.uij-subsidy p strong {
  font-weight: 700;
  color: #E94738;
}
.uij-subsidy p .small {
  font-size: 2rem;
}
.uij-subsidy .c-button--more {
  margin: 0 auto;
}

#transition-guide .l-section__inner {
  width: 940px;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  #transition-guide .l-section__inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #transition-guide .l-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}
#transition-guide .p-main-guide__contents {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #transition-guide .p-main-guide__contents {
    width: 100%;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
}
#transition-guide .p-main-guide__contents .col h3 {
  white-space: nowrap;
  height: 66px;
}
@media screen and (max-width: 980px) {
  #transition-guide .p-main-guide__contents .col h3 {
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  #transition-guide .p-main-guide__contents .col h3 {
    height: auto;
  }
}

.corporate-document__inner {
  width: 740px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .corporate-document__inner {
    width: calc(100% - 40px);
    margin: 0 20px 40px;
    padding: 0;
  }
}
.corporate-document__inner .lead {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .corporate-document__inner .lead {
    font-size: 1.6rem;
  }
}
.corporate-document__inner .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .corporate-document__inner .row {
    -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;
    gap: 16px;
  }
}

.projinzai-recruitment__lead {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .projinzai-recruitment__lead {
    text-align: left;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
.projinzai-recruitment__contents {
  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;
  gap: 20px;
}
.projinzai-recruitment__contents h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
}
.projinzai-recruitment__contents .tel {
  display: block;
  padding-left: 27px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  position: relative;
}
.projinzai-recruitment__contents .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 28px;
  background: url(../images/common/icon_tel.svg) no-repeat;
  background-size: contain;
}
.projinzai-recruitment__contents .time {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.projinzai-recruitment__contents .document {
  width: 335px;
  margin: 40px auto 0;
}
.projinzai-recruitment__contents .document p {
  margin-bottom: 16px;
}

.projinzai-info p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .projinzai-info p {
    margin-bottom: 20px;
  }
}
.projinzai-info .c-button--more {
  margin: 0 auto;
}
.projinzai-info .add {
  display: block;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.foreign-recruitment.l-section {
  padding: 40px 0;
}
.foreign-recruitment__contents {
  width: 335px;
  margin: 0 auto;
}
.foreign-recruitment__contents p {
  margin-bottom: 16px;
}
.foreign-recruitment__contents .c-button--dl {
  display: block;
  width: 350px;
  height: 58px;
  text-align: center;
  line-height: 58px;
  color: #E94738;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  border: #E94738 solid 1px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .foreign-recruitment__contents .c-button--dl {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
}
.foreign-recruitment__contents .c-button--dl span {
  font-size: 1.8rem;
  font-weight: 700;
}
.foreign-recruitment__contents .c-button--dl::before {
  position: absolute;
  top: 50%;
  left: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 33px;
  background: url(../images/common/icon_excel.png) no-repeat;
  background-size: contain;
}
.foreign-recruitment__contents .c-button--dl::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url(../images/common/icon_dl.svg) no-repeat;
  background-size: contain;
}

.foreign-info p {
  text-align: center;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .foreign-info p {
    margin-bottom: 20px;
  }
}
.foreign-info .c-button--more {
  margin: 0 auto;
}

#foreign-event .row + .row {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  #foreign-event .row + .row {
    margin-top: 40px;
  }
}
#foreign-event .row h3 {
  color: #E94738;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #foreign-event .row h3 {
    margin-bottom: 20px;
  }
}

.p-sub-mv.foreign {
  height: auto;
  padding: 60px 0 68px;
}
@media screen and (max-width: 768px) {
  .p-sub-mv.foreign {
    padding: 0 0 40px 0;
  }
}
.p-sub-mv.foreign .p-sub-mv__contents {
  height: auto;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-sub-mv.foreign .p-sub-mv__contents {
    padding: 20px;
  }
}
.p-sub-mv.foreign .p-sub-mv__contents .box {
  width: 502px;
  margin: 0 auto;
  border: rgb(217, 217, 217) solid 1px;
  border-radius: 14px;
  padding: 32px;
  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 (max-width: 768px) {
  .p-sub-mv.foreign .p-sub-mv__contents .box {
    width: 100%;
    padding: 20px;
  }
}
.p-sub-mv.foreign .p-sub-mv__contents .box .c-heading2 {
  margin-bottom: 20px;
}
.p-sub-mv.foreign .p-sub-mv__contents .box h4 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.p-sub-mv.foreign .p-sub-mv__contents .box .tel {
  display: block;
  padding-left: 31px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.7;
  position: relative;
  margin-bottom: 10px;
}
.p-sub-mv.foreign .p-sub-mv__contents .box .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 29px;
  height: 38px;
  background: url(../images/common/icon_tel.svg) no-repeat;
  background-size: contain;
}
.p-sub-mv.foreign .p-sub-mv__contents .box .time {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-sub-mv.foreign .p-sub-mv__contents .box .c-button--more {
    max-width: 335px;
    width: 100%;
  }
}
.p-sub-mv.foreign .p-sub-mv__contents .box .faq {
  margin-top: 20px;
  text-align: center;
  color: #006CCC;
  text-decoration: underline;
}

.p-service.foreign .p-service__contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  gap: 20px;
}
.p-service.foreign .p-service__contents .col {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
  border: #E94738 solid 3px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-service.foreign .p-service__contents .col {
    padding: 20px;
    width: 100%;
    -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;
  }
}
.p-service.foreign .p-service__contents .col figure {
  width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-service.foreign .p-service__contents .col .text h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-service.foreign .p-service__contents .col .text h3 {
    text-align: center;
  }
}
.p-service.foreign .p-service__contents .col .text p {
  font-size: 1.9rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.p-service.foreign .p-service__contents .col .text .c-button--more {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .p-service.foreign .p-service__contents .col .text .c-button--more {
    max-width: 335px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-service.foreign .p-service__contents .col .text .c-button--more span {
    font-size: 1.6rem;
  }
}
.p-service.foreign .p-service__contents .col .text a + a {
  margin-top: 10px;
}

.school_official-seminar__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .school_official-seminar__contents {
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, auto);
  }
}
.school_official-seminar__contents .col {
  padding: 20px;
  border: #E94738 solid 1px;
  border-radius: 10px;
}
.school_official-seminar__contents .col h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}
.school_official-seminar__contents .col p {
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 450px) {
  #school_official-steps .c-button--dl {
    width: 65.556vw;
    height: 13.778vw;
  }
}
@media screen and (max-width: 450px) {
  #school_official-steps .c-button--dl::after {
    right: 5.333vw;
    width: 4.667vw;
    height: 4.889vw;
  }
}
@media screen and (max-width: 450px) {
  #school_official-steps .c-button--dl span {
    font-size: 3.556vw;
  }
}

.access-jobstation .l-section__inner {
  width: 960px;
  margin: 0 auto;
  padding: 60px 0;
  background: #fff;
  border: #E94738 solid 1px;
  border-radius: 14px;
}
@media screen and (max-width: 1000px) {
  .access-jobstation .l-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .access-jobstation .l-section__inner {
    padding: 30px 20px;
  }
}
.access-jobstation__lead {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .access-jobstation__lead {
    margin-bottom: 10px;
  }
}
.access-jobstation__contents {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents {
    width: 100%;
  }
}
.access-jobstation__contents .about {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents .about {
    margin-bottom: 10px;
  }
}
.access-jobstation__contents figure {
  width: 500px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.access-jobstation__contents dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents dl {
    grid-template-columns: 70px 1fr;
  }
}
.access-jobstation__contents dl dt {
  font-size: 1.8rem;
  color: #E94738;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents dl dt {
    font-size: 1.5rem;
  }
}
.access-jobstation__contents dl dd p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents dl dd p {
    font-size: 1.5rem;
  }
}
.access-jobstation__contents dl dd p a {
  color: #E94738;
  text-decoration: underline;
}
.access-jobstation__contents dl dd p + p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents dl dd p + p {
    margin-top: 16px;
  }
}
.access-jobstation__contents .map {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents .map {
    aspect-ratio: 335/250;
    position: relative;
  }
}
.access-jobstation__contents .map iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .access-jobstation__contents .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.access-satellite .l-section__inner {
  width: 1120px;
  padding: 40px;
  background: #fff;
}
@media screen and (max-width: 1160px) {
  .access-satellite .l-section__inner {
    width: 100%;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 20px;
  }
}
.access-satellite h2 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .access-satellite h2 {
    margin-bottom: 30px;
  }
}
.access-satellite__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .access-satellite__contents {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.access-satellite__contents .col {
  border: #E94738 solid 1px;
  border-radius: 14px;
  padding: 50px 25px;
}
@media screen and (max-width: 768px) {
  .access-satellite__contents .col {
    padding: 20px;
  }
}
.access-satellite__contents .col h3 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
  color: #E94738;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .access-satellite__contents .col h3 {
    margin-bottom: 20px;
  }
}
.access-satellite__contents .col dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .access-satellite__contents .col dl {
    grid-template-columns: 70px 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
}
.access-satellite__contents .col dl dt {
  font-size: 1.5rem;
  font-weight: 500;
  color: #E94738;
}
.access-satellite__contents .col dl dd {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
.access-satellite__contents .col .map {
  width: 100%;
  aspect-ratio: 490/300;
  position: relative;
}
.access-satellite__contents .col .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#page-contact .c-heading2 {
  margin: 80px auto 40px;
}

.contact-section {
  width: 100%;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}
.contact-section__inner {
  width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1020px) {
  .contact-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}
.contact-section__inner h3 {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}
.contact-section__content {
  width: 100%;
  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;
  padding: 33px 0;
  background: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 1020px) {
  .contact-section__content {
    padding: 33px 20px;
  }
}
.contact-section__content h4 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.contact-section__content .tel {
  display: block;
  padding-left: 31px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.7;
  position: relative;
  margin-bottom: 10px;
}
.contact-section__content .tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 29px;
  height: 38px;
  background: url(../images/common/icon_tel.svg) no-repeat;
  background-size: contain;
}
.contact-section__content .email {
  display: inline-block;
  padding-left: 37px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact-section__content .email {
    margin-bottom: 20px;
  }
}
.contact-section__content .email::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 24px;
  background: url(../images/common/icon_mail.svg) no-repeat;
  background-size: contain;
}
.contact-section__content .information {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-section__content .information {
    margin-bottom: 16px;
  }
}
.contact-section__content .row {
  width: 100%;
  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;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .contact-section__content .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.contact-section__content .row .col {
  width: 100%;
}
.contact-section__content .row .col .target {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.contact-section__content .tel_row2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  position: relative;
}
.contact-section__content .tel_row2 .tel_add {
  position: absolute;
  bottom: -25px;
  left: 41px;
  display: block;
  white-space: nowrap;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: -0.3em;
  margin-bottom: 10px;
}
.contact-section .contact-section__content + .contact-section__content {
  margin-top: 40px;
}

#page-contact .kyusyokusha {
  background: #F8FBF2;
}
#page-contact .school_official {
  background: #fff9ef;
}
#page-contact .kyusyokusha .contact-section__content {
  border: #1bbf55 solid 1px;
}
#page-contact .transition .contact-section__content {
  border: #006ccc solid 1px;
}
#page-contact .school_official .contact-section__content {
  border: #e29d2f solid 1px;
}
#page-contact .kyusyokusha h3 {
  color: #1bbf55;
}
#page-contact .jobcafe h4 {
  color: #1bbf55;
}
#page-contact .uij h4 {
  color: #9bc530;
}
#page-contact .transition h3,
#page-contact .transition h4 {
  color: #006CCC;
}
#page-contact .school_official h3 {
  color: #e29d2f;
}

.about .l-section__inner {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 0;
  border: #E94738 solid 1px;
  border-radius: 14px;
}
@media screen and (max-width: 1040px) {
  .about .l-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .l-section__inner {
    padding: 30px 20px;
  }
}
.about .bg_yellow {
  width: 100%;
  padding: 60px 0;
  background: #fffeef;
}
.about__contents {
  width: 840px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 920px) {
  .about__contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__contents {
    margin-bottom: 20px;
  }
}
.about__contents .col {
  width: 400px;
}
@media screen and (max-width: 920px) {
  .about__contents .col {
    width: 48vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .col {
    width: 43.2vw;
  }
}
.about__contents .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px;
  border: #E94738 solid 1px;
  border-radius: 20px;
}
@media screen and (max-width: 920px) {
  .about__contents .detail {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .detail {
    padding: 4.533vw 0 0 0;
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 76.267vw;
  }
}
.about__contents .detail figure {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
@media screen and (max-width: 920px) {
  .about__contents .detail figure {
    width: 17.5vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .detail figure {
    width: 29.6vw;
    margin-bottom: 2.667vw;
    margin-right: 0;
  }
}
.about__contents .detail .text h3 {
  color: #E94738;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .about__contents .detail .text h3 {
    font-size: 4.533vw;
    text-align: center;
    margin-bottom: 2.667vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .detail .text ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.about__contents .detail .text ul li {
  padding-left: 14px;
  position: relative;
  font-size: 1.2rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .about__contents .detail .text ul li {
    padding-left: 3.733vw;
    font-size: 2.667vw;
  }
}
.about__contents .detail .text ul li::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  content: "";
  width: 10px;
  height: 10px;
  background: #E94738;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .about__contents .detail .text ul li::before {
    top: 0.3em;
    width: 2.4vw;
    height: 2.4vw;
  }
}
.about__contents .arrow {
  width: 128px;
  height: 57px;
  background: #fff;
  border: #E94738 solid 1px;
  margin: 50px auto 24px;
  position: relative;
  z-index: 10;
}
.about__contents .arrow .bg {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: #E94738 solid 1px;
}
.about__contents .arrow .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  line-height: 1.4;
  color: #E94738;
  font-size: 1.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__contents .arrow .text {
    font-size: 4.533vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .arrow {
    width: 33.333vw;
    height: 16.533vw;
    margin: 8.533vw auto 2.4vw;
  }
}
.about__contents .arrow::after {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 55px;
  height: 133px;
  background: url(../images/home/about_arrow_up.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__contents .arrow::after {
    top: -8.533vw;
    width: 13.6vw;
    height: 33.067vw;
  }
}
.about__contents .station {
  width: 800px;
  height: 84px;
  text-align: center;
  line-height: 84px;
  font-size: 3.2rem;
  color: #E94738;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  background: #fffeef;
  border: #E94738 solid 2.3px;
  border-radius: 20px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 840px) {
  .about__contents .station {
    width: 100%;
    height: 10.5vw;
    line-height: 10.5vw;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .station {
    width: 100%;
    height: 13.867vw;
    line-height: 13.867vw;
    font-size: 4.867vw;
  }
}
.about__contents .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .about__contents .upper {
    gap: 2vw;
  }
}
.about__contents .lower .col {
  width: 305px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .col {
    width: 43.2vw;
  }
}
.about__contents .lower .col .detail {
  width: 100%;
  height: 198px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .col .detail {
    height: 47.2vw;
  }
}
.about__contents .lower .col .detail figure {
  width: 118px;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .col .detail figure {
    width: 29.6vw;
  }
}
.about__contents .lower .col .detail h3 {
  font-size: 2.1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .col .detail h3 {
    font-size: 4.533vw;
  }
}
.about__contents .lower .arrow {
  width: 180px;
  height: 57px;
  padding-top: 0;
  margin: 33px auto 41px;
  position: relative;
  z-index: 10;
}
.about__contents .lower .arrow .bg {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: #E94738 solid 1px;
}
.about__contents .lower .arrow .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  line-height: 1.4;
  color: #E94738;
  font-size: 1.8rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .arrow .text {
    font-size: 4.533vw;
  }
}
@media screen and (max-width: 768px) {
  .about__contents .lower .arrow {
    width: 46.933vw;
    height: 11.2vw;
    margin: 2.667vw auto 8.8vw;
  }
}
.about__contents .lower .arrow::after {
  top: -33px;
  background: url(../images/home/about_arrow_down.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__contents .lower .arrow::after {
    top: auto;
    bottom: -8.9vw;
  }
}
.about__lead p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .about__lead p {
    text-align: left;
  }
}

/* post layout */
.l-archive-section {
  width: 100%;
}
.l-archive-section__inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .l-archive-section__inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-archive-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}

.l-post-section {
  width: 100%;
}
.l-post-section__inner {
  width: 1040px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .l-post-section__inner {
    width: 100%;
    padding: 0 20px;
    gap: 3.846vw;
  }
}
@media screen and (max-width: 768px) {
  .l-post-section__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
.l-post-section__main {
  width: 740px;
}
@media screen and (max-width: 1080px) {
  .l-post-section__main {
    width: 71.154vw;
  }
}
@media screen and (max-width: 768px) {
  .l-post-section__main {
    width: 100%;
  }
}
.l-post-section__side {
  background: #fff;
  width: calc(100% - 740px - 40px);
}
@media screen and (max-width: 1080px) {
  .l-post-section__side {
    width: calc(100% - 71.154vw - 3.846vw);
  }
}
@media screen and (max-width: 768px) {
  .l-post-section__side {
    width: 100%;
  }
}

/* archive */
.page-archive-event {
  background: #ededed;
  padding: 40px 0 80px;
}
.page-archive-event .breadcrumb {
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .page-archive-event .breadcrumb {
    margin: 0 20px 40px;
  }
}

.page-archive-blog {
  background: #ededed;
  padding: 40px 0 80px;
}
.page-archive-blog .breadcrumb {
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .page-archive-blog .breadcrumb {
    margin: 0 20px 40px;
  }
}

.page-archive-news {
  background: #ededed;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .page-archive-news {
    padding: 40px 0;
  }
}

.category-filter {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .category-filter {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .category-filter {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-filter .radio-btn {
  display: inline-block;
  cursor: pointer;
}
.category-filter .radio-btn input[type=radio] {
  display: none;
  /* ラジオボタンを非表示 */
}
.category-filter .radio-btn span {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background: #A5A5A5;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 500px) {
  .category-filter .radio-btn span {
    font-size: max(2.8vw, 12px);
  }
}
.category-filter .radio-btn input[type=radio]:checked + span {
  color: #fff;
  background: #E94738;
}
.category-filter .radio-btn input[type=radio]:checked + span::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-width: 10px 10px 0 10px;
  border-color: #E94738 transparent transparent transparent;
  border-style: solid;
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media screen and (max-width: 768px) {
  .archive-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .archive-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.archive-list li a {
  display: block;
}
.archive-list li a figure {
  width: 100%;
}
.archive-list li a figure img {
  width: 100%;
  height: auto;
}
.archive-list li a .row {
  padding: 16px 16px 25px 16px;
  background: #fff;
}
.archive-list li a .row .category {
  display: inline-block;
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 6px 16px;
  border: #E94738 solid 1px;
  border-radius: 8px;
  margin-right: 5px;
  margin-bottom: 10px;
}
.archive-list li a .row .date {
  display: block;
  color: #444;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.no-entry {
  text-align: center;
}

.archive-news__contents {
  width: 100%;
  background: #fff;
  padding: 120px 105px;
}
@media screen and (max-width: 768px) {
  .archive-news__contents {
    padding: 40px 20px;
  }
}

.page-taxonomy-event {
  background: #ededed;
  padding: 40px 0 80px;
}
.page-taxonomy-event .breadcrumb {
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .page-taxonomy-event .breadcrumb {
    margin: 0 20px 40px;
  }
}
.page-taxonomy-event .child-category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 23px;
  border-bottom: #444444 dotted 1px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page-taxonomy-event .child-category-filter {
    margin-bottom: 30px;
  }
}
.page-taxonomy-event .child-category-filter__label {
  width: 138px;
  height: 26px;
  background: url(../images/common/taxonomy_label_bg.png) no-repeat;
  background-size: contain;
  margin-bottom: 7px;
}
.page-taxonomy-event .child-category-filter__label span {
  display: block;
  text-align: left;
  padding-left: 15px;
  color: #fff;
  line-height: 26px;
  font-size: 1.4rem;
  font-family: "M PLUS 1p", sans-serif;
}
.page-taxonomy-event .child-category-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.page-taxonomy-event .child-category-filter__list li a {
  display: block;
  width: 250px;
  height: 40px;
  background: #fff;
  line-height: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-family: "M PLUS 1p", sans-serif;
  position: relative;
}
.page-taxonomy-event .child-category-filter__list li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  width: 8px;
  height: 8px;
  border-top: #E94738 solid 1px;
  border-right: #E94738 solid 1px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.page-taxonomy-event .child-category-filter__link {
  display: block;
  color: #006CCC;
  font-size: 1.4rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-taxonomy-event .child-category-filter__link {
    display: none;
  }
}

.page-taxonomy-blog {
  background: #ededed;
  padding: 40px 0 80px;
}
.page-taxonomy-blog .breadcrumb {
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .page-taxonomy-blog .breadcrumb {
    margin: 0 20px 40px;
  }
}

.archive-news-list li {
  border-bottom: #A5A5A5 solid 1px;
}
.archive-news-list li a {
  display: block;
  width: 100%;
  color: #444;
  position: relative;
}
.archive-news-list li a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "";
  width: 14px;
  height: 14px;
  border-top: #E94738 solid 2px;
  border-right: #E94738 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.archive-news-list li a .date {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.archive-news-list li a .title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  padding-right: 1em;
  margin-bottom: 10px;
}
.archive-news-list li + li {
  margin-top: 40px;
}

/* post */
.breadcrumb {
  width: 1040px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1080px) {
  .breadcrumb {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    width: calc(100% - 40px);
    margin: 0 20px 40px;
    padding: 0;
  }
}
.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .breadcrumb ol {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.breadcrumb ol li {
  color: #A5A5A5;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb ol li {
    line-height: 1.6;
  }
}
.breadcrumb ol li a {
  position: relative;
  padding-right: 1em;
  color: #006CCC;
}
.breadcrumb ol li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #a5a5a5 solid 1px;
  border-right: #a5a5a5 solid 1px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.breadcrumb ol li + li {
  margin-left: 1em;
}

.page-post-event {
  background: #ededed;
  padding: 40px 0 80px;
  color: #444;
}

.page-post-blog {
  background: #ededed;
  padding: 40px 0 80px;
  color: #444;
}

.page-post-news {
  background: #ededed;
  padding: 40px 0 80px;
  color: #444;
}

.post-entry__inner {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .post-entry__inner {
    padding: 20px;
  }
}
.post-entry__thumb {
  width: 100%;
  margin-bottom: 30px;
}
.post-entry__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-entry__head .category {
  display: inline-block;
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 6px 16px;
  border: #E94738 solid 1px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-right: 5px;
}
.post-entry__head .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.post-entry__head .row .date {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
}
.post-entry__head .row .date span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
.post-entry__head .row .title {
  margin-top: 0;
  color: #E94738;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.post-entry h1 {
  color: #E94738;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-entry h2 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: #E94738 solid 1px;
}
@media screen and (max-width: 768px) {
  .post-entry h2 {
    margin-bottom: 10px;
  }
}
.post-entry h3 {
  color: #444;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-entry h4 {
  color: #444;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.post-entry p {
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
.post-entry ul li {
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2em;
}
.post-entry ul li::after {
  position: absolute;
  top: 0.5em;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: #E94738;
  border-radius: 50%;
}
.post-entry blockquote {
  padding-left: 24px;
  border-left: #E94738 solid 1px;
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
.post-entry a {
  color: #006CCC;
  text-decoration: underline;
}
.post-entry b {
  font-weight: 700;
}
.post-entry p + h1,
.post-entry p + h2,
.post-entry p + h3,
.post-entry p + h4,
.post-entry ul + h1,
.post-entry ul + h2,
.post-entry ul + h3,
.post-entry ul + h4,
.post-entry p + ul,
.post-entry ul + p,
.post-entry p + p {
  margin-top: 30px;
}
.post-entry * + blockquote {
  margin-top: 30px;
}
.post-entry .has-site-color-color {
  color: #E94738;
}
.post-entry .has-soft-blue-color {
  color: #006CCC;
}
.post-entry {
  /* custum field */
}
.post-entry .detail-inner .detail-title {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: #E94738 solid 1px;
}
@media screen and (max-width: 768px) {
  .post-entry .detail-inner .detail-title {
    margin-bottom: 10px;
  }
}
.post-entry .detail-inner .detail-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 30px;
}
.post-entry .detail-inner .detail-text a {
  color: #006CCC;
  text-decoration: underline;
}

.sidebar {
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  .sidebar {
    padding: 20px;
  }
}
.sidebar h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  padding: 14px 0;
  text-align: center;
  background: #E94738;
  margin-bottom: 20px;
}
.sidebar .side-archive-list {
  margin-bottom: 40px;
}
.sidebar .side-archive-list li a {
  display: block;
}
.sidebar .side-archive-list li a figure {
  width: 100%;
}
.sidebar .side-archive-list li a figure img {
  width: 100%;
  height: auto;
}
.sidebar .side-archive-list li a .row {
  padding: 10px 0 0 0;
  background: #fff;
}
.sidebar .side-archive-list li a .row .category {
  display: inline-block;
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 6px 16px;
  border: #E94738 solid 1px;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-right: 5px;
}
.sidebar .side-archive-list li a .row .date {
  display: block;
  color: #444;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.sidebar .side-archive-list li a .row .title {
  color: #444;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.sidebar .side-archive-list li + li {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .sidebar .side-archive-list li + li {
    margin-top: 20px;
  }
}
.sidebar .side-category-list {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sidebar .side-category-list li a {
  display: inline-block;
  color: #E94738;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  padding: 6px 16px;
  border: #E94738 solid 1px;
  border-radius: 8px;
}
.sidebar .side-category-list li + li {
  margin-top: 10px;
}
.sidebar .side-category-list .children {
  margin-top: 10px;
}

/* taxonomy */
.c-heading2--tax {
  font-size: 2.8rem;
  color: #E94738;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* single-pagenavi */
.single-navigation {
  margin: 40px 15px 0 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .single-navigation {
    margin-top: 20px;
    text-align: center;
  }
}

.single-navigation .nav-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 120px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .single-navigation .nav-inner {
    gap: 40px;
  }
}

.single-navigation a,
.single-navigation span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #444;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .single-navigation a,
  .single-navigation span {
    font-size: 1.6rem;
  }
}

.nav-prev {
  padding-left: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-prev {
    padding-left: 1em;
  }
}

.nav-prev::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: #444 solid 2px;
  border-left: #444 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.nav-prev.disabled::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: #aaa solid 2px;
  border-left: #aaa solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.nav-next {
  padding-right: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .nav-next {
    padding-right: 1em;
  }
}

.nav-next::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #444 solid 2px;
  border-right: #444 solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.nav-next.disabled::before {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 9px;
  height: 9px;
  border-top: #aaa solid 2px;
  border-right: #aaa solid 2px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.single-navigation a:hover {
  background-color: #f0f0f0;
}

.single-navigation .disabled {
  color: #aaa;
  cursor: default;
}

/* archive-pagenavi */
.archive-pagination {
  margin: 3em 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive-pagination {
    margin-top: 20px;
  }
}

.wp-pagenavi {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 8px 14px;
  color: #444;
  text-decoration: none;
  font-size: 1.8rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.wp-pagenavi .current {
  color: #E94738;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  overflow: hidden;
  text-indent: -9999px;
  /* テキストを画面外に押し出して非表示 */
}

.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  z-index: 1;
}

.wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  z-index: 1;
}

.l-page-section {
  width: 100%;
}
.l-page-section__inner {
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .l-page-section__inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-page-section__inner {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 0;
  }
}

.page-default {
  background: #ededed;
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  .page-default {
    padding: 30px 0 40px;
  }
}
.page-default__contents {
  width: 100%;
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .page-default__contents {
    padding: 40px 20px;
  }
}
.page-default__contents h1 {
  color: #E94738;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-default__contents h2 {
  color: #444;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-default__contents h3 {
  color: #444;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-default__contents h4 {
  color: #444;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-default__contents p {
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
.page-default__contents ul li {
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  padding-left: 1.2em;
}
.page-default__contents ul li::after {
  position: absolute;
  top: 0.5em;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: #E94738;
  border-radius: 50%;
}
.page-default__contents blockquote {
  padding-left: 24px;
  border-left: #E94738 solid 1px;
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}
.page-default__contents a {
  color: #006CCC;
  text-decoration: underline;
}
.page-default__contents b {
  font-weight: 700;
}
.page-default__contents p + h1,
.page-default__contents p + h2,
.page-default__contents p + h3,
.page-default__contents p + h4,
.page-default__contents ul + h1,
.page-default__contents ul + h2,
.page-default__contents ul + h3,
.page-default__contents ul + h4,
.page-default__contents p + ul,
.page-default__contents ul + p,
.page-default__contents p + p {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .page-default__contents p + h1,
  .page-default__contents p + h2,
  .page-default__contents p + h3,
  .page-default__contents p + h4,
  .page-default__contents ul + h1,
  .page-default__contents ul + h2,
  .page-default__contents ul + h3,
  .page-default__contents ul + h4,
  .page-default__contents p + ul,
  .page-default__contents ul + p,
  .page-default__contents p + p {
    margin-top: 20px;
  }
}
.page-default__contents * + blockquote {
  margin-top: 30px;
}
.page-default__contents .has-site-color-color {
  color: #E94738;
}
.page-default__contents .has-soft-blue-color {
  color: #006CCC;
}

.page-simple-01 .page-title {
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.4px;
  text-transform: capitalize;
  padding-bottom: 40px;
  border-bottom: 1px solid #E94738;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page-simple-01 .page-title {
    font-size: 2.4rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.page-simple-01.page-default__contents {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page-simple-01.page-default__contents {
    padding-bottom: 100px;
  }
}
.page-simple-01 p {
  font-size: 1.8rem;
}

.page-404 {
  width: 100%;
  padding: 120px 0 160px;
}
@media screen and (max-width: 768px) {
  .page-404 {
    padding: 60px 0 80px;
  }
}
.page-404 .l-section__inner {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.page-404 .logo {
  display: block;
  width: 120px;
  margin: 0 auto;
}
.page-404 h2 {
  text-align: center;
  color: #E94738;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-404 h2 {
    font-size: 2rem;
  }
}
.page-404 p {
  font-weight: 500;
  text-align: center;
}
.page-404 .c-button--more {
  margin: 0 auto;
}