@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  box-sizing: border-box;
}

header .container {
  display: flex;
  height: 70px;
  align-items: center;
}
header .container .logo {
  width: 60%;
}
header .container nav {
  width: 100%;
}
header .container nav ul {
  display: flex;
  justify-content: space-between;
}
header .container nav ul li {
  width: 100%;
  text-align: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

section {
  padding: 72px 0 72px 0;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 3rem; /*元は2rem*/
  padding: 24px 0;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 56.25%;
  }
}
section.concept .card {
  display: flex;
  margin: 0 0 25px 0;
}
section.concept .card .thumb {
  width: 20%;
}
section.concept .card .description {
  width: 100%;
  padding: 20px;
}

/*元は設定あり
section.menu {
  .wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    .card{
      width:30%;
    }
  }
}*/
section.member .card {
  height: 400px;
  margin: 0 0 25px 0;
  position: relative;
}
section.member .card .thumb {
  width: 60%;
  position: absolute;
  left: 0;
  margin: -30px 0 0 0;
}
section.member .card .thumb img {
  width: auto;
  height: 400px;
}
section.member .card .description {
  width: 60%;
  padding: 20px;
  position: absolute;
  background: #e2e2e2;
  right: 0;
  margin: 0 0 -30px 0;
}

@media screen and (max-width: 767px) {
  header article {
    display: block;
  }
  header article #g-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #333;
  }
  header article #g-menu span, header article #g-menu span:before, header article #g-menu span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ccc;
    position: absolute;
  }
  header article #g-menu span:before {
    bottom: 8px;
  }
  header article #g-menu span:after {
    top: 8px;
  }
  header nav#global {
    transition: all 0.6s;
  }
  header nav#global ul {
    display: none;
  }
  header nav#global.active #g-menu span {
    background-color: rgba(255, 255, 255, 0);
  }
  header nav#global.active #g-menu span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  header nav#global.active #g-menu span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  header nav#global.active.active ul {
    display: block;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #d7e8fb;
    margin: 0;
    z-index: 1;
    padding: 10%;
    position: fixed;
  }
  header nav#global.active.active ul li {
    margin: 6rem 0;
  }
}
/***ここから****/
/*共通部分*/
/*リンク*/
a {
  text-decoration: unset;
}

.btn {
  display: flex;
  justify-content: center;
  position: relative;
}
.btn a {
  background-color: #ffd700;
  color: #0e3150;
  padding: 10px 50px;
  border-radius: 24px;
  display: inline-block;
}
.btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.btn a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  transform: rotate(-45deg);
  top: 1.7rem;
}

/*見出し(共通)*/
h3 {
  color: #0e3150;
  font-family: "Noto Serif JP";
}
@media screen and (max-width: 767px) {
  h3 {
    text-align: center;
  }
}

/*ヘッダー*/
header {
  background-color: #d7e8fb;
  position: fixed;
  z-index: 99;
  width: 100%;
  opacity: 90%;
}
header .container {
  gap: 20%;
}
header .container a {
  width: 55%;
}
header .container a .logo {
  width: 80%;
}
header .container a .logo img {
  width: unset;
  height: 100px;
}
header .container #global ul {
  display: flex;
}
header .container #global ul a {
  color: #0e3150;
}
header .container #global ul a:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  header {
    opacity: 1;
    position: sticky;
  }
  header .container {
    gap: 0;
    height: 60px;
  }
  header .container a {
    width: 100%;
  }
  header .container #global ul {
    display: none;
  }
}

footer {
  background-color: #0e3150;
  margin: -1px 0 0 0;
}
footer .top {
  display: none;
}
footer .logo {
  margin: 0 auto;
  width: 28%;
  padding: 5rem 0 3rem 0;
}
footer ul {
  display: flex;
  justify-content: center;
  margin: unset;
}
footer ul li {
  padding: 0 3rem 4rem 0;
}
footer ul li a {
  color: #fdfdfd;
}
footer ul li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  footer {
    position: relative;
  }
  footer .top {
    display: flex;
    position: absolute;
    top: -2rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background-color: #6dc9c8;
    border-radius: 45px;
  }
  footer .top .top_arrow {
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    transform: rotate(-45deg);
    width: 10px;
    height: 10px;
    position: absolute;
    margin: auto;
    top: 5px;
    bottom: 0;
    right: 0;
    left: 0;
  }
  footer .logo {
    width: 90%;
    padding: 5rem 0 2rem 0;
  }
  footer nav {
    padding: 2rem 0;
  }
  footer nav ul {
    display: block;
    text-align: center;
  }
  footer nav ul li {
    padding: 0 3rem 2rem 0;
  }
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 90%;
  }
}

