@charset "utf-8";

/**
 *
 *  サイト共通
 *
 */

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

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

nav ul {
  list-style: none;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style-type: none;
  list-style-position: outside;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  vertical-align: top;
  border: 0;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body {
  color: #231815;
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
}

/* fonts */
.serif {
  font-family: "Noto Serif JP", "YuMincho", "Yu Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a {
  outline: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: #333;
}

.ophover,
.ophover-group a {
  transition: opacity ease 0.3s;
}

.ophover:hover,
.ophover-group a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp {
  display: none;
}

/* box-sizing ---*/
header,
footer,
section,
div,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd,
th,
td,
a,
span,
input,
text-area,
select {
  box-sizing: border-box;
}

/*--------------------------------------------------------------------------
   loading
---------------------------------------------------------------------------*/
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100000;
}

.loading-cont {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.square {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: url(../image/img_load.svg) no-repeat;
}

.loading-letter .letter {
  display: inline;
  animation-name: loadingF;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

.l-1 {
  animation-delay: 0.48s;
}

.l-2 {
  animation-delay: 0.6s;
}

.l-3 {
  animation-delay: 0.72s;
}

.l-4 {
  animation-delay: 0.84s;
}

.l-5 {
  animation-delay: 0.96s;
}

.l-6 {
  animation-delay: 1.08s;
}

.l-7 {
  animation-delay: 1.2s;
}

.l-8 {
  animation-delay: 1.32s;
}

.l-9 {
  animation-delay: 1.44s;
}

.l-10 {
  animation-delay: 1.56s;
}

.loading-roll {
  margin-bottom: 20px;
}

.loading-roll .square {
  animation: loadingG 1.5s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
}

@keyframes loadingF {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes loadingG {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(70px, 0) rotate(360deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page {
  overflow: hidden;
}

.inner {
  max-width: 1450px;
  padding: 0 15px;
  margin: 0 auto;
}

.layout-box {
  display: flex;
  justify-content: space-between;
}

/* ::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: rgba(232, 232, 232, 1);
}
::-webkit-scrollbar-thumb {
  background-color: rgba(201, 201, 201, 1);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
} */

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
#Wrapper {
  margin-left: 330px;
}

@media screen and (max-width: 1400px) {
  #Wrapper {
    margin-left: 0;
  }
}

/* ボタン
-----------------------------------------------------------------*/

/* btn_round */
.btn_round a,
.btn_round span {
  display: block;
  margin: 0 auto;
  max-width: 380px;
  width: 100%;
  height: 70px;
  line-height: 68px;
  border-radius: 35px;
  background: url(../image/arw_next_circle_w.svg) no-repeat right 18px center #7fbe26;
  background-size: 20px auto;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  font-weight: 800;
  transition: all 200ms linear;
}

/* btn_line_round */
.btn_line_round a,
.btn_line_round span {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: 70px;
  line-height: 68px;
  border: 2px solid;
  border-radius: 35px;
  background: url(../image/arw_circle_bk.svg) no-repeat right 30px center;
  background-size: 20px auto;
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.btn_line_round._w a,
.btn_line_round._w span {
  border-color: #fff;
  background-image: url(../image/arw_next_circle_w.svg);
  color: #fff;
  position: relative;
  transition: 0.2s;
  overflow: hidden;
}

/* タイトル
-----------------------------------------------------------------*/
/* page-ttl */
.page-ttl {
  position: relative;
  height: 280px;
}

.page-ttl::after {
  content: "";
  /* background: rgba(0, 0, 0, 0.4); */
  background: rgba(100, 100, 50, 0.4);
  width: 100%;
  height: 100%;
  display: block;
}

.page-ttl h1 {
  position: absolute;
  left: 50%;
  /* bottom: 0;
  transform: translateX(-50%); */
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 380px;
  width: 100%;
  /* padding: 35px 10px 5px; */
  padding: 15px 10px;
  /* border-radius: 10px 10px 0 0; */
  border-radius: 10px;
  /* background: #fff; */
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 800;
  text-align: center;
}

.page-ttl h1 span {
  display: block;
  margin-top: 12px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: normal;
  color: #b3b3b3;
}

.page-ttl + section,
.page-ttl + div {
  position: relative;
  z-index: 5;
  background: #fff;
}

/* sec-ttl */
.sec-ttl {
  margin-bottom: 25px;
  line-height: 1;
  text-align: center;
}

.sec-ttl span {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #7fbd26;
}

.sec-ttl + .txt {
  font-size: 1.8rem;
  text-align: center;
}

/* open-campus
-----------------------------------------------------------------*/
.open-campus {
  background: url(../image/bg_open_campus_lt.png) no-repeat left top, url(../image/bg_open_campus_rt.png) no-repeat right top #7fbe26;
  background-size: 36% auto;
}

.open-campus-inline {
  padding: 80px 0 70px;
  background: url(../image/bg_open_campus_lb.png) no-repeat left bottom, url(../image/bg_open_campus_rb.png) no-repeat right bottom;
  background-size: 36% auto;
}

.open-campus .sec-ttl span {
  color: rgba(255, 255, 255, 0.5);
}

.open-campus .sec-ttl + .txt {
  margin-bottom: 60px;
  color: #fff;
}

.open-campus .tab-nav {
  display: flex;
  justify-content: space-between;
  max-width: 782px;
  margin: 0 auto 30px;
}

.open-campus .tab-nav li {
  max-width: 150px;
  width: calc((100% - 25px) / 6);
}

.open-campus .tab-nav li span {
  position: relative;
  display: block;
  padding: 20px 5px;
  border: 2px solid;
  border-radius: 6px;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

.open-campus .tab-nav li.current span::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid #231815;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.open-campus .tab-nav li.cat01 span,
.open-campus .tab-nav li.cat03 span,
.open-campus .tab-nav li.cat06 span {
  padding: 10px 5px;
}

.open-campus .tab-nav li.cat00 span,
.open-campus .tab-nav li.cat02 span {
  border-color: #231815;
  color: #231815;
}

.open-campus .tab-nav li.cat01 span {
  border-color: #cb584c;
  color: #cb584c;
}

.open-campus .tab-nav li.cat03 span {
  border-color: #20ade4;
  color: #20ade4;
}

.open-campus .tab-nav li.cat04 span {
  border-color: #f5ac3c;
  color: #f5ac3c;
}

.open-campus .tab-nav li.cat05 span {
  border-color: #ec7a9a;
  color: #ec7a9a;
}

.open-campus .tab-nav li.cat06 span {
  border-color: #8800ff;
  color: #8800ff;
}

.open-campus .tab-nav li.cat00 span:hover,
.open-campus .tab-nav li.cat00.current span,
.open-campus .tab-nav li.cat02 span:hover,
.open-campus .tab-nav li.cat02.current span {
  background: #231815;
  color: #fff;
}

.open-campus .tab-nav li.cat01 span:hover,
.open-campus .tab-nav li.cat01.current span {
  background: #cb584c;
  color: #fff;
}

.open-campus .tab-nav li.cat03 span:hover,
.open-campus .tab-nav li.cat03.current span {
  background: #20ade4;
  color: #fff;
}

.open-campus .tab-nav li.cat04 span:hover,
.open-campus .tab-nav li.cat04.current span {
  background: #f5ac3c;
  color: #fff;
}

.open-campus .tab-nav li.cat05 span:hover,
.open-campus .tab-nav li.cat05.current span {
  background: #ec7a9a;
  color: #fff;
}

.open-campus .tab-nav li.cat06 span:hover,
.open-campus .tab-nav li.cat06.current span {
  background: #8800ff;
  color: #fff;
}

.open-campus .tab-nav li.cat01.current span::after {
  border-top-color: #cb584c;
}

.open-campus .tab-nav li.cat03.current span::after {
  border-top-color: #20ade4;
}

.open-campus .tab-nav li.cat04.current span::after {
  border-top-color: #f5ac3c;
}

.open-campus .tab-nav li.cat05.current span::after {
  border-top-color: #ec7a9a;
}

.open-campus .tab-nav li.cat06.current span::after {
  border-top-color: #8800ff;
}

.open-campus-caroucel {
  max-width: 1280px;
  margin: 0 auto 90px;
  padding: 0 65px;
}

.open-campus-caroucel:first-of-type {
  display: block;
}

.open-campus-caroucel .caroucel li {
  padding: 0 10px;
}

.open-campus-caroucel .caroucel li a {
  display: block;
  background: #fff;
  border-radius: 10px;
  border: 4px solid #221815;
  overflow: hidden;
  max-width: 300px;
}

.open-campus-caroucel .caroucel li a .pic {
  max-height: 190px;
  overflow: hidden;
}

.open-campus-caroucel .caroucel li a .pic img {
  width: 100%;
  max-width: 292px;
}

.open-campus-caroucel .txt-area {
  position: relative;
  padding: 20px 20px 60px;
}

.open-campus-caroucel .txt-area-hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #e1e1e1;
  line-height: 1;
}

.open-campus-caroucel .txt-area .date {
  font-size: 2.5rem;
  transform: translateY(-7px);
}

.open-campus-caroucel .txt-area .date span {
  vertical-align: baseline;
  padding: 0 5px;
  font-size: 1.5rem;
}

.open-campus-caroucel .txt-area .cat span {
  font-size: 1.3rem;
  padding: 2px 10px 3px;
  border-radius: 3px;
  color: #fff;
}

.open-campus-caroucel .txt-area .cat span.cat01 {
  background: #cb584c;
}

.open-campus-caroucel .txt-area .cat span.cat02 {
  background: #231815;
}

.open-campus-caroucel .txt-area .cat span.cat03 {
  background: #20ade4;
}

.open-campus-caroucel .txt-area .cat span.cat04 {
  background: #f5ac3c;
}

.open-campus-caroucel .txt-area .cat span.cat05 {
  background: #ec7a9a;
}

.open-campus-caroucel .txt-area .cat span.cat06 {
  background: #8800ff;
}

.open-campus-caroucel .txt-area .txt {
  min-height: 72px !important;
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.56;
}

.open-campus-caroucel .txt-area .txt img {
  width: auto !important;
  display: inline-block !important;
}

.open-campus-caroucel .txt-area .btn-detail {
  position: absolute;
  left: 20px;
  bottom: 0px;
  width: calc(100% - 40px);
  padding: 20px 0;
  border-top: 2px solid #221815;
  background: url(../image/arw_circle_bk.svg) no-repeat right 15px center;
  background-size: 20px auto;
  font-size: 2.1rem;
  line-height: 1;
  text-align: center;
}

.open-campus-caroucel .caroucel li a:hover .btn-detail {
  color: #7fbe26;
  background: url(../image/arw_circle_green.svg) no-repeat right 15px center;
  background-size: 20px auto;
}

/* information
-----------------------------------------------------------------*/
.information {
  padding: 80px 0;
  background: #bce4e4;
}

.information .sec-ttl {
  margin-bottom: 65px;
}

.information .sec-ttl span {
  color: rgba(35, 24, 21, 0.5);
}

.information .layout-box {
  margin-bottom: 45px;
}

.information .info-box {
  position: relative;
  max-width: 690px;
  width: calc(50% - 15px);
  padding: 55px 25px 45px;
  border-radius: 15px;
  background: #fff;
}

.information .info-box h3 {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  max-width: 420px;
  width: 100%;
  padding: 5px 10px;
  border-radius: 10px;
  background: #ffd900;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.information .info-list {
  height: 450px;
  overflow: auto;
}

.information .info-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b6b6b6;
}

.information .info-list li a {
  display: flex;
  align-items: center;
}

.information .info-list .thumb {
  max-width: 160px;
  margin-right: 20px;
}
.information .info-list .thumb img {
  min-width: 160px;
  min-height: 160px;
  object-fit: cover;
}

.information .info-list .date {
  margin-right: 25px;
  font-size: 2rem;
  color: #7fbd26;
}

.information .info-list .cat {
  display: inline-block;
  transform: translateY(-2px);
  font-size: 1.4rem;
  padding: 0 10px 1px;
  border-radius: 3px;
  background: #7fbd26;
  color: #fff;
}

.information .info-list .cat01 {
  background: #231815;
}

/*その他*/
.information .info-list .cat02 {
  background: #ff4200;
}

/*オープンキャンパス*/
.information .info-list .cat04 {
  background: #ec7a9a;
}

/*福祉・心理*/
.information .info-list .cat05 {
  background: #20ade4;
}

/*バイオ*/
.information .info-list .cat06 {
  background: #cb584c;
}

/*イベント・行事*/
.information .info-list .cat09 {
  background: #f5ac3c;
}

/*医療事務*/
.information .info-list .cat10 {
  background: #7fbd26;
}

/*お知らせ*/
.information .info-list .cat11 {
  background: #eda6bd;
}

/*こども心理*/

.information .info-list .txt {
  margin-top: 3px;
  font-size: 1.6rem;
}

/* Briefing
-----------------------------------------------------------------*/
#Briefing {
  padding: 55px 0 50px;
  background: url(../image/bg_briefing.png) center center;
}

#Briefing h2 {
  margin-bottom: 25px;
  text-align: center;
}

#Briefing .briefing-bnr-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 19.68%;
}

