@charset "UTF-8";
/*変数*/
:root {
  --main_color: #f5c91b;
  --black:#423c39;


  --color-yellow1: #fffae8;
  --color-yellow2: #fff500;
  --color-orange1: #ffaa00;
  --color-orange2: #ff8146;
  --color-orange3: #ea9976;
  --color-blue1: #64c8c8;
  --color-blue2: #4b7dbd;
  --color-blue3: #c2e1e6;
  --color-green1: #d4cc00;
  --color-green2: #248a66;
  --color-green3: #a0c950;
  --color-purple1: #c86fd3;

  --orange_svg_color1: invert(73%) sepia(64%) saturate(3925%) hue-rotate(329deg) brightness(102%) contrast(101%);/* #ff8146 */
}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/* b, strong {font-weight: bolder;} */

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}
img {
	vertical-align: bottom;
	width: 100%;
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*--------------------------------------
サイト共通定義
--------------------------------------*/
html {
  font-size: 62.5%;
  overflow: auto;
  scroll-behavior: smooth;
}
body {
  
  margin: 0 auto;
  min-width: 320px;
  width: 100%;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: 'Zen Maru Gothic', serif;
  font-style: normal;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .05em;
  overflow: hidden
}
@media all and (min-width: 600px) {
  body {
      min-width:1180px;
      max-width: 2400px;
      margin: auto;
      font-size: 1.6rem
  }
}
body.open {
  overflow: hidden;
}
@media (min-width: 600px) {
  body.open {
    overflow: auto;
  }
}

body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}

::-moz-selection {
  background: var(--main_color);
  color: #fff;
}

::selection {
  background: var(--main_color);
  color: #fff;
}

ul::-webkit-scrollbar {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
}

.inner00{
	max-width: 1200px;
	margin: 0 auto;
}
.inner01{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner02 {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner03{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}

.bg_color {
  background: #fff;
}

.flex {
  display: block;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40 {margin-bottom: 40px;}
.mb_60 {margin-bottom: 60px;}

/*********** フォントサイズ ***********/
.fs_ss{font-size: 0.5em;}
.fs_s{font-size: 0.8em;}
.fs_13em{font-size: 1.3em;}
.fs_15em{font-size: 1.5em;}

/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 599px) { .sp{display: none !important;}}
@media screen and (max-width: 600px) { .pc{display: none !important;}}


.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  
  to {
    opacity: 1;
  }
}


/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background:#fff;
    text-align:center;
    color:var(--black);
  }
  
  /* Loading画像中央配置　*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width: 160px;
  }
  

/* フォーカスイン*/
.focusin{
	opacity: 0;transform : translate(0, 100px);
	transition : all 1.5s;
}
.focusin.on {
	opacity : 1;
	transform : translate(0, 0);
}

/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-spacing: 0;
}

.table_01 {
  width: 100%;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_01 {
    font-size: 16px;
  }
}
.table_01 tr:last-child th {
  padding: 50px 15px;
}
@media (min-width: 1025px) {
  .table_01 tr:last-child th {
    padding: 40px 15px;
  }
}
.table_01 tr:last-child td {
  padding: 50px 15px;
}
@media (min-width: 1025px) {
  .table_01 tr:last-child td {
    padding: 40px 15px;
  }
}
.table_01 tr th {
  background: #E9EEED;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  padding: 30px 15px;
  width: 50%;
  text-align: center;
}
@media (min-width: 1025px) {
  .table_01 tr th {
    padding: 20px 15px;
  }
}
.table_01 tr td {
  border-bottom: 4px solid #fff;
  padding: 30px 15px;
  text-align: right;
  position: relative;
  width: 50%;
  z-index: -1;
}
@media (min-width: 1025px) {
  .table_01 tr td {
    padding: 20px 15px;
  }
}
.table_01 tr td:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #9c9c9c;
  width: 100%;
  height: 100%;
}
.table_01 tr:last-child th,
.table_01 tr:last-child td {
  border-bottom: none;
}

.table_02 {
  width: 100%;
  padding: 40px;
  font-size: 12px;
  text-align: left;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_02 {
    font-size: 16px;
    padding: 60px;
  }
}
@media (min-width: 1025px) {
  .table_02 {
    padding: 80px;
  }
}
.table_02 tr th {
  border-bottom: 1px solid;
  width: 40%;
  padding: 20px 0 5px;
}
@media (min-width: 600px) {
  .table_02 tr th {
    width: 30%;
  }
}
.table_02 tr td {
  border-bottom: 1px solid;
  width: 60%;
  padding: 20px 0 5px;
}
@media (min-width: 600px) {
  .table_02 tr td {
    width: 70%;
  }
}

.table_03 {
  width: 100%;
  font-size: 12px;
}
@media (min-width: 600px) {
  .table_03 {
    font-size: 16px;
  }
}
.table_03 tr th {
  background: #E9EEED;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  vertical-align: middle;
  padding: 5px;
  width: 25%;
  text-align: center;
}
@media (min-width: 600px) {
  .table_03 tr th {
    padding: 20px 5px;
  }
}
.table_03 tr td {
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  text-align: right;
  position: relative;
  vertical-align: middle;
  padding: 5px;
  width: 25%;
  z-index: -1;
}
@media (min-width: 600px) {
  .table_03 tr td {
    padding: 20px 5px;
  }
}
.table_03 tr td:last-child {
  border-right: none;
}
.table_03 tr td:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  width: 100%;
  height: 100%;
}
.table_03 tr:last-child th,
.table_03 tr:last-child td {
  border-bottom: none;
}
.table_03 tr:first-child th {
  border-top: 4px solid #fff;
}
.table_03 tr:first-child th:last-child {
  border-right: none;
}

