@charset "UTF-8";
body {
  background: url(../img/bg.gif); }

a {
  transition: all 300ms 0s ease; }

a:hover {
  opacity: 0.6; }

/* header */
header {
  position: relative;
  min-width: 1300px; }
  header h1 {
    margin: 15px; }
    header h1 img {
      display: block;
      margin: auto; }
  header > figure img {
    width: 100%; }
  header > a {
    position: absolute;
    top: 5px;
    right: 30px; }
  header .menu_black {
    display: none;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  header .menu_icon {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    display: inline-block;
    width: 65px;
    height: 65px;
    cursor: pointer;
    color: #fff;
    font-size: 10px;
    transition: all 300ms 0s ease;
    text-align: center;
    padding-top: 40px; }
    header .menu_icon:hover {
      opacity: 0.6; }
    header .menu_icon .icon {
      display: block;
      position: absolute;
      top: 15px;
      left: 20px;
      z-index: 100;
      width: 25px;
      height: 1px;
      background: #fff;
      transition: all 300ms 0s ease; }
      header .menu_icon .icon:before, header .menu_icon .icon:after {
        content: '';
        display: block;
        position: absolute;
        z-index: 100;
        width: 25px;
        height: 1px;
        background: #fff;
        transition: all 300ms 0s ease; }
      header .menu_icon .icon:before {
        top: 9px; }
      header .menu_icon .icon:after {
        top: 18px; }
  header nav {
    position: fixed;
    z-index: 99;
    top: 10px;
    left: 10px;
    display: block;
    width: 65px;
    height: 65px;
    border-radius: 40px;
    transition: all 300ms 0s ease;
    background: #fd849d;
    overflow: hidden; }
    header nav a {
      opacity: 0;
      transform: translateX(-400px);
      transition: all 500ms 0s ease; }
    header nav .top {
      display: block;
      width: 290px;
      margin: 40px auto 35px; }
      header nav .top a {
        position: relative;
        display: inline-block;
        color: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        text-decoration: none;
        border-bottom: #fff solid 2px;
        padding-left: 25px; }
        header nav .top a:after {
          position: absolute;
          top: 0px;
          left: 5px;
          content: url(../img/arrow_p_p.svg);
          transition: all 300ms 0s ease; }
        header nav .top a:hover:after {
          left: 0px; }
    header nav .course {
      position: relative;
      display: block;
      color: #505050;
      font-size: 1.8rem;
      text-decoration: none;
      background: #fff;
      width: 290px;
      padding: 15px 35px;
      border-radius: 40px;
      margin: 0 auto 10px; }
      header nav .course:after {
        position: absolute;
        top: 20px;
        right: 20px;
        content: url(../img/arrow_n_p.svg);
        transition: all 300ms 0s ease; }
      header nav .course:hover:after {
        right: 15px; }
    header nav .message {
      display: block;
      color: #fff;
      font-size: 1.8rem;
      text-decoration: none;
      border: 1px solid #fff;
      width: 290px;
      padding: 15px 35px;
      border-radius: 40px;
      margin: 0 auto 10px; }
      header nav .message:after {
        position: absolute;
        top: 20px;
        right: 20px;
        content: url(../img/arrow_n_w.svg);
        transition: all 300ms 0s ease; }
      header nav .message:hover:after {
        right: 15px; }
    header nav .contact {
      display: block;
      text-align: center;
      margin: 40px auto 40px; }
  header input {
    display: none; }
  header input:checked ~ .menu_black {
    display: block; }
  header input:checked ~ .menu_icon {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 310px; }
    header input:checked ~ .menu_icon .icon {
      background: none; }
      header input:checked ~ .menu_icon .icon:before {
        top: 10px;
        transform: rotate(-45deg); }
      header input:checked ~ .menu_icon .icon:after {
        top: 10px;
        transform: rotate(45deg); }
  header input:checked ~ nav {
    top: 0;
    left: 0;
    width: 380px;
    height: 100%;
    border-radius: 0px;
    overflow-y: scroll;
    -ms-overflow-style: none; }
    header input:checked ~ nav::-webkit-scrollbar {
      display: none; }
    header input:checked ~ nav a {
      opacity: 1;
      transform: translateX(0); }
      header input:checked ~ nav a:hover {
        opacity: 0.6; }

@media screen and (max-width: 768px) {
  header {
    min-width: 350px; }
    header > a {
      display: none; } }
/* index main */
main {
  background: url(../img/bg_footer.svg) repeat-x bottom;
  padding-bottom: 100px;
  color: #666;
  min-width: 1300px; }
  main #outline {
    position: relative;
    max-width: 600px;
    margin: 60px auto 175px;
    text-align: center; }
    main #outline p {
      text-align: left;
      font-size: 1.8rem; }
      main #outline p + p {
        margin-top: 30px; }
    main #outline .img_001 {
      position: absolute;
      bottom: 40px;
      left: -300px; }
    main #outline .img_002 {
      position: absolute;
      bottom: 0;
      right: -300px; }
  main #course {
    background: #fd849d;
    color: #fff;
    text-align: center; }
    main #course h2 img {
      margin: -75px auto 0;
      display: inline-block; }
    main #course ul {
      display: flex;
      width: 600px;
      list-style-type: none;
      margin: 10px auto 50px;
      flex-wrap: wrap;
      justify-content: space-between; }
      main #course ul li {
        margin: 30px 0 0; }
        main #course ul li a:hover img {
          transform: translateY(-10px); }
        main #course ul li img {
          transition: all 300ms 0s ease;
          display: block; }
    main #course hr {
      border-top: 3px dotted #fff;
      padding-bottom: 10px; }
  main #choose h2 {
    text-align: center; }
    main #choose h2 img {
      margin: 145px auto 30px;
      display: inline-block; }
  main #choose ul {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    list-style-type: none;
    margin: auto; }
    main #choose ul li {
      width: 345px; }
  main #choose figure {
    text-align: center; }
    main #choose figure img {
      display: block;
      border-radius: 10px;
      margin-bottom: 20px; }
    main #choose figure b {
      display: block; }
  main #teacher h2 {
    text-align: center; }
    main #teacher h2 img {
      margin: 100px auto 30px;
      display: inline-block; }
  main #teacher ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 860px;
    list-style-type: none;
    margin: auto; }
    main #teacher ul li {
      width: 185px; }
  main #teacher figure {
    color: #e84566;
    text-align: center;
    margin-bottom: 50px; }
    main #teacher figure img {
      display: block;
      border-radius: 50%;
      margin-bottom: 15px; }
    main #teacher figure b {
      display: block; }
  main #teacher a {
    text-decoration: none;
    display: block; }
    main #teacher a:hover {
      transform: translateY(-10px);
      opacity: 0.9; }
  main #message {
    text-align: center; }
    main #message h2 img {
      margin: 100px auto 20px;
      display: inline-block; }
    main #message > a {
      position: relative;
      text-align: center;
      display: inline-block;
      max-width: 320px;
      width: 100%;
      background: #fd849d;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      padding: 15px;
      border-radius: 50px;
      margin: 20px 0 60px; }
      main #message > a:after {
        position: absolute;
        top: 20px;
        right: 20px;
        content: url(../img/arrow_n_w2.svg);
        transition: all 300ms 0s ease; }
      main #message > a:hover:after {
        right: 15px; }
    main #message .box {
      background: #fff;
      width: 1030px;
      margin: auto;
      border-radius: 30px;
      display: flex;
      justify-content: space-between;
      padding: 45px; }
      main #message .box .boxtxt {
        width: 500px;
        text-align: left; }
        main #message .box .boxtxt h3 {
          padding: 0 5px;
          background: linear-gradient(transparent 50%, #eaf1fb 50%);
          display: inline-block;
          margin-bottom: 30px; }
      main #message .box .movie {
        text-align: right; }
        main #message .box .movie img {
          display: block; }
        main #message .box .movie .btn {
          position: relative;
          display: inline-block;
          border: #e84e6c 1px solid;
          border-radius: 50px;
          color: #e84e6c;
          text-decoration: none;
          padding: 10px 45px 10px 20px;
          margin-top: 20px; }
          main #message .box .movie .btn:after {
            position: absolute;
            top: 14px;
            right: 15px;
            content: url(../img/arrow_n_p.svg);
            transition: all 300ms 0s ease; }
          main #message .box .movie .btn:hover:after {
            right: 10px; }
    main #message .student {
      width: 1100px;
      margin: auto;
      text-align: left; }
      main #message .student div {
        position: relative;
        background: #fce7ec;
        padding: 25px 40px; }
        main #message .student div h4 {
          color: #e84566; }
          main #message .student div h4 span {
            display: block; }
        main #message .student div figure {
          position: absolute;
          top: 25px;
          right: 40px; }
          main #message .student div figure img {
            display: block; }
      main #message .student p {
        padding: 25px 40px;
        width: 610px;
        min-height: 200px;
        margin-bottom: 30px; }
  main #fb {
    text-align: center; }
    main #fb h2 img {
      margin: 100px auto 20px;
      display: inline-block; }
    main #fb .fbbox {
      position: relative;
      width: 1300px;
      margin: auto; }
      main #fb .fbbox div {
        max-width: 500px;
        max-height: 500px;
        overflow: hidden;
        margin: auto;
        overflow-y: scroll; }
      main #fb .fbbox .img_001 {
        position: absolute;
        bottom: 10px;
        left: 140px; }
      main #fb .fbbox .img_002 {
        position: absolute;
        bottom: 30px;
        right: 180px; }

