@charset "utf-8";
/* 基本要素 */
body {
  margin: 0;
  padding: 0;
  color: #333;
  }
a { color: #968362; }
a:visited { color: #a8a8a8; }
a:hover {
  color: #075C94;
  font-weight: bold;
  text-decoration: none;
}
a img { transition: opacity 0.2s linear; }
a:hover img { opacity: 0.7; }
h1, h2, h3, h4, h5, h6, h7, h8 { 
  margin-top: 0;
 }
p {
  margin-top: 0;
  line-height: 1.6;
}
img { 
  vertical-align: bottom;
 }
#main h1 {
  margin-top: 100px;
  padding: 13px 30px 10px 20px;
  font-size: 26px;
  color: #333;
  box-shadow: 4px 4px 5px rgba(100, 100, 100, .6);
  text-align: center;
}
.subtitle {
  font-size: 16px;
  color: #716961;
}
#main h2 {
  font-size: 20px;
  position: relative;
  color: #fff;
  padding:0.5em 0.5em 0.5em 1.8em;
  background-color: #075C94;
}
#main h2::after {
  position: absolute;
     top: 50%;
     left:0.7em;
     transform:translateY(-50%);
     content: '';
     width: 8px;
     height:8px;
}
#main h3 {
  font-size: 18px;
  color: #716961;
  border-left: solid 3px #075C94;
  margin-left: 20px;
  padding: 4px 9px 4px 14px;
}
#main h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-align: center;
    margin-top: 100px;
  }
  
  h4::before,
  h4::after {
    content: '';
    width: 3px;
    height: 40px;
    background-color: #499AD0;
  }
  
  h4::before {
    margin-right: 30px;
    transform: rotate(-35deg)
  }
  h4::after {
    margin-left: 30px;
    transform: rotate(35deg)
  }

#main h5 {
  font-size: 20px;
  color: #333;
}

#main h6 {
  border-bottom: solid 2px #0A7AC7;
  padding: 20px;
  margin: 30px;
  font-weight: 600;;
  font-size: 20px;
  color: #0A7AC7;
}

#main h7 {
    font-size: 25px;
    color: #fff;
    text-align: center;
}
#main h8 {
  font-size: 45px;
  color: #716961;
  text-align: center;
}
.box {
  float: left;
}

/* ヘッダー */
header {
  width: 100%;
  z-index: 9999;
  margin:  0;
  position: fixed;
  top: 0;
  text-align: center;
  background: #fff;
}
#top ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin: 0 100px;
  padding: 0;
}
header h1 {
  margin-top: 5px;
}
header #header_address {
  margin-top: 30px;
  font-weight: bold;
  color: #075C94;
  font-size: 20px;
  font-style: normal;
}
#header_address img {
  vertical-align: middle;
  margin-right: 10px;
}
header #header_contact {
  margin-top: 10px;
  border-radius: 5px;
  border: 6px double #075C94;
  background-color: #fff;
  padding: 10px;
}
header #header_contact a{
  text-decoration: none;
  color: #075C94;
}
header .head_childs .head_child2_2 {
    display: none;
  }
header .head_childs .head_child6 {
    display: none;
  }
/* ナビゲーション */
#navi {
  width: 85%;
  clear: both;
  overflow: hidden;
  margin: -10px auto 0;
}
 .navi_lists {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin:0 0 10px 0;
  padding: 0;
}
 .navi_lists li {
  width: 140px;
  flex: 1;
  margin-right: 3px;
  text-align: center;
}
 .navi_lists li:not(:last-child){
  border-right: 1px solid #a8a8a8;
}
 .navi_lists li a:hover::before{
  background-color: #fff;
 }
 .navi_lists li a {
  display: block;
  padding: 10px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s linear;
}
 .navi_lists li.current a { 
  background-color: #86caf7; 
  color: #fff;
}
 .navi_lists li a:hover { 
  background-color: #86caf7;
  color: #fff;
}
/* コンテンツ全体 */
#wrapper {
  width: 100%;
  margin: auto;
  overflow: hidden;
}
/* メイン部分 */
#main {
  width: 100%;
}

/* 問合せエリア */
#side_contact {
  width: 400px;
  height: 250px; 
  margin-bottom: 30px;
  margin: auto;
  clear: both
 }
#side_contact {
  border: 1px solid #0A7AC7;
  color: #7F7259;
  text-align: center;
 }
