body {
    color: #050505;
    background: #fff;
    font-feature-settings: "palt";
}


/* font */

p,
ul,
li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Pathway Gothic One', sans-serif;
}

h2 span,
h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

a {
    display: block;
    width: 100%;
    height: auto;
    color: #050505;
    text-decoration: none;
}

a:hover {
    color: #A0A0A0;
    transition: .3s;
}

.gray {
    background: #F8F8F8;
}

.sp {
    display: none;
}

.pc {
    display: block;
}

@media screen and (max-width: 700px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    p {
        font-size: 14px;
    }
}


/* 境界線｜縦線 */

.heading1 {
    padding-bottom: 6px;
    background-image: repeating-linear-gradient(90deg, #B4B4B4 0, #B4B4B4 1px, rgba(0, 0, 0, 0) 1px, rgba(0, 0, 0, 0) 4px);
    background-size: 3px 6px;
    background-repeat: repeat-x;
    background-position: center bottom;
}


/* リンク｜黒ボタン */

.btn_black a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 386px;
    height: 64px;
    margin: 60px auto;
    padding-right: 18px;
    background: #050505;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: 'Pathway Gothic One', sans-serif;
}

.btn_black input {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 386px;
    height: 64px;
    margin: 60px auto;
    border: 0;
    background: #050505;
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-family: 'Pathway Gothic One', sans-serif;
}

.btn_black a span {
    position: relative;
}

.btn_black a span::before {
    content: '';
    width: 19px;
    height: 19px;
    background: url(../common/images/icon_link.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    bottom: 50%;
    margin: auto;
    right: -29px;
}

@media screen and (max-width: 700px) {
    .btn_black a {
        width: 100%;
        height: 60px;
        font-size: 24px;
    }
    .btn_black input {
        width: 100%;
        height: 60px;
        font-size: 24px;
        margin: 30px auto 60px;
    }
}


/* リンク｜矢印付き */

.btn__right a.arrow {
    text-align: right;
}

a.arrow {
    text-align: center;
    margin: 60px auto;
    font-size: 32px;
    font-family: 'Pathway Gothic One', sans-serif;
    font-weight: 600;
}

a.arrow span {
    position: relative;
}

a.arrow span::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: 16px;
    width: 20px;
    height: 2px;
    background: #050505;
}

a.arrow span::after {
    content: '';
    position: absolute;
    left: -24px;
    bottom: 10px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #050505;
    border-right: 2px solid #050505;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

a.arrow:hover span::before {
    left: -25px;
    transition: .3s;
    background: #A0A0A0;
}

a.arrow:hover span::after {
    left: -19px;
    transition: .3s;
    border-top: 2px solid #A0A0A0;
    border-right: 2px solid #A0A0A0;
}

@media screen and (max-width: 700px) {
    .btn__right a.arrow {
        text-align: center;
    }
}


/*ページナビゲーション（プラグインPageNavi）*/

.wp-pagenavi {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    width: auto;
}


/*
.wp-pagenavi a, .wp-pagenavi span {
	color: #999;
	background-color: #FFF;
	border: solid 1px #e0e0d2;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration:none;
}
.wp-pagenavi a:hover{
    color:#FFF; 
    background-color:#999; 
    border-color:#999;
    }
.wp-pagenavi span.current{
	color: #FFF;
	background-color: #66cccc;
	border-color: #66cccc;
	font-weight: bold;
    }
*/


/* NEWS一覧/詳細 */

.newslist,
.newspage {
    width: 100%;
    max-width: 1010px;
    margin: 20vh auto 0;
}

.newslist__inner,
.newspage__inner {
    display: flex;
    justify-content: space-between;
}

.newslist__inner h2,
.newspage__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 0.75;
    margin-right: 5%;
    text-align: right;
}

.newspage__inner h3 {
    font-size: 48px;
}

.newslist__inner ul li {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px 2%;
    border-top: #050505 1px solid;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.newslist__inner ul {
    border-bottom: #050505 1px solid;
}