/*メイン画像*/
.main {
  background: url(../img/main_back.webp) no-repeat center/cover;
  padding: 0;
}
.main .container {
  position: relative;
}
.main .container h2 {
  color: #0e3150;
  text-align: right;
  font-size: 5rem;
  position: absolute;
  top: 9rem;
  right: 0;
  font-family: "Noto Serif JP";
}
.main .container h2 span {
  display: block;
}
.main .container img:nth-of-type(1) {
  position: absolute;
  width: 13%;
  top: 10rem;
  right: 57rem;
}
.main .container img:nth-of-type(2) {
  padding: 10rem 0 0 0;
  width: 80%;
}
@media screen and (max-width: 999px) {
  .main .container h2 {
    font-size: 3.6rem;
  }
  .main .container img:nth-of-type(1) {
    right: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .main .container h2 {
    font-size: 3rem;
    top: 1rem;
    text-align: center;
    right: 0;
    left: 0;
  }
  .main .container img {
    padding: 10rem 0 0 0;
  }
  .main .container img:nth-of-type(1) {
    top: 0;
    right: 5rem;
    width: 25%;
  }
  .main .container img:nth-of-type(2) {
    padding: 10rem 0 0 0;
    width: 100%;
  }
}

.introduction {
  padding: unset;
  margin: -1px 0 0 0;
}
.introduction h3 {
  color: #fdfdfd;
}
.introduction .wrapper {
  display: flex;
  justify-content: space-around;
}
.introduction .wrapper .card {
  background: url(../img/fukidasi.svg) no-repeat center/cover;
  height: 300px;
  width: 300px;
}
.introduction .wrapper img {
  width: 25%;
}

.course {
  background-color: #f7f7f7;
}
.course .title {
  width: 100%;
  margin: 0 0 4rem 0;
}
.course .wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.course .wrapper .card {
  width: 30%;
}
.course .wrapper .card a {
  color: #333;
}
.course .wrapper .card a .description {
  margin: 3rem;
}
.course .wrapper .card a .description h4 {
  margin: 0 0 3rem 0;
  font-size: 2.4rem;
  font-family: "Noto Serif JP";
  text-align: center;
}
.course .btn.sp a {
  display: none;
}
@media screen and (max-width: 999px) {
  .course .wrapper .card {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .course .title .btn {
    width: unset;
  }
  .course .title .btn a {
    display: none;
  }
  .course .title .btn a::after {
    display: none;
  }
  .course .wrapper {
    display: block;
  }
  .course .wrapper .card {
    width: 100%;
    margin: 5rem 0;
  }
}

.teacher .title {
  display: flex;
  align-items: center;
  width: 100%;
}
.teacher .title h3 {
  width: 20%;
  padding: 3rem 4rem;
}
.teacher .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 6%;
}
.teacher .wrapper .card {
  display: flex;
  align-items: center;
  width: 40%;
  gap: 6%;
  background-color: #f7f7f7;
  margin: 0 0 4rem 0;
  padding: 2rem;
}
.teacher .wrapper .card .thumb {
  width: 35%;
}
.teacher .wrapper .card .thumb p {
  text-align: center;
  color: #6dc9c8;
  margin: 1rem 0 0 0;
  font-size: 2rem;
}
.teacher .wrapper .card .description {
  width: 65%;
}
.teacher .wrapper .card .description dt {
  font-size: 2rem;
  text-align: center;
}
.teacher .wrapper .card .description dd:nth-of-type(1) {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 1rem 0;
}
@media screen and (max-width: 767px) {
  .teacher .title {
    display: block;
  }
  .teacher .title h3 {
    width: unset;
  }
  .teacher .wrapper {
    display: block;
    padding: 4rem 0 1rem 0;
  }
  .teacher .wrapper .card {
    width: 100%;
  }
  .teacher .wrapper .card .description dd:nth-of-type(1) {
    font-size: 1.55rem;
  }
}

.question {
  background-color: #f7f7f7;
}
.question h3 {
  text-align: center;
}
.question .details {
  transition: all ease-in-out 0.3s;
  border-left: 1px solid #0e3150;
  border-right: 1px solid #0e3150;
  box-sizing: border-box;
}
.question .details:last-of-type {
  border-bottom: 1px solid #0e3150;
}
.question .details[open] {
  height: auto;
}
.question .details-summary {
  display: block;
  position: relative;
  padding: 20px 30px 20px 20px;
  border-top: 1px solid #0e3150;
  font-size: 20px;
  font-weight: bold;
  transition: all ease-in-out 0.3s;
  color: #fdfdfd;
  background-color: #0e3150;
}
.question .details-summary:hover {
  cursor: pointer;
  background-color: #427dad;
}
.question .details-summary .toggle-icon {
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  color: #fdfdfd;
  transition: transform 0.3s ease, color 0.3s ease;
}
.question .details:not([open]) .toggle-icon::before {
  content: "+";
  position: absolute;
  right: 25px;
  top: 32%;
}
.question .details[open] .toggle-icon::before {
  content: "−";
  position: absolute;
  right: 25px;
  top: 32%;
}
.question .details-content {
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
.question .details[open] .details-content {
  animation: fadeIn 0.3s ease;
}
@media screen and (max-width: 767px) {
  .question h3 {
    padding: 0 0 24px 0;
  }
  .question .details-summary {
    font-size: 16px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.contact {
  padding: 0;
  margin: -1px 0 0 0;
}
.contact .container .contact_box {
  display: flex;
  align-items: center;
  gap: 6%;
  width: 100%;
}
.contact .container .contact_box h3 {
  background: url(../img/contact.webp) no-repeat center/cover;
  width: 50%;
  padding: 12rem 5rem;
  text-align: center;
}
.contact .container .contact_box .inner {
  width: 50%;
}
.contact .container .contact_box .inner .btn {
  justify-content: unset;
  margin: 5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 0 0 72px 0;
  }
  .contact .container {
    max-width: unset;
  }
  .contact .container .contact_box {
    display: block;
  }
  .contact .container .contact_box h3 {
    width: 100%;
    padding: 10rem;
  }
  .contact .container .contact_box .inner {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  .contact .container .contact_box .inner .btn {
    justify-content: center;
  }
}

.heading-pagetitle {
  background: url(../img/second_heading.webp) no-repeat center/cover;
  position: relative;
}
.heading-pagetitle .container {
  display: flex;
}
.heading-pagetitle .container div {
  margin: 9% 5%;
}
.heading-pagetitle .container div h2 {
  color: #0e3150;
  font-size: 3.6rem;
  font-family: "Noto Serif JP";
  margin: 0 0 2rem 0;
  letter-spacing: 2px;
}
.heading-pagetitle .container img {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .heading-pagetitle {
    padding: 50px 0 72px 0;
  }
  .heading-pagetitle .container {
    display: block;
  }
  .heading-pagetitle .container div {
    margin: 0 0 5% 0;
  }
  .heading-pagetitle .container div p {
    line-height: 2.5rem;
    letter-spacing: 1px;
  }
  .heading-pagetitle .container h2 {
    text-align: center;
  }
  .heading-pagetitle .container img {
    width: 100%;
  }
}

.philosophy {
  background: url(../img/rinen.webp) no-repeat center/cover;
  background-position: bottom;
  margin: -14rem 0;
  padding: 14rem;
}
.philosophy h3 {
  text-align: center;
}
.philosophy h4 {
  text-align: center;
  font-size: 4rem;
  font-family: "Noto Serif JP";
  color: #0e3150;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .philosophy {
    margin: 0;
    padding: 0 0 5rem 0;
  }
  .philosophy h4 {
    font-size: 2.8rem;
  }
  .philosophy p {
    line-height: 3rem;
  }
}

.company_profile {
  padding: 22rem 0 10rem 0;
}
.company_profile h3 {
  text-align: center;
}
.company_profile table {
  width: 100%;
}
.company_profile table th {
  background-color: #6dc9c8;
  color: #fdfdfd;
  width: 20%;
  padding: 2%;
}
.company_profile table td {
  background-color: #f7f7f7;
  color: #333;
  width: 80%;
  padding: 2%;
}
@media screen and (max-width: 767px) {
  .company_profile {
    padding: 7.2rem 0 10rem 0;
  }
  .company_profile tr {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .company_profile tr th {
    width: 100%;
    text-align: center;
  }
  .company_profile tr td {
    width: 100%;
  }
}

.course_list .wrapper {
  display: flex;
  justify-content: space-between;
}
.course_list .wrapper .card {
  position: relative;
  width: 30%;
}
.course_list .wrapper .card:nth-child(1) {
  background-color: #fcfade;
}
.course_list .wrapper .card:nth-child(2) {
  background-color: #eff4f9;
}
.course_list .wrapper .card:nth-child(3) {
  background-color: #f7f7f7;
}
.course_list .wrapper .card .arrow {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: solid 2px #333;
  border-bottom: solid 2px #333;
  transform: rotate(-45deg);
  margin: 0 auto;
  right: 0;
  left: 0;
  bottom: 3rem;
}
.course_list .wrapper .card .description {
  padding: 2rem 3rem 7rem 3rem;
  color: #333;
}
.course_list .wrapper .card .description h4 {
  margin: 0 0 3rem 0;
  font-size: 2.4rem;
  font-family: "Noto Serif JP";
  text-align: center;
}
@media screen and (max-width: 999px) {
  .course_list .wrapper .card {
    width: 33%;
  }
}
@media screen and (max-width: 767px) {
  .course_list {
    padding: 72px 0 0 0;
  }
  .course_list .wrapper {
    display: block;
  }
  .course_list .wrapper .card {
    width: 100%;
  }
  .course_list .wrapper .card .description {
    margin: 0 0 5rem 0;
  }
  .course_list .wrapper .card .description p {
    line-height: 3rem;
  }
}

.course_detail section:nth-child(3) .container h3, .course_detail section:nth-child(4) .container h3, .course_detail section:nth-child(5) .container h3 {
  text-align: center;
}
.course_detail section:nth-child(3) .container h3 span, .course_detail section:nth-child(4) .container h3 span, .course_detail section:nth-child(5) .container h3 span {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 1.4px;
  line-height: 1rem;
  color: #427dad;
}
.course_detail section:nth-child(3) .container .card, .course_detail section:nth-child(4) .container .card, .course_detail section:nth-child(5) .container .card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 8rem 0;
}
.course_detail section:nth-child(3) .container .card:nth-child(2), .course_detail section:nth-child(4) .container .card:nth-child(2), .course_detail section:nth-child(5) .container .card:nth-child(2) {
  flex-direction: row-reverse;
  margin: 14rem 0 0 0;
}
.course_detail section:nth-child(3) .container .card img, .course_detail section:nth-child(4) .container .card img, .course_detail section:nth-child(5) .container .card img {
  width: 35%;
  z-index: 10;
}
.course_detail section:nth-child(3) .container .card .description, .course_detail section:nth-child(4) .container .card .description, .course_detail section:nth-child(5) .container .card .description {
  width: 65%;
  background-color: #fcfade;
  margin: -3rem -5rem;
  padding: 8rem;
}
.course_detail section:nth-child(3) .container .card .description h4, .course_detail section:nth-child(4) .container .card .description h4, .course_detail section:nth-child(5) .container .card .description h4 {
  font-size: 2.4rem;
  font-family: "Noto Serif JP";
  color: #0e3150;
  margin: 0 0 2rem 0;
}
.course_detail section:nth-child(3) .container .card .description p span, .course_detail section:nth-child(4) .container .card .description p span, .course_detail section:nth-child(5) .container .card .description p span {
  display: block;
  margin: 2rem 0 0 0;
}
@media screen and (max-width: 999px) {
  .course_detail section:nth-child(3) .container .card .description, .course_detail section:nth-child(4) .container .card .description, .course_detail section:nth-child(5) .container .card .description {
    padding: 4rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .course_detail section:nth-child(3), .course_detail section:nth-child(4), .course_detail section:nth-child(5) {
    padding: 0 0 72px 0;
  }
  .course_detail section:nth-child(3) .container p, .course_detail section:nth-child(4) .container p, .course_detail section:nth-child(5) .container p {
    line-height: 3rem;
  }
  .course_detail section:nth-child(3) .container .card, .course_detail section:nth-child(4) .container .card, .course_detail section:nth-child(5) .container .card {
    display: block;
    margin: 2rem 0 0 0;
  }
  .course_detail section:nth-child(3) .container .card:nth-child(2), .course_detail section:nth-child(4) .container .card:nth-child(2), .course_detail section:nth-child(5) .container .card:nth-child(2) {
    margin: 7rem 0 0 0;
  }
  .course_detail section:nth-child(3) .container .card img, .course_detail section:nth-child(4) .container .card img, .course_detail section:nth-child(5) .container .card img {
    width: 100%;
  }
  .course_detail section:nth-child(3) .container .card .description, .course_detail section:nth-child(4) .container .card .description, .course_detail section:nth-child(5) .container .card .description {
    width: 100%;
    margin: 0;
    padding: 4rem 3rem;
  }
  .course_detail section:nth-child(3) .container .card .description h4, .course_detail section:nth-child(4) .container .card .description h4, .course_detail section:nth-child(5) .container .card .description h4 {
    text-align: center;
  }
}
.course_detail section:nth-child(4) .container .card .description {
  background-color: #eff4f9;
}
.course_detail section:nth-child(5) .container .card .description {
  background-color: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

.teacher_list .wrapper {
  margin: 0 auto 10rem auto;
  width: 80%;
}
.teacher_list .wrapper .teacher_title {
  display: flex;
  align-items: center;
}
.teacher_list .wrapper .teacher_title .number {
  font-size: 8rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #6dc9c8;
  margin: 0 3rem 0 0;
}
.teacher_list .wrapper .teacher_title .message {
  font-size: 2.5rem;
  font-family: "Noto Serif JP";
  color: #333;
}
.teacher_list .wrapper .card {
  display: flex;
  justify-content: center;
  width: 100%;
}
.teacher_list .wrapper .card img {
  width: 35%;
  z-index: 10;
  -o-object-fit: cover;
     object-fit: cover;
}
.teacher_list .wrapper .card .description {
  width: 65%;
  background-color: #eff4f9;
  margin: 3rem 0 -4rem -7rem;
  padding: 11rem;
}
.teacher_list .wrapper .card .description h4 {
  font-size: 3rem;
  color: #0e3150;
  margin: 0 0 2rem 0;
}
.teacher_list .wrapper .card .description dl {
  color: #333;
}
.teacher_list .wrapper .card .description dl dt {
  font-size: 2rem;
}
.teacher_list .wrapper .card .description dl dd {
  font-size: 1.6rem;
}
.teacher_list .wrapper .card .description dl .profile {
  margin: 2rem 0 0 0;
}
.teacher_list .wrapper:nth-of-type(even) .number {
  color: #ffd700;
}
.teacher_list .wrapper:nth-of-type(even) .card {
  flex-direction: row-reverse;
}
.teacher_list .wrapper:nth-of-type(even) .card .description {
  margin: 3rem -7rem -4rem 0;
}
@media screen and (max-width: 767px) {
  .teacher_list .wrapper:nth-of-type(even) .card .description {
    margin: -3rem 0 0 0;
  }
}
@media screen and (max-width: 999px) {
  .teacher_list .wrapper .teacher_title .message {
    font-size: 2.2rem;
  }
  .teacher_list .wrapper .card .description h4 {
    font-size: 2.6rem;
  }
  .teacher_list .wrapper:nth-of-type(odd) .description {
    padding: 3rem 3rem 3rem 10rem;
  }
  .teacher_list .wrapper:nth-of-type(even) .description {
    padding: 3rem 10rem 3rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  .teacher_list {
    padding: 0;
  }
  .teacher_list .wrapper {
    width: 100%;
  }
  .teacher_list .wrapper .teacher_title {
    display: block;
  }
  .teacher_list .wrapper .teacher_title .number {
    font-size: 4rem;
  }
  .teacher_list .wrapper .teacher_title .message {
    font-size: 1.8rem;
    margin: 0 0 2rem 0;
  }
  .teacher_list .wrapper .card {
    display: block;
  }
  .teacher_list .wrapper .card img {
    width: 80%;
    margin: 0 auto;
  }
  .teacher_list .wrapper .card .description {
    width: 100%;
    margin: -3rem 0 0 0;
    padding: 5rem 2rem 3rem 2rem;
  }
  .teacher_list .wrapper .card .description h4 {
    text-align: center;
    margin: 0 0 1rem 0;
    font-size: 2.8rem;
  }
  .teacher_list .wrapper .card .description dt {
    text-align: center;
  }
  .teacher_list .wrapper .card .description dd:nth-of-type(1) {
    text-align: center;
  }
}

.contact_form .container form {
  width: 50%;
}
.contact_form .container .contact_intro {
  text-align: center;
}
.contact_form .container #wpcf7-f104-o1 {
  display: flex;
  justify-content: center;
}
.contact_form .container #wpcf7-f104-o1 .item {
  margin: 2rem 0;
  width: 100%;
  display: flex;
}
.contact_form .container #wpcf7-f104-o1 .item p {
  width: 40%;
  margin: 0 0 1rem 0;
  color: #0e3150;
}
.contact_form .container #wpcf7-f104-o1 .item .item_a {
  width: 60%;
}
.contact_form .container #wpcf7-f109-o1 {
  display: flex;
  justify-content: center;
}
.contact_form .container #wpcf7-f109-o1 .contact-area .item {
  margin: 2rem 0 0 0;
  display: flex;
  width: 100%;
}
.contact_form .container #wpcf7-f109-o1 .contact-area .item p {
  width: 40%;
  margin: 0 0 1rem 0;
  color: #0e3150;
}
.contact_form .container #wpcf7-f109-o1 .contact-area .item .item_a {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .contact_form .container form {
    width: unset;
  }
  .contact_form .container #wpcf7-f104-o1 .contact-area .item {
    display: block;
  }
  .contact_form .container #wpcf7-f104-o1 .contact-area .item p {
    width: 100%;
  }
  .contact_form .container #wpcf7-f109-o1 .contact-area .item {
    display: block;
  }
  .contact_form .container #wpcf7-f109-o1 .contact-area .item p {
    width: 100%;
  }
}