#side_content li{
  list-style: none;
}
#side_contact h2 {
  background-color: #0A7AC7;
  color: #fff;
  padding: 7px;
  font-size: 20px;
}
#side_contact address {
  margin-top: 30px;
  font-weight: bold;
  font-size: 20px;
  font-style: normal;
}
#side_contact address img {
  vertical-align: middle;
  margin-right: 5px;
}
#side_contact .contact_button {
  display: inline-block;
  background: #f1ede4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f1ede4));
  background: -webkit-linear-gradient(top,  #ffffff 0%,#f1ede4 100%);
  background: linear-gradient(to bottom,  #ffffff 0%,#f1ede4 100%);
  color: #333;
  padding: 10px;
  border: 1px solid #0A7AC7;
  border-radius: 5px;
  text-decoration: none;
}
#side_contact .contact_button:hover{
  background: #0A7AC7;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0A4CD1), color-stop(100%,#A8BEC7));
  background: -webkit-linear-gradient(top,  #0A4CD1 0%,#A8BEC7 100%);
  background: linear-gradient(to bottom,  #0A4CD1 0%,#A8BEC7 100%);
  color: #fff;
}

/* フッター */
footer {
  background-color: #fff;
  text-align: center;
  margin-top: 100px;
}
footer #footertext {
  color: #333;
}
footer #footertext ul{
  list-style: none;
  display: flex;
  width: 900;
  justify-content: space-evenly;
}
footer #footertext li{
  width: 450px;
  margin: 0px;
  float: left;
}
footer p {
  clear: both;
  padding: 8px 0;
  color: #333;
  text-align: center;
}

/* トップページ */
/* ビジュアルメッセージ */
#message0 {
  background: linear-gradient(to right, rgba(255,255,255, 0.6),rgba(255, 255, 255, 0)),url('../images/top1.jpg') no-repeat right top / 70vw auto;
  margin-top: 21vh;
  padding: 5.5rem 1rem 3rem;
}
#message0 h5{
  margin-top: -5vh;
  margin-left: 8vw;
  font-size: 3vw;
  background: none;
}

#message0 p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 1.5vw;
}


/* 学院ニュース */
#picup_news {
  width: 100%;
  background-color: #cdeffa;
}
#picup_news p {
  clear: both;
  padding: 8px 0;
  color: #333;
  text-align: center;
}
#picup_news .lead {
  font-size: 20px;
}
#nyuushi-content {
  width: 100%;
  clear: both;
  overflow: hidden;
  list-style: none;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 0;
}
#nyuushi-content ul {
  text-align: center;
}
#nyuushi-content li {
  width: 250px;
  margin: 20px;
  text-align: center;
}
#nyuushi-content li p {
  font-size: 18px;
  text-align: left;
}
.c-nyuushi {
  margin-top: 20px;
  background-color: #c4c4c4;
  box-shadow: 4px 4px 5px rgba(100, 100, 100, .6);
}

/*　聖ブリージットの特徴 */
#about_brigits {
   width: 100%;
   clear: both;
   overflow: hidden;
   list-style: none;
   margin: auto;
   display: flex;
   justify-content: center;
   padding: 0;
}
#about_brigits ul{
  list-style: none;
  background-color: #f8dad7;
  width: 300px;
  height: auto;
  text-align: left;
  float: left;
  margin: 10px;
  box-shadow: 4px 4px 5px rgba(100, 100, 100, .6);
}
#about_brigits li{
  width: 250px;
  float: left;
}
#about_brigits img{
  width: 250px;
  height: auto;
  float: left;
  margin-bottom: 20px;
}
#about_brigits p{
  color: rgb(7, 67, 51);
  text-align: center;
}
#midashi p{
  font-size: 30px;
  font-weight: 900;
}

/* こちらへボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-border {
  border: 2px solid #333;
  border-radius: 0;
  background: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

a.btn-border:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #333;
}
a.btn-border:hover {
  color: #fff;
  background: #0A7AC7;
}
a.btn-border:hover:before {
  background: #fff;
}

/* コース紹介 */
#select-content {
  width: 100%;
  clear: both;
  overflow: hidden;
  list-style: none;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 0;
}
#select-content ul {
  text-align: center;
}
#select-content li {
  width: 250px;
  margin: 20px;
  text-align: center;
}
#select-content li p {
  font-size: 18px;
  text-align: left;
}
.c-manabi {
  margin-top: 20px;
  background-color: #c4c4c4;
  padding: 10px;
  box-shadow: 4px 4px 5px rgba(100, 100, 100, .6);
}