@media screen and (max-width: 768px) {
  main {
    min-width: 350px; }
    main #outline {
      width: 100%;
      max-width: 100%;
      margin: 0 !important;
      padding: 20px 20px 70px; }
      main #outline img {
        width: 100%; }
      main #outline p {
        text-align: left;
        font-size: 1.6rem; }
        main #outline p + p {
          margin-top: 20px; }
      main #outline .img_001 {
        display: none; }
      main #outline .img_002 {
        display: none; }
    main #course h2 img {
      width: 70%;
      margin: -50px auto 0; }
    main #course p {
      padding: 0 20px;
      font-size: 1.4rem; }
    main #course ul {
      width: 100% !important;
      padding: 0 20px;
      margin: 10px 0 30px !important; }
      main #course ul li {
        margin: 15px 0 0 !important;
        width: 48%; }
        main #course ul li img {
          width: 100%; }
    main #choose h2 img {
      width: 70%;
      margin: 60px auto 10px; }
    main #choose ul {
      display: block;
      width: 100%; }
      main #choose ul li {
        width: 100%; }
    main #choose figure {
      text-align: left;
      display: flex;
      justify-content: space-between;
      padding: 0 20px 20px; }
      main #choose figure span {
        width: 35%; }
      main #choose figure img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 20px; }
      main #choose figure figcaption {
        width: 60%; }
    main #teacher h2 img {
      width: 70%;
      margin: 60px auto 10px; }
    main #teacher ul {
      width: 100%;
      padding: 0 20px; }
      main #teacher ul li {
        width: 47%; }
    main #teacher figure {
      margin-bottom: 20px; }
      main #teacher figure img {
        width: 100%;
        margin-bottom: 10px; }
    main #message h2 img {
      width: 70%;
      margin: 60px auto 10px; }
    main #message .box {
      background: #fff;
      width: 90%;
      border-radius: 20px;
      display: block;
      padding: 25px; }
      main #message .box .boxtxt {
        width: 100%;
        text-align: left;
        margin-bottom: 20px; }
        main #message .box .boxtxt h3 {
          margin-bottom: 10px; }
      main #message .box .movie {
        text-align: center; }
        main #message .box .movie img {
          width: 100%; }
    main #message .student {
      width: 100%;
      margin: auto;
      text-align: left; }
      main #message .student div {
        padding: 20px;
        display: block;
        justify-content: space-between; }
        main #message .student div h4 {
          color: #e84566;
          width: 100%; }
        main #message .student div figure {
          position: static;
          width: 100%;
          margin-top: 15px; }
          main #message .student div figure img {
            width: 100%; }
      main #message .student p {
        padding: 20px;
        width: 100%;
        min-height: 0px;
        margin-bottom: 0px; }
    main #fb img {
      width: 70%;
      margin: 60px auto 10px !important; }
    main #fb .fbbox {
      width: 90%; }
      main #fb .fbbox .img_001 {
        display: none; }
      main #fb .fbbox .img_002 {
        display: none; } }
