@charset "UTF-8";
/* Scss Document */
:root {
  --main-color: #00C750;
  --black: #000;
  --sub-font: "Montserrat", sans-serif;
}

/* Scss Document */
/* Scss Document */
/* -------------------------------------------------- */
/* file   : base.css                                  */
/* update : 2024                                      */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* reset */
/* -------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

input,
textarea,
button,
select {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "M PLUS 1", sans-serif;
  font-size: 15px;
  color: #000;
  line-height: 2;
  font-weight: 500;
}

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

/* font */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
@media print, screen and (min-width: 560px) and (max-width: 1080px) {
  /* ---------------------tablet END----------------------------- */
}
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  body {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
  }
  input,
  textarea,
  button,
  select {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
  }
  /* -------------------------------------------------- */
}
/* -------------------------------------------------- */
/* 全デバイス共通(PC向け) */
/* --------------------------------------------------- */
/* body */
/* -------------------------------------------------- */
img, svg {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  line-height: 1;
}

/* link */
/* -------------------------------------------------- */
a {
  color: #000;
}
a:link {
  text-decoration: none;
  word-break: break-all;
}
a:visited {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ---------------全デバイス共通--------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

/* ---------------全デバイス共通(sp)--------------------- */
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .pc-inline {
    display: none;
  }
  .sp-inline {
    display: inline;
  }
}
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2024                                      */
/* -------------------------------------------------- */
/*============================
    CMSエディタ用CSS
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.post-style strong,
.post-style b {
  font-weight: bold;
}
.post-style em {
  font-style: italic;
}
.post-style h1,
.post-style h2,
.post-style h3,
.post-style h4,
.post-style h5,
.post-style h6 {
  font-weight: bold;
}
.post-style h1 {
  font-size: 24px;
}
.post-style h2 {
  font-size: 22px;
}
.post-style h3 {
  font-size: 20px;
}
.post-style h4 {
  font-size: 18px;
}
.post-style h5 {
  font-size: 16px;
}
.post-style h6 {
  font-size: 14px;
}
.post-style a {
  text-decoration: underline;
  color: var(--main-color);
}
@media screen and (min-width: 750px) {
  .post-style a:hover {
    text-decoration: none;
  }
}

/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .post-style h1 {
    font-size: 20px;
  }
  .post-style h2 {
    font-size: 18px;
  }
  .post-style h3 {
    font-size: 16px;
  }
  .post-style h4 {
    font-size: 14px;
  }
  .post-style h5 {
    font-size: 12px;
  }
  .post-style h6 {
    font-size: 10px;
  }
}
/* -------------------sp END------------------------------- */
/*　フィード
----------------------------------------------- */
.view01,
.view02,
.view03,
.view04,
.view05 {
  opacity: 0;
}

