@charset 'utf-8';
body{
    padding-top: 100px;
}
strong{
    font-weight: inherit;
    color: #D16130;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.smallText{
    font-size: 14px;
}
.bold{
    font-weight: 700;
}
.bgcolor {
	background: #E12612;
}
.bgcolor--2color {
	background: linear-gradient(180deg, #E12612 0%, #E12612 70%, #FFF 30%, #FFF 100%);
}
.bgcolor--darkgray{
    background: #212831;
}
.bgcolor--gray{
    background: #F5F5F5;
}
#under-title{
    margin: 40px 0;
    overflow: hidden;
}
.under-title__text{
    font-size: 50px;
    font-weight: 700;
    transform: translateY(100%);
    line-height: 1.4;
}
.under-title__text span {
	font-size: 28px;
    font-weight: 700;
    color: #E12612;
    transform: translateY(100%);
}
.under-title__text.in-view{
    animation: fadeinBottom 0.7s ease-in-out forwards;
}
.mb8{
    margin-bottom: 8px !important;
}
.mb12{
    margin-bottom: 12px !important;
}
.mb16{
    margin-bottom: 16px !important;
}
.mb20{
    margin-bottom: 20px !important;
}
.mb24{
    margin-bottom: 24px !important;
}
.mb32{
    margin-bottom: 32px !important;
}
.mb40{
    margin-bottom: 40px !important;
}
.mb48{
    margin-bottom: 48px !important;
}
.mb60{
    margin-bottom: 60px !important;
}
.mb64{
    margin-bottom: 64px !important;
}
.mb80{
    margin-bottom: 80px !important;
}
.mb84{
    margin-bottom: 84px !important;
}

/* =========================
.btn
============================ */
.btn{
    padding: 16px 100px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #212831;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    line-height: 35px;
}
a.btn:hover,
button.btn:hover,
input.btn:hover{
    background: #9D180A;
}
.btn:disabled{
    background: #ccc !important;
    cursor: not-allowed;
}
.btn--small{
    padding: 14px 0 13px;
    font-size: 16px;
    width: 210px;
}
.btn:after {
    content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 36px;
	height: 36px;
	top: 16px;
	right: 10px;
	background-image: url(../img/icon-arrow_forward_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}
.btn_red {
	background: #E12612;
}

/* =========================
.scroll
============================ */
.scroll{
    position: fixed;
    bottom: 30px;
    right: 0;
    width: 60px;
    padding-bottom: 145px;
    line-height: 1;
}
.scroll:after{
    content:"";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width:1px;
    height: 120px;
    background:#fff;
}
.scroll:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background:#fff;
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
    0%{bottom:124px;}
    100%{bottom:0px;}
}
@keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
}
.scroll__text{
    display: inline-block;
    writing-mode: vertical-rl;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
}

/* =========================
.menuBtn
============================ */
.menuBtn{
    /*font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    line-height: 14px;*/
    width: 24px;
    position: fixed;
    top: 38px;
    right: 1.4%;
    transition: 0.2s;
    z-index: 999;
}
.menuBtn:hover{
    cursor: pointer;
    letter-spacing: 0.08em;
}
.menuBtn__bar{
    position: relative;
    width: 100%;
    height: 19px;
    margin-bottom: 6px;
}
.menuBtn__bar span{
    width: 24px;
    height: 3px;
    background: #222;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -12px;
    transition: 0.2s;
}
.menuBtn__bar span:nth-of-type(1){
    top: 0;
}
.menuBtn__bar span:nth-of-type(2){
    top: 8px;
}
.menuBtn__bar span:nth-of-type(3){
    bottom: 0;
}
.menuBtn.active .menuBtn__bar span:nth-of-type(1){
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}
.menuBtn.active .menuBtn__bar span:nth-of-type(2){
    width: 0;
}
.menuBtn.active .menuBtn__bar span:nth-of-type(3){
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
}

/* =========================
.menu
============================ */
.menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #DDD;
    z-index: 99;
    opacity: 0;
    transition: 0.3s;
    transform: translateX(100%);
    padding: 100px 20px 0;
    box-sizing: border-box;
    overflow-y: auto;
}
.menu.active{
    opacity: 1;
    transform: translateX(0);
}
.menu__list{
    margin: 0 -20px;
}
.menu__listItem{
    border-bottom: 1px solid #d0d0d0;
}
.menu__listItem a{
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 12px 24px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    transition: 0.3s;
}
.menu__listItem a:hover{
    color: #E12612;
}
.menu__listItem.arrow a:after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 12px;
	height: 12px;
	top: 50%;
	right: 20px;
    transform: translateY(-50%);
	background-image: url(../img/icon-arrow_separate.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}
.menu__listItem.contact{
    background: #E12612;
    color: #fff;
}
.menu__listItem.contact a{
    padding-left: 40px;
}
.menu__listItem.contact a:after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 17px;
	height: 12px;
	top: 50%;
	left: 16px;
    transform: translateY(calc(-50% - 1px));
	background-image: url(../img/ico_contact.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}
