@charset "UTF-8";
/*==================================================
base
==================================================*/
/*==================================================
base
====================================================*/
/*==================================================
reset
====================================================*/
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;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*==================================================
global 変数管理用
====================================================*/
/*==================================================
setting カラーやフォントなど
====================================================*/
/*==================================================
setting フォントファミリー
====================================================*/
/*==================================================
mixin breakpointやparts index
====================================================*/
/*==================================================
mixin breakpointやparts
====================================================*/
/*==================================================
common
====================================================*/
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  width: 100%;
  letter-spacing: 0.4pt;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-size: 1.5rem;
  color: #333333;
  position: relative;
  font-family: "Zen Kaku Gothic Antique", serif;
}

h1, h2, h3 {
  letter-spacing: 1.2pt;
  font-weight: bold;
}

header,
footer {
  width: 100%;
}

p {
  text-align: justify;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  color: #333333;
}

a img, a picture {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a:hover {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0.7;
  color: #333333;
}

img, picture {
  width: 100%;
  height: auto;
  line-height: 0;
  display: block;
}

img.auto {
  width: auto;
}

li {
  list-style: none;
}

.break {
  word-wrap: break-word;
}

/*==================================================
global 変数やmixin
==================================================*/
/*==================================================
layout 
==================================================*/
/*==================================================
layout
====================================================*/
/*==================================================
common
====================================================*/
/*====sp/pc====*/
.sp {
  display: block;
}
@media screen and (min-width: 1000px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc {
    display: block;
  }
}

:target {
  scroll-margin-top: 0;
}

/*====mainlayout====*/
main.main .titleWrap .imgInner {
  height: 200px;
}
@media screen and (min-width: 1000px) {
  main.main .titleWrap .imgInner {
    height: 400px;
  }
}
main.main .titleWrap .imgInner picture {
  display: block;
}
main.main .titleWrap .imgInner img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}
@media screen and (min-width: 1000px) {
  main.main .titleWrap .imgInner img {
    height: 400px;
  }
}
main.main .titleWrap .titleInner {
  padding: 40px 7.01% 30px;
}
@media screen and (min-width: 1000px) {
  main.main .titleWrap .titleInner {
    padding: 60px 50px 40px;
    margin: 0 auto;
    max-width: 1100px;
  }
}
main.main .titleWrap .titleInner .title {
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  main.main .titleWrap .titleInner .title {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  main.main .titleWrap .titleInner .text {
    margin-top: 30px;
  }
}
main.main .contentsWrap {
  margin: 50px 7.01% 100px;
}
@media screen and (min-width: 1000px) {
  main.main .contentsWrap {
    margin: 100px auto 90px;
    max-width: 1100px;
    padding: 0 50px;
  }
}

main.sub {
  margin: 50px 7.01% 100px;
}
@media screen and (min-width: 1000px) {
  main.sub {
    margin: 100px auto 150px;
    max-width: 1100px;
    padding: 0 50px;
  }
}

/*====page-content====*/
.content {
  margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .content {
    margin-top: 100px;
  }
}
.content:before {
  border-radius: 4px;
  content: "";
  display: block;
  height: 8px;
  margin-bottom: 50px;
}
@media screen and (min-width: 1000px) {
  .content:before {
    margin-bottom: 100px;
  }
}

/*====pagenav====*/
.pageNav {
  padding: 0 7.01% 50px;
}
@media screen and (min-width: 1000px) {
  .pageNav {
    padding: 0 0 80px;
  }
}

.pagenavWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .pagenavWrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
  }
}
.pagenavWrap .navList {
  width: 47%;
  margin-top: 15px;
  margin-right: 6%;
}
.pagenavWrap .navList:nth-child(odd) {
  text-align: right;
}
.pagenavWrap .navList:nth-child(even) {
  margin-right: 0;
}
@media screen and (min-width: 1000px) {
  .pagenavWrap .navList {
    width: auto;
    margin-right: 20px;
  }
  .pagenavWrap .navList:nth-child(even) {
    margin-right: 20px;
  }
  .pagenavWrap .navList:last-child {
    margin-right: 0;
  }
}
.pagenavWrap .navList:after {
  content: "▼";
  display: inline-block;
  margin-left: 2px;
}

