@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
abbr,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
ruby,
section,
summary,
time,
mark,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  color: #735758;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
section {
  padding: 60px 0;
}
h2 {
  text-align: center;
  font-size: 22px;
  margin: auto;
  padding: 40px 0;
}
h2 img {
  width: 72%;
  max-width: 400px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
h4 {
  font-size: 18px;
  background-image: linear-gradient(
    179deg,
    rgb(253, 251, 240),
    rgba(255, 247, 224, 1)
  );
  padding: 12px 16px;
  color: #735758;
}
h5 {
  font-size: 18px;
  text-align: left;
  font-weight: 600;
}
p {
  font-size: 16px;
}
a {
  display: block;
  color: inherit;
  text-decoration: none;
  font: inherit;
}
a:hover {
  cursor: pointer;
}
ul {
  text-align: left;
}
button {
  font-family: "Noto Sans JP", sans-serif;
}
button:hover {
  cursor: pointer;
}
mark {
  background: linear-gradient(transparent 60%, #fdd35e 100%);
  color: #735758;
}

.pc-img {
  display: none;
}
.pc-br {
  display: none;
}

@media screen and (min-width: 900px) {
  section {
    padding: 120px 0;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 36px;
  }
  h4 {
    font-size: 20px;
    padding: 16px 5%;
  }
  h5 {
    font-size: 20px;
  }
  p {
    font-size: 18px;
  }

  .sp-img {
    display: none;
  }
  .pc-img {
    display: block;
  }

  .sp-br {
    display: none;
  }
  .pc-br {
    display: block;
  }
}

/* ヘッダー */
header {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  height: 80px;
  width: 100%;
  background: none;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 4px #bebebe;
  position: fixed;
  background-color: #fff;
  z-index: 1000;
}
.head-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
}

.logo img {
  width: 240px;
}
.logo a {
  height: 40px;
  display: flex;
  align-items: center;
}

.hamburger {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
}

.hamburger .bar {
  width: 36px;
  height: 2px;
  background: #735758;
  border-radius: 2px;
  display: block;
  position: absolute;
  transition: all 0.3s;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.checkbox:checked ~ .hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked ~ .hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked ~ .hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

.checkbox {
  display: none;
}

.nav-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition: all 0.8s;
}

.nav-menu img {
  width: 260px;
}
.nav-menu ul {
  margin-top: 100px;
  display: block;
  text-align: center;
  color: #fff;
}
.nav-menu li {
  margin-bottom: 50px;
  list-style-type: none;
}

.nav-menu li a {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin: auto;
  padding: 5px;
  color: #735758;
  transition: 0.5s;
}
.nav-menu li a:hover {
  color: #5ba992;
}

.nav-menu .inquiry-btn:hover {
  border: none;
}
.nav-menu .inquiry-btn a {
  border: solid 2px #fff;
  padding: 10px 20px;
  color: #735758;
  background: #fff;
  border-radius: 40px;
}
.checkbox:checked ~ .nav-menu {
  left: 0;
  background: #fff;
}

.contents {
  font-family: "Noto Sans JP", sans-serif;
}
.section-inner {
  width: 90%;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 900px) {
  header {
    height: 90px;
  }
  .head-area {
    width: 96%;
    padding: 0;
    margin: auto;
  }

  .logo img {
    width: 320px;
  }

  .nav-menu {
    position: static;
    width: 50%;
    max-width: 400px;
  }
  .nav-menu img {
    display: none;
  }
  .nav-menu .inquiry-btn a {
    color: #735758;
    background: #fff;
  }

  .hamburger {
    display: none;
  }
  .hamburger.bar {
    background: #fff;
  }

  .nav-menu ul {
    margin: auto;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
  }
  .nav-menu li {
    margin-bottom: 0px;
  }

  .nav-menu .inquiry-btn a {
    padding: 5px;
  }
  .checkbox:checked ~ .nav-menu {
    background: none;
  }
}

/* ---------TOPページ--------- */
main {
  margin-top: 80px;
}
.main-img {
  width: 100%;
  height: auto;
}

.sp-main {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 40px;
  background-image: url(../img/sp-main-back.jpg);
  background-position: top;
  background-size: cover;
}

.sp-main .wd-img-area {
  width: 90%;
  margin: auto;
}
.sp-main .wd-img-area img {
  width: 24%;
  max-width: 150px;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
}
.sp-main .main-v-wrap {
  width: 90%;
  margin: auto;
  text-align: center;
}
.sp-main .main-title {
  width: 96%;
  max-width: 500px;
  margin: 4% auto;
}

.sp-main .sponsor-area {
  width: 80%;
  margin: auto;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
.sponsor-area dl {
  width: fit-content;
  margin: 8px auto;
  margin-left: 0;
  display: flex;
  align-items: center;
}
.sponsor-area dl dt {
  font-size: 14px;
  font-weight: 500;
  background: #fdd35e;
  border-radius: 4px;
  line-height: 1;
  padding: 6px 10px;
  margin-right: 16px;
}
.sponsor-area dl dd {
  font-size: 17px;
  font-weight: 500;
}
.sp-main .main-sub {
  width: 100%;
  max-width: 600px;
}
.sp-main .illust {
  width: 96%;
  max-width: 600px;
  margin: 8% auto;
}
.sp-main .btn-area img {
  width: 80%;
  max-width: 400px;
}
.sp-main .main-btn {
  margin-top: 0;
}
.pc-main {
  display: none;
}

.main-btn {
  width: 80%;
  max-width: 280px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2.4em;
  margin: 16px auto;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background-color: #fdd35e;
  color: #735758;
  border: none;
  border-radius: 40px;
  box-shadow: 4px 4px 0px #735758;
  position: relative;
  transition: 0.5s;
}
.main-btn::after {
  content: "";
  position: absolute;
  right: 28px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #735758;
  border-right: 2px solid #735758;
  transform: rotate(45deg);
  margin-left: 12px;
}

.closing {
  width: 90%;
  max-width: 400px;
  margin: auto;
  color: #f00;
  padding: 16px;
  border: solid 2px #f00;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 900px) {
  main {
    margin-top: 90px;
  }

  .sp-main {
    display: none;
  }
  .pc-main {
    display: block;
    width: 100%;
    padding: 7% 0;
    background-image: url(../img/pc-main-back.jpg);
    background-position: top;
    background-size: cover;
  }
  .main-v-inner {
    width: 90%;
    margin: auto;
  }

  .pc-main .wd-img-area {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
  }

  .pc-main .wd-img-area .wd-logo {
    width: 15%;
    max-width: 200px;
    background: #fff;
    padding: 16px;
    border-radius: 6px;
    margin-right: 24px;
  }
  .main-title {
    width: 100%;
    max-width: 1200px;
  }
  .pc-main .wd-img-area .sponsor-area {
    display: flex;
    align-items: center;
  }
  .sponsor-area dl {
    width: fit-content;
    margin: 8px 0;
    margin-right: 32px;
  }
  .sponsor-area dl dt {
    font-size: 16px;
    padding: 10px 18px;
    margin-right: 16px;
  }
  .sponsor-area dl dd {
    font-size: 20px;
    font-weight: 600;
  }

  .main-v-wrap {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-around;
  }
  .main-left {
    width: 45%;
    text-align: center;
  }
  .main-right {
    width: 53%;
  }
  .main-left .main-sub {
    width: 96%;
    max-width: 700px;
    margin: 12px 0 24px;
  }

  .main-left .btn-area {
    text-align: center;
    margin: 32px auto;
  }
  .main-left .btn-area img {
    width: 80%;
    max-width: 400px;
  }

  .main-right img {
    width: 100%;
  }

  .contents-inner {
    padding-top: 50px;
  }

  .main-btn {
    max-width: 360px;
    height: 80px;
    line-height: 80px;
    font-size: 22px;
    transition: 0.5s;
    box-shadow: 6px 6px 0px #735758;
  }
  .main-btn::after {
    width: 10px;
    height: 10px;
    border-top: 3px solid #735758;
    border-right: 3px solid #735758;
    margin-left: 16px;
    margin-top: 4px;
  }

  .main-btn:hover {
    box-shadow: 3px 3px 0px #735758;
  }

  .main-left .main-btn {
    width: 80%;
    max-width: 360px;
    height: 84px;
    font-weight: 600;
    font-size: 22px;
    margin-top: 8px;
    border-radius: 60px;
  }
}

/* -----------ベネフィット---------- */
.benefit {
  margin: auto;
  padding-top: 40px;
}

.intro-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.intro-wrap .intro-block {
  width: 46%;
  max-width: 220px;
  text-align: center;
  background-color: #fff;
  border: solid 3px #5ba992;
  box-shadow: 4px 4px 0px #8ac6b4;
  border-radius: 8px;
  padding: 16px 0;
  margin: 0 1%;
  margin-bottom: 20px;
}
.intro-wrap .intro-block p {
  font-size: 18px;
  color: #5ba992;
  font-weight: 500;
  margin-bottom: 12px;
}
.intro-wrap .intro-block img {
  width: 70%;
}

.benefit-wrap {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.benefit-title {
  width: 100%;
  max-width: 400px;
  margin: 24px auto;
}
.benefit-text {
  text-align: left;
  margin: 0 auto 32px;
  font-size: 15px;
  text-align: justify;
  line-height: 2;
}

.benefit-block {
  margin-bottom: 24px;
}
.benefit-block img {
  width: 80%;
  margin: auto;
}
.benefit-block p {
  width: fit-content;
  margin: auto;
  font-size: 18px;
  font-weight: 600;
}
.benefit-block p span {
  font-size: 26px;
  font-weight: 700;
}

.benefit .list-title {
  width: 80%;
  padding: 10px 20px;
  border-bottom: solid 2px #735758;
  text-align: center;
  font-size: 20px;
  margin: 10px auto;
  font-weight: 600;
}
.list-wrap {
  width: 94%;
  margin: 40px auto;
  padding: 10px;
  background-color: #fdd35e;
  border: solid 2px #735758;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #735758ba;
}
.benefit .lists {
  width: 100%;
  margin: auto;
  background: #fff;
  border: solid 2px #735758;
  border-radius: 6px;
  padding: 14px;
}

.benefit .lists ul {
  width: fit-content;
  margin: auto;
}
.benefit .lists ul li {
  margin: 16px auto;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  list-style-type: none;
}
.benefit .lists ul li::marker {
  color: #fdd35e;
  font-size: 20px;
}

@media screen and (min-width: 900px) {
  .benefit {
    max-width: 1200px;
    margin: auto;
  }
  .intro-wrap .intro-block {
    max-width: 240px;
  }
  .intro-wrap .intro-block p {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .intro-wrap .intro-block img {
    width: 70%;
  }
  .benefit-title {
    max-width: 800px;
  }
  .benefit-text {
    max-width: 980px;
    margin: 48px auto 80px;
    font-size: 21px;
    line-height: 2.8;
  }
  .benefit-wrap {
    max-width: 1200px;
    justify-content: space-around;
    margin: 140px auto 120px;
  }

  .benefit-block:nth-child(2) {
    margin-top: -60px;
  }
  .benefit-block {
    width: 33%;
  }

  .benefit-block p {
    font-size: 23px;
  }
  .benefit-block p span {
    font-size: 36px;
  }
  .benefit-block img {
    width: 100%;
  }
  .list-wrap {
    max-width: 800px;
    margin: 100px auto 80px;
    box-shadow: 8px 8px 0px #735758ba;
  }
  .benefit .list-title {
    width: 600px;
    font-size: 28px;
    padding: 16px;
  }
  .benefit .lists {
    width: 96%;
    margin: 12px auto;
  }
  .benefit .lists ul {
    width: fit-content;
    margin: auto;
  }
  .benefit .lists ul li {
    font-size: 20px;
  }
  .benefit .lists ul li::marker {
    font-size: 26px;
  }
}
/* ------------------------- */

/* 研修のポイント */
.content02 {
  background-image: url(../img/background.png);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 80px;
}

#point {
  background-image: url(../img/background.png);
  background-position: 0 100%;
  padding: 20px 0 140px;
}

#point h2 {
  padding-top: 0;
}
.point-wrap {
  margin: 30px 0;
}
.point-box,
.point-last {
  margin: 30px auto;
  width: 100%;
  background-color: #fff;
  border: solid 2px #735758;
  border-radius: 8px;
  padding: 20px 0;
  box-shadow: 6px 6px 0px #ffe69f;
}
.point-title {
  width: 90%;
  display: flex;
  margin: 16px auto;
  align-items: center;
}
.point-title .number {
  width: 30%;
  max-width: 110px;
}
.point-title span {
  font-size: 28px;
}
.point-title .title {
  color: #735758;
  margin-left: 10px;
  text-align: left;
  font-size: 5vw;
  font-weight: 700;
}

.point-img {
  width: 80%;
  max-width: 300px;
}
.point-box .text,
.point-last .text {
  width: 88%;
  margin: 24px auto;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.subject-wrap {
  width: 98%;
  max-width: 800px;
  margin: 40px auto;
  padding: 20px 0;
  background: #fff;
  border: solid 2px #8ac6b4;
  box-shadow: 4px 4px 0px #8ac6b4;
  border-radius: 8px;
}
.subject-wrap .title {
  font-size: 20px;
  font-weight: 600;
  color: #8ac6b4;
  margin-bottom: 24px;
}

.subject-wrap ul {
  width: 98%;
  margin: 24px auto;
}

.subject-wrap ul li {
  width: fit-content;
  margin: 8px auto;
  margin-left: 2em;
  font-size: 14px;
  padding: 0 8px;
  padding-left: 0;
}

.cert-area {
  width: 90%;
  margin: 16px auto;
  background-color: #fff7e0;
  padding: 16px 0;
  border-radius: 8px;
}
.cert-area p {
  margin-bottom: 8px;
}
.cert-area img {
  width: 90%;
  margin: auto;
}
.btn-wrap .main-btn {
  margin-top: 0;
}
.btn-deco {
  width: 86%;
  max-width: 380px;
}

@media screen and (min-width: 900px) {
  .content02 {
    background-size: 40%;
    border-top-left-radius: 80%;
    border-top-right-radius: 80%;
    height: 150px;
  }
  #point {
    padding: 40px 0 200px;
    background-size: 40%;
  }
  .point-wrap {
    margin: 60px 0;
  }
  .point-box,
  .point-last {
    max-width: 1000px;
    display: flex;
    align-items: center;
    box-shadow: 8px 8px 0px #ffe69f;
  }
  .point-last {
    display: block;
  }
  .point-last .reverse {
    display: flex;
  }

  .reverse {
    flex-direction: row-reverse;
  }
  .point-box .text,
  .point-last .text {
    font-size: 18px;
    line-height: 2;
  }
  .point-title {
    width: 90%;
  }
  .point-title .title {
    font-size: 30px;
    margin-left: 24px;
  }

  .point-t-block {
    width: 64%;
  }
  .point-img {
    width: 30%;
    height: auto;
    margin: 24px auto;
  }
  .subject-wrap {
    margin: 140px auto 40px;
    box-shadow: 6px 6px 0px #8ac6b4;
  }
  .subject-wrap ul {
    width: 85%;
  }
  .subject-wrap ul li {
    font-size: 18px;
  }
  .subject-wrap .title {
    font-size: 24px;
  }

  .cert-area {
    padding: 32px 0;
  }
  .cert-area img {
    width: 40%;
  }
  .btn-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
  .btn-deco {
    max-width: 400px;
  }
}

/* ---------------- */

/* スケジュール */
.content03 {
  background-color: #fdd35e;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 80px;
  margin-top: -60px;
}
.content03-2 {
  background-color: #fdd35e;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  height: 80px;
}

#schedule {
  background-color: #fdd35e;
  padding: 20px 0;
}
#schedule h2 {
  padding-top: 0;
}