/* 無料体験授業 */
.taiken {
  text-align: center;
  width: 100%;
}
#taiken ul{
  background-color: #e3f1c1;
  text-align: center;
  list-style: none;
  padding: 0;
}
#taiken ul li{
  margin: auto;
  text-align: center;
}

/* 続きを読む */
.read-more-2 {
    position: relative;
}
.read-more-2 p {
    display: -webkit-box;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 開く前に見せたい行数を指定 */
}
.read-more-2:has(:checked) p {
    display: block;
}
.read-more-2 p::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsl(40, 100%, 90%, .9) 50%, hsla(40%, 100%, 90%, .9) 0, #F6EABF);
    content: '';
}
.read-more-2:has(:checked) p::after {
    content: none;
}
.read-more-2 label {
    display: flex;
    align-items: center;
    gap: 0 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #0A7AC7;
    font-size: 1em;
}
.read-more-2 label:hover {
    color: #7F7259;
    text-decoration: underline;
    cursor: pointer;
}
.read-more-2:has(:checked) label {
    display: none;
}
.read-more-2 label::after {
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #b6bdc3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.read-more-2 input {
    display: none;
}

/* 無限ループ画像 */
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 0;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
  margin-left: 10px;
  text-align: center;
}
.scroll-infinity__item>img {
  width: 100%;
}

/* 入校ガイド */
/* 入校案内 */
#guide {
  margin-top: 50px;
}
.taiken2 {
  text-align: center;
  width: 100%;
}
#taiken2 ul{
  background-color: #F6EABF;
  text-align: center;
  list-style: none;
  padding: 10px;
}
#taiken2 ul h1{
 width: 100%;
 padding: 0;
 margin-top: 10px;
 margin-bottom: 50px;
}
#taiken2 ul li{
  margin: auto;
  text-align: center;
}
/* アコーディオンボタン */
.accordion-002 {
    max-width: 780px;
    margin: auto;
    margin-bottom: 20px;
    border: 2px solid #2589d0;
    border-radius: 5px;
}

.accordion-002 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%232589d0%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 22px;
    background-repeat: no-repeat;
    color: #2589d0;
    font-weight: 600;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
    display: none;
}

.accordion-002 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-002[open] summary::after {
    transform: rotate(225deg);
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
}


/* 過去の実績 */
#jisseki {
  margin-top: 0px;
}

/* 生徒作品 */
#sakuhin_list_top ol{
  list-style: none;
  display: flex;
  justify-content: center;
}
#sakuhin_list_top ol li{
  margin: 30px;
}

/* よくある質問 */
#faq {
  width: 100%;
  margin: auto;
}
.qa-1 {
    width: 780px;
    margin-bottom: 7px;
    border: 1px solid #d6dde3;
    border-radius: 5px;
    margin: 30px auto;
}
.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #5e5e5e;
    font-weight: 600;
    cursor: pointer;
}
.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}
.qa-1 summary::before {
    color: #75bbff;
    content: "Q";
}
.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #5e5e5eb3;
    border-right: 3px solid #5e5e5eb3;
    content: '';
    transition: transform .5s;
}
.qa-1[open] summary::after {
    transform: rotate(225deg);
}
.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}
.qa-1[open] p {
    transform: none;
    opacity: 1;
}
.qa-1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

/* アクセス */
#access {
  margin-top: 50px;
 }

 .access1 {
  width: 980px;
  margin: auto;
  text-align: center;
 }

/* 学院概要 */
/* ビジュアルメッセージ */
#message {
  background: url('../images/gakuin1.jpg') no-repeat right top / 80vw auto;
  margin-top: 20vh;
  padding: 5.5rem 1rem 3rem;
}
#message h5{
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 3.5vw;
  background: none;
}
#message p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 1.5vw;
}
/* 学院沿革 */
#enkaku-text{
  margin-top: 50px;
  margin-bottom: 50px;

}
#enkaku-text td{
  padding: 10px;
  text-align: left;
}
#enkaku-img img{
  margin: auto;
  display: block;
}