#Briefing .briefing-bnr-list li {
  position: relative;
  max-width: 405px;
  width: calc(50% - 7px);
}

#Briefing .briefing-bnr-list .btn-baloon {
  position: absolute;
  top: -60%;
  left: -50%;
  /* transform: translateX(-100%); */
  max-width: 225px;
  width: 55.555%;
}

/* Pickup
-----------------------------------------------------------------*/
#Pickup {
  position: relative;
  background: url(../image/bg_pickup_tile.png) center center;
  border: solid #231815;
  border-width: 5px 0 0;
}

#Pickup::after {
  position: absolute;
  right: 0;
  bottom: -20px;
  display: block;
  content: "";
  width: 195px;
  height: 110px;
  background: url(../image/ico_pencil_pickup.png) no-repeat;
}

#Pickup .pickup-inline {
  padding: 80px 0 70px;
  background: url(../image/bg_illust_left_pickup.png) no-repeat left top, url(../image/bg_illust_right_pickup.png) no-repeat right top;
  background-size: 36% auto;
}

#Pickup .keyword-list {
  max-width: 900px;
  margin: 35px auto 0;
  text-align: center;
}

#Pickup .keyword-list li {
  display: inline-block;
  margin: 0 5px 10px;
}

#Pickup .keyword-list li a {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid #7fbd26;
  border-radius: 20px;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1;
  color: #7fbd26;
  transition: 0.3s;
}