.schedule-block {
  width: 98%;
  margin: auto;
  margin-bottom: 32px;
  background: #fff;
  border: solid 2px #735758;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #735758ba;
}
.schedule-block .title {
  background: #735758;
  height: 66px;
  line-height: 66px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.schedule-block .detail {
  width: 90%;
  margin: auto;
  padding: 40px 0 32px;
}
.schedule-block .text {
  font-size: 15px;
  line-height: 1.8;
  margin: auto;
  margin-bottom: 16px;
  text-align: justify;
}

.schedule-block .img-wrap {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-block .img-wrap img {
  max-height: 65px;
  margin: 0 24px;
}

.schedule-block .date {
  background-color: #dcebe7;
  padding: 14px 0;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
}

#schedule .main-btn {
  background-color: #735758;
  color: #fff;
  box-shadow: 4px 4px 0px #735758ba;
}

#schedule .main-btn::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.place-info {
  margin: 40px auto;
}
.place-block {
  max-width: 1000px;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 0;
  margin: 16px auto;
}

.place-flex {
  width: 90%;
  margin: auto;
}
.place-block .date {
  width: 90%;
  margin: auto;
  margin-bottom: 16px;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #5ba992;
}

.place-block ul {
  margin: auto;
}

.place-block ul li {
  font-size: 17px;
  list-style-type: none;
  margin: 8px auto;
}