/* 下階層 main */
main article > h2 {
  height: 230px;
  padding-top: 70px;
  text-align: center;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important; }
main article section > h3 {
  text-align: center; }
  main article section > h3 img {
    margin: 150px auto 20px;
    display: inline-block; }
main article #coursemessage {
  width: 1300px;
  margin: auto; }
  main article #coursemessage img {
    display: block;
    margin: auto; }
  main article #coursemessage .message {
    width: 1100px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between; }
    main article #coursemessage .message div {
      position: relative;
      width: 735px;
      padding: 40px 0 0 75px; }
      main article #coursemessage .message div p {
        margin-bottom: 30px; }
      main article #coursemessage .message div:after {
        position: absolute;
        top: 15px;
        left: 30px;
        content: url(../img/icn_message.svg); }
    main article #coursemessage .message .wid100 {
      width: 100%;
      padding: 40px 75px 0; }
  main article #coursemessage figure {
    margin-top: 1px; }
main article #charges {
  width: 1300px;
  margin: auto; }
  main article #charges dl {
    width: 630px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    border-top: #e8e6dd 3px solid; }
    main article #charges dl dt {
      position: relative;
      width: 400px;
      border-bottom: #e8e6dd 3px solid;
      padding: 23px 0 23px 50px; }
      main article #charges dl dt:after {
        position: absolute;
        top: 20px;
        left: 20px;
        content: url(../img/icn_onpu.png); }
    main article #charges dl dd {
      width: 230px;
      border-bottom: #e8e6dd 3px solid;
      padding: 20px 0;
      color: #8f7951; }
  main article #charges p {
    text-align: center;
    margin-top: 20px;
    color: #999; }
