@charset "UTF-8";

/*
	Theme Name: Theme
	Author: none
	Version: none
*/

/*================================================================================
base
================================================================================*/

/* global ------------------------------------------------*/

html, body {
    overflow-x: hidden;
}

body {
    color: #000000;
    font-family: "Noto Sans JP", sans-serif;
}

body.toppage {
    background-image: url("assets/img/index/top-bg.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}
body.subpage {
    background-image: url("assets/img/common/subpage-body_back.png");
    background-size: 4500px;
    background-position: top center;
    background-repeat: no-repeat;
}

a:hover {
    transition: ease .2s;
    opacity: 0.6;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    font-weight: 700;
}

p, a {
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 991px) {

    body.toppage {
        background-image: none;
    }

    body.subpage {
        background-image: url("assets/img/common/subpage-body_back-sp.png");
        background-size: 1200px auto;
        background-position: top left;
    }
}

/*================================================================================
common
================================================================================*/

/* header ------------------------------------------------*/

.header {
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.header-bar {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 40px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.header-logo {
    max-width: 450px;
}

.header-right {
    margin: 0 0 0 auto;
}

.header-nav ul {
    display: flex;
    align-items: center;
}

.header-nav ul li {
	text-align: center;
	margin: 0 20px;
}

.header-nav ul li:first-child {
	margin: 0 20px 0 0;
}

.header-nav ul li:last-child {
	margin: 0 0 0 20px;
}

.header-nav ul li a {
	font-size: 16px;
	font-weight: 700;
    display: flex;
    align-items: center;
}

.header-nav_icon {
    width: 12px;
    margin: 0 0 0 7px;
}

@media (max-width: 1370px) {
    
    .header-logo {
        max-width: 400px;
    }
    
    .header-nav ul li {
    	margin: 0 15px;
    }
    
    .header-nav ul li:first-child {
    	margin: 0 15px 0 0;
    }
    
    .header-nav ul li:last-child {
    	margin: 0 0 0 15px;
    }
    
    .header-nav ul li a {
    	font-size: 14px;
    }
}

@media (max-width: 1200px) {

    .header-bar {
        padding: 15px 20px;
    }

    .header-logo {
        max-width: 300px;
    }
    
    .header-nav ul li {
    	margin: 0 10px;
    }
    
    .header-nav ul li:first-child {
    	margin: 0 10px 0 0;
    }
    
    .header-nav ul li:last-child {
    	margin: 0 0 0 10px;
    }
    
    .header-nav ul li a {
    	font-size: 13px;
    }
}

/* headersp ------------------------------------------------*/

.headersp {
    padding: 15px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 980;
    width: 100%;
}

.headersp-bar {
    width: 100%;
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
 }
 
 .headersp-logo {
    max-width: 250px;
}

 .headersp-logo a {
    line-height: 1;
}

.headersp-contact {
    margin: 0 0 0 auto;
}
 
 .headersp-toggle {
	width: 20px;
	height: 20px;
    background-image: url(assets/img/common/headersp-toggle-open.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 30px;
    z-index: 990;
    font-size: 0;
}

 .headersp-toggle.close {
    background-image: url(assets/img/common/headersp-toggle-close.png);
}

.headersp-overlay_logo {
    max-width: 165px;
    margin: 0 0 50px 0;
}

.headersp-overlay {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #00a496;
	z-index: 950;
	padding: 85px 15px 15px 15px;
	overflow-y: auto;
	transition : 0.5s;
}

.headersp-overlay.open {
	opacity: 1;
	visibility: visible;
}

.headersp-overlay_nav ul li {
    border-bottom: 1px solid #4ebfb5;
}

.headersp-overlay_nav ul li:first-child {
    border-top: 1px solid #4ebfb5;
}

.headersp-overlay_nav ul li a {
	font-size: 14px;
	color: #ffffff;
    font-weight: 700;
    display: block;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.headersp-nav_icon {
    width: 12px;
    margin: 0 0 0 7px;
}

.headersp-overlay_copyright {
    font-size: 10px;
    border-top: 1px solid #4ebfb5;
    padding: 15px 0 0 0;
    color: #ffffff;
}

.headersp-banner {
    margin: 15px 0;
}

.headersp-banner ul {
    display: flex;
    align-items: center;
}

.headersp-banner ul li {
	margin: 0 2.5px;
}

.headersp-banner ul li:first-child {
	margin: 0 2.5px 0 0;
}

.headersp-banner ul li:last-child {
	margin: 0 0 0 2.5px;
}

/* footer ------------------------------------------------*/

.footer {
    background-color: #00a496;
	padding: 160px 0 0 0;
}

.footer-top {
    border-bottom: #4ebfb5 solid 1px;
    padding: 0 0 70px 0;
}

.footer-logo {
    max-width: 450px;
	margin: 0 0 40px 0;
}

h2.footer-info_heading {
	font-size: 16px;
	color: #ffffff;
	margin: 0 0 10px 0;
}

.footer-info_text {
	font-size: 14px;
	color: #ffffff;
}

.footer-nav {
	margin: 10px 0 70px 0;
}

.footer-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-nav ul li {
	text-align: center;
	margin: 0 0 0 25px;
}

.footer-nav ul li:first-child {
}

.footer-nav ul li:last-child {
}

.footer-nav ul li a {
	font-size: 15px;
	color: #ffffff;
}

.footer-banner ul {
    display: flex;
    align-items: center;
}

.footer-banner ul li {
	text-align: center;
	margin: 0 5px;
}

.footer-banner ul li:first-child {
	margin: 0 5px 0 0;
}

.footer-banner ul li:last-child {
	margin: 0 0 0 5px;
}

.footer-copyright {
	padding: 40px 0;
}

.footer-copyright_text {
	font-size: 12px;
	color: #ffffff;
}

@media (max-width: 991px) {

    .footer {
    	padding: 50px 0 0 0;
    }
    
    .footer-top {
        padding: 0 0 40px 0;
    }
    
    .footer-logo {
        max-width: 320px;
    	margin: 0 0 30px 0;
    }
    
    h2.footer-info_heading {
    	margin: 0 0 5px 0;
    }
    
    .footer-nav {
    	margin: 30px 0;
    }
    
    .footer-nav ul {
        display: block;
    }
    
    .footer-nav ul li {
    	text-align: left;
    	margin: 0 0 2px 0;
    }
    
    .footer-nav ul li:first-child {
    	margin: 0 0 2px 0;
    }
    
    .footer-nav ul li:last-child {
    	margin: 0;
    }
    
    .footer-nav ul li a {
    	font-size: 14px;
    }
    
    .footer-banner ul li {
    	margin: 0 3px;
    }
    
    .footer-banner ul li:first-child {
    	margin: 0 3px 0 0;
    }
    
    .footer-banner ul li:last-child {
    	margin: 0 0 0 3px;
    }
    
    .footer-copyright {
    	padding: 30px 0;
    }
}

/* style ------------------------------------------------*/

.common-header {
    display: flex;
    align-items: center;
	margin: 0 0 40px 0;
}

.common-header.center {
    justify-content: center;
}

.common-header.center .common-header_heading .en {
    justify-content: center;
}

.common-header_heading {
	font-size: 36px;
}

.common-header_heading .en {
	font-size: 16px;
    display: flex;
    align-items: center;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.common-header_heading .en::before {
    content: "●";
    color: #00a496;
	font-size: 8px;
	margin: 0 5px 0 0;
}

.common-header_more {
	margin: 0 0 0 70px;
    max-width: 280px;
    width: 100%;
}

.common-header_more-button {
    display: block;
    width: 100%;
	font-size: 15px;
	color: #00a496;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #00a496;
	padding: 15px;
	border-radius: 50px;
}

.common-lead {
	font-size: 18px;
	text-align: justify;
	margin: 0 0 90px 0;
}

.common-more {
	margin: 0 0 40px 0;
}

.common-more_button {
    display: block;
    max-width: 160px;
	font-size: 15px;
	color: #ffffff;
	text-align: center;
	background-color: #00a496;
	padding: 15px;
	border-radius: 50px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}

@media (max-width: 991px) {

    .common-header {
    	margin: 0 0 30px 0;
    }
    
    .common-header_heading {
    	font-size: 28px;
    }
    
    .common-header_heading .en {
    	font-size: 12px;
        letter-spacing: 1px;
    }
    
    .common-header_heading .en::before {
    	font-size: 6px;
    	margin: 0 3px 0 0;
    }
    
    .common-header_more {
    	margin: 0 0 30px 0; 
    }
    
    .common-header_more-button {
        max-width: 220px;
    	font-size: 13px;
    	padding: 10px;
    }
    
    .common-lead {
    	font-size: 13px;
    	margin: 0 0 30px 0;
    }
    
    .common-more {
    	margin: 0 0 30px 0;
    }
    
    .common-more_button {
        max-width: 130px;
    	font-size: 13px;
    	padding: 10px;
    }
}

/* subhero ------------------------------------------------*/

.subhero {
	margin: 200px 0 100px 0;
}

.subhero-heading {
	font-size: 56px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.subhero-heading .ja {
	font-size: 16px;
	display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

@media (max-width: 991px) {

    .subhero {
    	margin: 100px 0 50px 0;
    }
    
    .subhero-heading {
    	font-size: 40px;
        letter-spacing: 1px;
    }
    
    .subhero-heading .ja {
    	font-size: 13px;
    }
}

/* pager ------------------------------------------------*/

.common-pager {
    text-align: center;
}

.common-pager .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.common-pager a.page-numbers,
.common-pager .current,
.common-pager .dots {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    background-color: #ffffff;
    border: #efefef 1px solid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-align: center;
    margin: 0 5px;
    line-height: 1;
}

.common-pager .current {
    color: #ffffff;
    background-color: #00a496;
}

.common-pager a.prev, .common-pager a.next {
    display: flex;
    background-color: #ffffff;
    border: #efefef 1px solid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

.common-pager a.prev::before {
    content: "";
    display: flex;
    width: 7px;
    height: 12px;
    background-image: url("assets/img/common/common-pager_prev.png");
    background-size: 7px 12px;
}

.common-pager a.next::after {
    content: "";
    display: flex;
    width: 7px;
    height: 12px;
    background-image: url("assets/img/common/common-pager_next.png");
    background-size: 7px 12px;
}

@media (max-width: 991px) {

    .common-pager {
        margin: 30px 0 0 0;
    }
    
    .common-pager a.page-numbers,
    .common-pager .current,
    .common-pager .dots {
        font-size: 12px;
        width: 35px;
        height: 35px;
    }

    .common-pager a.prev, .common-pager a.next {
        width: 35px;
        height: 35px;
    }
    
    .common-pager a.prev::before {
        width: 5px;
        height: 8px;
        background-size: 5px 8px;
    }
    
    .common-pager a.next::after {
        width: 5px;
        height: 8px;
        background-size: 5px 8px;
    }
}

/* effect ------------------------------------------------*/

.effect-zoom {
    cursor: pointer;
    overflow: hidden;
}

.effect-zoom img {
    transition: transform .6s ease;
}

.effect-zoom:hover img {
    transform: scale(1.2);
}

/* fadein ------------------------------------------------*/

.fadein {
	opacity : 0;
	transform : translate(0, 100px);
	transition : all 800ms;
}

.fadein.scroll {
	opacity : 1;
	transform : translate(0, 0);
}

.appear {
    animation: appear 1s ease normal;
}

@keyframes appear {

    from {
	    opacity: 0;
	    transform : translate(0, 50px);
	}
	to {
	    opacity: 1;
	    transform : translate(0, 0);
	}
}

/*================================================================================
index
================================================================================*/

/* hero ------------------------------------------------*/

.top-hero {
	padding: 200px 0 50px 0;
}

h1.top-hero_heading {
	font-size: 36px;
}

.top-hero .column-content .row {
    align-items: center;
}

.top-hero .column-content .row-outer {
    margin: 0 -20px;
}

.top-hero .column-content .col-inner {
    padding: 0 20px;
}

.top-hero_slider {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.top-hero_slider img {
    width: 100%;
    display: block;
}

.top-hero_slider .swiper-slide {
    position: relative;
}

.top-hero_slider .slide-caption {
    position: absolute;
    left: 20px;
    bottom: 15px;
    padding: 5px 7px;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 3px;
}

.top-hero .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    background: rgba(0,0,0,.4);
    opacity: 0.8 !important;
}

.top-hero .swiper-pagination-bullet-active {
    background: #00a496;
    opacity: 1 !important;
}

.swiper-pagination {
    bottom: -25px !important;
    left: 50%;
    transform: translateX(-50%);
}

/* news ------------------------------------------------*/

.top-news {
    padding: 140px 0;
}

.top-news .column-content .row-outer {
    margin: 0 -10px;
}

.top-news .column-content .col-inner {
    padding: 0 10px;
}

.top-news_postlist .column-content .column-item {
	margin: 0 0 50px 0;
}

.top-news_postlist .column-content .row-outer {
    margin: 0 -10px;
}

.top-news_postlist .column-content .col-inner {
    padding: 0 10px;
}

.top-news_postlist-thumb {
	margin: 0 0 20px 0;
	border-radius: 10px;
	overflow: hidden;
}

.top-news_postlist-meta {
    display: flex;
    align-items: center;
	margin: 0 0 10px 0;
}

.top-news_postlist-meta .date {
	font-size: 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.top-news_postlist-meta .category {
    max-width: 100px;
	font-size: 13px;
	color: #00a496;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #00a496;
	padding: 2px 15px;
	border-radius: 50px;
	margin: 0 0 0 15px;
}

.top-news_postlist-title {
	font-size: 18px;
}

.top-news_more-button {
    margin: 0 0 0 auto;
}

.top-news_postlist-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* orga ------------------------------------------------*/

.top-orga {
    background-color: #f3f5f6;
    padding: 180px 0;
}

.top-orga_banner .sevencolumn-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.top-orga_banner .sevencolumn-item {
    width: 14.28%;
    padding: 0 5px 10px 5px;
}

.top-orga_banner-thumb {
    background-color: #ffffff;
    height: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-orga_banner-thumb_text {
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
	font-weight: 700;
}

@media (max-width: 1200px) {
    h1.top-hero_heading {
    	font-size: 30px;
    }
}

@media (max-width: 991px) {

    /* hero ------------------------------------------------*/
    
    .top-hero {
    	padding: 80px 0 80px 0;
        background-image: url("assets/img/index/top-hero_back-sp.png");
        background-size: cover;
        background-position: top left;
    }
    
    h1.top-hero_heading {
    	font-size: 25px;
    	margin: 50px 0 0 0;
    }
    
    .top-hero .column-content .row {
        align-items: center;
    }
    
    .top-hero .column-content .row-outer {
        margin: 0;
    }
    
    .top-hero .column-content .col-inner {
        padding: 0;
    }
    
    .swiper-pagination {
        bottom: -20px !important;
    }
    
    /* news ------------------------------------------------*/
    
    .top-news {
        padding: 40px 0;
    }
    
    .top-news .column-content .row-outer {
        margin: 0;
    }
    
    .top-news .column-content .col-inner {
        padding: 0;
    }
    
    .top-news_postlist .column-content .column-item {
    	margin: 0 0 20px 0;
    }
    
    .top-news_postlist .column-content .row-outer {
        margin: 0 -5px;
    }
    
    .top-news_postlist .column-content .col-inner {
        padding: 0 5px;
    }
    
    .top-news_postlist-thumb {
    	margin: 0 0 15px 0;
    }
    
    .top-news_postlist-meta {
        	margin: 0 0 5px 0;
    }
    
    .top-news_postlist-meta .date {
    	font-size: 8px;
        letter-spacing: 1px;
    }
    
    .top-news_postlist-meta .category a {
        max-width: 60px;
    	font-size: 8px;
    	padding: 2px 5px;
    	margin: 0 0 0 10px;
    }
    
    .top-news_postlist-title {
    	font-size: 13px;
    }
    
    .top-news_more-button {
        margin: 0 auto;
    }
    
    /* orga ------------------------------------------------*/
    
    .top-orga {
        padding: 40px 0;
    }
    
    .top-orga_banner .sevencolumn-content {
        margin: 0 -4px;
    }
    
    .top-orga_banner .sevencolumn-item {
        width: 33.333%;
        padding: 0 4px 8px 4px;
    }
    
    .top-orga_banner-thumb {
        height: 50px;
        border-radius: 5px;
    }
    
    .top-orga_banner-thumb_text {
    	font-size: 8px;
    }
}

/*================================================================================
about
================================================================================*/

/* purpose ------------------------------------------------*/

.about-purpose {
	padding: 0 0 140px 0;
}

.about-purpose_textbox {
    max-width: 900px;
    margin: 0 auto;
}

.about-purpose_textbox-text {
	font-size: 18px;
	text-align: justify;
}

/* orga ------------------------------------------------*/

.about-orga {
    background-color: #f3f5f6;
    padding: 100px 0 150px 0;
}

.about-orga_member {
    max-width: 900px;
    margin: 0 auto;
}

.about-orga_member .column-content .row-outer {
    margin: 0 -35px;
}

.about-orga_member .column-content .col-inner {
    padding: 0 35px;
}

.about-orga_member-thumb {
	margin: 0 0 20px 0;
	text-align: center;
}
.about-orga_member-thumb img{
    max-width: 300px;
    height: auto;
}

.about-orga_member-name {
	font-size: 18px;
	color: #000000;
	text-align: center;
	margin: 0 0 20px 0;
	font-weight: 700;
}

.about-orga_member-name .pos {
	font-size: 13px;
	color: #00a496;
    display: block;
	margin: 0 0 5px 0;
}

.about-orga_member-text {
	font-size: 16px;
	color: #000000;
}

/* chart ------------------------------------------------*/

.about-chart {
    padding: 100px 0 150px 0;
}

.about-chart_graph {
    max-width: 900px;
    margin: 0 auto;
}

/* ariat ------------------------------------------------*/

.about-ariat {
    background-color: #f3f5f6;
    padding: 100px 0 150px 0;
}

.about-ariat_address {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

h3.about-ariat_address-title {
	font-size: 18px;
}

p.about-ariat_address-text {
	font-size: 18px;
}

@media (max-width: 991px) {

    /* purpose ------------------------------------------------*/
    
    .about-purpose {
    	padding: 0 0 50px 0;
    }
    
    .about-purpose_textbox-text {
    	font-size: 14px;
    }
    
    /* orga ------------------------------------------------*/
    
    .about-orga {
        padding: 80px 0 50px 0;
    }
    
    .about-orga_member .column-content .row-outer {
        margin: 0;
    }
    
    .about-orga_member .column-content .col-inner {
        padding: 0;
    }
    
    .about-orga_member .column-content .column-item {
        margin: 0 0 30px 0;
    }
    
    /* chart ------------------------------------------------*/
    
    .about-chart {
        padding: 80px 0;
    }

    /* ariat ------------------------------------------------*/
    
    .about-ariat {
        padding: 80px 0;
    }
}

/*================================================================================
activity
================================================================================*/

/* activity ------------------------------------------------*/

.activity-symposium {
	margin: 0 0 100px 0;
}

/* webiner ------------------------------------------------*/

.activity-webiner {
	margin: 0 0 100px 0;
}

/* studygroup ------------------------------------------------*/

.activity-studygroup {
	margin: 0 0 100px 0;
}

.activity-studygroup_table {
	margin: 0 0 30px 0;
}

.activity-studygroup_notice {
	font-size: 20px;
	margin: 0 0 120px 0;
}

.activity-studygroup_gallery .column-content .row-outer {
    margin: 0 -30px;
}

.activity-studygroup_gallery .column-content .col-inner {
    padding: 0 30px;
}

/* participate ------------------------------------------------*/

.activity-participate {
    padding: 100px 0 150px 0;
}

h3.activity-participate_heading {
	font-size: 15px;
	color: #00a496;
}

p.activity-participate_text {
	font-size: 15px;
}

p.activity-participate_text .green {
	color: #00a496;
}

p.activity-participate_linktext {
	font-size: 15px;
    line-height: 2.2;
	padding-left: 1em;
	margin: 20px 0 0 0;
}
p.activity-participate_linktext a{
	color: #00a496;
}

.activity-participate_textbox-item {
	margin: 0 0 40px 0;
}

.activity-participate_more-button {
    display: block;
    max-width: 340px;
	font-size: 18px;
	color: #ffffff;
	text-align: center;
	background-color: #00a496;
	padding: 20px 15px;
	border-radius: 10px;
}

@media (max-width: 991px) {

    /* activity ------------------------------------------------*/
    
    .activity-symposium {
    	margin: 0 0 60px 0;
    }
    
    /* webiner ------------------------------------------------*/
    
    .activity-webiner {
    	margin: 0 0 60px 0;
    }
    
    /* studygroup ------------------------------------------------*/
    
    .activity-studygroup {
    	margin: 0 0 60px 0;
    }
    
    .activity-studygroup_table {
    	margin: 0 0 20px 0;
	    overflow-x: scroll;
    }
    
    .activity-studygroup_table img {
        width: 800px;
        max-width: 800px;
        height: auto;
    }
    
    .activity-studygroup_notice {
    	font-size: 13px;
    	margin: 0 0 40px 0;
    }
    
    .activity-studygroup_gallery .column-content .row-outer {
        margin: 0;
    }
    
    .activity-studygroup_gallery .column-content .col-inner {
        padding: 0;
    }
    
    .activity-studygroup_gallery .column-content .column-item {
    	margin: 0 0 30px 0;
    }
    
    /* participate ------------------------------------------------*/
    
    .activity-participate {
        padding: 0 0 80px 0;
    }
    
    .activity-participate_textbox-item {
    	margin: 0 0 30px 0;
    }
    
    .activity-participate_more-button {
    	margin: 0 auto;
    }
}

/*================================================================================
newspost
================================================================================*/

.newslist-news {
    padding: 0;
    margin: 0 0 150px 0;
}

/* sort ------------------------------------------------*/

.newslist-sort_category {
	margin: 0 0 80px 0;
}

.newslist-sort_category ul {
    display: flex;
    flex-wrap: wrap;         /*折り返し有り・複数行*/
}

.newslist-sort_category ul li {
	margin: 0 10px 0 0;
    max-width: 100px;
    width: 100%;
}

/* -----------------

.newslist-sort_category ul li:first-child {
    margin: 0 10px 0 0;
}

.newslist-sort_category ul li:last-child {
    margin: 0 0 0 10px;
}
------------------*/

.newslist-sort_category ul li a {
    width: 100%;
	font-size: 13px;
	color: #000000;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #000000;
	padding: 2px 15px;
	border-radius: 50px;
	display: block;
}

.newslist-sort_category ul li.active a {
	background-color: #00a496;
	color: #ffffff;
	border: 1px solid #00a496;
}

@media (max-width: 991px) {

    .newslist-news {
        margin: 0 0 100px 0;
    }
    
    /* sort ------------------------------------------------*/
    
    .newslist-sort_category {
    	margin: 0 0 60px 0;
    }
    
    .newslist-sort_category ul li {
    	margin: 0 10px 10px 0;
    }
    
    /* -----------------
    .newslist-sort_category ul li:first-child {
        margin: 0 5px 0 0;
    }
    
    .newslist-sort_category ul li:last-child {
        margin: 0 0 0 5px;
    }
    ----------*/
    
    .newslist-sort_category ul li a {
    	font-size: 12px;
    	padding: 1px 10px;
    }
    
    .top-news_postlist {
    	margin: 0 0 20px 0;
    }
}

/*================================================================================
single
================================================================================*/

.single-news {
	margin: 0 0 150px 0;
}

.single-news_postlist-meta {
    display: flex;
    align-items: center;
	margin: 0 0 10px 0;
}

.single-news_postlist-meta .date {
	font-size: 14px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.single-news_article p img {
    max-width: 600px;
}

.activity-studygroup_gallery-thumb img {
    border-radius: 10px;
}

.single-news_article a {
	color: #00a496;
}


.single-news_article h1 {
    font-size: 45px;
    margin: 0 0 0.5em 0;
}

.single-news_article h2 {
    font-size: 35px;
    margin: 0 0 0.5em 0;
}

.single-news_article h3 {
    font-size: 30px;
    margin: 0 0 0.5em 0;
}

.single-news_article h4 {
    font-size: 25px;
    margin: 0 0 0.5em 0;
}

.single-news_article h5 {
    font-size: 20px;
    margin: 0 0 0.5em 0;
}

.single-news_article h6 {
    font-size: 16px;
    margin: 0 0 0.5em 0;
}

.single-news_article p {
    font-size: 16px;
    margin: 0 0 2.5em 0;
    letter-spacing: 1px;
}

@media (max-width: 991px) {

    .single-news {
    	margin: 0 0 100px 0;
    }

    .single-news_postlist-meta {
        	margin: 0 0 5px 0;
    }
    
    .single-news_postlist-meta .date {
    	font-size: 8px;
        letter-spacing: 1px;
    }
    
    .single-news_article h1 {
        font-size: 40px;
    }
    
    .single-news_article h2 {
        font-size: 30px;
    }
    
    .single-news_article h3 {
        font-size: 25px;
    }
    
    .single-news_article h4 {
        font-size: 20px;
    }
    
    .single-news_article h5 {
        font-size: 16px;
    }
    
    .single-news_article h6 {
        font-size: 14px;
    }
    
    .single-news_article p {
        font-size: 14px;
    }
}


  /* 26.9.9 追記 ギャラリー調整 ---------------*/

.gallery {
    margin-bottom:30px !important;
}

.gallery-item img {
    border: none !important;
    padding:1px;
}

.goverlay {background: rgba(0, 0, 0, .7)!important;}
