@charset "UTF-8";

html,
body {
  overflow: visible;
}

body,
html {
  height: auto;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  /*-moz-osx-font-smoothing: grayscale;*/
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

nav ul {
  list-style: none;
}

blockquote,
q {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: bottom;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
}

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

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

del {
  text-decoration: line-through;
}

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

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

input,
select {
  vertical-align: middle;
}

body {
  font-family: "Noto Sans JP", interstate, -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #fff;
  background-color: #f6f6f6;
  height: 100%;
}

body.menu-open,
body.modalopen {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
}

ol,
ul {
  list-style: none;
  font-size: 0;
}

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

caption,
th,
td {
  font-weight: 300;
  text-align: left;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  transition-duration: 300ms;
}

a img {
  border: 0;
}

img[src$=".svg"] {
  width: 100%;
  height: 100%;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

p {
  font-size: 16px;
  line-height: 2;
  word-break: break-all;
  letter-spacing: 0.5px;
}

/*-----------------------------------------*/

.grade {
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 20%,
    #5c60d0 35%,
    #2b73e9 50%,
    #5c60d0 65%,
    #ad4fa6 80%
  );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: left center;
  background-size: 200% auto;
}

a.grade:hover {
  background-position: right center;
  transition-duration: 600ms;
  /* background-size: 200% auto; */
}

.height100vh {
  height: 100vh;
}

.slide-orverflow {
  overflow: hidden;
  height: auto;
}

.slide-orverflow .slide-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* height: 250px; */
}

.slide-wrap::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

.slide-wrap .slide-content {
  margin: 0 10px;
  height: auto;
  position: relative;
}

.slide-content:last-child {
  padding-right: 40px;
}

.sec-tit-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.sec-tit-wrap h2 {
  font-size: 24px;
  /* color: #151515; */
  line-height: 1;
}

.max-w {
  max-width: 708px;
  padding: 0 40px;
  margin: 0 auto;
}

.sec-padding {
  padding: 100px 0px 120px;
}

.ios-scroll {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.scroll {
  opacity: 0;
  transition-duration: 400ms;
  transform: translateY(20px);
}

.scroll.scrolling {
  opacity: 1;
  transform: translateY(0px);
}

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

HEADER

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

header {
  position: fixed;
  display: block;
  width: 100%;
  z-index: 999;
}

header .header-wrap {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background-color: rgba(17, 17, 17, 0.4);
}

header .h-logo {
  height: 100%;
  padding: 16px 0px;
  z-index: 11;
  transition-duration: 300ms;
}

header .h-logo:hover {
  opacity: 0.6;
}

header .h-logo img {
  width: auto;
}

header .header-right {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
}

header .nav-button {
  position: relative;
  /* width: 40px; */
  height: 100%;
  right: 0px;
  top: 0px;
  cursor: pointer;
  margin-left: 10px;
  z-index: 992;
  /* display: none; */
  padding: 20px 0;
}

header .nav-button-wrap {
  position: relative;
  display: block;
  width: 40px;
  height: 100%;
}

header .nav-button,
.nav-button span {
  transition: all 0.4s;
  box-sizing: border-box;
}

header .nav-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

header .nav-button span:nth-of-type(1) {
  top: 0;
}

header .nav-button span:nth-of-type(2) {
  top: 9px;
}

header .nav-button span:nth-of-type(3) {
  bottom: 0px;
}

header .nav-button.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
  /* background-color: #151515; */
}

header .nav-button.active span:nth-of-type(2) {
  opacity: 0;
}

header .nav-button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
  /* background-color: #151515; */
}

header .nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

header .nav-wrap ul {
  display: flex;
  height: 100%;
  align-items: center;
}

header .nav-wrap ul li {
  height: 100%;
  align-items: center;
  display: flex;
  padding-left: 16px;
}
.nav-wrap ul li.h-sup-wrap{/* font-size: 12px; */}
.nav-wrap ul li.h-sup-wrap a{
  /* padding: 0 4px; */
}
.nav-wrap ul li.h-sup-wrap span{
  margin: 0 4px;
  font-size: 11px;
}

header .nav-wrap ul li a {
  font-size: 11px;
  font-weight: bold;
  display: block;
  transition-duration: 300ms;
  color: #fff;
}

header .nav-wrap ul li a:hover {
  color: #dc3091;
}

header .cf-cta {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  padding-left: 20px;
  padding-right: 0px;
}

header .cf-cta a {
  font-size: 10px;
  display: inline-block;
  line-height: 1.3em;
  font-weight: 800;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  padding-right: 30px;
  background-color: #111;
  border-radius: 26px;
  color: #fff;
}

header .cf-cta a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  position: relative;
  right: -15px;
  font-size: 12px;
  font-weight: 600;
}

header .nav-wrap.open {
  display: block;
  transform: translate(0%, 0px);
  /* transition-duration: 1000ms; */
}

header .nav-wrap.open ul {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  height: 100vh;
  background-color: #111;
  z-index: 10;
  top: 0;
  bottom: 0;
  transition-duration: 1000ms;
  transform: translate(0%, 0px);
}

header .nav-wrap .cf-cta {
  display: none;
}

header .nav-wrap ul.sub {
  display: none;
}

header .nav-wrap ul li.h-menu-contact {
  /* display: none; */
}

header .nav-wrap ul li.h-menu-sns p {
  font-weight: bold;
  color: #151515;
  border-bottom: solid 1px #111;
}

.h-menu-sns-wrap {
  display: flex;
}

.h-menu-sns {
}

.h-menu-sns p {
}

.h-menu-sns .h-menu-sns-wrap {
}

#h-clone .nav-wrap .h-menu-sns a {
  margin-right: 18px;
  font-size: 16px;
  color: #fff;
  background-color: #3cf;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  transition-duration: 300ms;
}

#h-clone .nav-wrap .h-menu-sns a:hover {
  opacity: 0.6;
}

#h-clone .nav-wrap .h-menu-sns a.tw {
  color: #fff;
  background-color: #3cf;
}

#h-clone .nav-wrap .h-menu-sns a.fb {
  background-color: #3b5998;
  color: #fff;
}

#h-clone .nav-wrap .h-menu-sns a.ln {
  background-color: #00c402;
}

#h-clone .nav-wrap .h-menu-sns a.ln svg {
  width: 18px;
}

#fullnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 130vh; */
  /* min-height: 100vh; */
  /* display: none; */
  background-color: #fff;
  z-index: 998;
  /* transition-duration: 400ms; */
}

#fullnav.active {
}

#fullnav .wrap {
  height: 110vh;
}

#fullnav .inner {
  height: 100%;
  /* padding: 100px; */
  /* overflow: scroll; */
}

#h-clone {
  height: 100%;
  display: flex;
  align-items: center;
}

#h-clone .nav-wrap {
  /* height: 100%; */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
  width: 100%;
  max-width: 808px;
  margin: auto;
}

#h-clone .nav-wrap ul.main {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-right: 100px;
}

#h-clone .nav-wrap ul {
  /* -webkit-transform:translate(300px, 0px); */
  /* transform: translate(300px, 0px); */
  opacity: 1;
  transition-duration: 900ms;
  /* transition-delay: 300ms; */
}

#h-clone.active .nav-wrap ul.main {
  /* -webkit-transform: translate(0px, 0px); */
  /* transform: translate(0px, 0px); */
  /* opacity: 1; */
}

#h-clone.active .nav-wrap ul.sub {
  /* transform: translate(0px, 0px); */
  /* transition-delay: 400ms; */
  opacity: 1;
  transition-delay: 100ms;
}

#h-clone .nav-wrap ul.sub {
  transition-delay: 100ms;
}

#h-clone .nav-wrap ul li {
  margin-bottom: 10px;
}
#h-clone .nav-wrap ul li.h-sup-wrap span{
  color: #151515;
  font-size: 20px;
}

#h-clone .nav-wrap ul li a {
  color: #151515;
  font-weight: bold;
  font-size: 20px;
  transition-duration: 300ms;
  /* text-decoration: underline #fff; */
}

#h-clone .nav-wrap ul li a:hover {
  color: #dc3091;
  /* text-decoration: underline #dc3091; */
}

#h-clone .nav-wrap ul li.h-menu-sns {
  margin-bottom: 20px;
}

#h-clone .h-menu-sns p {
  color: #b1b1b1;
  font-weight: bold;
  margin-bottom: 5px;
}

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

top-bg-sec

=================================================================================*/
.top-sec-bg-wrap {
  position: relative;
  z-index: 2;
}

.top-sec-bg-wrap .top-sec-bg01 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.25);
  background: -moz-linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.4)
  );
  background: -webkit-linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.4)
  );
  background: linear-gradient(
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.4)
  );
}

.top-sec-bg-wrap .top-sec-bg02 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: -2;
  background: rgba(255, 255, 255, 0.89);
}

#top-bg-sec {
  position: fixed;
  top: 0;
  z-index: -10;
  width: 100%;
}

#top-bg-sec .wrap {
  background-image: url(../img/bg.jpg);
  width: 100vw;
  background-position: -100vw 0;
  background-size: cover;
  background-repeat-x: repeat;
  -webkit-animation: bgscroll 20000s linear infinite;
  animation: bgscroll 2000s linear infinite;
}

@keyframes bgscroll {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -5000vw 0;
  }
}

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

top-fv-sec

=================================================================================*/
#top-fv-sec {
}