/* 講師紹介 */
#koushi table,#koushi1 table,#koushi2 table,#koushi3 table,#koushi4 table,#koushi5 table{
  width: 780px;
}
#koushi th,#koushi1 th,#koushi2 th,#koushi3 th,#koushi4 th,#koushi5 th{
  width: 280px;
  padding: 10px 30px;
  border-right-color: #716961;
  border-right-style: solid;
  text-align: left;
  font-weight: normal;
 }
 #koushi td,#koushi1 td,#koushi2 td,#koushi3 td,#koushi4 td,#koushi5 td{
  width: 500px;
  padding: 0px 30px;
}

/* 各コース紹介 */
/* 各コースについて */
#about-course {
  width: 780px;
  margin: auto;
}
#about-course p{
  margin-top: 50px;
  text-align: center;
}
#about-course p img{
  margin-top: 50px;
  text-align: center;
  width: 80%;
}

/* 指導講師 */
#koushi {
  width: 90%;
  margin-top: 80px;
  margin-left: 50px;
  margin-bottom: 80px;
}
#koushi th{
  width: 280px;
  padding: 10px 30px;
  border-right-color: #716961;
  border-right-style: solid;
  text-align: left;
  font-weight: normal;
 }
#koushi td{
  width: 500px;
  padding: 0px 30px;
}
#koushi #c-button{
  display: block;
  margin: 10px;
  width: 150px;
  padding: 10px;
  float: right;
  background-color: #0A7AC7;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}

/* 講師作品 */
.lecturer_works {
  width: 100%;
  clear: both;
  overflow: hidden;
  list-style: none;
  margin: auto;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  padding: 0;
}
.lecturer_works li{
  margin: 30px;
}

/* 各コース実績 */
#cource-jisseki {
  width: 780px;
  margin: 20px auto;
}
#cource-jisseki p{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* 各コース作品はこちら */
#sakuhin {
  width: 780px;
  margin: auto;
  margin-bottom: 100px;
}
#sakuhin img{
  margin-left: 30px;
}

/* 絵画・デッサンコース */
/* ビジュアルメッセージ */
#message-kaiga {
  background: url('../images/kaiga1.jpg') no-repeat right top / 80vw auto;
  margin-top: 20vh;
  padding: 5.5rem 1rem 3rem;
}
#message-kaiga h5{
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 3.5vw;
  background: none;
}
#message-kaiga p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 1.5vw;
}

/* 漫画コース */
/* ビジュアルメッセージ */
#message-manga {
  background: url('../images/manga1.jpg') no-repeat right top / 80vw auto;
  margin-top: 20vh;
  padding: 5.5rem 1rem 3rem;
}
#message-manga h5{
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 3.5vw;
  background: none;
}
#message-manga p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 1.5vw;
}

/* イラストコース */
/* ビジュアルメッセージ */
#message-illust {
  background: url('../images/illust2.jpg') no-repeat right top / 80vw auto;
  margin-top: 20vh;
  padding: 5.5rem 1rem 3rem;
}
#message-illust h5{
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 3.5vw;
  background: none;
}
#message-illust p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 8vw;
  font-size: 1.5vw;
}

/* 各作品ページ */

#sakuhin_list {
  width: 100%;
  clear: both;
  overflow: hidden;
  margin: 16px auto;
}
#sakuhin_list h1 {
margin-top: 150px;
}
#sakuhin_list h6 {
text-align: center;
}
.student_works  {
  width: 980px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: auto;
  padding: 10;
}
.student_works .student_work {
  width: 200px;
  margin: 20px;
}

/* お問い合わせページ */
#contact {
  margin-top: 150px;
  width: 100%;
  text-align: center;
}
#formWrap .formTable {
  margin: auto;
}
#formWrap .formTable tr {
  background: #f1ede4;
  border: 1px solid #ddd;
  border-top: 0;
}
#formWrap .formTable tr th,
#formWrap .formTable tr td {
  padding: 10px;
  border-top: 1px solid #ddd;
}
#formWrap .formTable tr th {
  width: 10em;
  float: left;
  clear: both;
  font-weight: bold;
}
#formWrap .formTable tr td {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: 0;
}
.must { color: #f00; }
#formWrap .formTable #name {
  width: 15em;
  padding: 3px;
}
#formWrap .formTable #tel {
  width: 15em;
  padding: 3px;
}
#formWrap .formTable #postal-code {
  width: 15em;
  padding: 3px;
}
#formWrap .formTable #address {
  width: 30em;
  padding: 3px;
}
#formWrap .formTable #Email {
  width: 25em;
  padding: 3px;
}
#formWrap .formTable #age {
  width: 5em;
  padding: 3px;
}
#formWrap .formTable #detail {
  width: 36em;
  height: 15em;
}
#formWrap #submit_button_cover {
  text-align: center;
  margin-top: 20px;
}

 /* プライバシーポリシー */