.btn_wrapper {
  display: flex;
  justify-content: space-around;
  margin: 3rem 0 0 0;
}
.btn_wrapper .btn p {
  position: relative;
}
.btn_wrapper .btn p::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  transform: rotate(-45deg);
  top: 1.6rem;
  left: 20rem;
}
.btn_wrapper .btn p input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffd700;
  color: #0e3150;
  padding: 10px 50px;
  border-radius: 24px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn_wrapper .btn p input[type=submit]:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.btn_wrapper .btn p input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #efefef;
  color: #0e3150;
  padding: 10px 50px;
  border-radius: 24px;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn_wrapper .btn p input[type=button]:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.btn_wrapper .btn.white p {
  position: relative;
}
.btn_wrapper .btn.white p::after {
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  border-right: none;
  border-bottom: none;
  left: 1rem;
}
.btn_wrapper .btn.yellow p {
  position: relative;
}
.btn_wrapper .btn.yellow p::after {
  left: 11rem;
}

/*　ラベル　*/
.required {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #6dc9c8;
  color: #0e3150;
  margin: 0 1rem 0 0;
  display: inline-block;
}

.any {
  font-size: 0.8em;
  padding: 4px 6px;
  background: #efefef;
  color: #0e3150;
  margin: 0 1rem 0 0;
  display: inline-block;
}

.wpcf7-not-valid-tip {
  white-space: nowrap;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffd700;
}

.contact_thanks {
  text-align: center;
}
.contact_thanks .btn {
  margin: 3rem 0 0 0;
}

.wpcf7-spinner {
  display: none;
}

.contact_re {
  font-size: 12px;
  color: #ccc;
  margin: 3rem 0 0 0;
  text-align: center;
}
.contact_re a {
  color: #ccc;
}/*# sourceMappingURL=style.css.map */