.place-block ul .address p {
  font-size: 14px;
}

.place-block .map iframe {
  width: 100%;
  margin: 16px auto;
}

.place-block .note p {
  width: 90%;
  margin: 16px auto;
  padding: 8px;
  font-size: 14px;
  text-align: left;
  background-color: #e4f0ed;
}
@media screen and (min-width: 900px) {
  .content03 {
    border-top-left-radius: 80%;
    border-top-right-radius: 80%;
    height: 150px;
  }
  #schedule {
    padding-bottom: 40px;
  }
  .schedule-wrap {
    max-width: 1400px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .schedule-block {
    width: 30%;
    min-width: 380px;
    margin: 0 18px 32px;
  }

  .schedule-block .title {
    font-size: 22px;
  }
  .schedule-block .text {
    height: 145px;
    font-size: 16px;
  }
  #schedule .main-btn {
    box-shadow: 6px 6px 0px #735758ba;
  }
  #schedule .main-btn:hover {
    box-shadow: 3px 3px 0px #735758ba;
  }

  .place-flex {
    display: flex;
    justify-content: space-between;
    width: 84%;
  }
  .place-block {
    padding: 24px 0;
  }
  .place-block .date {
    margin-bottom: 20px;
    padding: 12px 0;
    font-size: 20px;
  }
  .place-block ul {
    width: 40%;
    margin: 16px 0;
  }
  .place-block ul li {
    font-size: 18px;
  }
  .place-block ul .address p {
    font-size: 15px;
  }
  .place-block .map {
    width: 55%;
  }
  .place-block .map iframe {
    height: 200px;
  }
  .place-block .note p {
    padding: 16px;
    font-size: 15px;
  }
}