.menu__listItem--main{
    border-bottom: 1px solid #DDD;
}
.menu__listItem--main a{
    font-size: 16px;
    color: #fff;
    background: #212831;
    font-weight: 600;
    position: relative;
    line-height: 2;
    transition: 0.3s;
}
.menu__listItem--main a:hover{
    background: #E12612;
    color: #fff;
}
.menu__listItem--main a:after {
    content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 36px;
	height: 36px;
	top: 50%;
	right: 10px;
    transform: translateY(-50%);
	background-image: url(../img/icon-arrow_forward_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}

/* =========================
.header
============================ */
header{
    padding: 20px 40px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: rgba(255, 255, 255, 0.95);
    box-sizing: border-box;
}
header img{
    display: inline;
    max-width: unset;
}
.header__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 126px;
  height: 27.5px;
  margin-right: 6px;
  padding: 0 14px 0 8px;
  border: solid 1px #EBEBEB;
  border-radius: 17px;
  background: #fff;
  box-sizing: unset;
  -webkit-box-sizing: unset;
  -moz-box-sizing: unset;
  -ms-box-sizing: unset;
  -o-box-sizing: unset;
}
.header__form:focus-within {
  -webkit-box-shadow: 0 0 4px #EBEBEB;
  box-shadow: 0 0 4px #EBEBEB;
}
.header__form input::-webkit-input-placeholder{
    color: #757575;
}
.header__form [name=q] {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  padding: 0 4px;
  border: none;
  background: none;
}
.header__form [name=submit] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 11.5px;
}
.header__form [name=submit] img {
  width: 100%;
}
.header__form {
	width: 270px;
	height: 34px;
	/*margin-right: 43px;*/
	margin-top: 3px;
}
.header__form [name=submit] {
	width: 15px;
}
.header__form [name="submit"] img {
    width: 100%;
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
.header-right {
	display: flex;
    list-style: none;
    padding: 0;
    margin: 0 4.0rem;
}
.sns__links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 2.0rem;
}
.contact-btn {
    background-color: #E12612;
    color: #FFF;
    height: 39px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.contact-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 10px 10px;
    overflow: hidden;
    color: #FFF;
    box-sizing: border-box;
    white-space: nowrap;
}
.contact-btn a img {
    width: 18px;
    height: 13px;
    margin-right: 6px;
    line-height: 1.0;
}
.contact-btn:hover {
	filter: brightness(1.10);
}
.sns__item {
	margin-right: 16px;
}
.sns__item a{
    line-height: 35px;
}
.sns__item img{
    display: inline;
}

/* =========================
.footer
============================ */
.footer{
    padding: 64px 60px;
    /*display: flex;*/
    justify-content: space-between;
    border-bottom: 1px solid #DDD;
    display: block;
    text-align: center;
}
.footer__addressLogo{
    margin-bottom: 20px;
}
.footer__addressLogo img{
    display: inline;
}
.footer__addressText {
	font-size: 13px;
	line-height: 1.8;
}
.footer__box{
    /*display: flex;*/
    display: none;
}
.footer__nav{
    display: flex;
    margin-right: 20px;
}
.footer__navList:not(:last-child){
    margin-right: 64px;
}
.footer__navList a{
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
.footer__navList a:hover{
    color: #E12612;
}
.footer__navItem > a{
    font-weight: 600;
}
.footer__navItem:not(:last-child){
    /*margin-bottom: 16px;*/
}
.footer__navSubItem{
    /*margin-top: 13px;*/
    line-height: 1.6;
}
.footer__navSubItem a{
    font-size: 13px;
    position: relative;
    color: #333;
    text-decoration: none;
}
.footer__navSubItem.arrow a:after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 12px;
	height: 12px;
	top: 0;
	right: -20px;
	background-image: url(../img/icon-arrow_separate.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}

/* =========================
    .copy
============================ */
.copy{
	font-size: 14px;
	font-family: 'Barlow Condensed', sans-serif;
	line-height: 1.6;
	/*writing-mode: unset;
	position: relative;
	display: block;*/
	text-align: center;
	padding: 10px;
	letter-spacing: 1px;
}

/* =========================
    .subMenu
============================ */
.subMenu {
    font-size: 14px;
    font-weight: 600;
    writing-mode: vertical-rl;
    line-height: 60px;
    letter-spacing: 0.08em;
    display: inline-block;
    writing-mode: vertical-rl;
    position: fixed;
    /*bottom: 38%;*/
    top: 28%;
    right: 0.9%;
    z-index: 2;
}
.subMenu ul {
	display: flex;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.subMenu li{
    line-height: 35px;
}
.subMenu li a {
	margin-bottom: 24px;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #333;
	padding-bottom: 24px;
}
.subMenu li a:hover {
    color: #E12612;
}
.subMenu li:last-child a {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
} 

/* =========================
	パンくず
============================ */
.breadcrumb {
	margin-top: calc(30px * var(--scale));
	display: flex;
	/* grid-template-columns: auto auto auto; */
	width: 100%;
	justify-content: start;
	line-height: 35px;
	font-size: 12px;
	padding: 10px 0;
}
.breadcrumb li {
	font-size: calc(14px * var(--scale));
	display: flex;
    align-items: center;
	font-weight: 500;
	white-space: nowrap;
	margin-right: 4px;
}
.breadcrumb li:last-child {
	overflow: hidden;
}
.breadcrumb li:before {
	content: "";
	padding-bottom: calc(3px * var(--scale));
	margin: calc(0px * var(--scale)) calc(7px * var(--scale));
	content: ">";
	display: flex;
    align-items: center;
    margin: 0 6px 0 4px;
}
.breadcrumb li:first-child:before {
    display: none;
}
.breadcrumb li.home{
    padding-left: 21px;
    position: relative;
}
.breadcrumb li.home:after {
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 17px;
    height: 15px;
	margin-right: calc(7px * var(--scale));
    background: url(../img/icon-home.svg) center center / 100% 100% no-repeat;
}
.breadcrumb li a {
	color: #333;
    text-decoration: underline !important;
}
.breadcrumb li a:hover {
	color: #E12612;
}
.flex-middle {
    display: flex;
    align-items: center;
}



.top__news__itemTitle h3 span:after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	top: -6px;
	right: 0;
	background-image: url(../img/icon-arrow_forward.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}


/* =========================
TOPページ
============================ */
/* #main */
#main{
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    position: relative;
}
.mv {
	padding-right: 3.9%;
}
.mv__image {
	margin-bottom: 184px;
	z-index: 1;
}
.mv__image img {
	border-bottom-right-radius: 100px;
}
.mv__image img {
	width: 100%;
	height: auto;
}
#catch_copy {
	position: absolute;
	top: 5%;
	left: 4%;
}
.maincopy {
	color: #E70F20;
	font-size: 80px;
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.0;
}
.subcopy {
	font-size: 18px;
    font-weight: 600;
	background: #FFF;
    padding: 1px 3px;
    display: inline-block;
}
.mv_bottom {
	background: #E12612;
	width: 100%;
	height: 335px;
	margin: 0;
	padding: 0;
	position: absolute;
    bottom: 0;
    z-index: -1;
}
#illust01 {
	position: absolute;
	bottom: 12%;
	left: 11.5%;
	width: 8.5%;
	height: auto;
}
#illust02 {
	position: absolute;
	bottom: 5%;
	left: 22.5%;
	width: 11.8%;
	height: auto;
}
#illust03 {
	position: absolute;
	bottom: 5%;
	left: 39.5%;
	width: 17%;
	height: auto;
}
#illust04 {
	position: absolute;
	bottom: 16%;
	right: 33.5%;
	width: 8.5%;
	height: auto;
}
#illust05 {
	position: absolute;
	bottom: 9%;
	right: 10.5%;
	width: 16.3%;
	height: auto;
}
.mv_illust img {
	width: 100%;
	height: auto;
}