/*--------------------------------------
共通のform
--------------------------------------*/
form {
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.course_lp_contact_inner form {
  width: 100%;
  font-size: 14px;
  text-align: center;
      font-family: sans-serif;
}
@media screen and (min-width: 769px){
  form {
    width: 100%;
    font-size: 12px;
    text-align: center;
  }
}
form p{
  text-align: center;
}
@media (min-width: 600px) {
  form {
    font-size: 16px;
  }
}
form .item {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image : linear-gradient(to right, #dfdfdf 8px, transparent 8px);
  background-size: 10px 2px;
  background-repeat: repeat-x; 
  background-position: left bottom;
  
}
@media (min-width: 1025px) {
  form .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
form .item:nth-of-type(6), form .item:nth-of-type(6) {
  height: auto;
}
form .item:nth-of-type(7) {
  margin-bottom: 30px;
}
form .item:nth-of-type(6) .inputs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  form .item:nth-of-type(6) .inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
form .item:nth-of-type(5) .inputs .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
form .item:nth-of-type(5) .inputs .contact_item label {
  margin-left: 3px;
}
@media (min-width: 600px) {
  form .item:nth-of-type(5) .inputs .contact_item label {
    margin-right: 15px;
  }
}

form .item .label {
  width: 100%;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  text-align: left;
  padding: 10px 0;
  cursor: auto;
  position: relative;
  line-height: 22px;
}
form span.icon_required {
	position: absolute;
	top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: block;
  color: #fff;
  font-size: .8em;
  padding: 0px 6px;
  margin-left: 0.5em;
  background-color: var(--color-orange2);
	border-radius: 4px;
}
.course_lp_contact_inner form span.icon_required {
  background-color: #f6af17;
}
form .form-control{
  border: 1px solid #dfdfdf;
  background: #efefef;
  border-radius: 16px;
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  text-align: left;
  height: 44px;
}
@media screen and (min-width: 769px){
  form span.icon_required {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: block;
    color: #fff;
    font-size: .8em;
    padding: 0px 6px;
    margin-left: 0.5em;
    background-color: var(--color-orange2);
    border-radius: 4px;
  }
  form .form-control{
    font-size: 16px;
    height: 50px;
  }
}

@media (min-width: 600px) {
  form .item .label {
    padding: 20px 0;
  }
}
@media (min-width: 1025px) {
  form .item .label {
    width: 40%;
  }
}
form .item > div {
  width: 100%;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
}
@media (min-width: 600px) {
  form .item > div {
    padding: 20px 10px;
  }
}
@media (min-width: 1025px) {
  form .item > div {
    width: 60%;
  }
}
form .item > div .inputs {
  outline: none;
}
form .item input[type=email],
form .item input[type=tel],
form .item input[type=text] {
  border: 1px solid #dfdfdf;
  background: #efefef;
  border-radius: 16px;
  width: 100%;
  padding: 5px;
  font-size: 16px;
  text-align: left;
}
@media (min-width: 600px) {
  form .item input[type=email],
form .item input[type=tel],
form .item input[type=text] {
    padding: 10px;
  }
}
form .item textarea {
  font-size: 14px;
  width: 100%;
  border: 1px solid #dfdfdf;
  background: #efefef;
  border-radius: 16px;
  padding: 5px;
  height: 120px;
  text-align: left;
}

.error {
  margin-bottom: 30px;
}
.error li {
  color: #a5233b;
}

.btn_area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.btn_area input[type=submit],
.btn_area a {
  background: var(--main_color);
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 10px 10px;
  border-radius: 30px;
}
.course_lp_contact_inner input[type=submit],
.course_lp_contact_inner a {
  background: #f6af17;
  border: none;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 10px 10px;
  border-radius: 10px;
  color: #fff;
}
.btn_area input[type=reset] {
  background: #aaa;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0px 10px 0px;
  border-radius: 30px;
}
.course_lp_contact_inner .btn_area input[type=reset] {
  border-radius: 10px;
}
@media screen and (min-width: 769px){
  .btn_area {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 560px;
    margin: 0 auto;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .btn_area input[type=submit],
  .btn_area a {
    background: var(--main_color);
    border: none;
    font-size: 16px;
    padding: 10px 20px;
    margin: 0px 10px 0px;
  }
}


.page_list {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  border: 1px solid var(--color-green2);
  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;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
  background: #fff;
   color: var(--color-green2);
}
.page_list li.active {
  background: var(--color-green2);
  color: #fff;
}
.page_list li.arrow {
  border: none;
}
.page_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: var(--color-green2);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}



/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  background: #fff;
  position: fixed;
  width: 100%;
  max-width: 2000px;
  z-index: 999;
}
header .header_info{
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 50px 50px;
  grid-template-columns: 1fr 50px 50px 50px;
}
@media (min-width: 600px) {
  header .header_info{
    -ms-grid-columns: auto 214px 214px 50px;
    grid-template-columns: auto 240px 240px;
    padding: 10px;
  }
}
@media (min-width: 1025px) {
  header .header_info{
    grid-template-columns: auto 240px 240px;
  }
}
header .header_info h1 {
  padding: 10px 0 10px 10px;
  position: relative;
  z-index: 1;
}
header .header_info h1 a {
  width: 220px;
  display: inline-block;
}
@media (min-width: 600px) {
  header .header_info h1 a {
    width: 300px;
  }
}
header nav.header_menu_pc {
  -ms-grid-column-align: end;
      justify-self: end;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 600px) {
  header nav.header_menu_sp {
    border-left: none;
    display: none;
  }
}
header nav.header_menu_pc ul.pc_menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-width: 1100px;
}
header nav.header_menu_pc ul.pc_menu li {
  display: inline-block;
  position: relative;
}
header nav.header_menu_pc ul.pc_menu li:after {
  display: block;
  content: '';
  position: absolute;
  top: 8px;
  right: 0px;
  background: var(--black);
  width: 2px;
  height: 14px;
  border-radius: 10px;
}
header nav.header_menu_pc ul.pc_menu li:last-child:after {
  display: none;
}
header nav.header_menu_pc ul.pc_menu a{
  padding: 10px 24px;
}

header p.mail {
  height: 32px;
  -ms-grid-column-align: end;
      justify-self: end;
  padding-right: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header p.mail:hover { opacity: 0.7;}
@media (min-width: 600px) {
  header p.mail {
    width: 100%;
    height: 100%;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
}
header p.mail i{
  font-size: 2rem;
  padding: 4px;
}
header a.tel {
    background: var(--main_color);
    border-radius: 30px;
    -ms-grid-column-align: end;
    justify-self: end;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
header a.tel .tel_number{
  display: none;
}
header a.tel .tel_txt{
  display: none;
}
header a.tel i{
  font-size: 2rem;
  padding: 6px;
}
span.tel_number {
  width: 100%;
  font-size: 2.4rem;
  line-height: 14px;
  margin-left: 4px;
}
span.tel_txt {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  background: var(--color-green1);
  border-radius: 20px;
  line-height: 22px;
  text-align: center;
}
@media (min-width: 600px) {
  header a.tel {
    background:none;
    display: block;
  }
  header a.tel i{
    font-size: 2rem;
    padding: 0px;
  }
  header a.tel .tel_number{
    display: inline;
  }
  header a.tel .tel_txt{
    display: block;
  }
  header p.mail {
    display: block;
    background: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
  }
}
header p a{
  position: relative;
  height: 100%;
  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;
  padding: 8px 2px;
  line-height: 1.5;
  border-radius: 30px;
}
header p.mail a {
  background: var(--main_color);
}
@media (min-width: 600px) {
  header p a {
    padding: 0 15px;
  }
}
header p a span {
  display: none;
  margin-left: 10px;
}
@media (min-width: 600px) {
  header p a span {
    display: inline-block;
  }
}
header p a i {
  font-size: 30px;
}
@media (min-width: 600px) {
  header p a i {
    font-size: 20px;
  }
}

header nav .nav_list {
  position: fixed;
  -webkit-overflow-scrolling: auto;
  width: 100%;
  height: calc(100vh - 58px);
  top: 46px;
  right: 0;
  background: var(--color-yellow1);
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  padding: 50px 40px;
  gap: 20px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (min-width: 600px) {
  header nav .nav_list {
    padding: 50px;
  }
}
@media (min-width: 1025px) {
  header nav .nav_list {
    position: absolute;
    width: 478px;
    padding: 50px 120px;
  }
}
header nav .nav_list ul {
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px;
  overflow-y: scroll;
  background: #fff;;
  border-radius: 10px;
}
@media (min-width: 600px) {
  header nav .nav_list ul {
    padding: 0;
  }
}
header nav .nav_list ul li {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  line-height: 2.8;
}
header nav .nav_list ul li > a {
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 18px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  padding: 0 10px;
  border-bottom: 1px solid #fff;
}
header nav .nav_list ul li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  bottom: -1px;
  margin: auto;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}
header nav .nav_list ul li > a:hover {
  color: var(--main_color);
}
header nav .nav_list ul li > a:hover .fa-caret-right {
  color: #fff;
}
header nav .nav_list ul li > a:hover:before {
  background: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header nav .nav_list ul li > a .fa-caret-right {
  color: #fff;
}
header nav .nav_list ul li > a .fa-stack {
  width: 22px;
}
@media (min-width: 600px) {
  header nav .nav_list ul li > a {
    font-size: 20px;
  }
}
header nav .nav_list ul li:nth-last-child(2) {
  margin-bottom: 30px;
}
header nav .nav_list ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
header nav .nav_list ul li:last-child .sns {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 0px 10px;
}
header nav .nav_list ul li:last-child .sns a {
  background: var(--main_color);
}

header nav .menu-btn {
  display: none;
}
header nav .menu-btn:checked ~ .nav_list {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
@media (min-width: 600px) {
  header nav .menu-btn:checked ~ .nav_list {
    border: none;
  }
}
header nav .menu-btn:checked ~ .nav_list a,
header nav .menu-btn:checked ~ .nav_list li {
  opacity: 1;
}
header nav .menu-btn:checked ~ .bg {
  display: block;
}
header nav .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header nav .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
header nav .menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-btn:checked ~ nav {
  border-left: 1px solid #1c1c1c;
}
header nav .menu-icon {
  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;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 1;
  position: relative;
}
header nav .menu-icon .navicon {
  background: var(--black);
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  border-radius: 10px;
}
header nav .menu-icon .navicon:before, header nav .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: var(--black);
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  border-radius: 10px;
}
header nav .menu-icon .navicon:before {
  top: 9px;
}
header nav .menu-icon .navicon:after {
  bottom: 9px;
}


/*--------------------------------------
フッター
--------------------------------------*/
footer {
  background-image: url(../images/bg_footer.jpg);
  background-repeat: repeat;
  background-size: 160px;
  margin-bottom: 46px;
}
footer .footer_menu .f_menu_wrap{
  position: relative;
  text-align: center;
}
footer .footer_menu figure{
  margin-bottom: 30px;
  text-align: center;
}
footer figure img{
  max-width: 100px;
  position: static;
  top: -80px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 600px){
  footer {
    margin-bottom: 0;
  }
  footer .footer_menu figure{
    margin-bottom: 0px;
  }
  footer figure img{
    max-width: 140px;
    position: absolute;
    top: -80px;
    left: 0;
    right: auto;
  }
}

footer .footer_menu {
  background-color: #fff;
  padding: 16px 0 28px;
  position: relative;
}
footer .footer_menu::before{
  content: "";
  display: block;
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -30px;
  width: 100%;
  background-image: url(../images/bg_dec_t.png);
  background-size: 700px 40px;
  background-repeat: repeat-x;
}
@media screen and (min-width: 769px){
  footer .footer_menu::before{
    content: "";
    display: block;
    height: 60px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -30px;
    width: 100%;
    background-image: url(../images/bg_dec_t.png);
    background-size: 840px 60px;
    background-repeat: repeat-x;
  }
}

footer .footer_menu ul{
  display: grid;
  grid-template-columns: 70px 80px 64px auto;
  max-width: 100%;
  margin-left: auto;
}
footer .footer_menu ul li{
  position: relative;
  text-align: left;
}
footer .footer_menu ul li::before {
  font-size: 1.4rem;
  position: absolute;
  top: 3px;
  left: 0px;
  content: '●';
  color: var(--main_color);
}
@media screen and (min-width: 600px){
  footer .footer_menu ul{
    grid-template-columns: 110px 124px 80px 0fr;
    max-width: 364px;
  }
  footer .footer_menu ul li::before {
    font-size: 1.6rem;
    position: absolute;
    top: 0px;
    left: 0px;
    content: '●';
    color: var(--main_color);
  }
}

footer .footer_menu ul	li:last-child::before {
  font-size: 1.6rem;
  position: absolute;
  top: 0px;
  left: 0px;
  content: none;
}
footer .footer_menu ul li a{
  margin-left: 20px;
  font-size: 1.2rem;
}
footer .access_area{
  margin: 40px auto 40px;
}
@media screen and (min-width: 600px){
  footer .footer_menu ul li a{
    margin-left: 18px;
    font-size: 1.4rem;
  }
  footer .access_area{
    margin: 100px auto 60px;
  }
}
footer .copyright{
  background: var(--main_color);
  padding: 10px;
  text-align: center;
  font-size: 1.0rem;
}
@media screen and (min-width: 600px){
  footer .copyright{
    padding: 20px;
    font-size: 1.2rem;
  }
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 126px;
  border-radius: 50%;
  transition: .3s;
  opacity: 0;
  z-index: 20;
}
.pagetop:hover{
	bottom:40px;
	transition:0.3s;
}
@media screen and (min-width: 600px){
  .pagetop {
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 160px;
    border-radius: 50%;
    transition: .3s;
    opacity: 0;
  }
}


#bottom_nav {
	position: fixed;
	right: 0;
	left: 0;
	bottom: 0%;
	width: 100%;
	margin: 0 auto;
	z-index: 888;
	display: flex;
	background:var(--black);
}
#bottom_nav a {
  display: inline-block;
  vertical-align: middle;
  padding: 10px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  background: #ffaa00;
  background: -moz-linear-gradient(top, #ffaa00 0%, #ffba31 100%);
  background: -webkit-linear-gradient(top, #ffaa00 0%, #ffba31 100%);
  background: linear-gradient(to bottom, #ffaa00 0%, #ffba31 100%);
  line-height: 180%;
  color: #fff;
  text-shadow: 0 1px 0 #ff8146;
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  transition: 0.4s;
}
#bottom_nav a:nth-of-type(1) {
  background: #ff8146;
  background: -moz-linear-gradient(top, #ff8146 0%, #fc9e72 100%);
  background: -webkit-linear-gradient(top, #ff8146 0%, #fc9e72 100%);
  background: linear-gradient(to bottom, #ff8146 0%, #fc9e72 100%);
  text-shadow: 0 1px 0 #e84a00;
}
/* #bottom_nav a:after {
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    right: 0px;
    background: #fff;
    width: 1px;
    height: 44px;
}
#bottom_nav a:last-child:after{
	display: none;
} */


/****************************************
トップページ
****************************************/
/* トップページの共通タイトル */
.bg01_pc{
  padding: 40px 0 40px;
  background: url(../images/bg_dec_r.png) no-repeat right bottom,url(../images/bg_dec_l.png) no-repeat;
  background-size: 160px,160px;
  background-color: var(--color-yellow1);
}
.bg02_pc{
  background: #fff;
  width: 100%;
  background-image: url(../images/bg02_pc.png);
  background-repeat: repeat-y;
  background-size: contain;
  padding: 40px 0;
}
@media screen and (min-width: 769px){
  .bg01_pc{
    padding: 80px 0 80px;
    background: url(../images/bg_dec_r.png) no-repeat right bottom,url(../images/bg_dec_l.png) no-repeat;
    background-size: 380px,380px;
    background-color: var(--color-yellow1);
  }
  .bg02_pc{
    background: #fff;
    width: 100%;
    background-image: url(../images/bg02_pc.png);
    background-repeat: repeat-y;
    background-size: 100%;
    padding: 80px 0;
  }
}
.title {
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 40px;
}
@media (min-width: 600px) {
  .title {
    max-width: 800px;
    margin: 0 auto 40px;
  }
}

.btn_01 {
  margin-bottom: 40px;
  position: relative;
  text-decoration: none;
}
@media (min-width: 600px) {
  .btn_01 {
    margin-bottom: 80px;
  }
}
.btn_01::before {
  background-color: var(--black);;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 15px;
  height: 2px;
  margin-top: 0px;
  content: "";
}
.btn_01::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 2px solid var(--black);;
  border-right: 2px solid var(--black);;
  content: "";
  display: inline-block;
  vertical-align: middle;
}

.access_area {
  max-width: 100%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid #fffae8;
    background-color: #fff;
    padding: 40px;
}
.access_area h4{
  text-align: center;
  font-size: 2.4rem;
  padding-bottom: 10px;
  line-height: 3.2rem;
}
.access_area h4:nth-of-type(2){
  margin-top: 30px;
}
.access_area ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 14px;
  gap: 40px;
}
@media screen and (max-width: 768px){
  .access_area {
    padding: 20px;
  }
  .access_area h4:nth-of-type(2){
    margin-top: 20px;
  }
  .access_area ul {
     grid-template-columns: 1fr;
  }
}
.access_area ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 4px;
}

.access_area ul li p{
  font-size: 1.2rem;
}
.access_area ul li h5{
  background: var(--main_color);
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 2px;
  text-align: center;
  color: #fff;
}
.access_area ul li :is(.access_box, .add_box ) {
  margin-bottom: 10px;
}
@media screen and (min-width: 600px){
  .access_area ul li h5{
    padding: 6px;
  }
  .access_area ul li p{
    font-size: 1.4rem;
  }
}
.access_area span {
  display: block;
}
.access_area span {
	position: relative;
	padding: 0.1em 0.3em;
	padding-left: 1.5em;
	vertical-align: middle;

	border-radius: 25px 0 0 25px;
}
.access_area span::before {
    font-size: 12px;
    position: absolute;
    top: 4px;
    left: 4px;
	margin-right: 8px;
	content: '●';
  color: var(--main_color);
}
.access_area ul li .img_studio{
  /* position: static;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0px 0px 0 0px; */
  overflow: hidden;
}
.access_area ul li .img_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  height: 200px;
  border-radius: 10px;
}
@media screen and (min-width: 769px){
  .access_area ul li .img_studio{
    overflow: hidden;
  }
  .access_area ul li .img_box {
    height: 250px;
  }
}

.access_area ul li .frame {
    overflow: hidden;
}
.access_area ul li img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.access_area ul li iframe { height: 200px;}
@media screen and (min-width: 769px){
  .access_area ul li iframe { height: 250px;}
}

.access_area p.access_week1 {
  background: #b4ddec;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 4px;
  text-align: center;
  margin: 0 auto 10px;
}
.access_area p.access_week2 {
  background: #f8c8b2;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 4px;
  text-align: center;
  margin: 0 auto 10px;
}
.access_area p.access_class {
  border-bottom: dashed 1px var(--main_color);
  padding-bottom: 10px;
  text-align: center;
  margin: 0 auto 20px;
}
.access_area p.access_class.no_border {
  border-bottom: none;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .access_area p.access_week1,
  .access_area p.access_week2 {
    font-size: 1.6rem;
  }
  .br_768 {
    display: none;
  }
}


/*
こんな悩みありませんか?
--------------------------------------*/
.section_worry{
  padding: 120px 0 60px;
  background: url(../images/bg_worry01_r.png) no-repeat right 80%,url(../images/bg_worry01_l.png) no-repeat left 10%;
  background-size: 350px,230px;
  background-color: #e7eef0;
  margin-top: -40px;
}
.section_worry h2{
  max-width: 340px;
  margin: 0 auto 40px;
  padding: 0 40px;
}
@media screen and (min-width: 600px){
  .section_worry{
    padding: 140px 0 60px;
    background: url(../images/bg_worry01_r.png) no-repeat right 50%,url(../images/bg_worry01_l.png) no-repeat left 30%;
    background-size: 350px,230px;
    background-color: #e7eef0;
    margin-top: -40px;
  }
  .section_worry h2{
    max-width: 700px;
    margin: 0 auto 40px;
  }
}

.section_worry .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation-duration: 2.6s;
  -webkit-animation-duration: 2.6s;
  animation-name: fade;
}
.section_worry .box li{
  width: 250px;
  margin: 0 1% 2%;
  padding: 0px;
  display: inline-block;
  position: relative;
  width: 280px;
  margin: 0 20px 20px;
}
.section_worry .box .img_box{
  margin-bottom: 10px;
  max-width: 100%;
  margin: 10px auto 0;
}
.section_worry .box .txt_box{
  width: 100%;
  font-size: 1.4rem;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  background: #fff;
  border-radius: 10px;
}
.section_worry .box .txt_box p{
  text-align: center;
}
.section_worry .box .txt_box p span{
  font-size: 1.6rem;
  color: var(--color-blue1);
}


/*
ひなたキッズ5つの特徴
--------------------------------------*/
.section_features h2{
  max-width: 260px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 600px){
  .section_features h2{
    max-width: 520px;
    margin: 0 auto 40px;
  }
}
.section_features .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation-duration: 2.6s;
  -webkit-animation-duration: 2.6s;
  animation-name: fade;
}
.section_features .box li{
  margin: 0 1% 2%;
  padding: 0px;
  display: inline-block;
  margin: 20px 10px;
  position: relative;
  width: 280px;
  margin: 0 20px 40px;
  box-sizing: border-box;
}
.section_features .box .img_box{
  margin-bottom: 10px;
  max-width: 220px;
  margin: 0 auto;
}
.section_features .box .txt_box{
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
  padding: 10px 0px 0px;
}
/* .section_features .box li .txt_box a{
  color: var(--color-orange2);
  text-decoration:underline;
  text-decoration-color:var(--color-orange2);
} */
.section_features .box li .txt_box .btn_method,
.section_method .box li .txt_box .btn_method {
  width: 100%;
  display: block;
  border-radius: 32px;
  background: var(--color-orange2);
    padding: 6px;
    text-align: center;
    color: #fff;
    margin-top: 8px;
    opacity: 1;
    transition: all 0.3s;
    line-height: 1.2;
}
.section_features .box li .txt_box .btn_method:hover,
.section_method .box li .txt_box .btn_method:hover {
  opacity: 0.7;
}



@media screen and (min-width: 769px){
  .section_features .box .img_box{
    margin-bottom: 10px;
    max-width: 100%;
    margin: 0 auto;
  }
}


/*
ひなたキッズ3つの指導メソッド
--------------------------------------*/
.section_method h2{
  max-width: 280px;
  margin: 0 auto 40px;
  padding: 0px 0px;
}
@media screen and (min-width: 600px){
  .section_method h2{
    max-width: 640px;
    margin: 0 auto 40px;
    padding: 0 40px;
  }
}
.section_method .area_box{
  background: #fff;
  border-radius: 20px;
  padding: 40px 0 0;
}
.section_method .box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation-duration: 2.6s;
  -webkit-animation-duration: 2.6s;
  animation-name: fade;
}
.section_method .box li{
  width: 250px;
  margin: 0 1% 2%;
  padding: 0px;
  display: inline-block;
  margin: 20px 10px;
  position: relative;
  width: 280px;
  margin: 0 20px 40px;
}
.section_method .box .img_box{
  margin-bottom: 10px;
  max-width: 220px;
  margin: 0 auto;
}
.section_method .box .txt_box{
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
  padding: 10px 0px 0px;
}
.section_method .box li .txt_box a{
  color: var(--color-orange2);
  text-decoration:underline;
  text-decoration-color:var(--color-orange2);
}
@media screen and (min-width: 769px){
  .section_method .box .img_box{
    margin-bottom: 10px;
    max-width: 100%;
    margin: 0 auto;
  }
}

/*
ひなたキッズの講師紹介
--------------------------------------*/
.section_introduction .area_box .txt_item{
  margin-bottom: 20px;
}
.section_introduction .area_box h2{
  max-width: 320px;
  margin: 0 auto 20px;
}
.section_introduction .area_box h3{
  max-width: 300px;
  margin: 0 auto 20px;
}
.section_introduction .area_box h4{
  position: relative;
  padding-left: 20px;
}
.section_introduction .area_box h4::before {
  position: absolute;
  top: 0px;
  left: 0;
  margin-right: 8px;
  content: '●';
  color: var(--color-orange1);
}
.section_introduction .area_box p{
  font-size: 1.4rem;
}
.section_introduction .img_box{
  margin-bottom: 20px;
  max-width: 300px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 599px){
  .section_introduction .area_box{
    grid-template-columns: 540px auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
  } 
  .section_introduction .img_box{
    padding-right: 40px;
    max-width: 100%;
  }
  .section_introduction .area_box h2{
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .section_introduction .area_box h3{
    max-width: 100%;
    margin: 0 auto 20px;
  }
}


/*
コース紹介
--------------------------------------*/
.section_course h2{
  max-width: 260px;
  margin: 0 auto 40px;
  padding: 0 40px;
}
.section_course h2 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 600px){
  .section_course h2{
    max-width: 300px;
    margin: 0 auto 40px;
    padding: 0 40px;
  }
}
.section_course .point{
  background: #fff;
  border-radius: 20px;
  padding: 10px 50px 10px;
  max-width: 500px;
  margin: 0 auto 40px;
}
.section_course .area_box{
  grid-template-columns: 1fr;
  align-items: start;
  display: grid;
  margin-bottom: 0;
}

.section_course .area_box .ccourse_unit {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  margin-bottom: 40px;
}
/* .section_course .area_box .course2{ padding-left: 0px;} */
.section_course .area_box .img_box{
  max-width: 300px;
  margin: 0px auto 20px
}
.section_course .area_box .img_box img {
  width: 100%;
  height: auto;
}
.section_course .area_box h3{
  max-width: 150px;
  margin: 0 auto;
}
.section_course .area_box .course1 h3{
  max-width: 222px;
}
.section_course .area_box h3 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 599px){
  /* .section_course .area_box .ccourse_unit {
    margin-bottom: 0;
  } */
  .section_course .point{
    background: #fff;
    border-radius: 20px;
    padding: 10px 80px 10px;
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .section_course .area_box{
    /* grid-template-columns: 1fr 1fr 1fr; */
    grid-template-columns: 1fr 1fr;
    align-items: start;
    display: grid;
    gap: 16px 30px;
    margin-bottom: 40px;
  }
  /* .section_course .area_box .course1{ padding-right: 40px;} */
  /* .section_course .area_box .course2{ padding-left: 40px;} */
  .section_course .area_box .img_box{
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .section_course .area_box .img_box img {
    width: 100%;
    height: auto;
  }
  .section_course .area_box h3{
    max-width: 250px;
    margin: 0 auto;
  }
  .section_course .area_box .course1 h3{
    max-width: 370px;
  }
}
/* @media screen and (min-width: 1024px){
  .section_course .area_box{
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    display: grid;
    gap: 30px;
  }
} */



.section_course .area_box p{
  text-align: center;
  margin-bottom: 20px;
}
.section_course .area_box p.time{
  max-width: 250px;
  margin: 0 auto 20px;
  color: #fff;
  border-radius: 10px;
  padding: 4px;
}
@media screen and (min-width: 769px){
  .section_course .area_box p.time{
    max-width: 250px;
    margin: 0 auto 40px;
    color: #fff;
    border-radius: 10px;
    padding: 4px;
  }
}
.section_course .area_box .course1 p.time{
  background: #64bad8;
}
.section_course .area_box .course2 p.time{
  background: #ed5e1b;
}
.section_course .area_box .txt_box .label_txt{
  max-width: 100%;
  margin: 0 auto 10px;
  border-radius: 10px;
  padding: 0px;
}


@media screen and (min-width: 769px){
  .section_course .area_box .txt_box .label_txt{
    max-width: 100%;
    margin: 0 auto 10px;
    border-radius: 10px;
    padding: 4px;
  }
}
.section_course .area_box ul li{
  display: block;
  min-height: 150px;
}
.section_course .area_box .course1 .label_txt{ background: #c4e388; }
.section_course .area_box .course2 .label_txt{ background: #b4ddec; }
.section_course .area_box .course3 .label_txt{ background: #f8c8b2; }
.section_course .area_box .course4 .label_txt{ background: #ade1e1; }

.section_course .area_box .txt_box .txt{
  text-align: left;
  padding: 0 20px;
  font-size: 1.4rem;
}

.section_course .access_area h3,
.section_course .system_area h3{
  max-width: 140px;
  margin: 0px auto 10px;
}
.section_course .interview_area h3{
  max-width: 240px;
  margin: 0px auto 10px;
}
.section_course .access_area {
  margin-bottom: 40px;
}
.system_area {
  max-width: 100%;
  margin: auto;
  border-radius: 20px;
  border: 1px solid #fffae8;
  background-color: #fff;
  padding: 20px;
}
.system_area .ccourse_unit {
  margin-bottom: 24px;
}
.system_area .ccourse_unit:last-child {
  margin-bottom: 0;
}
.section_course .system_area h4{
  max-width: 100%;
  margin: 0 auto 10px;
  background: var(--color-green1);
  color: #fff;
  border-radius: 10px;
  padding: 0px;
  text-align: center;
}
.section_course .system_area .wonder h4{
  background: var(--color-green3);
}
.section_course .system_area p{
  text-align: center;
  font-size: 1.6rem;
}
.section_course .system_area p span{
  font-size: 2.2rem;
}
.section_course .system_area {
  margin-bottom: 60px;
}

.section_course .interview_area {
  width: 100%;
}
.section_course .interview_area .movie_box {
  width: 100%;
  max-width: 640px;
  /* padding: 0 10px; */
  margin-inline: auto;
}
.section_course .interview_area .movie_box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}


@media screen and (min-width: 600px){
  .section_course .area_box ul li p.txt{
    font-size: 1.6rem;
  }
  .section_course .access_area h3,
  .section_course .system_area h3{
    max-width: 180px;
    margin: 0px auto 20px;
  }
  .section_course .interview_area h3{
    max-width: 300px;
    margin: 0px auto 20px;
  }
  .system_area {
    max-width: 100%;
    margin: auto;
    border-radius: 20px;
    border: 1px solid #fffae8;
    background-color: #fff;
    padding: 40px;
  }
  .section_course .system_area h4{
    max-width: 100%;
    margin: 0 auto 10px;
    background: var(--color-green1);
    color: #fff;
    border-radius: 10px;
    padding: 4px;
    text-align: center;
  }
  .section_course .system_area p{
    text-align: center;
    font-size: 2.2rem;
  }
  .section_course .system_area p span{
    font-size: 3.0rem;
  }
}


/*
インスタ
--------------------------------------*/
.section_inst{
  background-color: var(--color-yellow1);
  padding: 40px 40px;
}
#section_course .section_inst{
  background-color: rgba(255, 255, 255, 0);
}
.section_inst .box a{
  max-width: 400px;
  background: #fff;
  border-radius: 30px;
  padding: 20px 10px;
  font-size: 1.8rem;
  text-align: center;
  display: block;
  border: 3px solid var(--color-green3);
  margin: 0 auto;
}
#section_course .section_inst .box a{
  border: 3px solid var(--color-purple1);
}
.section_inst .box a span{
  /* background: var(--black);
  color: #fff;
  border-radius: 50%; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: inline-block;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  font-size: 1.8rem !important;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
  /* padding: 0px 6px; */
  line-height: normal;
  width: 28px;
  height: 28px;
}

/* メインビジュアル下 */
.section_inst.top_inst{
  position: relative;
  padding: 10px 20px 10px;
}
.section_inst.top_inst::after{
  content: "";
  display: block;
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 100%;
  background-image: url(../images/bg_dec_b.png);
  background-size: 700px 40px;
  background-repeat: repeat-x;
}
@media screen and (min-width: 600px){
  .section_inst.top_inst{
    padding: 10px 40px 10px;
  }
  .section_inst.top_inst::after{
    content: "";
    display: block;
    height: 60px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 100%;
    background-image: url(../images/bg_dec_b.png);
    background-size: 840px 60px;
    background-repeat: repeat-x;
  }
}
#bnr_box ul{
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 20px auto 20px;
    flex-wrap: wrap;
}
#bnr_box ul li a img {
    max-width: 440px;
    width: 100%;
    transition-duration: 0.5s;
}

/*
よくあるご質問
--------------------------------------*/
.section_qa h2{
  max-width: 320px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 600px){
  .section_qa h2{
    max-width: 380px;
    margin: 0 auto 40px;
  }
}
.section_qa .area_box li.qa_q{
  background: var(--main_color);
  border-radius: 20px;
  padding: 10px;
  margin: 0px 20px 40px;
  position: relative;
}
.section_qa .area_box li.qa_q img.icon_qa1_q{
  max-width: 60px;
  position: absolute;
  top: -10px;
  left: -20px;
  right: auto;
}
.section_qa .area_box li.qa_q h3{
  font-size: 1.6rem;
  padding-left: 40px;
  line-height: 26px;
  padding-bottom: 8px;
}
.section_qa .area_box li h3 img{
  padding-right: 20px;
}
.section_qa .area_box li.qa_q .qa_a{
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  grid-template-columns: 60px auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  display: -ms-grid;
  display: grid;
  font-size: 1.2rem;
}
.section_qa .area_box li.qa_q .qa_a img{
  padding-right: 14px;
}
.section_qa .area_box li.qa_q .qa_a a {
  color: var(--color-orange2);
}
.section_qa .area_box li.qa_q .qa_a a.link_pdf:before {
	content: '';
	display: inline-block;
	min-width: 18px;
	width: 18px;
	height: 18px;
	filter: var(--orange_svg_color1);
	background: url(../images/icon_pdf.svg) no-repeat;
	background-size: contain;
  vertical-align: sub;
	margin-right: 4px;
}

@media screen and (min-width: 600px){
  .section_qa .area_box li.qa_q{
    background: var(--main_color);
    border-radius: 20px;
    padding: 20px;
    margin: 0px 20px 40px;
    position: relative;
  }
  
  .section_qa .area_box li.qa_q img.icon_qa1_q{
    max-width: 76px;
    position: absolute;
    top: -20px;
    left: -20px;
    right: auto;
  }
  .section_qa .area_box li.qa_q h3{
    font-size: 2.2rem;
    padding-left: 50px;
    line-height: 34px;
    padding-bottom: 16px;
  }
  .section_qa .area_box li h3 img{
    padding-right: 20px;
  }
  .section_qa .area_box li.qa_q .qa_a{
    grid-template-columns: 70px auto;
    font-size: 1.6rem;
  }
  .section_qa .area_box li.qa_q .qa_a img{
    padding-right: 20px;
  }
}

/*
お問い合わせ
--------------------------------------*/
.section_contact{
  background: #f0f0f0;
  padding: 40px 0;
}
.section_contact h2{
  max-width: 240px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 600px){
  .section_contact h2{
    max-width: 480px;
    margin: 0 auto 40px;
  }
}
.section_contact .area_box{
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 20px 40px;
}
.section_contact .policy{
  background: #efefef;
  border-radius: 16px;
  padding: 10px 10px;
  margin: 20px auto 40px;
}
.section_contact .policy h5{
  font-size: 1.6rem;
}
.section_contact .policy p{
  font-size: 1.2rem;
}
@media screen and (min-width: 769px){
  .section_contact .area_box{
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 60px;
  }
  .section_contact .policy{
    background: #efefef;
    border-radius: 16px;
    padding: 14px 30px;
    margin: 20px auto 40px;
  }
  .section_contact .policy h5{
    font-size: 1.8rem;
  }
  .section_contact .policy p{
    font-size: 1.4rem;
  }
}

/*
お申し込み後の流れ
--------------------------------------*/
.section_flow h2{
  max-width: 200px;
  margin: 0 auto 40px;
  padding: 0px 0px;
}
.section_flow h2 img{
  width: 100%;
  height: auto;
}
@media screen and (min-width: 600px){
  .section_flow h2{
    max-width: 320px;
  }
}

.section_flow .flow_box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.section_flow .flow_box ul li {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2.4rem 0;
  border: 8px solid var(--color-blue3);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section_flow .flow_box ul li:before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	display: block;
	width: 64px;
	height: 61px;
	background: url(../images/flow_num01.png) center center / cover no-repeat;
}
.section_flow .flow_box ul li:nth-child(2):before {
	background: url(../images/flow_num02.png) center center / cover no-repeat;
}
.section_flow .flow_box ul li:nth-child(3):before {
	background: url(../images/flow_num03.png) center center / cover no-repeat;
}
.section_flow .flow_box ul li:nth-child(4):before {
	background: url(../images/flow_num04.png) center center / cover no-repeat;
}
.section_flow .flow_box ul li .txt_box { padding: 0.8rem 0.8rem 0; }
.section_flow .flow_box ul li .txt_box p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.4;
}
.section_flow .flow_box ul li:nth-child(3) .txt_box p {
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (min-width: 600px){
  .section_flow .flow_box ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .section_flow .flow_box ul li {
    border: 12px solid var(--color-blue3);
  }
  .section_flow .flow_box ul li:before {
    top: -28px;
    left: -28px;
    width: 67px;
    height: 65px;
  }
  .section_flow .flow_box ul li .txt_box p {
    font-size: 2.0rem;
  }
  .section_flow .flow_box ul li:nth-child(3) .txt_box p {
    font-size: 1.6rem;
  }
}

/*********** 改行 ***********/
.section_flow .br_pc { display: block; }
.section_flow .br_sp { display: none; }

@media screen and (max-width: 768px){
	.section_flow .br_pc { display: none; }
	.section_flow .br_sp { display: block; }
}



/*
ブログ
--------------------------------------*/
.section_blog{
  background: var(--color-yellow1);
    position: relative;
    padding: 60px 0 80px;
}

.section_blog .container{
  grid-template-columns: 240px auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  display: -ms-grid;
  display: block;
}
.section_blog .container .area_l{
  padding-right: 40px;
  max-width: 200px;
}
.section_blog .container .area_l h2{
  margin-bottom: 30px;
}
.section_blog .container .area_r{
  background: #fff;
  border-radius: 20px;
  padding: 16px 26px 26px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px){
  .section_blog .container{
    grid-template-columns: 240px auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
  }
  .section_blog .container .area_l{
    padding-right: 40px;
    max-width: 260px;
  }
  .section_blog .container .area_r{
    margin-bottom: 0;
  }
}

.section_blog .container .box article{
  padding: 14px 0px;
  border-bottom: 1px solid var(--main_color);
}

.section_blog .container .box article a {
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  display: -ms-grid;
  display: block;
}
.section_blog .container  article a img {
  display: block;
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_blog .container .box article a time {
  font-size: 1.4rem;
  background: var(--color-blue2);
  padding: 2px 20px;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  margin-right: 20px;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px){
  .section_blog .container .box article a {
    grid-template-columns: 1fr 3fr;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
  }
  .section_blog .container .box article a time {
    font-size: 1.4rem;
    background: var(--color-blue2);
    padding: 2px 20px;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    margin-right: 20px;
    width: auto;
    display: block;
    margin-bottom: 0;
  }
}
.section_blog .container .box article a h3 {
  font-size: 1.4rem;
}
.section_blog .box article a .stickarrow {
  width: 60px;
  height: 8px;
  margin-left: auto;
  border-bottom: 1px solid;
  border-right: 1px solid;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
.section_blog picture img {
  width: 100%;
}



/*--------------------------------------
メイン
--------------------------------------*/
main .mainvisual {
  position: relative;
  padding: 50px 0 0;
  margin-top: 0px;
  background-color: var(--color-yellow1);
}
/* main .mainvisual::after{
  content: "";
  display: block;
  height: 40px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: -30px;
  width: 100%;
  background-image: url(../images/bg_dec_b.png);
  background-size: 700px 40px;
  background-repeat: repeat-x;
} */
@media screen and (min-width: 600px){
  main .mainvisual {
    position: relative;
    padding: 70px 0 0;
    margin-top: 60px;
  }
  /* main .mainvisual::after{
    content: "";
    display: block;
    height: 60px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 100%;
    background-image: url(../images/bg_dec_b.png);
    background-size: 840px 60px;
    background-repeat: repeat-x;
  } */
}
@media (max-width: 599px){
  main .mainvisual {
    height: 0;
    padding-top: 165%;
  }
}

.l-main-img__inner {
  position: absolute;
    top: 30px;
    right: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
}
.l-main-img__inner:before {
  top: -10px;
  width: 100%;
  height: 100%;
  background: url(../images/bg_mv01_sp.png) no-repeat right top;
  background-size: contain;
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 6;
  left: 0;
}
@media screen and (min-width: 600px){
  .l-main-img__inner {
    position: static;
    overflow: hidden;
    margin-top: 0px;
    top: 0px;
    right: 0;
    z-index: 5;
    width: 100%;
    height: auto;
  }
  .l-main-img__inner:before {
    top: 40px;
    width: 100%;
    height: 100%;
    background: url(../images/bg_mv01_pc.png) no-repeat right top;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 6;
    left: 0;
  }
}

.l-main-img__inner_dec {
  position: static;
}
.l-main-img__inner_dec:before {
  top: 20px;
  width: 100%;
  height: 90%;
  background: url(../images/bg_mv_dec_l.png) no-repeat left top;
  background-size: contain;
  content: '';
  display: inline-block;
  position: static;
  z-index: 6;
}
.l-main-img__inner_dec::after {
  bottom: -20px;
  width: 100%;
  height: 46%;
  background: url(../images/bg_mv_dec_r.png) no-repeat right bottom;
  background-size: contain;
  content: '';
  display: inline-block;
  position: static;
  z-index: 6;
}
@media screen and (min-width: 600px){
  .l-main-img__inner_dec {
    position: relative;
  }
  .l-main-img__inner_dec:before {
    top: 20px;
    width: 100%;
    height: 90%;
    background: url(../images/bg_mv_dec_l.png) no-repeat left top;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 6;
  }
  .l-main-img__inner_dec::after {
    bottom: -20px;
    width: 100%;
    height: 46%;
    background: url(../images/bg_mv_dec_r.png) no-repeat right bottom;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 6;
  }
}

.slick-slider{
  padding-left: 0%;
}
.slick-slider img{width: 110%;}
@media screen and (min-width: 600px){
  .slick-slider{
    padding-left: 22%;
  }
}

.slide-items {
  width: 100%;
  height: 100%;
  margin: auto;
}
.slide-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-dots li button:before {
  font-size: 1.8rem;
  top: 6px;
}

.slide-items .slick-dots {
    position: absolute;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 10%;
    line-height: 1
}

.slide-items .slick-dots li {
    display: inline-block;
    line-height: 1
}

.slide-items .slick-dots li:not(:last-of-type) {
    margin-right: 12px
}
.slide-items .slick-dots li.slick-active button {
    width: 16px;
    height: 16px;
    margin-bottom: -2px;
    background: transparent;
    border: 4px solid var(--main_color);
    background-color: #fff;
    border-radius: 10px;
    
}
.slide-items .slick-dots li button {
    padding: 0;
    border: 0;
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background: var(--main_color);
}


.l-main-img__copy-area {
  position: absolute;
  z-index: 7;
  bottom:30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
}
.l-main-img__copy {
  left: 0%;
  position: absolute;
  z-index: 7;
  bottom: 60px;
}
.l-main-img__copy img {
  width: 100%;
}
@media screen and (min-width: 600px){
  .l-main-img__copy-area {
    position: absolute;
    z-index: 7;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
  }
  .l-main-img__copy {
    left: 0%;
    position: absolute;
    z-index: 7;
    bottom: 110px;
  }
  .l-main-img__copy img {
    width: 70%;
  }
}

.l-main-img__new{
  position: absolute;
  z-index: 7;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-main-img__new a{
  position: static;
  padding-left: 0;
  font-size: 1.0rem;
  grid-template-columns: 100px auto;
  -webkit-box-align: baseline;
  -ms-flex-align: start;
  align-items: revert-layer;
  display: -ms-grid;
  display: grid;
}
.l-main-img__new a time {
  font-size: 1.2rem;
  background: var(--color-blue2);
  padding: 2px 0px;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  margin-right: 10px;
  width: auto;
  display: block;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-main-img__new a h3{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-main-img__new a:before {
  background-size: contain;
  content: none;
  display: inline-block;
  position: static;
  z-index: 6;
}
@media screen and (min-width: 600px){
  .l-main-img__new{
    position: absolute;
    z-index: 7;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    padding: 10px 30px;
    border-radius: 20px;
  }
  .l-main-img__new a{
    position: relative;
    padding-left: 40px;
    font-size: 1.6rem;
    grid-template-columns: 140px auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
  }
  .l-main-img__new a time {
    font-size: 1.4rem;
    background: var(--color-blue2);
    padding: 2px 20px;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    margin-right: 20px;
    width: auto;
    display: block;
    margin-bottom: 0;
  }
  .l-main-img__new a:before {
    top: 0px;
    left: 0;
    width: 100%;
    height: 30px;
    background: url(../images/icon_blog01.png) no-repeat left top;
    background-size: contain;
    content: '';
    display: inline-block;
    position: absolute;
    z-index: 6;
  }
}


.slide-items_sp div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 48vh;
  margin: 0;
}
.slide-items_sp div.img01 {
  background-image: url(../images/pic_mv01-sp.jpg) ;
}
.slide-items_sp div.img02 {
  background-image: url(../images/pic_mv02-sp.jpg) ;
}
.slide-items_sp div.img03 {
  background-image: url(../images/pic_mv03-sp.jpg) ;
}
.slide-items_sp .slick-dots {
  bottom: 4%;
  z-index: +1;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 16px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: var(--main_color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.l-main-img__scroll-link {
  position: absolute;
  z-index: 7;
  left: 34px;
  bottom: 36px;
  width: 30px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.l-main-img__scroll-link:hover{
	bottom:26px;
	transition:0.3s;
}


/*--------------------------------------
下層ページ
--------------------------------------*/
/*
共通
--------------------------------------*/
main .subvisual {
  padding: 40px 0 40px;
  background: url(../images/bg_dec_r.png) no-repeat right bottom,url(../images/bg_dec_l.png) no-repeat;
  background-size: 120px,120px;
  background-color: var(--color-yellow1);
  height: 30vh;
  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;
  margin: 0px auto 80px;
}
main .subvisual h2{
  max-width: 190px;
  margin: 30px auto 40px;
}
@media screen and (min-width: 600px){
  main .subvisual {
    padding: 40px 0 40px;
    background: url(../images/bg_dec_r.png) no-repeat right bottom,url(../images/bg_dec_l.png) no-repeat;
    background-size: 200px,200px;
    background-color: var(--color-yellow1);
    height: 30vh;
    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;
    margin: 48px auto 80px;
  }
  main .subvisual h2{
    max-width: 280px;
    margin: 10px auto 40px;
  }
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
/*Moreボタン*/
.btn_01 {
  font-size: 1.6rem;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 40px;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 5px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_01:hover {
  background: #fff;
  color: var(--main_color);
}

/*カテゴリリンクボタン、一覧へ戻るボタン*/
.btn_02 {
  background: #fff;
  border: 1px solid var(--main_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 5px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 30px;
}
.btn_02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
  border-radius: 30px;
}

@media (min-width: 1025px) {
  .btn_02 {
    margin: 0 auto;
  }
}
.btn_02 i:first-child {
  font-size: 1.4rem;
  
}

/*footerのお問い合わせボタン*/
.btn_03 {
  border: 2px solid #fff;
  color: #fff;
  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;
  font-family: yu-gothic-pr6n, sans-serif;
  font-size: 2.2rem;
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  height: 90px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .btn_03 {
    font-size: 2.4rem;
    padding: 0 30px;
  }
}
.btn_03.tel_btn {
  background: rgba(54, 69, 66, 0.7);
}
.btn_03.tel_btn:hover {
  background: #364542;
}
.btn_03.mail_btn {
  background: rgba(255, 255, 255, 0.7);
  color: var(--main_color);
}
.btn_03.mail_btn:hover {
  background: white;
}
.btn_03 i {
  margin-right: 20px;
}
.btn_03 br {
  display: none;
}
@media (min-width: 1025px) {
  .btn_03 br {
    display: block;
  }
}

/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.sns a {
  background: var(--main_color);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  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;
  margin-right: 20px;
  font-size: 1.8rem !important;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.sns a:hover {
  opacity: 0.7 !important;
}
.sns a:last-child {
  margin-right: 0;
}



/*--------------------------------------
ブログ
--------------------------------------*/
.secondary_title h3{
  font-size: 2.6rem;
  position: relative;
  margin-bottom: 30px;
}
.secondary_title h3:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--main_color);
  left: 0;
  bottom: 0;
}
.wrap_blog{
  padding: 80px 0 180px;
}
.wrap_blog .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 600px){
  .wrap_blog{

  }
  .wrap_blog .box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
  }
}
.wrap_blog .sec p {
  padding-bottom: 10px;
}

@media (min-width: 1025px) {
  .wrap_blog .box {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.wrap_blog .box section{
  padding: 20px;
  display: block;
  background: #fff;
  border-radius: 20px;
  border: 2px solid #dfdfdf;
}

.wrap_blog .box article a {
  display: block;
}
.wrap_blog .box article a img {
  display: block;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media (min-width: 600px) {
  .wrap_blog .box article a img {
    height: 300px;
  }
}
.wrap_blog .box article a time {
  font-size: 1.2rem;
}
.wrap_blog .box article a h3 {
  color: var(--color-orange2);

}
.wrap_blog .box article a .text {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  padding: 0;
}
.wrap_blog .box article a .stickarrow {
  width: 60px;
  height: 8px;
  margin-left: auto;
  border-bottom: 1px solid;
  border-right: 1px solid;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}


/*--------------------------------------
ブログ詳細
--------------------------------------*/
@media (min-width: 600px) {
  .wrap_blog_detail .sec:first-child {
    width: 48%;
    background: #fff;
    border-radius: 20px;
  }
  .wrap_blog_detail .sec:first-child img {
    width: 100%;
    margin: 0 auto 30px;
    display: block;
  }
  .wrap_blog_detail .sec:last-child {
    width: 48%;
  }
}
@media (min-width: 1025px) {
  .wrap_blog_detail .sec:first-child {
    width: 68%;
  }
  .wrap_blog_detail .sec:last-child {
    width: 28%;
  }
}
.wrap_blog_detail{
  padding: 80px 0 180px;
}
.wrap_blog_detail .inner:first-child {
  margin-bottom: 40px;
}
.wrap_blog_detail .inner .text {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2;
}
.wrap_blog_detail .inner .text.bg_color {
  margin-bottom: 40px;
}
.wrap_blog_detail h4 {
  font-size: 2.4rem;
  position: relative;
}

.wrap_blog_detail .box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-bottom: 40px;
  position: relative;
}
.wrap_blog_detail .box article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  background: #f3f3f3;
  border-radius: 20px;
}
.wrap_blog_detail .box article a p {
  width: 50%;
  padding: 0 20px 0 0;
}
.wrap_blog_detail .box article a p img {
  display: block;
  width: 100%;
  height: 108px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrap_blog_detail .box article a h5 {
  color: #707070;
  font-size: 1.4rem;
  margin-bottom: 5px;
  text-align: center;
}


/*--------------------------------------
経歴紹介
--------------------------------------*/
.wrap_career{
  padding: 80px 0 180px;
}
.wrap_career h2{
  max-width: 320px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 600px){
  .wrap_career h2{
    max-width: 520px;
    margin: 0 auto 40px;
  }
}
.wrap_career .message h3 {
  max-width: 180px;
  margin: 0px auto 20px;
}
.wrap_career .area_box ul li{
  grid-template-columns: 540px auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  display: -ms-grid;
  display: block;
  margin-bottom: 40px;
}
.wrap_career .area_box ul li .img_box {
  padding-right: 0px;
  max-width: 100%;
}
.wrap_career .area_box ul li .txt_box{
  padding-top: 40px;
}
.wrap_career .area_box ul li .txt_box h4{
  max-width: 100%;
  margin: 0 auto 20px;
  height: 40px;
  text-align: center;
}
.wrap_career .area_box ul li .txt_box p{
  font-size: 1.4rem;
}
.wrap_career .area_box ul li .txt_box h4 img{
  max-width: 100%;
  width: auto;
  height: 100%;
}
.wrap_career .area_box .message{
  background: var(--color-yellow1);
  border-radius: 16px;
  padding: 30px 30px;
  margin: 20px auto 0px;
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  .wrap_career .area_box ul li{
    grid-template-columns: 540px auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
    margin-bottom: 40px;
  }
  .wrap_career .area_box ul li .img_box {
    padding-right: 40px;
    max-width: 100%;
  }
  .wrap_career .area_box ul li .txt_box h4{
    max-width: 100%;
    margin: 0 auto 20px;
    height: 50px;
    text-align: left;
  }
  .wrap_career .area_box ul li .txt_box p{
    font-size: 1.6rem;
  }
  .wrap_career .area_box .message{
    font-size: 1.6rem;
  }
}




/*--------------------------------------
course-lp
--------------------------------------*/
/* ヘッダー
--------------------------------------*/
#course-lp_header {
  font-family: sans-serif;
  background:none;
}
#course-lp_header h1 {
    padding: 14px 20px;
    position: relative;
    z-index: 1;
    background: #fff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 0;
    max-width: 300px;
}
#course-lp_header h1 a {
  width: 100%;
  display: block;
}
#course-lp_header h1 a img{
  text-align: center;
  display: block;
}
@media (max-width: 599px) {
  #course-lp_header h1 {
      max-width: 200px;
      padding: 14px 12px;
  }
}
.hamburger-morph {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  background: #fff;
  border-radius: 50%
}
@media (max-width: 599px) {
  .hamburger-morph {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
}
.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}
.hamburger-morph__line {
  fill: none;
  stroke: #1c1c1c;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
  stroke: #f6af17;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
  stroke: #cac31a;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
  stroke: #7ec3ce;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(247, 176, 24);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}
.nav-morph.active { clip-path: circle(150% at calc(100% - 44px) 44px);}
.nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
.nav-morph.active .nav-morph__item:nth-child(5) { transition-delay: 0.7s; }
.nav-morph.active .nav-morph__item:nth-child(6) { transition-delay: 0.8s; }
.nav-morph.active .nav-morph__item:nth-child(7) { transition-delay: 0.9s; }
.nav-morph.active .nav-morph__item:nth-child(8) { transition-delay: 1.0s; }
.nav-morph__link {
  position: relative;
  display: inline-block;
  padding: 20px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.nav-morph__text {
  font-weight: bold;
  display: block;
  transition: transform 0.3s ease;
}

@media (max-width: 599px) {
  .nav-morph__link {
        font-weight: bold;
        font-size: 18px;
        padding: 8px;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}
.nav-overlay.active {
  display: block;
}
.nav-morph {
  z-index: 999; /* 必要に応じて調整 */
}


/* フッター
--------------------------------------*/
#course-lp_footer{
  background-image:none;
}

#course-lp_footer .logo{
  max-width: 240px;
  margin: 60px auto 20px;
}
#course-lp_footer .logo a {
    width: 100%;
    display: inline-block;
}
#course-lp_footer .copyright{
  font-family: sans-serif;
  background: #fff;
  text-align: center;
  width: 100%;
}

#course-lp_footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#course-lp_footer .sns a {
  background: var(--black);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  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;
  font-size: 1.8rem !important;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}

#course-lp_footer #bottom_nav a{font-size: 1.8rem;}
/*
メインビジュアル
--------------------------------------*/
#course-lp_mainvisual{
	width: 100%;
	position: relative;
	margin-inline: auto;
  padding: 0.7vw;
}
#course-lp_mainvisual ul{
	width: 100%;
}
#course-lp_mainvisual ul li{
	width: 100%;
}
#course-lp_mainvisual img{
    width: 100%;
    height: auto;
}
#course-lp_mainvisual .mv_txt {
	position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 2vw;
  transform: translateY(-50%);
  width: 46vw;
  z-index: 10;
}
@media screen and (max-width: 768px){
  #course-lp_mainvisual{
      padding: 2vw;
  }
  #course-lp_mainvisual .mv_txt {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
    transform: translateY(-50%);
    width: 80vw;
    z-index: 10;
  }
}
#course-lp_mainvisual .mv_inner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
#course-lp_mainvisual .mv_inner img{
	width: 100%;
	max-width: 220px;
}
#course-lp_mainvisual .mv_inner p{
	font-size: 2.4rem;
	line-height: 1.4em;
	font-weight: bold;
	margin: 0 20px;
}
#course-lp_mainvisual .mv_inner p span{
	font-weight: normal;
}
@media screen and (max-width: 768px){
	#course-lp_mainvisual .mv_inner p{
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 520px){
	#course-lp_mainvisual .mv_inner p{
		font-size: 1.2rem;
	}
}
/* ↓flexslider.cssを上書き */
#course-lp_mainvisual .flex-control-nav {
	bottom: 0;
}
/* flexslider.cssを上書き */
.flexslider{
	margin-bottom: 0;
	background: unset;
	border: none;
}
#course-lp_mainvisual .flex-control-paging li a.flex-active  {
	/*control-navのActiveな●の色を変えたい時はここを変更*/
	background-color: #fff000;
}
/* ↑flexslider.cssを上書き */


