@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input, select {
  vertical-align: middle;
}

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

* {
  box-sizing: border-box;
}

/***基本設定***/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", serif;
  font-style: normal;
  color: #333333;
  font-size: 18px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  height: auto;
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.inner {
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .inner {
    width: 90%;
    margin: auto;
  }
}

/***コンテンツここから***/
.btn_top {
  display: block;
  font-size: 20px;
  background: linear-gradient(180deg, rgb(197, 177, 74) 50%, rgb(114, 87, 9) 100%);
  line-height: 50px;
  width: 350px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  transform: scale(1);
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .btn_top {
    width: 150px;
    font-size: 12px;
    line-height: 30px;
  }
}
.btn_top:hover {
  transform: scale(1.1);
}

.btn_cta {
  display: block;
  font-size: 28px;
  background: #FFFF00;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position: right 50px center;
  line-height: 90px;
  max-width: 680px;
  text-align: center;
  color: #00A0E6;
  border-radius: 50px;
  margin: auto;
  border: solid #fff 2px;
  transform: scale(1);
  transition: all 0.4s;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  .btn_cta {
    width: 90%;
    font-size: 20px;
    line-height: 60px;
    background-position: right 20px center;
  }
}
.btn_cta:hover {
  transform: scale(1.1);
}

.cta {
  padding: 100px 0;
  background: #00A0E6;
}
@media (max-width: 767px) {
  .cta {
    padding: 40px 0;
    background-size: 60% auto;
  }
}

.fv {
  background-image: url(../images/mv_pc.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 130px;
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    background-image: url(../images/mv_sp.webp);
    background-position: right bottom;
    padding-bottom: 40px;
  }
}
.fv__lead01 {
  font-size: 24px;
  line-height: 2;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .fv__lead01 {
    font-size: 16px;
    width: 60%;
  }
}
.fv__lead02 {
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 767px) {
  .fv__lead02 {
    width: 90%;
    margin: 50px auto 0;
    text-align: center;
    font-size: 14px;
  }
}
.fv__inner {
  max-width: 1300px;
  margin: auto;
}
@media (max-width: 767px) {
  .fv__inner {
    width: 90%;
  }
}

.cta_btn {
  position: absolute;
  right: 50px;
  bottom: 50px;
  transform: scale(1);
  transition: all 0.4s;
}
@media (max-width: 1100px) {
  .cta_btn {
    width: 180px;
    bottom: -80px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .cta_btn {
    width: 100px;
    right: 10px;
    bottom: -50px;
  }
}
.cta_btn:hover {
  transform: scale(1.1);
}

.logo {
  width: 200px;
  display: block;
  padding: 30px 0 60px 50px;
}
@media (max-width: 767px) {
  .logo {
    width: 150px;
    padding: 20px 20px 50px;
  }
}

.h1 {
  color: #00A0E6;
  font-size: 24px;
  margin-bottom: 50px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .h1 {
    font-size: 14px;
    text-align: center;
  }
}
.h1__sub {
  color: #fff;
  background-color: #00A0E6;
  padding: 0 10px 2px;
  margin: 0 5px;
}
.h1__main {
  font-size: 50px;
  font-weight: bold;
  display: block;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .h1__main {
    font-size: 24px;
    color: #fff;
    background-color: #00A0E6;
    text-align: center;
    margin: 20px calc(50% - 50vw) 0;
  }
}

.title-h2 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .title-h2 {
    font-size: 20px;
  }
}
.title-h2 span {
  color: #00A0E6;
  font-weight: bold;
}

