@charset "UTF-8";
/* Element First Media Queries
========================================================= */
/* Hover animation */
/* -----------------------------------------------------------
	Basics
----------------------------------------------------------- */
html {
  font-size: small;
  line-height: 1.7;
}

body {
  position: relative;
  color: #141414;
  background: #F5F5F5;
  -webkit-text-size-adjust: none;
  font-size: 14px;
}
@media (min-width: 1025px) {
  body {
    font-size: 16px;
  }
}
body a {
  color: #2e2e2e;
}
body a:link, body a:visited, body a:active {
  text-decoration: underline;
}
.mouse body a:hover, .touch body a.touchstart {
  text-decoration: none;
  color: #474747;
  transition: all 0.2s ease-in-out;
}
body img {
  max-width: 100%;
  -webkit-touch-callout: none;
}

body, pre, input, textarea, select {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
}

input, select, textarea {
  font-size: 100%;
}

h1, h2, h3 {
  letter-spacing: 0.06em;
}

html.ie8 .view_tab,
html.ie8 .view_tab_sp,
html.ie8 .view_sp {
  display: none !important;
}
html.ie8 #page {
  min-width: 1024px !important;
  margin: auto;
  font-size: 100% !important;
}

@media only screen and (min-width: 1025px) {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
@media print {
  body .view_tab-sp, body .view_tab {
    display: none !important;
  }
}
.ie8 body .view_tab-sp, .ie8 body .view_tab {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media print {
  body .view_sp {
    display: none !important;
  }
}
.ie8 body .view_sp {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab, body .view_tab {
    display: none !important;
  }
}

.mouse .over:hover, .touch .over.touchstart {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.touch .over {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
* {
  box-sizing: border-box;
}

/* -----------------------------------------------------------
	Utilities
----------------------------------------------------------- */
.both {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.horizontal {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.vertical {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

/* -----------------------------------------------------------
	Floating
----------------------------------------------------------- */
.fleft {
  float: left;
}

.fright {
  float: right;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.on-scroll.fade-in, .on-scroll.fade-in-2, .on-scroll.fade-in-3, .on-scroll.fade-in-4, .on-scroll.fade-in-5, .on-scroll.fade-in-up, .on-scroll.fade-in-up-2 {
  opacity: 0;
}
.on-scroll.fade-in-5 {
  position: relative;
  z-index: 2;
}
.on-scroll.is-visible.fade-in, .on-scroll.is-visible.fade-in-2, .on-scroll.is-visible.fade-in-3, .on-scroll.is-visible.fade-in-4, .on-scroll.is-visible.fade-in-5 {
  animation-name: fade-in;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.on-scroll.is-visible.fade-in-2 {
  animation-delay: 0.25s;
}
.on-scroll.is-visible.fade-in-3 {
  animation-delay: 0.5s;
}
.on-scroll.is-visible.fade-in-4 {
  animation-delay: 0.75s;
}
.on-scroll.is-visible.fade-in-5 {
  animation-delay: 1s;
}
.on-scroll.is-visible.fade-in-up, .on-scroll.is-visible.fade-in-up-2 {
  animation-name: fade-in-up;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.on-scroll.is-visible.fade-in-up-2 {
  animation-delay: 0.1s;
}

@keyframes fade_in_out {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.ny02 {
  animation-delay: 2s;
}

.ny03 {
  animation-delay: 4s;
}

.ny04 {
  animation-delay: 6s;
}

.ny01, .ny02, .ny03, .ny04 {
  animation-name: fade_in_out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 8s;
}

#header #gnav.is-visible {
  display: flex;
  animation-name: fade-in;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}
#header #gnav.is-closing {
  animation-name: fade-out;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

/* -----------------------------------------------------------
	Buttons
----------------------------------------------------------- */
input[type=submit],
input[type=reset],
input[type=button],
button,
.button {
  /* width: 100%; */
  display: block;
  border: none;
  cursor: pointer;
}
input[type=submit] a,
input[type=reset] a,
input[type=button] a,
button a,
.button a {
  padding: 20px;
  border: 1px solid #000;
  text-decoration: none !important;
  display: block;
  position: relative;
  font-weight: 500;
}
@media (min-width: 1025px) {
  input[type=submit] a,
input[type=reset] a,
input[type=button] a,
button a,
.button a {
    transition: all 0.2s ease-in-out;
  }
}
@media (min-width: 1025px) {
  input[type=submit] a:hover,
input[type=reset] a:hover,
input[type=button] a:hover,
button a:hover,
.button a:hover {
    opacity: 0.5;
  }
}
input[type=submit] a:before,
input[type=reset] a:before,
input[type=button] a:before,
button a:before,
.button a:before {
  content: "";
  position: absolute;
  top: 40%;
  right: -20px;
  width: 78px;
  height: 9px;
  background: url(/images/common/arrow.svg) left center no-repeat;
}
input[type=submit] a span,
input[type=reset] a span,
input[type=button] a span,
button a span,
.button a span {
  position: relative;
  display: inline-block;
}
input[type=submit] a span:before,
input[type=reset] a span:before,
input[type=button] a span:before,
button a span:before,
.button a span:before {
  content: "";
  position: absolute;
  top: 0;
  right: -26px;
  width: 20px;
  height: 14px;
  background: url(/images/common/ic_external.svg) right center no-repeat;
}
input[type=submit].btn_white a,
input[type=reset].btn_white a,
input[type=button].btn_white a,
button.btn_white a,
.button.btn_white a {
  border: 1px solid #fff;
  color: #ffffff;
}
input[type=submit].btn_white a:before,
input[type=reset].btn_white a:before,
input[type=button].btn_white a:before,
button.btn_white a:before,
.button.btn_white a:before {
  background: url(/images/common/arrow_white.svg) left center no-repeat;
}
input[type=submit].btn_white a span:before,
input[type=reset].btn_white a span:before,
input[type=button].btn_white a span:before,
button.btn_white a span:before,
.button.btn_white a span:before {
  background: url(/images/common/ic_external_white.svg) right center no-repeat;
}

/* -----------------------------------------------------------
	Form
----------------------------------------------------------- */
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select,
textarea {
  padding: 0 1em;
  width: 100%;
  display: block;
  outline: 0;
  text-decoration: none;
  -moz-box-shadow: inset 0 8px 8px -8px #eee;
  -webkit-box-shadow: inset 0 8px 8px -8px #eee;
  box-shadow: inset 0 8px 8px -8px #eee;
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
  border: 1px solid #e0dcdd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -moz-appearance: str-replace-all("none", "-prefix-", "-moz-");
  -webkit-appearance: str-replace-all("none", "-prefix-", "-webkit-");
  -ms-appearance: str-replace-all("none", "-prefix-", "-ms-");
  appearance: str-replace-all("none", "-prefix-", "");
}
input[type=text]:invalid,
input[type=password]:invalid,
input[type=email]:invalid,
input[type=tel]:invalid,
input[type=search]:invalid,
input[type=url]:invalid,
select:invalid,
textarea:invalid {
  box-shadow: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=url]:focus,
select:focus,
textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 1px #e0dcdd;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=url],
select {
  height: 32px;
}

textarea {
  padding: 0.75em 1em;
}

select {
  width: 100%;
  cursor: pointer;
  border: 1px solid #e0dcdd;
  background: url(../images/common/arrow_form.png) 96% 50% no-repeat #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #878787;
}
@media only screen and (max-width: 767px) {
  select {
    max-width: 100%;
    width: 100%;
  }
}
select option {
  background-color: #fff;
  color: #1b1b1b;
}

input[type=checkbox],
input[type=radio] {
  -moz-appearance: str-replace-all("none", "-prefix-", "-moz-");
  -webkit-appearance: str-replace-all("none", "-prefix-", "-webkit-");
  -ms-appearance: str-replace-all("none", "-prefix-", "-ms-");
  appearance: str-replace-all("none", "-prefix-", "");
}

input[type=radio] + label:before {
  border-radius: 100%;
}

/* -----------------------------------------------------------
	Table
----------------------------------------------------------- */
/* -----------------------------------------------------------
	Header
----------------------------------------------------------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #000000;
  box-shadow: 0px 3px 5px 0px rgba(17, 17, 17, 0.2);
}
@media (min-width: 1025px) {
  #header {
    height: auto;
    box-shadow: none;
  }
}
#header .sitename {
  padding-left: 15px;
  width: 120px;
  display: none;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  #header .sitename {
    padding: 14px 0 14px 20px;
    width: 190px;
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  #header .sitename:hover {
    opacity: 0.5;
  }
}
#header .nishibishi {
  margin-left: 20%;
  width: 44px;
  text-align: center;
}
@media (min-width: 768px) {
  #header .nishibishi {
    margin-left: 10%;
  }
}
@media (min-width: 1025px) {
  #header .nishibishi {
    display: none;
  }
}
#header .lang {
  padding-right: 70px;
  display: inline-block;
}
#header .lang div {
  display: inline-block;
}
#header .lang div a {
  color: #ffffff;
  text-decoration: none;
}
#header .lang div a:hover, #header .lang div a.active {
  color: #029DFA;
}
#header .lang div.jp:after {
  padding: 0 5px;
  content: "/";
  color: #ffffff;
  vertical-align: center;
}
@media (min-width: 1025px) {
  #header .lang.pc_view {
    padding-right: 50px;
    min-width: 110px;
    order: 3;
  }
}
#header .scart {
  padding-left: 15px;
}
@media (min-width: 1025px) {
  #header .scart.pc_view {
    padding-right: 20px;
    order: 4;
  }
}
#header .scart a {
  display: block;
  position: relative;
}
@media (min-width: 1025px) {
  #header .scart a:hover:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url("../images/common/ic_cart_hover.svg") 0 0 no-repeat;
    background-size: contain;
  }
}
#header .menu-button {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 10px;
  width: 60px;
  height: 60px;
  background: #000000;
  cursor: pointer;
  color: #fff;
  border: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#header .menu-button:focus {
  outline: none;
}
@media (min-width: 1025px) {
  #header .menu-button {
    display: none;
  }
}
#header .menu-button .menu-bar {
  position: relative;
  width: 30px;
  height: 10px;
  display: inline-block;
}
#header .menu-button .menu-bar:before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease-in;
}
#header .menu-button .menu-bar span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease-in;
}
#header .menu-button .menu-bar span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease-in;
}
#header .menu-button.is-active .label-menu {
  display: none;
}
#header .menu-button.is-active .label-close {
  display: block;
}
#header .menu-button.is-active .menu-bar {
  width: 30px;
}
#header .menu-button.is-active .menu-bar:before {
  display: none;
}
#header .menu-button.is-active .menu-bar span:before {
  transform: translateY(4px) rotate(-45deg);
}
#header .menu-button.is-active .menu-bar span:after {
  transform: translateY(-4px) rotate(45deg);
}
#header #gnav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
  display: none;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  background: #000000;
}
@media (min-width: 1025px) {
  #header #gnav {
    margin: 0 auto;
    max-width: 1200px;
    height: 73px;
    position: static;
    background: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
#header #gnav .m_gnav {
  padding: 14px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
@media (min-width: 1025px) {
  #header #gnav .m_gnav {
    margin: 0;
    display: none;
    width: 0;
    overflow: hidden;
    max-width: 0;
  }
}
#header #gnav .name {
  margin-left: 20%;
  width: 44px;
  text-align: center;
  align-self: center;
}
@media (min-width: 768px) {
  #header #gnav .name {
    margin-left: 10%;
  }
}
@media (min-width: 1025px) {
  #header #gnav .name {
    margin-bottom: 0;
    flex: 1;
  }
}
#header #gnav .name span {
  padding-top: 8px;
  display: block;
  font-weight: 700;
}
#header #gnav .scart, #header #gnav .lang {
  padding-top: 6px;
  line-height: inherit;
}
#header #gnav ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1025px) {
  #header #gnav ul {
    flex-direction: row;
    align-items: center;
  }
}
#header #gnav ul li {
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid #ffffff;
  display: inline-block;
}
@media (min-width: 1025px) {
  #header #gnav ul li {
    margin-bottom: 0;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    border-top: none;
  }
}
@media (min-width: 1600px) {
  #header #gnav ul li {
    font-size: 16px;
  }
}
#header #gnav ul li a {
  padding: 15px 0;
  display: block;
  text-decoration: none;
  color: white;
}
@media (min-width: 1025px) {
  #header #gnav ul li a {
    overflow: hidden;
    text-decoration: none;
    display: block;
    padding: 0;
    position: relative;
    z-index: 1;
    text-align: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #029DFA, #029DFA 50%, #ffffff 50%);
    background-size: 200% 100%;
    background-position: -100%;
    transition: all 0.3s ease-in-out;
  }
  #header #gnav ul li a:before {
    display: block;
    content: "";
    width: 0;
    height: 3px;
    left: 0;
    bottom: -3px;
    z-index: 0;
    position: absolute;
    background: #029DFA;
    transition: all 0.3s ease-in-out;
  }
  #header #gnav ul li a:hover {
    background-position: 0%;
  }
  #header #gnav ul li a:hover:before {
    width: 100%;
  }
}

/* Social Media
----------------------------------------------------------- */
.sns_top {
  /* padding-top: 50px; */
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1025px) {
  .sns_top {
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    background: #000000;
  }
}
.sns_top div {
  margin: 0 10px;
  font-size: 14px;
}
@media (min-width: 1025px) {
  .sns_top div {
    margin: 0 15px;
  }
}
.sns_top div a {
  text-decoration: none;
}
@media (min-width: 1025px) {
  .sns_top div a {
    color: #ffffff;
  }
}
.sns_top div i {
  font-size: 20px;
}
@media (min-width: 1025px) {
  .sns_top div i {
    font-size: 22px;
  }
}
.sns_top div span {
  padding-left: 5px;
  display: inline-block;
}
@media (min-width: 1025px) {
  .sns_top div span {
    display: none;
  }
}

/* -----------------------------------------------------------
	Main Inner Container
----------------------------------------------------------- */
#main-inner-container {
  padding: 20px;
}
@media (min-width: 1025px) {
  #main-inner-container {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  #main-inner-container .wrp_inn {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media (min-width: 1025px) {
  #main-inner-container .wrp_inn {
    margin: 0 auto;
    max-width: 1200px;
    background: #ffffff;
  }
}
@media (min-width: 1025px) {
  #main-inner-container .wrp_inn.column {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
  }
}
@media (min-width: 1025px) {
  #main-inner-container .block {
    display: flex;
    flex-direction: row;
  }
}

/* -----------------------------------------------------------
	Infocards
----------------------------------------------------------- */
.con_infocard_single {
  background: #ffffff;
  border-bottom: 2px solid #535353;
}
.con_infocard_single .pic {
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 1025px) {
  .con_infocard_single .pic {
    padding: 30px;
  }
}
.con_infocard_single .pic img {
  width: 100%;
}
.con_infocard_single .txt {
  padding: 0 30px 30px 30px;
}
.con_infocard_single h2 {
  margin-bottom: 10px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .con_infocard_single h2 {
    font-size: 26px;
  }
}
@media (min-width: 1025px) {
  .con_infocard_single h2 {
    font-size: 30px;
  }
}
.con_infocard_single h2 span {
  display: inline-block;
  vertical-align: middle;
}
.con_infocard_single h2 .date {
  display: block;
  font-size: 12px;
}
@media (min-width: 768px) {
  .con_infocard_single h2 .date {
    font-size: 15px;
  }
}
.con_infocard_single i {
  margin-right: 5px;
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  color: #707070;
}
.con_infocard_single p {
  position: relative;
}
@media (min-width: 768px) {
  .con_infocard_single p {
    font-size: 16pxcon_infocard_multiple;
  }
}
.con_infocard_multiple {
  margin-bottom: 20px;
  background: #ffffff;
  box-shadow: 0px 3px 5px 0px rgba(17, 17, 17, 0.1);
}
@media (min-width: 768px) {
  .con_infocard_multiple {
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .con_infocard_multiple {
    box-shadow: none;
    flex: 1;
  }
}
.con_infocard_multiple .pic {
  padding-bottom: 15px;
  width: 100%;
}
@media (min-width: 1025px) {
  .con_infocard_multiple .pic {
    padding: 30px;
  }
}
.con_infocard_multiple .pic img {
  width: 100%;
}
.con_infocard_multiple .txt {
  padding: 0 15px 15px 15px;
}
@media (min-width: 768px) {
  .con_infocard_multiple .txt {
    padding: 0 30px 30px 30px;
  }
}
.con_infocard_multiple h2 {
  margin-bottom: 10px;
  font-size: 18px;
}
@media (min-width: 768px) {
  .con_infocard_multiple h2 {
    font-size: 26px;
  }
}
@media (min-width: 1025px) {
  .con_infocard_multiple h2 {
    font-size: 30px;
  }
}
.con_infocard_multiple h2 span {
  display: inline-block;
  vertical-align: middle;
}
.con_infocard_multiple h2 .date {
  display: block;
  font-size: 12px;
}
@media (min-width: 768px) {
  .con_infocard_multiple h2 .date {
    font-size: 15px;
  }
}
.con_infocard_multiple i {
  margin-right: 5px;
  font-size: 25px;
  display: inline-block;
  vertical-align: middle;
  color: #707070;
}
.con_infocard_multiple p {
  position: relative;
}
@media (min-width: 768px) {
  .con_infocard_multiple p {
    font-size: 16px;
  }
}
/* -----------------------------------------------------------
	.youtube-video-container
----------------------------------------------------------- */
.youtube-video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.youtube-video-container iframe,
.youtube-video-container embed,
.youtube-video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------
	.con_news
----------------------------------------------------------- */
.con_news {
  padding: 40px 0;
}
.con_news h2 {
  text-align: center;
  font-size: 28px;
  color: #3E3E3E;
}
.con_news h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_news h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_news h2 {
    font-size: 38px;
  }
}
.con_news ul {
  padding: 20px;
}
@media (min-width: 1025px) {
  .con_news ul {
    margin: 0 auto;
    max-width: 920px;
  }
}
.con_news ul li {
  padding: 0 15px;
  border-bottom: 1px solid #707070;
  background: #ffffff;
}
.con_news ul li:first-child {
  border-top: 1px solid #707070;
}
.con_news ul li:last-child {
  border-bottom: none;
}
.con_news ul li a {
  padding: 20px 0;
  display: block;
  text-decoration: none;
}
.con_news ul li .inner .date {
  margin-bottom: 8px;
  font-weight: 500;
  color: #8E8D8D;
}
.con_news ul li .inner .date span {
  padding-left: 15px;
}
.con_news ul li .inner .ttl {
  font-weight: 700;
}
.con_news ul li .inner .txt {
  display: none;
}
@media (min-width: 768px) {
  .con_news ul li .inner .txt {
    display: inline-block;
  }
}
.con_news .btn_link {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.con_news .btn_link a {
  display: block;
  text-decoration: none;
  color: #029DFA;
}

/* -----------------------------------------------------------
	Footer
----------------------------------------------------------- */
#footer {
  color: #ffffff;
  position: relative;
}
#footer .banners {
  background: #F5F5F5;
}
#footer .banners ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: stretch;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  #footer .banners ul {
    flex-direction: row;
    justify-content: space-around;
    align-content: stretch;
    align-items: flex-start;
  }
}
#footer .banners ul li {
  padding: 20px;
  border: 6px solid #ffffff;
}
#footer .banners ul li:first-child {
  border-bottom: 3px;
}
@media (min-width: 768px) {
  #footer .banners ul li {
    width: 50%;
  }
  #footer .banners ul li:first-child {
    border: 6px solid #ffffff;
    border-right: 2px;
    border-left: 0;
  }
  #footer .banners ul li:last-child {
    border: 6px solid #ffffff;
    border-right: 0;
  }
}
#footer .banners ul li a {
  padding: 20px 0;
  text-decoration: none;
  display: block;
  background: #B5B4B4;
}
#footer #gnav_foot {
  padding: 15px 0;
  background: #000000;
}
#footer #gnav_foot .wrap {
  max-width: 520px;
  margin: 0 auto;
}
#footer #gnav_foot .name {
  margin: 0 auto 15px auto;
  text-align: center;
}
#footer #gnav_foot .name img {
  width: 140px;
}
#footer #gnav_foot .name a {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  #footer #gnav_foot .name a:hover {
    opacity: 0.5;
  }
}
#footer #gnav_foot ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: center;
  align-items: flex-start;
  text-align: center;
}
#footer #gnav_foot ul li {
  margin: 0 15px;
  display: inline-block;
}
#footer #gnav_foot ul li a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  #footer #gnav_foot ul li a:hover {
    opacity: 0.5;
  }
}
#footer #gnav_foot ul li.ft_button {
  border: none;
}
#footer #gnav_foot ul li.ft_button a {
  padding: 3px 30px;
  color: #141414;
  border-radius: 15px;
  background: #ffffff;
}
@media (min-width: 768px) {
  #footer #gnav_foot ul li.ft_button a {
    padding: 5px 60px;
  }
}
#footer #gnav_foot ul li.ft_button a:hover {
  color: #ffffff;
  background: #029DFA;
}
#footer #gnav_foot ul li.fb img {
  width: 35px;
}
#footer #gnav_foot ul li.fb a {
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  #footer #gnav_foot ul li.fb a:hover {
    opacity: 0.5;
  }
}
#footer .map {
  background: #444444;
}
@media (min-width: 1025px) {
  #footer .map {
    overflow: hidden;
  }
}
#footer .map .wrap {
  width: 100%;
  height: 180px;
  background: url("../images/common/img_map_pc.svg") center top no-repeat;
  background-size: cover;
  transition: all 0.5s;
}
@media (min-width: 1025px) {
  #footer .map .wrap {
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
  }
}
@media (min-width: 1600px) {
  #footer .map .wrap {
    background-position: center 92%;
  }
}
@media (min-width: 1025px) {
  #footer .map .wrap:hover, #footer .map .wrap:focus {
    transform: scale(1.2);
  }
}
#footer .map a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}
#footer .address {
  padding: 20px 0;
  text-align: center;
  background: #000000;
}
#footer .address a {
  color: #ffffff;
  text-decoration: none;
}
#footer .address span {
  display: inline-block;
}
#footer .address span.tit {
  font-size: 15px;
  font-weight: 600;
}
#footer .address span.tel {
  padding: 5px 0;
}
#footer .address span.tel a {
  font-size: 16px;
}
#footer .wrp_copy {
  padding: 15px 0;
  text-align: center;
  color: #141414;
  background: #b5b4b4;
}
#footer .wrp_copy .links {
  margin-bottom: 15px;
  font-size: 13px;
}
@media (min-width: 768px) {
  #footer .wrp_copy .links {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
#footer .wrp_copy .links a {
  padding: 5px 0;
  color: #141414;
  text-decoration: none;
  display: block;
}
@media (min-width: 768px) {
  #footer .wrp_copy .links a:first-child {
    padding-right: 10px;
  }
  #footer .wrp_copy .links a:first-child:after {
    content: "";
    padding-left: 10px;
    height: 100%;
    border-right: 1px solid #141414;
  }
}
@media (min-width: 1025px) {
  #footer .wrp_copy .links a:hover {
    color: #707070;
  }
}
#footer .wrp_copy .copyright {
  font-size: 12px;
}