/* ピックアップ */

#pickup h2 img {
  width: 90%;
}

.youtube {
  width: 96%;
  margin: 0 auto 24px;
  aspect-ratio: 16 / 9;
  border: solid 2px;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 6px 6px 0px #cce6de;
}
.youtube .title {
  background: #735758;
  color: #fff;
  margin-bottom: 16px;
  border-radius: 4px;
  padding: 10px 0;
  font-weight: 500;
}
.youtube iframe {
  width: 96%;
  height: 96%;
}

.pickup-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pickup-block {
  width: 100%;
  max-width: 340px;
  margin: 0 6px;
  margin-bottom: 32px;
  background: #fff;
  border: solid 2px #735758;
  border-radius: 8px;
  box-shadow: 6px 6px 0px #cce6de;
}
.block-inner {
  width: 90%;
  margin: 24px auto;
  text-align: center;
}

.pickup-block img {
  width: 48%;
  max-width: 200px;
  border-radius: 6px;
}

.pickup-block .title {
  font-size: 17px;
  text-align: left;
  font-weight: 600;
  color: #5ba992;
  margin-bottom: 6px;
}
.pickup-block .teacher-wrap p {
  width: 40%;
  font-size: 16px;
  font-weight: 500;
  margin-right: 8px;
  text-align: left;
}