#privacypolicys {
  margin-top: 150px;
}
#privacypolicy h1{
  width: 100%;
  margin: auto;
  text-align: center;
}
#privacypolicy h6{
  width: 100%;
  margin: 30px auto;
  text-align: center;
}
#privacypolicy p{
  width: 780px;
  margin: auto;
  margin-top: 30px;
  text-align: center;
}
#mokuteki p{
  width: 780px;
  text-align: left;
  margin-left: 300px;
}

/* ---------------------------------
メディアクエリー
--------------------------------- */
@media screen and (max-width : 1020px) and (min-width : 768px){
  /* 基本要素 */
  img {
    max-width: 100%;
  }
  /* Layout */
  header,
  footer,
  #global_navi,
  #topsidebar,
  #sidebar,
  #wrapper,
  #main-navi,
  #main_visual,
  #course_navi,
  #Characteristic,
  #Student_work,
  #sakuhin_list,
  #process,
  #commute .box,
  #formWrap,
  #modal,
  #landing
	{
    width: 100%;
  }

}

@media screen and (max-width : 768px) and (min-width : 480px){
/* 基本要素 */
  img {
    max-width: 100%;
  }
  /* Layout */
  header,
  footer,
  #global_navi,
  #topsidebar,
  #sidebar,
  #wrapper,
  #main-navi,
  #main_visual,
  #course_navi,
  #Characteristic,
  #Student_work,
  #sakuhin_list,
  #process,
  #commute .box,
  #formWrap,
  #modal,
  #landing
	{
    width: 100%;
  }
/* ヘッダー */
  header {
	  margin: auto;
    margin-top: 0px;
    height: 200px;
  }
  #top .head_childs {
    width: 90%;
    margin: auto;
    text-align: center;
  }
  #top .head_childs .head_child4 {
    display: none;
  }
   #top .head_childs .head_child5 {
    margin: 20px;
  }
  #top .head_childs .head_child3 {
    display: none;
  }
   #top .head_childs .head_child6 {
    display: none;
  }

  /* トップページパーツ */
  #message0 {
    margin-top: 38vh;
    margin-bottom: 0;
  }
  #message0 h5{
    margin-left: 5vw;
    margin-top: -8vh;
    font-size: 2.8vw;
  }  
  #message0 p{
    margin-left: 5vw;
    font-size: 1.8vw;

  }
  /* おしらせ */
  #brigit_news {
    margin-top: -50px;
  }
  #picup_news ul{
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
  #picup_news li{
    width: 100%;
    margin: auto;
    text-align: center;
}
  #picup_news a img{
    float: none;
    clear: both;
    margin: auto;
    margin-bottom: 10px;
}

  /* 聖ブリージットの特徴 */
#about_brigits {
   width: 90%;
   clear: both;
   display: block;
   margin: 0 auto;
}
#about_brigits ul{
   width: 90%;
   padding: 15px;
   text-align: center;
}
#about_brigits li{
  width: 100%;
  float: none;
  clear: both;
  display: block;
  margin: auto;
  text-align: center;
}
#about_brigits img{
  width: 70%;
  clear: both;
  float: none;
  display: flex;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}
#midashi p{
  font-size: 24px;
  font-weight: 800;
}

/* コース紹介 */
#select-content {
  width: 100%;
  clear: both;
  display: block;
  margin: auto;
  column-count: 2;
  text-align: center;
}
#select-content li {
  width: 250px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

/* 無限ループ */
.scroll-infinity__item {
  width: calc(200vw / 6);
  margin-left: 10px;
  margin-bottom: -40px;
  text-align: center;
}

/* 料金表 */
.box1{
  width: 80%;
}

/* 過去の実績 */
#jisseki1 table{
  width: 80%;
}

/* よくある質問 */
.qa-1 {
    width: 90%;
}

/* アクセス */
#access {
  margin-top: 0;
 }

 .access1 {
  width: 90%;
 }

 /* 学院概要 */
/* ビジュアルメッセージ */
#message {
  background: url('../images/gakuin1.jpg') no-repeat right top / 100vw auto;
  margin-top: 30vh;
  padding: 5.5rem 1rem 3rem;
}
#message h5{
  margin-top: -1vh;
  margin-left: 5vw;
  font-size: 3.5vw;
  background: none;
}
#message p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 5vw;
  font-size: 2vw;
}
/* 学院沿革 */
#history {
  margin-top: -50px;
}