/* -----------------------------------------------------------
	Page Top
----------------------------------------------------------- */
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  z-index: 999;
}
#pagetop a {
  display: block;
  height: 100%;
  width: 100%;
}
#pagetop a span {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ccc;
  position: relative;
}
#pagetop a span:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* -----------------------------------------------------------
	Headline
----------------------------------------------------------- */
.headline {
  padding-top: 65px;
  width: 100%;
  background: #585552;
}
.headline h1 {
  padding: 10px 0;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid #707070;
}
@media (min-width: 1025px) {
  .headline h1 {
    padding: 20px 0;
    font-size: 25px;
    font-weight: 500;
  }
}
.headline .m_inner {
  margin: 0 auto;
  padding: 10px 15px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .headline .m_inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.headline .m_inner li a {
  color: #B5B4B4;
  font-weight: 700;
  text-decoration: none;
}
@media (min-width: 1025px) {
  .headline .m_inner li a {
    font-size: 18px;
  }
}
.headline .m_inner li a:hover, .headline .m_inner li a.active {
  color: #ffffff;
}

/* -----------------------------------------------------------
	Accordion
----------------------------------------------------------- */
.accordion {
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .accordion {
    padding-bottom: 50px;
  }
}
@media (min-width: 1025px) {
  .accordion {
    max-width: 600px;
    padding-bottom: 50px;
  }
}

.accordion-header,
.accordion-body {
  background: white;
}

.accordion-header {
  padding: 1.5em 1.5em;
  background: #ffffff;
  color: #141414;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 1px solid #B2B1B1;
}

.accordion__item {
  margin: 5px 0;
  border-bottom: 1px solid #ffffff;
}

.accordion__item .accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-header:hover {
  background: #eeeeee;
  position: relative;
  z-index: 5;
}

.accordion-body {
  background: #fcfcfc;
  border: 1px solid #B2B1B1;
  color: #353535;
  display: none;
}

.accordion-body__contents {
  padding: 1.5em 1.5em;
}

.accordion__item.active:last-child .accordion-header {
  border-radius: none;
}

.accordion:first-child > .accordion__item > .accordion-header {
  border-bottom: 1px solid transparent;
}

.accordion__item > .accordion-header:after {
  content: "";
  font-family: IonIcons;
  font-size: 1.2em;
  float: right;
  position: relative;
  top: -2px;
  transition: 0.3s all;
  transform: rotate(0deg);
}

.accordion__item.active > .accordion-header:after {
  transform: rotate(-180deg);
}

.accordion__item.active .accordion-header {
  background: #eeeeee;
}

.accordion__item .accordion__item .accordion-header {
  background: #f1f1f1;
  color: #353535;
}

@media (min-width: 1025px) {
  .accordion {
    width: 100%;
  }
}
/* -----------------------------------------------------------
	Magnific-popup Effects
----------------------------------------------------------- */
/* 
====== Zoom effect ======
*/
.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Move-horizontal effect ======

*/
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

.ss-container {
  display: flex;
}

.ss-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* float: left; */
}