/* ページネーション */
.swiper{
	padding-bottom: 40px;
}
.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	margin: 0 10px !important;
	background-color: var(--color-orange1)!important;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color:#fff!important;
	opacity: 1;
}
.swiper-pagination {
	height: 30px;
	bottom: 60px !important;
}
@media screen and (max-width: 768px){
  .swiper-pagination {
    height: 30px;
    bottom: 40px !important;
  }
}


/* コンテンツ */
#course-lp {
  text-align: center;
  font-family: sans-serif;
}
#course-lp h3.title{
  font-size: 3.0rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px){
  #course-lp h3.title{
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  #course-lp .course_lp_concept h3{
    font-size: 2.0rem;
  }
}
#course-lp h3.title_dec{
  position: relative;
}
#course-lp h3.title_dec::before {
  position: absolute;
        content: " ";
        display: inline-block;
        width: 200px;
        height: 20px;
        top: -20px;
}
#course-lp p{ font-size: 1.4rem;}
@media screen and (max-width: 768px){
  #course-lp p{ font-size: 1.2rem;}
}

.course_lp_point .inner,
.course_lp_course{
    background: url(../images/lp_bk02.png);
    background-size: 400px;
    background-color: #fffce8;
} 
.course_lp_story{
    background: url(../images/lp_bk01.png);
    background-size: 400px;
    background-color: #fff;
}
.course_lp_access{
    background: url(../images/lp_bk03.png);
    background-size: 400px;
    background-color: #f6af17;
    border-radius: 10px;
}