#top-fv-sec .img-wrap {
  position: relative;
  display: flex;
  transition-duration: 600ms;
  /* min-height: 500px; */
  height: 100%;
}
#top-fv-sec .img-wrap picture{
  width: 100%;
  text-align: center;
}
#top-fv-sec .img-wrap.onload {
  opacity: 1;
}

#top-fv-sec .img-wrap img {
  margin: auto;
  padding: 80px 40px;
  padding-top: 100px;
  max-width: 650px;
}

#top-fv-sec .wrap {
  position: relative;
  min-height: 540px;
  opacity: 0;
  transition-duration: 300ms;
  /* transition-delay: 400ms; */
}

#top-fv-sec .wrap.loaded {
  opacity: 1;
}

#top-fv-sec .inner {
  height: 100%;
}

.scrollDowan {
  right: 0;
  left: 0;
  position: absolute;
}

.scrollDowan img {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: auto;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 20px;
  animation-name: scanime;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes scanime {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.banner-area{margin-bottom: 60px;}
.banner-area .flex-wrap{display: flex;justify-content: space-between;align-items: center;flex-wrap: wrap;}
.banner-area .flex-wrap a{
  display: block;
  width: 49%;
  line-height: 0;
  transition-duration:300ms;
  /* width: 100%; */
  margin-bottom: 40px;
}
.banner-area .flex-wrap a:hover{
  opacity:0.6
}
/*=================================================================================

top-news-sec

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

#top-news-sec {
  background-color: rgb(255, 255, 255);
}

#top-news-sec .wrap {
}

#top-news-sec .inner {
  padding: 70px 0px 80px;
}

#top-news-sec .slide-content {
}

#top-news-sec .article {
  /* width: 275px; */
}

#top-news-sec .article a.box {
}

#top-news-sec .article a.box .day {
  font-size: 10px;
  font-weight: bold;
  color: #666;
}

#top-news-sec .article a.box .thumb {
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  position: relative;
  box-shadow: 0px 1px 10px 1px rgba(150, 150, 150, 0.1);
}

#top-news-sec .article a.box .thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  transition-duration: 600ms;
  opacity: 0;
  top: 0;
}

#top-news-sec .article a.box:hover .thumb:before {
  opacity: 0.6;
}

#top-news-sec .article a.box .tit {
  font-size: 12px;
  color: #414141;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 42px;
  overflow: hidden;
  margin-top: 10px;
  font-weight: 600;
}

#top-news-sec .slide-last {
}

#top-news-sec .slide-last .article {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding-bottom: 20%;
}

#top-news-sec .slide-last .box {
  /* display: inline-block; */
  text-align: center;
  transition-duration: 300ms;
}

#top-news-sec .slide-last .box:hover {
  opacity: 0.6;
}

#top-news-sec .slide-last .box .icon {
  display: inline-block;
}

#top-news-sec .slide-last .box .icon i {
  border: solid 2px #afafaf;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  color: #afafaf;
  text-align: center;
  padding: 19px;
  font-size: 20px;
}

#top-news-sec .slide-last .article a.box .tit {
  font-weight: bold;
  height: auto;
  color: #afafaf;
}
#top-news-sec .sec-tit-wrap {
}
#top-news-sec .sec-tit-wrap h2 {
  color: #151515;
}
#top-news-sec .news-swiper-container {
  overflow: hidden;
  position: relative;
  padding: 0 40px;
  /* padding-right: 200px; */
}
#top-news-sec .news-swiper-container .swiper-wrapper {
}
/*=================================================================================

top-video-sec

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

#top-video-sec {
  padding-top: 40px;
}

#top-video-sec .video-swiper-container {
  overflow: hidden;
  position: relative;
  padding: 0 40px;
}
#top-video-sec .swiper02 .swiper-button-next, #top-video-sec .swiper02 .swiper-button-prev {
  height: calc(100% - 42px);
}
#top-video-sec .swiper-slide-next,
#top-video-sec .swiper-slide-prev {
  position: relative;
  /* line-height: 1; */
}

#top-video-sec .swiper-slide-next p,
#top-video-sec .swiper-slide-prev p {
  /* opacity: 0; */
}

#top-video-sec .swiper-slide .thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition-duration: 300ms;
  z-index: 0;
  top: 0;
}

#top-video-sec .swiper-slide .thumb:after {
  font-family: "Font Awesome 5 Free";
  content: "\f144";
  position: absolute;
  z-index: 3;
  font-size: 30px;
  display: flex;
  height: 100%;
  width: 100%;
  top: 0;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
  /* top: -15px; */
}

#top-video-sec .swiper-slide a {
  display: block;
  z-index: 1;
}

#top-video-sec .swiper-slide .thumb {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  position: relative;
}

#top-video-sec .swiper-slide-next .thumb:before,
#top-video-sec .swiper-slide-prev .thumb:before {
  /* opacity: 1; */
}

#top-video-sec .swiper-slide-next .thumb:after,
#top-video-sec .swiper-slide-prev .thumb:after {
  /* opacity: 0; */
}

#top-video-sec .sec-tit-wrap p {
  font-size: 12px;
  font-weight: bold;
  opacity: 1;
  line-height: 2;
  transition-duration: 300ms;
}

#top-movie-sec #top-video-sec .inner {
  padding: 0;
}

#top-video-sec .swiper-slide .name {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  font-size: 12px;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 42px;
  overflow: hidden;
  margin-top: 10px;
  font-weight: 600;
}

.dammy-area{
  display: none;
}

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

top-interview-sec

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

#top-interview-sec .inner {
  padding: 80px 0px 100px;
}

#top-interview-sec .article {
  /* width: 400px; */
}

#top-interview-sec .article a.box {
  color: #fff;
  display: block;
}

#top-interview-sec .article a.box .name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: 26px;
  overflow: hidden;
}

#top-interview-sec .article a.box .thumb {
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 56.25%;
}

#top-interview-sec .article a.box .thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  transition-duration: 600ms;
  opacity: 0;
  top: 0;
}

#top-interview-sec .article a.box:hover .thumb:before {
  opacity: 0.6;
}

#top-interview-sec .article a.box .tit {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 42px;
  overflow: hidden;
  margin-top: 0px;
  font-weight: 100;
}

#top-interview-sec .slide-last {
  /* width: 200px; */
}

#top-interview-sec .slide-last .article {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding-bottom: 50%;
}

#top-interview-sec .slide-last .box {
  /* display: inline-block; */
  transition-duration: 300ms;
}

#top-interview-sec .slide-last .box:hover {
  opacity: 0.6;
}

#top-interview-sec .slide-last .box .icon {
  /* display: inline-block; */
  text-align: center;
}

#top-interview-sec .slide-last .box .icon i {
  border: solid 2px #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 19px;
  font-size: 20px;
}

#top-interview-sec .slide-last .article a.box .tit {
  font-weight: bold;
  height: auto;
}

#top-interview-sec .interview-swiper-container {
  overflow: hidden;
  position: relative;
  padding: 0 40px;
  /* padding-right: 200px; */
}
#top-interview-sec .interview-swiper-container .swiper-wrapper {
}

.archive-btn{padding: 0 20px;margin-top: 20px;}
.archive-btn a{display: flex;align-items: center;font-size: 12px;justify-content: flex-end;font-weight: 600;line-height: 1;}
.archive-btn a span{width: 40px;height: 1px;display: inline-block;background-color: #fff;margin-right: 10px;margin-top: 1px;transition-duration: 300ms;}
.archive-btn a:hover{
  opacity: 0.6;
}
.archive-btn a:hover span{
  width: 60px;
}
/*=================================================================================

top-read-sec

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

#top-read-sec {
}

#top-read-sec .wrap {
  /* padding: 0; */
  padding-bottom: 120px;
  padding-top: 0px;
}

#top-read-sec .bg-wrap {
  background-image: url(../img/read-bg.png);
  background-size: cover;
  background-position: center;
  max-width: 970px;
  margin: 0 auto;
}

#top-read-sec .inner {
  padding: 130px 80px;
}

#top-read-sec .read-contents {
}

#top-read-sec .img-wrap {
}

#top-read-sec .text-wrap {
  margin: 20px 0px 50px;
}

#top-read-sec .text-wrap p {
  color: #111;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
  word-break: break-all;
}

#top-read-sec .btn {
}

#top-read-sec .btn a {
  display: flex;
  padding: 20px 40px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

#top-read-sec .btn a .left {
}

#top-read-sec .btn a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 20px;
  font-size: 24px;
}

#top-read-sec .btn a .left p {
  font-weight: bold;
  font-size: 12px;
}

#top-read-sec .btn a .left h3 {
  font-size: 20px;
  line-height: 1.5;
}

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

top-about-sec

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

#top-about-sec {
}

#top-about-sec .wrap {
  /* padding-bottom: 80px; */
  position: relative;
}
#top-about-sec .inner{
  position: relative;
  z-index: 1;
}
#top-about-sec .bg{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  opacity: 1;
  background-color: #fff;
  background-image: url(../img/page-know-02.jpg);
  background-position: center;
  background-size: cover;
}

#top-about-sec .img-wrap {
  /* border-top: solid 2px #151515; */
  /* border-bottom: solid 2px #151515; */
  line-height: 1;
  padding: 14px 0;
}

#top-about-sec .text-wrap {
  margin: 40px 0px;
}

#top-about-sec .text-wrap p {
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 20px;
  color: #151515;
}

#top-about-sec .btn-area {
  display: flex;
  justify-content: space-between;
}

#top-about-sec .btn-area a {
  /* z-index: 2; */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

#top-about-sec .btn-area .btn {
  width: 48%;
  position: relative;
  /* IE8以下とAndroid4.3以下用フォールバック */
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}