.ss-content {
  height: 100%;
  width: calc(100% + 18px);
  padding: 0 0 0 0;
  position: relative;
  overflow-x: auto;
  overflow-y: scroll;
  box-sizing: border-box;
}

.ss-content.rtl {
  width: calc(100% + 18px);
  right: auto;
}

.ss-scroll {
  position: relative;
  background: #cd8000;
  width: 9px;
  border-radius: 4px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s linear;
  right: 0 !important;
}
@media (min-width: 768px) {
  .ss-scroll {
    opacity: 1;
  }
}

.ss-hidden {
  sdisplay: none;
}

.ss-container:hover .ss-scroll,
.ss-container:active .ss-scroll {
  /* opacity: 1; */
}

.ss-grabbed {
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* ===================================================================
	Home page

=================================================================== */
html, body {
  width: 100%;
  height: 100%;
}

#wrapper {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------
	Main Container
----------------------------------------------------------- */
#main-container {
  padding: 60px 0 0 0;
}

.pdd_top {
  padding-top: 20px;
}

/* -----------------------------------------------------------
	.con_hero
----------------------------------------------------------- */
.con_hero {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: url("../images/home/img_main_visual.png") left center no-repeat;
  background-size: cover;
  position: relative;
}
.con_hero .con_hero_video_wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.con_hero #con_hero_video {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  min-height: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .con_hero {
    height: 720px;
  }
}
@media (min-width: 1025px) {
  .con_hero {
    height: 600px;
  }
  .con_hero #con_hero_video {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
  }
}
.con_hero .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.con_hero .text h1 {
  margin: 0 auto 25px auto;
  text-align: center;
  width: 200px;
}
@media (min-width: 768px) {
  .con_hero .text h1 {
    width: 290px;
  }
}
@media (min-width: 1025px) {
  .con_hero .text h1 {
    width: 390px;
  }
}
.con_hero .text .slogan {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .con_hero .text .slogan {
    font-size: 25px;
  }
}
.con_hero .text ul {
  text-align: center;
}
.con_hero .text ul li {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .con_hero .text ul li {
    font-size: 18px;
  }
}
.con_hero .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_hero .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_hero .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_hero .text ul li a:after {
    font-size: 25px;
  }
}