#course-lp .pic-roof-txt{
    display: block;
    max-width: 180px;
    margin: 0 auto;
    margin: 0 auto 0;
    padding: 60px 0 30px;
}
@media screen and (max-width: 599px){
#course-lp .pic-roof-txt{max-width: 160px;}
}

.course_lp_concept,
.course_lp_course{
  padding-bottom: 80px;
}
.course_lp_concept img{
  width: 88px;
  height: auto;
}
.course_lp_concept h3{ color: var(--color-blue2);}
.course_lp_concept .txt {
  color: var(--color-blue2);
  text-align: center;
}
.course_lp_concept .txt span{
  color: var(--color-orange1);
  font-weight: bold;
}

.course_lp_point .inner{padding-bottom: 80px;}
.course_lp_point h3{ color: var(--color-orange1);}
.course_lp_point .txt {
  color: var(--color-orange1);
  text-align: center;
}
.course_lp_point .txt span{
  color: var(--color-orange1);
  font-weight: bold;
}
.course_lp_point .pic-roof {
    display:block;
    width: 30%;
    margin: 0 auto;
}

@media screen and (max-width: 599px){
  .course_lp_point .pic-roof{
        width: 70%;
    }
}

.course_lp_point .box{
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 599px){
  .course_lp_point .box{
    width: 90%;
  }
}
.course_lp_point ul{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 29px min(4%, 40px);
    animation-duration: 2.6s;
    -webkit-animation-duration: 2.6s;
    animation-name: fade;
}
.course_lp_point ul li p{
  padding-left: 44px;
}
.course_lp_point ul li .img_box {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 120px;
    height: 200px;
}
.course_lp_point ul li .img_box img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.course_lp_point ul li h4{
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    padding-left: 44px;
}