/* #news */
#news{
    padding: 40px 0 80px;
}
#news * {
    line-height: 35px;
}
#news .section-title {
	text-align: left;
	margin-bottom: 40px;
}
#news .section-title p {
	color: #E12612;
	font-size: 20px;
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
	margin-bottom: 10px;
}
#news h2 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
}
#news ul {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
	text-align: left;
	margin-bottom: 40px;
}
#news li {
	/*padding-bottom: 40px;*/
	border-bottom: 1px solid #DDD;
}
.top__news__item a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
.top__news__item a:hover {
    color: #E12612;
}
.top__news__itemDate {
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    line-height: 1.2 !important;
}
.top__news__itemTitle {
    font-weight: 600;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 76px;
    position: relative;
    margin-bottom: 40px;
}
.top__news__itemTitle h3 {
	width: 506px;
	/*margin-bottom: 40px;*/
	font-weight: 600;
	font-size: 16px;
}
.top__news__itemTitle h3 span:after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 48px;
	height: 48px;
	top: -6px;
	right: 0;
	background-image: url(../img/icon-arrow_forward.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}

/* #faculties, #scholarship */
#faculties, #scholarship {
	padding: 56px 0 0;
	padding-left: calc((100% - 1440px) / 2);
	display: flex;
	justify-content: flex-end;
}
#faculties .section-title p, #scholarship .section-title p {
	color: #FFF;
	font-size: 20px;
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
	margin-bottom: 10px;
}
#faculties h2, #scholarship h2 {
	color: #FFF;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.4;
}
#faculties h2 span, #scholarship h2 span {
	font-size: 58px;
	font-weight: 700;
	line-height: 1.4;
}
#faculties .text, #scholarship .text {
	order: 1;
	width: 30%;
	margin-right: 7%;
	text-align: left;
	margin-top: 58px;
}
#faculties .text > p, #scholarship .text > p {
	text-align: left;
	color: #FFF;
	margin-bottom: 32px;
    line-height: 35px;
}
#faculties .img {
	order: 2;
	width: 55%;
	position: relative;
}
#scholarship .img {
	order: 2;
	width: 55%;
	position: relative;
	top: -128px
}
#faculties .img > img, #scholarship .img > img {
	width: 100%;
	height: 534px;
	object-fit: cover;
	border-radius: 60px 0 0 60px;
}
#faculties.bgcolor--2color {
	display: flex;
	width: 100%;
	height: 646px;
    box-sizing: unset;
    -webkit-box-sizing: unset;
}
#scholarship.bgcolor {
	display: flex;
	width: 100%;
	height: 518px;
	box-sizing: border-box;
}

/* #know */
#know {
	position: relative;
}
.know__box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.know__item {
	position: relative;
}
#know h2 {
	color: #333;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
}
#know h2 span {
	font-size: 58px;
	font-weight: 700;
	line-height: 1.4;
	color: #E12612;
}
.know__img{
	background: #E12612;
    padding: 32px;
    border-radius: 30px;
    margin-bottom: 20px;
}
#know li  {
	position: absolute;
}
#decoration1 {
	top: -100px;
	left: 0;
}
#decoration2 {
	bottom: 0;
	right: 0;
}
#decoration3 {
	position: absolute;
	bottom: -10px;
	left: -114px;
	z-index: 1;
}
#decoration4 {
	position: absolute;
	top: -39px;
	right: -92px;
	z-index: 1;
}

/* #admission */
#admission {
	border-radius: 0 60px 60px 0;
    margin-right: 5%;
	display: flex;
	margin-bottom: 175px;
}
#admission .section-title p {
	color: #E12612;
	font-size: 20px;
	font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
	margin-bottom: 10px;
}
#admission h2 {
	color: #FFF;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.4;
}
#admission h2 span {
	font-size: 58px;
	font-weight: 700;
	line-height: 1.4;
}
#admission .text {
	width: 40%;
	margin-left: 7%;
	text-align: left;
	margin-top: 164px;
}
#admission .text > p {
	text-align: left;
	color: #FFF;
	margin-bottom: 32px;
    line-height: 35px;
}
#admission .img {
	width: 63%;
	position: relative;
}
#admission .img > img {
	width: 100%;
	height: 621px;
	object-fit: cover;
}

/* #banner_area */
.banner__box {
	padding: 80px 0;
}
.banner__boxList {
	display: flex;
	justify-content: space-between;
	margin-bottom: 42px;
}
.banner__boxList__small {
	display: flex;
	justify-content: space-between;
}

#top_bnrArea {
    margin: 48px auto 40px;
}
.top_bnrTitle{
    color: #E12612;
    font-size: 48px;
    line-height: 58px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
}
.top_bnrList{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.top_bnrList li{
    width: calc((100% - 40px) / 2);
}

/* =========================
クマガクの学部・学科
============================ */
#under-faculties .under__cover{
    background-image: url(../img/faculties/under_cover.jpg);
}
/*#under-faculties #sec3{
    background: url(../img/faculties/sec3_bg.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}*/