/* -----------------------------------------------------------
	.con_becomeateacher
----------------------------------------------------------- */
.con_becomeateacher {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: url("../images/home/img_school.png") center center no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_becomeateacher {
    height: 720px;
  }
}
@media (min-width: 1025px) {
  .con_becomeateacher {
    height: 600px;
  }
}
.con_becomeateacher .text {
  padding-top: 45px;
  text-align: center;
}
@media (min-width: 768px) {
  .con_becomeateacher .text {
    padding-top: 90px;
  }
}
.con_becomeateacher .text h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 28px;
  color: #3E3E3E;
  /*position: relative;
  &:before {
  	content: "";
  	position: absolute;
  	left: -55px;
  	top: 0;
  	display: block;
  	width: 48px;
  	height: 100%;
  	background: url("../images/common/ic_tit_nishibishi_black.svg") left center no-repeat;
  	background-size: 100% auto;
  }*/
}
.con_becomeateacher .text h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_becomeateacher .text h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_becomeateacher .text h2 {
    font-size: 38px;
  }
}
.con_becomeateacher .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #3E3E3E;
  text-align: center;
}
@media (min-width: 768px) {
  .con_becomeateacher .text .slogan {
    font-size: 25px;
  }
}
.con_becomeateacher .text ul {
  text-align: center;
}
.con_becomeateacher .text ul li {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .con_becomeateacher .text ul li {
    font-size: 18px;
  }
}
.con_becomeateacher .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_becomeateacher .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_becomeateacher .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_becomeateacher .text ul li a:after {
    font-size: 25px;
  }
}