.course_lp_point ul li:nth-child(1) h4{ color: var(--color-green3);}
.course_lp_point ul li:nth-child(2) h4{ color: var(--color-blue1);}
.course_lp_point ul li:nth-child(3) h4{ color: var(--color-orange2);}
.course_lp_point ul li:nth-child(1) h4::before { content: '1';}
.course_lp_point ul li:nth-child(2) h4::before { content: '2';}
.course_lp_point ul li:nth-child(3) h4::before { content: '3';}
.course_lp_point ul li h4::before {
  font-size: 2.6rem;
  position: absolute;
  left: 14px;
  top: -6px;
  margin-right: 8px;
}
.course_lp_point ul li:nth-child(2){ margin-top: 3rem;}
.course_lp_point ul li:nth-child(3){ margin-top: 6rem;}

@media screen and (max-width: 768px){
  .course_lp_point .box{
    width: 100%;
  }
  .course_lp_point ul li:nth-child(2){ margin-top: 0rem;}
  .course_lp_point ul li:nth-child(3){ margin-top: 0rem;}
}

@media screen and (max-width: 599px){
    .course_lp_point ul{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px min(2%, 30px);
  }
  .course_lp_point ul li:nth-child(1) .img_box{
    border-radius: 0px 120px 120px 0px;
    width: 90%;
  }
  .course_lp_point ul li:nth-child(2) .img_box{
    border-radius: 120px 0px 0px 120px;
    width: 90%;
    margin-right: 0;
    margin-left: auto;
  }
  .course_lp_point ul li:nth-child(3) .img_box{
    border-radius: 0px 120px 120px 0px;
    width: 90%;
  }
  .course_lp_point ul li .txt_left{
    width: 90%;
    margin-right: auto;
    margin-left: 0;
  }
  .course_lp_point ul li .txt_right{
    width: 86%;
    margin-right: 0;
    margin-left: auto;
    padding-right: 20px;
  }
}

