@charset "utf-8";
/* {outline: 1px solid magenta;}*/
:root{
	--black: #000;
    --back: #f0f0f0;
    --ash: #939393;
	--green: #a0d137;
    --gray: #585858;
    --shokyu: #a0d137;
    --chukyu: #6cc828;
    --jyokyu: #21bd42;
    --shokyu2: #3bd75e;
    --jyokyu2: #04bf76;
    --red: rgba(225,70,60,1);
    --dgreen: #08935d;
}
@font-face {
    font-family: "notosans-700";
    src: url("../font/noto-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "notosans-900";
    src: url("../font/noto-900.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "oswald-700";
    src: url("../font/oswald-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
	font-family: "noto-700", sans-serif;
    font-weight: 700;
}
html,body{
    background: #f0f0f0;
}
body{
    font-family: "notosans-700", sans-serif;
    font-weight: 700;
}
.en{
    font-family: "oswald-700";
}
h1,h2,h3,h4,h5,h6{
    font-style: italic;
}
p,dt,dd,tr,th,td,li,a,b,em,span,strong,div,img,header,section,article,nav,footer,h1,h2,h3,h4,h5,h6,button{
	font-size: clamp(14px, 1.1vw, 16px);
	line-height: 1.8;
}
p{
	margin: 0 0 1em;
}
p:last-child{
	margin-bottom: 0;
}
body {
	position: relative;
	width: 100%;
}
.wrapper{
	width: 90%;
	margin-inline: auto !important;
}
.wrap{
	width: 90%;
	max-width: 1480px;
	margin-inline: auto !important;
}
.page-h2{
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 1em;
    text-align: center;
}
.shadow{
    position: relative;
}
.shadow:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 75%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.shadow small{
    position: absolute;
    left: 1em;
    bottom: 1em;
    color: #fff;
    z-index: 2;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.btn-a{
    display: inline-block;
    background: var(--black);
    padding: 0.5em;
    width: 15em;
    text-align: center;
    font-style: italic;
    z-index: 0;
    position: relative;
    color: #fff;
}
.btn-a b{
    color: #fff;
    position: relative;
    z-index: 2;
}
.btn-a:before{
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    background: var(--green);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.2s all ease;
}
.btn-a:hover b{
    color: var(--black);
}
.btn-a:hover:before{
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 680px) {
    .page-h2{
        margin: 0.5em auto 1em;
    }
}
@media screen and (max-width: 980px) {     p,dt,dd,tr,th,td,li,a,b,em,span,strong,div,img,header,section,article,nav,footer,h1,h2,h3,h4,h5,h6,button{
            line-height: 1.7;
        }
}


/*HEADER*/
.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    position: sticky;
    top: 0;
    left: 0;
}
.header.home{
    position: fixed;
}
.header-a{
    display: flex;
    align-items: center;
    padding: 1em;
}
.header-img{
    width: clamp(100px, 10vw, 150px);
    display: block;
    margin-right: 5px;
}
.header-h1 small{
    display: block;
    font-size: clamp(11px, 0.9vw, 13px);
    color: var(--black);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 0.5em -6em;
    text-align: right;
}
.header-h1 b{
    font-size: clamp(18px, 1.4vw, 21px);
    color: var(--black);
    font-weight: 700;
    line-height: 1;
    display: block;
    white-space: nowrap;
}
.gnav{
    display: flex;
    align-items: center;
    background: var(--back);
    padding: 0.5em 1em;
    margin-left: auto;
}
.gnav-a{
    color: var(--black);
    padding: 0 0.9em;
    font-size: clamp(13.5px, 1vw, 16px);
}
.gnav-home,
.gnav-a span{
    display: none;
}
.gnav-a.current,
.gnav-a:hover{
    color: var(--green);
}
.gnav-a img{
    width: 1.5em;
    vertical-align: middle;
}
.gnav-a:hover img{
    filter: invert(80%) sepia(70%) saturate(354%) hue-rotate(30deg) brightness(91%) contrast(84%);
}
.gnav-trigar{
    display: none;
}
.header.sticky .header-a{
    opacity: 0;
    height: 0;
}
.header.sticky .gnav{
    background: #fff;
}
.header.sticky .gnav-home{
    display: block;
    color: var(--black) !important;
}
@media screen and (max-width: 1280px) {
    .gnav-a{
        padding: 0 0.7em;
    }
}
@media screen and (max-width: 1080px) {
    .header.sticky .gnav{
        background: var(--black);
    }
    .gnav{
        position: fixed;
        top: 0;
        right: -100%;
        width: 60vw;
        height: 100%;
        overflow: scroll;
        display: block;
        transition: 0.2s all ease;
        background: var(--black);
        padding: 50px 0;
    }
    .gnav.clicked{
        right: 0;
    }
    .gnav-a{
        display: block;
        padding: 1em 2em;
        font-size: clamp(16px, 1.4vw, 21px);
        color: #fff;
        border-bottom: 1px solid #333;
    }
    .gnav-trigar{
        display: block;
        position: relative;
        cursor: pointer;
		width: 30px;
        height: 20px;
		margin: 0 1em 0 auto;
        z-index: 1000;
    }
    .header.sticky .gnav-trigar{
        margin-top: 1.9em;
    }
	.gnav-trigar span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--black);
        transition: 0.3s ease;
	}
    .gnav-trigar span:nth-of-type(1) {
        top: 0;
    }
    .gnav-trigar span:nth-of-type(2) {
        top: 10px;
    }
    .gnav-trigar span:nth-of-type(3) {
        top: 20px;
    }
    .gnav-trigar.clicked span:nth-of-type(1) {
        transform: rotate(405deg);
        top: 5px;
        background: #fff;
    }
    .gnav-trigar.clicked span:nth-of-type(2) {
        opacity: 0;
    }
    .gnav-trigar.clicked span:nth-of-type(3) {
        transform: rotate(-405deg);
        top: 5px;
        background: #fff;
    }
    .gnav-a img{
        display: none;
    }
    .gnav-a span{
        display: block;
        color: #fff;
    }
    .gnav-home{
        display: block;
        color: #fff !important;
    }
}

/*MV*/
.mv{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.mv-catch{
    width: 45%;
    padding: 3em;
    position: relative;
    z-index: 5;
}
.mv-h2{
    background: var(--black);
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 0.2em 0 0.2em;
    font-size: clamp(16px, 1.8vw, 38px);
    margin: 0 0 0.5em 0.5em;
}
.mv-h3{
    font-size: clamp(21px, 4vw, 100px);
    font-weight: 900;
    line-height: 0.8;
    margin-right: -3.5em;
    position: relative;
    z-index: 2;
}
.mv-h3 b{
    font-size: 200%;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    padding-left: 0.9em;
    letter-spacing: -0.05em;
}
.mv-logo{
    width: 115%;
    margin-top: -4%;
    position: relative;
    z-index: 0;
}
.mv-imgs{
    width: 55%;
    display: flex;
}
.mv-img{
    position: relative;
}
.mv-img_photo{
    object-fit: cover;
    aspect-ratio: 1 / 1.8;
}
.mv-name{
    position: absolute;
    bottom: 1em;
    left: 1em;
    color: #fff;
    z-index: 2;
}
.mv-shot{
    position: absolute;
    width: 50%;
    bottom: -8em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
@media screen and (max-width: 1280px) {
    .mv-catch {
        padding: 5em 0 0 1em;
    }
    .mv-imgs img{
        aspect-ratio: 1 / 2;
    }
    .mv-h3 b {
        padding-left: 0.7em;
    }
    .mv-shot{
        width: 60%;
        bottom: -5em;
        left: 65%;
    }
}
@media screen and (max-width: 780px) {
    .mv-catch {
        width: 100%;
        padding: 6em 1em 0;
    }
    .mv-h2 {
        font-size: clamp(18px, 3.8vw, 38px);
    }
    .mv-h3 {
        font-size: 8vw;
        margin-right: 0;
    }
    .mv-logo {
        width: 100%;
        margin-top: -10%;
    }
    .mv-imgs {
        width: 100%;
        margin: -9% 0 0;
    }
    .mv-shot{
        width: 60%;
        bottom: -5em;
        left: inherit;
        right: 0;
        transform: inherit;
    }
}
/*SALES*/
.sales{
    height: 200px;
    background: var(--ash);
    position: relative;
}
.sales-a{
    display: flex;
    align-items: flex-end;
    color: #fff;
    position: absolute;
    bottom: 80px;
    left: 3em;
}
.sales-book{
    width: clamp(120px, 12vw, 200px);
    position: relative;
    z-index: 1;
}
.sales-borad{
    background: var(--black);
    padding: 1.5em 2em 1.8em 3em;
    margin: 0 0 -1em -1em;
    text-align: center;
    font-style: italic;
    z-index: 0;
    position: relative;
}
.sales-borad:before{
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    background: var(--green);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    position: absolute;
    top: 0;
    right: 0;
}
.sales-borad img{
    width: clamp(60px, 8vw, 80px);
    margin: 0 auto;
}
.sales-borad b{
    font-size: clamp(21px, 1.5vw, 28px);
    line-height: 1.5;
}
.sales-borad p{
    line-height: 1.3;
    font-size: clamp(13px, 1.1vw, 21px);
}
@media screen and (max-width: 1280px) {
    .sales {
        height: 150px;
    }
    .sales-a{
        left: 2em;
        bottom: 50px;
    }
    .sales-borad {
        padding: 1.5em 1em 1em 2em;
    }
}
@media screen and (max-width: 780px) {
    .sales{
        height: auto;
        padding: 1em 1em 2em;
    }
    .sales-a{
        position: relative;
        bottom: inherit;
        left: inherit;
    }
    .sales-borad {
        flex: 1;
    }
    .sales-borad p {
        font-size: clamp(14px, 3vw, 21px);
        display: inline-block;
        margin-left: 1em;
    }
    .sales-borad p br{
        display: none;
    }
    .sales-borad img {
        width: clamp(60px, 13vw, 80px);
    }
}
@media screen and (max-width: 580px) {
    .sales-a {
        align-items: inherit;
        padding-top: 5em;
    }
    .sales-borad {
        padding: 1em 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .sales-borad p{
        margin-left: 0;
    }
    .sales-book{
        width: clamp(100px, 12vw, 200px);
    }
}
/*HOME LECTURER*/
.home-lecturers{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.home-lecturer{
    width: 48%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.home-lecturer_item{
    margin-right: -40%;
}
.home-lecturer_img {
    clip-path:polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
}
.home-lecturer_img img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.home-lecturer_item.miyoshi{
    padding-top: 3em;
}
.home-lecturer_item.miyoshi{
    padding-top: 3em;
}
.home-lecturer_p{
    font-size: clamp(10px, 0.8vw, 14px);
    line-height: 1.3;
    margin-top: 0.5em;
    padding-right: 30%;
}
.home-lecture{
    width: 40%;
    padding-top: 3em;
}
.home-lecturer_h3{
    font-size: clamp(38px, 3vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 980px) {
    .home-lecturer{
        width: 88%;
        order: 1;
        margin-left: -3%;
    }
    .home-lecture {
        width: 100%;
        padding-top: 3em;
    }
    .home-lecturer_item.miyoshi {
        padding-top: 6em;
    }
}
@media screen and (max-width: 680px) {
    .home-lecture{
        padding-top: 0;
    }
    .home-lecturer_h3 {
        font-size: 8vw;
    }
    .home-lecturer{
        width: 100%;
        margin: 2em 0;
        display: block;
    }
    .home-lecturer_item {
        margin: 1em 0; 
        padding: 0 !important;
    }
    .home-lecturer_img img {
        aspect-ratio: 1.3 / 1;
        object-position: top center;
    }
    .home-lecturer_img {
        clip-path: inherit; 
        width: 80%;
    }
    .home-lecturer_p{
        padding: 0 !important;
    }
    .home-lecturer_item.miyoshi .home-lecturer_img{
        margin: 0 0 0 auto;
    }
    .home-lecturer_item.miyoshi .home-lecturer_p{
        text-align: right;
    }
}
@media screen and (max-width: 480px) {
    .home-lecturer_img {
        width: 90%;
    }
}
/*LECTURER*/
.lecturers{
    width: 90%;
    margin: 0 auto;
}
.lecturer-item{
    display: grid;
    grid-template-columns: clamp(250px, 40vw, 800px) 1fr;
    align-items: flex-start;
    gap: 0 2em;
    flex-wrap: wrap;
}
.lecturer-img {
    clip-path:polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
    position: relative;
    z-index: 2;
    grid-column: 1 / 2;
    grid-row: 1 / 4;
}
.lecturer-img img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.lecturer-header{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.lecturer-profile{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.lecturer-h3{
    font-size: clamp(18px, 2vw, 34px);
    line-height: 1.3;
    position: relative;
    margin-bottom: 0.5em;
}
.lecturer-h3 small{
    font-size: clamp(14px, 1.4vw, 21px);
    color: var(--ash);
    opacity: 0.6;
    letter-spacing: 0.05em;
}
.lecturer-h4{
    position: relative;
}
.lecturer-h4 b{
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    position: relative;
    z-index: 1;
}
.lecturer-h4:after{
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: var(--green);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.lecturer-target{
    background: #fff;
    padding: 0.5em 1em;
    margin: 1em 0 2em;
    line-height: 1.3;
}
.lecturer-message{
    margin: 2em 0;
}
.lecturer-message p{
    line-height: 2;
}
.lecturer-contents{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 1em;
    padding: 1em 0;
}
.lecturer-h5{
    position: relative;
    text-align: center;
    width: 7em;
}
.lecturer-h5 b{
    position: relative;
    z-index: 2;
    padding-right: 0.7em;
}
.lecturer-h5:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--green);
    padding: 0.5em;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    clip-path: polygon( 0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}
.lecturer-licenses_ul{
    flex: 1;
}
.lecturer-licenses_ul li{
    position: relative;
    padding-left: 1em;
    text-indent: -1.2em;
    line-height: 1.3;
    margin-bottom: 0.7em;
    font-size: clamp(12px, 1.1vw, 14px);
    color: var(--gray);
}
.lecturer-licenses_ul li:before{
    content: "●";
    color: var(--green);
    padding-right: 0.2em;
}
.lecturer-others{
    border-top: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1em 0 0 0;
}
.lecturer-dl{
    display: grid;
    grid-template-columns: 7em 1fr;
}
.lecturer-others dd a{
    color: var(--red);
}
.lecturer-others dd a:hover{
    text-decoration: underline;
}
.lecturer-sns{
    display: flex;
    justify-content: flex-end;
}
.lecturer-sns_a{
    content: "";
    width: 1.7em;
    height: 1.7em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}
.lecturer-sns_a[href*="youtube"] {
    background: url("../img/youtube.svg") center / contain no-repeat;
}
.lecturer-sns_a[href*="instagram"] {
    background: url("../img/instagram.svg") center / contain no-repeat;
}
.lecturer-sns_a[href*="facebook"] {
    background: url("../img/facebook.svg") center / contain no-repeat;
}
@media screen and (max-width: 980px) {
    .lecturer-item{
        grid-template-columns: clamp(220px, 29vw, 800px) 1fr;
    }
    .lecturer-img {
        clip-path: inherit;
    }
    .lecturer-img img{
        aspect-ratio: 1 / 1.618;
    }
    .lecturer-message p{
        line-height: 1.7;
        margin-bottom: 0.7em;
    }
}
@media screen and (max-width: 780px) {
    .lecturer-item{
        grid-template-columns: 1fr;
    }
    .lecturer-header{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        margin-bottom: 2em;
    }
    .lecturer-img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .lecturer-profile{
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .lecturer-img img{
        aspect-ratio: 1.618 / 1;
        object-position: center top;
    }
    .lecturer-h4 b {
        font-size: clamp(21px, 5vw, 48px);
    }
}
@media screen and (max-width: 480px) {
    .lecturer-contents{
        display: block;
    }
    .lecturer-h5{
        margin-bottom: 1em;
    }
}

/*HOME GRADUATES*/
.home-graduate{
    position: relative;
}
.home-graduate:before,
.home-graduate:after{
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.home-graduate:before{
    background: rgba(0,0,0,0.2);
    z-index: 1;
}
.home-graduate:after{
    background: url("../img/graduate_back.webp") bottom / cover no-repeat;
    z-index: 0;
}
.home-graduate_h3 {
    font-size: clamp(38px, 3vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5em;
    text-align: center;
}
.home-graduate_lead{
    text-align: center;
}
.home-graduate_ul{
    width: 90%;
    max-width: 1480px;
    margin: 3em auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:3em;
    position: relative;
    z-index: 2;
}
.home-graduate_ul li {
  display: flex;
  flex-direction: column;
}
.home-graduate_program{
    width: 90%;
    margin: -2em auto 1em;
    background: #fff;
    padding: 0.5em 1em;
    position: relative;
    z-index: 3;
    text-align: center;
    border-top: 7px solid var(--green);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-graduate_program span{
    margin: 0 auto 5px;
}
.home-graduate_name{
    margin-bottom: 0;
    font-size: clamp(16px, 1.4vw, 18px);
}
.home-graduate_copy{
    text-align: left;
    line-height: 1.4;
    font-weight: 500;
    margin: 1em 0 !important;
}
.home-graduate_btn{
    position: relative;
    z-index: 3;
}
@media screen and (max-width: 1280px) {
    .home-graduate_ul{
        margin: 3em auto;
        gap:1em;
    }
}
@media screen and (max-width: 980px) {
    .home-graduate_ul{
        display: block;
    }
    .home-graduate_ul li{
        display: flex;
        flex-direction: row;
        margin-bottom: 2em;
    }
    .home-graduate_img{
        width: clamp(80px, 35vw, 200px);
    }
    .home-graduate_program {
        display: block;
        width: 100%;
        margin: 0;
        padding: 2em;
        text-align: left;
    }
    .home-graduate_program span{
        display: inline-block;
        margin: 0 0 5px;
    }
    .home-graduate_copy{
        font-size: clamp(16px, 2vw, 24px);
        font-weight: 700;
        line-height: 1.3;
        margin: 0.5em 0 !important;
    }
}
@media screen and (max-width: 780px) {
    .home-graduate_program {
        padding: 1em;
    }
}
@media screen and (max-width: 580px) {
    .home-graduate_h3 {
        font-size: 7vw;
    }
    .home-graduate_lead{
        width: 90%;
        text-align: left;
        margin: 0 auto;
    }
    .home-graduate_lead br{
        display: none;
    }
    .home-graduate_ul{
        margin: 1em auto 2em;
    }
    .home-graduate_ul li{
        flex-wrap: wrap;
    }
    .home-graduate_img{
        width: 100%;
        order: 1;
    }
    .home-graduate_img img{
        object-fit: cover;
        aspect-ratio: 1.3 / 1;
        object-position: top;
    }
    .home-graduate_copy{
        font-size: clamp(21px, 2vw, 24px);
        line-height: 1.2;
        margin: 0.3em 0 !important;
    }
}
/*GRADUATES*/
.graduate-item{
    width: 90%;
    margin: 0 auto;
    padding: 5em;
    background: #fff;
    display: grid;
    grid-template-columns: clamp(150px, 20vw, 340px) 1fr 1fr;
    gap: 0 3em;
}
.graduate-img{
    grid-column: 1 / 2;
    grid-row: 1 / 4;
}
.graduate-header{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.graduate-basic,
.graduate-advanced{
    display: inline-block;
    line-height: 0.7;
    padding: 0.6em 1.5em;
    border-radius: 3em;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-size: clamp(12px, 1.1vw, 14px);
    width: 18em;
    text-align: center;
    margin: 0 2px 3px 0;
}
.graduate-basic{
    background: var(--chukyu);
}
.graduate-advanced{
    background: var(--jyokyu2);
}
.graduate-h3{
    font-size: clamp(21px, 2vw, 38px);
    color: var(--black);
    line-height: 1.2;
    font-weight: 900;
    margin: 0.5em 0;
}
.graduate-name{
    font-size: clamp(16px, 1.5vw, 24px);
}
.graduate-profile_ul{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: #f0f0f0;
    padding: 1.5em 2em;
    margin: 1em 0;
}
.graduate-profile_ul li{
    font-size: clamp(12px, 1.1vw, 14px);
    padding-left: 1.2em;
    text-indent: -1em;
    line-height: 1.3;
    margin-bottom: 0.7em;
}
.graduate-profile_ul li:last-child{
    margin-bottom: 0;
}
.graduate-profile_ul li:before{
    content: "・";
}
.graduates-feedback{
    grid-column: 3 / 4;
    grid-row: 1 / 4;
}
@media screen and (max-width: 1680px) {
    .graduate-item{
        grid-template-columns: clamp(180px, 20vw, 340px) 1fr;
    }
    .graduates-feedback{
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}
@media screen and (max-width: 1280px) {
    .graduate-item{
        padding: 3em 2em;
        gap: 0 2em;
    }
}
@media screen and (max-width: 980px) {
    .graduate-img{
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .graduate-profile_ul{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .graduates-feedback{
        margin-top: 2em;
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}
@media screen and (max-width: 680px) {
    .graduate-img{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .graduate-profile_ul{
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        margin: 2em 0 0;
    }
}
@media screen and (max-width: 580px) {
    .graduate-item{
        grid-template-columns: 1fr;
        padding: 2em 1em;
    }
    .graduate-header{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .graduate-img{
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .graduate-profile_ul{
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        padding: 1.5em 1em;
    }
    .graduates-feedback{
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    .graduate-name {
        font-size: clamp(18px, 5vw, 24px);
        text-align: right;
    }
    .graduate-img img{
        object-fit: cover;
        aspect-ratio: 1 / 1.2;
    }
}

/*HOME PROGRAM*/
.home-program{
    background: var(--black);
}
.home-program .page-h2,
.home-program .program-lead{
    color: #fff;
}
.home-program .btn-a{
    background: #fff;
}
.home-program .btn-a b{
    color: var(--black);
}
/*PROGRAM*/
.program .page-h2 br{
    display: none;
}
.program-lead{
    text-align: center;
    width: 90%;
    margin: 0 auto 1em;
}
.program-list{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.program-list_item{
    display: flex;
    margin-bottom: 5px;
    color: var(--black);
}
.program-list_step{
    width: 9em;
    background: var(--ash);
    display: flex;
    align-items: center;
    justify-content: center;
}
.advanced .program-list_step{
    background: var(--gray);
}
.program-list_step small,
.program-list_step b{
    display: block;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-family: "oswald-700";
    font-weight: 700;
}
.program-list_step small{
    font-size: clamp(24px, 2.1vw, 38px);
}
.program-list_step b{
    font-size: clamp(40px, 5vw, 68px);
}
.program-list_img{
    width: 15em;
    background-position: center;
    background-size: cover;
}
.program-list_title{
    flex: 1;
    background: #fff;
    padding: 2.5em 2em;
}
.program-list_h4{
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.3em;
}
.program-list_h4 b{
    display: inline-block;
    width: 5em;
    text-align: center;
    border-radius: 3em;
    font-size: clamp(16px, 1.4vw, 18px);
    margin-left: 5px;
    font-style: normal;
}
.program-list_h4 .shokyu{
    background: var(--shokyu);
}
.program-list_h4 .chukyu{
    background: var(--chukyu);
}
.program-list_h4 .jyokyu{
    background: var(--jyokyu);
}
.program-list_h4 .shokyu2{
    background: var(--shokyu2);
}
.program-list_h4 .jyokyu2{
    background: var(--jyokyu2);
}
.program-list_title p{
    line-height: 1.4;
    color: var(--gray);
}
.program-list_detail{
    width: 19em;
    background: #dfdfdf;
    padding: 2em;
    display: flex;
    align-items: center;
}
.program-list_detail dl{
    display: grid;
    grid-template-columns: 5em 1fr;
}
.program-list_detail dt,
.program-list_detail dd,
.program-list_detail dd p{
    line-height: 1.4;
}
.program-list_detail dd br{
    display: none;
}
.program-list_detail dd small{
    display: none;
}
.program-mv{
    width: 90%;
    margin: 0 auto;
}
.program-mv img{
    object-fit: cover;
    aspect-ratio: 4.5 / 1;
}
.program-point{
    display: flex;
    justify-content: center;
    gap:0 5px;
    margin-top: -2em;
}
.program-point a{
    width: 8em;
    height: 8em;
    background: var(--shokyu);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    color: #fff;
    position: relative;
    font-size: clamp(13px, 1.3vw, 16px);
}
.program-point a:after{
    content: "";
    display: block;
    width: 7.2em;
    height: 7.2em;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.advanced .program-point a{
    background: var(--jyokyu2);
}
.program-point a:hover{
    background: var(--black);
    color: #fff;
}
.program-target{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.program-h3{
    display: inline-block;
    line-height: 0.8;
    padding: 1em 2em;
    color: #fff;
    margin: 0 auto -1.5em;
    position: relative;
    z-index: 2;
}
.program-h3 br{
    display: none;
}
.basic .program-h3{
    background: var(--shokyu);
}
.advanced .program-h3{
    background: var(--jyokyu2);
}
.program-target_content{
    background: #fff;
    padding: 2.5em 2em 1.5em;
    border: 1px solid var(--gray);
    width: 90%;
    max-width: 680px;
    text-align: center;
}
.program-target_ul{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.program-target_ul li{
    text-align: left;
    margin: 0.5em 0;
    padding-left: 2em;
    text-indent: -1.5em;
    line-height: 1.3;
}
.program-target_ul li:before{
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 1em;
    transform: rotate(45deg);
    margin-right: 0.7em;
    vertical-align: text-top;
}
.basic .program-target_ul li:before{
    border-right: 5px solid var(--shokyu);
    border-bottom: 5px solid var(--shokyu);
}
.advanced .program-target_ul li:before{
    border-right: 5px solid var(--jyokyu2);
    border-bottom: 5px solid var(--jyokyu2);
}
.program-detail{
    width: 90%;
    margin: 0 auto;
}
.program-detail_item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.program-detail_img{
    width: 55%;
    margin-right: 5%;
}
.program-detail_img img{
    object-fit: cover;
    aspect-ratio: 2 / 1;
    object-position: bottom;
}
.program-detail_content{
    flex: 1;
    max-width: 680px;
}
.program-detail_h3{
    font-size: clamp(24px, 2.1vw, 38px);
    font-weight: 900;
    margin-bottom: 0.5em;
    line-height: 1.2;
}
.program-detail_h3 b{
    color: var(--shokyu);
    font-size: clamp(24px, 2.1vw, 38px);
    font-weight: 900;
    line-height: 1.2;
}
.advanced .program-detail_h3 b{
    color: var(--jyokyu2);
}
.program-detail_sub{
    margin-bottom: 2em;
    background: var(--black);
    color: #fff;
    padding: 0.5em 1em 0.5em 2.2em;
    text-indent: -1.2em;
    line-height: 1.3;
}
.program-detail_sub:before{
    content: "●";
    color: var(--shokyu);
    padding-right: 0.2em;
}
.advanced .program-detail_sub:before{
    color: var(--jyokyu2);
}
.program-detail_item:nth-of-type(even) .program-detail_img{
    order: 1;
    margin-right: 0;
    margin-left: 5%;
}
.program-skills{
    background: var(--black);
    padding: 5em 0 8em;
}
.program-skills_h3{
    color: #fff;
    font-size: clamp(21px, 2vw, 34px);
    text-align: center;
    margin-bottom: 1em;
    line-height: 1.3;
}
.program-skills_h3 br{
    display: none;
}
.program-skills_h3:before{
    content: "";
    display: block;
    width: 3em;
    height: 3em;
    background: url(../img/icon.svg) no-repeat;
    filter: invert(1);
    margin: 0 auto 0.2em;
    opacity: 0.7;
}
.program-skills_ul{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3em;
}
.program-skills_ul li{
    border: 1px solid #fff;
    padding: 2em 0;
    color: #fff;
    text-align: center;
    font-size: clamp(15px, 1.2vw, 21px);
    line-height: 1.4;
    background: rgba(255,255,255,0.1);
    position: relative;
}
.program-skills_ul li:before{
    content: "★";
    color: var(--green);
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1;
    display: block;
    text-align: center;
    position: absolute;
    top: -0.7em;
    left: 50%;
    transform: translateX(-50%);
}
.advanced .program-skills_ul li:before{
    color: var(--jyokyu2);
}
.program-curriculum{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
    background: var(--green);
    padding: 2em;
}
.advanced .program-curriculum{
    background: var(--jyokyu2);
}
.program-curriculum_head{
    margin-bottom: 1em;
}
.program-curriculum_h4{
    font-size: clamp(24px, 2vw, 34px);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 0.5em;
}
.advanced .program-curriculum_h4{
    background: var(--jyokyu2);
}
.program-curriculum_h4 br{
    display: none;
}
.program-curriculum_dl{
    display: grid;
    grid-template-columns: 8em 1fr;
    margin-bottom: 0.3em !important;
}
.program-curriculum_dl dt{
    background: var(--black);
    color: #fff;
    text-align: center;
    font-size: clamp(13px, 1.2vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-curriculum_dl dd{
    background: rgba(255,255,255,0.8);
    font-size: clamp(13px, 1.2vw, 16px);
    padding: 1em;
    line-height: 1.3;
}
.program-curriculum_table{
    width: 100%;
}
.program-curriculum_table tr{
    display: grid;
    grid-template-columns: 8em 1fr 1fr 1fr;
    gap: 5px;
    margin-bottom: 5px;
}
.advanced .program-curriculum_table tr{
    grid-template-columns: 8em 1fr 1fr;
}
.program-curriculum_table th,
.program-curriculum_table td{
    background: #fff;
    padding: 1.5em 1em;
    line-height: 1.3;
}
.program-curriculum_table th{
    background: #ddd;
}
.program-curriculum_table th b{
    width: 7em;
    text-align: center;
    border-radius: 3em;
    font-size: clamp(16px, 1.5vw, 24px);
}
.program-curriculum_table th .shokyu{
    background: var(--shokyu);
}
.program-curriculum_table th .chukyu{
    background: var(--chukyu);
}
.program-curriculum_table th .jyokyu{
    background: var(--jyokyu);
}
.advanced .program-curriculum_table th .shokyu{
    background: var(--shokyu2);
}
.advanced .program-curriculum_table th .jyokyu{
    background: var(--jyokyu2);
}
.program-curriculum_table th,
.program-curriculum_table tr:nth-child(2) td{
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-curriculum_table tbody td{
    width: auto;
}
.program-curriculum_table tbody td p{
    line-height: 1.4;
    font-size: clamp(13px, 1.2vw, 15px);
}
.program-curriculum_table td dl{
    display: grid;
    grid-template-columns: 3.5em 1fr;
    gap: 5px;
}
.program-curriculum_table td dt,
.program-curriculum_table td dd{
    font-size: clamp(11px, 1.1vw, 14px);
    line-height: 1.3;
}
.program-curriculum_table td small{
    display: block;
    display: flex;
    margin-bottom: 0.3em;
}
.program-curriculum_table td small:before{
    content: "※";
}
.program-curriculum_table td small+br{
    display: none;
}
.program-curriculum_cards{
    display: none;
}
.program-flow{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.program-flow_h4{
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    display: flex;
    align-items: center;
}
.program-flow_h4:after{
    content: "";
    flex: 1;
    height: 1px;
    background: #fff;
    margin-left: 0.5em;
}
.program-flow_ol{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    counter-reset: listnum;
    width: 99%;
}
.program-flow_ol li{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3em 2em 3em 3em;
}
.program-flow_ol li:before {
    counter-increment: listnum;
    content: counter(listnum);
    position: absolute;
    z-index: 3;
    top: -0.5em;
    left: 50%;
    width: 2em;
    height: 2em;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1;
    color: var(--shokyu);
    transform: translateX(-50%);
}
.advanced .program-flow_ol li:before {
    color: var(--jyokyu2);
}
.program-flow_ol li:after{
    content: "";
    display: block;
    width: 105%;
    height: 100%;
    background: var(--shokyu);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
}
.advanced .program-flow_ol li:after{
    background: var(--jyokyu2);
}
.program-flow_ol li p{
    position: relative;
    z-index: 1;
    line-height: 1.3;
}
.program-flow_ol li p a{
    display: inline-block;
    color: var(--red);
}
.program-flow_ol li p a:hover{
    text-decoration: underline;
}
.program-flow_ol li br{
    display: none;
}
.program-faq{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.program-faq_h3{
    text-align: center;
    font-size: clamp(24px, 2vw, 34px);
    margin-bottom: 0.5em;
}
.faq-q{
    cursor: pointer;
    background: #fff;
    padding: 0.7em 3em 0.7em 1em;
    position: relative;
    line-height: 1.4;
    border-left: 7px solid var(--green);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.advanced .faq-q{
    border-left: 7px solid var(--jyokyu2);
}
.faq-a{
    width: calc(100% - 3em);
    margin: 0 0 1em auto;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .25s ease, opacity .25s ease;
}
.faq-q.open + .faq-a{
    max-height: 1000px;
    opacity: 1;
}
.faq-a_wrap{
    background: #fff;
    margin: 1em 0;
    padding: 2em;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.faq-text{
    line-height: 1.6;
}
.faq-mark{
    margin-right: 0.2em;
    color: var(--green);
    margin-left: 0.2em;
    font-size: clamp(21px, 2vw, 34px);
    line-height: 1;
}
.advanced .faq-mark{
    color: var(--jyokyu2);
}
.faq-q:after,
.faq-q:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 20px;
  height: 2px;
  background: var(--green);
}
.advanced .faq-q:after,
.advanced .faq-q:before {
  background: var(--jyokyu2);
}
.faq-q:after {
  transition: all 0.1s ease-in-out;
}
.faq-q:before {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.faq-q.open:before {
  transform: rotate(180deg);
}
.faq-q.open:after {
  opacity: 0;
}
.program-btn {
    margin: 2em auto;
}
@media screen and (max-width: 1280px) {
    .program-list_item{
        grid-template-columns: 6em 11em 1fr 16em;
    }
    .program-list_step{
        width: 6em;
    }
    .program-list_img{
        width: 11em;
    }
    .program-list_detail {
        width: 16em;
        padding: 1em;
    }
    .program-mv img{
        aspect-ratio: 3 / 1;
    }
    .program-detail_img img{
        aspect-ratio: 1.3 / 1;
    }
    .program-skills_ul{
        gap: 3em 1em;
    }
}
@media screen and (max-width: 1080px) {
    .program-skills_ul{
        grid-template-columns: repeat(2, 1fr);
        gap: 2em 1em;
    }
    .program-flow_ol li {
        padding: 3em 0em 2em 2em;
    }
}
@media screen and (max-width: 980px) {
    .program-list_item{
        flex-wrap: wrap;
        margin-bottom: 1em;
    }
    .program-list_step {
        padding: 1em;
    }
    .program-list_title{
        flex: initial;
        width: 100%;
        order: 2;
        padding: 1em 1em 0.5em;
    }
    .program-list_img{
        order: 1;
        flex: 1;
    }
    .program-list_detail{
        width: 100%;
        order: 3;
        background: #fff;
        padding: 0 1em 1.5em;;
    }
    .program-list_detail dl {
        margin: 0 0 0 auto;
    }
}
@media screen and (max-width: 880px) {
    .program-mv img{
        aspect-ratio: 2 / 1;
    }
    .program-detail_img{
        width: 100%;
        margin-right: 0;
        margin-top: 2em;
        order: 1;
    }
    .program-detail_img img{
        aspect-ratio: 2 / 1;
    }
    .program-detail_content{
        max-width: 100%;
    }
    .program-detail_h3,
    .program-detail_h3 b{
        font-size: clamp(24px, 5.1vw, 38px);
    }
    .program-curriculum_table.pc{
        display: none;
    }
    .program-curriculum_cards{
        display: block;
    }
    .program-curriculum_table tr {
        grid-template-columns: 8em 1fr;
    }
    .advanced .program-curriculum_table tr {
        grid-template-columns: 8em 1fr;
    }
}
@media screen and (max-width: 780px) {
    .program-flow_ol{
        display: block;
    }
    .program-flow_ol li {
        padding: 4.5em 1em 2.5em 1em;
        margin-bottom: -0.5em;
    }
    .program-flow_ol li:after {
        width: 100%;
        clip-path: polygon(0% 0%, 50% 20%, 100% 0%, 100% 80%, 50% 100%, 0% 80%, 0% 0%);
    }
    .program-flow_ol li:before{
        top: 1em;
    }
}
@media screen and (max-width: 680px) {
    .program-skills_ul{
        grid-template-columns: repeat(1, 1fr);
    }
    .program-curriculum_table th br{
        display: none;
    }
}
@media screen and (max-width: 580px) {
    .program .page-h2 br{
        display: block;
    }
    .program-lead{
        text-align: left;
    }
    .program-lead br{
        display: none;
    }
    .program-list_h4{
        text-align: center;
    }
    .program-list_h4 b {
        display: block;
        margin: 0.5em auto;
    }
    .program-point{
        margin-top: 1em;
    }
    .program-h3{
        line-height: 1.28;
        padding: 0.5em 2em;
        margin: 0 auto -2em;
    }
    .program-h3 br{
        display: block;
    }
    .program-detail_sub{
        margin-bottom: 1em;
    }
    .program-target_content {
        padding: 2.5em 1em 1.5em;
    }
    .program-detail_img,
    .program-detail_item:nth-of-type(even) .program-detail_img{
        margin: 1em 0;
    }
    .program-skills{
        padding: 3em 0;
    }
    .program-skills_h3 br{
        display: block;
    }
    .program-skills_ul li {
        padding: 1em 0;
    }
    .program-curriculum_h4 br{
        display: block;
    }
    .program-curriculum {
        padding: 2em 1em;
    }
    .program-curriculum_dl {
        grid-template-columns: 4em 1fr;
    }
    .program-curriculum_dl dd {
        padding: 1em 0.5em;
    }
    .program-curriculum_table tr {
        grid-template-columns: 4.5em 1fr;
    }
    .advanced .program-curriculum_table tr {
        grid-template-columns: 4.5em 1fr;
    }
    .program-curriculum_table th br{
        display: block;
    }
    .program-curriculum_table th{
        padding: 1.5em 0;
        font-size: clamp(12px, 1.3vw, 16px);
    }
    .program-curriculum_table td dl {
        grid-template-columns: 3em 1fr;
        gap:5px 0;
    }
    .program-flow_ol li br{
        display: block;
    }
    .faq-q {
        padding: 1em 2em 1em 0.5em;
    }
    .faq-a{
        width: 100%;
        padding-left: 1em;
    }
    .faq-a_wrap {
        padding: 2em 1em;
    }
    .faq-q:after,
    .faq-q:before {
        right: 0.5em;
        width: 15px;
    }
    .program-btn .btn-a{
        width: 80%;
        margin-bottom: 0.5em;
    }
}

/*SCHEDULE*/
.schedule-ol{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.schedule-ol li{
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 0.5em;
}
.schedule-ol li.over{
    opacity: 0.7;
}
.schedule-ol li.over .schedule-title:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    left: 0;
}
.schedule-date{
    width: 10em;
    line-height: 1.3;
    padding: 1em;
    background: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule-date p{
    line-height: 1.3;
    text-align: center;
}
.over .schedule-date{
    background: var(--ash);
    color: #fff;
}
.schedule-cat{
    width: 10em;
    background: var(--gray);
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule-cat a{
    color: #fff;
}
.schedule-cat a:hover{
    color: var(--green);
}
.schedule-cat span{
    color: #fff;
}
.schedule-title{
    flex: 1;
    background: #fff;
    padding: 1em;
}
.schedule-title p{
    margin-bottom: 0.2em;
    line-height: 1.3;
    font-size: clamp(16px, 1.4vw, 21px);
}
.schedule-dl{
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 5em 1fr;
    align-items: center;
    gap:0 0.5em;
}
.schedule-dl dt{
    text-align: center;
    background: var(--dgreen);
    color: #fff;
    font-weight: 500;
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1;
    padding: 0.3em 0;
}
.schedule-dl dd a{
    font-size: clamp(12px, 1.1vw, 14px);
    color: var(--red);
}
.schedule-dl dd a:hover{
    text-decoration: underline;
}
.schedule-apply{
    width: 10em;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: #fff;
}
.schedule-apply a{
    background: var(--green);
    color: var(--black);
    display: inline-block;
    padding: 0.3em 1em;
    line-height: 1;
    border-radius: 3em;
}
.schedule-apply a:hover{
    background: #fff;
}
@media screen and (max-width: 980px) {
    .schedule-ol li{
        flex-wrap: wrap;
    }
    .schedule-date{
        width: calc(100% - 10em);
        justify-content: flex-start;
    }
    .schedule-date br{
        display: none;
    }
    .schedule-title{
        width: calc(100% - 10em);
    }
    .schedule-title p {
        font-size: clamp(16px, 2.4vw, 21px);
    }
}
@media screen and (max-width: 580px) {
    .schedule-title {
        padding: 1em 1em 0;
    }
    .schedule-apply {
        width: 100%;
        background: #fff;
        justify-content: flex-end;
        padding: 0 1em 0.5em;
    }
    .schedule-dl{
        grid-template-columns: 3em 1fr;
        margin-bottom: 0.2em;
    }
    .schedule-date{
        justify-content: center;
        padding: 0.5em;
    }
    .schedule-date br{
        display: block;
    }
    .over .schedule-apply{
        display: none;
    }
    .over .schedule-title{
        padding: 1em;
    }
}

/*HOME ABOUT*/
.home-about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    position: relative;
}
.home-about_h3 {
    font-size: clamp(34px, 3vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5em;
}
.home-about_text {
    width: 45%;
    padding: 0 5em;
}
.home-about_img{
    width: 50%;
    position: relative;
}
.home-about_img:before{
    content: "";
    display: block;
    width: 50%;
    height: calc(100% + 7em);
    background: var(--green);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) skew(-10deg, 0);
    z-index: 0;
}
.home-about_img img{
    position: relative;
    z-index: 2;
}
.home-about_logo{
    width: 10%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 3;
}
.home-about_svg{
    position: relative;
}
.home-about_svg .circle-logo{
    position: relative;
    z-index: 1;
}
.home-about_icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
    width: 60%;
    height: 60%;
}
@media screen and (max-width: 1680px) {
    .home-about_text {
        padding: 0 3em 0 0;
    }
    .home-about_logo{
        width: 12%;
    }
}
@media screen and (max-width: 1280px) {
    .home-about_img img{
        object-fit: cover;
        aspect-ratio: 1.618 / 1;
    }
}
@media screen and (max-width: 980px) {
    .home-about_img:before{
        left: 35%;
    }
    .home-about_text {
        width: 100%;
        padding: 0;
        margin-bottom: 3em;
    }
    .home-about_img{
        width: 80%;
    }
    .home-about_logo {
        width: 30%;
        top: inherit;
        bottom: 3%;
        left: inherit;
        right: -3%;
        transform: translateX(0) translateY(-50%);
    }
}
@media screen and (max-width: 680px) {
    .home-about_h3 {
        font-size: clamp(32px, 3vw, 54px);
    }
    .home-about_img{
        width: 100%;
    }
    .home-about_img:before {
        height: calc(100% + 4em);
    }
    .home-about_logo {
        right: inherit;
        left: 2%;
        bottom: 21%;
    }
}
/*ABOUT*/
.about-concept{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.about-h3{
    display: flex;
    align-items: center;
    color: var(--black);
    font-size: clamp(21px, 2vw, 28px);
    border-left: 10px solid var(--green);
    line-height: 1;
    padding-left: 0.5em;
}
.about-h3:after{
    content: "";
    flex: 1;
    height: 1px;
    background: var(--black);
    margin-left: 0.5em;
}
.about-wrap{
    display: flex;
    flex-wrap: wrap;
}
.about-h4{
    color: var(--green);
    font-size: clamp(38px, 4.2vw, 68px);
    line-height: 1.3;
    font-weight: 900;
    width: 12em;
}
.about-text{
    flex: 1;
}
.about-img{
    margin: 0 auto;
    width: 90%;
    max-width: 1480px;
}
.about-img img{
    object-fit: cover;
    aspect-ratio: 3 / 1;
}
.about-message{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.about-messag_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 5%;
}
.about-messag_text{
    width: 50%;
    max-width: 480px;
}
.about-messag_img{
    width: 45%;
    max-width: 520px;
}
.about-messag_img img{
    object-fit: cover;
    aspect-ratio: 1 / 1.3;
}
.about-message_sign small{
    padding-right: 0.5em;
}
.about-outline{
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
}
.about-outline_table{
    max-width: 980px;
    margin: 0 auto;
    border-collapse: collapse;
}
.about-outline_table th,
.about-outline_table td{
    border-bottom: 1px solid var(--ash);
    padding: 2em 0;
}
.about-outline_table th{
    width: 10em;
    text-align: left;
}
.about-outline_table td a{
    color: var(--red);
}
.about-outline_table td a:hover{
    text-decoration: underline;
}
.about-outline_table td ol{
    padding-left: 1.2em !important;
}
.about-outline_table td li{
    list-style: decimal outside;
    line-height: 1.4;
    margin-bottom: 1em;
}
@media screen and (max-width: 980px) {
    .about-wrap{
        padding: 2em 0 !important;
    }
    .about-h4 {
        font-size: clamp(28px, 7vw, 68px);
        width: 100%;
        margin-bottom: 0.5em;
    }
    .about-img img {
        aspect-ratio: 2 / 1;
    }
    .about-messag_text {
        width: 90%;
        max-width: inherit;
        margin: 0 auto 2em 0;
    }
    .about-messag_img {
        width: 85%;
        max-width: inherit;
        margin: 0 0 0 auto;
    }
    .about-messag_img img {
        aspect-ratio: 1.618 / 1;
    }
    .about-outline_table th {
        width: 6em;
    }
}
@media screen and (max-width: 680px) {
    .about-img img {
        aspect-ratio: 1.618 / 1;
    }
    .about-messag_img{
        width: 100%;
    }
    .about-messag_img img {
        aspect-ratio: 1 / 1;
    }
}

/*REQUEST*/
.request {
    width: 90%;
    margin: 0 auto;
}
.request-header{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.request-lead{
    width: clamp(380px, 30vw, 780px);
    margin-right: 5em;
}
.request-swiper{
    flex: 1;
}
.request-swiper img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.request-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.request-h3{
    position: relative;
}
.request-h3 b{
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    position: relative;
    z-index: 1;
}
.request-h3:after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background: var(--green);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.request-fee{
    font-size: clamp(15px, 1.4vw, 18px);
}
.request-content{
    flex: 1;
    padding-right: 5em;
}
.request-summary{
    background: #fff;
}
.request-summary p{
    margin-bottom: 0.5em;
}
.request-details{
    text-align: right;
}
.request-detail{
    display: inline-block;
    text-align: left;
}
.request-img{
    width: 45%;
}
.request-img img{
    object-fit: cover;
    aspect-ratio: 1.618 / 1;
}
.request-detail-box{
    display: flex;
    justify-content: flex-end;
}
.request-detail-title{
    margin-right: 1em;
}
.request-detail-list{
    margin-bottom: 2em;
    padding-left: 1.5em;
}
.request-detail-list li{
    list-style: disc outside;
}
@media screen and (max-width: 1280px) {
    .request-detail-box{
        display: block;
    }
    .request-detail-title{
        font-size: 120%;
    }
    .request-img{
        margin-top: 2.5em;
    }
    .request-img img{
        aspect-ratio: 1.3 / 1;
    }
}
@media screen and (max-width: 1080px) {
    .request-header{
        display: block;
    }
    .request-lead {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2em !important;
    }
    .request-img img{
        aspect-ratio: 1 / 1;
    }
}
@media screen and (max-width: 780px) {
    .request-box{
        display: block;
    }
    .request-content{
        padding-right: 0;
    }
    .request-img {
        width: 100%;
        margin: 0 0 5em;
    }
    .request-img img{
        aspect-ratio: 2 / 1;
    }
}
@media screen and (max-width: 480px) {
    .request-detail{
        display: block;
    }
    .request-img img{
        aspect-ratio: 1.618 / 1;
    }
}



/*JOURNAL*/
.column-h2{
    font-size: clamp(48px, 5vw, 68px);
}
/*JOURNAL SINGLE*/
.column-post{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
}
.column-h3{
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.3;
    font-weight: 900;
    background: var(--black);
    color: #fff;
    padding: 1em;
}
.column-date {
    padding-right: 1em;
}
.column-editor{
    padding: 3em 5em 5em;
}
.column-editor_wrap,
.column-editor_wrap * {
  all: revert !important;
  box-sizing: border-box;
}
.column-editor_wrap {
  font-family: inherit !important;
  color: inherit !important;
  line-height: 1.8 !important;
}
.column-editor_wrap img {
  max-width: 100% !important;
  height: auto !important;
}
.column-editor_wrap table {
  width: 100%;
  border-collapse: collapse;
}
.column-editor figure{
    margin: 1em 0 !important;
}
.column-message{
    background: var(--green);
    padding: 3em 2em;
    margin-top: 2em;
}
.column-message p{
    color: #444;
    line-height: 1.5;
    margin-bottom: 1.5em;
}
.column-message_h4 {
    text-align: center;
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.3;
    font-weight: 900;
}
.column-message_btn {
    margin: 1em auto 0;
}
.column-message_btn .btn-a:before {
    background: #fff;
}
.column-nav{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.column-nav .btn-a,
.column-nav span{
    flex: 1;
    padding: 1em;
    display: flex;
    align-items: center;
}
.column-nav .btn-a b{
    display: block;
    text-align: left;
    line-height: 1.4;
    font-size: clamp(12px, 1.1vw, 14px);
}
.column-nav .btn-a small{
    display: block;
    line-height: 1.4;
    font-size: clamp(11px, 1.1vw, 12px);
}
.column-nav_back{
    width: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
}
.column-nav_back:hover{
    color: var(--jyokyu2);
    text-decoration: underline;
}
/*COLUMN ARCHIVE*/
.column-archive_ol{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1em, 2vw, 3em);
}
.column-archive_li{
    background: #fff;
}
.column-archive_date{
    background: var(--back);
    line-height: 0;
}
.column-archive_date span{
    background: var(--black);
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 0.2em 1em;
}
.column-archive_img {
    width: 100%;
    overflow: hidden;
}
.column-archive_img img{
    object-fit: cover;
    aspect-ratio: 1.618 / 1;
}
.column-archive_title{
    line-height: 1.3;
    padding: 1em;
    color: var(--black);
    word-break: break-all;
    font-size: clamp(12px, 1.1vw, 16px);
}
.column-archive_a:hover .column-archive_img img{
    transform: scale(1.05, 1.05);
}
.column-archive_excerpt{
    display: none;
}
@media screen and (max-width: 1680px) {
    .column-archive_ol{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media screen and (max-width: 1280px) {
    .column-archive_ol{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (max-width: 780px) {
    .column-archive_ol{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media screen and (max-width: 480px) {
    .column-archive_ol{
        display: block;
    }
    .column-archive_li{
        margin-bottom: 1em;
    }
    .column-archive_a{
        display: grid;
        grid-template-columns: 30% 1fr;
    }
    .column-archive_img{
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }
    .column-archive_img img{
        aspect-ratio: 1 / 1;
    }
    .column-archive_date{
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        background: #fff;
        text-align: left !important;
        padding: 1em 1em 0;
        margin-bottom: 0.3em;
    }
    .column-archive_title{
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        padding: 0 1em 1em;
    }
}
/*HOME COLUMN*/
.home-column {
    background: #ddd;
}
.home-column .column-archive_date{
    background: #ddd;
}
.home-column .column-archive_ol {
    grid-template-columns: 50% 1fr 1fr;
    align-items: flex-start;
}
.home-column .column-archive_ol li:first-child{
    grid-row: 1 / 3;
}
.home-column .column-archive_ol li:first-child .column-archive_title{
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 900;
    padding: 0;
    line-height: 1.3;
    width: 95% !important;
    margin: 0.7em auto 0.5em;
}
.home-column .column-archive_ol li:first-child .column-archive_excerpt{
    width: 95% !important;
    font-size: clamp(12px, 1.1vw, 14px);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--black);
    margin: 0 auto 2em;
    line-height: 1.3;
 }
.home-column .column-archive_ol li:first-child .column-archive_img img{
    aspect-ratio: 1.618 / 1;
}
@media screen and (max-width: 780px) {
    .home-column .column-archive_ol {
        grid-template-columns: 1fr 1fr;
    }
    .home-column .column-archive_date {
        background: #fff;
    }
    .home-column .column-archive_ol li:first-child{
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .home-column .column-archive_ol li:first-child .column-archive_a{
        display: block;
        padding-bottom: 1em;
    }
    .home-column .column-archive_ol li:first-child .column-archive_date{
        background: #ddd;
        padding: 0;
        margin-bottom: 0;
    }
}

/*APPLICATION*/
.application .page-h2 br{
    display: none;
}
.application-lead{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
}
.application-form{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    padding: 3em;
}
@media screen and (max-width: 580px) {
    .application .page-h2 br{
        display: block;
    }
}
/*CONTACT FORM*/
.contact-att{
    font-size: clamp(11px, 1.1vw, 12px);
    margin: 0 0 0.5em 0;
    padding: 0 0 0 1em;
    text-indent: -1em;
    line-height: 1.3;
    color: var(--gray);
}
.contact-att:before{
    content: "※";
}
.contact-table{
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0 5px;
}
.contact-table th{
    width: 9em;
    padding: 1em 0;
}
.contact-table th b{
    color: var(--red);
    font-size: 11px;
}
.contact-table td{
    background: var(--back);
    padding: 1em;
}
.contact-table input,
.contact-table textarea{
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 1em;
}
.contact-table textarea{
    height: 8em;
}
.contact-table input[type="checkbox"],
.contact-table input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 1em;
}
.contact-privacy,
.contact-privacy a{
    font-size: clamp(12px, 1.1vw, 14px);
}
.contact-privacy br{
    display: none;
}
.contact-privacy a{
    color: var(--red);
}
.contact-privacy a:hover{
    text-decoration: underline;
}
.contact-table tr:last-child td{
    background: transparent;
}
.contact-display{
    line-height: 1.3;
}
.wpcf7-validates-as-required span{
    margin-left: 0;
}
.input-text::placeholder,
.input-textarea::placeholder {
  color: #bbb;
}
input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0;
}
.just-validate-error-label{
    font-size: 12px;
    font-weight: 500;
    color: var(--red) !important;
}
.wpcf7-not-valid-tip {
    display: none !important;
}
.wpcf7-list-item input[type="radio"] {
    accent-color: var(--red);
}
@media screen and (max-width: 680px) {
    .application-form {
        padding: 3em 1em;
    }
    .contact-table,
    .contact-table tbody,
    .contact-table tr,
    .contact-table th,
    .contact-table td{
        display: block;
        width: 100%;
    }
    .contact-table th{
        padding-bottom: 0;
    }
    .contact-table input,
    .contact-table textarea {
        padding: 0.5em;
    }
}
@media screen and (max-width: 580px) {
    .contact-table td {
        background: transparent;
        padding: 0;
        border-bottom: 7px solid #eee;
    }
    .contact-table td p{
        line-height: 1.2;
        margin-bottom: 0.5em !important;
    }
    .contact-table input,
    .contact-table textarea {
        padding: 0;
    }
    .contact-display{
        margin: 0.5em 0 1em;
    }
    .contact-table tr:last-child td{
        border: none;
    }
}
/*CONTACT BTN*/
.contact-btn p{
    display: flex;
    justify-content: center;
    gap:5px;
}
.contact-btn br{
    display: none;
}
.contact-btn button,
.contact-btn input{
    display: inline-block;
    cursor: pointer;
    background: var(--green);
    line-height: 1;
    padding: 1em 2.5em !important;
    text-align: center;
    position: relative;
    border-radius: 3em;
    border: none;
    font-weight: 700;
    font-size: 16px;
}
.contact-btn button:hover,
.contact-btn input:hover{
    background: var(--jyokyu2);
    color: #fff;
}
/*CONFIRM*/
.cf7-confirm-box .page-h4{
    font-size: clamp(21px, 2vw, 28px);
    margin-bottom: 0.5em;
}
.cf7-confirm-area{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}
.cf7-confirm-area.is-open{
    opacity: 1;
    visibility: visible;
}
.cf7-confirm-box{
    background: #fff;
    padding: 3em;
    max-width: 980px;
    width: 90%;
    height: 80vh;
    overflow-y: auto;
}
.confirm-item{
    background: var(--back);
    padding: 1em;
    margin-bottom: 1em;
}
.wpcf7-spinner {
    display: none;
}
.rate-limit-anchor input{
    display:none;
}
@media screen and (max-width: 680px) {
    .cf7-confirm-box{
        padding: 3em 1em;
    }
}
/*THANKS*/
.thanks .page-h2 br{
    display: none;
}
.thanks-content{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    padding: 5em;
    text-align: center;
}
.thanks-message{
    display: inline-block;
    text-align: left;
    margin-bottom: 2em;
}
.thanks-address{
    background: #eee;
    padding: 2em;
    font-style: normal;
}
.thanks-address b{
    font-size: clamp(16px, 1.4vw, 21px);
    font-weight: 700;
}
.thanks-address p,
.thanks-address p a{
    line-height: 1.4;
    color: var(--black);
}
.thanks-address p a{
    letter-spacing: 0.1em;
    color: var(--red);
}
.thanks-address p a:hover{
    text-decoration: underline;
}
.thanks-btn{
    margin: 2em auto;
}
@media screen and (max-width: 680px) {
    .thanks .page-h2 br{
        display: block;
    }
    .thanks-content {
        padding: 3em;
    }
}
@media screen and (max-width: 580px) {
    .thanks-content {
        padding: 3em 1em;
    }
    .thanks-message br{
        display: none;
    }
}

/*HOME YOUTUBE*/
.home-yt{
    width: 90%;
    margin: 0 auto;
}
.home-yt_h4{
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.home-yt_h4 b{
    font-size: clamp(28px, 4.4vw, 68px);
    font-weight: 900;
    line-height: 1;
    background: var(--back);
    position: relative;
    z-index: 1;
    padding-right: 0.5em;
}
.home-yt_h4 small{
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.3;
    padding-top: 3em;
}
.home-yt_h4:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--black);
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
}
.yt-swiper img{
    object-fit: cover;
    aspect-ratio: 9 / 16;
    border-radius: 1em;
}
.yt-title{
    line-height: 1.3;
    font-size: clamp(11px, 1.1vw, 13px);
    margin: 0.5em 0;
}
.home-yt_links{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap:5px;
}
.home-yt_links a{
    flex: 1;
    max-width: 300px;
    min-width: 220px;
    display: flex;
    background: var(--black);
    padding: 5px;
}
.home-yt_links a:hover{
    background: var(--green);
}
.home-yt_thumb{
    width: clamp(50px, 7vw, 80px);
}
.home-yt_p{
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 1em;
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.3;
}
@media screen and (max-width: 980px) {
    .home-yt_h4,
    .home-yt_h4 b,
    .home-yt_h4 small{
        display: block;
        text-align: center;
    }
    .home-yt_h4:before{
        display: none;
    }
    .home-yt_h4 b{
        padding-bottom: 0.3em;
        border-bottom: 1px solid var(--black);
    }
    .home-yt_h4 small {
        padding: 1em 0 0;
    }
}
@media screen and (max-width: 680px) {
    .home-yt_h4 small {
        text-align: left;
    }
}

/*PRIVACY*/
.privacy-wrap{
    width: 90%;
    max-width: 1280px;
    padding: 3em 5em 5em 7em;
    margin: 0 auto;
    background: #fff;
}
.privacy-wrap h4{
    font-size: clamp(16px, 1.4vw, 18px);
    text-indent: -2em;
    margin-top: 2em;
}
.privacy-wrap p,
.privacy-wrap li,
.privacy-wrap a{
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 500;
}
.privacy-wrap a{
    color: var(--red);
}
.privacy-wrap a:hover{
    text-decoration: underline;
}
@media screen and (max-width: 980px) {
    .privacy-wrap{
        padding: 2em 3em 3em 5em;
    }
}
@media screen and (max-width: 680px) {
    .privacy-wrap{
        padding: 0.5em 1em 3em 3em;
    }
}

/*BANNER*/
.banner-area{
    background: #fff;
    text-align: center;
}
.banner-text:before,
.banner-text:after{
    content: "|";
    display: inline-block;
}
.banner-text:before{
    transform: rotate(-30deg);
    padding-right: 5px;
}
.banner-text:after{
    transform: rotate(30deg);
    padding-left: 5px;
}
.banner-wrap{
    display: flex;
    justify-content: center;
    gap: 1em;
}
.banner-wrap a{
    border: 2px solid var(--black);
    padding: 1em;
    width: 16em;
    color: var(--black);
    font-size: clamp(12px, 1.2vw, 16px);
}
.banner-wrap a:hover{
    background: var(--green);
}
@media screen and (max-width: 480px) {
    .banner-wrap a{
        width: 13em;
    }
}

/*FOOTER*/
.footer{
    background: var(--black);
    color: #fff;
    position: relative;
}
.footer:before{
    content: "";
    display: block;
    width: 70%;
    height: 100%;
    background: url("../img/gpr.svg") center left / contain no-repeat;
    filter: invert(1) grayscale(1);
    opacity: 0.8;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.footer-wrap{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0 1em;
    z-index: 10;
    position: relative;
    padding-bottom: 3em;
}
.footer-logo{
    width: clamp(130px, 10vw, 200px);
    filter: brightness(0) invert(1);
}
.footer-add{
    padding-top: 2em;
}
.footer-add b{
    display: block;
    margin-bottom: 0.2em;
    font-size: clamp(16px, 1.4vw, 18px); 
}
.footer-add p{
    padding-left: 1.5em;
}
.footer-add p br:nth-of-type(2){
    display: none;
}
.footer-add p,
.footer-add a{
    color: #fff;
    font-weight: 500;
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.4;
}
.footer-add a:hover{
    color: var(--green);
}
.footer-sns{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 0.5em;
    margin: 1em 0;
}
.footer-sns a{
    width: 1.7em;
    height: 1.7em;
    filter: brightness(0) invert(1);
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-copy{
    width: 100%;
    font-size: clamp(11px, 1.1vw, 12px);
    letter-spacing: 0.1em;
    font-weight: 500;
}
.footer-copy a{
    color: #fff;
    font-weight: 500;
    font-size: clamp(11px, 1.1vw, 12px);
    padding-right: 1em;
    margin-right: 1em;
    display: inline-block;
    border-right: 1px solid #fff;
    line-height: 1;
}
.footer-copy a:hover{
    color: var(--green);
}
@media screen and (max-width: 1280px) {
    .footer-add p br:nth-of-type(2){
        display: block;
    }
}
@media screen and (max-width: 680px) {
    .footer-wrap,
    .footer-sns{
        justify-content: center;
    }
    .footer:before {
        width: 100%;
    }
    .footer-add {
        padding-top: 1em;
        width: 100%;
        text-align: center;
    }
    .footer-add p{
        padding: 0;
    }
    .footer-copy{
        text-align: center !important;
    }
}

/*TOTOP*/
#totop {
    position: fixed;
    bottom: 80px;
    right: 0;
    z-index: 99999;
    width: 40px;
    height: 40px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all opacity;
    background: var(--green);
}
#totop:before{
    content: "";
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center;
}
#totop.is-visible { 
	opacity: 1; 
	pointer-events: auto; 
}
#totop:hover{
	transform: scale(1.2,1.2);
}
@media screen and (max-width: 980px) {
	#totop {
        width: 30px;
        height: 30px;
        bottom: 80px;
        right: 3px;
	}
    #totop:before {
        width: 5px;
        height: 5px;
    }
}