.newslist__inner ul .newslist_day {
    color: #A0A0A0;
    font-size: 16px;
    margin-right: 60px;
    font-weight: 600;
}

.newslist__inner ul span {
    width: 120px;
    text-align: center;
    font-size: 12px;
    background: #fff;
    border: #606060 1px solid;
    margin-right: 20px;
}

.newslist__inner .ul span a {
    color: #606060;
    padding: 3px 0 1px;
}

.newslist__inner ul .theme-btn {
    text-decoration: underline;
    display: block;
    width: 100%;
    height: auto;
}

.newslist__inner ul li::marker {
    color: #F8F8F8;
}

.newslist__inner .ul li:last-child {
    border-bottom: #050505 1px solid;
}

.newspage__inner .txt {
    width: 100%;
    border-top: #050505 1px solid;
    border-bottom: #050505 1px solid;
    padding: 40px 0;
    margin: 30px 0 0;
    line-height: 1.75;
}

.newspage__inner .txt p {
    width: 100%;
    margin: 0 auto;
}

.newslist__inner div,
.newspage__inner div {
    width: 80%;
}

.newspage__inner .newslist_day {
    display: flex;
    margin: 0 auto 20px;
}

.newspage__inner .newslist_day p {
    color: #A0A0A0;
    font-size: 16px;
    margin-right: 16px;
    font-weight: 600;
}

.newspage__inner .newslist_day span {
    width: 120px;
    text-align: center;
    font-size: 12px;
    background: #F8F8F8;
    border: #606060 1px solid;
    margin-right: 20px;
}

.newspage__inner .newslist_day span a {
    color: #606060;
    padding: 3px 0 1px;
}

@media screen and (max-width: 700px) {
    .newslist,
    .newspage {
        width: 90%;
        max-width: 90%;
        margin: 36vh auto 0;
    }
    .newslist__inner,
    .newspage__inner {
        flex-direction: column;
    }
    .newslist__inner h2,
    .newspage__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .newslist__inner .mainblock,
    .newspage__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 80px;
    }
    .newspage__inner h3 {
        font-size: 32px;
    }
    .newslist__inner ul li {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    .newslist__inner ul .newslist_day,
    .newslist__inner ul span {
        position: absolute;
        top: 10px;
        margin-right: 0;
    }
    .newslist__inner ul span {
        width: 80px;
        left: 100px;
    }
    .newslist__inner ul .theme-btn {
        margin-top: 18px;
    }
}


/* 固定ページ：ABOUT */

.about {
    width: 100%;
    margin: 0 auto 0;
}