/* 各コース紹介 */
/* 各コースについて */
#about-course {
  width: 90%;
  margin: auto;
}

/* 各コース実績 */
#cource-jisseki {
  width: 90%;
  margin: 0 auto;
}
#cource-jisseki p{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* 各コース作品はこちら */
#sakuhin {
  width: 90%;
}

/* 絵画・デッサンコース */
/* ビジュアルメッセージ */
#message-kaiga {
  background: url('../images/kaiga1.jpg') no-repeat right top / 100vw auto;
  margin-top: 30vh;
  padding: 5.5rem 1rem 3rem;
}
#message-kaiga h5{
  margin-top: 0vh;
  margin-left: 5vw;
  font-size: 3.5vw;
  background: none;
}
#message-kaiga p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 5vw;
  font-size: 2vw;
}

/* 漫画コース */
/* ビジュアルメッセージ */
#message-manga {
  background: url('../images/manga1.jpg') no-repeat right top / 90vw auto;
  margin-top: 35vh;
  margin-right: -5vw;
  padding: 5.5rem 1rem 3rem;
}
#message-manga h5{
  margin-top: -10vh;
  margin-left: 5vw;
  font-size: 3.5vw;
  background: none;
}
#message-manga p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 5vw;
  font-size: 2vw;
}

/* イラストコース */
/* ビジュアルメッセージ */
#message-illust {
  background: url('../images/illust2.jpg') no-repeat right top / 90vw auto;
  margin-top: 35vh;
  margin-right: -5vw;
  padding: 5.5rem 1rem 3rem;
}
#message-illust h5{
  margin-top: -5vh;
  margin-left: 5vw;
  font-size: 3.5vw;
  background: none;
}
#message-illust p{
  width: 60vw;
  margin-top: 0vh;
  margin-left: 5vw;
  font-size: 2vw;
}
}
 /* プライバシーポリシー */
#privacypolicys {
  margin-top: 200px;
}
#mokuteki p{
  width: 780px;
  text-align: left;
  margin-left: 150px;
}

@media screen and (max-width : 480px){
  /* 基本要素 */
  img {
    max-width: 100%;
  }
  /* Layout */
  header,
  footer,
  #top-head,
  #global_navi,
  #topsidebar,
  #sidebar,
  #wrapper,
  #main-navi,
  #main_visual,
  #course_navi,
  #Characteristic,
  #Student_work,
  #sakuhin_list,
  #process,
  #commute .box,
  #formWrap,
  #modal,
  #landing
	{
    width: 100%;
  }

  /* ヘッダー */
  header {
    margin-top: 0px;
    height: 70px
  }
  #top .head_childs {
    width: 100%;
    flex-wrap: wrap;
    align-items: start;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
  
  #top .head_childs .head_child2 {
    display: none;
  }
   #top .head_childs .head_child2_2{
    display: inline;
    height: 45px;
  }
  #top .head_childs .head_child3 {
    display: none;
  }
  #top .head_childs .head_child4 {
    display: none;
  }
  #top .head_childs .head_child5 {
    display: none;
  }
  #top .head_childs .head_child6 {
    display: inline;
    clear: both;
    margin: 0;
    text-align: center;
	  width: 50px;
    padding-bottom: 0;
    margin-right: 10px;
	}

  #modal-overlay {
  background-color: #333;
  display: none;
  height: 90%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
/* ハンバーガーアイコン */
.icon-hamburger {
  background: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-left: 20px;
  width: 50px;
  height: 50px;
  position: relative;
  
	display: none;
  text-align: center;
}

.icon-hamburger span {
  background: #075C94;
  display: block;
  height: 16%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 84%;
}

.icon-hamburger span::before,
.icon-hamburger span::after {
  background: #075C94;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  width: 100%;
}

.icon-hamburger span::before {
  margin-top: -38%;
}

.icon-hamburger span::after {
  margin-top: 19%;
}

.icon-hamburger {
  display: inline-block;
}

/* ナビゲーション */
#navi ul{
  background: #333;
  display: none;
  height: auto;
  top: 10%;
  left: 30%;
  position: fixed;
  width: 40%;
  z-index: 100;
}
#navi ul li a {
  border-bottom: 1px solid #ccc;
  border-right: none;
}
#navi ul li:last-child a {
  border-bottom: none; 
}