main article #lesson {
  width: 1300px;
  margin: auto; }
  main article #lesson div {
    width: 950px;
    margin: auto;
    display: flex;
    justify-content: space-between; }
    main article #lesson div ul {
      width: 48%;
      list-style: none; }
      main article #lesson div ul li {
        position: relative;
        padding: 10px 0 10px 45px; }
        main article #lesson div ul li:after {
          position: absolute;
          top: 10px;
          left: 10px;
          content: url(../img/icn_check.svg); }
  main article #lesson p {
    color: #000;
    margin-top: 40px;
    text-align: center; }
main article #teacher2 {
  width: 1300px;
  margin: auto; }
  main article #teacher2 .plof {
    width: 840px;
    margin: auto;
    display: flex;
    text-align: center; }
    main article #teacher2 .plof div {
      width: 420px;
      padding-top: 70px; }
      main article #teacher2 .plof div span {
        display: block; }
      main article #teacher2 .plof div label {
        position: relative;
        color: #fff;
        background: #fd849d;
        padding: 5px 70px;
        display: inline-block;
        border-radius: 50px;
        margin-top: 30px;
        cursor: pointer;
        transition: all 300ms 0s ease; }
        main article #teacher2 .plof div label:hover {
          opacity: 0.7; }
        main article #teacher2 .plof div label:after {
          position: absolute;
          top: 7px;
          right: 15px;
          content: url(../img/arrow_b.svg);
          transform: rotate(180deg);
          transition: all 300ms 0s ease; }
  main article #teacher2 input[type="checkbox"]:checked + .plof label:after {
    transform: rotate(0deg);
    top: 4px; }
  main article #teacher2 input[type="checkbox"] {
    display: none; }
  main article #teacher2 .more {
    width: 840px;
    max-height: 0;
    height: 100%;
    margin: 20px auto;
    padding: 0 40px;
    background: url(../img/bg_onp.svg) #ffd2db no-repeat;
    background-position: top;
    background-size: contain;
    transition: all 300ms 0s ease;
    overflow: hidden;
    border-radius: 10px; }
    main article #teacher2 .more .ttl_message {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 25px; }
      main article #teacher2 .more .ttl_message p {
        padding: 40px 15px 0;
        font-size: 2.4rem;
        color: #716857;
        font-weight: bold; }
        main article #teacher2 .more .ttl_message p:after {
          position: absolute;
          top: 0;
          left: 0;
          content: url(../img/icn_message.svg); }
    main article #teacher2 .more p {
      padding: 0 10px;
      margin-bottom: 30px; }
    main article #teacher2 .more p:last-child {
      margin-bottom: 0; }
    main article #teacher2 .more ul {
      margin-left: 25px; }
    main article #teacher2 .more h4 {
      text-align: center;
      margin-top: 50px;
      margin-bottom: 20px; }
      main article #teacher2 .more h4 img {
        width: 170px; }
    main article #teacher2 .more .pbox {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      margin-bottom: 25px; }
      main article #teacher2 .more .pbox b {
        font-size: 1.8rem;
        color: #e84566;
        display: inline-block;
        border-bottom: #eaf1fb solid 18px;
        margin-bottom: 10px;
        padding: 0 10px; }
        main article #teacher2 .more .pbox b span {
          margin-bottom: -15px;
          display: block; }
    main article #teacher2 .more .pbox_flex {
      display: flex;
      justify-content: space-between; }
      main article #teacher2 .more .pbox_flex .pbox {
        width: 48.5%; }
    main article #teacher2 .more .sns {
      position: relative;
      margin-top: 0px;
      margin-left: 0;
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      justify-content: center; }
      main article #teacher2 .more .sns li {
        margin-right: 10px; }
      main article #teacher2 .more .sns a {
        position: relative;
        width: 110px;
        display: inline-block;
        border: #e84566 solid 1px;
        text-decoration: none;
        padding: 5px 15px 5px 0;
        text-align: center;
        color: #e84566;
        font-size: 1.4rem; }
        main article #teacher2 .more .sns a:after {
          position: absolute;
          top: 5px;
          right: 7px;
          content: url(../img/arrow_n_b.svg);
          transition: all 300ms 0s ease; }
        main article #teacher2 .more .sns a:hover:after {
          right: 5px; }
      main article #teacher2 .more .sns .w130 {
        width: 130px; }
      main article #teacher2 .more .sns .w175 {
        width: 175px; }
  main article #teacher2 input[type="checkbox"]:checked + .plof + .more {
    max-height: 4000px;
    padding: 40px;
    margin: 20px auto 50px; }
