@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* Add Reset
---------------------------------------------- */
ul {
  list-style: none;
}

/* For Link
---------------------------------------------- */
a, a:active, a:visited, a:focus, a:hover {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #606060;
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

/* For input
---------------------------------------------- */
input, select, textarea {
  outline: none;
}

textarea {
  resize: none;
}

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

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

.ie8 img {
  width: auto;
}

/* clearfix
---------------------------------------------- */
/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
  zoom: 1;
}

/* Boxsizing
---------------------------------------------- */
* {
  box-sizing: border-box;
}

/* Frame
---------------------------------------------- */
html {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'メイリオ', 'Meiryo','ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',  'ＭＳ Ｐゴシック','MS P Gothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  width: 100%;
  color: #606060;
  background: #fff;
}

/* ==========================================================================
Layout
========================================================================== */
.l-wrapper {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-wrapper {
    position: relative;
    padding: 62px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-wrapper {
    position: relative;
    padding: 62px 0 0 0;
  }
}

.l-header {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
  }
}

@media only screen and (max-width: 767px) {
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 10;
  }
}

.l-header__inner {
  max-width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-header__inner {
    padding: 24px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__inner {
    display: block;
    text-align: center;
    position: relative;
    padding: 12px 12px 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__inner {
    display: block;
    text-align: center;
    position: relative;
    padding: 12px 12px 0;
  }
}

.l-header__logo {
  margin: 6px 32px 0 0;
  line-height: 1.0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__logo {
    margin: 10px 0 24px 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__logo {
    margin: 10px 0 24px 0;
  }
}

.l-header__logo img {
  width: 280px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-header__logo img {
    width: 270px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__logo img {
    width: 240px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__logo img {
    width: 200px;
  }
}

.l-header__spnav {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__spnav {
    text-align: left;
    display: block;
    position: absolute;
    top: 12px;
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__spnav {
    transform: scale(0.7);
    text-align: left;
    display: block;
    position: absolute;
    top: 14px;
    right: 12px;
  }
}

.l-header__menu {
  position: relative;
  top: 10px;
}

.l-header__menu .menu__icon {
  width: 30px;
  height: 20px;
  position: relative;
}

.l-header__menu .menu__line {
  position: absolute;
  left: 0;
  background-color: #000;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  pointer-events: none;
}

.l-header__menu .menu__line--1 {
  top: 0;
}

.l-header__menu .menu__line--2 {
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-header__menu .menu__line--3 {
  bottom: 0;
}

.l-header__menu .menu__line--1 {
  transition: transform .3s ease-in-out,  top .2s ease-in-out .3s;
}

.l-header__menu .menu__line--1:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 3px;
  transition: transform .1s ease-in-out .2s;
}

.l-header__menu .menu__line--2 {
  transition: opacity .0s ease-in-out .3s;
}

.l-header__menu .menu__line--3 {
  transition: opacity .0s ease-in-out .3s,  bottom .2s ease-in-out .3s;
}

.l-header__menu.open .menu__line--1 {
  top: 8.5px;
  transform: rotate(135deg);
  transition: top .3s ease-in-out,  transform .3s linear .3s;
}

.l-header__menu.open .menu__line--1:before {
  transform: rotate(90deg);
  transition: transform .1s ease-in-out .3s;
}

.l-header__menu.open .menu__line--2 {
  opacity: 0;
  transition: opacity .0s ease-in-out .3s;
}

.l-header__menu.open .menu__line--3 {
  bottom: 8.5px;
  opacity: 0;
  transition: bottom .3s ease-in-out,  opacity .0s ease-in-out .3s;
}

.l-header__spgroup {
  flex-grow: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__spgroup {
    display: none;
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__spgroup {
    display: none;
    flex-basis: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .l-header__spgroup {
    display: block !important;
  }
}

.l-header__spgroup-inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__spgroup-inner {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__spgroup-inner {
    display: block;
  }
}

.l-header__nav {
  margin: 2px 0 0 0;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-header__nav {
    margin: 1px 0 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__nav {
    margin: 0;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__nav {
    margin: 0;
    text-align: center;
  }
}

.l-header__nav li {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.0;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 16px 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__nav li {
    display: block;
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__nav li {
    display: block;
    margin: 0;
  }
}

.l-header__nav li a {
  color: #000;
  transition: color 0.2s ease-in-out;
}

.l-header__nav li a:hover {
  color: #ef0000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__nav li a {
    display: block;
    padding: 8px 12px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__nav li a {
    display: block;
    padding: 8px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__social {
    text-align: center;
    padding: 12px 0 32px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__social {
    text-align: center;
    padding: 12px 0 32px;
  }
}

.l-header__social li {
  display: inline-block;
  margin: 0 0 0 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-header__social li {
    margin: 0 4px;
  }
}

@media only screen and (max-width: 767px) {
  .l-header__social li {
    margin: 0 4px;
  }
}

.l-footer {
  width: 100%;
  background-color: #000;
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__inner {
    padding: 24px 12px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__inner {
    padding: 24px 12px;
  }
}

.l-footer__nav {
  text-align: center;
  margin: 0 0 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__nav {
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__nav {
    margin: 0 0 20px;
  }
}

.l-footer__nav li {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 12px;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__nav li {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 12px 8px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__nav li {
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0 12px 8px;
  }
}

.l-footer__nav li a {
  color: #606060;
  transition: color 0.2s ease-in-out;
}

.l-footer__nav li a:hover {
  color: #ef0000;
}

.l-footer__social {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__social {
    display: block;
    text-align: center;
    margin: 0 0 24px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__social {
    display: block;
    text-align: center;
    margin: 0 0 24px;
  }
}

.l-footer__social li {
  display: inline-block;
  margin: 0 8px;
}

.l-footer__logo {
  position: absolute;
  top: 44px;
  right: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-footer__logo {
    right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__logo {
    position: static;
    text-align: center;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__logo {
    position: static;
    text-align: center;
    margin: 0 0 20px;
  }
}

.l-footer__copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: #606060;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-footer__copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.l-sidebar__block {
  margin: 0 0 36px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-sidebar__block {
    margin: 0 0 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-sidebar__block {
    margin: 0 0 28px;
  }
}

@media only screen and (max-width: 767px) {
  .l-sidebar__block {
    margin: 0 0 24px;
  }
}

.l-sidebar__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #ef0000;
  margin: 0 0 0.8em;
}

@media only screen and (max-width: 767px) {
  .l-sidebar__heading {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.l-sidebar__link {
  padding-left: 1.4em;
}

.l-sidebar__link li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.4em;
  list-style-type: disc;
}

@media only screen and (max-width: 767px) {
  .l-sidebar__link li {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.l-sidebar__link a {
  color: #000;
  transition: color 0.2s ease-in-out;
}

.l-sidebar__link a:hover {
  color: #ef0000;
}

.l-contents {
  margin: 60px auto 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-contents {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-contents {
    padding: 0 20px;
    margin: 40px auto 60px;
  }
}

@media only screen and (max-width: 767px) {
  .l-contents {
    margin: 20px auto 40px;
    padding: 0 12px;
  }
}

.l-contents__home {
  max-width: 1080px;
}

.l-contents__page--narrow {
  max-width: 680px;
}

.l-contents__page--wide {
  max-width: 1080px;
}

.l-contents__news-wrapper {
  max-width: 1080px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .l-contents__news-wrapper {
    display: block;
  }
}

.l-contents__news-main {
  flex-basis: 700px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-contents__news-main {
    flex-basis: 65%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-contents__news-main {
    flex-basis: 65%;
  }
}

@media only screen and (max-width: 767px) {
  .l-contents__news-main {
    width: 100%;
    margin-bottom: 60px;
  }
}

.l-contents__news-side {
  flex-basis: 320px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .l-contents__news-side {
    flex-basis: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .l-contents__news-side {
    flex-basis: 30%;
  }
}

@media only screen and (max-width: 767px) {
  .l-contents__news-side {
    width: 100%;
  }
}

/* ==========================================================================
Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
.c-page-hero {
  background-image: url(../images/page_hero.jpg);
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 400px;
  position: relative;
}
.c-page-hero.page_hero_ourstory {
	background-image: url("../images/page_hero_ourstory.jpg");
}
.c-page-hero.page_hero_locations {
	background-image: url("../images/page_hero_locations.jpg");
}
.c-page-hero.page_hero_movie {
	background-image: url("../images/page_hero_movie.jpg");
}
.c-page-hero.page_hero_school {
	background-image: url("../images/page_hero_school.jpg");
}
.c-page-hero.page_hero_news {
	background-image: url("../images/page_hero_news.jpg");
}
.c-page-hero.page_hero_company,
.c-page-hero.page_hero_contact,
.c-page-hero.page_hero_contact-form,
.c-page-hero.page_hero_privacypolicy {
	background-image: url("../images/page_hero_contact.jpg");
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .c-page-hero {
    height: 360px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-page-hero {
    height: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .c-page-hero {
    height: 160px;
  }
}

.c-page-hero__inner {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1.0;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin: 0.2em 0;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .c-page-hero__title {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-page-hero__title {
    font-size: 48px;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-page-hero__title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.c-page-hero__subtitle {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .c-page-hero__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-page-hero__subtitle {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media only screen and (max-width: 767px) {
  .c-page-hero__subtitle {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-news-article__block {
  border-bottom: 1px solid #ccc;
  margin: 0 0 40px;
  padding: 0 0 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .c-news-article__block {
    margin: 0 0 36px;
    padding: 0 0 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-news-article__block {
    margin: 0 0 32px;
    padding: 0 0 32px;
  }
}

@media only screen and (max-width: 767px) {
  .c-news-article__block {
    margin: 0 0 28px;
    padding: 0 0 28px;
  }
}

.c-news-article__meta {
  margin: 0 0 8px 0;
}

@media only screen and (max-width: 767px) {
  .c-news-article__meta {
    margin: 0 0 6px 0;
  }
}

.c-news-article__meta li {
  font-size: 12px;
  font-size: 0.75rem;
  list-style-type: none;
  display: inline-block;
  margin: 0 8px 0;
}

@media only screen and (max-width: 767px) {
  .c-news-article__meta li {
    font-size: 11px;
    font-size: 0.6875rem;
    margin: 0 4px 0;
  }
}

.c-news-article__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.8em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-news-article__image {
  margin: 0 0 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .c-news-article__image {
    margin: 0 0 32px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-news-article__image {
    margin: 0 0 28px;
  }
}

@media only screen and (max-width: 767px) {
  .c-news-article__image {
    margin: 0 0 20px;
  }
}

.c-news-article__excerpt {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 2.2em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__excerpt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1.6em 0 0.8em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-news-article__body h3:first-child {
  margin: 0 0 0.6em;
}

.c-news-article__body h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 2.0em 0 1.0em;
}

.c-news-article__body h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin: 2.4em 0 1.2em;
}

.c-news-article__body p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 1.4em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body ul {
  padding-left: 1.2em;
  margin: 0 0 1.6em;
}

.c-news-article__body ul li {
  font-size: 14px;
  font-size: 0.875rem;
  list-style-type: disc;
  margin-bottom: 0.6em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body ul li {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body ol {
  padding-left: 1.2em;
  margin: 0 0 1.6em;
}

.c-news-article__body ol li {
  font-size: 14px;
  font-size: 0.875rem;
  list-style-type: decimal;
  margin-bottom: 0.6em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body ol li {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body dl {
  margin: 0 0 1.6em;
}

.c-news-article__body dl dt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.6em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body dl dt {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body dl dd {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 0.6em;
}

@media only screen and (max-width: 767px) {
  .c-news-article__body dl dd {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__body a {
  color: #000;
  transition: color 0.2s ease-in-out;
}

.c-news-article__body a:hover {
  color: #ef0000;
}

.c-news-article__link {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .c-news-article__link {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-news-article__link a {
  color: #606060;
  transition: color 0.2s ease-in-out;
}

.c-news-article__link a:hover {
  color: #ef0000;
}

/* Project
----------------------------------------------------------------- */
.p-home-slide img {
  width: 100%;
}

.p-home-slide__box {
  width: 100%;
  padding: 0 0 56.25% 0;
  background-color: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .p-home-slide__box {
    height: 480px;
  }
}

.p-home-banner__row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-home-banner__row {
    margin: 0 -10px;
  }
}

@media only screen and (max-width: 767px) {
  .p-home-banner__row {
    margin: 0 -10px;
  }
}

.p-home-banner__col {
  margin: 0 0 50px;
  padding: 0 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-home-banner__col {
    margin: 0 0 20px;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .p-home-banner__col {
    margin: 0 0 20px;
    padding: 0 10px;
  }
}

.p-home-banner__col--12 {
  flex-basis: 100%;
}

.p-home-banner__col--06 {
  flex-basis: 50%;
}

.p-home-banner__col--03 {
  flex-basis: 25%;
}

@media only screen and (max-width: 767px) {
  .p-home-banner__col--03 {
    flex-basis: 50%;
  }
}

.p-home-banner__col img {
  width: 100%;
}

.p-home-banner__inner--new {
  position: relative;
}

.p-home-banner__inner--new:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 75px;
  height: 75px;
  background-image: url(../images/label_new.svg);
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 767px) {
  .p-home-banner__inner--new:before {
    width: 50px;
    height: 50px;
    background-size: 50px;
  }
}

.p-home-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  margin: 0.8em 0 0;
}

@media only screen and (max-width: 767px) {
  .p-home-banner__title {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}

.p-page-body h3 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #999;
  margin: 1.6em 0 0.8em;
}

.p-page-body h4 {
  font-size: 30;
  font-weight: 700;
  text-align: left;
  color: #999;
  margin: 0 0 0.8em;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .p-page-body h3 {
    font-size: 36px;
    font-size: 2.25rem;
  }

.p-page-body h4 {
  font-size: 26px;
}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-page-body h3 {
    font-size: 32px;
    font-size: 2rem;
  }

.p-page-body h4 {
  font-size: 22px;
  font-size: 2rem;
}
}

@media only screen and (max-width: 767px) {
  .p-page-body h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }

.p-page-body h4 {
  font-size: 18px;
  font-size: 1.75rem;
}
}

.p-page-body h3:first-child {
  margin: 0 0 0.8em;
}

.p-page-body h3.en {
  font-family: 'Montserrat', sans-serif;
}

.p-page-body h4.en {
  font-family: 'Montserrat', sans-serif;
}

.p-page-body p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 2.2em;
}

@media only screen and (max-width: 767px) {
  .p-page-body p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-page-body p.en {
  font-family: 'Montserrat', sans-serif;
}

.p-page-body p.button {
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}

@media only screen and (max-width: 767px) {
  .p-page-body p.button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-page-body p.button a {
  width: 480px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 16px 24px;
  transition: color 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .p-page-body p.button a {
    width: auto;
    padding: 12px 48px;
  }
}

.p-page-body p.button a:hover {
  color: #ef0000;
}

.p-movielist {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -15px;
}

@media only screen and (max-width: 767px) {
  .p-movielist {
    display: block;
    margin: 0;
  }
}

.p-movielist__block {
  flex-basis: 33.333%;
  padding: 0 15px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .p-movielist__block {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 12px;
  }
}

.p-movielist__player {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

@media only screen and (max-width: 767px) {
  .p-movielist__player {
    margin-bottom: 8px;
  }
}

.p-movielist__player iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.p-page-body .p-movielist__title {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin: 0;
}

.p-company-info {
  margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
  .p-company-info {
    margin: 0 0 28px;
  }
}

.p-company-info th, .p-company-info td {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px;
  text-align: left;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .p-company-info th, .p-company-info td {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 0 4px;
    padding: 0;
  }
}

.p-company-info th {
  width: 200px;
  font-weight: bold;
}

@media only screen and (max-width: 767px) {
  .p-company-info th {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .p-company-info td {
    margin: 0 0 12px;
  }
}

.p-company-info a {
  color: #ef0000;
}

.p-contact-link {
  width: 480px;
  margin: 60px auto;
}

@media only screen and (max-width: 767px) {
  .p-contact-link {
    width: 100%;
    margin: 40px auto;
  }
}

.p-contact-link li {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 12px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: left 5px;
  padding: 0 0 0 16px;
}

@media only screen and (max-width: 767px) {
  .p-contact-link li {
    font-size: 13px;
    font-size: 0.8125rem;
    background-size: 7px;
    background-position: left 4px;
    padding: 0 0 0 14px;
  }
}

.p-contact-link a {
  color: #000;
}

.p-contact-form {
  width: 100%;
  margin-bottom: 40px;
}

.p-contact-form th, .p-contact-form td {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px;
  text-align: left;
  color: #000;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .p-contact-form th, .p-contact-form td {
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 0 4px;
    padding: 0;
  }
}

.p-contact-form th {
  width: 120px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .p-contact-form th {
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  .p-contact-form td {
    margin: 0 0 12px;
  }
}

.p-contact-form td input[type='text'],
.p-contact-form td input[type='email'],
.p-contact-form td select,
.p-contact-form td textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px;
  font-size: 11px;
  font-size: 0.6875rem;
}

.p-contact-form td input[type='submit'] {
  background-color: #000;
  color: #fff;
  border: none;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  padding: 12px 0;
}

@media only screen and (max-width: 767px) {
  .p-contact-form td input[type='submit'] {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 8px 0;
  }
}

.p-contact-form a {
  color: #ef0000;
}

.p-location__box {
  margin: 0 0 48px;
}

@media only screen and (max-width: 767px) {
  .p-location__box {
    margin: 0 0 36px;
  }
}

.p-location__image {
  margin: 0 0 36px;
}

@media only screen and (max-width: 767px) {
  .p-location__image {
    margin: 0 0 24px;
  }
}

.p-location__body {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-location__body {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .p-location__body {
    display: block;
  }
}

.p-location__info {
  flex-basis: 600px;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .p-location__info {
    flex-basis: 56%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-location__info {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .p-location__info {
    width: 100%;
  }
}

.p-page-body .p-location__info-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: bold;
  border-bottom: 2px solid #ef0000;
  margin: 0 0 0.6em;
  padding: 0 0 0.4em;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .p-page-body .p-location__info-heading {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-page-body .p-location__info-heading {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-page-body .p-location__info-heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-page-body .p-location__info-body p {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media only screen and (max-width: 767px) {
  .p-page-body .p-location__info-body p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.p-page-body .p-location__info-body p.en {
  font-family: 'Montserrat', sans-serif;
}

.p-location__access {
  flex-basis: 440px;
  padding: 20px;
  background-color: #eff1f1;
}

@media only screen and (min-width: 992px) and (max-width: 1240px) {
  .p-location__access {
    flex-basis: 40%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-location__access {
    flex-basis: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .p-location__access {
    width: 100%;
    padding: 12px;
  }
}

.p-page-body .p-location__access-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  color: #000;
  margin: 0 0 0.6em;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .p-page-body .p-location__access-heading {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-page-body .p-location__access-heading {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-location__access-map {
  margin: 0 0 12px;
}

@media only screen and (max-width: 767px) {
  .p-location__access-map {
    margin: 0 0 8px;
  }
}

.p-location__access-map iframe {
  width: 100%;
}

.p-page-body .p-location__access-body p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  margin: 0 0 0.6em;
}

@media only screen and (max-width: 767px) {
  .p-page-body .p-location__access-body p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.p-page-body .p-location__access-body p.en {
  font-family: 'Montserrat', sans-serif;
}

/* Utility
----------------------------------------------------------------- */
/* Plugin
----------------------------------------------------------------- */
/* Slick */
.slick-dots {
  bottom: 28px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li.slick-active button:before {
  color: #ef0000;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 0.75;
}

/* WP Pagenavi */
.wp-pagenavi a, .wp-pagenavi span {
  font-size: 14px;
  line-height: 1.0;
  border: 1px solid #ccc !important;
  padding: 3px 9px !important;
  margin: 0 4px !important;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  background-color: #ef0000 !important;
  border-color: #ef0000 !important;
  color: #fff !important;
}

.wp-pagenavi span.pages {
  display: none !important;
}

.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink:hover,
.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.last,
.wp-pagenavi a.first,
.wp-pagenavi a.last:hover,
.wp-pagenavi a.first:hover {
  font-weight: bold !important;
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff;
}

/* Contact Form 7 */
div.wpcf7-response-output {
  border: 2px solid #ef0000 !important;
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
  border: 2px solid #ef0000 !important;
}

span.wpcf7-not-valid-tip {
  color: #ef0000 !important;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
  border: 1px solid #ef0000 !important;
}

/*# sourceMappingURL=style.css.map */