.course_lp_story{
  position: relative;
  padding-bottom: 80px;
  padding-top: 40px;
}
.course_lp_story:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 66px;
  background: url(../images/lp_title_dec_blog2.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 599px){
  .course_lp_story:before {
    width: 300px;
    height: 50px;
}
}
.course_lp_story h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.course_lp_story h3{ color: var(--color-orange1);}
.course_lp_story .txt {
  color: var(--color-orange1);
  text-align: center;
}
.course_lp_story .box{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.course_lp_story ul{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px min(2%, 30px);
    animation-duration: 2.6s;
    -webkit-animation-duration: 2.6s;
    animation-name: fade;
}
@media screen and (max-width: 599px){
    .course_lp_story ul{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px min(2%, 30px);
  }
}
.course_lp_story ul li .img_box {
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 10px;
    height: 200px;
}
.course_lp_story ul li .img_box img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#course-lp .course_lp_story .txt_box p.name {
    font-size: 1.2rem;
    margin-bottom: 4px;
    border-radius: 20px;
    text-align: center;
    width: 100px;
    display: block;
    background: var(--color-blue1);
    color: #fff;
    font-weight: bold;
}
#course-lp .course_lp_story .txt_box p.story_title{
    font-weight: bold;
    margin-bottom: 4px;
    color: #e78b63;
    text-align: left;
    font-size: 1.6rem;
}
.modaal-content-container {font-family: sans-serif;}
#course-lp .course_lp_story .hide-area{ display: none;}
.modaal-content-container h4{
    font-weight: bold;
    margin: 10px 0px 10px 10px;
    color: #e78b63;
    text-align: left;
    font-size: 2.4rem;
}
.modaal-content-container .heading{
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0 10px 0 40px;
    margin-bottom: 10px;
    color: var(--color-blue2);
    line-height: 1.2;
    position: relative;
}
.modaal-content-container .heading img{
    width: 21px;
    position: absolute;
    top: 0;
    left: 10px;
}
.modaal-content-container .txt{
  margin: 10px 10px 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px){
  .modaal-content-container {
    padding: 10px;
  }
  .modaal-content-container h4{
    font-size: 1.8rem;
  }
  .modaal-content-container .heading{
        font-size: 1.5rem;
        font-weight: bold;
        padding: 0 10px 0 40px;
        margin-bottom: 10px;
        color: var(--color-blue2);
        line-height: 1.2;
        position: relative;
  }
  .modaal-content-container img{
    width: 18px;
    margin-right: 8px;
  }
  .modaal-content-container .txt{
    margin: 10px 10px 20px;
    font-size: 1.2rem;
  }
  #course-lp .course_lp_story .txt_box p.story_title{
    font-weight: bold;
    margin-bottom: 4px;
    color: #e78b63;
    text-align: left;
    font-size: 1.8rem;
}
}

