@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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; }

/* Specify the box size calculation method */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Improved responsiveness of links and buttons on touch devices */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

/* --------------------
	Settings
	変数・mixin設定
-------------------- */
/* --------------------
	Base
	基本設定
-------------------- */
html {
  font-size: 1.125rem; }
  @media screen and (max-width: 768px) {
    html {
      font-size: 0.875rem; } }

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: 400;
  font-style: normal; }
  body a {
    color: inherit;
    text-decoration: none;
    /*&[href^='tel:'] {
    	pointer-events: none;
    }*/
    /*&:hover {
    	color: $color_link_hover;
    }*/ }
  body img {
    vertical-align: bottom; }
  body em {
    font-style: normal; }
  body li {
    list-style: none; }
  body h1, body h2, body h3, body h4, body h5, body h6 {
    font-weight: inherit; }
  @media screen and (max-width: 768px) {
    body {
      /*a {
      	&[href^='tel:'] {
      		pointer-events: auto;
      	}
      }*/ } }

.wrap {
  background: #ffffff;
  width: 100%;
  color: #000000; }

/* --------------------
	Layout
-------------------- */
/* Mixin */
/* common parts */
/* background image */
/* button */
@keyframes anime_cvbtn01 {
  from {
    transform: scale(0.9, 0.9); }
  to {
    transform: scale(1, 1); } }
/*
	Wrap
------------------------------------------------------------ */
.wrap {
  font-family: "Noto Serif JP", sans-serif; }
  .wrap img {
    width: 100%;
    height: auto; }
  .wrap .blue {
    color: #2076C6; }
  .wrap .emphasis {
    font-weight: bold; }
  .wrap .line {
    text-decoration: underline; }
  .wrap .fas {
    padding: 0 .5rem;
    color: #2076C6; }
  .wrap .pc {
    display: inline-block; }
  .wrap .sp {
    display: none; }
  @media screen and (max-width: 768px) {
    .wrap .pc {
      display: none; }
    .wrap .sp {
      display: inline-block; } }

/*
	Header
------------------------------------------------------------ */
.header {
  background: #ffffff;
  width: 100%;
  color: #000000;
  position: fixed;
  top: 0;
  z-index: 1000;
  /* ▼スクロールすると表示される背景の設定
  &.is-blur {
  	background: $background_header;
  	backdrop-filter: blur(10px);
  }
  */ }
  .header__inner {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between; }
  .header__block01 {
    margin: 1rem 0; }
  .header__block02 {
    margin: 0 0 1rem; }
  .header__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6%; }
  .header__image {
    width: 10%; }
  .header__text {
    line-height: 1.6em; }
  .header__nav {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row wrap; }
    .header__nav-item {
      margin: 0;
      padding: 0 0 0 1.56em;
      line-height: 1.6em;
      font-weight: 700; }
    .header__nav-button {
      display: none; }
    .header__nav a {
      transition: all 0.2s ease-in-out; }
  .header__button {
    /* ▼横並べにする
    display: flex;
    align-items: center;
    justify-content: space-between;
    */
    /* ▼複数ボタンがあるとき、itemを使う
    &-item {
    	//▼2つのとき
    	//width: calc((100% - 1rem) / 2);
    	//▼3つのとき
    	//width: calc((100% - 2rem) / 3);
    }
    */ }
    .header__button a {
      transition: all 0.2s ease-in-out;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 4px 4px 0px 0px #000; }
      .header__button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .header__button a:hover {
          opacity: 1; } }
  @media screen and (max-width: 768px) {
    .header__heading {
      width: 12%;
      z-index: 1200; }
    .header__image {
      width: 30%;
      z-index: 1200; }
    .header__nav {
      transition: all 0.2s ease-in-out;
      background: #ffffff;
      width: 100vw;
      height: 0;
      padding-top: calc(10vw + 1rem + 1rem);
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
      .header__nav.active {
        opacity: 1;
        height: 100vh;
        z-index: 1250; }
        .header__nav.active a {
          cursor: pointer;
          display: block; }
      .header__nav-item {
        padding: .5rem 1em;
        text-align: center; }
      .header__nav-button {
        display: block;
        position: absolute;
        top: 4.5rem;
        left: 1rem;
        z-index: 1300; }
        .header__nav-button button {
          background-color: transparent;
          border: none;
          cursor: pointer;
          outline: none;
          padding: 0;
          width: 10vw;
          height: 10vw;
          display: flex;
          align-items: center;
          position: relative;
          justify-content: center;
          cursor: pointer; }
          .header__nav-button button::before {
            content: '';
            height: 7vw;
            border-top: 4px solid black;
            border-bottom: 4px solid black;
            display: block;
            flex-basis: 100%;
            flex-shrink: 0;
            box-sizing: border-box;
            animation: navToggleOuter_reverse .5s; }
          .header__nav-button button::after {
            content: '';
            background-color: black;
            width: 100%;
            height: 4px;
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            box-sizing: border-box;
            animation: navToggleInner_reverse .5s; }
          .header__nav-button button.open::before {
            transform: scaleY(0.09);
            animation: navToggleOuter .5s; }
          .header__nav-button button.open::after {
            transform: translate(-50%, -50%);
            animation: navToggleInner .5s; }
        .header__nav-button span {
          display: none; }
      .header__nav a {
        cursor: none;
        display: none; }
    .header__button {
      width: 70%;
      margin: 0 0 0 auto;
      z-index: 1200; } }

@keyframes navToggleOuter {
  0% {
    background-color: transparent;
    transform: scaleY(1); }
  50% {
    background-color: transparent;
    transform: scaleY(0.09); }
  51% {
    background-color: white;
    transform: scaleY(0.09); }
  100% {
    background-color: white;
    transform: scaleY(0.09); } }
@keyframes navToggleInner {
  0% {
    transform: translate(-50%, -50%); }
  50% {
    transform: translate(-50%, -50%); }
  100% {
    transform: translate(-50%, -50%); } }
@keyframes navToggleOuter_reverse {
  0% {
    background-color: white;
    transform: scaleY(0.09); }
  50% {
    background-color: white;
    transform: scaleY(0.09); }
  51% {
    background-color: transparent;
    transform: scaleY(0.09); }
  100% {
    background-color: transparent;
    transform: scaleY(1); } }
@keyframes navToggleInner_reverse {
  0%,
	50%,
	100% {
    transform: translate(-50%, -50%) rotate(0); } }
/* visual */
.visual {
  background-color: #ffffff;
  background-image: url("../images/visual.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .visual__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    padding: 11rem 0;
    display: flex;
    justify-content: flex-end; }
  .visual__title {
	display: flex;
    flex-direction: column;
    width: 50%;
  }
  .visual__attention {
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start; }
    .visual__attention p {
      background-color: #2076C6;
      padding: .5rem;
      font-size: 1.1rem;
      color: #fff;
      margin: 0 0.67rem 0 0; }
      .visual__attention p.sub01 {
	      background: #02528d;
      }
      .visual__attention p.sub02 {
	      background: #007baf;
      }
  .visual__heading {
    margin: 0;
    padding: 0 0 .5rem;
    line-height: 130%;
    font-size: 2.79rem;
    font-weight: 500; }
  .visual__heading01 {
    font-size: 2.1rem;
    margin-top: 20px;
  }
  .visual__catch01 {
    font-size: 1.62rem;
    padding: 4.33rem 0 1.5rem;
    text-align: center; }
  .visual__catch02 {
    font-size: 2.7rem;
    color: #2076C6;
    font-weight: 400;
    text-decoration: underline;
    padding: 0 0 3.33rem;
    text-align: center; }
  .visual__text {
	font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0 0 1.5rem;
    line-height: 1.6em;
    width: 74%;
    margin: 60px auto;
    text-align: center;}
  .visual__text .str {
	  font-size: 1.5rem;
	  color: #2076C6;
      line-height: 1.7em;
  }
  .visual__text .note {
	  font-size: .8rem;
  }
  .bnrWrap {
	  text-align: center;
	  margin-bottom: 90px;
  }
  .bnrWrap img {
	  width: 50%;
  }
  @media screen and (max-width: 768px) {
    .visual__heading01 {
	  font-size: 1.4rem;
      margin: 14px 0 6px;
      line-height: 1.3;
    }
  .bnrWrap img {
	  width: 100%;
  }
  }

  .flex {
	  display: flex;
  }
  .flex__pc-on {
	  display: flex;
  }
  .visual__button {
    position: relative;
    animation: anime_cvbtn01 .7s ease 4s infinite alternate;
    width: 50%;
    padding: 0 3rem; }
    .visual__button a {
      transition: all 0.2s ease-in-out;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 400px;
      margin: 1em 0 0;
      box-shadow: 4px 4px 0px 0px #000; }
      .visual__button a:hover {
        opacity: .7; }
      @media screen and (max-width: 768px) {
        .visual__button a:hover {
          opacity: 1; }
        .flex {
	      display: block;}
	    .flex__pc-on {
		  display: none;} }
    .visual__button .text {
      color: #2076C6;
      padding: 0 5rem;
      text-align: center; }
      .visual__button .text::before, .visual__button .text:after {
        content: "";
        position: absolute;
        top: 0px;
        display: block;
        width: 1px;
        height: 25%;
        background: #2076C6; }
      .visual__button .text::before {
        left: 120px;
        transform: rotate(-30deg); }
      .visual__button .text::after {
        left: 360px;
        transform: rotate(30deg); }
    .visual__button2 .text {
	    padding: 0 .3rem;}
      .visual__button2 .text::before {
        left: 60px;
        transform: rotate(-30deg); }
      .visual__button2 .text::after {
        left: 440px;
        transform: rotate(30deg); }
  @media screen and (max-width: 768px) {
    .visual {
      background-image: url("../images/visual-sp.jpg");
      background-position: top center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 36vh; }
      .visual__inner {
        margin: 8rem auto 0;
        padding: 3rem 0 0; }
      .visual__attention p {
        font-size: .82rem; }
      .visual__heading {
        font-size: 1.9rem;
        margin: 0 0 3rem; }
      .visual__catch01 {
        font-size: 1.1rem;
        text-align: center;
        padding: 3rem 0 .9rem; }
      .visual__catch02 {
        font-size: 1.56rem;
        line-height: 160%;
        text-align: center;
        padding: 0 0 1.33rem; }
      .visual__text {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 1rem; }
      .bnrWrap {
	    text-align: center;
		margin-bottom: 50px;
	  }
      .visual__button {
        width: 100%;
        padding:0; }
      .visual__button2 {
	      margin-top: 3rem;
      }
        .visual__button .text {
          padding: 0;
          text-align: center; }
          .visual__button .text::before {
            left: 100px;
            transform: rotate(-30deg); }
          .visual__button .text::after {
            left: 244px;
            transform: rotate(30deg); }
          .visual__button2 .text::before {
            left: 30px;
            transform: rotate(-30deg);} 
          .visual__button2 .text::after {
            left: 330px;
            transform: rotate(30deg); }
            }


/*
	Contents
------------------------------------------------------------ */
.contents {
  background: transparent;
  color: #000000;
  /* movie */ }
  .contents .movie {
    width: 100%;
    max-width: 1000px;
    height: 0;
    margin: 0 auto;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden; }
    .contents .movie iframe {
      width: 100% !important;
      height: 100% !important;
      position: absolute;
      top: 0;
      left: 0; }

/*
	Contents	主な編集箇所
------------------------------------------------------------ */
/* cv */
.cv {
  background: #2076C6;
  padding: 4rem 0; }
  @media screen and (max-width: 768px) {
    .cv {
      padding: 8vw 0; } }
  .cv__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .cv__heading {
    padding: 0 0 4.33rem;
    line-height: 1.6em;
    font-size: 2.11rem;
    font-weight: 500;
    text-align: center;
    text-align: center;
    font-size: 1.33rem;
    position: relative;
    color: #FFFF00; }
    .cv__heading-left {
      text-align: left; }
    .cv__heading-center {
      text-align: center; }
    .cv__heading-right {
      text-align: right; }
    .cv__heading .small {
      font-size: 1.33rem;
      display: block; }
    .cv__inner2 {
	    margin-top: 2rem;}
	.cv__inner2 .cv__heading {
	color: #fff;}
	.cv__inner2 .cv__heading::before,.cv__inner2 .cv__heading:after {
		background: #fff;}
	.cv__inner2 .cv__heading::before {
    left: 250px;}
    .cv__inner2 .cv__heading::after {
    right: 250px;}
    @media screen and (max-width: 768px) {
      .cv__heading {
        font-size: 1.5rem;
        padding: 0 0 2.11rem; }
        .cv__heading .small {
          font-size: 1rem; } }
    .cv__heading::before, .cv__heading:after {
      content: "";
      position: absolute;
      top: 0px;
      display: block;
      width: 3px;
      height: 35%;
      background: #FFFF00; }
    .cv__heading::before {
      left: 330px;
      transform: rotate(-30deg); }
    .cv__heading::after {
      right: 330px;
      transform: rotate(30deg); }
  .cv__text {
    line-height: 1.6em; }
    .cv a {
	   box-shadow: 4px 4px 0px 0px #000;
       display: inline-block;
       width: 100%; }
    @media screen and (max-width: 768px) {
      .cv__text {
        /*br {
        	display: none;
        }*/ } }
  .cv__image {
    text-align: center; }
    .cv__image img {
      width: 100%;
      height: auto; }
    .cv__image img {
      max-width: 100%;
      margin: 0 auto; }
      .cv__image img.circle {
        border-radius: 100%;
        overflow: hidden; }
    @media screen and (max-width: 768px) {
      .cv__image {
        padding: 0 0 6vw; } }
  .cv__button {
    width: 67.6%;
    margin: -3rem auto 0;
    animation: anime_cvbtn01 .7s ease 4s infinite alternate; }
    .cv__button a:hover {
      opacity: .7; }
  @media screen and (max-width: 768px) {
    .cv__heading {
      font-size: 1.1rem; }
      .cv__heading::before, .cv__heading:after {
        position: absolute;
        top: 4px; }
      .cv__heading::before {
        left: 88px;
        transform: rotate(-30deg); }
      .cv__heading::after {
        right: 88px;
        transform: rotate(30deg); }
      .cv__button {
        width: 100%;
        margin: -1rem auto 0; }
      .cv__inner2 .cv__heading::before {
	    left: 20px;}
	  .cv__inner2 .cv__heading::after {
        right: 20px;} }

/* 全ブロック共通 */
.trouble,
.point,
.about,
.course,
.reason,
.voice,
.faq {
  padding: 4rem 0; }
  @media screen and (max-width: 768px) {
    .trouble,
    .point,
    .about,
    .course,
    .reason,
    .voice,
    .faq {
      padding: 8vw 0; } }
  .trouble__inner,
  .point__inner,
  .about__inner,
  .course__inner,
  .reason__inner,
  .voice__inner,
  .faq__inner {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto; }
  .trouble__heading,
  .point__heading,
  .about__heading,
  .course__heading,
  .reason__heading,
  .voice__heading,
  .faq__heading {
    padding: 0 0 4.33rem;
    line-height: 1.6em;
    font-size: 2.11rem;
    font-weight: 500;
    text-align: center; }
    .trouble__heading-left,
    .point__heading-left,
    .about__heading-left,
    .course__heading-left,
    .reason__heading-left,
    .voice__heading-left,
    .faq__heading-left {
      text-align: left; }
    .trouble__heading-center,
    .point__heading-center,
    .about__heading-center,
    .course__heading-center,
    .reason__heading-center,
    .voice__heading-center,
    .faq__heading-center {
      text-align: center; }
    .trouble__heading-right,
    .point__heading-right,
    .about__heading-right,
    .course__heading-right,
    .reason__heading-right,
    .voice__heading-right,
    .faq__heading-right {
      text-align: right; }
    .trouble__heading .small,
    .point__heading .small,
    .about__heading .small,
    .course__heading .small,
    .reason__heading .small,
    .voice__heading .small,
    .faq__heading .small {
      font-size: 1.33rem;
      display: block; }
    @media screen and (max-width: 768px) {
      .trouble__heading,
      .point__heading,
      .about__heading,
      .course__heading,
      .reason__heading,
      .voice__heading,
      .faq__heading {
        font-size: 1.5rem;
        padding: 0 0 2.11rem; }
        .trouble__heading .small,
        .point__heading .small,
        .about__heading .small,
        .course__heading .small,
        .reason__heading .small,
        .voice__heading .small,
        .faq__heading .small {
          font-size: 1rem; } }
  .trouble__text,
  .point__text,
  .about__text,
  .course__text,
  .reason__text,
  .voice__text,
  .faq__text {
    line-height: 1.6em; }
    @media screen and (max-width: 768px) {
      .trouble__text,
      .point__text,
      .about__text,
      .course__text,
      .reason__text,
      .voice__text,
      .faq__text {
        /*br {
        	display: none;
        }*/ } }
  .trouble__image,
  .point__image,
  .about__image,
  .course__image,
  .reason__image,
  .voice__image,
  .faq__image {
    text-align: center; }
    .trouble__image img,
    .point__image img,
    .about__image img,
    .course__image img,
    .reason__image img,
    .voice__image img,
    .faq__image img {
      width: 100%;
      height: auto; }
    .trouble__image img,
    .point__image img,
    .about__image img,
    .course__image img,
    .reason__image img,
    .voice__image img,
    .faq__image img {
      max-width: 100%;
      margin: 0 auto; }
      .trouble__image img.circle,
      .point__image img.circle,
      .about__image img.circle,
      .course__image img.circle,
      .reason__image img.circle,
      .voice__image img.circle,
      .faq__image img.circle {
        border-radius: 100%;
        overflow: hidden; }
    @media screen and (max-width: 768px) {
      .trouble__image,
      .point__image,
      .about__image,
      .course__image,
      .reason__image,
      .voice__image,
      .faq__image {
        padding: 0 0 6vw; } }

/* 各ブロック個別 */
.trouble__text {
  font-size: 1.50rem;
  text-align: center;
  font-weight: 700; }
.trouble__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 89.5%;
  margin: 0 auto; }
  .trouble__box-item01 {
    width: 75%; }
  .trouble__box-item02 {
    width: 16.4%; }
  .trouble__box .list {
    margin: 0 0 3.44rem; }
    .trouble__box .list-item {
      margin: 0 0 1.22rem;
      font-size: 1.17rem;
      font-family: "Noto Sans JP", sans-serif; }
      .trouble__box .list-item::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        background: url("../images/check.svg") no-repeat;
        background-size: contain;
        margin-right: 3px; }
@media screen and (max-width: 768px) {
  .trouble__text {
    font-size: 1.1rem;
    text-align: center; }
  .trouble__box {
    display: block;
    width: 70%; }
    .trouble__box-item01 {
      width: 100%;
      margin: 0 auto 1rem; }
    .trouble__box-item02 {
      width: 45%;
      margin: 0 auto; }
    .trouble__box .list {
      margin: 0; }
      .trouble__box .list-item {
        font-size: 1rem;
        padding-left: 1em;
        text-indent: -1em; }
        .trouble__box .list-item::before {
          width: 18px;
          height: 18px;
          margin-right: 0px; } }

.point {
  background: #ECF7FF; }
  .point__text {
    font-size: 1.50rem;
    text-align: center; }
  .point__box {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    margin: 0 auto; }
    .point__box-item {
      background: #fff;
      padding: 2.11rem 2.11rem 0 2.11rem;
      width: 48.2%;
      margin: 0 0 2.5rem;
      position: relative; }
      .point__box-item .number {
        font-family: 'Lora', serif;
        font-style: italic;
        font-size: 1.67rem;
        color: #2076C6;
        position: absolute;
        top: -1rem;
        left: 2.44rem; }
      .point__box-item .image {
        padding: .5rem 0 0 0;
        width: 90%;
        margin: 0 auto; }
      .point__box-item .text {
        font-family: "Noto Sans JP", sans-serif;
        line-height: 160%; }

	.point__box-item .text span {
	    font-size: 1.1rem;
	    margin-bottom: 10px;
	    display: block;
    }
	.point__box02 .point__box-item02 .image {
		position: absolute;
		bottom: 0;
	}

  @media screen and (max-width: 768px) {
    .point__text {
      font-size: 1.50rem;
      text-align: center; }
    .point__heading {
      margin: 0 0 3rem; }
    .point__box {
      display: block; }
      .point__box-item {
        padding: 1.17rem 1.17rem 0 1.17rem;
        width: 90%;
        margin: 0 auto 2.5rem; }
        .point__box-item .number {
          font-family: 'Lora', serif;
          font-style: italic;
          font-size: 1.67rem;
          color: #2076C6;
          position: absolute;
          top: -1rem;
          left: 2.44rem; }
        .point__box-item .image {
          padding: .5rem 0 0 0;
          width: 90%;
          margin: 0 auto; }
        .point__box-item .text {
          font-family: "Noto Sans JP", sans-serif;
          line-height: 160%; }
          
        .point__box02 .point__box-item02 .image {
		    position: relative;
		    bottom: inherit;
		}
    }

.about__catch {
  font-size: 1.67rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem;
  color: #2076C6; }
.about__text {
  font-size: 1.28rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 4.33rem; }
.about__box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto; }
  .about__box-item .text {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 180%; }
    .about__box-item .text01 {
      font-weight: 700; }
  .about__box-item .intro {
    background: #ECF7FF;
    padding: 1.44rem;
    margin: 2.11rem 0 0; }
    .about__box-item .intro .catch {
      text-align: center;
      color: #2076C6;
      font-size: 1.22rem;
      font-weight: 500;
      padding: 0 0 1.22rem;
      display: flex;
      align-items: center;
      justify-content: center; }
      .about__box-item .intro .catch::before, .about__box-item .intro .catch::after {
        border-top: 1px solid #2076C6;
        content: "";
        width: 180px;
        margin: 0 .5rem; }
  .about__box-item01 {
    width: 28.3%; }
  .about__box-item02 {
    width: 65%; }
@media screen and (max-width: 768px) {
  .about__catch {
    font-size: 1.33rem; }
  .about__text {
    font-size: 1rem;
    margin: 0 0 2.33rem;
    text-align: left; }
  .about__box {
    display: block; }
    .about__box-item .intro {
      background: #ECF7FF;
      padding: 1.44rem;
      margin: 2.11rem 0 0; }
      .about__box-item .intro .catch {
        font-size: 1.22rem; }
        .about__box-item .intro .catch::before, .about__box-item .intro .catch::after {
          width: 50px; }
    .about__box-item01 {
      width: 100%;
      margin: 0 0 1rem; }
    .about__box-item02 {
      width: 100%; } }

.course__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 4.33rem; }
  .course__button-item {
    width: 48.5%; }
.course__video {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 3rem; }
  .course__video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%; }
.course__box02 {
	margin-top: 4.33rem;
}
.course__box .heading {
  text-align: center;
  color: #2076C6;
  font-size: 1.83rem;
  font-weight: 500;
  padding: 0 0 3.78rem;
  display: flex;
  align-items: center;
  justify-content: center; }
  .course__box .heading::before, .course__box .heading::after {
    border-top: 1px solid #2076C6;
    content: "";
    width: 36%;
    margin: 0 1rem; }
.course__box .course__list {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  font-size: 1.11rem;
  margin: 0 0 3rem; }
  .course__box .course__list-item .subject {
    background: #ECF7FF;
    padding: 1.33rem;
    margin: 1.11rem 0; }
    .course__box .course__list-item .subject .catch {
      color: #2076C6;
      font-weight: bold; }
.course__box .accordion {
  padding: 0;
  margin: 0 0 2.67rem; }
  .course__box .accordion__head {
    color: #fff;
    background: #2076C6;
    text-align: center;
    font-size: 1.11rem;
    font-weight: 400;
    padding: 1rem 0;
    position: relative;
    cursor: pointer; }
    .course__box .accordion__head::before {
      content: "";
      display: inline-block;
      width: 28px;
      height: 28px;
      background: url("../images/btn-close.svg") no-repeat;
      background-size: contain;
      position: absolute;
      right: 20px;
      top: 38%;
      opacity: 1; }
    .course__box .accordion__head::after {
      transition: all 0.2s ease-in-out;
      content: "";
      display: inline-block;
      width: 28px;
      height: 28px;
      background: url("../images/btn-open.svg") no-repeat;
      background-size: contain;
      position: absolute;
      right: 20px;
      top: 38%;
      opacity: 0; }
    .course__box .accordion__head.is-active {
      display: block; }
      .course__box .accordion__head.is-active::before {
        opacity: 0; }
      .course__box .accordion__head.is-active::after {
        opacity: 1; }
  .course__box .accordion__body {
    display: none; }
@media screen and (max-width: 768px) {
  .course__inner {
    width: 100%; }
  .course__button {
    display: block;
    margin: 0 0 1.64rem; }
    .course__button-item {
      width: 100%; }
  .course__video {
    width: 100%; }
  .course__box .heading {
    font-size: 1.33rem;
    padding: 0 0 1.64rem; }
    .course__box .heading::before, .course__box .heading::after {
      width: 24%; }
  .course__box .course__list {
    font-size: 1.11rem;
    margin: 0 auto 1.56rem;
    width: 90vw; }
  .course__box .accordion {
    padding: 0;
    margin: 0 0 2.67rem; }
    .course__box .accordion__head {
      font-size: 1.11rem; }
      .course__box .accordion__head::before {
        width: 20px;
        height: 20px; }
      .course__box .accordion__head::after {
        width: 20px;
        height: 20px;
        right: 20px;
        top: 38%; } }

.reason__box {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .reason__box-item {
    width: 48%;
    margin: 0 0 4.94rem; }
    .reason__box-item .number {
      font-family: "Lora", serif;
      font-style: italic;
      font-size: 1.67rem;
      color: #2076C6;
      position: relative;
      padding: 0 0 0.3rem;
      margin: 0 0 1rem; }
      .reason__box-item .number::after {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        background-color: #2076C6;
        position: absolute;
        bottom: 0;
        left: 0px; }
    .reason__box-item .catch {
      margin: 0 0 2.28rem;
      font-size: 1.56rem;
      font-weight: 500;
      line-height: 160%; }
    .reason__box-item .text {
      font-family: "Noto Sans JP", sans-serif;
      line-height: 180%; }
  .reason__box02 {
    flex-flow: row-reverse; }
  .reason__box .list {
    margin: 0 0 3.44rem; }
    .reason__box .list-item {
      margin: 0 0 1.22rem;
      font-size: 1.17rem;
      font-family: "Noto Sans JP", sans-serif; }
      .reason__box .list-item::before {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        background: url("../images/check.svg") no-repeat;
        background-size: contain;
        margin-right: 3px; }
@media screen and (max-width: 768px) {
  .reason__box {
    display: block;
    margin: 0 0 3.33rem; }
    .reason__box-item {
      width: 100%;
      margin: 0 0 1.67rem; }
      .reason__box-item .number {
        font-size: 1.22rem;
        margin: 0 0 .67rem; }
        .reason__box-item .number::after {
          width: 30px; }
      .reason__box-item .catch {
        margin: 0 0 1rem;
        font-size: 1.33rem; }
    .reason__box .list {
      margin: 0 0 1.56rem; }
      .reason__box .list-item {
        margin: 0 0 1.22rem;
        font-size: 1.17rem;
        font-family: "Noto Sans JP", sans-serif; }
        .reason__box .list-item::before {
          content: "";
          display: inline-block;
          width: 24px;
          height: 24px;
          background: url("../images/check.svg") no-repeat;
          background-size: contain;
          margin-right: 3px; } }

.voice {
  background: #ECF7FF; }
  .voice__box {
    display: flex;
    justify-content: space-between;
    align-content: stretch;
    flex-flow: wrap; }
    .voice__box-item {
      width: 49%;
      position: relative;
      margin: 0 0 5.56rem;
      display: flex; }
      .voice__box-item .image {
        width: 30%;
        position: absolute;
        top: -70px;
        left: 40%; }
    .voice__box-item01 .image, .voice__box-item02 .image {
		  	width: 42%;
		  }
      .voice__box-item .text {
        background: #fff;
        padding: 3.11rem 1.56rem;
        line-height: 160%;
        font-family: "Noto Sans JP", sans-serif; }
    .voice__box .list {
      margin: 0 0 3.44rem; }
      .voice__box .list-item {
        margin: 0 0 1.22rem;
        font-size: 1.17rem;
        font-family: "Noto Sans JP", sans-serif; }
        .voice__box .list-item::before {
          content: "";
          display: inline-block;
          width: 24px;
          height: 24px;
          background: url("../images/check.svg") no-repeat;
          background-size: contain;
          margin-right: 3px; }
  @media screen and (max-width: 768px) {
    .voice {
      margin: 0; }
      .voice__box {
        display: block; }
        .voice__box-item {
          width: 90%;
          margin: 0 auto 5.56rem; }
          .voice__box-item .image {
            width: 30%;
            position: absolute;
            top: -50px;
            left: 40%; }
          .voice__box-item .text {
            background: #fff;
            padding: 2.11rem 1.56rem;
            line-height: 160%;
            font-family: "Noto Sans JP", sans-serif; }
        .voice__box01 {
          margin: 3.56rem 0 0; }
        .voice__box04 {
          margin-bottom: 0; }
        .voice__box .list {
          margin: 0 0 3.44rem; }
          .voice__box .list-item {
            margin: 0 0 1.22rem;
            font-size: 1.17rem;
            font-family: "Noto Sans JP", sans-serif; }
            .voice__box .list-item::before {
              content: "";
              display: inline-block;
              width: 24px;
              height: 24px;
              background: url("../images/check.svg") no-repeat;
              background-size: contain;
              margin-right: 3px; }
		.voice__box-item01 .image,.voice__box-item02 .image {
            width: 44%;
        }
  }

.faq__text {
  font-size: 1.22rem;
  font-weight: bold;
  color: #2076C6;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin: 2.33rem 0 1.33rem 0; }
.faq__image {
  width: 90%;
  margin: 0 auto; }
.faq__list {
  margin: 0 0 -1rem; }
  .faq__list-item {
    margin: 0 0 3rem;
    overflow: hidden;
    border: solid 2px #000; }
  .faq__list .heading,
  .faq__list .text {
    line-height: 1.6em;
    position: relative; }
  .faq__list .heading {
    background: #ECF7FF;
    padding: 1.5rem 2rem 1.5rem 4rem;
    color: #2076C6;
    border-bottom: solid 2px #000;
    font-size: 1.34rem;
    font-weight: 500; }
  .faq__list .text {
    background: #fff;
    padding: 1.5rem 2rem 2rem 4rem; }
    .faq__list .text a {
      color: #000; }
  .faq__list .icon {
    font-size: 1.5rem;
    display: block;
    position: absolute;
    top: 1.5rem;
    left: 2rem; }
    .faq__list .icon-a {
      color: #000; }
@media screen and (max-width: 768px) {
  .faq__heading {
    padding: 0 0 2rem; }
  .faq__text {
    font-size: .83rem;
    text-align: center;
    width: 90%;
    margin: 0 auto 2rem; }
  .faq__list .heading {
    padding: 2vw 4vw 2vw 3rem;
    font-size: 1rem; }
  .faq__list .text {
    padding: 2vw 4vw 4vw 3rem; }
    .faq__list .text .image {
      margin: 4vw 0; }
      .faq__list .text .image img {
        max-width: 216px; }
  .faq__list .icon {
    font-size: 1.2rem;
    top: 2vw;
    left: 4vw; } }

/*
	Footer
------------------------------------------------------------ */
.footer {
  background: #043491;
  color: white;
  padding: 2rem 0 0; }

.company {
  width: 90vw;
  max-width: 1000px;
  margin: 0 auto;
  width: 11.5%; }
  .company__box {
    /* ▼2カラムにするとき
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    &-item {
    	width: calc((100% - 2rem) / 2);
    }
    */ }
  .company__text {
    margin: 0;
    padding: 0 0 1rem;
    line-height: 1.6em; }
  @media screen and (max-width: 768px) {
    .company {
      width: 25%; } }

.copyright {
  background: transparent;
  padding: 2rem 0; }
  .copyright__text {
    width: 90vw;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6em;
    text-align: center;
    font-size: .67rem; }

/* Floating area */
.floating {
  width: 100%; }
  .floating .pagetop {
    position: fixed;
    bottom: 1rem;
    right: 1rem; }
    .floating .pagetop a {
      transition: all 0.2s ease-in-out;
      background: #ECF7FF;
      padding: 1rem;
      border-radius: 10px;
      color: white;
      font-size: 0.88rem;
      display: inline-block;
      z-index: 200;
      position: relative;
      opacity: .7; }
      .floating .pagetop a::before {
        content: '';
        width: 2rem;
        height: 2rem;
        margin: .5rem auto 0;
        border-top: solid .3rem white;
        border-left: solid .3rem white;
        display: block;
        transform: rotate(45deg); }
      .floating .pagetop a:hover {
        opacity: 1; }

/*
	Mail form
------------------------------------------------------------ */
.form__list {
  margin: 0 auto 2rem;
  padding: 2rem 0 0; }
  .form__list-item {
    padding: 0 0 2rem;
    /* ▼2カラムにするとき
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    */ }
    .form__list-item .heading {
      padding: 0 0 .5em;
      line-height: 1.6em;
      font-weight: 700; }
    .form__list-item .text {
      line-height: 1.6em;
      font-weight: 400;
      text-align: left; }
    .form__list-item .icon {
      margin: 0 0 0 1em;
      padding: .2em .5em;
      line-height: 1em;
      color: white;
      font-size: .88rem;
      vertical-align: middle;
      display: inline-block; }
      .form__list-item .icon-required {
        background: #000000;
        border: 1px solid #000000; }
      .form__list-item .icon-optional {
        background: white;
        border: 1px solid #000000; }
.form__privacy {
  margin: 0 auto; }
  .form__privacy .heading {
    padding: 0 0 .5rem;
    color: #000000;
    text-align: center; }
  .form__privacy .text {
    line-height: 1.6em;
    font-size: .88rem;
    font-weight: 400; }
.form__button {
  margin: 0 auto;
  text-align: center; }
  .form__button button,
  .form__button button[type='submit'] {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0; }
.form input[type='text'],
.form input[type='email'],
.form input[type='tel'],
.form input[type='number'],
.form select,
.form textarea {
  background: white;
  width: 100%;
  padding: 0 .5rem;
  border: 1px solid #000000;
  line-height: 1.6em;
  font-size: 1rem; }
.form input[name='郵便番号'] {
  width: 10em; }
.form select,
.form textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal; }
.form select {
  padding: 0.3rem 0.5rem; }
.form textarea {
  min-height: 10rem; }
.form label.radio, .form label.checkbox {
  margin: 0 1rem 0 0;
  padding: 0 0 0 1rem;
  line-height: 1.6em;
  font-weight: 500;
  position: relative;
  display: inline-block;
  cursor: pointer; }
.form label input[type='radio'],
.form label input[type='checkbox'] {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0; }
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .form input[type='text'],
  .form input[type='email'],
  .form input[type='tel'],
  .form input[type='number'],
  .form select,
  .form textarea {
    padding: 0;
    line-height: 1; } }
@media screen and (max-width: 768px) {
  .form__list {
    max-width: none;
    margin: 0 auto 5vw;
    padding: 5vw 0 0; }
    .form__list-item {
      padding: 0 0 5vw; }
      .form__list-item .heading {
        padding: 0 0 2vw; }
      .form__list-item .icon-required, .form__list-item .icon-optional {
        margin: 0 .5rem 0 0;
        position: static;
        display: inline-block; }
  .form__privacy {
    max-width: none;
    padding: 0 0 5vw; }
  .form__button {
    width: 80%;
    max-width: none; }
  .form input[type='text'],
  .form input[type='email'],
  .form input[type='tel'],
  .form input[type='number'],
  .form select,
  .form textarea {
    padding: 0 1vw;
    border-radius: .2rem;
    line-height: 1.6em;
    font-size: 1rem; }
  .form select {
    padding: 1vw; }
  .form textarea {
    min-height: 5em; }
  .form label.radio, .form label.checkbox {
    padding: 0 0 0 1.5rem; } }

.results-showcase {
	background: #00b3d4;
	margin-top: 80px;
	padding: 3rem 0;
}
.results-showcase .image.ttl {
	width: 600px;
	margin: 0 auto;
}
.results-showcase .image {
	width: 838px;
	margin: 0 auto;
}
.results-showcase p {
	width: 838px;
	margin: 0 auto 18px;
	padding-right: 124px;
	text-align: left;
	color: #fff;
	line-height: 1.6;
	font-size: 1.1rem;
}
.course .cv {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
.results-showcase {
	margin: 3rem 0;
}
.results-showcase .image.ttl {
	width: 80%;
	margin: 0 auto 1rem;
}
.results-showcase .image {
	width: 100%;
	margin: 0 auto;
}
.results-showcase p {
	width: 100%;
	margin: 0 auto 18px;
	padding-right: 3rem;
	text-align: left;
	color: #fff;
	line-height: 1.3;
	font-size: .9rem;
}
.course__box02 {
    margin-top: 2.33rem;
}
}