.about .mv {
    display: block;
    width: 100%;
    margin: 0 auto 80px;
    height: 20vh;
    background: #fff;
    /*background: url(../images/mv_abuot.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}

.about.gray {
    padding: 60px 0;
    margin: 80px auto 0;
}

.about.white {
    margin: 60px auto 120px;
}

.about__inner {
    width: 100%;
    max-width: 1010px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.about__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 1;
    margin-right: 50px;
    text-align: right;
}

.about__inner .mainblock {
    width: 80%;
}

.about__inner div p.txt {
    line-height: 1.75;
}

.about__inner table {
    width: 100%;
}

.about__inner table tr {
    height: 60px;
    vertical-align: middle;
}

.about__inner table th {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 32px;
    width: 32%;
    border-top: #050505 2px solid;
}

.about__inner table td {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    border-top: #050505 1px solid;
    padding-left: 40px;
    font-weight: 100;
    line-height: 1.5;
}

.about__inner table td ul {
    padding: 10px 0 10px 20px;
}

.about__inner table th {
    text-transform: uppercase;
}

.about__inner table th span {
    font-weight: 100;
}

.about__inner table th.last {
    border-bottom: #050505 2px solid;
}

.about__inner table td.last {
    border-bottom: #050505 1px solid;
}

.about-profile {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    background: #fff;
    padding: 10px 0 10px 25px;
}

.about-profile .profile-left {
    width: 100%;
}

.about-profile .profile-right {
    padding: 0 30px;
}

.about-profile h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.about-profile h3 span {
    font-size: 22px;
    margin-right: 10px;
}

@media screen and (max-width: 700px) {
    .about.white {
        margin: 60px auto 60px;
    }
    .about .mv {
        height: 36vh;
        position: relative;
        background-position: center;
        margin: 0 auto 36px;
    }
    .about .mv h2 {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 60px;
        color: #050505;
        /*color: #fff;*/
    }
    .about__inner {
        width: 90%;
        max-width: 90%;
        margin: auto;
        flex-direction: column;
    }
    .about__inner h2 {
        text-align-last: left;
        font-size: 60px;
        width: 100%;
        margin-right: 0;
    }
    .about__inner .mainblock {
        width: 100%;
        margin-top: 20px;
    }
    .about__inner table tr {
        height: auto;
        text-align: left;
    }
    .about__inner table th {
        width: 100%;
        display: block;
        padding: 10px 0 10px 3%;
    }
    .about__inner table td {
        width: 100%;
        display: block;
        padding: 15px 0 15px 3%;
    }
    .about__inner table td ul {
        padding: 0 0 0 10px;
    }
    .about-profile {
        flex-direction: column;
        padding: 0;
    }
    .about-profile .profile-left {
        width: 100%;
        margin-top: 0;
    }
    .about-profile .profile-right {
        padding: 18px 20px 20px;
    }
}


/* STUDIO一覧/詳細 */

.studiolist,
.studiopage {
    width: 100%;
    max-width: 1010px;
    margin: 20vh auto 0;
}

.studiolist__inner,
.studiopage__inner {
    display: flex;
    justify-content: space-between;
}

.studiolist__inner h2,
.studiopage__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 0.75;
    margin-right: 5%;
    text-align: right;
}

.studiolist__inner .mainblock,
.studiopage__inner .mainblock {
    width: 80%;
}

.studiolist__inner ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 82px;
}

.studiolist__inner ul li {
    width: calc((100% - 30px)/3);
    position: relative;
    border: #050505 1px solid;
    list-style: none;
    padding: 10px;
    margin-bottom: 48px;
}

.studiolist__inner ul li span {
    display: block;
    width: 4px;
    height: 50px;
    background: #050505;
    position: absolute;
    top: 0;
    left: 0;
}

.studiolist__inner ul li .thumbnail {
    border-bottom: #B4B4B4 1px solid;
}

.studiolist__inner ul li .thumbnail img {
    width: 100%;
    height: auto;
}

.studiolist__inner ul li .category {
    margin: 15px 10px;
}

.studiolist__inner ul li .category a {
    display: inline;
    width: 100%;
    height: 100%;
    margin: auto;
    background: #F8F8F8;
    border: #606060 1px solid;
    border-radius: 20px;
    font-size: 12px;
    color: #606060;
    padding: 1px 18px;
}

.studiolist__inner ul li .theme-btn {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Pathway Gothic One', sans-serif;
    text-decoration: underline;
    margin: 0;
    text-align: left;
    line-height: 1.25;
}

.studiolist__inner ul li a.arrow {
    position: relative;
    padding: 0 0 40px 10px;
}

.studiolist__inner ul li a.arrow::before {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 11px;
    width: 20px;
    height: 2px;
    background: #050505;
}

.studiolist__inner ul li a.arrow::after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 5px;
    width: 12px;
    height: 12px;
    border-top: 2px solid #050505;
    border-right: 2px solid #050505;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.studiolist__inner ul li a.arrow:hover::before {
    transition: .3s;
    background: #A0A0A0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
    bottom: 10px;
}