#under-faculties .under__box {
    width: 1000px;
    margin: 0 auto;
}
#under-faculties #sec3:before{
    content: "";
    width: 100%;
    height: 80%;
    background: linear-gradient(0deg,rgba(27, 62, 52, 1) 0%, rgba(27, 62, 52, 0) 100%);
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    left: 0;
}
#under-faculties #sec4 .boxContainer__flexboxLeft{
    width: 258px;
}
#under-faculties #sec4 .boxContainer__flexboxRight{
    width: 680px;
}
#under-faculties .under__item {
	position: relative;
}
#faculties1 .under__itemIllust {
	position: absolute;
	bottom: 154px;
	left: -16px;
}
#faculties2 .under__itemIllust {
	position: absolute;
	bottom: 158px;
	right: -8px;
}
#faculties3 .under__itemIllust {
	position: absolute;
	top: 0;
	right: 10px;
}
#faculties4 .under__itemIllust {
	position: absolute;
	bottom: 180px;
	left: -10px;
}
#under-faculties .under__title {
	margin-bottom: 40px;
}
#under-faculties .under__itemTitle {
	background: #E12612;
	margin-right: 10px;
	width: 461px;
	color: #FFF;
	text-align: center;
	padding: 28px 0;
}
#under-faculties h4 {
	font-size: 38px;
	font-weight: 700;
	margin-bottom: 10px;
}
#under-faculties .under__itemTitle p {
	line-height: 1.4;
}
#under-faculties .under__itemTitle .btn {
    padding: 10px 40px;
}
#under-faculties .under__itemTitle .btn:after {
    top: 14px;
}
#under-faculties .under__itemTitle ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 68%;
    margin: 16px auto;
}
#under-faculties .under__itemTitle ul .btn{
    box-sizing: unset;
    -webkit-box-sizing: unset;
}
#under-faculties .under__itemTitle ul .btn:after {
    width: 28px;
    height: 28px;
}

/* =========================
クマガクの強み
============================ */
#under-strong-point .under__cover{
    background-image: url(../img/strong-point/under_cover.jpg);
    background-position: center 37%;
}
#under-strong-point .under__itemImg {
	width: 461px;
}
#under-strong-point .under__itemImg img {
	margin-bottom: 16px;
}
#under-strong-point .under__itemImg p {
	line-height: 1.8;
}
#under-strong-point .under__itemImg p {
    line-height: 1.8;
    font-size: 18px;
}
/*#under-strong-point .under__box222 {
	display: grid;
	column-gap: 2em;
	grid-template-columns: repeat(2, auto);
}*/

/* =========================
動画で知るクマガク
============================ */
#under-movie .under__cover{
    background-image: url(../img/movie/under_cover.jpg);
    background-position: center 30%;
}
#under-movie .under__itemImg {
	width: 461px;
}
#under-movie .under__itemImg img {
	margin-bottom: 16px;
}
#under-movie .under__itemImg p {
    line-height: 1.8;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
#under-movie .under__box {
	display: grid;
	column-gap: 2em;
	grid-template-columns: repeat(2, auto);
}
#under-movie .under__itemImg p:hover {
    color: #E12612;
    text-decoration: none;
}
#under-movie a {
	text-decoration: none;
}
#under-movie h4 {
	font-size: 24px;
	margin: 32px 0 0
}
#under-movie h4:before{
    content: "";
    border-left: 4px solid #E12612;
    margin-right: 10px;
}
#under-movie .resume a {
	font-size: 14px;
    color: #E12612;
    position: relative;
    text-decoration: underline;
}
#under-movie .resume a:after {
    content: "";
	position: absolute;
	z-index: 1;
	display: block;
	width: 12px;
	height: 15px;
	top: -1px;
	right: -20px;
	background-image: url(../img/movie/icn_pdf.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: width 0.3s ease;
}
#under-movie .resume a:hover {
	text-decoration: none;
}


/* =========================
下層共通
============================ */
/* .under__contents */
.under__contents {
	margin: 40px auto;
}
.under__title h3 {
	font-size: 28px;
	font-weight: 600;
	color: #E12612;
	line-height: 1.6;
	border-bottom: 4px solid #E12612;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.under__title p{
    line-height: 35px;
}
.under__box {
    display: flex;
    justify-content: space-between;
}
.under__item {
	 margin-bottom: 64px;
}
/* .under__cover */
.under__cover{
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
}
.under__cover.in-view{
    animation: fadein 0.5s ease-in-out forwards;
}
/* .table */
.table tr{
    border-bottom: 1px solid #ABABA0;
}
.table th,
.table td{
    text-align: left;
    vertical-align: middle;
    padding: 22px 0 24px;
    font-size: 16px;
    line-height: 2.1;
}
.table th{
    font-weight: 700;
    padding-left: 26px;
    width: 304px;
    box-sizing: border-box;
}
.table--white{
    color: #fff;
}
.table--white tr{
    border-color: #fff;
}
.table-info{
    font-size: 0;
    border-top: 1px solid #969696;
}
.table-info tr{
    border-color: #969696;
}
.table-info th,
.table-info td{
    padding: 12px 0;
    font-size: 13px;
}
.table-info th{
    text-align: center;
    background: #EEEFEF;
    width: 123px;
}
.table-info td{
    background: #fff;
    padding-left: 20px;
}
.table-form th,
.table-form td{
    font-size: 16px;
    padding: 12px 0;
    vertical-align: middle;
}
.table-form th{
    width: 194px;
    text-align: left;
    font-weight: 700;
    height: 56px;
    box-sizing: border-box;
}
.table-form td{
    font-weight: 400;
}
.form__text--red{
    color: #D5414B;
}
.wpcf7-list-item{
    margin: 0 1em 0 0 !important;
}
.wpcf7-list-item:last-of-type{
    margin-right: 0!important;
}
.wpcf7-list-item-label{
    font-weight: 400;
}
.wpcf7-spinner{
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    right: -32px;
}
.wpcf7 form .wpcf7-response-output{
    font-weight: 400;
    margin: 2em 0 1em !important;
    padding: 0.5em 1em !important;
}
.submit{
    position: relative;
    display: inline-block;
}
.required{
    color: #D5414B;
    font-size: 11px;
    line-height: 19px;
    display: inline-block;
    padding: 0 7px 1px;
    margin-left: 9px;
    font-weight: 700;
    background: #FFD6D6;
    border-radius: 50px;
    vertical-align: middle;
    transform: translateY(-2px);
}
.acceptance{
    font-size: 16px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
    -webkit-appearance: none;
    outline: none;
    background: #F2F4F6;
    border-radius: 6px;
    height: 56px;
    font-size: 16px;
    padding: 12px 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    font-weight: 400;
}
input,
select,
textarea,
button{
    font-family: "Zen Kaku Gothic New", sans-serif;
}
textarea{
    min-height: 240px;
}
select:hover,
label:hover{
    cursor: pointer;
}
input.input-medium{
    width: 50%;
}

