@charset "utf-8";
@viewport { zoom: 1.0; width: extend-to-zoom; }
div, ul, ol, dl, section, header, footer {
  margin:0; padding:0;
	-webkit-margin-before:0; -webkit-margin-after:0; -webkit-margin-start:0; -webkit-margin-end:0;
	-webkit-padding-before:0; -webkit-padding-after:0; -webkit-padding-start:0; -webkit-padding-end:0;
	-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box;
}
button { border: none; -webkit-appearance: none; background: none; cursor: pointer; }
img { max-width: 100%; }
ul, li { list-style-type: none; }
html {
	height: 100%;
	-webkit-text-size-adjust: 100%; /* iOSフォントサイズ対策 */
}
h1, h2, h3, h4, h5, p{
  padding: 0; margin: 0;
}
html, body { margin: 0; padding: 0; width: 100%; max-width: 100%; overflow-x: hidden; height: auto!important; }
body {
  height: auto!important;
	min-height: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.4;
	color: #655959;
	background: #fff;
  font-weight: 400;
  font-style: normal;
}
html, body, :root {
  font-size: 14px;
}
@media (min-width: 1040px) {
  html,
  body,
  :root {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }
  p {
    line-height: 1.8 !important;
  }
}

* {
  line-height: normal;
}


/* リンク */
a {
	color: #BE6E78;
	text-decoration: none;
	transition: all 0.2s ease;
}
@media (hover: hover) {
	a:hover { color: #655959; }
}


/* ボタン */
.btn {
  display: inline-block;
  line-height: 1;
  padding: 1rem 2rem;
  min-width: 70%;
  width: fit-content;
  color: #fff;
	border: 1px solid #BE6E78;
	border-radius: 5rem;
  font-weight: bold;
  font-size: 1.2rem;
  background-color: #D0949B;
  background-image: url("../img/chevron.svg") ;
  background-repeat: no-repeat;
  background-position: center right 1rem;
  background-size: 7px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
@media (min-width:801px) {
  .btn {
    font-size: 1.4rem;
    min-width: 15em;
    background-size: 10px;
  }
  .btn:hover {
    color: #fff;
    transform: scale(1.1);
  }
}


/* レイアウト */
.container {
	width: 96%;
  max-width: 890px;
  margin: auto;
  position: relative;
}
@media (min-width:1040px) {
  .container {
    max-width: 1100px;
  }
}
.sect {
  margin: 0;
  padding: 2rem 0;
}
@media (min-width:801px) {
  .sect {
    padding: 3rem 0;
  }
}


/* ヘッダー */
.header {
  line-height: 0;
  font-size: 0;
  margin: 0; padding: 0;
  position: relative;
}
.header-mv img {
  width: 100%;
}
@media (max-width:800px) {
  .header-logo {
    text-align: center;
    background-color: #F1FAEB;
    padding: 1rem;
    text-align: center;
    width: 100%;
  }
  .header-logo img {
    width: 30%;
  }
}
@media (min-width:801px) {
  .header-logo {
    position: absolute;
    top: 1rem; left: 5%;
  }
}


/* 見出し */
.sect-head {
  text-align: center;
  margin: 0 auto 2rem;
  width: fit-content;
  min-width: 5em;
  position: relative;
}
.sect-head > * {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
}
.sect-head::after,
.sect-head::before {
  content: ""; display: block;
  width: 12rem; height: 5px;
  position: absolute;
  margin: auto;
  background-image: radial-gradient(#A0C97D 30%, transparent 0);
  background-size: 7px 7px;
  background-position: center;
  background-repeat: space;
}
@media (max-width: 800px) {
  .sect-head {
    margin: 0 auto 3rem;
  }
  .sect-head > * {
    padding: 0 1rem;
  }
  .sect-head::after { display: none; }
  .sect-head::before {
    width: 100%;
    left: 0; right: 0;
    bottom: -.8rem;
  }
}
@media (min-width: 801px) {
  .sect-head {
    padding: 0 2rem;
    margin-bottom: 3rem;
  }
  .sect-head > * {
    font-size: 1.4rem;
  }
  .sect-head::after,
  .sect-head::before {
    background-image: radial-gradient(#A0C97D 27%, transparent 0);
    background-size: 12px 12px;
    width: 12rem;
    top: 0; bottom: 0;
  }
  .sect-head::after {
    right: 0;
    transform: translateX(100%);
  }
  .sect-head::before {
    left: 0;
    transform: translateX(-100%);
  }
}


.head-ribbon {
  text-align: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  color: #6CA343;
  line-height: 1.2;
  width: 100%;
  padding: 2rem 20% 1rem;
  background-image: url("../img/garland-01.png"), url("../img/garland-02.png") ;
  background-repeat: no-repeat;
  background-position: center left 2%, center right 2%;
  background-size: 18%;
}
.head-ribbon > * {
  font-size: 1.5rem;
}
@media (min-width: 801px) {
  .head-ribbon > * {
    font-size: 1.7rem;
  }
  .head-ribbon {
    margin: 0 auto 3rem;
    width: fit-content;
    height: 4rem;
    line-height: 1;
    padding: 2rem 9rem 0 10rem;
    background-position: top left, top right;
    background-size: contain;
  }
}


/* ナビ */
.side-nav {
  position: fixed;
  z-index: 100;
}

@media (max-width: 800px) {
  .side-nav {
    bottom: -2px; left: 0;
    width: 100%;
  }
  .side-nav ul {
    display: flex;
    line-height: 0;
  }
  .side-nav li {
    padding: 0 1%;
  }
}

@media (min-width: 801px) {
  .side-nav {
    top: 5%; right: -.1%;
  }
  .side-nav img {
    width: 4rem;
  }
  .side-nav li {
    padding: 0 0 1rem;
  }
}


@media (hover: hover) {
  .side-nav a img {
    transition: .2s filter linear;
  }
  .side-nav a:hover img {
    filter: brightness(110%);
  }
}


/* こんな人におすすめ！ */
.sect-intro {
  font-size: 0; line-height: 0;
}
.sect-intro .container {
  font-size: 0; line-height: 0;
}
@media (max-width: 800px) {
  .sect-intro .head-ribbon {
    margin-bottom: 0;
  }
}
@media (min-width: 801px) {
  .sect-intro {
    padding: 3rem 0 0;
  } 
}


/* 学びのポイント */
.sect-points {
  background-color: #EBF6E3;
}
.point-item {
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #E8A670;
  margin: 0 0 1rem;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
  position: relative;
}
.point-item * {
  position: relative;
}

.point-item::before {
  content: ""; display: block;
  width: 7rem; height: 7rem;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
}
.point-item:nth-of-type(1):before {
  top: -2rem; left: 1rem;
  background-image: url("../img/point-icon-01.png");
}
.point-item:nth-of-type(2):before {
  width: 6rem; height: 6rem;
  top: 36%; right: 1rem;
  background-image: url("../img/point-icon-02.png");
}
.point-item:nth-of-type(3):before {
  width: 7rem; height: 6rem;
  top: -1.5rem; left: 1rem;
  background-image: url("../img/point-icon-03.png");
}
@media (min-width:801px) {
  .point-item:nth-of-type(1):before {
    width: 8rem; height: 8rem;
    top: -3rem; left: auto; right: 2rem;
  }
  .point-item:nth-of-type(2):before {
    width: 8rem; height: 8rem;
    top: -3rem; right: auto; left: 3rem;
  }
  .point-item:nth-of-type(3):before {
    width: 8rem; height: 8rem;
    top: auto; left: auto;
    top: -3rem; right: 3rem;
  }
}

.point-image {
  line-height: 0;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.point-main {
  padding: 2rem 1rem;
}
.point-foot {
  text-align: center;
  margin: 1rem 0 0;
}
.point-foot .btn {
  border-color: #5591AF;
  background-color: #7DB0C9;
}
@media (min-width:801px) {
  .point-foot .btn {
    padding: 1rem 4rem;
  }
}

.point-head {
  margin: 0 0 .5rem;
}
.point-h {
  font-weight: bold;
  font-size: 1.2rem;
  color: #DC8C4B;
}
.point-h small {
  font-size: .8em;
}

.point-item:nth-of-type(2) {
  border-color: #7DB0C9;
}
.point-item:nth-of-type(2) .point-h {
  color: #5591AF;
}

.point-item:nth-of-type(3) {
  border-color: #E79DA6;
}
.point-item:nth-of-type(3) .point-h {
  color: #BE6E78;
}

@media (min-width:801px) {
  .point-item {
    display: flex;
    margin: 0 0 2rem;
  }
  .point-main {
    padding: 1rem;
  }
  .point-h {
    font-size: 1.6rem;
  }
  .point-image {
    flex: 0 0 48%;
    border-radius: 1rem 0 0 1rem;
  }
  .point-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }  
  .point-foot {
    text-align: center;
    margin: 2rem 0 0;
  } 
}



/* 吹き出し */
.bubble {
  font-weight: bold;
  margin: 1rem auto 0;
  padding: .7rem 1rem;
  border-radius: .5rem;
  width: fit-content;
  background-color: #FAE6D2;
}
.bubble::before {
  content: ""; display: block;
  width: 0; height: 0;
  position: absolute;
  border: .8rem solid transparent;
}
.point-item:nth-of-type(3) .bubble {
  background-color: #F4DEDE;
}

@media (max-width:800px) {
  .bubble::before {
    top: -1.5rem; left: 0; right: 0;
    margin: auto;
    border-bottom-color: #FAE6D2;
  }
  .point-item:nth-of-type(3) .bubble::before {
    border-bottom-color: #F4DEDE;
  }

}

@media (min-width:801px) {
  .bubble {
    margin: 1rem 0 0;
  }
  .bubble::before {
    top: .8rem; left: -1.5rem;
    border-right-color: #FAE6D2;
  }
  .point-item:nth-of-type(3) .bubble::before {
    border-right-color: #F4DEDE;
  }
}


/* POINT */
.ribbon {
  position: absolute;
  display: inline-block;
  padding: .5rem 3rem .5rem 1rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  background-image: url("../img/ribbon-orange.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top right;
}
.point-item:nth-of-type(2) .ribbon {
  background-image: url("../img/ribbon-blue.svg");
}
.point-item:nth-of-type(3) .ribbon {
  background-image: url("../img/ribbon-red.svg");
}
@media (max-width:800px) {
  .ribbon {
    top: -1rem; left: 0;
  }
}
@media (min-width:801px) {
  .ribbon {
    top: 1rem; left: 0;
    padding: .5rem 3rem .5rem 2rem;
    font-size: 1.2rem;
  }
  .point-main {
    padding: 4rem 2rem 2rem;
  }
}


/* 目指せる資格 */
.sect-certifs .container::after,
.sect-certifs .container::before {
  content: ""; display: block;
  width: 8rem; height: 8rem;
  position: absolute;
  z-index: 1;
  top: 0; left: 0;
  transform: translateY(-100%);
  background: url("../img/person-01.png") no-repeat top center;
  background-size: contain;
}

.sect-certifs .container::after {
  display: none;
}

.certifs-item {
  border-radius: 1rem;
  border: 1px solid #A0C97D;
  box-shadow: 0 3px 6px rgba(40, 59, 65, 0.2);
  overflow: hidden;
  margin: 0 0 1rem;
  position: relative;
  z-index: 10;
}
.certifs-h {
  color: #6CA343;
  background-color: #F1FAEB;
  text-align: center;
  padding: .4rem;
  border-bottom: 1px solid #A0C97D;
  line-height: 1;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  font-size: 1.2rem;
}
.certifs-h * {
  line-height: 1;
}
.certifs-h .tag {
  color: #655959;
  display: inline-block;
  font-size: 1rem;
  width: fit-content;
  padding: .3rem 1rem;
  line-height: 1;
  background-color: #fff;
  border-radius: 2rem;
  z-index: 10;
  margin: 0 0 0 .5rem;
}

.certifs-body .btn {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: auto;
  max-width: 100%;
  min-width: 0;
  margin: 1rem;
  border-color: #6CA343;
  background-color: #A0C97D;
}


.certifs-list li {
  line-height: 1.6;
  padding: 0 0 0 2rem;
  position: relative;
}
.certifs-list li::before {
  content: ""; display: block;
  width: 10px; height: 10px;
  position: absolute;
  top: .5rem; left: .5rem;
  background-color: #A0C97D;
  border-radius: 1rem;
}

@media (max-width:800px) {
  .certifs-body {
    display: flex;
    align-items: center;
    padding: 1rem;
    flex-wrap: wrap;
  }
  .certifs-item:nth-of-type(odd) .certifs-body {
    flex-direction: row-reverse;
  }
  
  .certifs-body p {
    flex: 1;
  }
  .certifs-body .btn {
    flex: 1 0 94%;
    margin: 1rem auto 0;
  }

  .certifs-body img {
    width: 110px; height: 110px;
    object-fit: cover;
    border-radius: 110px;
    margin: 0 1rem 0 0;
  }
  .certifs-item:nth-of-type(odd) .certifs-body img {
    margin: 0 0 0 1rem;
  }
  .certifs-h br {
    display: none;
  }
  .certifs-h small {
    display: inline-block;
    margin: 0 0 0 .5rem;
  }

  .sect-certifs {
    position: relative;
    padding: 2rem 0 1rem;
  }
  .sect-certifs::after {
    content: ""; display: block;
    width: 8rem; height: 8rem;
    position: absolute;
    bottom: 0;
    right: 2rem;
    z-index: 10;
    background: url("../img/person-02.png") no-repeat bottom right;
    background-size: contain;
  }
  
}

@media (min-width:801px) {

  .sect-certifs .container::after {
    display: block;
    left: auto;
    right: 0;
    background-image: url("../img/person-02.png");
  }

  .certifs-list {
    padding: 1rem;
  }

  .certifs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
  }
  .certifs-item {
    flex: 1 1 25%;
    margin: 0 1rem 2rem;
  }
  .certifs-item p {
    padding: .2rem .8rem .8rem;
  }
  .sect-certifs .container::after,
  .sect-certifs .container::before {
    width: 9rem;
    height: 9rem;
    left: 2rem;
    background-position: center top;
  }
  .sect-certifs .container::after {
    right: 2rem; left: auto;
  }

  .certifs-h {
    padding: .6rem;
  }
  .certifs-h .tag {
    width: fit-content;
    position: absolute;
    left: 0; right: 0; bottom: 0;
    margin: auto;
    padding: .3rem 1rem;
    border: 1px solid #6CA343;
    transform: translateY(50%);
  }
  .certifs-h small {
    flex: 0 0 100%;
  }

}




/* 時間割をチェック！ */
.sect-timetable {
  background-color: #F1FAEB;
  background-image: url("../img/bg.png");
  background-size: 400px;
  background-position: center;
}
.sect-timetable .head-ribbon {
  margin-bottom: 3rem;
}
.timetable {
  margin: 4rem auto 1rem;
  width: 98%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 1rem;
  border: 1px solid #A0C97D;
  position: relative;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
.timetable-h {
  width: fit-content;
  padding: .8rem 2rem .5rem 2.4rem;
  text-align: center;
  color: #fff;
  background-color: #A0C97D;
  line-height: 1;
  border-radius: 2rem 2rem 0 0;
  position: absolute;
  top: 0; left: 0; right: 0;
  margin: auto;
  transform: translateY(-100%);
}
.timetable-foot {
  text-align: center;
  margin: 2rem 0;
}
@media (min-width:801px) {
  .timetable {
    padding: 2rem;
    border-radius: 2rem;
  }
  .sect-timetable .head-ribbon {
    margin-bottom: 5rem;
  }
}
@media (max-width: 800px) {
  .timetable-scroll {
    overflow-x: scroll;
    margin: 0 .5rem 1rem;
  }
  
  .timetable-scroll::-webkit-scrollbar { height: 12px; width: 90%; border-radius: 100px; }
  .timetable-scroll::-webkit-scrollbar-thumb { background: #A0C97D; border-radius: 12px; }
  .timetable-scroll::-webkit-scrollbar-track { background: #EBF6E3; border-radius: 12px; }

  .timetable-scroll img {
    height: 40vh;
    width: auto;
    max-width: none;
    margin: 1rem;
  }
  .scroll-hint-icon {
    background-color: #655959;
  }
}

.timetable-scroll *,
.timetable-scroll,
.scroll-hint-icon-wrap {
  line-height: 0!important;
  word-wrap: normal!important;
}


/* スライダー */
.photo-slider {
  margin: 3rem 0 0 0;
}
.photo-slider img {
  border-radius: 1rem;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
.photo-slider-item {
  padding: 0 .5rem 1rem;
}
@media (min-width:801px) {
  .photo-slider-item {
    padding: 0 1rem 1rem;
  }
  .photo-slider {
    margin: 5rem 0 1rem;
  }
}



/* 学生の1日 */
.reason-h,
.student-h {
  font-weight: bold;  
  font-size: 1.2rem;
}
.reason-h strong,
.student-h strong {
  font-size: 1.4em;
  color: #6CA343;
}
.student-side {
  background-color: #EBF6E3;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #A0C97D;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
.student-main {
  position: relative;
}
.student-main img {
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
  border-radius: 1rem;
  margin: 0 0 1rem;
}
.student-comment {
  padding: 1rem;
  background-color: #E3F0F6;
  border-radius: 1rem;
  position: relative;
  margin: 1rem 0 0 ;
}
.student-comment::before {
  content: ""; display: block;
  width: 1rem; height: 1rem;
  background-color: #E3F0F6;
  position: absolute;
  left: 2rem; top: -.5rem;
  transform: rotate(45deg);
}
.student-comment::after {
  content: ""; display: block;
  width: 7rem; height: 6rem;
  position: absolute;
  right: 10px; top: 0;
  transform: translateY(-80%);
  background: url("../img/house.png") no-repeat bottom right;
  background-size: contain;
}
.student-comment-h {
  font-weight: bold;
  font-size: 1.1rem;
  color: #5591AF;
}
.student-comment p {
  line-height: 1.4!important;
}
@media (max-width:800px) {
  .student-side {
    margin: 1rem 0 0;
  }
  .student-head {
    padding-left: 1rem;
  }
}

@media (min-width:801px) {
  .student {
    display: flex;
    position: relative;
  }
  .student-main img {
    border-radius: 2rem;
    margin: 0 0 .5rem;
  }
  .student-main {
    flex: 0 0 45%;
    margin: 0 2rem 0 0;
  }
  .student-side {
    flex: 1;
    padding: 2rem;
    border-radius: 2rem;
    position: relative;
  }
  .student-side::after {
    content: ""; display: block;
    width: 50%; height: 120%;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%) translateX(40%);
    background: url("../img/photos.png") no-repeat center right;
    background-size: contain;
  }
  .day-text p {
    width: 20em;
  }
  .student-comment::after {
    width: 8rem; height: 7rem;
    transform: translateY(-60%) translateX(20%);
  }
}

@media (min-width:1040px) {
  .student-comment::after {
    width: 9rem; height: 7rem;
    transform: translateY(-80%);
  }
  .student-comment {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}


/* スケジュール */
.day li {
  display: flex;
  margin: 0 0 .5rem;
  padding: 0 0 .5rem;
  border-bottom: 1px solid #A0C97D;
}
.day li:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.day-time p {
  width: 4em;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  padding: .2rem;
  background-color: #6CA343;
  color: #fff;
}
.day-text {
  padding: 4px 0;
  margin: 0 0 0 10px;
}
.day-h {
  font-size: 1rem;
  font-weight: bold;
}
@media (min-width:801px) {
  .day-h {
    font-size: 1.2rem;
  }
  .day li {
    margin: 0 0 1rem;
    padding: 0 0 1rem;
  }
  .day-text {
    padding: .2rem;
    margin: 0 0 0 1rem;
  }
}


/* 私がAkitanに決めた理由 */
.reason {
  position: relative;
}
.reason-image {
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
  border-radius: 1rem;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.reason-content {
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
  border-radius: 1rem;
  background-color: #EBF6E3;
  padding: 1rem;
  z-index: 80;
  position: relative;
}
.reason-content::before {
  content: ""; display: block;
  width: 4rem; height: 4rem;
  position: absolute;
  top: -9rem; right: 0;
  background: url("../img/flower-01.png") no-repeat center;
  background-size: contain;
}
.reason:nth-of-type(2) .reason-content::before {
  background-image: url("../img/flower-02.png");
  top: -9rem; left: 0; right: auto;
}
.reason-strong {
  color: #6CA343;
  font-size: 1.1rem;
}
@media (max-width:800px) {
  .sect-reasons {
    padding-top: 0;
  }
  .reason {
    margin: 0 0 2rem;
  }
  .reason p {
    min-height: 4em;
  }
  .reason-image {
    width: 130px;
    position: absolute;
    top: 0; left: 1rem;
    z-index: 10;
  }
  .reason-strong {
    margin: 0 0 .5rem;
  }
  .reason:nth-of-type(2) .reason-image {
    left: auto; right: 1rem;
  }
  .reason-head {
    padding: 1rem 0 1rem 160px;
  }
  .reason:nth-of-type(2) .reason-head {
    padding: 1rem 160px 1rem 0;
    text-align: right;
  }
  .reason-content {
    z-index: 1;
    padding: 2rem 1rem 1rem;
  }
}
@media (min-width:801px) {
  .sect-reasons {
    padding-top: 0;
  }
  .reason-content::before {
    width: 8rem;
    height: 8rem;
    top: -6rem;
    right: 3rem;
  }
  .reason:nth-of-type(2) .reason-content::before {
    top: -6rem;
    left: 3rem; right: auto;
  }
  .reason {
    display: flex;
    align-items: center;
    margin: 0 0 2rem;
  }
  .reason-strong {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .reason:nth-of-type(2) {
    flex-direction: row-reverse;
  }
  .reason-content {
    border-radius: 2rem;
    padding: 2rem;
    margin: 0 0 0 -3rem;
  }
  .reason:nth-of-type(2) .reason-content {
    margin: 0 -3rem 0 0;
  }
  .reason-head {
    padding: 0 0 0 2rem;
    margin: 0 0 1rem;
  }
  .reason:nth-of-type(2) .reason-head {
    text-align: right;
    padding: 0 2rem;
  }
  .reason-image {
    flex: 0 0 38%;
    border-radius: 2rem;
  }
}


/* 就職 */
.sect-careers {
  background-color: #EBF6E3;
}
.sect-careers .sect-head {
  margin-bottom: 0;
}
.careers-main {
  background-color: #fff;
  padding: 1rem;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
  border-radius: 1rem;
}
.careers-h {
  font-size: 1.3rem; 
  margin: 0 0 1rem;
  line-height: 1;
}
.careers-list li {
  margin: 0 0 1rem;
  padding: 0 0 0 2.5rem;
  min-height: 3rem;
  background: url("../img/icon-01.png") no-repeat top 5px left;
  background-size: 1.5rem;
}
.careers-list li:nth-child(2) {
  background-image: url("../img/icon-02.png");
}

.career-title {
  color: #5591AF;
  font-size: 1rem;
  font-weight: bold;
}
.careers-list li:nth-child(2) .career-title {
  color: #BE6E78;
}

.careers-support {
  text-align: center;
}
.careers-support-sub {
  font-size: 1.2rem;
  display: inline-block;
  padding: .5rem 2rem;
  margin: 0 0 1rem;
  border-radius: .5rem;
  background-color: #A0C97D;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.careers-support-sub::before {
  content: ""; display: block;
  width: 1rem; height: 1rem;
  background-color: #A0C97D;
  position: absolute;
  bottom: -.4rem; left: 0; right: 0;
  margin: auto;
  transform: rotate(45deg);
}

@media (max-width:800px) {
  .sect-careers .sect-head {
    margin-bottom: 0;
  }
  .careers-side {
    z-index: 10;
    position: relative;
    margin: -1rem 0 -3rem;
  }
  .careers-main {
    z-index: 1;
    position: relative;
    margin: 0 0 2rem;
  }
}

@media (min-width:801px) {
  .careers {
    display: flex;
    align-items: center;
  }
  .careers-list li {
    padding: 0 0 0 3rem;
    background-size: 2rem;
  }
  .careers-side {
    flex: 0 0 30%;
    padding: 0 2rem 3rem 0;
  }
  .careers-main {
    padding: 2rem;
    border-radius: 2rem;
  }
  .careers-support {
    padding: 2rem 0;
    background-image: url("../img/career-01.png"), url("../img/career-02.png");
    background-position: center left 3rem, center right;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.btn-wh {
  background-color: #fff;
  color: #BE6E78;
  background-image: url("../img/chevron-red.svg") ;
}
@media (min-width:801px) {
  .btn-wh {
    padding: 1rem 4rem;
  }
  .btn-wh:hover {
    color: #BE6E78;
    transform: scale(1.1);
  }
}



/* 他の学科もチェック！ */
.courses-link {
  display: block;
  color: #655959;
  border-radius: 1rem;
  border: 1px solid #D8A8AE;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
.courses-item:nth-of-type(2) .courses-link {
  border-color: #7DB0C9;
}
.courses-item:nth-of-type(3) .courses-link  {
  border-color: #DB8D4A;
}
.courses-item p {
  line-height: 1.3;
  background-color: #F0E1E1;
  padding: .5rem;
  margin: 0 0 1rem;
}
.courses-item:nth-of-type(2) p {
  background-color: #E3F0F6;
}
.courses-item:nth-of-type(3) p {
  background-color: #FAE6D2;
}
.courses-image {
  line-height: 0;
}
.courses-item-h {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: #BE6E78;
  line-height: 1;
}
.courses-item:nth-of-type(2) .courses-item-h {
  color: #5591AF;  
}
.courses-item:nth-of-type(3) .courses-item-h {
  color: #DB8D4A;
}
.courses-item-h span {
  display: inline-block;
  margin: 1rem 0 0;
  padding: .4rem 1rem;
  font-size: 1rem;
  line-height: 1;
  min-width: 5em;
  background-color: #D8A8AE;
  color: #fff;
}
.courses-item:nth-of-type(2) span {
  background-color: #7DB0C9;
}
.courses-item:nth-of-type(3) span {
  background-color: #E8A670;
}
@media (max-width:800px) {
  .courses-item {
    margin: 0 0 1rem;
  }
  .courses-link {
    display: flex;
  }
  .courses-body {
    flex: 0 0 16rem;
    text-align: left;
  }
  .courses-item span {
    text-align: center;
  }
  .courses-image img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .courses-item:nth-of-type(1) .courses-image img {
    object-position: right 18% top 0;
  }
  .courses-item:nth-of-type(2) .courses-image img {
    object-position: right 30% top 0;
  }
  .courses-item:nth-of-type(3) .courses-image img {
    object-position: left 22% top 0;
  }
  .courses-item p, 
  .courses-item-h {
    padding: 1rem;
  }
}
@media (min-width:801px) {
  .courses {
    display: flex;
    margin: 0 -1rem;
  }
  .courses-item {
    margin: 0 1rem;
  }
}
@media (hover: hover) {
  .courses-item a:hover {
    color: #655959;
    transform: scale(1.1);
  }
}


/* CTA */
.cta {
  margin: 3rem 0;
  text-align: center;
}

.cta-btn {
  text-align: left;
  display: flex;
  align-items: center;
  min-height: 4rem;
  background-color: #F4DEDE;
  background-image: url("../img/chevron-red.svg");
  background-repeat: no-repeat;
  background-position: center right 2rem;
  padding: .8rem 1rem .8rem 6rem;
  border-radius: 1rem;
  border: 1px solid #BE6E78;
  margin: 0 0 1rem;
  color: #655959;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(134, 119, 107, 0.2);
}
.cta-btn small {
  font-size: .7em;
  font-weight: normal;
}
.cta-btn::before {
  content: ""; display: block;
  width: 5rem; height: 100%;
  background-color: #BE6E78;
  background-image: url("../img/cta-01.png");
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0; left: 0;
}

.cta-btn:nth-of-type(2):before {
  background-image: url("../img/cta-02.png");
}

@media (min-width:801px) {
  .cta {
    display: flex;
    margin: 4rem -1rem;
  } 
  .cta-btn {
    flex: 1;
    margin: 0 1rem;
    font-size: 1.8rem;
  }
}

@media (min-width:1040px) {
  .cta-btn::before {
    width: 6rem; height: 100%;
  }
  .cta-btn {
    padding: .8rem 1rem .8rem 8rem;
  }
}

@media (hover: hover) {
  .cta-btn:hover {
    transform: scale(1.1);
  }
}




/* 共通フッター */

.course-page-footer {
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-nav-pc {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav-list:not(:last-child) {
  margin-right: 50px;
}

.footer-nav-list .list dt a,
.footer-nav-list .list dt span {
  font-size: 18px;
}
.footer-nav-list .list dd {
  font-size: 12px;
  margin: 0;
}

.footer-info-menu li a {
  font-size: 19px;
}
.footer-info-menu li a span {
  font-size: 8px;
  margin-left: 5px;
}
.footer-info .footer-info-lower {
  font-size: 13px;
}
.footer-links-pc li a::before {
  font-size: 14px;
}
.footer .copyright small {
  font-size: 10px;
}

@media screen and (max-width: 1080px) {
  .full .footer-info-menu li {
    width: auto !important;
    flex: 0 0 50%;
    padding: 0 2%;
  }
}

@media screen and (max-width: 1000px) {
  .footer-links-pc li a {
    font-size: 12px;
  }
  .footer .copyright {
    padding: 1rem 0 15%;
  }
}

@media screen and (max-width: 750px) {
  .footer-nav-pc {
    display: none;
  }
  .footer-nav-sp li span {
    font-size: 18px;
  }
  .footer-nav-sp .nav-child li a {
    font-size: 14px;
  }
  .footer-links-sp li a {
    /* font-size: 12px; */
    font-size: 2.8vw;
  }
  .footer-links-sp li {
    flex: 0 0 50%;
    padding: 0 2%;
    width: auto;
  }
  .footer-info-banners {
    padding: 0 2% 2rem;
  }
  .footer-info-menu li {
    width: auto !important;
    min-width: auto !important;
    max-width: 100% !important;
  }
  .footer-info-menu li a {
    font-size: 14px;
  }
  .footer-info-menu li a span {
    font-size: 5px;
  }
  .footer .copyright {
    padding: 1rem 0 15%;
  }
  #page-top-btn a:before {
    font-size: 16px;
  }
}

@media screen and (min-width: 1001px) {
  .full .footer-links-pc li a {
    font-size: 16px;
  }
}




/* 改行 */
.br { display: inline-block ;}


/* スクロールバー（一部ブラウザーのみ） */
::-webkit-scrollbar { width:  12px; height: 100%; }
::-webkit-scrollbar-thumb { background: #D8A8AE; border-radius: 12px; }
::-webkit-scrollbar-track { background: #F0E1E1; border-radius: 12px; }