#Pickup .keyword-list li a:hover {
  color: #fff;
  background: #7fbd26;
}

/* clearfix
-----------------------------------------------------------------*/
.cf:after {
  clear: both;
  content: "";
  display: block;
  height: 0;
}

@media screen and (max-width: 1400px) {
  #Content {
    padding-top: 110px;
    position: relative;
  }

  #Content::before {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: url(../image/header_bg_sp.svg) repeat;
    background-size: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
  }

  #Page {
    min-width: 320px;
  }

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

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  img.sp,
  br.sp {
    display: inline;
  }

  .ophover:hover,
  .ophover-group a:hover {
    opacity: 1;
  }

  /*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
  .inner {
    max-width: initial;
  }

  /*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
  #Content {
    padding-top: 60px;
    position: relative;
  }

  #Content::before {
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background: url(../image/header_bg_sp.svg) repeat;
    background-size: 8px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  /* ボタン
-----------------------------------------------------------------*/

  /* btn_round */
  .btn_round a,
  .btn_round span {
    max-width: 320px;
    height: 55px;
    line-height: 53px;
    border-radius: 28px;
    background-position: right 15px center;
    font-size: 1.8rem;
  }

  /* btn_line_round */
  .btn_line_round a,
  .btn_line_round span {
    max-width: 320px;
    height: 55px;
    line-height: 53px;
    border-radius: 28px;
    background-position: right 15px center;
    font-size: 1.8rem;
  }

  .btn_line_round.l2 a,
  .btn_line_round.l2 span {
    height: 65px;
    padding-top: 7px;
    line-height: 1.3;
  }

  /* タイトル
-----------------------------------------------------------------*/
  /* page-ttl */
  .page-ttl {
    /* height: 74.21vw; */
    height: 40vw;
  }

  .page-ttl h1 {
    max-width: 190px;
    /* padding: 12px 10px 3px; */
    padding: 12px 10px;
    font-size: 2.8rem;
  }

  #Page .page-ttl h1 img {
    width: auto;
    height: 22px;
  }

  .page-ttl h1 span {
    margin-top: 3px;
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  /* sec-ttl */
  .sec-ttl {
    margin-bottom: 15px;
    line-height: 1;
    text-align: center;
  }

  .sec-ttl span {
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .sec-ttl + .txt {
    font-size: 1.4rem;
  }

  /* open-campus
-----------------------------------------------------------------*/
  .open-campus {
    background: url(../image/bg_open_campus_lt_sp.png) no-repeat left top, url(../image/bg_open_campus_rt_sp.png) no-repeat right top #7fbe26;
    background-size: 50% auto;
  }

  .open-campus-inline {
    padding: 45px 0 40px;
    background: none;
  }

  #Page .open-campus .sec-ttl img {
    width: auto;
    height: 24px;
  }

  .open-campus .sec-ttl + .txt {
    margin-bottom: 25px;
  }

  .open-campus .tab-nav {
    flex-wrap: wrap;
    justify-content: center;
    max-width: initial;
    margin: 0 auto 20px;
  }

  .open-campus .tab-nav li {
    max-width: 115px;
    width: calc((100% - 24px) / 3);
    margin: 0 4px;
  }

  .open-campus .tab-nav li:nth-child(n + 4) {
    margin-top: 10px;
  }

  .open-campus .tab-nav li span {
    padding: 12px 5px;
    font-size: 1.4rem;
  }

  .open-campus .tab-nav li.cat01 span,
  .open-campus .tab-nav li.cat03 span,
  .open-campus .tab-nav li.cat06 span {
    padding: 3px 5px;
  }

  .open-campus-caroucel {
    max-width: initial;
    width: calc(100% + 30px);
    margin: 0 0 90px -15px;
    padding: 0;
  }

  .open-campus-caroucel:first-of-type {
    display: block;
  }

  .open-campus-caroucel .caroucel li {
    padding: 0 3px;
    transform: scale(0.9);
    transition: 0.3s;
  }

  .open-campus-caroucel .caroucel .is-active li {
    transform: scale(1);
  }

  .open-campus-caroucel .caroucel li a {
    border: 2px solid #221815;
  }

  .open-campus-caroucel .caroucel li a .pic {
    max-height: 140px;
  }

  .open-campus-caroucel .txt-area {
    position: relative;
    padding: 20px 15px 60px;
  }

  .open-campus-caroucel .txt-area-hd {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e1e1e1;
    line-height: 1;
  }

  .open-campus-caroucel .txt-area .date {
    font-size: 2rem;
    transform: translateY(-3px);
  }

  .open-campus-caroucel .txt-area .date span {
    vertical-align: baseline;
    padding: 0 5px;
    font-size: 1.4rem;
  }

  .open-campus-caroucel .txt-area .cat span {
    font-size: 1.2rem;
    padding: 2px 5px 3px;
  }

  .open-campus-caroucel .txt-area .txt {
    margin-bottom: 15px;
    font-size: 1.3rem !important;
  }

  .open-campus-caroucel .txt-area .btn-detail {
    padding: 15px 0 17px;
    border-top: 1px solid #221815;
    font-size: 1.6rem;
  }

  .open-campus-caroucel .caroucel li a:hover .btn-detail {
    color: #7fbe26;
    background: url(../image/arw_circle_green.svg) no-repeat right 15px center;
    background-size: 20px auto;
  }

  /* information
-----------------------------------------------------------------*/
  .information {
    padding: 40px 0;
  }

  .information .sec-ttl {
    margin-bottom: 35px;
  }

  #Page .information .sec-ttl img {
    width: auto;
    height: 24px;
  }

  .information .layout-box {
    display: block;
    margin-bottom: 0;
  }

  .information .info-box {
    max-width: initial;
    width: 100%;
    padding: 30px 15px 25px;
    margin-bottom: 45px;
  }

  .information .info-box h3 {
    max-width: 280px;
    padding: 3px 10px;
    font-size: 1.8rem;
  }

  .information .info-list {
    height: 360px;
    overflow: auto;
  }

  .information .info-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .information .info-list .thumb {
    width: 100%;
    max-width: 60px;
    margin-right: 10px;
  }
  .information .info-list .thumb img {
    min-width: unset;
    min-height: unset;
  }

  .information .info-list .date {
    margin-right: 15px;
    font-size: 1.6rem;
  }

  .information .info-list .cat {
    transform: translateY(-2px);
    font-size: 1.2rem;
    padding: 0 8px 1px;
  }

  .information .info-list .txt {
    margin-top: 3px;
    font-size: 1.3rem;
  }

  .information .info-list .txt img {
    width: auto !important;
  }

  /* Briefing
-----------------------------------------------------------------*/
  #Briefing {
    padding: 30px 0;
    background-size: 8px auto;
  }

  #Briefing h2 {
    margin-bottom: 10px;
  }

  #Briefing .briefing-bnr-list {
    display: block;
    padding: 0;
  }

  #Briefing .briefing-bnr-list li {
    max-width: initial;
    width: 100%;
  }

  #Briefing .briefing-bnr-list .btn-baloon {
    position: static;
    margin: 3px 0 14px;
    transform: none;
    max-width: initial;
    width: 100%;
  }

  /* Pickup
-----------------------------------------------------------------*/
  #Pickup {
    background-size: 22px auto;
    border-width: 2px 0 0;
  }

  #Pickup::after {
    bottom: 5px;
    width: 120px;
    height: 66px;
    background-size: 100% auto;
  }

  #Pickup .pickup-inline {
    padding: 80px 0 50px;
    background: url(../image/bg_illust_left_pickup_sp.png) no-repeat left top, url(../image/bg_illust_right_pickup_sp.png) no-repeat right top;
    background-size: 45% auto;
  }

  #Pickup .sec-ttl img {
    width: auto;
    height: 24px;
  }

  #Pickup .keyword-list {
    max-width: initial;
    margin: 25px auto 0;
  }

  #Pickup .keyword-list li a {
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 1.3rem;
  }
}

/* Baloon
-----------------------------------------------------------------*/
.jello-horizontal {
  -webkit-animation: jello-horizontal 6s infinite;
  animation: jello-horizontal 6s infinite;
}

@media screen and (min-width: 769px) {
  .jello-horizontalSp {
    -webkit-animation: jello-horizontal 6s infinite;
    animation: jello-horizontal 6s infinite;
  }
}

.delay01 {
  animation-delay: 2s;
}

.delay02 {
  animation-delay: 3s;
}

.delay03 {
  animation-delay: 4s;
}

@-webkit-keyframes jello-horizontal {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  5% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  7% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  8% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  10% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  12.5% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  16% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