.pickup-block .teacher {
  padding: 14px 0;
  text-align: center;
  border-bottom: solid 2px;
  margin-bottom: 16px;
}
.pickup-block .teacher p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.pickup-block .teacher .affiliation {
  font-size: 12px;
  font-weight: 400;
}

.pickup-block .detail {
  text-align: left;
  font-size: 14px;
}

.pickup-block a {
  background-color: #5ba992;
  margin: 16px 0;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.pickup-block a img {
  width: 28px;
  height: auto;
  margin-right: 8px;
}

@media screen and (min-width: 900px) {
  #pickup h2 img {
    max-width: 500px;
  }

  .youtube {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 24px;
    padding: 24px;
  }
  .youtube .title {
    padding: 16px 0;
    font-size: 22px;
  }

  .pickup-wrap {
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    margin: 60px auto 0;
    justify-content: center;
  }

  .pickup-block {
    width: 30%;
    min-width: 380px;
    margin: 0 18px 32px;
    background: #fff;
    border: solid 2px #735758;
    border-radius: 8px;
  }
  .pickup-block img {
    width: 40%;
  }
  .pickup-block .title {
    font-size: 20px;
  }
  .pickup-block .teacher span {
    font-size: 16px;
    padding: 4px 12px;
    border: solid 2px #735758;
  }
  .pickup-block .teacher p {
    font-size: 20px;
  }
  .pickup-block .teacher .affiliation {
    font-size: 14px;
  }
  .pickup-block .detail {
    text-align: left;
    font-size: 15px;
  }
  .pickup-block a {
    margin: 16px 0;
    padding: 16px 12px;
    font-size: 18px;
  }
  .pickup-block a img {
    width: 32px;
  }
}

/* 受講生の声 */
#voice {
  background: #fff7e0;
  padding-bottom: 140px;
}
#voice h2 img {
  width: 50%;
  max-width: 250px;
}
.voice-wrap {
  max-width: 1200px;
  margin: auto;
}