#top-about-sec .btn-area a p {
  position: relative;
  /* z-index: 2; */
  font-weight: bold;
  width: 100%;
}

#top-about-sec .btn-area a p:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 0px;
}

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

top-movie-sec

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

#top-movie-sec {
}

#top-movie-sec .wrap {
  position: relative;
}

#top-movie-sec .inner {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

#top-movie-sec .sec-tit-wrap h2 {
  /* color: #151515; */
}

#top-movie-sec .bg {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 0;
  top: 0;
  opacity: 1;
  /* background-color: #fff; */
  /* background-image: url(../img/page-know-02.jpg); */
  background-position: center;
  background-size: cover;
  background: #da558f;
  background: -moz-linear-gradient( 30deg, #da558f, #ad4fa6 30%, #5c60d0 70%, #2b73e9 );
  background: -webkit-linear-gradient( 30deg, #da558f, #ad4fa6 30%, #5c60d0 70%, #2b73e9 );
  background: linear-gradient( 60deg, #da558f, #ad4fa6 20%, #5c60d0 35%, #2b73e9 50%, #5c60d0 65%, #ad4fa6 80% );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: left center;
  background-size: 200% auto;
  opacity: 0.7;
}

#top-movie-sec .movie-contents-wrap {
  padding: 0 0 56.25%;
  position: relative;
}

#top-movie-sec .movie-contents-wrap iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

cf-cta-sec

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

#cf-cta-sec {
}

#cf-cta-sec .wrap {
  /* background-color: #fff; */
}

#cf-cta-sec .inner {
  /* padding: 80px 40px; */
}

#cf-cta-sec a {
  display: flex;
  align-items: center;
  padding: 40px 40px;
  /* transition-duration: 300ms; */
  position: relative;
  background-color: #fff;
}

#cf-cta-sec a .img-wrap {
  padding-right: 40px;
  line-height: 1;
  z-index: 1;
  max-width: 808px;
  margin: 0 auto;
  position: relative;
  /* display: flex; */
  /* align-items: center; */
}

#cf-cta-sec a .img-wrap p:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  /* position: absolute; */
  right: -20px;
  font-size: 28px;
  /* line-height: 1; */
  color: #ffffff;
  /* top: 4px; */
  position: relative;
}

#cf-cta-sec a i {
  color: #2774eb;
  font-size: 26px;
  position: relative;
  left: -30px;
  line-height: 1;
  z-index: 1;
}

#cf-cta-sec a:hover {
}

#cf-cta-sec a p {
  font-size: 26px;
  font-weight: bold;
}

#cf-cta-sec a .bg {
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 20%,
    #5c60d0 35%,
    #2b73e9 50%,
    #5c60d0 65%,
    #ad4fa6 80%
  );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: left center;
  background-size: 200% auto;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 0;
  opacity: 0;
}

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

top-comment-sec

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

#top-comment-sec {
  display: none;
}

body.home #top-comment-sec {
  display: block;
}

#top-comment-sec .wrap {
  /* padding-bottom: 0px */
}

#top-comment-sec .sec-tit-wrap {
}

#top-comment-sec .sec-tit-wrap h2 {
  color: #151515;
}

#top-comment-sec .box-wrap {
  display: flex;
  flex-wrap: wrap;
  /* padding: 0 40px; */
  justify-content: space-between;
}

#top-comment-sec .box {
  background-color: #fff;
  width: 47%;
  position: relative;
  width: -webkit-calc(50% - 10px);
  width: 100%;
  margin-bottom: 20px;
}

#top-comment-sec .box a {
  display: block;
  /* padding: 20px; */
  display: flex;
  align-items: center;
  /* box-shadow: 4px 4px 10px 0px #e0e0e0; */
  transition-duration: 300ms;
}

#top-comment-sec .box a:hover {
  box-shadow: 4px 4px 10px 0px #e0e0e0;
}

#top-comment-sec .box a:hover .btn p {
  color: #dc3091;
}

#top-comment-sec .box .img-name {
  display: flex;
  align-items: center;
  /* padding: 20px; */
  width: 300px;
}

#top-comment-sec .box .img-name img {
  width: 50%;
  padding-right: 5%;
}

#top-comment-sec .box .img-name .name-wrap {
  width: 50%;
}

#top-comment-sec .box .img-name .name-wrap .sub {
  font-size: 10px;
  color: #151515;
  font-weight: 500;
}

#top-comment-sec .box .img-name .name-wrap .name {
  font-size: 14px;
  color: #151515;
  font-weight: bold;
}

#top-comment-sec .box .img-name .name-wrap .position {
  font-size: 10px;
  color: #666;
  word-break: break-all;
  font-weight: 500;
  line-height: 1.5;
}

#top-comment-sec .box .text-area {
  /* padding: 0 20px; */
  width: calc(100% - 300px);
  padding: 20px;
  padding-left: 0px;
}

#top-comment-sec .box .text-area p {
  font-size: 12px;
  color: #151515;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 62px;
  overflow: hidden;
  line-height: 1.8;
}

#top-comment-sec .box .btn-wrap {
}

#top-comment-sec .box .btn {
  text-align: right;
  padding-top: 10px;
}

#top-comment-sec .box .btn p {
  font-weight: bold;
  height: auto;
  font-size: 10px;
  color: #666;
  transition-duration: 300ms;
}

#top-comment-sec .box .btn i {
  padding-left: 10px;
}

#top-comment-sec .box .btn p:after {
  /* font-family: "Font Awesome 5 Free"; */
  /* content: '\f054'; */
  font-weight: 900;
  position: absolute;
  right: 20px;
}

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

top-tw-sec

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

#top-tw-sec {
}

#top-tw-sec .inner {
  /* padding: 110px 0px; */
  display: flex;
  justify-content: center;
}

#top-tw-sec .bg-wrap {
  /* background-image: url(../img/top-tw-bg.png); */
  /* background-position: center; */
  /* background-size: cover; */
  /* max-width: 970px; */
  /* margin: 0 auto; */
  /* padding: 40px; */
}

#top-tw-sec .wrap {
  background-color: #f3f3f3;
}

#top-tw-sec .tw-wrap {
  text-align: right;
  /* display: flex; */
  width: 50%;
  padding-right: 20px;
  position: relative;
  padding-top: 400px;
}

#top-tw-sec .tw-wrap iframe {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100vw !important;
}

#top-tw-sec .facebook-timeline {
  text-align: center;
  /* display: flex; */
  padding-left: 20px;
  width: 50%;
  text-align: left;
}

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

top-support-sec

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

#top-support-sec {
  display: none;
}

body.home #top-support-sec {
  display: block;
}

#top-support-sec .wrap {
  background-color: #fff;
}

#top-support-sec .box01 {
  margin-bottom: 60px;
}

#top-support-sec .box01 h3 {
  text-align: center;
  color: #151515;
  /* text-decoration: underline; */
  font-size: 22px;
}

#top-support-sec .box01 ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

#top-support-sec .box01 ul li {
  width: 24%;
  position: relative;
  width: -webkit-calc(25% - 10px);
  width: calc(25% - 10px);
}

#top-support-sec .box01 ul li a {
  display: block;
  line-height: 1;
}

#top-support-sec ul li a {
  transition-duration: 300ms;
}

#top-support-sec ul li a:hover {
  opacity: 0.6;
}

#top-support-sec .box02 {
}

#top-support-sec .box02 h3 {
  color: #151515;
  text-align: center;
  /* text-decoration: underline; */
}

#top-support-sec .box02 .flex-box {
  display: flex;
  justify-content: space-around;
}

#top-support-sec .box02 .flex-box .box {
  width: 24%;
  position: relative;
  width: -webkit-calc(25% - 10px);
  width: calc(25% - 10px);
}

#top-support-sec .box02 .flex-box ul {
  margin-top: 0px;
}

#top-support-sec .box02 .flex-box ul li {
}

#top-support-sec .box02 .flex-box ul li a {
}

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

top-contact-sec

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

#top-contact-sec {
}

#top-contact-sec .inner {
}

#top-contact-sec .wrap {
  background-image: url(../img/contact-bg.jpg);
  background-position: center;
  background-size: cover;
}

#top-contact-sec .btn {
  text-align: center;
}

#top-contact-sec .btn a {
  border: solid 1px #fff;
  padding: 20px 80px;
  display: inline-block;
  position: relative;
  line-height: 1;
  font-weight: bold;
  position: relative;
  z-index: 1;
  transition-duration: 300ms;
  color: #fff;
}

#top-contact-sec .btn a:hover {
}

#top-contact-sec .btn a:hover:before {
  opacity: 0.7;
}

#top-contact-sec .btn a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 20%,
    #5c60d0 35%,
    #2b73e9 50%,
    #5c60d0 65%,
    #ad4fa6 80%
  );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: left center;
  background-size: 200% auto;
  z-index: -1;
  opacity: 0;
  transition-duration: 300ms;
}

#top-contact-sec p {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

#top-contact-sec .btn a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

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

footer

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

footer {
}

footer .wrap {
  background-color: #151515;
}

footer .inner {
  display: flex;
  padding: 10px 40px;
  justify-content: space-between;
  align-items: center;
}

footer .f-sns {
  display: flex;
  align-items: center;
}

footer .f-sns p {
  font-size: 10px;
  font-weight: bold;
}