/* -----------------------------------------------------------
	.con_nagoyaodori
----------------------------------------------------------- */
.con_nagoyaodori {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: url("../images/home/img_nagoya_odori.png") center center no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_nagoyaodori {
    height: 720px;
  }
}
@media (min-width: 1025px) {
  .con_nagoyaodori {
    height: 600px;
  }
}
.con_nagoyaodori .text {
  padding-top: 45px;
  text-align: center;
}
@media (min-width: 768px) {
  .con_nagoyaodori .text {
    padding-top: 90px;
  }
}
@media (min-width: 768px) {
  .con_nagoyaodori .text {
    padding-top: 60px;
  }
}
.con_nagoyaodori .text h2 {
  margin: 0 auto 20px auto;
  text-align: center;
  width: 72px;
}
@media (min-width: 768px) {
  .con_nagoyaodori .text h2 {
    width: 82px;
  }
}
@media (min-width: 1025px) {
  .con_nagoyaodori .text h2 {
    width: 82px;
  }
}
.con_nagoyaodori .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .con_nagoyaodori .text .slogan {
    font-size: 25px;
  }
}
.con_nagoyaodori .text ul {
  text-align: center;
}
.con_nagoyaodori .text ul li {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .con_nagoyaodori .text ul li {
    font-size: 18px;
  }
}
.con_nagoyaodori .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_nagoyaodori .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_nagoyaodori .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_nagoyaodori .text ul li a:after {
    font-size: 25px;
  }
}

/* -----------------------------------------------------------
	.wrp_col
----------------------------------------------------------- */
@media (min-width: 768px) {
  .wrp_col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: stretch;
    align-items: stretch;
  }
}