/*==================================================
header
====================================================*/
header {
  width: 100%;
  height: 60px;
  background-image: url(../../img/header-bg_sp.svg);
  background-repeat: no-repeat;
  background-position: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1000px) {
  header {
    height: 80px;
    background-image: url(../../img/header-bg_pc.png);
    background-position: center;
    background-size: cover;
  }
}
header .logo {
  width: auto;
  max-height: 35px;
  padding: 13px 20px 13px 13px;
}
@media screen and (min-width: 1000px) {
  header .logo {
    padding: 13px 0 13px 50px;
    max-height: 45px;
  }
}
header .text {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  padding-right: 13px;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 1000px) {
  header .text {
    padding-right: 50px;
  }
}

/*==================================================
footer
====================================================*/
footer {
  background-image: url(../../img/footer-bg_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 1000px) {
  footer {
    background-image: url(../../img/footer-bg_pc.png);
  }
}
footer .logo {
  width: 149px;
  display: block;
  margin: 0 auto;
  padding: 40px 0 30px;
}
@media screen and (min-width: 1000px) {
  footer .logo {
    padding: 100px 0 30px;
  }
}
footer .snsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .sns {
  width: auto;
  height: 41px;
  margin-right: 15px;
}
footer .sns:last-of-type {
  margin-right: 0;
}
footer small {
  display: block;
  margin-top: 50px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
}

/*==================================================
bottom
====================================================*/
.fix {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 50;
  -webkit-box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.3);
}
.fix .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.fix .inner .menu {
  text-align: center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 86, 80)), to(rgb(0, 171, 159)));
  background-image: linear-gradient(0deg, rgb(0, 86, 80), rgb(0, 171, 159));
  border-right: #fff 1px dashed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.fix .inner .menu:last-child {
  border-right: 0;
}
.fix .inner .menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.4rem;
  color: #fff;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
}
.fix .inner .menu span {
  padding: 12px 0;
  display: block;
}
.fix .inner .menu01 {
  width: 26.92%;
}
.fix .inner .menu02 {
  width: 19.74%;
}
.fix .inner .menu03 {
  width: 30.51%;
}
.fix .inner .menu04 {
  width: 22.82%;
}

.fix.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width: 1000px) {
  .fix.active {
    display: none;
  }
}