main article #faq {
  margin-bottom: 100px; }
  main article #faq dl {
    background: #fff;
    border: #ddd 1px solid;
    border-radius: 5px;
    width: 950px;
    margin: 0 auto 10px; }
    main article #faq dl dt {
      position: relative;
      padding: 0;
      margin: 0;
      color: #4b6a9c; }
      main article #faq dl dt:before {
        position: absolute;
        top: 23px;
        left: 25px;
        content: url(../img/icn_q.svg); }
      main article #faq dl dt label {
        position: relative;
        top: 0;
        right: 0;
        display: block;
        cursor: pointer;
        padding: 25px 40px 25px 65px; }
        main article #faq dl dt label:after {
          position: absolute;
          top: 39px;
          right: 25px;
          display: block;
          width: 21px;
          content: "";
          border-bottom: 3px solid #bbb; }
        main article #faq dl dt label:before {
          position: absolute;
          top: 30px;
          right: 34px;
          display: block;
          height: 21px;
          content: "";
          transition: all 300ms 0s ease;
          border-left: 3px solid #bbb; }
    main article #faq dl dd {
      position: relative;
      max-height: 0;
      overflow: hidden;
      transition: all 300ms 0s ease;
      padding: 0 25px 0 70px;
      opacity: 0; }
      main article #faq dl dd:before {
        position: absolute;
        top: 0px;
        left: 25px;
        content: url(../img/icn_a.svg);
        transition: all 300ms 0s ease; }
  main article #faq input[type="checkbox"] {
    display: none; }
  main article #faq input[type="checkbox"]:checked + dl > dd {
    max-height: 5000px;
    padding: 5px 25px 25px 70px;
    opacity: 1; }
    main article #faq input[type="checkbox"]:checked + dl > dd:before {
      top: 0px; }
  main article #faq input[type="checkbox"]:checked + dl > dt > label:before {
    opacity: 0; }