/* -----------------------------------------------------------
	.con_school
----------------------------------------------------------- */
.con_school {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: #F5F5F5;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_school {
    height: 530px;
    flex: 1 1 auto;
  }
}
@media (min-width: 1025px) {
  .con_school {
    height: 600px;
  }
}
.con_school .text {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.con_school .text h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 28px;
  color: #3E3E3E;
}
.con_school .text h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_school .text h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_school .text h2 {
    font-size: 34px;
  }
}
@media (min-width: 1025px) {
  .con_school .text h2 {
    font-size: 38px;
  }
}
.con_school .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #3E3E3E;
  text-align: center;
}
@media (min-width: 768px) {
  .con_school .text .slogan {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .con_school .text .slogan {
    font-size: 25px;
  }
}
.con_school .text ul {
  text-align: center;
}
.con_school .text ul li {
  font-size: 15px;
  font-weight: 600;
}
.con_school .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_school .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_school .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_school .text ul li a:after {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
	.con_roots
----------------------------------------------------------- */
.con_roots {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: #000000;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_roots {
    height: 530px;
    flex: 1;
  }
}
@media (min-width: 1025px) {
  .con_roots {
    height: 600px;
  }
}
.con_roots .text {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.con_roots .text h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 28px;
  color: #ffffff;
}
.con_roots .text h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_roots .text h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_roots .text h2 {
    font-size: 34px;
  }
}
@media (min-width: 1025px) {
  .con_roots .text h2 {
    font-size: 38px;
  }
}
.con_roots .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .con_roots .text .slogan {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .con_roots .text .slogan {
    font-size: 25px;
  }
}
.con_roots .text ul {
  text-align: center;
}
.con_roots .text ul li {
  font-size: 15px;
  font-weight: 600;
}
.con_roots .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_roots .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_roots .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_roots .text ul li a:after {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
	.con_movie
----------------------------------------------------------- */
.con_movie {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: #000000;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_movie {
    height: 530px;
    flex: 1;
  }
}
@media (min-width: 1025px) {
  .con_movie {
    height: 600px;
  }
}
.con_movie .text {
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.con_movie .text h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 28px;
  color: #ffffff;
}
.con_movie .text h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_movie .text h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_movie .text h2 {
    font-size: 34px;
  }
}
@media (min-width: 1025px) {
  .con_movie .text h2 {
    font-size: 38px;
  }
}
.con_movie .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  .con_movie .text .slogan {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .con_movie .text .slogan {
    font-size: 25px;
  }
}
.con_movie .text ul {
  text-align: center;
}
.con_movie .text ul li {
  font-size: 15px;
  font-weight: 600;
}
.con_movie .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_movie .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_movie .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_movie .text ul li a:after {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .con_movie .text .illu {
    padding: 40px 0;
  }
}

/* -----------------------------------------------------------
	.con_store
----------------------------------------------------------- */
.con_store {
  border-bottom: 6px solid #ffffff;
  height: 500px;
  background: url("../images/home/img_online_store.png") center center no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .con_store {
    height: 530px;
    flex: 1;
  }
}
@media (min-width: 1025px) {
  .con_store {
    height: 600px;
  }
}
.con_store .text {
  padding-top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .con_store .text {
    padding-top: 90px;
  }
}
@media (min-width: 768px) {
  .con_store .text {
    padding-top: 37px;
  }
}
.con_store .text h2 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 28px;
  color: #3E3E3E;
}
.con_store .text h2 span {
  display: inline-block;
  vertical-align: middle;
  width: 48px;
}
@media (min-width: 768px) {
  .con_store .text h2 span {
    width: 72px;
  }
}
@media (min-width: 768px) {
  .con_store .text h2 {
    font-size: 34px;
  }
}
@media (min-width: 1025px) {
  .con_store .text h2 {
    font-size: 38px;
  }
}
.con_store .text .slogan {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  color: #3E3E3E;
  text-align: center;
}
@media (min-width: 768px) {
  .con_store .text .slogan {
    font-size: 20px;
  }
}
@media (min-width: 1025px) {
  .con_store .text .slogan {
    font-size: 25px;
  }
}
.con_store .text ul {
  text-align: center;
}
.con_store .text ul li {
  font-size: 15px;
  font-weight: 600;
}
.con_store .text ul li a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  .con_store .text ul li a:hover {
    opacity: 0.5;
  }
}
.con_store .text ul li a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  .con_store .text ul li a:after {
    font-size: 18px;
  }
}

/* ===================================================================
	Copy Styles

=================================================================== */
/* -----------------------------------------------------------
	xxx
----------------------------------------------------------- */
/* ===================================================================
	Director Styles

=================================================================== */
#director #header #gnav .menu-list li.gn_dir a {
  background-position: 0%;
}

/* ===================================================================
	Become a teacher Styles

=================================================================== */
#becomeateacher #header #gnav .menu-list li.gn_bec a {
  background-position: 0%;
}
#becomeateacher .con_infocard_multiple.linkable, #becomeateacher .con_infocard_single.linkable {
  cursor: pointer;
}
#becomeateacher .con_infocard_multiple .pic, #becomeateacher .con_infocard_single .pic {
  padding: 10px;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .pic, #becomeateacher .con_infocard_single .pic {
    padding: 40px;
  }
}
#becomeateacher .con_infocard_multiple .txt, #becomeateacher .con_infocard_single .txt {
  padding: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .txt, #becomeateacher .con_infocard_single .txt {
    padding: 0 30px 30px 30px;
  }
}
#becomeateacher .con_infocard_multiple .txt h2 .date.inline, #becomeateacher .con_infocard_single .txt h2 .date.inline {
  padding-right: 20px;
  display: inline-block;
}
#becomeateacher .con_infocard_multiple .txt h2 .txt_sm, #becomeateacher .con_infocard_single .txt h2 .txt_sm {
  font-size: 14px;
  display: block;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .txt h2 .txt_sm, #becomeateacher .con_infocard_single .txt h2 .txt_sm {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .txt h2 .txt_sm, #becomeateacher .con_infocard_single .txt h2 .txt_sm {
    font-size: 20px;
  }
}
#becomeateacher .con_infocard_multiple .txt h3, #becomeateacher .con_infocard_single .txt h3 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .txt h3, #becomeateacher .con_infocard_single .txt h3 {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  #becomeateacher .con_infocard_multiple .txt h3, #becomeateacher .con_infocard_single .txt h3 {
    margin-bottom: 40px;
  }
}
#becomeateacher .con_infocard_multiple .btn_link, #becomeateacher .con_infocard_single .btn_link {
  text-align: right;
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .btn_link, #becomeateacher .con_infocard_single .btn_link {
    font-size: 18px;
  }
}
#becomeateacher .con_infocard_multiple .btn_link a, #becomeateacher .con_infocard_single .btn_link a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
}
#becomeateacher .con_infocard_multiple .btn_link a:after, #becomeateacher .con_infocard_single .btn_link a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_multiple .btn_link a:after, #becomeateacher .con_infocard_single .btn_link a:after {
    font-size: 25px;
  }
}
#becomeateacher .con_infocard_single .pic {
  margin-bottom: 0;
}
#becomeateacher .con_infocard_single .bn_lesson {
  margin-top: 20px;
}
@media (min-width: 768px) {
  #becomeateacher .con_infocard_single .bn_lesson {
    margin: 20px;
  }
}
@media (min-width: 1025px) {
  #becomeateacher .con_infocard_single .bn_lesson {
    margin: 100px auto;
    max-width: 590px;
  }
}
@media (min-width: 1025px) {
  #becomeateacher .wrp_inn.column {
    margin-bottom: 40px !important;
  }
}
#becomeateacher .bn_lesson {
  padding: 10px;
  background: #ffffff;
  text-align: center;
}
@media (min-width: 768px) {
  #becomeateacher .bn_lesson {
    margin: 0 auto;
    max-width: 600px;
  }
}