footer .f-sns a {
  margin-left: 20px;
  transition-duration: 300ms;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
footer .f-sns a svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

footer .f-sns a:hover {
  opacity: 0.6;
}

footer .copy {
  font-size: 10px;
}

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

modal

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

.modal {
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  color: #151515;
  z-index: 9;
  /* transition-duration: 400ms; */
  display: none;
}

.modal.active {
  /* opacity:1; */
  /* z-index: 10; */
}

.modal .wrap {
  position: relative;
}

.modal .inner {
  padding: 200px 0px;
  position: relative;
}

.modal .js-close-btn {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 40px;
  top: 100px;
}

.modal .js-close-btn span {
  height: 1px;
  background-color: #111;
  width: 100%;
  display: block;
}

.modal .js-close-btn span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(20px) rotate(45deg);
  transform: translateY(20px) rotate(45deg);
}

.modal .js-close-btn span:nth-of-type(2) {
  top: 9px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

.modal .inner {
}

.modal .comment-modal .img-name {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.modal .comment-modal .img-name img {
  width: 180px;
}

.modal .comment-modal .img-name .name-wrap {
  padding-left: 20px;
}

.modal .comment-modal .img-name .name-wrap .sub {
  font-size: 12px;
  color: #151515;
  font-weight: bold;
}

.modal .comment-modal .img-name .name-wrap .name {
  font-size: 18px;
  color: #151515;
  font-weight: bold;
}

.modal .comment-modal .img-name .name-wrap .position {
  font-size: 11px;
  color: #666;
  word-break: keep-all;
  font-weight: bold;
  line-height: 1.5;
}

.modal .btn-wrap {
  width: 200px;
  margin: 0 auto;
  margin-top: 40px;
}

.modal .btn {
  padding: 10px 20px;
}

.modal .btn p {
  text-align: center;
  color: #fff;
}

.modal .btn p i {
  position: relative;
  left: -10px;
}

.modal .text-area {
}

.modal .text-area p {
  font-size: 14px;
}
.modal .text-area p a{color: #151515;text-decoration: underline;}

.modal.movie-modal {
}
.modal .text-area img {
  margin: 10px 0px;
}

.modal.movie-modal .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.modal.movie-modal .inner {
  padding: 120px 40px;
  max-width: 808px;
  margin: 0 auto;
  width: 100%;
}

.modal.movie-modal .text-area {
}

.modal.movie-modal .text-area p {
  padding: 0 0 56.25%;
  width: 100%;
  position: relative;
}

.modal.movie-modal .text-area p iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-return .modal .btn-wrap {
  width: 100%;
}


.page-return .modal .btn-wrap a {
  display: block;
  padding: 20px 20px;
}

.page-return .modal .btn-wrap a p {
  font-weight: bold;
  position: relative;
}

.page-return .modal .btn-wrap a p:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 0;
}

.page-return .return-faq{/* font-size: 20px; */text-align: center;margin-top: 20px;}
.page-return .return-faq p{font-size: 16px;font-weight: 700;}
.page-return .return-faq a{
  color: #151515;
  text-decoration: underline;
  font-size: 100%;
  transition-duration:300ms;
}
.page-return .return-faq a:hover{
  opacity:0.6;
}
.page-return .modal .back-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.page-return .modal .back-btn-wrap a {
  display: inline;
  position: unset;
  height: 100%;
  width: 100%;
  transition-duration: 300ms;
}

.page-return .modal .back-btn-wrap a p {
  color: #999;
  text-decoration: underline;
  font-weight: bold;
  display: inline;
}

.page-return .modal .back-btn-wrap a:hover {
  opacity: 0.6;
}

.page-return .modal .img-wrap {
  margin-bottom: 20px;
}

.page-return .modal h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.page-return .modal h3 {
  font-size: 18px;
}
.page-return .modal h3 a {
  font-size: 100%;
  text-decoration: underline;
  color: #151515;
  transition-duration:300ms;
}
.page-return .modal h3 a:hover{
  opacity:0.6;
}
.page-return .modal .main {
  margin-top: 20px;
}

.page-return .modal .main p {
  font-size: 16px;
  /* font-weight: bold; */
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.page-return .modal .sub {
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-return .modal .sub p {
}
.page-return .modal .sub a {
  color: #151515;
  text-decoration: underline;
  font-size: 100%;
}
.page-return .modal .sub .info {
}
.page-return .modal .sub .info p {
  font-size: 13px;
  color: #676767;
  margin-top: 6px;
}

.page-return .modal .sub .info a {
  font-size: 13px;
  color: #333;
  text-decoration: underline;
  transition-duration: 300ms;
}

.page-return .modal .sub a:hover {
  opacity: 0.6;
}
.page-return .modal .sub h4 {
  margin-top: 40px;
}
/*=================================================================================

page
page-fv-sec

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

#page-fv-sec {
}

#page-fv-sec .wrap {
  position: relative;
  min-height: 540px;
}

#page-fv-sec .wrap .inner {
  height: 100%;
}

#page-fv-sec .fv-text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  max-width: 808px;
  margin: auto;
  padding: 100px;
  opacity: 0;
  transition-duration: 400ms;
}
#page-fv-sec .fv-text-wrap img {
  z-index: 1;
}

#page-fv-sec .fv-text-wrap.loaded {
  opacity: 1;
}

#page-fv-sec .fv-text-wrap .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/page-fv-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  top: 0;
  left: 0;
}

#page-contents-sec {
  /* background-color: #fff; */
}

.page-contents-sec .all-wrap {
  padding: 0 40px;
  padding-bottom: 120px;
}

.page-contents-sec .all-inner {
  background-color: #fff;
  padding: 100px 0px;
}

.page-grade-sec {
  font-size: 28px;
  text-align: center;
  padding: 16px 10px;
  margin: 20px 0px 40px;
}

.flex-three-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.flex-three-wrap.a-course{
  justify-content: end;
}
.flex-three-wrap.a-course .box{
  width: auto;
  margin-bottom: 14px;
  padding-right: 28px;
  position: relative;
  margin-right: 28px;
}
.flex-three-wrap.a-course .box::after{
  content: "/";
  position: absolute;
  color: #a5a5a5;
  top: -5px;
  right: 0;
}
.flex-three-wrap.a-course .box p{
  font-size: 14px;
  margin-top: 0px;
}
.flex-three-wrap:after {
  content: "";
  display: block;
  width: 50%;
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}

.flex-three-wrap .box {
  width: 24%;
  width: -webkit-calc(25% - 10px);
  width: calc(25% - 10px);
  margin-bottom: 60px;
}

.flex-three-wrap .box a {
  display: block;
  position: relative;
  font-size: 14px;
}

.flex-three-wrap .box a .thumb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  transition-duration: 600ms;
  opacity: 0;
  top: 0;
}

.flex-three-wrap .box a:hover .thumb:before {
  opacity: 0.6;
}

.flex-three-wrap .box a img {
}

.flex-three-wrap .box a p {
  color: #4e4e4e;
  font-size: 12px;
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.flex-three-wrap .thumb {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0px 1px 10px 1px rgba(150, 150, 150, 0.1);
}
.page-supporting .unit .date{
  color: #888;
    font-size: 12px;
    margin-top: 20px;
}
.page-supporting .unit02 .subtit{
  color: #333;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  margin-top: 20px;
}
/*=================================================================================

page
page-know

=================================================================================*/
.page-know .all-wrap {
  padding: 0;
}

.page-know .all-inner {
  padding: 0;
  background-color: unset;
}

.page-know .unit {
  padding: 140px 0px;
}

.page-know .unit h3 {
}

.page-know .unit .text-wrap {
  margin-top: 60px;
}

.page-know .unit p {
  margin-bottom: 40px;
  font-size: 18px;
}

.page-know .unit p.caption {
  font-size: 12px;
  font-style: italic;
}

.page-know .unit02 p {
  color: #151515;
}

.page-know .unit01 {
  background-image: url(../img/page-know-01.jpg);
  background-position: center;
  background-size: cover;
}

.page-know .unit02 {
  background-image: url(../img/page-know-02.jpg);
  background-position: center;
  background-size: cover;
}

.page-know .unit04 {
  position: relative;
  z-index: 0;
}

.page-know .unit04 .bg {
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 20%,
    #5c60d0 35%,
    #2b73e9 50%,
    #5c60d0 65%,
    #ad4fa6 80%
  );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: right center;
  background-size: 200% auto;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  opacity: 0.8;
}

.page-know .unit04 .wrap {
  z-index: 2;
  position: relative;
}

.page-know .unit03 h4 {
  text-align: center;
  font-size: 26px;
  margin-top: 80px;
}

.page-know .unit03 {
  background-color: rgba(17, 17, 17, 0.5);
}

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

page
page-supporting

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

.page-supporting .all-wrap {
  padding: 0 40px;
  padding-bottom: 120px;
  margin-top: 60px;
}

.page-supporting .all-inner {
  /* background-color: #f9f9f9; */
}

.page-supporting h3 {
  color: #151515;
  font-size: 20px;
  text-align: center;
  /* padding: 10px; */
  /* width: 400px; */
  /* margin: 0 auto; */
}

.page-supporting .unit02 {
  padding-bottom: 60px;
}

.page-supporting .unit .inner {
  padding: 0 40px;
}

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

page
page-seminar

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

.page-seminar {
}
.page-bizu .unit01 {
  padding-bottom: 100px;
}
.page-seminar .unit01 {
  padding-bottom: 60px;
}

.page-seminar .unit01 p {
  color: #333;
  margin-bottom: 20px;
}

.page-seminar .unit01 .text-wrap {
  margin-bottom: 60px;
}

.page-seminar .unit01 ul {
  padding: 20px;
  border: solid 1px #666;
}

.page-seminar .unit01 ul li {
  font-size: 12px;
  color: #666;
}
.page-bizu ul{
  border: unset;
  padding: 0;
  margin: 30px 0px 40px;
}
.page-bizu ul li{
    border-bottom: solid 1px #999;
    margin-bottom: 20px;
    transition: .2s;
    display: flex;
}
.page-bizu ul li a{
    display: flex;
}
.page-bizu ul li p{
    margin-bottom: 0px;
    font-size: 14px;
    color: #666;
}
.page-bizu ul li .day{color: #666;margin-right: 0px;}
.page-bizu ul li .tit{
    margin-left: 40px;
}
.page-bizu ul li:hover{
    opacity: 0.5;
}

.page-seminar .unit01 .sub {
  margin-top: 40px;
}

.page-seminar .unit02 h3,
.page-bizu h3 {
  text-align: center;
  font-size: 22px;
  color: #151515;
  margin-bottom: 30px;
}
.page-bizu .unit03 {
  padding-bottom: 100px;
  background-color: #f9f9f9;
  padding-top: 80px;
}

.page-seminar .unit02 h3 span {
  font-size: 70%;
}

.page-seminar .unit02 .sub-tit {
  text-align: center;
  color: #333;
  line-height: 1;
  font-size: 12px;
}

.page-seminar .unit02 {
  background-color: #f9f9f9;
}
.page-bizu .unit02 {
  background-color: #ffffff;
}

.page-seminar .unit02 .inner {
  padding: 100px 40px;
}
.page-bizu .unit02 .inner {
  padding-top: 0px;
  padding-bottom: 60px;
}
.page-seminar .all-inner {
  padding-bottom: 0px;
}

.page-seminar .flex-three-wrap .box .name {
  font-size: 12px;
  /* color: #666; */
}

.page-seminar .flex-three-wrap .box .program-name {
  font-size: 12px;
  padding-right: 20px;
  margin-top: 5px;
  font-weight: bold;
}

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

page
page-use

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

.page-use .page-grade-sec {
  font-size: 20px;
  margin-bottom: 40px;
}

.page-use .text-wrap {
  margin-top: 40px;
}

.page-use .unit {
  margin-bottom: 100px;
}
.page-use .unit03 {
  margin-bottom: 0px;
}
.page-use .unit p {
  /* font-size: 14px; */
  /* font-weight:bold; */
  color: #333;
  margin-bottom: 20px;
}
.page-use .unit p.caption{
  font-size: 10px;
  color: #999;
}
.page-use .unit h4 {
  font-size: 16px;
  /* font-weight:bold; */
  color: #151515;
  margin: 60px 0 10px;
}
.page-use .unit p a {
  color: #151515;
  font-weight: bold;
  text-decoration: underline;
  transition-duration:300ms;
}
.page-use .unit p a:hover{
  opacity:0.6
}

.page-use .unit .heading {
  padding: 40px;
  border: solid 1px #999;
  margin: 40px 0px;
  font-size: 18px;
}
.page-use .unit .heading p {
  margin-bottom: 0px;
  text-align: center;
  margin-top: 10px;
}
.page-use .unit .heading h3 {
  color: #151515;
  text-align: center;
}

.page-use .unit00 h3 {
  text-align: center;
  color: #151515;
  font-size: 20px;
  margin-bottom: 10px;
}
.page-use .unit00 p {
  text-align: center;
  color: #151515;
  font-size: 16px;
  margin: 10px 0px;
  font-weight: bold;
}

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

page
page-qa

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

.page-qa {
}

.page-qa .unit01 {
}

.page-qa .unit01 a {
  position: relative;
  display: block;
  font-size: 14px;
  text-align: left;
  padding: 20px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-qa .unit01 a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.page-qa h3 {
  color: #151515;
  font-size: 24px;
  border-bottom: solid 1px #151515;
}
.page-qa h4 {
  color: #dc3091;
  font-size: 14px;
  margin-top: 10px;
}

.page-qa p {
  color: #333;
}

.page-qa .text-wrap {
  margin-top: 40px;
}

.page-qa p.a a {
  text-decoration: underline;
}

.page-qa p.q {
  font-weight: bold;
  margin-bottom: 10px;
}

.page-qa .box {
  margin-bottom: 60px;
}

.page-qa p.last {
}

.page-qa .unit {
  margin-top: 80px;
}

.page-qa .unit01 {
  margin-top: 0px;
}

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

page
page-return

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

.page-return {
}

.page-return .page-contents-sec .all-wrap {
  padding-left: 0px;
  padding-right: 0px;
}

.page-return .page-contents-sec .all-inner {
  padding: 0px;
  background-color: unset;
}

/*タブ切り替え全体のスタイル*/
.page-return .tabs {
  /* background-color: #fff; */
  margin: 0 auto;
}

/*タブのスタイル*/
.page-return .tab_item {
  width: calc(100% / 2);
  height: 70px;
  line-height: 70px;
  font-size: 20px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.page-return .tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.page-return .tab_content {
  display: block;
  /* padding: 40px 40px 0; */
  clear: both;
  overflow: hidden;
}

.page-return .tab_content.onload {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  color: #fff;
  background: #da558f;
  background: -moz-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: -webkit-linear-gradient(
    30deg,
    #da558f,
    #ad4fa6 30%,
    #5c60d0 70%,
    #2b73e9
  );
  background: linear-gradient(
    60deg,
    #da558f,
    #ad4fa6 20%,
    #5c60d0 35%,
    #2b73e9 50%,
    #5c60d0 65%,
    #ad4fa6 80%
  );
  background-size: 100% auto;
  transition-duration: 600ms;
  background-position: center;
  background-position: left center;
  background-size: 200% auto;
}

.page-return .unit01 {
  background-color: #fff;
}
.page-return .unit .swiper-slide a {
  width: 100%;
}
.page-return .unit .article {
  /* width: 400px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.page-return .unit .article .thumb {
  /* height: 322px; */
  display: flex;
  align-items: center;
}

.page-return .unit .article .thumb .grade {
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-return .unit .article .thumb.coming .grade {
  background: none;
}
.page-return .unit .article .thumb .grade::after {
  content: "VIEW MORE";
  position: absolute;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  left: 0;
  right: 0;
}

.page-return .unit .article .thumb.coming .grade:after {
  display: none;
}

.page-return .unit .article .thumb img {
  position: relative;
  z-index: 2;
  transition-duration: 300ms;
}

.page-return .unit01 .article {
  /* width: 400px; */
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
}

.page-return .unit01 .article .thumb {
  /* min-height: 340px; */
}

.page-return .unit .article a:hover img {
  opacity: 0.2;
}

.page-return .unit .article a:hover .coming img {
  opacity: 1;
}

.page-return .unit01 .article a.box .tit {
  font-size: 14px;
  color: #151515;
  font-weight: bold;
  /* margin-top: 0px; */
}

.page-return .unit01 .article a.box .viewmore {
  margin-top: 0px;
  color: #999;
  font-size: 10px;
  font-weight: 500;
}

.page-return .unit01 .article a.box i {
  margin-left: 4px;
}

.page-return .unit .inner {
  padding: 100px 0px;
}

.page-return .wrap {
  background-size: cover;
  background-position: center;
}

.page-return .sec-tit {
  text-align: center;
  /* color: #151515; */
  margin-bottom: 40px;
}

.page-return .sec-tit p {
  font-weight: 600;
  line-height: 1;
}

.page-return .sec-tit h3 {
  font-size: 30px;
}

.page-return .unit01 .sec-tit p {
  color: #151515;
}

.page-return .unit01 .sec-tit h3 {
  color: #151515;
}

.page-return .unit .tit-wrap {
}

.page-return .unit .tit-wrap .tit {
  font-size: 14px;
  font-weight: bold;
  /* margin-top: 10px; */
  line-height: 1.5;
  /* width: 310px; */
  padding-right: 10px;
  width: 75%;
  width: -webkit-calc(100% - 80px);
  width: calc(100% - 80px);
}

.page-return .unit .tit-wrap .viewmore {
  font-size: 11px;
  /* margin-top: 5px; */
  display: none;
  width: 80px;
}

.page-return .unit .tit-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 5px;
  margin-top: auto;
  margin-top: 10px;
  /* flex-wrap: wrap; */
}

.page-return .unit .tit-wrap .tit {/* width: 100%; */}

.page-return .unit04 {
}

.page-return .unit04 h4 {
  color: #151515;
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.page-return .unit04 .inner {
}

.page-return .unit04 .wrap {
  background-color: #fff;
}

.page-return .unit04 .btn {
  /* display: inline-block; */
  text-align: center;
}

.page-return .unit04 .btn a {
  color: #fff;
  display: inline-block;
  padding: 20px 60px;
  position: relative;
  font-weight: 600;
}

.page-return .unit04 .caption {
  color: #333;
  margin-top: 80px;
  font-size: 12px;
}

.page-return .unit04 .btn a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

.page-return .unit .article .checkon a.box .viewmore.checkon-text {
  display: block;
}

.page-return .unit .article .checkoff a.box .viewmore.checkoff-text {
  display: block;
}

.page-return .unit .article .checkon .tit-wrap {
  display: block;
}

.page-return .modal .inner {
  padding: 100px 40px;
  max-width: 700px;
}

.page-return .unit .article .checkon,
.page-return .unit .article .checkoff {
  width: 100%;
}
/*=================================================================================

page
page-category

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

.page-category .all-wrap {
}

.page-category .all-inner {
  background-color: unset;
  padding-bottom: 0px;
}

.page-category .page-tit {
  text-align: center;
  color: #151515;
  font-size: 24px;
  line-height: 1;
}

.page-category .unit {
  background-color: #fff;
}

.page-category .unit .inner {
  padding: 100px 40px;
}

.page-category .unit .flex-three-wrap {
  margin-top: 40px;
}

.page-category .flex-three-wrap .box a p {
  padding-right: 20px;
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 37px;
  overflow: hidden;
  margin-top: 10px;
  font-weight: 600;
}

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

page
page-single

=================================================================================*/
.page-single {
}

.page-single .all-wrap {
  padding-top: 100px;
}

.page-single .all-inner {
  padding-bottom: 120px;
  padding-top: 60px;
}

.page-single .unit .wrap {
}

.page-single .unit .inner {
}

.page-single .unit .post-kv {
  position: relative;
  box-shadow: 0px 1px 10px 1px rgba(150, 150, 150, 0.1);
}

.page-single .unit .post-kv .thumb {
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
}

.page-single .unit .contents-wrap {
}

.page-single .unit .contents-inner {
  margin-top: 40px;
}

.page-single .unit .contents-inner .cat {
  color: #4e4e4e;
  font-weight: bold;
  font-size: 14px;
}

.page-single .unit .contents-inner .day {
  color: #999;
  font-size: 12px;
  font-style: italic;
}

.page-single .unit .contents-inner .tit {
  color: #151515;
  font-size: 24px;
}
.page-single .unit .contents-inner .name {
  font-size: 12px;
  color: #333;
}

.page-single .article-wrap {
  margin-top: 40px;
}

.page-single .article-inner {
}

.page-single .article-wrap p {
  color: #333;
  font-size: 16px;
  margin-bottom: 14px;
  /* position: relative; */
  /* top: -20px; */
  line-height: 2;
  letter-spacing: 0.1rem;
}
.page-single .article-wrap h3 {
  color: #333;
  font-size: 20px;
  font-weight:bold;
  margin-bottom: 10px;
  margin-top: 40px;
}
.page-single .article-wrap p a{
  font-size: 100%;
  color: #333;
  text-decoration: underline;
  transition-duration: 300ms;
}
.page-single .article-wrap p a:hover{
  opacity:0.6;
}
.page-single .article-wrap img {
  width: auto;
  margin: auto;
  display: block;
  margin-top: 20px;
}
.page-single .article-wrap em{
  display: block;
  /* position: relative; */
  /* top: -20px; */
}
.page-single .article-wrap h3 {
}

.page-single .sns_count {
  margin-top: 40px;
}

.page-single .sns_count ul {
  display: flex;
  justify-content: space-between;
}

.page-single .sns_count li {
  width: 33%;
}

.page-single .sns_count li a {
  display: block;
  background-color: #f3f3f3;
  text-align: center;
  padding: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 300ms;
  font-size: 14px;
}

.page-single .sns_count li a svg {
  height: 14px;
  position: relative;
}

.page-single .sns_count li a.ln svg .st0 {
  fill: #fff;
}

.page-single .sns_count li a.tw {
  background-color: #3cf;
  /* background-color: #3b5998; */
}

.page-single .sns_count li a.tw:hover {
}

.page-single .sns_count li a.fb {
  background-color: #3b5998;
  /* background-color: #3cf; */
}

.page-single .sns_count li a.fb:hover {
}

.page-single .sns_count li a.ln {
  background-color: #00c402;
}

.page-single .sns_count li a.ln:hover {
}

.page-single .sns_count li a:hover {
  opacity: 0.6;
}

.page-single .line {
  width: 100px;
  height: 2px;
  background-color: #c7c7c7;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
.page-single .movie-wrap {
  padding: 0 0 56.25%;
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  margin: 20px 0px;
}
.page-single .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-block {
  display: none;
}

.fb-page,
.twitter-timeline {
  width: 100%;
}
.breadcrumbs {
  margin-top: 40px;
  height: 33px;
  overflow: hidden;
  display: flex;
}
.breadcrumbs a {
  line-height: 1;
  display: contents;
  font-size: 10px;
}
.breadcrumbs span,
.breadcrumbs a span,
.breadcrumbs p {
  color: #999;
  font-size: 10px;
  font-weight: 500;
  /* display: inline-block; */
  line-height: 1;
  /* word-break: break-all; */
  overflow: hidden;
  height: 10px;
}
.breadcrumbs p {
  margin: 0 5px;
}
.swiper02 {
  padding: 0 40px;
  height: 100%;
  position: relative;
}

.swiper02 .swiper-slide {
  /* display: flex; */
  height: 100%; /* flex-direction: column; */
}
.swiper02 .article {
}
.swiper02 .swiper-button-next,
.swiper02 .swiper-button-prev {
  opacity: 1;
  transition-duration: 300ms;
  top: 0;
  padding: 0 20px;
  height: calc(100% - 78px);
  width: auto;
  color: #464646;
  font-size: 18px;
  /* opacity: 0.5; */
}
.swiper02 .swiper-button-next i,
.swiper02 .swiper-button-prev i {
  background-color: #fff;
  width: 40px;
  height: 40px;
  /* text-align: center; */
  justify-content: center;
  display: flex;
  align-items: center;
  opacity: 0.8;
}
.swiper02 .swiper-button-prev {
  left: 0;
}
.swiper02 .swiper-button-disabled {
  opacity: 0;
}

#top-news-sec .swiper02 .swiper-button-next,
#top-news-sec .swiper02 .swiper-button-prev {
  height: calc(100% - 70px);
  top: 18px;
}
.r-unit01-swiper-container.swiper02 .swiper-button-next,
.r-unit01-swiper-container.swiper02 .swiper-button-prev {
  height: calc(100% - 30px);
}

.page-single .wp-caption{
  width: 100%!important;
  margin-bottom: 14px;
}
.page-single .wp-caption-text{
  color: #333;
  font-size: 12px;
  font-style: italic;
  /* position: relative; */
  /* top: -20px; */
}
.page-single p.caption{
  color: #333;
  font-size: 12px;
  font-style: italic;
  position: relative;
  top: -10px;
}
/*=================================================================================

page
page-coupon

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

.page-coupon {
}
.page-coupon .unit01 {
}
.page-coupon .unit01 h3 {
  color: #151515;
  font-size: 22px;
  text-align: left;
}
.page-coupon .unit01 h4 {
  color: #151515;
  text-align: left;
  font-size: 16px;
  margin-top: 16px;
}
.page-coupon .unit01 p {
  color: #151515;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-coupon .unit01 p a{
  color: #151515;
  text-align: left;
  font-size: 14px;
  text-decoration: underline;
  transition-duration: 300ms;
}
.page-coupon .unit01 p a:hover{
  opacity:0.6;
}
.page-coupon .unit01 .text-wrap {
  padding: 20px 0px;
  border-top: solid 1px #999;
  margin-top: 40px;
  border-bottom: solid 1px #999;
}
.page-coupon .page-contents-sec .all-inner {
  background-color: unset;
}
.page-coupon .unit01 .wrap {
  background-color: #fff;
}
.page-coupon .unit01 .inner {
  padding: 100px 0px;
}

.page-about-sec{

}
.page-about-sec h3{
  margin-bottom: 10px;
  /* text-align: center; */
}
.page-about-sec .box01 p{
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-top: 6px;
}
.page-about-sec .box01 h5{
    color: #333;
    font-weight: bold;
    font-size: 16px;
    line-height: 2;
}
.page-about-sec .box01{margin-bottom: 60px;}
.page-about-sec .box02{margin-bottom: 60px;}
.page-about-sec .box03{

}
.page-about-sec .box02 p{
  /* text-align: center; */
  /* font-weight: 600; */
}
.page-about-sec .box02 a{}
.page-about-sec .box03 a{    margin-top: 10px;
  display: block;}
.page-about-sec .text-area{
  margin-bottom: 80px;
}

.executive{

}
.executive h2{font-size: 20px;}
.executive .wrap{background-color: rgba(255,258,255,0.8);color: #151515;padding: 40px 0px;}
.executive .inner{
  text-align: center;
}
.executive .flex{display: flex;justify-content: space-between;margin-top: 10px;flex-wrap: wrap;}
.executive .flex a{color: #151515;font-size: 16px;transition-duration: 300ms;/* margin: 0 10px; */margin-bottom: 10px;}
.executive .flex a:hover{
    opacity: 0.6;
}
.executive br{
  display: none;
}

.banner-area-0413{
  padding: 60px 0px;
  background-color: rgba(255,258,255,0.8);
}

.banner-area-0413 ul{
  display: flex;
  padding: 20px 40px;
  width: 100%;
  justify-content: space-between;
}

.banner-area-0413 ul a{
  width: 48%;
  transition-duration: 300ms;
}

.banner-area-0413 ul a:hover{
  opacity:0.6
}


@media screen and (max-width: 1024px) {
  header .nav-wrap ul li a {
    font-size: 10px;
  }

  header .nav-wrap ul li {
    padding-left: 10px;
  }

  header .cf-cta {
    padding: 12px;
    padding-left: 14px;
  }

  .page-category .unit .inner {
    padding: 100px 15px;
  }

  .page-contents-sec .all-wrap {
    padding: 0 20px;
    padding-bottom: 120px;
    padding-top: 100px;
  }
  .page-know .page-contents-sec .all-wrap {
    padding: 0px;
  }

  header .header-wrap {
    padding: 0 20px;
  }

  .slide-orverflow .slide-wrap {
    padding: 0 10px;
  }

  .slide-wrap .slide-content {
    margin: 0 10px;
  }
}

@media screen and (max-width: 900px) {
  header .nav-wrap {
    display: none !important;
  }

  #top-bg-sec .wrap {
    height: 110vh !important;
  }
}
@media screen and (max-width: 768px) {
  .executive .flex{
    display: block;
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    margin-top: 6px;
  }
  .executive .flex a{
    display: block;
    /* margin: 0 10px; */
    margin-bottom: 3px;
    font-size: 13px;
  }
  .executive h2{font-size: 4vw;line-height: 1.5;}
  .executive br{display: block;}
  .executive .wrap{
    padding: 30px 0px;
  }
}

@media screen and (max-width: 420px) {
  .sp-block {
    display: block;
  }

  #top-fv-sec .img-wrap img {
    padding: 80px 20px;
    padding-top: 40%;
  }

  header .cf-cta a {
    font-size: 10px;
    line-height: 1.4;
    padding: 10px 20px;
    padding-right: 26px;
  }

  header .cf-cta a::after {
    right: -11px;
  }

  #top-news-sec .inner {
    padding: 50px 0px;
  }

  #top-interview-sec .inner {
    padding: 60px 0px;
    padding-bottom: 30px;
  }

  .sec-tit-wrap h2 {
    font-size: 18px;
  }

  .sec-tit-wrap {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
  }

  #top-news-sec .article {
    /* width: 225px; */
  }

  #top-interview-sec .article {
    /* width: 310px; */
  }

  #top-news-sec .article a.box .tit {
    font-size: 10px;
    line-height: 1.5;
    height: 30px;
  }

  #top-interview-sec .article a.box .name {
    font-size: 11px;
    height: 18px;
  }

  #top-interview-sec .article a.box .tit {
    font-size: 10px;
    height: auto;
  }

  .slide-wrap .slide-content {
    margin: 0 5px;
  }

  #top-read-sec .inner {
    padding: 100px 15px;
  }

  #top-read-sec .text-wrap p {
    font-size: 12px;
  }

  header .header-wrap {
    padding: 0 15px;
  }

  #top-read-sec .btn a {
    padding: 18px 15px;
  }

  #top-read-sec .btn a .left p {
    font-size: 10px;
  }

  #top-read-sec .btn a .left h3 {
    font-size: 14px;
  }

  #top-read-sec .btn a:after {
    right: 15px;
    font-size: 18px;
  }

  #top-read-sec .text-wrap {
    margin: 20px 0px 20px;
  }

  .max-w {
    padding: 0 15px;
  }

  #top-about-sec .text-wrap p {
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 13px;
  }

  #top-about-sec .img-wrap {
    /* border-top: solid 2px #fff; */
    /* border-bottom: solid 2px #fff; */
  }

  #top-about-sec .text-wrap {
    margin: 20px 0px;
    margin-bottom: 40px;
  }

  #top-about-sec .text-wrap p {
    margin-bottom: 20px;
  }

  #top-about-sec .btn-area {
    display: block;
  }

  #top-about-sec .btn-area .btn {
    width: 100%;
    margin-bottom: 15px;
  }

  #top-about-sec .btn-area a {
    padding: 15px;
  }

  #top-about-sec .btn-area a p {
    font-size: 12px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: -11%;
    padding: 15px;
    font-size: 20px;
  }

  #cf-cta-sec a {
    padding: 30px 15px;
    display: block;
  }

  #cf-cta-sec a p {
    font-size: 5vw;
    line-height: 1.5;
    word-break: keep-all;
    /* display: flex; */
    /* align-items: center; */
    /* text-align: left; */
    /* justify-content: space-between; */
    /* width: 100%; */
  }

  #cf-cta-sec a .img-wrap {
    padding-right: 0px;
    /* display: flex; */
    /* justify-content: space-between; */
  }

  #cf-cta-sec a .img-wrap p:after {
    right: 0px;
    font-size: 5vw;
    position: absolute;
    right: 0;
  }

  #top-comment-sec .box a {
    display: block;
  }

  #top-comment-sec .box .img-name {
    width: 100%;
    padding: 15px;
  }

  #top-comment-sec .box .text-area {
    width: 100%;
    padding: 15px;
    padding-top: 0px;
  }

  #top-comment-sec .box .text-area p {
  }

  #top-support-sec .box01 ul {
    flex-wrap: wrap;
  }

  #top-support-sec .box01 ul li {
    width: 44%;
    position: relative;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  #top-support-sec .box02 .flex-box .box {
    width: 48%;
    position: relative;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
  }

  #top-support-sec .box01 h3 {
    font-size: 4vw;
    text-decoration: unset;
    line-height: 1.5;
  }

  #top-support-sec .box02 h3 {
    font-size: 13px;
    text-decoration: unset;
  }

  #top-tw-sec .inner {
    /* padding: 110px 0px; */
    display: block;
  }

  #top-tw-sec .tw-wrap,
  #top-tw-sec .facebook-timeline {
    text-align: right;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
  }

  #top-tw-sec .tw-wrap {
    margin-bottom: 40px;
  }

  footer .inner {
    display: flex;
    flex-wrap: wrap-reverse;
    padding: 30px 15px;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
  }

  footer .copy {
    margin-top: 20px;
  }

  footer .f-sns p {
    font-size: 12px;
  }

  footer .f-sns a {
    font-size: 18px;
    margin-left: 25px;
  }

  #top-comment-sec .box .text-area p {
    font-size: 11px;
    height: 58px;
  }

  #top-comment-sec .box .btn p {
    height: auto;
  }

  #h-clone .nav-wrap {
    display: block;
  }

  #h-clone .nav-wrap ul li {
    margin-bottom: 10px;
  }

  #h-clone .nav-wrap ul li a,
  #h-clone .nav-wrap ul li.h-sup-wrap span{
    font-size: 18px;
  }

  #h-clone.active .nav-wrap ul.sub {
    transition-delay: unset;
  }

  #h-clone .nav-wrap ul li.h-share {
    margin-top: 40px;
  }

  .modal .js-close-btn {
    right: 15px;
    top: 80px;
  }

  .modal .inner {
    padding: 100px 0px;
  }

  .modal .btn-wrap {
    width: 100%;
  }

  .modal .text-area p {
    font-size: 13px;
  }

  #page-fv-sec .fv-text-wrap {
    padding: 15px;
    overflow-x: hidden;
  }

  #page-fv-sec .wrap {
    height: 500px !important;
    min-height: auto;
  }

  #page-fv-sec .fv-text-wrap .bg {
    width: 130%;
    left: -15%;
  }

  .page-contents-sec .all-wrap {
    padding: 0px;
    margin-top: 20px;
    /* margin-bottom: 120px; */
  }

  .flex-three-wrap .box {
    width: 44%;
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    margin-bottom: 40px;
  }

  .page-supporting .unit .inner {
    padding: 0 15px;
  }

  .page-contents-sec .all-inner {
    padding: 60px 0px;
    /* padding-bottom: 0px; */
  }

  .page-seminar .all-inner {
    padding-bottom: 0px;
  }

  .page-supporting h3 {
    font-size: 18px;
  }

  .page-supporting .unit02 {
    padding-top: 40px;
  }

  .flex-three-wrap {
    margin-top: 15px;
  }

  .page-use .page-grade-sec {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .page-use .unit p {
    font-size: 13px;
    margin-bottom: 23px;
  }

  .page-use .unit {
    margin-bottom: 60px;
  }

  .page-grade-sec {
    padding: 14px 10px;
  }

  .page-use .text-wrap {
    margin-top: 30px;
  }

  .page-use .unit00 h3 {
    font-size: 4vw;
  }
  .page-use .unit00 p{text-align: left;}
  .page-use .unit00 p br{
    display:none
  }

  .page-grade-sec {
    font-size: 14px;
  }

  .page-know .unit p {
    margin-bottom: 13px;
    font-size: 13px;
  }

  .page-know .unit .text-wrap {
    margin-top: 20px;
  }

  .page-know .unit {
    padding: 100px 0px;
  }

  .page-know .unit03 h4 {
    font-size: 4vw;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .page-seminar .unit01 p {
    color: #151515;
    /* margin-top: 13px; */
    font-size: 14px;
  }
  .page-bizu .unit01 ul li a {
    display: block;
}

  .page-seminar .unit01 .text-wrap {
    margin-top: 20px;
  }
  .page-bizu .unit01 .text-wrap{
    margin-bottom: 20px;
  }

  .page-seminar .unit01 ul li {
    font-size: 11px;
  }
  .page-bizu .unit01 ul li{
    font-size: 12px;
    margin-bottom: 30px;
  }

  .page-seminar .unit01 ul {
    padding: 15px;
  }
  .page-bizu .unit01 ul{
    padding: 0;
  }

  .page-seminar .unit01 {
    padding-bottom: 60px;
  }

  .page-seminar .unit02 .inner {
    padding: 60px 15px;
  }
.page-bizu .unit02 .inner {
    padding-top: 0px;
    padding-bottom: 40px;
}
.page-bizu .unit03{
  padding-bottom: 80px;
  padding-top: 60px;
}
  .page-seminar .unit02 .sub-tit {
    font-size: 10px;
  }

  .page-seminar .unit02 h3 {
    line-height: 1.2;
  }

  .page-seminar .flex-three-wrap .box .program-name {
    font-size: 11px;
    padding-right: 10px;
  }

  .page-qa .unit01 a {
    font-size: 13px;
    padding: 13px 15px;
    margin-bottom: 13px;
  }

  .page-qa h3 {
    font-size: 18px;
  }

  .page-qa p.a,
  .page-qa p.a a {
    font-size: 13px;
  }

  .page-category .all-wrap {
    margin-top: 0px;
  }

  .page-category .all-inner {
    padding: 0px;
  }

  .page-category .unit .inner {
    padding: 120px 15px;
  }

  #top-tw-sec .wrap {
    background-color: #ffffff94;
  }

  .home #top-tw-sec .wrap {
    background-color: #f3f3f3;
  }

  .page-return .tab_item {
    height: 50px;
    line-height: 50px;
    font-size: 13px;
  }

  .page-return .unit .inner {
    padding: 60px 0px;
  }

  .page-return .unit .sec-tit p {
    font-size: 12px;
    line-height: 1.2;
  }

  .page-return .unit .sec-tit h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .page-return .sec-tit {
    margin-bottom: 15px;
  }

  .page-return .unit .article {
    width: 230px;
  }

  .page-return .unit01 .article .thumb {
    min-height: 200px;
  }

  .page-return .unit .article a.box .tit {
    font-size: 12px;
    width: 100%;
  }

  .page-return .unit .article a.box .viewmore {
    font-size: 10px;
  }

  .page-return .unit .tit-wrap {
    margin-top: 5px;
  }

  .page-return .modal .inner {
    padding: 160px 15px;
  }

  .page-return .modal .main p {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .page-return .modal .sub p {
    font-size: 10px;
  }

  .page-return .modal h2 {
    font-size: 18px;
  }

  .page-return .modal h3 {
    font-size: 15px;
  }

  .page-return .unit04 .inner {
    padding: 60px 15px;
  }

  .page-return .unit04 h4 {
    font-size: 14px;
    text-align: left;
  }

  .page-return .unit04 .caption {
    font-size: 11px;
    margin-top: 40px;
  }

  .page-return .unit04 .btn a {
    display: block;
    font-size: 13px;
    padding: 18px 60px;
  }

  header .nav-button {
    right: 0px;
  }

  .page-single .all-wrap {
    margin-top: 0px;
  }

  .page-single .all-inner {
    padding: 120px 0px;
  }

  .page-single .article-wrap p {
    margin-bottom: 34px;
    font-size: 14px;
  }

  .page-single .unit .contents-inner .tit {
    font-size: 15px;
  }

  .page-single .unit .contents-inner .cat {
    font-size: 12px;
  }

  .page-single .unit .contents-inner .day {
    font-size: 10px;
  }

  header .cf-cta {
    padding: 10px;
    padding-left: 20px;
    padding-right: 0px;
  }

  #top-read-sec .wrap {
    /* padding: 0; */
    padding-bottom: 60px;
    /* padding-top: 30px; */
  }

  #top-about-sec .wrap {
    /* padding-bottom: 10px; */
  }

  #top-news-sec .slide-orverflow {
    overflow: hidden;
    height: 190px;
    margin-top: 30px;
  }

  #top-news-sec .slide-orverflow .slide-wrap {
    padding: 0 10px;
    /* padding-bottom: 60px; */
    height: 200px;
  }

  #top-interview-sec .slide-orverflow {
    overflow: hidden;
    height: 240px;
  }

  #top-interview-sec .slide-orverflow .slide-wrap {
    padding: 0 10px;
    /* padding-bottom: 60px; */
    height: 260px;
  }

  .sec-padding {
    padding: 80px 0px 100px;
  }

  #top-video-sec .inner {
    padding-bottom: 20px;
  }

  #top-video-sec .swiper-slide .thumb:after {
    font-size: 20px;
  }

  .modal.movie-modal .inner {
    padding: 120px 15px;
  }

  .modal .wrap {
    height: 110vh;
  }

  .page-return .unit .slide-orverflow {
    height: 260px;
  }

  .page-return .unit .slide-orverflow .slide-wrap {
    height: 280px;
  }

  .page-return .unit01 .slide-orverflow {
    height: 260px;
  }

  .page-return .unit01 .slide-orverflow .slide-wrap {
    height: 280px;
  }

  #top-news-sec .slide-last .box,
  #top-interview-sec .slide-last .box {
    position: relative;
    top: -10px;
  }
  .page-return .unit .tit-wrap {
    display: block;
  }
  #top-contact-sec .btn a {
    font-size: 12px;
    border: solid 1px #fff;
    width: 100%;
  }
  .page-know .page-contents-sec .all-inner {
    padding: 0px;
  }
  .flex-three-wrap .box a p {
    font-size: 10px;
  }
  #top-bg-sec .wrap {
    background-image: url(../img/bg-sp.jpg);
  }
  .slide-content:last-child {
    padding-right: 15px;
  }
  #top-video-sec .sec-tit-wrap p {
    font-size: 12px;
  }
  #top-video-sec .swiper-slide .name {
    font-size: 10px;
    line-height: 1.5;
    height: 30px;
}
  .page-single .article-wrap {
    margin-top: 20px;
  }
  .page-category .flex-three-wrap .box a p {
    padding-right: 20px;
    font-size: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 33px;
    overflow: hidden;
    margin-top: 10px;
    font-weight: 600;
  }
  #top-comment-sec .box .btn p {
    font-size: 10px;
  }
  .scrollDowan img {
    bottom: 40px;
  }
  #top-news-sec .news-swiper-container,
  #top-interview-sec .interview-swiper-container {
    padding: 0 15px;
  }
  #top-news-sec .swiper02 .swiper-button-next,
  #top-news-sec .swiper02 .swiper-button-prev {
    height: calc(100% - 60px);
    padding: 0 15px;
  }
  .swiper02 .swiper-button-next,
  .swiper02 .swiper-button-prev {
    height: calc(100% - 64px);
    padding: 0 15px;
  }
  .swiper02 {
    padding: 0 15px;
  }
  .r-unit02-swiper-container.swiper02 .swiper-button-next,
  .r-unit02-swiper-container.swiper02 .swiper-button-prev,
  .r-unit03-swiper-container.swiper02 .swiper-button-next,
  .r-unit03-swiper-container.swiper02 .swiper-button-prev {
    height: calc(100% - 90px);
  }
  .swiper02 .swiper-button-next i,
  .swiper02 .swiper-button-prev i {
    background-color: #fff;
    width: 30px;
    height: 30px;
  }
  .swiper02 .swiper-button-next,
  .swiper02 .swiper-button-prev {
    font-size: 14px;
    padding: 0 5px;
  }
  .page-coupon .unit01 h3 br {
    display: none;
  }
  .page-coupon .page-contents-sec .all-wrap {
    margin-top: 0px;
  }
  .page-coupon .page-contents-sec .all-inner {
    padding-top: 0px;
  }
  .page-coupon .unit01 h3 {
    font-size: 18px;
  }
  .page-coupon .unit01 h4 {
    color: #151515;
    text-align: left;
    font-size: 14px;
    margin-top: 14px;
  }
  .page-use .unit .heading {
    padding: 40px 20px;
  }
  .page-use .unit .heading h3 {
    color: #151515;
    text-align: left;
  }
  .page-use .unit .heading p {
    margin-bottom: 0px;
    text-align: left;
  }
  .page-return .return-faq {
    /* font-size: 20px; */
    text-align: left;
  }
  .page-return .return-faq p {
    font-size: 13px;
  }
  .page-return .modal .sub .info p {
    font-size: 12px;
  }
  .flex-three-wrap.a-course .box {
    margin-bottom: 4px;
    padding-right: 0px;
    position: relative;
    margin-right: 9px;
  }
  .flex-three-wrap.a-course .box::after{
    position: relative;
    top: 0px;
    right: -4px;
  }
  .flex-three-wrap.a-course .box p,
  .flex-three-wrap.a-course  .box a,
  .flex-three-wrap.a-course .box {
    display: inline-block;
  }
  .flex-three-wrap.a-course{
    display: inline;
  }
  .flex-three-wrap.b-course{
    margin-bottom: 20px;
  }
  .page-about-sec .box01 p br{
    display: none;
  }
  .page-about-sec h3 {
    font-size: 14px;
  }
  .flex-three-wrap.a-course .box p {
    font-size: 11px;
  }
  #top-movie-sec .inner {
    position: relative;
    z-index: 1;
    padding: 0 15px;
}
#top-video-sec .video-swiper-container {
  overflow: hidden;
  position: relative;
  padding: 0 15px;
}
#top-video-sec {
  padding-top: 0px;
}
#top-video-sec .sec-padding{
  padding: 80px 0px 60px;
}
#top-video-sec .swiper02 .swiper-button-next,
#top-video-sec .swiper02 .swiper-button-prev{
  height: calc(100% - 34px);
}
.page-supporting .unit02 .subtit {
  margin-bottom: 30px;
  text-align: left;
}
.banner-area{margin-bottom: 60px;}
.banner-area .flex-wrap{display: block;justify-content: space-between;align-items: center;}
.banner-area .flex-wrap a{
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: 20px;
}
.banner-area-0413{
  padding: 30px 0px;
}

.banner-area-0413 ul{
  display: block;
  padding: 0px 15px;
}

.banner-area-0413 ul li{
  margin-bottom: 20px;
}

.banner-area-0413 ul a{
  width: 100%;
  margin-bottom: 20px;
}


.archive-btn {
    padding: 0 20px;
    margin-bottom: 40px;
    margin-top: 30px;
}
.archive-btn a{
  font-size: 11px;
}
.archive-btn a span{
  margin-top: 2px;
}
.page-bizu ul li{
  display: block;
}
.page-bizu ul li .tit {
  margin-left: 0px;
}
}
/* last */