/* メイン部分 */
#main {
  width: 100%;
  box-sizing: border-box;
}
#main figure {
  text-align: center;
}

/* 問い合わせボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.0rem;
  font-weight: 600;

}

/* トップページパーツ */
#message0 {
  margin-top: 15vh;
  margin-bottom: 0;
}
#message0 h5{
  margin-top: -12vh;
  margin-left: 0vw;
  font-size: 3.5vw;
}  
#message0 p{
  margin-top: -1vh;
  margin-left: 0vw;
  font-size: 1.8vw;
  width: 100%;
}

/* お知らせ */
#brigit_news {
  margin-top: -100px;
}
#brigit_news h4{
  font-size: 20px;
}
#picup_news {
  width: 100%;
  height: 100%;
}
#picup_news h5{
  margin: 20px;
}
#picup_news ul{
   width: 100%;
   margin: 0;
   padding: 0;
}
#picup_news li{
  width: 90%;
  margin: auto;
  float: none;
  clear: both;
  display: block;
  text-align: center;
}
#picup_news img{
  width: 90%;
  margin: auto;
  float: none;
  display: block;
  text-align: center;
}

/* 入試紹介 */
#nyuushi-content {
  width: 100%;
  clear: both;
  display: block;
  margin: auto;
  column-count: 1;
  text-align: center;
}
#nyuushi-content li {
  width: 250px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
  /* 聖ブリージットの特徴 */
#about_brigit {
  margin-top: -50px;
}
#about_brigit h4{
  font-size: 18px;
}
#about_brigits {
  width: 85%;
  clear: both;
  display: block;
  margin: 0 auto;
}
#about_brigits ul{
   width: 90%;
   padding: 15px;
   text-align: center;
}
#about_brigits li{
  width: 100%;
  float: none;
  clear: both;
  display: block;
  margin: auto;
  text-align: center;
}
#about_brigits img{
  width: 70%;
  clear: both;
  float: none;
  display: flex;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0;
}
#midashi p{
  font-size: 18px;
  font-weight: 700;
}

/* コース紹介 */
#select-content {
  width: 100%;
  clear: both;
  display: block;
  margin: auto;
  column-count: 1;
  text-align: center;
}
#select-content li {
  width: 250px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}

/* 無料体験授業 */
#taiken h4{
  font-size: 20px;
}
#taiken ul li{
  width: 90%;
}

/* 無限ループ */
.scroll-infinity__item {
  width: calc(200vw / 6);
  margin-left: 10px;
  margin-bottom: -40px;
  text-align: center;
}
.scroll-infinity__item>img {
  width: 100%;
}

/* 入校ガイド */
#guide h4{
  font-size: 20px;
}

/* 過去の実績 */
#jisseki1 table {
  width: 80%;
}

/* 生徒作品 */
#sakuhin_list_top {
  width: 100%;
  clear: both;
  display: block;
  margin: auto;
  column-count: 2;
  text-align: center;
  }
#sakuhin_list_top ol {
  display: block;
  justify-content: center;
  padding: 0;
}
#sakuhin_list_top ol li {
  width: 100%;
  display: block;
  margin: auto;
  margin-bottom: 30px;
  justify-content: center;
}

/* よくある質問 */
.qa-1 {
    width: 90%;
}

/* アクセス */
#access {
  margin-top: 0;
 }
 .access1 {
  width: 90%;
  margin: auto;
  text-align: center;
 }

/* 問合せエリア */
#side_content {
  width: 100%;
  margin-bottom: 50px;
}
#side_content ul {
  padding: 0;
  margin: auto;
  text-align: center;
}
#side_content #side_contact {
  display: block;
  width: 90%;
  margin: auto;
  text-align: center;
}

 /* 学院概要 */
/* ビジュアルメッセージ */
#message {
  background: url('../images/gakuin1.jpg') no-repeat right top / 100vw auto;
  margin-top: 10vh;
}
#message h5{
  margin-top: -11vh;
  margin-left: 0vw;
  font-size: 4vw;
  background: none;
}
#message p{
  width: 60vw;
  margin-top: -2vh;
  margin-left: 0vw;
  font-size: 2vw;
}

/* 学院沿革 */
#history {
  margin-top: 0;
}
#enkaku-text {
  width: 80%;
}
#enkaku-img img{
  width: 80%;
}

/* 各コース紹介 */
/* 各コースについて */
#about-course {
  width: 90%;
  margin: auto;
}