/* ===================================================================
	School Styles

=================================================================== */
#school #header #gnav .menu-list li.gn_sch a {
  background-position: 0%;
}
#school .con_infocard_multiple {
  box-shadow: none;
}
@media (min-width: 1025px) {
  #school .con_infocard_multiple {
    cursor: pointer;
  }
}
#school .con_infocard_multiple .pic {
  text-align: center;
}
#school .con_infocard_multiple .pic img {
  width: auto;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple h2 {
    text-align: center;
  }
}
#school .con_infocard_multiple h2 .txt_red {
  color: #FF001D;
  font-size: 12px;
  display: block;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple h2 .txt_red {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  #school .con_infocard_multiple p {
    text-align: center;
  }
}
#school .con_infocard_multiple .btn_link {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple .btn_link {
    font-size: 18px;
  }
}
#school .con_infocard_multiple .btn_link a {
  padding: 5px 0;
  color: #029DFA;
  display: block;
  text-decoration: none;
  position: relative;
}
#school .con_infocard_multiple .btn_link a:after {
  padding-left: 10px;
  content: ">";
  font-size: 18px;
  vertical-align: center;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple .btn_link a:after {
    font-size: 25px;
  }
}
#school .con_infocard_multiple_maxw {
  margin: 0 auto 20px auto;
  max-width: 600px;
  background: #ffffff;
  box-shadow: 0px 3px 5px 0px rgba(17, 17, 17, 0.1);
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw {
    margin-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  #school .con_infocard_multiple_maxw {
    box-shadow: none;
    flex: 1;
  }
}
#school .con_infocard_multiple_maxw .pic {
  text-align: center;
}
#school .con_infocard_multiple_maxw .movie {
  margin-bottom: 20px;
}
#school .con_infocard_multiple_maxw h2 {
  margin-bottom: 10px;
  font-size: 18px;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw h2 {
    font-size: 26px;
    text-align: center;
  }
}
@media (min-width: 1025px) {
  #school .con_infocard_multiple_maxw h2 {
    font-size: 30px;
  }
}
#school .con_infocard_multiple_maxw h2 span {
  display: inline-block;
  vertical-align: middle;
}
#school .con_infocard_multiple_maxw h2 .txt_red {
  color: #FF001D;
  font-size: 12px;
  display: block;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw h2 .txt_red {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw p {
    text-align: center;
  }
}
#school .con_infocard_multiple_maxw .txt {
  padding: 0 15px 15px 15px;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .txt {
    padding: 0 30px 30px 30px;
    text-align: center;
  }
}
#school .con_infocard_multiple_maxw .box_info {
  padding: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info {
    padding: 0 30px 30px 30px;
  }
}
@media (min-width: 1025px) {
  #school .con_infocard_multiple_maxw .box_info {
    margin: 0 auto;
    max-width: 460px;
  }
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info.mx-w {
    margin: 0 auto;
    max-width: 370px;
  }
}
#school .con_infocard_multiple_maxw .box_info.inf_con {
  text-align: center;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info.inf_con {
    padding: 0 30px 30px 30px;
  }
}
#school .con_infocard_multiple_maxw .box_info.inf_con p {
  padding: 5px 0;
}
#school .con_infocard_multiple_maxw .box_info.inf_con a {
  text-decoration: none;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info h3 {
    text-align: center;
  }
}
#school .con_infocard_multiple_maxw .box_info dl {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info dl.maxw {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
}
#school .con_infocard_multiple_maxw .box_info dl dt {
  margin-bottom: 5px;
  min-width: 12%;
  font-weight: 700;
  text-align: left;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info dl dd {
    padding-left: 20px;
  }
}
#school .con_infocard_multiple_maxw .box_info .bn_site {
  margin: 0 auto;
  max-width: 350px;
}
#school .con_infocard_multiple_maxw .box_info .caption {
  margin-top: -15px;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 768px) {
  #school .con_infocard_multiple_maxw .box_info .caption {
    text-align: left;
  }
}
#school .con_infocard_multiple_maxw .pd_top {
  padding-top: 30px;
}
#school .con_infocard_multiple_maxw .mg_bot {
  margin-bottom: 50px;
}
#school .con_infocard_multiple_maxw .box_becomeanichikawa {
  padding: 0 30px 30px 30px;
}
#school .con_infocard_multiple_maxw .box_becomeanichikawa h2 {
  margin-bottom: 30px;
  font-size: 18px;
}
#school .con_infocard_multiple_maxw .box_becomeanichikawa h3 {
  font-size: 16px;
  color: #707070;
}
#school .con_infocard_multiple_maxw .box_becomeanichikawa p {
  margin-bottom: 20px;
}
#school .con_infocard_multiple_maxw .accordion h3 {
  margin-bottom: 15px;
}
#school .con_infocard_multiple_maxw .accordion dl {
  margin: 10px 0;
}
#school .con_infocard_multiple_maxw .accordion dl dt {
  font-weight: 600;
}
#school .con_infocard_multiple_maxw .accordion p.acc_txt {
  margin-bottom: 15px;
  text-align: left;
}
#school .bx_inf {
  margin-top: -10px;
  padding-top: 0;
  position: relative;
}
@media (min-width: 768px) {
  #school .bx_inf .wrp_inn.column {
    padding: 0;
  }
}
@media (min-width: 768px) {
  #school .bx_inf .box_info {
    padding: 0;
  }
}