.studiolist__inner ul li a.arrow:hover::after {
    transition: .3s;
    border-top: 2px solid #A0A0A0;
    border-right: 2px solid #A0A0A0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.studiopage__inner .txt {
    width: 100%;
    border-bottom: #050505 1px solid;
    margin: 40px 0 0;
    line-height: 1.75;
}

.studiopage__inner .txt p {
    width: 100%;
    margin: 0 auto;
}

.studiopage__inner .ttl {
    display: flex;
    align-items: flex-end;
}

.studiopage__inner .ttl h3 {
    display: block;
    width: 100%;
    font-size: 48px;
    border-bottom: #050505 1px solid;
    padding: 0 0 20px 40px;
    margin-bottom: 30px;
}

.studiopage__inner .ttl img {
    border: #050505 1px solid;
}

.studiopage__inner .txt p.full {
    line-height: 0;
}

.studiopage__inner .txt div.full {
    line-height: 0;
    display: flex;
}

.studiopage__inner .txt p.text {
    margin: 30px auto;
}

.studiopage__inner .date {
    display: flex;
    align-items: center;
}

.studiopage__inner .date h4 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-weight: 600;
    font-size: 32px;
    padding: 0 40px;
}

.studiopage__inner .date ul {
    width: 100%;
    list-style: none;
}

.studiopage__inner .date ul li {
    border-bottom: #B4B4B4 1px dashed;
    padding: 20px 0;
}

.studiopage__inner .date ul li:last-child {
    border-bottom: none;
}

.studiopage__inner .date ul li a {
    text-decoration: underline;
}

.studiopage__inner .date ul li.sns {
    display: flex;
    align-items: center;
}

.studiopage__inner .date ul li.sns a {
    width: 6%;
    margin-right: 20px;
    line-height: 0;
}

@media screen and (max-width: 700px) {
    .studiolist,
    .studiopage {
        width: 90%;
        max-width: 90%;
        margin: 36vh auto 0;
    }
    .studiolist__inner,
    .studiopage__inner {
        flex-direction: column;
    }
    .studiolist__inner h2,
    .studiopage__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .studiolist__inner .mainblock,
    .studiopage__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 80px;
    }
    .studiopage__inner h3 {
        font-size: 32px;
    }
    .studiopage__inner .ttl div {
        width: 50%;
    }
    .studiopage__inner .ttl img {
        width: 100%;
        height: auto;
    }
    .studiopage__inner .ttl h3 {
        font-size: 24px;
        padding: 0 0 10px 10px;
        margin-bottom: 10px;
    }
    .studiopage__inner .txt {
        padding: 0;
        margin-top: 20px;
    }
    .studiopage__inner .txt p {
        width: 100%;
        margin: 0 auto;
    }
    .studiopage__inner .txt p.heading1,
    .studiopage__inner .txt p.full,
    .studiopage__inner .txt div.full {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
    .studiopage__inner .date {
        flex-direction: column;
        align-items: flex-start;
    }
    .studiopage__inner .date h4 {
        padding: 0;
        line-height: 1;
        margin: 20px 0 0;
    }
    .studiopage__inner .date ul li.sns {
        justify-content: center;
    }
    .studiopage__inner .date ul li.sns a {
        width: 15%;
        margin: 0 10px 0;
    }
    .studiolist__inner ul {
        margin-bottom: 60px;
    }
    .studiolist__inner ul li {
        width: calc(100%/2);
        margin-bottom: 0;
    }
}


/* ARCHIVE一覧/詳細 */

.archivelist,
.archivepage {
    width: 100%;
    max-width: 1010px;
    margin: 20vh auto 0;
}

.archivelist__inner,
.archivepage__inner {
    display: flex;
    justify-content: space-between;
}

.archivelist__inner h2,
.archivepage__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 0.75;
    margin-right: 5%;
    text-align: right;
}

.archivelist__inner h2 span,
.archivepage__inner h2 span {
    display: block;
    text-align: right;
    font-size: 18px;
    margin-top: 24px;
}