.course_lp_method { padding-bottom: 80px;}
.course_lp_method h3{ color: var(--color-orange1);}
.course_lp_method .txt {
  color: var(--color-orange1);
  text-align: center;
}
.course_lp_method .txt span{
  color: var(--color-blue2);
  font-weight: bold;
}
.course_lp_method .column {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.course_lp_method .column div{
	width: 50%;
	max-width: 600px;
}
.course_lp_method .column .right {
  max-width: 500px;
  margin-bottom: 20px;
  padding: 0 50px;
}
.course_lp_method .column .left {
  max-width: 500px;
  margin-bottom: 20px;
  padding: 0 50px;
}
.course_lp_method ul li{
    padding: 10px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 20px;
}
.course_lp_method ul li h4{
  font-size: 1.8rem;
  font-weight: bold;
}
.course_lp_method ul li h4 span{
  font-size: 1.4rem;
}
.course_lp_method ul li .txt_box{
    width: 100%;
    display: grid;
    grid-template-columns: 66px 1fr;
    animation-duration: 2.6s;
    -webkit-animation-duration: 2.6s;
    animation-name: fade;
    gap: 40px min(4%, 40px);
    padding: 6px 10px 0px 10px;
    border-radius: 8px;
}
#course-lp .course_lp_method ul li .txt_box p{
    font-weight: bold;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-bottom: 8px;
    font-size: 1.4rem;
}
@media screen and (max-width: 599px){
  .course_lp_method .column div{
    width: 90%;
    max-width: 600px;
  }
  .course_lp_method .column .right { padding: 0 0px;}
  .course_lp_method .column .left { padding: 0 0px;}
}


