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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Verdana", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    font-size: 10px;
  }

  .container {
    min-width: 840px;
  }

  .wrapper {
    width: 788px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
@media only screen and (max-width: 768px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 1.48);
  }

  body {
    font-size: 0.05rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.085rem;
    padding-right: 0.085rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.opacity {
  opacity: 0 !important;
}

header .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .image-footer {
  z-index: 1;
}
header .form-search {
  display: flex;
}
header .form-search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #bcbec0;
}
header .search {
  cursor: pointer;
  transition: 0.25s;
}
header .search:hover {
  opacity: 0.8;
}
header .list-navigation li {
  color: #939598;
  text-align: center;
  transition: color 0.25s;
}
header .list-navigation li:hover span {
  color: #00aeef;
}
header .list-navigation li:hover:nth-child(2) a {
  color: #0095da;
}
header .list-navigation li:hover:nth-child(3) a {
  color: #f173ac;
}
header .list-navigation li:hover:nth-child(4) a {
  color: #00b26b;
}
header .list-navigation li:hover:nth-child(5) a {
  color: #f7941d;
}
header .list-navigation li:hover:nth-child(6) a {
  color: #0066b3;
}
header .list-navigation .is-active span {
  color: #00aeef;
}
header .list-navigation .is-active:nth-child(2) a {
  color: #0095da;
}
header .list-navigation .is-active:nth-child(3) a {
  color: #f173ac;
}
header .list-navigation .is-active:nth-child(4) a {
  color: #00b26b;
}
header .list-navigation .is-active:nth-child(5) a {
  color: #f7941d;
}
header .list-navigation .is-active:nth-child(6) a {
  color: #0066b3;
}
header .list-navigation span {
  display: block;
  color: #939598;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
header .list-navigation a {
  color: #231f20;
  display: block;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
header .list-function a {
  display: block;
  line-height: 2;
  color: #00aeef;
}

@media print, (min-width: 768px) {
  header {
    width: 100%;
    background: #fff;
    z-index: 10;
    min-width: 840px;
    padding-top: 34px;
  }
  header .container-header {
    margin-bottom: 20px;
  }
  header .header-info {
    width: 275px;
    padding-top: 5px;
  }
  header .header-navigation {
    display: block !important;
  }
  header .list-function {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    padding-left: 2px;
  }
  header .list-function li:not(:last-child) {
    margin-right: 19px;
  }
  header .list-function a {
    padding-left: 20px;
  }
  header .is-website,
  header .is-collection,
  header .is-members {
    position: relative;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  header .is-website,
  header .is-collection,
  header .is-members {
    padding-top: 5px;
  }
}
@media print, (min-width: 768px) {
  header .is-website a:before,
  header .is-collection a:before,
  header .is-members a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  header .is-website a:before {
    background: url(../new_img/common/header_icon_01.png) center/100% auto;
    width: 16px;
    height: 17px;
  }
  header .is-collection a:before {
    background: url(../new_img/common/header_icon_02.png) center/100% auto;
    width: 17px;
    height: 17px;
  }
  header .is-members a:before {
    background: url(../new_img/common/header_icon_03.png) center/100% auto;
    width: 16px;
    height: 15px;
  }
  header .form-search input {
    width: 221px;
    border: solid 1px #d1d2d4;
    margin-right: 7px;
    padding: 1px 7px 0;
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  header .form-search input {
    font-family: Meiryo, sans-serif;
    padding: 2px 7px 1px;
  }
}
@media print, (min-width: 768px) {
  header .form-search::placeholder {
    font-size: 12px;
    color: #bcbec0;
  }
  header .search {
    background: #00aeef url(../new_img/common/header_icon_search.png) center no-repeat;
    width: 47px;
    height: 21px;
    margin-top: 1px;
    padding: 0 15px;
    background-size: 14px 15px;
  }
  header .list-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  header .list-navigation li {
    border-left: solid 1px #6dcff6;
    width: 158px;
  }
  header .list-navigation li:nth-child(6) {
    border-right: solid 1px #6dcff6;
  }
  header .list-navigation span {
    font-size: 9px;
  }
  header .list-navigation a {
    font-size: 14px;
  }
  header .button-menu {
    pointer-events: none;
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 0.12rem 0 0;
  }
  header .overlay {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  header .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  header .header-logo {
    padding: 0 0.015rem;
  }
  header .logo img {
    width: 1.24rem;
  }
  header .list-function {
    display: none;
  }
  header .header-navigation {
    position: fixed;
    top: 0.085rem;
    right: 0;
    background: #f08300;
    width: 0.985rem;
    height: calc(100% - .17rem);
    margin-left: auto;
    padding: 0 0.07rem 0.57rem 0.075rem;
    display: none;
    overflow-y: auto;
    z-index: 1000;
  }
  header .navigation-inner {
    text-align: right;
  }
  header .close-menu {
    text-align: right;
    color: #fff;
    padding: 0.05rem 0 0.025rem;
    display: inline-block;
  }
  header .close-menu:before {
    display: inline-block;
    content: "";
    position: relative;
    top: 0.005rem;
    background: url(../new_img/common/sp/icon_common_white.png) center/100% auto no-repeat;
    margin-right: 0.025rem;
    width: 0.057rem;
    height: 0.054rem;
  }
  header .button-menu {
    background: url(../new_img/common/sp/button_menu.png) center/100% auto no-repeat;
    width: 0.17rem;
    height: 0.27rem;
    cursor: pointer;
    position: fixed;
    top: 0.12rem;
    right: -0.01rem;
    z-index: 10;
  }
  header .list-navigation {
    margin-bottom: 0.04rem;
  }
  header .list-navigation a {
    position: relative;
    font-size: 0.05rem;
    text-align: left;
    padding: 0.0235rem 0.125rem;
  }
  header .list-navigation a:before {
    position: absolute;
    content: "";
    background: url(../new_img/common/sp/icon_common.png) center/100% auto;
    width: 0.0671rem;
    height: 0.0632rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0.04rem;
  }
  header .list-navigation li {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.01rem;
  }
  header .list-navigation li:nth-child(1) {
    background: #fff;
  }
  header .list-navigation li:nth-child(2) {
    background: #eaf6fd;
  }
  header .list-navigation li:nth-child(3) {
    background: #fdeff5;
  }
  header .list-navigation li:nth-child(4) {
    background: #ebf5ec;
  }
  header .list-navigation li:nth-child(5) {
    background: #feecd2;
  }
  header .list-navigation li:nth-child(6) {
    background: #eaf6fd;
    margin-bottom: 0.03rem;
  }
  header .form-search input {
    border: solid 1px #fff;
    border-radius: 0;
    width: 0.68rem;
    margin-right: 0.02rem;
    padding: 0 0.04rem;
    line-height: 2;
  }
  header .form-search input::placeholder {
    color: #f8c386;
  }
  header .search {
    background: url(../new_img/common/sp/header_icon_search.png) #00a1e9 center/0.05rem 0.05rem no-repeat;
    width: 0.2rem;
    height: 0.105rem;
  }
}
@media only screen and (max-width: 768px) {
  header .header-navigation,
  header .button-menu {
    transition: right 0.3s;
  }
  header .header-navigation {
    display: block;
    right: -0.985rem;
  }
  header .button-menu {
    right: 0;
  }
  header.is-active .button-menu {
    right: 0.985rem;
  }
  header.is-active .header-navigation {
    right: 0;
  }
  header.is-active .overlay {
    visibility: visible;
    opacity: 1;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer .wrapper {
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .wrapper {
    overflow: hidden;
  }
}
footer .wrapper:after {
  position: absolute;
  content: "";
  width: 100%;
  background: #5982af;
}
footer .wrapper a {
  z-index: 1;
}
footer .footer-detail {
  position: relative;
}
footer .phone-contact {
  display: flex;
  align-items: center;
}
footer .phone-contact a {
  color: #808285;
}
footer .list-contact {
  display: flex;
  align-items: center;
}
footer .list-contact li {
  position: relative;
}
footer .list-contact a {
  line-height: 2;
  display: block;
}
footer .list-contact a:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
footer .button-to-top {
  cursor: pointer;
  display: none;
  z-index: 100;
}
footer .button-to-top span {
  display: block;
}

@media print, (min-width: 768px) {
  footer {
    width: 100%;
    background: #fff;
    z-index: 10;
    bottom: 0;
    min-width: 840px;
    padding-bottom: 39px;
  }
  footer .wrapper {
    display: flex;
    align-items: center;
  }
  footer .wrapper:after {
    height: 19px;
    bottom: 4px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .wrapper:after {
    bottom: 6px;
  }
}
@media print, (min-width: 768px) {
  footer .image-footer {
    z-index: 1;
  }
  footer .footer-detail {
    order: 2;
    margin: 5px 0 30px 20px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .footer-detail {
    margin-bottom: 27px;
  }
}
@media print, (min-width: 768px) {
  footer .footer-title {
    color: #f58220;
    font-size: 23px;
    margin-bottom: 8px;
  }
  footer .address,
  footer .phone-contact {
    color: #808285;
  }
  footer .address {
    font-size: 10px;
    margin-bottom: 1px;
  }
  footer .phone-contact {
    margin-bottom: 5px;
  }
  footer .phone-contact a {
    pointer-events: none;
    margin-right: 15px;
  }
  footer .list-contact li {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .list-contact li {
    padding-top: 4px;
  }
}
@media print, (min-width: 768px) {
  footer .list-contact li:not(:last-child) {
    margin-right: 24px;
  }
  footer .list-contact a {
    padding-left: 20px;
    color: #00aeef;
  }
  footer .list-contact a:before {
    background: url(../new_img/common/icon_common.png) center/100% auto;
    width: 15px;
    height: 15px;
  }
  footer .button-to-top {
    position: absolute;
    display: block !important;
    bottom: 38px;
    right: 11px;
    background: url(../new_img/common/button_to_top.png) center/100% auto;
    width: 43px;
    height: 43px;
  }
  footer .image-footer {
    margin-top: 1px;
  }
}
@media only screen and (max-width: 768px) {
  footer .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  footer .footer-detail {
    text-align: left;
    margin-bottom: 0.01rem;
    padding: 0 0.15rem;
  }
  footer .image-footer {
    width: 100%;
  }
  footer .footer-title {
    color: #f08300;
    font-size: 0.09rem;
    margin-bottom: 0.03rem;
  }
  footer .address,
  footer .phone-contact {
    font-size: 0.04rem;
    color: #898989;
  }
  footer .address {
    margin-bottom: 0.015rem;
  }
  footer .phone-contact {
    margin-bottom: 0.02rem;
  }
  footer .phone-contact a {
    margin-right: 0.045rem;
  }
  footer .list-contact a {
    color: #00a1e9;
    font-size: 0.05rem;
    padding-left: 0.1rem;
  }
  footer .list-contact a:before {
    background: url(../new_img/common/sp/icon_common.png) center/100% auto;
    width: 0.0567rem;
    height: 0.0534rem;
  }
  footer .list-contact li {
    margin-right: 0.14rem;
  }
  footer .button-to-top {
    position: fixed;
    bottom: 0.07rem;
    right: 0.135rem;
    background: url(../new_img/common/sp/button_to_top.png) center/100% auto;
    width: 0.204rem;
    height: 0.204rem;
  }
}

/* COMMON KATSUDOU */
.section-top-activity .activity-title {
  color: #939598;
  letter-spacing: 0.02em;
  text-align: center;
}
.section-top-activity .activity-title span {
  color: #231f20;
  letter-spacing: 0.02em;
  display: block;
}
.section-top-activity .list-activity li {
  position: relative;
}
.section-top-activity .list-activity a {
  border-bottom: dashed 1px #aaE0fa;
  display: block;
}
.section-top-activity .list-activity a:before {
  position: absolute;
  content: "";
}
.section-top-activity .list-info-class {
  display: flex;
  flex-wrap: wrap;
}
.section-top-activity .list-info-class a {
  display: block;
}
.section-top-activity .title {
  color: #00c0f3;
  text-align: left;
}

@media print, (min-width: 768px) {
  .section-top-activity {
    padding-bottom: 23px;
  }
  .section-top-activity .block-column {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .section-top-activity .column {
    width: 255px;
  }
  .section-top-activity .column:not(:last-child) {
    margin-right: 11px;
  }
  .section-top-activity .activity-title {
    font-size: 9px;
    padding: 11px 0 8px;
  }
  .section-top-activity .activity-title span {
    font-size: 16px;
  }
  .section-top-activity .is-blue .activity-title {
    background-color: #e1F4fd;
    border-bottom: solid 6px #00aeef;
  }
  .section-top-activity .is-pink .activity-title {
    background-color: #fde9f1;
    border-bottom: solid 6px #f173ac;
  }
  .section-top-activity .is-green .activity-title {
    background-color: #e4f2e7;
    border-bottom: solid 6px #00b26b;
  }
  .section-top-activity .list-activity a {
    color: #00aeef;
    font-size: 12px;
    padding: 10px 25px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .section-top-activity .list-activity a {
    padding-top: 9px;
    padding-bottom: 4px;
  }
}
@media print, (min-width: 768px) {
  .section-top-activity .list-activity a:before {
    background: url(../new_img/common/icon_common.png) center/100% auto;
    width: 15px;
    height: 15px;
    left: 5px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .section-top-activity .list-activity a:before {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media print, (min-width: 768px) {
  .section-top-activity .list-info-class {
    background: #fffcd5;
    justify-content: center;
    margin: 0 -5px;
    padding: 15px 5px 5px;
  }
  .section-top-activity .list-info-class li {
    margin: 0 5px 5px;
  }
  .section-top-activity .list-info-class img {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .section-top-activity {
    padding-bottom: 0.12rem;
  }
  .section-top-activity .activity-title {
    font-size: 0.04rem;
    padding: 0.075rem 0 0.05rem;
  }
  .section-top-activity .activity-title span {
    font-size: 0.07rem;
    margin-bottom: 0.01rem;
  }
  .section-top-activity .is-blue .activity-title {
    background-color: #eaf6fd;
    border-bottom: solid 0.03rem #00a1e9;
  }
  .section-top-activity .is-pink .activity-title {
    background-color: #fdeff5;
    border-bottom: solid 0.03rem #eb6ea5;
  }
  .section-top-activity .is-green .activity-title {
    background-color: #ebf5ec;
    border-bottom: solid 0.03rem #00a960;
  }
  .section-top-activity .list-activity {
    margin-bottom: 0.09rem;
  }
  .section-top-activity .list-activity a {
    color: #00a1e9;
    font-size: 0.05rem;
    padding: 0.065rem 0.15rem 0.051rem;
  }
  .section-top-activity .list-activity a:before {
    background: url(../new_img/common/sp/icon_common_cirle.png) center/100% auto no-repeat;
    width: 0.07rem;
    height: 0.07rem;
    left: 0.03rem;
  }
  .section-top-activity .list-info-class {
    background: #fffcdb;
    flex-wrap: wrap;
    margin: 0 -0.085rem;
    padding: 0.12rem 0.07rem 0;
  }
  .section-top-activity .list-info-class li {
    width: 48%;
    margin-bottom: 0.05rem;
  }
  .section-top-activity .list-info-class li:nth-child(2n+1) {
    margin-right: 0.04rem;
  }
  .section-top-activity .list-info-class figure {
    text-align: center;
  }
  .section-top-activity .list-info-class img {
    width: 100%;
    margin-bottom: 0.02rem;
  }
  .section-top-activity .title {
    font-size: 0.04rem;
    padding-left: 0.025rem;
  }
}

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

/* KIDS SCHOOL COMPANY CSS */
.under-subvisual{
  margin-bottom: 20px;
}

.under-keyvisual{
  padding: 4px 0 20px;
}

.section-under-movie{
  margin-bottom: 20px;
}

.section-under-movie .wrapper{
  display: flex;
  padding: 16px;
  background-color: #eaf6fd;
}

.section-under-movie .wrapper .movie-column01{
  padding: 16px;
  background-color: #fff;
}

.section-under-movie .wrapper .movie-column01 > iframe{
  width: 370px;
}

.section-under-movie .wrapper .movie-column02 > h2{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  color: #00a0e9;
  margin-bottom: 10px;
}
.section-under-movie .wrapper .movie-column02 > h2 > span{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 14px;
}

.movie-img{
  width: 100%;
}

.section-under-movie .wrapper .movie-column02 .movie-column02-sub02 .movie-more{
  text-align: center;
  background-color: #00a0e9;
  margin-left: 6px;
  width: 100%;
  display: block;
  padding: 10px 0;
  border-radius: 45px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 18px;
  color: #fff100;
}

.section-under-about .wrapper-about{
  display: flex;
  flex-wrap:wrap;
  width:100%;
  max-width: 788px;
  justify-content: space-between;
}

.section-under-about .wrapper-about .under-about{
  width:49%;
  margin-bottom: 20px;
}

.section-under-about .wrapper-about .under-about > h2{
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 16px;
  color: #fff100;
  margin-bottom: 20px;
  background-color: #00a0e9;
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
}

.section-under-about .wrapper-about .under-about > h2::after{
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 96%;
  right: 10%;
  border-color: rgba(0, 0, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 0;
  border-right-width: 20px;
  border-top-color: #00a0e9;
}

.section-under-about .wrapper-about .under-about .about-column .trans{
  display: flex;
}

.section-under-about .wrapper-about .under-about .about-column .about-column_ttl{
  display: block;
}

.section-under-about .wrapper-about .under-about .about-column .trans .about-column02{
  margin-left: 10px;
}

.section-under-about .wrapper-about .under-about .about-column .trans .about-column01 .about-column01_ttl{
  width: 100%;
}

.sub-ttl{
  padding: 10px 0;
  font-size: 16px;
  color: #00a0e9;
  padding-left: 20px;
  background: url(../new_img/common/sp/icon_common.png) no-repeat left center;
  background-size: 15px;
}

.sub-text{
  font-size: 14px;
}

.section-dvd{
  margin-bottom: 20px;
}

.section-dvd .wrapper .trans{
  display: flex;
  background: #bed5ef;
  padding: 20px;
}

.section-dvd .wrapper .trans .dvd-column .dvd-txt-area{
  margin-left: 30px;
}

.section-dvd .wrapper .trans .dvd-img{
  margin-left: 20px;
}

.section-comment .wrapper .comment-area{
  margin-bottom: 20px;
  text-align: right;
}

.section-comment .wrapper .comment-area .comment-img{
  display: inline-block;
}

.section-comment .wrapper .comment-area .comment-img > img{
  width: 60%;
}

.section-comment .wrapper .comment-area .milk-comment{
  height: 100%;
  display: inline-block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  background-color: #f08619;
  padding: 10px 20px;
  border-radius: 20px;
  position: relative;
}

.section-comment .wrapper .comment-area .milk-comment::after{
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 96%;
  right: 10%;
  border-color: rgba(0, 0, 255, 0);
  border-top-width: 20px;
  border-bottom-width: 20px;
  border-left-width: 0;
  border-right-width: 20px;
  border-top-color: #f08619;
}

@media print, (min-width: 768px) {
  .section-under-movie .wrapper .movie-column02{
    margin-left: 16px;
  }
  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01{
    display: flex;
    margin-bottom: 10px;
  }
  .section-under-movie .wrapper .movie-column02 .movie-column02-sub02{
    display: flex;
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01 .movie-left{
    margin-left: 6px;
  }
  .section-under-about .wrapper-about .under-about .about-column .trans .about-column01{
    min-width: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .under-keyvisual .wrapper{
    padding-left: 0;
    padding-right: 0;
  }

  .section-under-movie .wrapper{
    display: block;
  }

  .section-under-movie .wrapper .movie-column01{
    margin-bottom: 20px;
  }

  .section-under-movie .wrapper .movie-column01 > iframe{
    width: 100%;
    height: 250px;
  }

  .section-under-movie .wrapper .movie-column02 > h2 > span{
    display: block;
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01{
    display: flex;
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01{
    margin-bottom: 10px;
    position: relative;
    margin-top: 34px;
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01 .movie-left{
    margin-left: 6px;
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub01 .movie-txt{
    position: absolute;
    top: -23px;
    left: 0px;
    background-color: #fff100;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 20px;
    color: #e60012;
    text-align: center;
    padding: 6px;
    margin-bottom: 6px;
    transform: skew(-10deg)rotate(-4deg);
  }

  .section-under-movie .wrapper .movie-column02 .movie-column02-sub02 .movie-more{
    margin-left: 0;
  }

  .section-under-about .wrapper-about{
    display: block;
    justify-content: normal;
    flex-wrap: nowrap;
    max-width: none;
  }

  .section-under-about .wrapper-about .under-about{
    width: 100%;
  }

  .section-under-about .wrapper-about .under-about .about-column .trans{
    display: unset;
  }

  .section-under-about .wrapper-about .under-about{
    margin-bottom: 30px;
  }

  .section-under-about .wrapper-about .under-about .about-column .trans .about-column01 >img{
    width: 100%;
  }

  .section-under-about .wrapper-about .under-about .about-column .trans .about-column02{
    margin-left: 0;
  }

  .section-dvd .wrapper .trans{
    display: block;
  }

  .section-dvd .wrapper .trans .dvd-column .dvd-txt-area{
    margin-left: 0;
    margin-bottom: 10px;
  }

  .section-dvd .wrapper .trans .dvd-img{
    margin-left: 0;
  }

  .section-comment .wrapper .comment-area{
    display: flex;
    text-align: unset;
  }

  .section-comment .wrapper .comment-area .comment-img > img{
    width: unset;
  }

  .section-comment .wrapper .comment-area .milk-comment::after{
    top: 9%;
    left: -5%;
    transform: rotate(90deg);
  }
}