.voice-block {
  margin-bottom: 32px;
}
.voice-block img {
  width: 40%;
  max-width: 220px;
}
.voice-block .text {
  background: #fff;
  padding: 16px 0;
  margin: 16px 0;
  border-radius: 8px;
  border: solid 2px;
}
.voice-block .text p {
  width: 94%;
  margin: auto;
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
}

@media screen and (min-width: 900px) {
  #voice {
    padding-top: 140px;
    padding-bottom: 200px;
  }
  .voice-block-wrap {
    margin: 60px 0;
  }

  .voice-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .voice-block img {
    width: 20%;
  }
  .voice-block .text {
    width: 78%;
    padding: 32px 0;
  }
  .voice-block .text p {
    font-size: 18px;
  }
}

/* お申込み方法 */
.content05 {
  background-color: #8ac6b4;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 80px;
  margin-top: -60px;
}

#application {
  background-color: #8ac6b4;
  padding-top: 0px;
}

.application-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 28px 0;
}
.application-wrap p {
  width: 90%;
  font-size: 15px;
  margin: 24px auto;
  text-align: center;
}

.application-wrap img {
  width: 80%;
  max-width: 320px;
}

.application-info {
  width: 90%;
  margin: 16px auto 40px;
  text-align: left;
}

.application-info h2 {
  padding-top: 0;
  font-weight: 600;
}

.application-info dl {
  font-size: 17px;
  margin-bottom: 16px;
}
.application-info dl dt {
  height: fit-content;
  text-align: center;
  font-weight: 400;
  background-color: #fdd35e;
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 8px;
}
.application-info .price dd {
  font-size: 22px;
}
.application-info dl dd {
  font-size: 14px;
  font-weight: 500;
}
.application-info dl dd p {
  width: 96%;
  font-size: 13px;
  text-align: left;
  font-weight: 400;
  line-height: 1.6;
  margin: 8px 0;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 900px) {
  .content05 {
    border-top-left-radius: 80%;
    border-top-right-radius: 80%;
    height: 150px;
  }
  #application {
    padding-top: 40px;
  }
  .application-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
  }

  .application-wrap p {
    font-size: 20px;
    line-height: 2;
    font-weight: 600;
    margin: 48px auto 8px;
  }

  .application-wrap img {
    margin-bottom: 24px;
  }
  .application-info {
    width: 86%;
    margin: 40px auto 80px;
  }
  .application-info h2 {
    padding-bottom: 60px;
  }

  .application-info dl {
    display: flex;
    margin-bottom: 24px;
  }
  .application-info dl dt {
    width: 15%;
    margin-right: 24px;
    padding: 6px;
    font-size: 16px;
    font-weight: 500;
  }
  .affiliation .price dd {
    font-size: 24px;
  }
  .application-info dl dd {
    width: 80%;
    font-size: 18px;
  }
  .application-info dl dd p {
    font-size: 17px;
  }
}

/* --------  アンケート結果 -------------*/

.graph-wrap {
  margin-top: 40px;
}
.graph-wrap h5 {
  text-align: center;
  margin: 24px auto;
}
.graph-wrap h5 span {
  font-size: 13px;
}
.graph-block-wrap {
  margin: 60px auto;
}
.graph-block {
  margin: 36px auto;
}
.graph-block p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.graph-block img {
  width: 64%;
  max-width: 400px;
}

.graph-block .graph2 {
  width: 100%;
  max-width: 900px;
  margin: 28px auto;
}
@media screen and (min-width: 900px) {
  .graph-wrap {
    margin-top: 80px;
  }
  .graph-wrap h5 {
    font-size: 26px;
  }
  .graph-wrap h5 span {
    font-size: 16px;
  }
  .graph-block {
    margin: 60px auto;
  }
  .graph-block p {
    font-size: 24px;
  }
  .graph-block .graph2 {
    margin: 40px auto;
  }
}
/* ----------------------------------- */

/* --------  フッター -------------*/
footer {
  font-size: 15px;
  background: #fff;
  text-align: center;
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
}

.footer-logo {
  width: 300px;
  margin: auto;
}

.f-logo-area {
  max-width: 300px;
  margin: auto;
  margin-top: 24px;
}
.f-logo-area p {
  font-weight: 500;
}

.info {
  width: 86%;
  margin: 40px auto;
  background: #fff;
  border: solid 2px #735758;
  border-radius: 8px;
}
.info-inner {
  width: 90%;
  margin: 24px auto;
}