@media screen and (max-width: 768px) {
  main article > h2 {
    height: auto;
    padding-top: 30px;
    padding-bottom: 20px; }
    main article > h2 img {
      width: 70%; }
  main article section h3 img {
    margin: 100px auto 20px;
    width: 70%; }
  main article #coursemessage {
    width: calc(100% - 40px);
    margin: 0 20px; }
    main article #coursemessage .message {
      width: auto;
      display: block; }
      main article #coursemessage .message div {
        width: auto;
        padding: 0 0 0 0 !important; }
        main article #coursemessage .message div p {
          margin-bottom: 20px; }
        main article #coursemessage .message div:after {
          top: -35px;
          left: -10px; }
      main article #coursemessage .message img {
        display: none; }
    main article #coursemessage figure img {
      width: 100%; }
  main article #charges {
    width: calc(100% - 40px);
    margin: 0 20px; }
    main article #charges dl {
      width: auto;
      display: block; }
      main article #charges dl dt {
        width: 100%;
        border-bottom: none;
        padding: 15px 0 0 30px; }
        main article #charges dl dt:after {
          top: 10px;
          left: 5px; }
      main article #charges dl dd {
        width: 100%;
        padding: 0 10px 10px;
        text-align: right; }
    main article #charges p {
      text-align: left; }
  main article #lesson {
    width: calc(100% - 40px);
    margin: 0 20px; }
    main article #lesson div {
      width: 100%;
      display: block; }
      main article #lesson div ul {
        width: 100%;
        list-style: none; }
        main article #lesson div ul li {
          position: relative;
          padding: 5px 0 5px 35px; }
          main article #lesson div ul li:after {
            position: absolute;
            top: 5px;
            left: 0;
            content: url(../img/icn_check.svg); }
    main article #lesson p {
      margin-top: 20px; }
  main article #teacher2 {
    width: calc(100% - 40px);
    margin: 0 20px; }
    main article #teacher2 .plof {
      width: 100%;
      display: block; }
      main article #teacher2 .plof figure {
        width: 100%; }
        main article #teacher2 .plof figure img {
          width: 100%; }
      main article #teacher2 .plof div {
        width: 100%;
        padding-top: 10px; }
        main article #teacher2 .plof div span {
          display: block; }
        main article #teacher2 .plof div label {
          margin-top: 10px; }
    main article #teacher2 .more {
      width: 100%;
      padding: 0 20px;
      margin: 20px auto 30px; }
      main article #teacher2 .more .ttl_message {
        display: block;
        margin-bottom: 15px; }
        main article #teacher2 .more .ttl_message img {
          width: 100%; }
        main article #teacher2 .more .ttl_message p {
          padding: 40px 0 0;
          font-size: 2rem; }
          main article #teacher2 .more .ttl_message p:after {
            position: absolute;
            top: 0;
            left: 0;
            content: url(../img/icn_message.svg); }
      main article #teacher2 .more p {
        margin-bottom: 20px;
        font-size: 1.4rem; }
      main article #teacher2 .more .pbox {
        border-radius: 10px;
        padding: 10px;
        margin-bottom: 15px; }
        main article #teacher2 .more .pbox b {
          font-size: 1.8rem;
          color: #e84566;
          display: inline-block;
          border-bottom: #eaf1fb solid 18px;
          padding: 0 10px; }
          main article #teacher2 .more .pbox b span {
            margin-bottom: -15px;
            display: block; }
      main article #teacher2 .more .pbox_flex {
        display: block; }
        main article #teacher2 .more .pbox_flex .pbox {
          width: 100%; }
      main article #teacher2 .more .sns {
        width: 240px;
        margin: 20px auto 0;
        justify-content: flex-start; }
        main article #teacher2 .more .sns li {
          margin-right: 5px;
          margin-left: 5px;
          margin-bottom: 10px; }
    main article #teacher2 input[type="checkbox"]:checked + .plof + .more {
      padding: 20px; }
  main article #faq {
    margin: 0 20px 50px; }
    main article #faq dl {
      width: 100%; }
      main article #faq dl dt:before {
        top: 13px;
        left: 15px; }
      main article #faq dl dt label {
        padding: 15px 40px 15px 50px; }
        main article #faq dl dt label:after {
          top: 24px;
          right: 15px; }
        main article #faq dl dt label:before {
          top: 15px;
          right: 24px; }
      main article #faq dl dd {
        padding: 0 15px 0 50px; }
        main article #faq dl dd:before {
          top: 0px;
          left: 15px; }
    main article #faq input[type="checkbox"] {
      display: none; }
    main article #faq input[type="checkbox"]:checked + dl > dd {
      padding: 5px 15px 15px 50px; } }