/* .map */
.map {
    position: relative;
    aspect-ratio: 68 / 46;
    width: 100%;
    height: auto;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* .animation-fadeIn */
.animation-fadeIn{
    opacity: 0;
}
.animation-fadeIn.in-view{
    animation: fadein 0.5s ease-in-out forwards;
}
@keyframes fadein{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes fadeinBottom{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }

}
@keyframes fadeinLeft{
    0%{
        transform: translateX(-50px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}



















@media screen and (min-width: 737px){
    .sp{
        display: none !important;
    }
    .w600{
        width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .w840{
        width: 840px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .w920{
        width: 920px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .w960{
        width: 960px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .w1000{
        width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .w1160{
        width: 1160px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    a img{
        transition: 0.3s;
    }
    a:hover img{
        opacity: 0.8;
    }
    /*html{
        padding-right: 56px;
        background: #FFF;
        position: relative;
    }*/
    html:before{
        content: "";
        width: calc(100% - 60px);
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        z-index: -1;
    }
    body{
        background: #fff;
    }
    main{
        width: 100%;
        overflow: hidden;
    }
}







@media screen and (max-width: 736px){
    body{
        padding-top: 54px;
    }
    .pc{
        display: none !important;
    }
    .w600,
    .w840,
    .w920,
    .w960,
    .w1000,
    .w1160{
        padding: 0 24px;
        position: relative;
        z-index: 1;
    }
    .smallText{
        font-size: 13px;
    }
    #under-title{
        margin: 56px 20px 32px;
        font-size: 28px;
    }
    .under-title__text{
        font-size: 26px;
    }
    .mb8{
        margin-bottom: calc(8px * 0.8) !important;
    }
    .mb12{
        margin-bottom: calc(12px * 0.8) !important;
    }
    .mb16{
        margin-bottom: calc(16px * 0.8) !important;
    }
    .mb20{
        margin-bottom: calc(20px * 0.8) !important;
    }
    .mb24{
        margin-bottom: calc(24px * 0.8) !important;
    }
    .mb32{
        margin-bottom: calc(32px * 0.8) !important;
    }
    .mb40{
        margin-bottom: calc(40px * 0.8) !important;
    }
    .mb48{
        /*margin-bottom: 32px !important;*/
    }
    .mb60{
        margin-bottom: 32px !important;
    }
    .mb64{
        margin-bottom: 32px !important;
    }
    .mb80{
        margin-bottom: 32px !important;
    }
    .mb84{
        margin-bottom: 32px !important;
    }
    

    /* =========================
    .btn
    ============================ */
    .btn{
        padding: 5px 24px;
        font-size: 14px;
        width: 54%;
        text-align: center;
    }
    body.home .btn{
        width: 30%;
    }
    .btn--small{
        padding: 12px 0;
        font-size: 14px;
    }
    .btn:after {
    	width: 24px;
    	height: 24px;
    	top: 11px;
    }

    /* =========================
    .scroll
    ============================ */
    .scroll{
        position: absolute;
        bottom: unset;
        top: 446px;
        padding-bottom: 72px;
        line-height: 1;
        z-index: 2;
    }
    .scroll:after{
        height: 60px;
        background:#C6560F;
    }
    .scroll:before{
        background:#C6560F;
    }
    @keyframes circlemove{
        0%{bottom:60px;}
        100%{bottom:0px;}
    }
    .scroll__text{
        color: #C6560F;
    }
    #under .scroll{
        display: none;
    }

    /* =========================
    .menuBtn
    ============================ */
    .menuBtn{
        /*position: fixed;
        top: 0;
        background: #C6560F;
        padding: 16px 0 13px;
        transition: 0s;
        border-bottom-left-radius: 120px;*/
        position: fixed;
        top: 0;
        right: 0;
        background-color: #E12612;
        cursor: pointer;
        width: 65px;
        height: 65px;
        border-bottom-left-radius: 120px;
        z-index: 1000;
    }
    .menuBtn__bar span {
    	display: inline-block;
    	transition: all .4s;
    	position: absolute;
    	left: 38px;
    	height: 3px;
    	background: #fff;
    	width: 24px;
    }
    .menuBtn__bar {
    	height: 36px;
    }
    .menuBtn__bar span:nth-of-type(1){
    	top: 16px;
    }
    .menuBtn__bar span:nth-of-type(2){
    	top: 24px;
    }
    .menuBtn__bar span:nth-of-type(3){
    	bottom: 0;
    }
    .menuBtn.active .menuBtn__bar span:nth-of-type(1){
    	top: 70%;
    }
    .menuBtn.active .menuBtn__bar span:nth-of-type(3){
    	bottom: 30%;
    }
    .menu .menuBtn{
        position: fixed;
        top: 0;
    }

    /* =========================
    .menu
    ============================ */
    .menu{
        width: 240px;
        height: 100%;
        padding: 68px 16px 66px;
        box-sizing: border-box;
    }
    .menu .search-box{
        margin-bottom: 16px;
    }
    .menu .header__form{
        box-sizing: border-box;
        max-width: 100%;
    }
    .menu__list{
        margin: 0 -16px;
    }
    .menu__listItem a{
        padding: 10px 16px;
        font-size: 13px;
    }
    .menu__listItem--main a{
        font-size: 15px;
    }

    /* =========================
    .copy
    ============================ */
    .copy{
        font-size: 12px;
        line-height: 40px;
        writing-mode: unset;
        position: relative;
        display: block;
        text-align: center;
        margin-bottom: 80px;
    }

    /* =========================
    .header
    ============================ */
    header{
        padding: 0;
        flex-wrap: wrap;
    }
    header h1{
        order: 2;
        width: 100%;
        margin: 8px;
        text-align: left;
    }
    header h1 img{
        width: 241px;
        height: 38px;
    }
    .gnav{
        order: 1;
        width: 100%;
    }
    .gnav h2{
        margin-bottom: 20px;
        text-align: left;
        padding: 23px 20px;
        background: #F6F4E5;
        width: 100%;
        box-sizing: border-box;
        line-height: 0;
    }
    .gnav h2 img{
        height: 14px;
        width: auto;
    }
    .header-right {
        display: none;
    }

    /* =========================
    .footer
    ============================ */
    .footer{
        padding: 40px 24px 0;
        display: block;
        border-bottom: none;
    }
    .footer__address{
        padding-bottom: 32px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    .footer__addressLogo{
        margin-bottom: 12px;
    }
    .footer__addressLogo img{
        max-width: 65%;
        height: auto;
    }
    .footer__box{
        display: none;
    }
    .footer__nav{
        display: flex;
        margin-right: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid #eee;
    }
    .footer__navList{
        flex: 1;
    }
    .footer__navList:not(:last-child){
        margin-right: 24px;
    }
    .footer__navList a{
        font-size: 14px;
    }
    .footer__navItem:not(:last-child){
        margin-bottom: 16px;
    }
    .footer__navSubItem{
        margin-top: 10px;
        line-height: 1em;
    }
    .footer__navSubItem a{
        font-size: 12px;
    }
    .footer__fssc{
        text-align: center;
    }
    .sns__links {
    	width: 155px;
    	margin: 32px auto;
    }
    .sns__item:last-child {
    	margin-right: 0;
    }
    .contact-btn {
    	width: 154px;
    	height: 46px;
    	margin: 0 auto;
    }

    /* =========================
    TOPページ
    ============================ */
    main {
        overflow: hidden;
    }
    /* #main */
    #main {
    	height: 588px;
    }
    .mv {
    	padding-right: 5%;
    }
    .mv__image img {
    	border-bottom-right-radius: 60px;
    }
    .mv__image img {
    	height: 488px;
    	object-fit: cover;
    	object-position: left;
    }
    .maincopy {
    	font-size: 42px;
    	margin-bottom: 4px;
    }
    .subcopy {
    	font-size: 14px;
    	padding: 0 3px;
    	line-height: 1.6;
    }
    .mv_bottom {
    	height: 212px;
    }
    #illust01 {
    	display: none;
    }
    #illust02 {
    	display: none;
    }
    #illust03 {
    	position: absolute;
    	bottom: 5%;
    	left: 2%;
    	width: 32%;
    	height: auto;
    }
    #illust04 {
    	position: absolute;
    	bottom: 13%;
    	right: 45%;
    	width: 16%;
    	height: auto;
    }
    #illust05 {
    	position: absolute;
    	bottom: 7%;
    	right: 5%;
    	width: 30%;
    	height: auto;
    }
    .mv_illust img {
    	width: 100%;
    	height: auto;
    }

    /* #news */
    #news {
    	padding: 32px 0 40px;
    }
    #news .section-title{
        margin-bottom: 24px;
    }
    #news .section-title p{
        margin-bottom: 0;
    }
    #news ul {
        display: block;
    }
    #news li {
    	margin-bottom: 16px;
    }
    #news h2 {
    	font-size: 30px;
    }
    .top__news__itemDate {
    	font-size: 15px;
    }
    .top__news__itemTitle {
    	overflow: visible;
    	display: block;
    	max-height: 100%;
        margin-bottom: 0;
    }
    .top__news__itemTitle h3 {
    	font-size: 15px;
    	width: 90%;
    	margin-bottom: 16px;
    	line-height: 1.6 !important;
    }
    .top__news__itemTitle h3 span:after {
    	width: 24px;
    	height: 24px;
    	top: 50%;
    	margin-top: -12px;
    }
    #news ul {
    	margin-bottom: 20px;
    }


    /* #faculties, #scholarship */
    #faculties h2, #scholarship h2 {
    	font-size: 32px;
    	margin-bottom: 10px;
    }
    #faculties h2 span, #scholarship h2 span {
    	font-size: 32px;
    }
    #faculties.bgcolor--2color {
    	display: block;
    }
    #faculties .text {
    	order: 1;
    	width: 100%;
    	margin-right: 7%;
    	text-align: left;
    	padding: 0px 0 32px 10%;
    	box-sizing: border-box;
    	margin: 0;
    }
    #faculties .text > p, #scholarship .text > p {
    	margin-bottom: 20px;
    	line-height: 1.8;
    }
    #faculties .img {
    	order: 2;
    	width: 100%;
    	position: relative;
    	padding-left: 10%;
    	box-sizing: border-box;
    }
    #scholarship .img {
    	order: 2;
    	width: 100%;
    	position: relative;
    	top: -128px
    }
    #faculties .img > img {
    	width: 100%;
    	height: 255px;
    	object-fit: cover;
    	border-radius: 26px 0 0 26px;
    }
    #faculties.bgcolor--2color {
    	display: block;
    	width: 100%;
    	height: 560px;
    }
    #scholarship.bgcolor {
    	display: block;
    	width: 100%;
    	height: 518px;
    	box-sizing: border-box;
    }

    /* #know */
    #know {
    	overflow: hidden;
    }
    .know__box {
        display: block;
    }
    .know__box img {
        width: 100%;
        height: auto;
    }
    #know h2 {
    	font-size: 26px;
    }
    #know h2 span {
    	font-size: 42px;
    }
    .know__img{
    	padding: 24px;
    	border-radius: 18px;
    	margin-bottom: 20px;
    }
    .know__item {
    	margin-bottom: 48px;
    }
    /*#know li #decoration1, #know li #decoration2 {
    	transform: rotate(90deg);
    	width: 100%;
    }*/
    .know__item {
    	position: relative;
    }
    #decoration1 {
    	top: 0;
    	right: 0;
    	left: 0;
    	/*margin-left: -50%;*/
    	/*transform: rotate(90deg);*/
    	/*width: 100%;*/
    }
    #decoration2 {
       	top: auto;
        bottom: 44%;
        right: 0;
        left: 0;
        /*kerning: 0;*/
        /* margin-left: -50%; */
        /*transform: rotate(90deg);*/
        /* width: 100%;*/
    }
    #decoration3 {
    	position: absolute;
        bottom: 0;
        left: -17px;
        z-index: 1;
        width: 26vw;
    }
    #decoration4 {
    	position: absolute;
    	top: -13px;
    	right: -40px;
    	z-index: 1;
    	width: 31vw;
    }
    #know li img {
    	width: 100%;
    	height: auto;
    }

    /* #admission */
    #admission {
    	border-radius: 0 0 0 0;
    	margin-right: 0;
    	display: block;
    	margin-bottom: 80px;
    }
    #admission .img {
    	display: none;
    }
    #admission h2 {
    	font-size: 32px;
    	margin-bottom: 10px;
    }
    #admission h2 span {
    	font-size: 32px;
    }
    #admission .text {
    	width: 100%;
    	text-align: left;
    	margin-top: 164px;
    	padding: 56px 10% 0 10%;
    	box-sizing: border-box;
    	margin: 0;
    }
    #admission .text > p {
    	margin-bottom: 20px;
        line-height: 1.8;
    }

    /* #scholarship */
    #scholarship .img {
    	top: -96px;
    }
    #scholarship .img > img {
    	width: 100%;
    	height: 255px;
    	object-fit: cover;
    	border-radius: 0 26px 26px 0;
    }
    #scholarship .img {
    	order: 2;
    	width: 100%;
    	position: relative;
    	padding-right: 10%;
    	box-sizing: border-box;
    }
    #scholarship .text {
    	order: 1;
    	width: 100%;
    	margin-right: 7%;
    	text-align: left;
    	padding: 0px 10% 32px 10%;
    	box-sizing: border-box;
    	margin: -64px 0 0 0;
    }

    /* #banner_area */
    #banner_area {
    	padding: 64px 0;
    }
    .banner__boxList {
        display: block;
    }
    .banner__boxList img {
    	width: 100%;
    	height: auto;
    }
    .banner__boxList .banner__item {
    	margin-bottom: 16px;
    }
    .banner__boxList__small .banner__item {
    	margin-right: 10px;
    }
    .banner__item img{
        max-width: unset;
    }
    .banner__boxList__small {
    	overflow: hidden;
    	/*animation: loop-slide 20s infinite linear 1s both;*/
    }

    #top_bnrArea {
        margin: 40px auto 12px;
    }
    .top_bnrTitle{
        font-size: 40px;
    }
    .top_bnrList{
        display: block;
    }
    .top_bnrList li{
        width: 100%;
        margin-bottom: 12px;
    }
    .top_bnrList li:last-of-type{
        margin-bottom: 0;
    }

    /* スライダー全体 */
    .slider-wrapper {
    	display: flex;
    	overflow: hidden;
    }
    .slider {
    	/*animation: scroll-left 20s infinite linear .5s both;*/
    	display: flex;
        animation: scroll-left 40s infinite linear 0.5s both;
    }
    .slider li {
    	margin-right: 10px;
    }
    @keyframes scroll-left {
    	from {
    		transform: translateX(0);
    	}
    	to {
    		transform: translateX(-100%);
    	}
    }


	/* =========================
	クマガクの学部・学科
	============================ */
    #under-faculties {
        overflow: hidden;
    }
    #under-faculties .under__box {
        width: 100%;
    }
    #under-faculties .under__contents  {
        margin: 40px 0 0;
    }
    #under-faculties .under__title {
        margin-bottom: -20px;
    }
    #under-faculties .under__item {
        margin-top: 64px;
        margin-bottom: 0;
    }
	#under-faculties .under__itemTitle {
		width: 100%;
	}
	#under-faculties .under__itemTitle ul {
		width: 260px;
	}
	#under-faculties .under__itemTitle .btn {
		padding: 6px 30px;
	}
	#under-faculties h4 {
		font-size: 32px;
	}
	#under-faculties .under__itemTitle ul .btn:after {
		width: 24px;
		height: 24px;
	}
    #faculties1 .under__itemIllust {
        position: absolute;
        bottom: 150px;
        left: 10px;
        width: 115px;
    }
    #faculties2 .under__itemIllust {
        position: absolute;
        bottom: 148px;
        right: 15px;
        width: 87px;
    }
    #faculties3 .under__itemIllust {
        position: absolute;
        top: 0;
        right: 15px;
        width: 124px;
    }
    #faculties4 .under__itemIllust {
        position: absolute;
        bottom: 195px;
        left: 3px;
        width: 112px;
    }
    .under__itemIllust img {
        width: 100%;
        height: auto;
    }



	/* =========================
	クマガクの強み
	============================ */
	#under-strong-point .under__itemImg {
		width: 100%;
	}
	#under-strong-point .under__itemImg p {
		font-size: 16px;
	}


	/* =========================
	動画で知るクマガク
	============================ */
	#under-movie img {
		width: 100%;
	}
	#under-movie .under__box {
		display: block;
	}
	#under-movie .under__itemImg {
		width: 100%;
	}
	#under-movie .under__item {
		margin-bottom: 10px;
	}
	#under-movie section {
		margin-bottom: 48px;
	}
	#under-movie .under__itemImg p {
		font-size: 16px;
	}
	#under-movie .under__itemImg img {
		margin-bottom: 8px;
	}
	#under-movie .under__item {
		margin-bottom: 32px;
	}
    #under-movie .introduction .under__item {
        margin-bottom: 6px;
    }
    #under-movie .introduction {
        margin-bottom: 32px;
    }
    #under-movie h4 {
        font-size: 22px;
        font-weight: 600;
    }
	

	/* =========================
	下層共通
	============================ */
	.under__box {
		display: block;
	}
	.under__itemImg img {
		width: 100%;
		height: auto;
	}
	.under__title h3 {
		font-size: 20px;
		margin-bottom: 16px;
	}
	.under__title p {
		line-height: 1.6;
	}
	.under-title__text span {
		font-size: 16px;
	}
    .under__cover{
        height: 254px;
    }


	/* =========================
	SP下部ボタン
	============================ */
	.bottom_menu {
		display: none;
		width: 100%;
		height: 66px;
		z-index: 1000;
	}
	.bottom_menu a {
		width: 25%;
		height: 100%;
		background-color: #132B51;
		border-right: 1px solid #fff;
        text-decoration: none;
	}
	.bottom_menu a:last-of-type {
		border-right: none;
	}
	.bottom_menu .bottom_btn {
		width: 100%;
		height: 66px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-top: 2px;
        line-height: 35px;
	}
	.bottom_menu .bottom_btn_txt {
		text-align: center;
		font-size: 12px;
		line-height: 1.2em;
		color: #FFFFFF;
		font-weight: bold;
	}
	.bottom_menu .bottom_btn_img {
		height: 27px;
		margin-bottom: 12px;
	}
	.bottom_menu .bottom_btn_img {
		margin-bottom: 12px;
	}
	.bottom_menu .bottom_btn_img img {
		width: auto;
		height: 100%;
		margin: auto;
        display: inline;
	}

	@media screen and (max-width: 500px) {
		.bottom_menu {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
			-ms-flex-pack: center;
			justify-content: center;
			-webkit-box-align: center;
			-ms-flex-align: center;
			align-items: center;
			position: fixed;
			bottom: 0;
		}
	}
    #pagetop{
        position: fixed;
        bottom: 78px;
        right: 12px;
        width: 48px;
        line-height: 48px;
        text-align: center;
        color: #fff;
        background-color: #E12612;
        border-radius: 50%;
        z-index: 1;
    }
}

