@charset "UTF-8";
/* ******************************************************************

	--style katari.css--

	1. Layout setting

****************************************************************** */
.main {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
}

#pageKatari .breadcrumbs {
    position: relative;
    z-index: 999;
}

/*==================================================================
	Navi
===================================================================*/
.secNavi {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(110deg, #C6412F 15%, #BA2E35 27%, #9B003E 50%);
}

.secNavi .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1130px;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.secNavi .logo {
    display: inline-block;
}

.secNavi .logo img {
    width: 150px;
}

.naviSecconWrap {
    display: flex;
    height: 100%;
}

.naviSeccon {
    display: flex;
    height: 100%;
}

.naviSeccon > li {
    display: flex;
    align-items: center;
    height: 100%;
}

.naviSeccon > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    margin: 0 20px;
    color: #FFF !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
}

.naviSeccon > li > a.disableLink {
    opacity: 0.6;
    pointer-events: none;
}

.naviSeccon > li > a::after {
    position: absolute;
    bottom: 0;
    right: 0;
    content: "";
    width: 0;
    height: 3px;
    background-color: #FFF;
    transition: width .3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

.hamburgerSeccon {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 44px;
    padding-left: 10px;
    caret-color: transparent;
    
    span {
        display: block;
        position: absolute;
        width: 20px;
        height: 2px;
        border-radius: 20px;
        background-color: #FFF;
        transition: 0.2s transform;
    }

    span:nth-child(1) {
        top: 17px;
    }

    span:nth-child(2) {
        top: 23px;
    }

    span:nth-child(3) {
        top: 29px;
        right: 20px;
        width: 14px;
    }
}

.hamburgerSeccon.active {
    span:nth-child(1) {
        transform: rotate(40deg);
        top: 21px;
    }

    span:nth-child(2) {
        opacity: 0;
    }

    span:nth-child(3) {
        top: 21px;
        width: 20px;
        transform: rotate(-40deg);
    }
}

@media (min-width: 1024px) {
    .naviSeccon > li > a:hover::after {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .naviSeccon > li > a {
        margin: 0 10px;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .naviSecconWrap {
        min-height: 80px !important;
    }
}

@media (max-width: 767px) {
    .secNavi {
        height: 44px;
    }

    .secNavi .logo img {
        width: 91px;
    }

    .naviSecconWrap {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        background-color: #4978ae;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .naviSeccon {
        flex-direction: column;
        width: 100%;
    }
    
    .naviSeccon > li {
        width: 100%;
        border-bottom: 1px solid #C6412F;
        background-color:#9B003E;
        height: max-content;
    }

    .naviSeccon > li:last-child {
        border-bottom: 0;
    }
    
    .naviSeccon > li > a {
        justify-content: center;
        width: 100%;
        margin: 0;
        font-size: 13px;
        padding: 13px;
    }

    .hamburgerSeccon {
        display: block;
    }
}


/*==================================================================
	Keyv
===================================================================*/
.keyvKatari {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    max-width: 1500px;
    margin: 0 auto;
    background-color: #FFF;
}

.keyvKatariImg {
    width: 48%;
    display: flex;
    justify-content: center;
}

.keyvKatariImg img {
    display: block;
}

.carouselKeyvWrap {
    width: 48%;
}

.carouselKeyv  {
    overflow: hidden;
    border-radius: 30px;
    height: 100%;
}

.carouselKeyv .splide__track {
    height: 100%;
 }

.carouselKeyv .item {
    height: 100%;
}

.carouselKeyv .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carouselKeyv .splide__pagination {
    padding: 0;
    bottom: 12px;
}

.carouselKeyv .splide__pagination li .splide__pagination__page {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transform: none;
    opacity: 1;
    background-color: #FFF;
    caret-color: transparent;
    cursor: pointer;
}

.carouselKeyv .splide__pagination li .splide__pagination__page.is-active {
    background: linear-gradient(135deg, rgba(198,65,47,1) 0%, rgba(186,46,53,1) 40%, rgba(155,0,62,1) 100%);
}

@media (max-width: 1200px) {
    .keyvKatariImg {
        height: 42vw;
    }
}

@media (max-width: 767px) {
    .keyvKatari {
        flex-direction: column-reverse;
        padding: 0 0 45px 0;
    }

    .keyvKatariImg {
        width: 100%;
        padding: 30px 20px 0 20px;
        height: auto;
    }

    .carouselKeyvWrap {
        width: 100%;
    }

    .carouselKeyv  {
        border-radius: 0;
    }

    .carouselKeyv .splide__pagination {
        bottom: 20px;
    }
}

/*==================================================================
	Section 10
===================================================================*/
.subTtl {
    font-size: 16px;
    color: #444444;
    text-align: center;
    margin: 0 auto 30px;
    line-height: 1.625;
}

.infoWrap {
    padding-bottom: 30px;
}

.infoItem{
    width: calc(100% / 3 - 19px);
    border: 1px solid #D8D8D8;
    border-radius: 14px;
    padding: 24px 36px 40px;
    background-color: #fff;
}

.infoItem.sp {
    display: block;
}

.infoPoint{
    padding: 6px 13px;
    font-size: 15px;
    font-weight: bold;
    width: max-content;
    margin: 0 auto 10px;
    color: #fff;
    text-transform: uppercase;
    background: rgb(198,65,47);
    background: linear-gradient(135deg, rgba(198,65,47,1) 0%, rgba(186,46,53,1) 40%, rgba(155,0,62,1) 100%);
}

.infoTtl{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

.infoLine {
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 10px solid #B32437;
}

.infoImg{
    margin-bottom: 12px;
    text-align: center;
}

.infoDesc{
    font-size: 14px;
    line-height: 1.71;
    color: #444444;
}

.infoNote{
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.81;
    color: #444444;
}

.infoWrap .splide {
    visibility: visible;
}

.infoWrap .splide__list {
    display: flex !important;
    gap: 28px;
}

@media (max-width: 1024px) {
    .infoWrap .splide__list {
        gap: 20px;
    }

    .infoItem{
        width: calc(100% / 3 - 10px);
        padding: 24px 20px 40px;
    }

    .infoItem.spaceCustom {
        padding: 24px 40px 40px 20px;
    }
}

@media (max-width: 767px) {
    .subTtl {
        font-size: 14px;
        margin: 0 auto 30px;
    }

    .infoWrap {
        display: block;
    }

    .infoWrap .splide__list {
        gap: unset;
    }

    .infoItem {
        width: 100%;
        padding: 24px 20px 20px !important;
    }

    .infoItem.center {
        text-align: center;
    }

    .infoBox {
        display: inline-flex;
        flex-direction: column;
        margin-bottom: 35px;
    }

    .infoBoxItem {
        display: flex;
        align-items: center;
        margin-bottom: 13px;
    }

    .infoPoint2 {
        margin-right: 10px;
        padding: 5px 7px 5px 7px;
        font-size: 12px;
        font-weight: bold;
        width: max-content;
        min-width: 70px;
        color: #fff;
        text-transform: uppercase;
        background: rgb(198,65,47);
        background: linear-gradient(135deg, rgba(198,65,47,1) 0%, rgba(186,46,53,1) 40%, rgba(155,0,62,1) 100%);
    }

    .infoTtl2 {
        position: relative;
        width: fit-content;
        margin: 0 auto 25px;
        padding-bottom: 5px;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.4;
        color: #000;
        text-align: center;
    }

    .infoTtl2::after {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: #B32437;
        content: '';
    }

    .infoTtl3 {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.5;
        color: #000;
    }

    .infoMore {
        width: fit-content;
        min-height: 20px;
        margin: 40px auto 0;
        padding-right: 30px;
        color: #000;
        font-size: 14px;
        line-height: 1.5;
        font-weight: 500;
        background: url(/public/katari/img/icon_arrow_03.svg) no-repeat right 0 top 50%;
        background-size: 14px auto;
    }

    .infoWrap .splide__pagination {
        padding: 0;
        bottom: -40px;
    }

    .infoWrap .splide__pagination li .splide__pagination__page {
        width: 12px;
        height: 12px;
        margin: 0 6px;
        transform: none;
        opacity: 1;
        background-color: #D8D8D2;
        caret-color: transparent;
        cursor: pointer;
    }

    .infoWrap .splide__pagination li .splide__pagination__page.is-active {
        background: linear-gradient(135deg, rgba(198,65,47,1) 0%, rgba(186,46,53,1) 40%, rgba(155,0,62,1) 100%);
    }
}

/*==================================================================
	Section 02
===================================================================*/
.wrapperSection03 {
	background-color: #F7F7F7;
}
.section11 {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}
.headline18 {
	font-weight: 500;
	text-align: center;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 32px;
    color: #1d1d1d;
}
.headline18::before {
    position: absolute;
    border-bottom: 2px solid #B02335;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    content: '';
}
.lectureWrap {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
    display: block;
	margin-bottom: 50px;
    text-decoration: none;
}
.lectureWrap:last-child {
	margin-bottom: 0;
}
.lectureInner {
	background-color: #fff;
	border: 1px solid #D8D8D8;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom: none;
    position: relative;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	padding: 47px 48px 45px;
}
.lectureImg {
	text-align: center;
	max-width: 520px;
	width: 100%;
}
.lectureInfo {
	max-width: 430px;
	width: 100%;
}
.lectureTtl1 {
	margin-bottom: 10px;
}
.lectureTtl1 h3 {
	color: #000;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: -1.5px;
}
.lectureTtl1 span {
	display: block;
	color: #B02335;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
}
.lectureTtl2 {
	border-left: 4px solid #B02335;
	padding: 2px 0 2px 15px;
	margin-bottom: 20px;
}
.lectureTtl2 h4 {
	color: #000;
	font-size: 18px;
	margin-bottom: 8px;
}
.lectureTtl2 span {
	display: block;
	color: #000;
	font-size: 14px;
}
.lectureTxt {
	color: #444;
	font-size: 14px;
	padding: 0 4px;
	line-height: 1.75;
	display: -webkit-box;
  	-webkit-line-clamp: 3;
  	-webkit-box-orient: vertical;
  	overflow: hidden;
}
.lectureDetail {
	background-color: #AF2341;
    border: 1px solid #AF2341;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    border-top: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
    height: 70px;
}
.lectureDetail span {
	display: inline-block;
	background-image: url(/public/katari/img/icon_arrow01.svg);
	background-repeat: no-repeat;
	background-position: 100% 50%;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	min-width: 290px;
	padding-right: 30px;
	line-height: 1.5;
	text-decoration: none;
}
@media (min-width: 1024px) {
    .lectureWrap:hover .lectureInner {
        border-color: #961c36;
    }
    .lectureWrap .lectureInner::after {
        content: '';
        position: absolute;
        inset: 0;
        box-shadow: inset 0 1px 0 3px #961c36;
        top: -1px;
        bottom: -3px;
        opacity: 0;
        border-top-left-radius: 14px;
        border-top-right-radius: 14px;
        transition: all .3s linear;
        pointer-events: none;
    }
    .lectureWrap:hover .lectureInner::after {
        opacity: 1;
    }
    .lectureWrap:hover .lectureDetail {
        background-color: #961c36;
    }
}
@media (max-width: 1050px) {
	.lectureInner {
		gap: 4vw;
		padding: 30px;
	}
	.lectureTtl1 h3 {
		font-size: 2.28vw;
	}
}

@media (max-width: 767px) {
	#contents {
		margin-bottom: 40px;
	}
	.headline18 {
		font-size: 24px;
	}
	.lectureWrap {
		margin-bottom: 25px;
	}
	.lectureInner {
		gap: 16px;
		padding: 20px;
		flex-direction: column;
	}
	.lectureImg {
		max-width: 100%;
	}
	.lectureInfo {
		max-width: 100%;
	}
	.lectureTtl1 h3 {
		font-size: 16px;
		letter-spacing: 0;
	}
	.lectureTtl1 span {
		font-size: 12px;
	}
	.lectureTtl2 {
		border-width: 2px;
		padding: 2px 0 2px 9px;
		margin-bottom: 14px;
	}
	.lectureTtl2 h4 {
		font-size: 14px;
	}
	.lectureTtl2 span {
		font-size: 12px;
	}
	.lectureTxt {
		-webkit-line-clamp: 4;
		line-height: 1.68;
	}
	.lectureDetail {
		height: 50px;
	}
	.lectureDetail span {
		font-size: 15px;
		min-width: 234px;
	}
}
@media (max-width: 400px) {
	.lectureTtl1 h3 {
		font-size: 3.9vw;
	}
}

/*==================================================================
	Section 03
===================================================================*/
.plan {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	margin: 0 auto 60px;
    width: 80%;
}
.planInner {
	border: 2px solid #AC1938;
	padding: 30px 40px;
	width: 50%;
}
.planHead {
	border-bottom: 1px solid #C4C4C4;
	padding-bottom: 13px;
	margin: 0 auto 20px;
	max-width: 390px;
	width: 100%;
	text-align: center;
}
.planTtl {
	background: rgb(198,65,47);
    background: linear-gradient(135deg, rgba(198,65,47,1) 0%, rgba(186,46,53,1) 40%, rgba(155,0,62,1) 100%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 27px;
	margin-bottom: 25px;
}
.planTtl span {
	color: #fff;
	font-size: 26px;
	font-weight: 500;
}
.txtHead {
	color: #000;
	font-size: 20px;
	padding-bottom: 6px;
}
.feeTxt {
	color: #AC1938;
	font-size: 40px;
	font-weight: bold;
}
.txtNum {
	font-size: 51px;
	font-weight: 500;
}
.txtStyle1 {
	font-size: 20px;
}
.txtStyle2 {
	display: inline-block;
	color: #444;
	font-size: 11px;
	font-weight: normal;
	padding-left: 10px;
}
.planContent {
	padding: 0 5px;
	margin: 0 auto;
	max-width: 390px;
	width: 100%;
}
.txtList li {
	background: url(/public/katari/img/icon_check01.svg) no-repeat 0 50%;
	color: #000;
	font-size: 16px;
	padding-left: 30px;
	line-height: 1.6;
	margin-bottom: 8px;
}
.txtList li:last-child {
	margin-bottom: 0;
}
.txtNote {
	padding-top: 14px;
}
.txtNote li {
	color: #000;
	font-size: 12px;
	line-height: 1.3;
	margin-bottom: 3px;
}
.btnCheckOut {
	text-align: center;
}
.button09 {
	display: inline-block;
	background-color: #F7F7F7;
	background-image: url(/public/katari/img/icon_arrow02.svg);
	background-repeat: no-repeat;
	background-position: 7% 50%;
	border: 1px solid #D8D8D8;
	border-radius: 10px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding: 27px 20px 27px 60px;
	max-width: 440px;
	width: 100%;
	text-decoration: none;
	transition: all 0.2s ease 0s;
}
.button09:link {
	color: #000;
}
.btnCheckOut .button09:hover {
	color: #AC1938;
}

@media (max-width: 1024px) {
	.plan {
		gap: 45px;
        width: 90%;
	}
	.planInner {
		padding: 20px;
	}
	.planTtl span {
		font-size: 22px;
	}
	.txtHead {
		font-size: 1.93vw;
	}
	.feeTxt {
		font-size: 33px;
	}
	.txtNum {
		font-size: 42px;
	}
	.txtStyle1 {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.plan {
		flex-direction: column;
		margin-bottom: 40px;
        width: 100%;
	}
	.planInner {
		width: 100%;
	}
	.planHead {
		max-width: 100%;
	}
	.planTtl {
		padding: 7px 24px;
		margin-bottom: 20px;
	}
	.txtHead {
		font-size: 20px;
		padding-bottom: 4px;
	}
	.planContent {
		padding: 0 2px;
		max-width: 100%;
	}
	.button09 {
		background-position: 6% 50%;
		font-size: 16px;
		padding: 21px 15px 21px 45px;
		max-width: 340px;
	}
}

/*==================================================================
	Faq
===================================================================*/
.askList {
	padding-bottom: 35px;
}
.askItem {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);
	border: 1px solid #D8D8D8;
	border-radius: 14px;
	margin-bottom: 30px;
}
.askTtl {
	background-image: url(/public/katari/img/icon_q.svg);
	background-repeat: no-repeat;
	background-position: left 37px top 50%;
	background-size: 27px 27px;
	color: #000;
	cursor: pointer;
	font-size: 18px;
	position: relative;
	padding: 24px 80px;
	line-height: 1.6;
}
.askTtl::before,
.askTtl::after {
	content: "";
	background-color: #AC1938;
	border-radius: 10px;
	display: block;
	outline: none;
	width: 29px;
	height: 4px;
	position: absolute;
	right: 34px;
	top: 48%;
	transition: transform .3s;
}
.askTtl::before {
	transform: rotate(-90deg);
}
.askTtl.active::before {
	transform: rotate(0);
}
.askContent {
	display: none;
	padding: 0 75px 23px;
}
.askContent p {
	font-size: 16px;
	line-height: 1.6;
	padding-bottom: 20px;
}
.askContent p a,
.askContent ul li a {
	color: #AC1938;
	text-decoration: none;
}
.askContent p a:hover,
.askContent ul li a:hover {
	color: #AC1938;
	text-decoration: underline;
}
.askContentList {
    margin-bottom: 20px;
}
.askContentList li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
	.askList {
		padding-bottom: 0;
	}
	.askTtl {
		background-position: left 17px top 50%;
		background-size: 21px 21px;
		font-size: 14px;
		padding: 18px 50px;
		line-height: 1.4;
	}
	.askTtl::before,
	.askTtl::after {
		width: 22px;
		height: 3px;
		right: 18px;
	}
	.askContent {
		padding: 0 26px 15px;
		line-height: 1.4;
	}
	.askContent p,
    .askContentList li {
		font-size: 14px;
	}
    .overlayKatari {
        display:none;
        visibility: hidden;
        position:fixed;
        width: 100%;
        height: 100%;
        top:0;
        bottom:0;
        left:0;
        right:0;
        z-index:9;
        background-color: #000;
        opacity: 0;
        transition: all 2s ease;
    }
    .overlayKatari.active {
        display: block;
        visibility: visible;
        opacity: 0.5;
    }
}
#pageKatari #header {
    position: absolute;
}

/*==================================================================
    Google Forms
===================================================================*/
@media screen and (max-width: 765px) {
    .formBlock .formContent.formKatari {
        height: 1500px;
    }
    .formBlock .formContent.formKatari iframe {
        width: 100%;
        height: 100%;
        border: none;
        overflow: hidden;
    }
}
@media screen and (max-width: 600px) {
    .formBlock .formContent.formKatari {
        height: 1600px;
    }
}
@media screen and (max-width: 500px) {
    .formBlock .formContent.formKatari {
        height: 1700px;
    }
}
@media screen and (max-width: 340px) {
    .formBlock .formContent.formKatari {
        height: 1820px;
    }
}