/* プライバシー */
#privacy {
  width: 950px;
  margin: auto; }
  #privacy dl dt {
    color: #e84566; }
  #privacy dl dd {
    margin-left: 15px;
    margin-bottom: 40px; }

@media screen and (max-width: 768px) {
  #privacy {
    width: calc(100% - 40px); }
    #privacy dl dd {
      margin-left: 0px;
      margin-bottom: 30px;
      font-size: 1.4rem; } }
/* フォーム */
.form h3 {
  width: 1100px;
  margin: auto;
  background: #fce7ec;
  color: #e84566;
  padding: 20px 45px; }
.form .must {
  position: absolute;
  background-color: #aea26c;
  padding: 2px 8px;
  font-size: 1.2rem;
  color: #fff;
  margin: 0px 10px;
  border-radius: 4px;
  font-weight: normal;
  right: 0; }
.form .any {
  position: absolute;
  border: #aea26c solid 1px;
  padding: 2px 8px;
  font-size: 1.2rem;
  color: #aea26c;
  margin: 0px 10px;
  border-radius: 4px;
  font-weight: normal;
  right: 0; }
.form dl {
  width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap; }
  .form dl dt {
    position: relative;
    border-bottom: #e8e6dd 3px solid;
    width: 280px;
    padding: 25px 0 0 15px;
    color: #e84566;
    font-weight: bold; }
  .form dl dd {
    border-bottom: #e8e6dd 3px solid;
    width: 620px;
    padding: 15px; }
    .form dl dd input {
      border: #a8a8a8 solid 1px;
      border-radius: 5px;
      padding: 10px;
      background: #fff;
      width: 100% !important; }
    .form dl dd textarea {
      border: #a8a8a8 solid 1px;
      border-radius: 5px;
      padding: 10px;
      width: 100% !important;
      height: 160px !important;
      background: #fff; }
    .form dl dd input[type=radio] {
      display: none; }
    .form dl dd input[type=radio] ~ i {
      border: #a8a8a8 solid 1px;
      width: 20px !important;
      height: 20px !important;
      display: inline-block;
      margin: 10px 10px 10px 0;
      vertical-align: middle;
      border-radius: 10px;
      position: relative;
      background: #fff; }
    .form dl dd input[type=radio]:checked ~ i:before {
      width: 12px;
      height: 12px;
      background: #e84566;
      display: inline-block;
      vertical-align: middle;
      border-radius: 10px;
      content: "";
      position: absolute;
      left: 3px;
      top: 3px; }
    .form dl dd input[type=checkbox] {
      display: none; }
    .form dl dd input[type=checkbox] ~ i {
      border: #a8a8a8 solid 1px;
      width: 18px;
      height: 18px;
      display: inline-block;
      margin: 7px 10px 7px 0;
      vertical-align: middle;
      border-radius: 3px;
      background: #fff; }
    .form dl dd input[type=checkbox]:checked ~ i:before {
      width: 8px;
      height: 13px;
      border-bottom: 3px #e84566 solid;
      border-right: 3px #e84566 solid;
      display: inline-block;
      margin: 0 0 15px 4px;
      vertical-align: middle;
      content: "";
      transform: rotate(45deg); }
.form .privacy {
  background: #e8e6dd; }
  .form .privacy p {
    width: 900px;
    margin: auto;
    padding: 50px; }
    .form .privacy p b {
      display: block; }
  .form .privacy a {
    color: #000; }
.form .btnsubmit,
.form #mfp_button_send {
  margin: 40px auto;
  position: relative;
  display: block;
  max-width: 400px;
  width: 100%;
  background: #fe5f80;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 20px;
  border-radius: 50px;
  transition: all 300ms 0s ease; }
  .form .btnsubmit:hover,
  .form #mfp_button_send:hover {
    opacity: 0.7; }
  .form .btnsubmit:after,
  .form #mfp_button_send:after {
    position: absolute;
    top: 25px;
    right: 25px;
    content: url(../img/arrow_n_w2.svg);
    transition: all 300ms 0s ease; }
  .form .btnsubmit:hover:after,
  .form #mfp_button_send:hover:after {
    right: 20px; }
.form #mfp_button_cancel {
  margin: -20px auto;
  background: #e8e6dd;
  position: relative;
  display: block;
  max-width: 250px;
  width: 100%;
  color: #000;
  padding: 15px;
  border-radius: 50px;
  transition: all 300ms 0s ease; }
  .form #mfp_button_cancel:hover {
    opacity: 0.7; }
  .form #mfp_button_cancel:after {
    position: absolute;
    top: 18px;
    left: 20px;
    content: url(../img/arrow_b_g.svg);
    transition: all 300ms 0s ease; }
  .form #mfp_button_cancel:hover:after {
    left: 15px; }