/* =========================
animation
============================ */
@keyframes fadeIn{
    0%{
        opacity: 0;
        transform: scale(0.95);
    }
    100%{
        opacity: 1;
        transform: scale(1);
    }
}

.animation--fadeIn{
    opacity: 0;
    transform: scale(0.95);
}
.animation--fadeIn.active{
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

@keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
.animation--fadeInUp{
    opacity: 0;
    transform: translateY(10px);
}
.animation--fadeInUp.active{
    animation: fadeInUp 0.5s ease-in-out forwards;
}

@keyframes fadeInLeft{
    0%{
        opacity: 0;
        transform: translateX(-20px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.animation--fadeInLeft{
    opacity: 0;
    transform: translateX(-20px);
}
.animation--fadeInLeft.active{
    animation: fadeInLeft 0.5s ease-in-out forwards;
}

@keyframes fadeInLeft40{
    0%{
        opacity: 0;
        transform: translateX(-50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.animation--fadeInLeft40{
    opacity: 0;
    transform: translateX(-50px);
}
.animation--fadeInLeft40.active{
    animation: fadeInLeft40 0.5s ease-in-out forwards;
}

@keyframes fadeInRight{
    0%{
        opacity: 0;
        transform: translateX(20px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.animation--fadeInRight{
    opacity: 0;
    transform: translateX(20px);
}
.animation--fadeInRight.active{
    animation: fadeInRight 0.5s ease-in-out forwards;
}

@keyframes fadeInRight50{
    0%{
        opacity: 0;
        transform: translateX(50px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
}
.animation--fadeInRight50{
    opacity: 0;
    transform: translateX(50px);
}
.animation--fadeInRight50.active{
    animation: fadeInRight50 0.5s ease-in-out forwards;
}



/* =========================
タブレットのみ
============================ */
.tablet-newline {
  display: none; 
}
@media (max-width: 1290px) and (min-width: 737px) {
  .tablet-newline {
    display: inline;
  }
}

.summaryContent img{
    margin-bottom: 40px;
}
.summaryContent__item{
    margin-bottom: 64px;
}
.summaryContent__item:last-child{
    margin-bottom: 80px;
}
.summaryContent__text{
    margin-bottom: 20px !important;
}
.summaryContent__buttonList{
    display: flex;
    flex-wrap: wrap;
}
.summaryContent__buttonList li{
    width: calc((100% - 40px) / 2);
    margin-top: 20px;
    margin-right: 40px;
}
.summaryContent__buttonList li:nth-of-type(2n){
    margin-right: 0;
}
.summaryContent__buttonList li:nth-of-type(1),
.summaryContent__buttonList li:nth-of-type(2){
    margin-top: 0;
}
.summaryContent__button{
    width: 100%;
    display: block;
    padding: 27px 35px;
    line-height: 1.4;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s;
    background: url(../img/template-base/icn_arrow_02.svg) no-repeat center right 20px / 7px 11px;
}
.summaryContent__button:hover{
    color: #E12612 !important;
    text-decoration: none !important;
    opacity: 1 !important;
}
.summaryContent__button:after{
    margin-left: 5px !important;
    height: 12px !important;
}
.summaryContent__underButtonText{
    margin-top: 10px !important;
    font-size: 14px;
    line-height: 1.4;
}
#gaiyou.under__cover{
    background: url(../img/under-cover/gaiyou.jpg?) no-repeat center top 50% / 100% auto;
}
#jugyouryo.under__cover{
    background: url(../img/under-cover/jugyouryo.jpg) no-repeat center top 40% / 100% auto;
}
#singaku-kobetsu_sodan.under__cover{
    background: url(../img/under-cover/singaku-kobetsu_sodan.jpg) no-repeat center top 50% / 100% auto;
}
@media screen and (max-width: 768px) {
    .summaryContent img{
        margin-bottom: 32px;
    }
    .summaryContent__item{
        margin-bottom: 32px;
    }
    .summaryContent__item:last-child{
        margin-bottom: 48px;
    }
    .summaryContent__buttonList{
        display: block;
    }
    .summaryContent__buttonList li{
        width: 100%;
        margin-top: 12px;
        margin-right: 0;
    }
    .summaryContent__buttonList li:nth-of-type(2){
        margin-top: 12px;
    }
    .summaryContent__button{
        padding: 24px 20px;
        font-size: 14px;
    }
    .summaryContent__button:after{
        height: 10px !important;
    }
    .summaryContent__underButtonText{
        font-size: 13px;
    }

    #gaiyou.under__cover,
    #jugyouryo.under__cover,
    #singaku-kobetsu_sodan.under__cover{
        background-size: cover;
        background-position: center center;
    }
}