.assignment {
  padding: 150px 0;
  background-image: url(../images/wave.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top 75px;
}
@media (max-width: 767px) {
  .assignment {
    padding: 80px 0;
  }
}

.assignment-group {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .assignment-group {
    margin-top: 50px;
    flex-direction: column;
    gap: 30px;
  }
}

.assignment-each {
  padding: 40px;
  text-align: center;
  background-color: #fff;
}
.assignment-each p {
  font-size: 20px;
  line-height: 2;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .assignment-each p {
    font-size: 16px;
  }
}

.box-shadow {
  box-shadow: 5px 5px 28px 0px rgba(217, 217, 217, 0.7);
}

.program {
  padding: 150px 0;
  background-color: #EDF8F9;
  background-image: url(../images/triangle.png), url(../images/bg_summary.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, center bottom;
  background-size: 40% auto, 100% auto;
}
@media (max-width: 767px) {
  .program {
    padding: 80px 0;
    background-size: 70% auto, 100% auto;
  }
}

.title-program {
  font-size: 48px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .title-program {
    font-size: 24px;
    margin-bottom: 50px;
  }
}

.sub-title-program {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #00A0E6;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .sub-title-program {
    font-size: 20px;
  }
}

.teacher {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .teacher {
    flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
}

.teacher-left {
  flex: 1;
}
@media (max-width: 767px) {
  .teacher-left {
    text-align: center;
  }
  .teacher-left img {
    width: 70%;
  }
}
.teacher-left figcaption {
  text-align: center;
  font-size: 28px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .teacher-left figcaption {
    font-size: 18px;
  }
}
.teacher-left figcaption span {
  display: block;
  font-size: 20px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .teacher-left figcaption span {
    font-size: 14px;
  }
}

.teacher-right {
  flex: 1.8;
  padding-bottom: 30px;
}
.teacher-right h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .teacher-right h4 {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.teacher-right p {
  line-height: 2;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .teacher-right p {
    padding-bottom: 50px;
  }
}

.book {
  background-color: #fff;
  padding: 30px;
  position: relative;
}
.book p {
  text-align: right;
  padding-bottom: 0;
}
@media (max-width: 1100px) {
  .book p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .book p {
    font-size: 12px;
  }
}
.book figure {
  position: absolute;
  left: 5%;
  top: -25%;
  width: 8vw;
}
@media (max-width: 1100px) {
  .book figure {
    width: 10vw;
    left: 5%;
    top: -10%;
  }
}
@media (max-width: 767px) {
  .book figure {
    width: 30%;
    left: 2%;
    top: -20px;
  }
}

.composition {
  max-width: 800px;
  margin: 100px auto 50px;
  background-color: #fff;
  padding: 40px 70px;
}
@media (max-width: 767px) {
  .composition {
    margin: 50px auto 30px;
    padding: 30px;
  }
}
.composition h4 {
  text-align: center;
  padding: 30px 0 50px;
}
@media (max-width: 767px) {
  .composition h4 {
    padding: 20px 0 30px;
  }
}
.composition dl {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .composition dl {
    align-items: flex-start;
  }
}
.composition dl:last-of-type {
  margin-bottom: 0;
}
.composition dl dt img {
  width: 65px;
}
@media (max-width: 767px) {
  .composition dl dt img {
    width: 50px;
  }
}
.composition dl dd {
  padding-top: 25px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .composition dl dd {
    padding-top: 0;
  }
}
.composition dl h5 {
  color: #00A0E6;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .composition dl h5 {
    font-size: 16px;
  }
}
.composition dl ul {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .composition dl ul {
    padding-top: 10px;
  }
}
.composition dl ul li {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .composition dl ul li {
    padding-botttom: 10px;
  }
}
.composition dl ul li:last-of-type {
  margin-bottom: 0;
}

.program-group {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .program-group {
    flex-direction: column;
    gap: 30px;
  }
}

.program-each {
  background-color: #fff;
  padding: 50px 30px;
  width: 47%;
}
@media (max-width: 1100px) {
  .program-each {
    width: 46%;
  }
}
@media (max-width: 767px) {
  .program-each {
    width: auto;
  }
}
.program-each ul {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .program-each ul {
    margin-top: 30px;
  }
}
.program-each ul li {
  line-height: 1.5;
  padding-bottom: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
.program-each ul li:last-of-type {
  padding-bottom: 0;
}
.program-each dl {
  display: flex;
  padding-bottom: 20px;
  line-height: 1.5;
}
.program-each dl:first-of-type {
  margin-top: 50px;
}
.program-each dl dt {
  flex: 1;
}
.program-each dl dd {
  flex: 4;
}
@media (max-width: 767px) {
  .program-each dl dd {
    flex: 3;
  }
}

.reason {
  padding: 150px 0;
  background-color: #EDF8F9;
}
@media (max-width: 767px) {
  .reason {
    padding: 80px 0;
  }
}

.reason-each {
  display: flex;
  position: relative;
  z-index: 3;
  margin-top: 150px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .reason-each {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .reason-each {
    margin-top: 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.reason-each figure {
  max-width: 450px;
  position: relative;
  top: 90px;
}
@media (max-width: 767px) {
  .reason-each figure {
    width: 90%;
    top: 50px;
  }
}
.reason-each p {
  font-size: 24px;
  line-height: 2;
}
@media (max-width: 767px) {
  .reason-each p {
    font-size: 16px;
    padding: 50px 0 30px;
  }
}
.reason-each p span {
  color: #00A0E6;
}
.reason-each .number {
  position: absolute;
  top: 30px;
  left: 10px;
}
@media (max-width: 767px) {
  .reason-each .number {
    width: 25vw;
    top: 10px;
    left: -10px;
  }
}

.reason-each02 {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 3;
  margin-top: 150px;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .reason-each02 {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .reason-each02 {
    margin-top: 50px;
    flex-direction: column;
    align-items: flex-end;
  }
}
.reason-each02 figure {
  max-width: 450px;
  position: relative;
  top: 90px;
}
@media (max-width: 767px) {
  .reason-each02 figure {
    width: 90%;
    top: 50px;
  }
}
.reason-each02 p {
  font-size: 24px;
  line-height: 2;
}
@media (max-width: 767px) {
  .reason-each02 p {
    font-size: 16px;
    padding: 50px 30px;
  }
}
.reason-each02 p span {
  color: #00A0E6;
}
.reason-each02 .number {
  position: absolute;
  top: 30px;
  right: 10px;
}
@media (max-width: 767px) {
  .reason-each02 .number {
    width: 42vw;
    top: 10px;
    right: -40px;
  }
}

.left {
  position: relative;
}
.left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 5px 28px 0px rgba(217, 217, 217, 0.7);
}
@media (max-width: 1100px) {
  .left::before {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .left::before {
    width: 80%;
  }
}

.right {
  position: relative;
}
.right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: #fff;
  box-shadow: 5px 5px 28px 0px rgba(217, 217, 217, 0.7);
}
@media (max-width: 1100px) {
  .right::before {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .right::before {
    width: 80%;
  }
}

.form {
  padding: 150px 0;
  background-color: #EDF8F9;
}
@media (max-width: 767px) {
  .form {
    padding: 80px 0 !important;
  }
}
.form p {
  text-align: center;
  font-size: 20px;
}
@media (max-width: 767px) {
  .form p {
    font-size: 16px;
  }
}

.form-wrap {
  width: 90%;
  max-width: 900px;
  margin: 80px auto 0;
  background: #fff;
  padding: 30px;
}
@media (max-width: 767px) {
  .form-wrap {
    margin-top: 50px;
  }
}

footer {
  background: #333333;
  color: #fff;
  padding: 60px 0;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 100px;
}
footer h4 {
  text-align: center;
  font-size: 12px;
}

.faq {
  padding: 150px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0;
  }
}

.accordion {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .accordion {
    margin-top: 50px;
  }
}

.accordion-item {
  margin-bottom: 0.5em;
}

.accordion-header {
  display: block;
  border-left: #00A0E6 solid 0.4rem;
  padding: 0.5rem 4rem 0.5rem 1rem;
  background-color: #EDF8F9;
  border-radius: 0.5rem;
  position: relative;
  line-height: 1.5;
}
.accordion-header::after {
  border-right: solid 2px #ccc;
  border-top: solid 2px #ccc;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 30%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 8px;
}

.accordion-header:hover {
  background: #e0e0e0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0.2em 1rem;
  line-height: 1.8;
  opacity: 0;
}

input[type=checkbox]:checked + .accordion-header + .accordion-content {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 1rem;
}

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