.view01 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view01.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view02 {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view02.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view03 {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view03.view-on {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view04 {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view04.view-on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.view05 {
  position: relative;
  opacity: 0;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.view05.view-on {
  opacity: 1;
  -webkit-transition: all 750ms ease;
  transition: all 750ms ease;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2024                                      */
/* -------------------------------------------------- */
/*============================
    header
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.header {
  padding: 35px 0;
  background: var(--main-color);
}

.header-inner {
  padding: 0 20px;
  position: relative;
}

.header-logo {
  width: 200px;
  padding: 20px 0 19px;
  text-align: center;
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  background: #FFF;
  border-radius: 0 0 20px 20px;
}
@media screen and (min-width: 750px) {
  .header-logo a:hover img {
    opacity: 1;
  }
}

.header-navi {
  padding-right: 104px;
}

.header-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: 0 50px;
}

.header-menu__item a {
  font-family: var(--sub-font);
  font-size: 20px;
  font-weight: 600;
  color: #FFF;
  display: inline-block;
  position: relative;
}
.header-menu__item a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background-color: #FFF;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .header-menu__item a:hover::after {
    width: 100%;
  }
}

.header-menu__item--center {
  width: 200px;
}

.lesson-btn {
  width: 210px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.lesson-btn a {
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #FFF;
  background: #FFA600;
  border-radius: 25px;
  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: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .lesson-btn a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.lesson-btn .plus {
  width: 15px;
  height: 15px;
  position: relative;
}
.lesson-btn .plus::before, .lesson-btn .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lesson-btn .plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.header-btn {
  display: none;
}

/* -------------------pc END------------------------------- */
@media screen and (max-width: 1220px) {
  .header {
    padding: 12px 0;
  }
  .header-inner {
    padding: 0 40px 0 10px;
    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: 0 28px;
  }
  .header-logo {
    width: 130px;
    padding: 10px 23px 9px;
    top: -12px;
  }
  .header-navi {
    padding-right: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    overflow-y: auto;
  }
  .header-navi .footer-sns {
    margin-top: 45px;
  }
  .header-navi__inner {
    padding: 90px 40px 45px;
  }
  .header-menu {
    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;
    gap: 35px 0;
  }
  .header-menu__item a {
    font-size: 25px;
    line-height: 1.4;
  }
  .header-menu__item--center {
    display: none;
  }
  .lesson-btn {
    width: 160px;
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .lesson-btn a {
    padding: 10px 5px;
    font-size: 10px;
    border-radius: 18px;
    gap: 0 10px;
  }
  .lesson-btn .plus {
    width: 10px;
    height: 10px;
  }
  .lesson-btn .plus::before, .lesson-btn .plus::after {
    width: 10px;
    height: 1px;
  }
  .header-btn {
    width: 30px;
    height: 26px;
    position: relative;
    z-index: 13;
    display: block;
  }
  .menu-trigger {
    display: block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span {
    background: #FFF;
  }
  .menu-trigger.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }
  .lesson-btn-sp01 {
    width: 100%;
    margin-top: 50px;
  }
  .lesson-btn-sp01 a {
    padding: 21px 7px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--main-color);
    background: #FFF;
    border-radius: 35px;
    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;
    position: relative;
  }
  .lesson-btn-sp01 .plus {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .lesson-btn-sp01 .plus::before, .lesson-btn-sp01 .plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--main-color);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .lesson-btn-sp01 .plus::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .lesson-btn-sp02 {
    width: 100%;
    margin-top: 20px;
  }
  .lesson-btn-sp02 a {
    padding: 7px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFF;
    background: #FFA600;
    border-radius: 35px;
    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;
    position: relative;
  }
  .lesson-btn-sp02 .plus {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .lesson-btn-sp02 .plus::before, .lesson-btn-sp02 .plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: #FFF;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .lesson-btn-sp02 .plus::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .header-inner {
    padding: 0 20px 0 10px;
    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: 0 28px;
  }
  .header-logo {
    width: 100px;
    padding: 10px 23px 9px;
    top: -12px;
    left: 10px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    border-radius: 0 0 10px 10px;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2022                                      */
/* -------------------------------------------------- */
/*============================
    footer
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
.footer {
  padding: 80px 0 86px;
  color: #FFF;
  background: var(--main-color);
}

.footer-inner {
  max-width: 1282px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-l {
  max-width: 520px;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer-logo {
  line-height: 1;
}

.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
}

.footer-copy {
  font-size: 12px;
  margin-top: 23px;
  font-weight: 700;
}

.footer-contact {
  width: 420px;
}
.footer-contact a {
  padding: 26px 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
  background: #FFF;
  border-radius: 50px;
  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: 0 10px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 750px) {
  .footer-contact a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.footer-contact .plus {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 46px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-contact .plus::before, .footer-contact .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: var(--main-color);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer-contact .plus::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/* -------------------pc END------------------------------- */
@media screen and (max-width: 980px) {
  .footer-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .footer {
    padding: 30px 0 50px;
  }
  .footer-inner {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 42px 0;
  }
  .footer-l {
    max-width: 100%;
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-logo {
    width: 215px;
    margin: 42px auto 0;
    line-height: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-sns__item:first-child {
    width: 32px;
  }
  .footer-sns__item:nth-child(2) {
    width: 30px;
  }
  .footer-sns__item:nth-child(3) {
    width: 29px;
  }
  .footer-copy {
    font-size: 9px;
    margin-top: 12px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    text-align: center;
  }
  .footer-r {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-contact {
    width: 294px;
    margin-inline: auto;
  }
  .footer-contact a {
    padding: 20px 10px;
    font-size: 20px;
    border-radius: 35px;
  }
  .footer-contact .plus {
    width: 20px;
    height: 20px;
    left: 40px;
  }
  .footer-contact .plus::before, .footer-contact .plus::after {
    width: 20px;
    height: 2px;
  }
}
/* -------------------sp END------------------------------- */
/* -------------------------------------------------- */
/* file   : common.css                                */
/* update : 2024                                      */
/* -------------------------------------------------- */
/*============================
    共通パーツ
  ============================*/
/* -------------------------------------------------- */
/* pc向け */
/* --------------------------------------------------- */
body.js-on {
  overflow: hidden;
}

#container {
  overflow: hidden;
}

.inner {
  max-width: 1040px;
  margin-inline: auto;
  padding: 0 20px;
}

#breadCrumb {
  margin-bottom: 90px;
  padding: 9px 60px;
}
#breadCrumb li {
  margin-right: 7px;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.5;
}
#breadCrumb li a {
  margin-right: 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.5;
  display: inline-block;
}

.page-mv {
  position: relative;
}

.page-mv__inner {
  max-width: 1040px;
  height: 300px;
  padding: 0 20px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-mv__gp {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.page-mv__ttl {
  font-family: var(--sub-font);
  font-size: 70px;
  font-weight: 700;
  line-height: 1.14;
}

.page-mv__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

.page-mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------------pc END------------------------------- */
/* -------------------------------------------------- */
/* tablet向け */
/* --------------------------------------------------- */
/* ---------------------tablet END----------------------------- */
/* -------------------------------------------------- */
/* sp向け */
/* --------------------------------------------------- */
@media screen and (max-width: 750px) {
  .inner {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  #breadCrumb {
    display: none;
  }
  .page-mv__inner {
    height: 200px;
    padding: 0 20px;
  }
  .page-mv__ttl {
    font-size: 35px;
  }
  .page-mv__text {
    font-size: 14px;
  }
}
/* -------------------sp END------------------------------- */