.course_lp_method ul li:nth-child(1) { border: 1px solid #cecd8a;}
.course_lp_method ul li:nth-child(1) h4 { color: var(--color-green3);}
.course_lp_method ul li:nth-child(1) .txt_box{background: #f7f6c4;}
.course_lp_method ul li:nth-child(1) .txt_box p{ color: var(--color-green3);}

.course_lp_method ul li:nth-child(2) { border: 1px solid #facb73;}
.course_lp_method ul li:nth-child(2) h4 { color: var(--color-orange1);}
.course_lp_method ul li:nth-child(2) .txt_box{background: #fff8e9;}
.course_lp_method ul li:nth-child(2) .txt_box p{ color: var(--color-orange1);}

.course_lp_method ul li:nth-child(3) { border: 1px solid #f6af93;}
.course_lp_method ul li:nth-child(3) h4 { color: #e8652b;}
.course_lp_method ul li:nth-child(3) .txt_box{ background: #feefe8;}
.course_lp_method ul li:nth-child(3) .txt_box p{ color: #e8652b;}

.course_lp_course .grid1{
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 0px;
    height: 400px;
    position: relative;
}
.course_lp_course .grid1 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.course_lp_course .bottom-curve {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url(../images/lp_bk02.png) 0px  49px;
    background-size: 400px;
    background-color: #fffce8;
    clip-path: ellipse(14% 100% at 50% 100%);
    z-index: 2;
}
@media screen and (max-width: 599px){
  .course_lp_course .grid1{
      overflow: hidden;
      margin-bottom: 20px;
      border-radius: 0px;
      height: 180px;
      position: relative;
  }
  .course_lp_course .grid1 img {
      object-fit: cover;
      width: 100%;
      height: 100%;
  }
  .course_lp_course .bottom-curve {
        position: absolute;
        bottom: -30px;
        left: 0;
        width: 100%;
        height: 70px;
        background: url(../images/lp_bk02.png) 0px 3px;
        background-size: 400px;
        background-color: #fffce8;
        clip-path: ellipse(30% 80% at 50% 100%);
        z-index: 2;
  }
}

.course_lp_course h3 {
    color: var(--color-orange1);
}
.course_lp_course .area_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
    margin-bottom: 80px;
}
.course_lp_course .area_box .course_unit {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 4vw;
}
.course_lp_course .area_box .course_unit .img_box {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
    height: 280px;
}
.course_lp_course .area_box .course_unit .img_box img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 599px) {
  .course_lp_course .area_box {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  .course_lp_course .area_box .course_unit .img_box {
    height: 220px;
  }
}

.course_lp_course .area_box .course_unit h4{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.course_lp_course .area_box .course_unit p.age{
    border-radius: 20px;
    text-align: center;
    width: 160px;
    display: block;
    margin: 0 auto 20px;
}
.course_lp_course .area_box .course_unit .txt_box{
  padding: 10px;
  border-radius: 10px;
}
.course_lp_course .area_box .course_unit .txt_box h5{
  border-radius: 6px;
  font-size: 1.4rem;
  padding: 2px;
  margin-bottom: 6px;
}
@media screen and (max-width: 599px) {
  .course_lp_course .area_box .course_unit .txt_box h5{
    font-size: 1.2rem;
  }
}
.course_lp_course .area_box .course_unit .txt_box p.txt{
  text-align: center;
  color: var(--black);
}
.course_lp_course .area_box .course_unit span.day_saturday{color: #4976b0;}
.course_lp_course .area_box .course_unit span.day_sunday{color: #ff4e00;}

.course_lp_course .area_box .course_wonder h4,
.course_lp_course .area_box .course_wonder p{ color: #afac33;}
.course_lp_course .area_box .course_wonder p.age,
.course_lp_course .area_box .course_wonder .txt_box{ border: 1px solid #cecd8a;}
.course_lp_course .area_box .course_wonder .txt_box h5{
  background: #efeecd;
  color: #afac33;
}
.course_lp_course .area_box .course_smile h4,
.course_lp_course .area_box .course_smile p{ color: #f6af17;}
.course_lp_course .area_box .course_smile p.age,
.course_lp_course .area_box .course_smile .txt_box{ border: 1px solid #facb73;}
.course_lp_course .area_box .course_smile .txt_box h5{
  background: #fff8e9;
  color: #f6af17;
}
.course_lp_course .area_box .course_hero h4,
.course_lp_course .area_box .course_hero p{ color: #e8652b;}
.course_lp_course .area_box .course_hero p.age,
.course_lp_course .area_box .course_hero .txt_box{ border: 1px solid #f6af93;}
.course_lp_course .area_box .course_hero .txt_box h5{
  background: #feefe8;
  color: #e8652b;
}
.course_lp_course .area_box .course_challenge h4,
.course_lp_course .area_box .course_challenge p{ color: #2f62a4;}
.course_lp_course .area_box .course_challenge p.age,
.course_lp_course .area_box .course_challenge .txt_box{ border: 1px solid #809fc8;}
.course_lp_course .area_box .course_challenge .txt_box h5{
  background: #e9eff7;
  color: #2f62a4;
}


.course_lp_access{position: relative;}
.course_lp_access .bottom-curve2 {
    position: absolute;
    top: -42px;
    left: 0;
    width: 100%;
    height: 70px;
    background: url(../images/lp_bk03.png) 0px 10px;
    background-size: 400px;
    background-color: #f6b016;
    clip-path: ellipse(20% 100% at 50% 100%);
    z-index: 2;
}
@media screen and (max-width: 599px){
  .course_lp_access .bottom-curve2 {
      position: absolute;
      top: -42px;
      left: 0;
      width: 100%;
      height: 70px;
      background: url(../images/lp_bk03.png) 0px 10px;
      background-size: 400px;
      background-color: #f6b016;
      clip-path: ellipse(30% 80% at 50% 100%);
      z-index: 2;
  }
}
.course_lp_access h4.title {
  font-weight: bold;
  color: #fff;
  font-size: 2rem;
  padding: 0 10px;
  margin: 0 auto 30px;
}

.course_lp_access .access_area{
  background: none;
  border: none;
  padding: 0px 6vw 80px;
}
.course_lp_access ul li h5 {
  background: rgba(232, 100, 43, 0.8);
  border-radius: 10px;
  margin-bottom: 4px;
  padding: 4px;
  text-align: center;
  color: #fff;
}
.course_lp_access ul li h5 span{
  color: #fff;
}
.course_lp_access .access_area ul li .frame{
  border-radius: 10px;
  height: ;
}

.course_lp_access ul li p{
  color: #fff;
}
.course_lp_access .access_area span::before {
  color: var(--color-yellow2);
}
@media screen and (max-width: 599px){
  .course_lp_access .access_area span::before {
    position: absolute;
    top: 2px;
    left: 0px;
}
}
.course_lp_contact{
  background: #f0f0f0;
  padding: 0px 0 80px;
  
}
.course_lp_contact .box{
  background: #fff;
  border-radius: 10px;
  padding: 4vw;
}
.course_lp_contact p{
  text-align: center;
}
#course-lp .course_lp_contact h3.title{
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px){
  .course_lp_contact .box{
    padding: 10vw 4vw;
  }
}
.course_lp_contact .btn {
    font-size: 2.6rem;
    background: var(--color-orange1);
    border: 1px solid var(--color-orange1);
    color: #fff;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    max-width: 480px;
    padding: 10px;
    text-align: center;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media screen and (max-width: 599px){
  .course_lp_contact .btn {
      font-size: 1.8rem;
  }
}



/*
お問い合わせ
--------------------------------------*/
.course_lp_contact{
  background: #f0f0f0;
  padding: 40px 0;
}

.course_lp_contact_inner .area_box{
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
  padding: 20px 20px 40px;
}
.course_lp_contact_inner .policy{
  background: #efefef;
  border-radius: 16px;
  padding: 10px 10px;
  margin: 20px auto 40px;
}
.course_lp_contact_inner .policy h5{
  font-size: 1.6rem;
}
.course_lp_contact_inner .policy p{
  font-size: 1.2rem;
}
@media screen and (min-width: 769px){
  .course_lp_contact_inner .area_box{
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 60px;
  }
  .course_lp_contact_inner .policy{
    background: #efefef;
    border-radius: 16px;
    padding: 14px 30px;
    margin: 20px auto 40px;
  }
  .course_lp_contact_inner .policy h5{
    font-size: 1.8rem;
  }
  .course_lp_contact_inner .policy p{
    font-size: 1.4rem;
  }
}