@media screen and (max-width: 768px) {
  .form h3 {
    width: calc(100% - 40px);
    padding: 10px 15px; }
  .form .must {
    position: static; }
  .form .any {
    position: static; }
  .form dl {
    width: calc(100% - 40px);
    margin: auto;
    display: block; }
    .form dl dt {
      border-bottom: none;
      width: 100%;
      padding: 15px 15px 10px; }
    .form dl dd {
      border-bottom: #e8e6dd 3px solid;
      width: 100%;
      padding: 0 15px 15px; }
  .form .privacy p {
    width: 100%;
    margin: auto;
    padding: 20px; }
  .form .btnsubmit,
  .form #mfp_button_send {
    width: calc(100% - 40px); }
  .form table#mfp_confirm_table {
    width: calc(100% - 40px); }
  .form table#mfp_confirm_table tr th {
    padding: 15px 15px 5px;
    width: 100%;
    display: block;
    border-bottom: none; }
  .form table#mfp_confirm_table tr td {
    padding: 0 15px 15px;
    width: 100%;
    display: block; }
  .form div#mfp_phase_confirm h4 {
    width: calc(100% - 40px);
    margin: auto;
    background: #fce7ec;
    color: #e84566;
    padding: 15px; } }
/* モーダル */
.remodal {
  padding: 0;
  background: #000; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%; }

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

/* jquery ページトップ */
#page_top {
  position: fixed;
  float: right;
  bottom: 20px;
  right: 20px; }

/* footer */
footer {
  background: #fd849d;
  padding: 60px 15px 15px;
  min-width: 1300px; }
  footer .btn {
    position: relative;
    display: inline-block;
    max-width: 400px;
    width: 100%;
    background: #fe5f80;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border: 1px #fff solid;
    padding: 20px;
    border-radius: 50px; }
    footer .btn:after {
      position: absolute;
      top: 25px;
      right: 25px;
      content: url(../img/arrow_n_w2.svg);
      transition: all 300ms 0s ease; }
    footer .btn:hover:after {
      right: 20px; }
  footer p {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 35px; }
  footer a {
    color: #000; }
  footer small {
    display: block;
    margin-top: 25px; }

@media screen and (max-width: 768px) {
  footer {
    min-width: 350px; } }