/*==================================================
page
==================================================*/
/*==================================================
page
====================================================*/
/*==================================================
top
====================================================*/
.mainImgWrap {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap {
    margin-top: 0;
  }
}
.mainImgWrap .mainCvWrap {
  display: block;
  width: 100%;
  height: auto;
}
.mainImgWrap .mainCvInner {
  padding: 0;
  line-height: 0;
  padding: 0 25px;
  height: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.mainImgWrap .mainCvInner:hover {
  opacity: 1;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .mainCvInner {
    max-width: 547px;
    width: 45%;
    margin: 0 auto;
    padding: 0;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: -5%;
    position: relative;
  }
}
.mainImgWrap .mainCvBtn {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.mainImgWrap .mainCvBtnHover {
  display: none;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .mainCvBtnHover {
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: block;
  }
  .mainImgWrap .mainCvBtnHover:hover {
    opacity: 1;
  }
}
.mainImgWrap .attentionWrap {
  margin: -30px 0 30px 0;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .attentionWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 50px auto 0;
    padding: 0 50px;
    max-width: 1000px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mainImgWrap .place {
  font-weight: 700;
  font-size: 1.8rem;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  text-align: center;
  padding: 20px 0;
  margin: 0 25px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .place {
    padding: 20px 40px;
    margin: 0 0 60px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.mainImgWrap .date {
  color: #d50000;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .date {
    font-size: 2.8rem;
    margin: 0 0 60px 20px;
    line-height: 1.2;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.mainImgWrap .sessionWrap {
  padding: 0 25px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .sessionWrap {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.mainImgWrap .sessionWrap .sessionBtn {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.mainImgWrap .navWrap {
  padding: 0 25px;
  margin: 30px 0 20px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .navWrap {
    margin: 50px 0 40px;
  }
}
.mainImgWrap .navWrap .navInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .navWrap .navInner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mainImgWrap .navWrap .menu {
  width: 48.5%;
  border-radius: 10px;
  border: 1px solid #333;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .navWrap .menu {
    width: 165px;
    margin-right: 10px;
  }
  .mainImgWrap .navWrap .menu:last-child {
    margin-right: 0;
  }
}
.mainImgWrap .detailWrap {
  margin-top: 20px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap {
    margin-top: 60px;
  }
}
.mainImgWrap .detailWrap .detailInner {
  padding: 25px 25px 0 25px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap .detailInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 25px;
  }
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.mainImgWrap .detailWrap .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap .title {
    padding-bottom: 0;
    margin-right: 15px;
  }
}
.mainImgWrap .detailWrap .detail {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap .detail {
    margin-bottom: 0;
    padding: 15px 40px;
  }
}
.mainImgWrap .detailWrap .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .mainImgWrap .detailWrap .flex {
    margin-right: 40px;
  }
}
.mainImgWrap .detailWrap .text {
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
}
.mainImgWrap .detailWrap .text span {
  font-size: 1.5rem;
}
.mainImgWrap .detailWrap .num {
  background-color: #333;
  color: #fff;
  border-radius: 8px;
  padding: 0 10px;
  margin-left: 10px;
}

@media screen and (min-width: 1000px) {
  .cvWrap {
    max-width: 700px;
    margin: 0 auto;
  }
}
.cvWrap .cvInner {
  padding: 0 25px;
}
@media screen and (min-width: 1000px) {
  .cvWrap .cvInner {
    padding: 0;
  }
}
.cvWrap .cvInner .list {
  margin-bottom: 20px;
}
.cvWrap .cvInner .list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .cvWrap .cvInner .list {
    margin-bottom: 25px;
  }
}
.cvWrap .cvInner .mainCvInner {
  position: relative;
}
.cvWrap .cvInner .cvBtn {
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
}
.cvWrap .cvInner .mainCvHover {
  display: none;
}
@media screen and (min-width: 1000px) {
  .cvWrap .cvInner .mainCvHover {
    -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    display: block;
  }
  .cvWrap .cvInner .mainCvHover:hover {
    opacity: 1;
  }
}

.cvWrap01 {
  background-image: url("../../img/bg-green_sp.svg"), url("../../img/bg-blue_sp.svg");
  background-position: top left, bottom right;
  background-size: 186px, 133px;
  background-repeat: no-repeat, no-repeat;
  padding: 30px 0 50px;
}
@media screen and (min-width: 1000px) {
  .cvWrap01 {
    background-image: url("../../img/bg-green01.png"), url("../../img/bg-blue01.png");
    background-position: top center, bottom center;
    background-size: 1920px 740px, 1920px 531px;
    padding: 50px 0 60px;
  }
}

main .schoolWrap {
  padding: 25px 25px 40px;
  background-image: url(../../img/about-bg_sp.png);
  background-color: #f5f5f5;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap {
    background-image: url(../../img/about-bg_pc.png);
    padding: 70px 50px 60px;
  }
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .wrap {
    max-width: 1000px;
    margin: 0 auto;
  }
}
main .schoolWrap .title {
  font-size: 35px;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .title {
    margin-bottom: 50px;
    font-size: 50px;
  }
}
main .schoolWrap .text {
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .youtubeWrap {
    max-width: 800px;
    margin: 0 auto;
  }
}
main .schoolWrap .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .youtube {
    margin: 50px 0 10px;
  }
}
main .schoolWrap .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
main .schoolWrap .youtubeText {
  line-height: 1.3;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .youtubeText {
    max-width: 800px;
    margin: 0 auto;
  }
}
main .schoolWrap .descriptionWrap {
  border: 1px solid #333;
  padding: 25px;
  margin-top: 25px;
}
@media screen and (min-width: 1000px) {
  main .schoolWrap .descriptionWrap {
    margin-top: 40px;
    padding: 30px;
  }
}
main .schoolWrap .descriptionTitle {
  font-size: 2rem;
  margin-bottom: 5px;
}
main .schoolWrap .descriptionText {
  margin-top: 20px;
}
main .flowWrap {
  padding: 50px 25px;
  background-image: url("../../img/bg-blue_sp.svg");
  background-position: bottom right;
  background-size: 236px;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1000px) {
  main .flowWrap {
    background-image: url("../../img/bg-blue01.png");
    background-position: bottom center;
    background-size: 1920px 625px;
    padding: 50px;
  }
}
main .flowWrap .flowMainTitle {
  text-align: center;
  margin-bottom: 30px;
}
main .flowWrap .flowMainTitle span {
  border-bottom: 2px solid #333;
  display: inline-block;
  font-size: 2.5rem;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowMainTitle span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowMainDescription {
    width: 575px;
    margin: 0 auto;
  }
}
main .flowWrap .flowImg {
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowInner {
    max-width: 1000px;
    margin: 20px auto 0;
  }
}
main .flowWrap .flow {
  margin-top: 30px;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flow {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowTextWrap {
    width: 335px;
    margin-right: 65px;
    min-width: 335px;
  }
}
main .flowWrap .flowNum {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .flowWrap .flowNum:before {
  content: "";
  background-image: url(../../img/school-navi01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 29px;
  height: 39px;
  display: block;
  margin-right: 20px;
}
main .flowWrap .flowNum span {
  display: inline-block;
  border-bottom: dashed 1px #333;
  margin-top: 10px;
}
main .flowWrap .flow:nth-child(2) .flowNum:before {
  content: "";
  background-image: url(../../img/school-navi02.svg);
  width: 32px;
}
main .flowWrap .flow:nth-child(3) .flowNum:before {
  content: "";
  background-image: url(../../img/school-navi03.svg);
  width: 33px;
  height: 40px;
}
main .flowWrap .flowTitle {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
main .flowWrap .flowText {
  letter-spacing: 0.1pt;
  line-height: 1.8;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowPhotoWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
main .flowWrap .flowPhotoWrap img {
  margin-top: 15px;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .flowPhotoWrap img {
    width: 295px;
    margin-right: 10px;
  }
  main .flowWrap .flowPhotoWrap img:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 1000px) {
  main .flowWrap .lectureWrap {
    max-width: 1000px;
    margin: 0 auto;
  }
}
main .flowWrap .lectureWrap .title {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding-bottom: 20px;
}
main .flowWrap .lectureWrap .title:after {
  border-top: 1px solid #333;
  content: "";
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
}
main .flowWrap .lectureWrap .lectureInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .lectureWrap .lectureInner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
main .flowWrap .lectureWrap .lecture {
  width: 48%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  main .flowWrap .lectureWrap .lecture {
    width: 160px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
main .flowWrap .lectureWrap .name {
  margin-top: 5px;
  font-weight: 700;
}
main .flowWrap .lectureWrap .description {
  line-height: 1.5;
  font-size: 1.4rem;
}
main .graduateWrap {
  padding: 45px 25px 40px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  main .graduateWrap {
    padding: 50px 0 60px;
  }
}
main .graduateWrap .graduateTitle {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (min-width: 1000px) {
  main .graduateWrap .graduateTitle {
    margin-bottom: 50px;
  }
}
main .graduateWrap .graduateTitle span {
  border-bottom: 2px solid #333;
  display: inline-block;
  font-size: 2.5rem;
}
@media screen and (min-width: 1000px) {
  main .graduateWrap .graduateTitle span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  main .graduateWrap .studentWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 50px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1000px;
  }
}
main .graduateWrap .student {
  border-bottom: 1px dashed #707070;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  main .graduateWrap .student {
    max-width: 475px;
    width: 48%;
  }
}
main .graduateWrap .student:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  main .graduateWrap .student:last-child {
    border-bottom: 1px dashed #707070;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
main .graduateWrap .student .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main .graduateWrap .student .photo {
  min-width: 160px;
  max-width: 160px;
  margin-right: 20px;
}
main .graduateWrap .student .profile {
  width: auto;
}
main .graduateWrap .student .name {
  font-size: 1.6rem;
  font-weight: 700;
}
main .graduateWrap .student .text {
  margin-top: 10px;
}

.cvWrap02 {
  background-image: url("../../img/bg-green_sp.svg");
  background-position: top left;
  background-size: 242px 229px;
  background-repeat: no-repeat;
  padding: 30px 0 50px;
}
@media screen and (min-width: 1000px) {
  .cvWrap02 {
    background-image: url("../../img/bg-green02.png");
    background-position: top center;
    background-size: 1920px 567px;
    padding: 50px 0 60px;
  }
}

.meritWrap {
  padding: 45px 25px 40px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  .meritWrap {
    padding: 50px 0 60px;
  }
}
.meritWrap .meritTitle {
  text-align: center;
}
.meritWrap .meritTitle span {
  border-bottom: 2px solid #333;
  display: inline-block;
  font-size: 2.5rem;
  padding-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritTitle span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1000px) {
  .meritWrap .inner {
    max-width: 725px;
    margin: 0 auto;
  }
}
.meritWrap .merit {
  margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .merit {
    margin-top: 70px;
  }
  .meritWrap .merit:first-child {
    margin-top: 50px;
  }
}
.meritWrap .meritNum {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.meritWrap .meritNum:before {
  content: "01";
  margin-right: 15px;
  color: #2e59a6;
  font-size: 3.7rem;
  line-height: 0;
}
.meritWrap .meritNum span {
  display: inline-block;
  border-bottom: dashed 1px #333;
  font-size: 1.8rem;
}
.meritWrap .merit:nth-child(2) .meritNum:before {
  content: "02";
}
.meritWrap .merit:nth-child(3) .meritNum:before {
  content: "03";
}
.meritWrap .meritTitle {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}
.meritWrap .meritText {
  letter-spacing: 0.1pt;
  line-height: 1.8;
  margin-top: 20px;
}
.meritWrap .meritDetailWrap01 {
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritDetailWrap01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.meritWrap .meritDetailWrap01 .title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.meritWrap .meritDetailWrap01 .title:after {
  border-top: 1px solid #333;
  content: "";
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritDetailWrap01 .detail01 {
    width: 360px;
  }
  .meritWrap .meritDetailWrap01 .detail01 img {
    width: 340px;
  }
}
.meritWrap .meritDetailWrap01 .detail02 {
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritDetailWrap01 .detail02 {
    width: 340px;
  }
}
.meritWrap .btn {
  display: block;
  color: #fff;
  background-color: #00ab9f;
  padding: 15px 0;
  text-align: center;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
}
.meritWrap .meritDetailWrap02 {
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritDetailWrap02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.meritWrap .meritDetailWrap02 img {
  margin-top: 15px;
}
@media screen and (min-width: 1000px) {
  .meritWrap .meritDetailWrap02 img {
    width: 340px;
  }
}

.cvWrap03 {
  padding: 30px 0 50px;
}
@media screen and (min-width: 1000px) {
  .cvWrap03 {
    padding: 50px 0 60px;
  }
}

.lectureIntroWrap {
  background-color: #93a7ba;
  color: #fff;
}
.lectureIntroWrap .lectureIntroWrapBg {
  padding: 45px 25px 40px;
}
@media screen and (min-width: 1000px) {
  .lectureIntroWrap .lectureIntroWrapBg {
    padding: 45px 50px 40px;
  }
}
.lectureIntroWrap .title {
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 40px;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .lectureIntroWrap .title {
    font-size: 4rem;
  }
}
.lectureIntroWrap .title span {
  display: block;
  font-size: 1.5rem;
  margin-top: 5px;
}
@media screen and (min-width: 1000px) {
  .lectureIntroWrap .lectureInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1000px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.lectureIntroWrap .lecture {
  margin-top: 25px;
}
.lectureIntroWrap .lecture:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1000px) {
  .lectureIntroWrap .lecture {
    width: 30%;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .lectureIntroWrap .lecture:nth-child(3n+2) {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.lectureIntroWrap .name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 10px;
}
.lectureIntroWrap .description {
  margin-top: 5px;
  line-height: 1.8;
}
.lectureIntroWrap .text {
  display: none;
  margin-top: 15px;
  line-height: 1.8;
}
.lectureIntroWrap .continueBtn01 {
  margin-top: 10px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  width: auto;
  border: 1px solid #fff;
  border-radius: 15px;
  font-weight: 700;
  text-align: left;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #8898a7;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.lectureIntroWrap .continueBtn01:hover {
  background-color: #93a7ba;
}
.lectureIntroWrap .button {
  border: 1px solid #333;
  padding: 10px 20px;
  display: block;
  margin: 0 auto;
  background-color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 1000px) {
  .lectureIntroWrap .button {
    width: 400px;
    margin-top: 0;
  }
}

.curriculumWrap {
  background-color: #a5cbd6;
  color: #fff;
}
.curriculumWrap .curriculumWrapBg {
  padding: 45px 25px 40px;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculumWrapBg {
    padding: 45px 0 40px;
  }
}
.curriculumWrap .title {
  font-size: 2.5rem;
  text-align: center;
  padding-bottom: 40px;
  font-weight: 500;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .inner {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1000px;
  }
}
.curriculumWrap .curriculum {
  margin-bottom: 40px;
}
.curriculumWrap .curriculum .mainTitle01 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.curriculumWrap .curriculum .mainTitle02 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.curriculumWrap .curriculum .detailWrap {
  border-radius: 10px;
  border: 1px solid #6a6a6a;
  background-color: #fff;
  margin-top: 20px;
}
.curriculumWrap .curriculum .date {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #91b4be;
  color: #fff;
  padding: 0 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px 0 0 20px;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculum .date {
    margin: 30px 0 0 30px;
  }
}
.curriculumWrap .curriculum .detail {
  color: #333;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculum .detail {
    padding: 20px 30px 30px;
  }
}
.curriculumWrap .curriculum .text01 {
  font-weight: 700;
  font-size: 1.7rem;
}
.curriculumWrap .curriculum .text02 {
  margin-top: 10px;
  word-break: break-all;
}
.curriculumWrap .curriculum .text03 {
  font-size: 1.4rem;
  margin: 10px 0 0 0;
  padding-top: 10px;
  border-top: 1px dotted #bfbfbf;
  word-break: break-all;
}
.curriculumWrap .curriculum .continueBtn02 {
  margin-top: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  width: auto;
  border-radius: 15px;
  padding: 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.curriculumWrap .curriculum .continueBtn02:hover {
  opacity: 0.8;
}
.curriculumWrap .curriculum .textWrap {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculum .textWrap {
    -webkit-line-clamp: 1;
  }
}
.curriculumWrap .curriculum .textWrap.open {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.curriculumWrap .curriculum .photoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculum .photoWrap {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.curriculumWrap .curriculum .photoWrap figure {
  display: block;
  width: 47%;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .curriculum .photoWrap figure {
    width: 160px;
    margin-right: 20px;
  }
}
.curriculumWrap .curriculum .photoWrap figcaption {
  font-size: 1.2rem;
  line-height: 1.5;
  padding-top: 5px;
}
@media screen and (min-width: 1000px) {
  .curriculumWrap .attention {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1000px;
  }
}
.curriculumWrap .attention .text {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}
.curriculumWrap .attention .text:last-child {
  margin-bottom: 0;
}

.overviewWrap {
  padding: 45px 25px 40px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  .overviewWrap {
    padding: 50px 50px 60px;
  }
}
@media screen and (min-width: 1000px) {
  .overviewWrap .overviewInner {
    margin: 0 auto;
    max-width: 1000px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.overviewWrap .overviewTitle {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .overviewWrap .overviewTitle {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
.overviewWrap .detail {
  border-top: 1px solid #707070;
  padding: 15px 0;
}
.overviewWrap .detail:last-of-type {
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 1000px) {
  .overviewWrap .detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.overviewWrap .name {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .overviewWrap .name {
    width: 100px;
  }
}
@media screen and (min-width: 1000px) {
  .overviewWrap .description {
    max-width: 900px;
  }
}

.accessWrap {
  background-image: url("../../img/bg-green_sp.svg");
  background-position: top left;
  background-size: 99px;
  background-repeat: no-repeat;
  padding: 50px 0 50px;
}
@media screen and (min-width: 1000px) {
  .accessWrap {
    background-image: url("../../img/bg-green03.png");
    background-position: top center;
    background-size: 1920px 493px;
    padding: 50px 0 60px;
  }
}
.accessWrap .title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .accessWrap .title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
.accessWrap .accessInner {
  padding: 0 25px;
}
@media screen and (min-width: 1000px) {
  .accessWrap .accessInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1000px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 50px;
  }
}
.accessWrap .list {
  display: inline-block;
  border-bottom: dashed 1px #333;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1000px) {
  .accessWrap .list {
    width: 30%;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .accessWrap .list:nth-child(3n+2) {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.accessWrap .schoolName {
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .accessWrap .schoolName {
    text-align: left;
  }
}
.accessWrap .schoolName span {
  border-bottom: 2px solid #333;
  display: inline-block;
  font-size: 2rem;
}
.accessWrap .detailWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
.accessWrap .photo {
  width: 48%;
  margin-right: 2%;
}
.accessWrap .name {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.accessWrap .address {
  letter-spacing: 0.1pt;
  line-height: 1.2;
  font-size: 1.4rem;
}
.accessWrap iframe {
  height: 150px;
  margin-top: 10px;
  width: 100%;
}
.accessWrap .attention {
  padding: 0 25px;
}
@media screen and (min-width: 1000px) {
  .accessWrap .attention {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1000px;
  }
}
.accessWrap .attention .text {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}
.accessWrap .attention .text:last-child {
  margin-bottom: 0;
}

.qaWrap {
  padding: 45px 25px 40px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  .qaWrap {
    padding: 50px 50px 60px;
  }
}
@media screen and (min-width: 1000px) {
  .qaWrap .qaInner {
    margin: 0 auto;
    max-width: 1000px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.qaWrap .title {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1000px) {
  .qaWrap .title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
.qaWrap .detail {
  border-bottom: 1px dashed #333;
  margin-bottom: 20px;
}
.qaWrap .detail:last-of-type {
  margin-bottom: 0;
}
.qaWrap .question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.qaWrap .question:before {
  content: "Q";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.4;
}
.qaWrap .btn {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #f5f5f5;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0 30px 15px 10px;
  text-align: left;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
}
.qaWrap .btn.active .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.qaWrap .icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  font-size: 1.6rem;
}
.qaWrap .answerWrap {
  display: none;
}
.qaWrap .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 15px;
}
.qaWrap .answer:before {
  content: "A";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
}
.qaWrap .text {
  padding-bottom: 15px;
  padding-left: 12px;
}
.qaWrap .text:last-of-type {
  padding-bottom: 0;
}

/*==================================================
parts
==================================================*/
/*==================================================
layout
====================================================*/
/*==================================================
button
====================================================*/
.buttonWrap {
  width: 250px;
}
.buttonWrap .button {
  position: relative;
  padding: 10px 0;
  display: block;
  text-align: center;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 10px;
  width: 100%;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 1.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-weight: 500;
}
.buttonWrap .button:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 21px;
  height: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/common/button-nav.svg);
  background-repeat: no-repeat;
}