.archivelist__inner .mainblock,
.archivepage__inner .mainblock {
    width: 80%;
}

.archivelist__inner ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 82px;
}

.archivelist__inner ul li {
    width: calc((100% - 30px)/3);
    position: relative;
    border: #707070 1px solid;
    border-bottom: #050505 2px solid;
    list-style: none;
    padding: 10px;
    margin-bottom: 48px;
}

.archivelist__inner ul li .thumbnail img {
    width: 100%;
    height: auto;
}

.archivelist__inner ul li a.arrow {
    margin: 0;
    text-align: left;
    font-size: 22px;
    margin: 10px 0;
}

.archivelist__inner ul li .day {
    color: #A0A0A0;
    font-size: 13px;
    text-align: right;
    margin: 10px 0;
}

.archivepage__inner .txt {
    width: 100%;
    border-bottom: #050505 1px solid;
    margin: 40px 0 0;
    line-height: 1.75;
}

.archivepage__inner .txt p {
    width: 100%;
    margin: 0 auto;
}

.archivepage__inner .ttl {
    display: flex;
    align-items: flex-end;
}

.archivepage__inner .ttl h3 {
    display: block;
    width: 100%;
    font-size: 48px;
    border-bottom: #050505 1px solid;
    padding: 0 0 20px 0;
    margin-bottom: 30px;
}

.archivepage__inner .ttl img {
    border: #050505 1px solid;
}

.archivepage__inner .txt p.full {
    line-height: 0;
}

.archivepage__inner .txt div.full {
    line-height: 0;
    display: flex;
}

.archivepage__inner .txt p.text {
    margin: 30px auto;
}

.archivepage__inner .date {
    display: flex;
    align-items: center;
}

.archivepage__inner .date h4 {
    font-family: 'Pathway Gothic One', sans-serif;
    font-weight: 600;
    font-size: 32px;
    padding: 0 40px;
}

.archivepage__inner .date ul {
    width: 100%;
    list-style: none;
}

.archivepage__inner .date ul li {
    border-bottom: #B4B4B4 1px dashed;
    padding: 20px 0;
}

.archivepage__inner .date ul li:last-child {
    border-bottom: none;
}

.archivepage__inner .date ul li a {
    text-decoration: underline;
}

.archivepage__inner .date ul li.sns {
    display: flex;
    align-items: center;
}

.archivepage__inner .date ul li.sns a {
    width: 6%;
    margin-right: 20px;
    line-height: 0;
}

.archivepage__inner .pickup__profile {
    width: 800px;
    margin: 60px auto 40px;
    background: #F8F8F8;
    line-height: 0;
}

.archivepage__inner .pickup__profile .flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archivepage__inner .pickup__profile .left {
    width: 50%;
}

.archivepage__inner .pickup__profile .right {
    margin: 0 30px;
}

.archivepage__inner .pickup__profile .right p {
    line-height: 1.5;
}

.archivepage__inner .pickup__profile .right h3 {
    font-size: 32px;
    line-height: 1.5;
}

.archivepage__inner .pickup__profile .right h3 span {
    font-size: 18px;
    margin-left: 10px;
}