/* 各コース実績 */
#cource-jisseki {
  width: 90%;
  margin: 0 auto;
}
#cource-jisseki p{
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* 講師作品 */
.lecturer_works {
  width: 100%;
  display: block;
  justify-content: center;
  padding: 0;
}
.lecturer_works li {
  width: 300px;
  margin: 30px auto;
  text-align: center;
}

/* 各コース作品はこちら */
#sakuhin {
  width: 90%;
}

/* 絵画・デッサンコース */
/* ビジュアルメッセージ */
#message-kaiga {
  background: url('../images/kaiga1.jpg') no-repeat right top / 80vw auto;
  margin-top: 10vh;
  padding: 5.5rem 1rem 3rem;
}
#message-kaiga h5{
  margin-top: -11vh;
  margin-left: 0vw;
  font-size: 4vw;
  background: none;
}
#message-kaiga p{
  width: 60vw;
  margin-top: -2vh;
  margin-left: 0vw;
  font-size: 2vw;
}

/* 漫画コース */
/* ビジュアルメッセージ */
#message-manga {
  background: url('../images/manga1.jpg') no-repeat right top / 80vw auto;
  margin-top: 10vh;
  padding: 5.5rem 1rem 3rem;
}
#message-manga h5{
  margin-top: -13vh;
  margin-left: 0vw;
  font-size: 4vw;
  background: none;
}
#message-manga p {
  width: 60vw;
  margin-top: -2vh;
  margin-left: 0vw;
  font-size: 2vw;
}

/* イラストコース */
/* ビジュアルメッセージ */
#message-illust {
  background: url('../images/illust2.jpg') no-repeat right top / 80vw auto;
  margin-top: 10vh;
  padding: 5.5rem 1rem 3rem;
}
#message-illust h5 {
  margin-top: -13vh;
  margin-left: 0vw;
  font-size: 4vw;
  background: none;
}
#message-illust p {
  width: 60vw;
  margin-top: -2vh;
  margin-left: 0vw;
  font-size: 2vw;
}

  /* 生徒作品 */
   #sakuhin_list {
   width: 400px;
	 display: block;
   margin: auto;
 	}
  #sakuhin_list li {
   width: 100%;
   margin-left: 50px;
   margin-top: 15px;
   margin-bottom: 15px;
  }

  /* メールフォーム */
  #contact {
    margin-top: 10vh;
  }
  .lead {
    width: 80%;
    margin: auto;
    text-align: center;
  }
  #formWrap{
    width: 80%;
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
  }
   #formWrap p{
    width: 80%;
    margin: auto;
    text-align: center;
  }
  #formWrap .formTable{
    margin:0 auto;
    width: 95%;
	  clear: both;
	  border:none;
	  padding: 10px;
	}
  #formWrap .formTable th,
  #formWrap .formTable td {
	display:block;
	float: none;
  clear: both;
  }
  #formWrap .formTable th {
	clear: both;
	width: 90%;
  }
  #formWrap .formTable td {
	clear: both;
	width: auto;
  }
  #formWrap .formTable #address {
	width:95%;
	padding:5px;
	font-size:110%;
	display:block;
}
  #formWrap .formTable #Email {
	width:95%;
	padding:5px;
	display:block;
}
  #formWrap .formTable #detail {
	width:95%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:95%;
	height:40px;
}

/* プライバシーポリシー */
#privacypolicys {
  margin-top: 15vh;
}
#privacypolicy h1{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}
#privacypolicy h6{
  width: 80%;
  margin: auto;
  margin-top: 50px;
  text-align: center;
}
#privacypolicy p{
  width: 80%;
  margin: auto;
  margin-top: 30px;
  text-align: center;
}
#mokuteki p{
  width: 80%;
  text-align: left;
  margin-left: 10vw;
  margin-top: 50px;
}
	
  /* フッター */
  footer {
    margin: 0px;
    text-align: center;
  }
  footer #footertext ul{
    width: 100%;
    display: block;
    clear: both;
    float: none;
    margin: auto;
    text-align: center;
    padding: 0;
  }
  footer #footertext li{
    width: 100%;
    font-size: 0.9em;
    clear: both;
    display: block;
    float: none;
    margin: auto;
    text-align: center;
  }
  footer #map {
    width: 100%;  
    height: 100%;
    margin: auto;
    clear: both;
    display: block;
    float: none;
    text-align: center;
  }
}