/* ===================================================================
	News Styles

=================================================================== */
#news #header #gnav .menu-list li.gn_new a {
  background-position: 0%;
}
#news .con_news {
  padding: 0;
}
#news .con_infocard_single .pic {
  padding: 10px;
}
@media (min-width: 768px) {
  #news .con_infocard_single .pic {
    padding: 40px;
  }
}
#news .con_infocard_single .txt {
  padding: 0 10px 10px 10px;
}
@media (min-width: 768px) {
  #news .con_infocard_single .txt {
    padding: 0 30px 30px 30px;
  }
}
#news .con_infocard_single .txt h2 .date {
  color: #8E8D8D;
}
#news .con_infocard_single .txt h2 .date.inline {
  padding-right: 20px;
  display: inline-block;
}
#news .con_infocard_single .txt h2 .txt_sm {
  padding-left: 15px;
  font-size: 14px;
  color: #8E8D8D;
}
@media (min-width: 768px) {
  #news .con_infocard_single .txt h2 .txt_sm {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  #news .con_infocard_single .txt h2 .txt_sm {
    font-size: 20px;
  }
}
#news .con_infocard_single .txt .parag {
  margin: 15px 0;
}
@media (min-width: 768px) {
  #news .con_infocard_single .txt .parag {
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  #news .con_infocard_single .txt .parag {
    margin-bottom: 40px;
  }
}
#news .btn_link {
  margin: 30px 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
#news .btn_link a {
  display: block;
  text-decoration: none;
  color: #029DFA;
}
#news .txt_nodata {
  padding: 20px;
  text-align: center;
}

/* ===================================================================
	Contact Us Styles

=================================================================== */
#contactus #header #gnav .menu-list li.gn_con a {
  background-position: 0%;
}
#contactus .wrp_inn {
  background: #ffffff;
}
#contactus .contact_form {
  margin: 0 auto;
  padding: 30px;
  width: 100%;
  max-width: 940px;
}
@media (min-width: 768px) {
  #contactus .contact_form {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#contactus .contact_form h2 {
  margin-bottom: 15px;
  text-align: left;
  font-size: 18px;
}
@media (min-width: 768px) {
  #contactus .contact_form h2 {
    font-size: 26px;
    text-align: center;
  }
}
@media (min-width: 1025px) {
  #contactus .contact_form h2 {
    font-size: 30px;
  }
}
#contactus .contact_form .txt_intro {
  margin-bottom: 60px;
  text-align: left;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #contactus .contact_form .txt_intro {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #contactus .contact_form .txt_intro {
    margin-bottom: 30px;
  }
}
#contactus .contact_form input {
  margin: 10px 0;
  padding: 25px 15px;
}
#contactus .contact_form select {
  margin: 10px 0 20px 0;
  padding: 11px 10px;
  position: relative;
  height: 55px;
}
#contactus .contact_form select.c-custom-input__select-wrap::after {
  position: absolute;
  content: "▼";
  display: block;
  width: auto;
  height: 6px;
  top: 50%;
  right: 20px;
  margin-top: -0.5em;
  line-height: 1;
  font-size: 10px;
}
#contactus .contact_form textarea {
  margin-bottom: 20px;
  min-height: 150px;
}
#contactus .contact_form .email,
#contactus .contact_form .telephone {
  width: 48%;
}
#contactus .contact_form .email {
  float: left;
}
#contactus .contact_form .telephone {
  float: right;
}
#contactus .contact_form .btn_submit input[type=button], #contactus .contact_form .btn_submit input[type=submit], #contactus .contact_form .btn_submit input[type=reset] {
  border-radius: 30px;
  background: #029DFA;
  color: #ffffff;
  border: none;
  padding: 15px 15px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 768px) {
  #contactus .contact_form .btn_submit input[type=button], #contactus .contact_form .btn_submit input[type=submit], #contactus .contact_form .btn_submit input[type=reset] {
    margin: 0 auto;
    max-width: 320px;
  }
}
#contactus .contact_form .btn_submit input[type=button]:hover, #contactus .contact_form .btn_submit input[type=submit]:hover, #contactus .contact_form .btn_submit input[type=reset]:hover {
  color: #ffffff;
  background: #029DFA;
}
#contactus .contact_form .btn_link {
  margin: 30px 0;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
#contactus .contact_form .btn_link a {
  border-radius: 30px;
  background: #029DFA;
  color: #ffffff;
  border: none;
  padding: 15px 15px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 1025px) {
  #contactus .contact_form .btn_link a:hover {
    color: #029DFA;
    background: #ffffff;
    border: 1px solid #029DFA;
  }
}
#contactus .error {
  color: #FF001D;
}

/* ===================================================================
	Privacy Policy Styles

=================================================================== */
#privacy .con_infocard_single .txt {
  padding-top: 30px;
}
@media (min-width: 768px) {
  #privacy .con_infocard_single .txt {
    max-width: 650px;
    margin: 0 auto 30px auto;
  }
}
#privacy .con_infocard_single .txt ol {
  margin-top: 20px;
}
#privacy .con_infocard_single .txt ol > li {
  padding: 5px 0 5px 30px;
  position: relative;
  font-size: 14px;
}
#privacy .con_infocard_single .txt ol > li:before {
  display: block;
  position: absolute;
  width: 20px;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-weight: 900;
  top: 0.9em;
  left: 0;
  opacity: 0.5;
  transition: none;
  margin-top: -5px;
}
#privacy .con_infocard_single .txt ol > li:nth-child(1):before {
  content: "01";
}
#privacy .con_infocard_single .txt ol > li:nth-child(2):before {
  content: "02";
}
#privacy .con_infocard_single .txt ol > li:nth-child(3):before {
  content: "03";
}
#privacy .con_infocard_single .txt ol > li:nth-child(4):before {
  content: "04";
}
#privacy .con_infocard_single .txt ol > li:nth-child(5):before {
  content: "05";
}
#privacy .con_infocard_single .txt ol > li:nth-child(6):before {
  content: "06";
}
#privacy .con_infocard_single .txt ol > li:nth-child(7):before {
  content: "07";
}
#privacy .con_infocard_single .txt ol > li:nth-child(8):before {
  content: "08";
}

/* ===================================================================
	Movie Styles

=================================================================== */

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