@media screen and (max-width: 700px) {
    .archivelist,
    .archivepage {
        width: 90%;
        max-width: 90%;
        margin: 36vh auto 0;
    }
    .archivelist__inner,
    .archivepage__inner {
        flex-direction: column;
    }
    .archivelist__inner h2,
    .archivepage__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .archivelist__inner h2 span,
    .archivepage__inner h2 span {
        text-align: left;
    }
    .archivelist__inner .mainblock,
    .archivepage__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .archivelist__inner ul li {
        width: 100%;
        margin-bottom: 40px;
    }
    .archivelist__inner ul li a.arrow {
        font-size: 30px;
    }
    .archivelist__inner ul li .day {
        font-size: 18px;
    }
    .archivepage__inner .txt p.heading1,
    .archivepage__inner .txt p.full,
    .archivepage__inner .txt div.full {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
    .archivepage__inner .pickup__profile {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
    .archivepage__inner .pickup__profile .flexbox {
        justify-content: start;
    }
    .archivepage__inner .pickup__profile .left {
        margin: 5%;
        width: 24%;
    }
    .archivepage__inner .pickup__profile p {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 5%;
        line-height: 1.5;
    }
    .archivepage__inner .pickup__profile .right {
        margin: 0;
    }
    .archivepage__inner .pickup__profile .right h3 {
        line-height: .75;
    }
    .archivepage__inner .pickup__profile .right h3 span {
        margin: 0;
    }
    .archivepage__inner .date {
        flex-direction: column;
        align-items: flex-start;
    }
    .archivepage__inner .date h4 {
        padding: 0;
        line-height: 1;
        margin: 20px 0 0;
    }
    .archivepage__inner .date ul li.sns {
        justify-content: center;
    }
    .archivepage__inner .date ul li.sns a {
        width: 15%;
        margin: 0 10px 0;
    }
    .archivelist__inner ul {
        margin-bottom: 60px;
    }
}


/* WEBINAR一覧 */

.webinarlist {
    width: 100%;
    margin: 0 auto 0;
}

.webinarlist .mv {
    display: block;
    width: 100%;
    margin: 0 auto 80px;
    height: 20vh;
    background: #fff;
    /*height: 560px;
    background: url(../images/mv_abuot.png);*/
    background-size: cover;
    background-repeat: no-repeat;
}

.webinarlist__inner {
    width: 100%;
    max-width: 1010px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.webinarlist__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 0.75;
    margin-right: 5%;
    text-align: right;
}

.webinarlist__inner h3 {
    font-size: 36px;
    position: relative;
    display: inline;
}

.webinarlist__inner h3::before {
    content: '';
    width: 19px;
    height: 19px;
    background: url(../common/images/icon_link-bk.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 6px;
    right: -28px;
}

.webinarlist__inner .mainblock {
    width: 80%;
    margin-bottom: 12px;
}

.webinarlist__inner .flexbox {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.webinarlist__inner .flexbox .cl2 {
    width: calc((100% - 40px)/2);
    margin-bottom: 48px;
}

.webinarlist__inner .flexbox .cl2 a {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    border: #050505 1px solid;
    padding: 0 20px;
}

.webinarlist__inner .flexbox .cl2 a:hover {
    background: #F1F1F1;
    color: #050505;
}

.webinarlist__inner .img {
    width: auto;
    margin: 20px 0 18px;
}

.webinarlist__inner .day {
    border-bottom: 1px solid #050505;
    margin-bottom: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.webinarlist__inner .day span {
    background: #050505;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    padding: 2px 8px 1px 7px;
    font-size: 14px;
    margin-right: 6px;
}

.webinarlist__inner .profile {
    margin: 18px 0 20px;
}

.webinarlist__inner .profile h4 {
    background: #F1F1F1;
    margin-bottom: 3px;
    font-size: 18px;
    padding: 5px 20px;
}

.webinarlist__inner .profile_txt {
    background: #F8F8F8;
    padding: 10px 20px;
}

.webinarlist__inner .profile_txt .name {
    font-family: 'Pathway Gothic One', sans-serif;
    font-size: 26px;
    margin-bottom: 6px;
}

.webinarlist__inner .profile_txt .name span {
    font-size: 18px;
}

.webinarlist__inner .profile_txt .txt {
    line-height: 1.25;
}

@media screen and (max-width: 700px) {
    .webinarlist {
        width: 100%;
        margin: 0 auto;
    }
    .webinarlist .mv {
        height: 36vh;
        /*height: 420px;*/
        position: relative;
        background-position: center;
        margin: 0 auto 36px;
    }
    .webinarlist .mv h2 {
        position: absolute;
        bottom: 20px;
        left: 20px;
        font-size: 60px;
        color: #050505;
    }
    .webinarlist__inner {
        width: 90%;
        max-width: 90%;
        margin: auto;
        flex-direction: column;
    }
    .webinarlist__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .webinarlist__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .webinarlist__inner .flexbox {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .webinarlist__inner .flexbox .cl2 {
        width: 100%;
    }
}


/* PRIVACY POLICY*/

.ppolicypage {
    width: 100%;
    max-width: 1010px;
    margin: 20vh auto 0;
}

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

.ppolicypage__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 1;
    margin-right: 5%;
    text-align: right;
}

.ppolicypage__inner .mainblock {
    width: 80%;
    margin-bottom: 60px;
}

.ppolicypage__inner h3 {
    display: block;
    width: 100%;
    font-size: 48px;
    border-bottom: #050505 1px solid;
    padding: 0 0 12px 0;
    margin-bottom: 20px;
    line-height: 1;
}

.ppolicypage__inner .txt {
    width: 100%;
    margin-bottom: 40px;
}

.ppolicypage__inner .txt p {
    width: 100%;
    margin: 0 auto;
    line-height: 1.75;
}

.ppolicypage__inner .txt ul {
    padding-left: 1em;
}

.ppolicypage__inner .txt li {
    line-height: 1.5;
    margin-bottom: 10px;
}

@media screen and (max-width: 700px) {
    .ppolicypage {
        width: 90%;
        max-width: 90%;
        margin: 36vh auto 0;
    }
    .ppolicypage__inner {
        flex-direction: column;
    }
    .ppolicypage__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .ppolicypage__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
    .ppolicypage__inner h3 {
        font-size: 36px;
    }
    .ppolicypage__inner .txt li {
        margin-bottom: 20px;
    }
}


/* お問い合わせ */

.contactpage {
    width: 100%;
    max-width: 1010px;
    margin: 20vh auto 0;
}

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

.contactpage__inner h2 {
    width: 20%;
    font-size: 64px;
    line-height: 1;
    margin-right: 5%;
    text-align: right;
}

.contactpage__inner .mainblock {
    width: 80%;
}

.contactpage__inner .form_box {
    width: 100%;
}

.contactpage__inner .form_box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.contactpage__inner .form_box ul li.ttl {
    width: 30%;
    font-size: 24px;
    display: flex;
    align-items: center;
}

.contactpage__inner .form_box ul li {
    width: 70%;
    margin-bottom: 20px;
    font-family: 'Pathway Gothic One', sans-serif;
}

.contactpage__inner .form_box input {
    width: 100%;
    padding: 4px;
    font-family: 'Roboto', sans-serif;
}

.contactpage__inner .form_box textarea {
    width: 100%;
    padding: 4px;
    font-family: 'Roboto', sans-serif;
}

.contactpage__inner .form_box .ttl span {
    display: inline;
    width: auto;
    height: auto;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    margin-left: 10px;
    color: #fff;
    background: #050505;
    border: #050505 1px solid;
    border-radius: 20px;
    padding: 1px 18px;
}

@media screen and (max-width: 700px) {
    .contactpage {
        width: 90%;
        max-width: 90%;
        margin: 36vh auto 0;
    }
    .contactpage__inner {
        flex-direction: column;
    }
    .contactpage__inner h2 {
        text-align: left;
        margin-right: 0;
        font-size: 60px;
        width: 100%;
    }
    .contactpage__inner .mainblock {
        width: 100%;
        margin-left: 0;
        margin-top: 80px;
    }
    .contactpage__inner .form_box ul {
        flex-direction: column;
    }
    .contactpage__inner .form_box ul li {
        width: 100%;
        margin-bottom: 30px;
    }
    .contactpage__inner .form_box ul li.ttl {
        width: 100%;
        margin-bottom: 8px;
    }
    .contactpage__inner .form_box input {
        height: 40px;
    }
}

@media screen and (max-width: 700px) {}