.info p {
  text-align: left;
  font-size: 15px;
}
.info .place {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-btn {
  margin: 20px auto;
}
.contact-btn a {
  margin: 8px auto;
  max-width: none;
  padding: 16px 0;
  font-size: 18px;
  border: solid 2px #5ba992;
  border-radius: 6px;
  color: #5ba992;
  transition: 0.8s;
}

.contact-btn a:hover {
  color: #fff;
  background-color: #5ba992;
}
.map iframe {
  width: 100%;
  height: 260px;
  margin: 24px auto 0;
}
.project {
  background: #e4f0ed;
  padding: 10px 4px;
}
.project p {
  font-size: 12px;
  text-align: center;
}
.project img {
  width: 90px;
  margin: 12px auto 0px;
  border: solid 2px #00a040;
  border-radius: 6px;
  padding: 4px;
  background: #fff;
}

.tokusyou {
  margin: 20px auto;
}
.tokusyou a {
  width: fit-content;
  margin: auto;
  font-size: 13px;
  padding: 0 8px;
  border-right: solid 1px;
  border-left: solid 1px;
}
.copyright {
  padding: 6px 0;
  color: #735758;
  background-color: #fdd35e;
}
.copyright p {
  font-size: 9px;
  font-weight: 500;
}

@media (min-width: 900px) {
  footer {
    padding-top: 48px;
  }
  .footer-logo {
    width: 400px;
  }
  .f-logo-area {
    max-width: fit-content;
    margin: auto;
    margin-top: 24px;
  }
  .f-logo-area a {
    font-size: 16px;
    max-width: 400px;
  }
  .footer-left {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .text-info {
    width: 40%;
  }
  .info {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 12px;
  }
  .info-inner {
    width: 96%;
    margin: 40px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .info-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  .info p {
    font-size: 16px;
  }
  .contact-btn {
    width: 40%;
  }
  .contact-btn a {
    padding: 16px 0;
    font-size: 20px;
  }
  .project {
    width: 54%;
    padding: 10px 24px;
    display: flex;
    align-items: center;
  }
  .project p {
    font-size: 15px;
    text-align: left;
    margin-right: 16px;
  }
  .project img {
    width: 110px;
    margin: 10px auto;
  }
  .copyright {
    padding: 8px 0;
  }
  .copyright p {
    font-size: 10px;
  }
}

/* セカンダリページ */
.second-inner {
  width: 92%;
  max-width: 1200px;
  margin: 40px auto;
}

/* 科目一覧 */
.subject-list .purpose {
  font-size: 14px;
  margin: 16px auto;
}
.subject-inner {
  margin-bottom: 60px;
}
.subject-list .subject {
  border: solid 2px #735758;
  margin-bottom: 16px;
  list-style-type: none;
  border-radius: 6px;
}
.subject .title {
  background-color: #5ba992;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px 4px 0 0;
}

.subject .detail {
  padding: 8px 12px;
}
.subject .detail div:first-child {
  margin-bottom: 6px;
}
.subject .detail p {
  font-size: 14px;
  margin-bottom: 8px;
}

.subject .detail .tag {
  margin-bottom: 0;
  margin-top: 8px;
}

.subject .detail span {
  font-size: 15px;
  color: #5ba992;
  font-weight: 600;
}
.subject .detail .exercise span {
  color: #735758;
  font-weight: 400;
  font-size: 12px;
}
.subject .detail .teacher {
  font-weight: 600;
  display: grid;
}
.subject .detail .teacher span {
  font-size: 12px;
  font-weight: 400;
  color: #735758;
}
.subject sup {
  vertical-align: super;
  font-size: 0.6em;
}
.subject .detail .sup-p {
  font-size: 12px;
}

.subject-inner .note p {
  color: #fa561e;
  font-size: 14px;
  margin-left: 1em;
  text-indent: -1em;
}
.subject-inner .note {
  font-weight: 600;
  margin-bottom: 24px;
}
.subject-inner .note span {
  color: #fa561e;
  font-size: 15px;
}

.subject-area .instructor {
  padding: 8px 12px 12px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.subject-area .instructor img {
  width: 130px;
  height: auto;
  margin: 0 6px;
  border-radius: 4px;
}

.subject-area .detail .instructor p {
  font-size: 14px;
}

.video {
  padding: 24px 0;
  background: #eaf3f0;
}

.video p {
  width: 94%;
  margin: auto;
  font-size: 14px;
}

.video a {
  width: fit-content;
  margin: 16px auto 0;
  padding: 16px;
  font-size: 18px;
  border: solid 2px #5ba992;
  border-radius: 6px;
  background: #fff;
  color: #5ba992;
  transition: 0.8s;
  text-align: center;
}

@media (min-width: 900px) {
  .second-inner {
    margin: 60px auto;
  }
  .subject-inner {
    margin-bottom: 100px;
  }
  .subject-list .purpose {
    font-size: 16px;
    margin: 20px auto;
  }
  .subject .title {
    font-size: 18px;
    padding: 12px 20px;
  }
  .subject .detail {
    padding: 0 20px;
    padding-left: 0;
  }
  .subject .detail span {
    font-size: 18px;
    font-weight: 600;
  }
  .subject .detail .exercise span {
    color: #735758;
    font-size: 13px;
  }

  .subject .detail p {
    font-size: 16px;
    line-height: 1.8;
  }
  .subject .detail .teacher {
    display: flex;
  }
  .subject .detail .teacher span {
    font-size: 15px;
    margin-left: 10px;
  }
  .subject .detail .sup-p {
    font-size: 14px;
  }
  .subject-inner .note span {
    font-size: 18px;
    font-weight: 600;
  }
  .subject-inner .note p {
    font-size: 18px;
    font-weight: 600;
  }
  .subject-area {
    width: 96%;
    margin: auto;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .subject-area .instructor {
    padding: 12px 0;
  }
  .subject-area .detail .exercise {
    display: flex;
    justify-content: space-between;
  }
  .video {
    padding: 32px 0;
  }
  .video p {
    width: 96%;
    font-size: 16px;
    line-height: 1.8;
  }
}

.tokusyou-wrap {
  margin: 24px auto;
}
.tokusyou-wrap dl dt,
.tokusyou-wrap dl dd {
  font-size: 14px;
}

.tokusyou-wrap dl dt {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
  background: #e4f0ed;
  padding: 4px 8px;
}
.tokusyou-wrap dl dd {
  margin-bottom: 12px;
  padding: 6px;
}
.tokusyou-wrap dl dd a {
  text-decoration: underline;
}

@media (min-width: 900px) {
  .tokusyou-wrap {
    margin: 60px auto;
  }
  .tokusyou-wrap dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tokusyou-wrap dl dt {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tokusyou-wrap dl dd {
    width: 75%;
    margin-bottom: 16px;
    font-size: 16px;
  }
}

/* よくあるご質問 */

.faq-wrap {
  width: 92%;
  margin: 40px auto;
}
.accordion {
  max-width: 1200px;
  margin: auto;
}
.toggle {
  display: none;
}
.Label {
  padding: 20px 1em;
  display: block;
  color: #595f70;
  background: #fff;
  border: solid 2px #5ba992;
  border-radius: 10px;
}
.Label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #5ba992;
  border-right: 2px solid #5ba992;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
  transform: rotate(135deg);
}
.Label:hover {
  cursor: pointer;
}
.Label p {
  width: 93%;
  font-size: 16px;
  font-weight: 500;
}
.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.accordion .content {
  height: 0;
  width: 100%;
  margin: auto;
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: #eaf3f0;
}
.accordion .content img {
  width: 92%;
  max-width: 900px;
  height: auto;
  margin: 16px auto;
}
.toggle:checked + .Label + .content {
  /*開閉時*/
  height: auto;
  padding: 20px 0;
  transition: all 0.3s;
  text-align: center;
}
.toggle:checked + .Label + .content p {
  width: 90%;
  margin: auto;
  text-align: left;
  font-size: 14px;
}

.toggle:checked + .Label + .content .indent {
  text-indent: -1em;
  margin-left: 2em;
}
.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}

@media screen and (min-width: 900px) {
  .Label {
    padding: 28px 2em;
  }
  .Label::before {
    width: 8px;
    height: 8px;
    right: 2em;
  }
  .Label p {
    font-size: 18px;
  }
  .accordion .content {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .accordion .content img {
    margin: 32px auto;
  }

  .accordion .content p {
    font-size: 17px;
    text-align: left;
  }

  .accordion .content p br {
    height: 10px;
  }
  .toggle:checked + .Label + .content {
    padding: 32px 0;
  }
  .toggle:checked + .Label + .content p {
    width: 94%;
    font-size: 16px;
  }
  .toggle:checked + .Label + .content .indent {
    text-indent: -1em;
    margin-left: 3em;
  }
}
/* --------------------------------- */
