@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
基本
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

body {
    background-color: #fff;
    font-family: Helvetica, Arial, Verdana, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

:root {
    --primary-color: #88568B;
    --primary-color-en: #9C7852;
    --sub-color: #736357;
    --sub-color-en: #9C7852;
    --point-color: #CE9900;
    --point-color-en: #F486B3;
    line-height: 1.7;
}

a {
    color: #0000ff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}
a img:hover {
    filter: brightness(90%) contrast(120%);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */
}
@media (min-width: 1024px) {
	.sp_on {
        display: none;
    }
}

.pc_on {
    display: none;
}
@media (min-width: 768px) {
	.pc_on {
        display: block; /* PCのみ表示 */
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 55px;
    position: fixed;
    border: 1px solid var(--point-color);
    background: var(--point-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

    &.en {
        border: 1px solid var(--point-color-en);
        background: var(--point-color-en);
    }
}
@media (min-width: 768px) {
    .page_top {
        right: 20px;
        bottom: 20px;
    }
}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(-45deg);
}

/* TOPバナー */
.top_banner {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}
.bnr_ttl {
    color: var(--primary-color-en);
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}
.top_banner ul{
    display: grid;
	grid-template-columns: repeat(1, auto);
	gap: 10px;
	justify-content: center;
}
.top_banner ul a{
    display: block;
}
.top_banner ul img{
    max-width: 300px;
    display: block;
    margin: 0 auto;
}
.top_banner.en {
    max-width: 735px;
}
/* .top_banner.en ul{
	grid-template-columns: repeat(3, auto);
} */
@media (min-width: 768px) {
    .top_banner {
        max-width: 1100px;
    }
    .bnr_ttl {
        text-align: left;
    }
    .top_banner ul{
        grid-template-columns: repeat(30, auto);
        justify-content: space-between;
    }
    .top_banner ul img{
        margin: 10px auto;
    }
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
スタイル
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

.wrapper {
    position: relative;
}

.wrapper.en::before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background-image: linear-gradient(var(--sub-color), var(--sub-color));
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.container {
    width: 100%;
	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* @group ヘッダーエリア
------------------------------------------------------*/
/* @group メインエリア
------------------------------------------------------*/

div.lang__switch {
	display: none;
}

@media (min-width: 1370px) {
	div.lang__switch {
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 10px;
		top: 75px;
		left: 50%;
		transform: translate(-50%, 0);
		z-index: 2;

		&.en {
            top: 20px;
            padding-right: 70px;
        }
	}

	div.lang__switch a {
		position: relative;
		background-color: #FFFFFF;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 45px;
		height: 45px;
		font-size: 18px;
		color: var(--primary-color-en);
		text-decoration: none;
		text-align: center;
		transition: all 0.3s;
	}

    div.lang__switch.en a {
        background-color: #FFFFFF;
        color: var(--primary-color-en);
    }

	div.lang__switch a.current {
		background-color: var(--primary-color);
		color: #FFFFFF;
	}

	div.lang__switch.en a.current {
		background-color: var(--primary-color-en);
		color: #FFFFFF;
	}


	div.lang__switch a:hover {
		filter: brightness(90%) contrast(120%);
	}

	div.lang__switch.en a:hover {
		background-color: var(--primary-color);
		color: #FFFFFF;
	}

}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    width: 100%;
    background-color: var(--primary-color);

    &.en {
        background-color: var(--primary-color-en);
    }
}

.copyright {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 13px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}
@media (min-width: 768px) {
    .copyright {
        height: 40px;   
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* トップページ */

/* メインビジュアル 日本語 */
.mv {
    position: relative;
    width: 100%;
    height: 705px;
    box-sizing: border-box;   
}
.mv.header {
    height: 155px;
}

@media (min-width: 768px) {
    .mv {
        height: 480px;
    }
    .mv.header {
        height: 115px;
    }
}

@media (min-width: 1024px) {
    .mv {
        height: 705px;
    }
    .mv.header {
        height: 157px;
    }
}

@media (min-width: 1200px) {
    .mv {
        height: 790px;
        background-image: url(../images/bg.jpg);
        background-position: left top;
        background-repeat: repeat-x;
        background-size: 100% 790px;
    }
    .mv.header {
        height: 200px;
    }
}

@media (min-width: 1800px) {
    .mv {
        height: 790px;
        background-image: url(../images/bg.jpg);
        background-position: left top;
        background-repeat: repeat-x;
        background-size: 100% 790px;
    }
    .mv.header {
        height: 200px;
    }
}

.mv::before {
    position: absolute;
    content: ""; 
    display: block;
    width: 100%;
    height: 705px;
    background-image: url(../images/mv_sp.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .mv::before {
        height: 480px;
        max-width: 1400px;
        background-image: url(../images/mv_pc.jpg);
        background-position: center top;
    }

    .mv.header::before {
        height: 115px;
    }
}

@media (min-width: 1024px) {
    .mv::before {
        height: 705px;
        background-image: url(../images/mv_pc.jpg);
        background-position: center top;
    }
    .mv.header::before {
        height: 157px;
    }
}

@media (min-width: 1200px) {
    .mv::before {
        height: 790px;
        background-image: url(../images/mv_pc.jpg);
        background-position: center 10px;
    }
    .mv.header::before {
        height: 200px;
    }
}

@media (min-width: 1800px) {
    .mv::before {
        height: 790px;
        background-image: url(../images/mv_pc.jpg);
        background-position: center top;
    }
    .mv.header::before {
        height: 200px;
    }
}

/* メインビジュアル 英語 */
.mv.en {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.mv.header.en {
    height: 135px;
}

@media (min-width: 414px) {
    .mv.header.en {
        height: 150px;
    }
}


@media (min-width: 768px) {
    .mv.en {
        height: 100%;
        min-height: 560px;
        background-image: url(../images/bg_en.jpg);
        background-size: cover;
        background-position: left top;
        background-repeat: repeat-x;
    }
    .mv.header.en {
        height: 78px;
        min-height: 78px;
    }
}

@media (min-width: 1024px) {
    .mv.en {
        min-height: 705px;
    }
    .mv.header.en {
        height: 110px;
        min-height: 110px;
    }
}

@media (min-width: 1200px) {
    .mv.en {
        min-height: 885px;
    }
    .mv.header.en {
        height: 130px;
        min-height: 130px;
    }
}

@media (min-width: 1370px) {
    .mv.en {
        min-height: 1030px;
    }
    .mv.header.en {
        height: 200px;
        min-height: 200px;
    }
}

.mv.en::before {
    width: 100%;
    height: 100%;
    background-image: url(../images/mv_sp_en.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}


@media (min-width: 768px) {
    .mv.en::before {
        /* min-height: 575px; */
        background-image: url(../images/mv_pc_small_en.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .mv.header.en::before {
        height: 78px;
    }
    /* .mv.header.en::before {
        height: 115px;
    } */
}

@media (min-width: 1024px) {
    .mv.header.en::before {
        height: 110px;
    }
}

@media (min-width: 1370px) {
    .mv.en::before {
        min-height: 790px;
        background-image: url(../images/mv_pc_en.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
    }
    .mv.header.en::before {
        height: 200px;
        min-height: 200px;
    }
}

.mv > * {
    position: absolute;
    left: -9999em;
}

.info_container {
    min-height: 635px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;

    &.en {
        min-height: auto;
       padding-bottom: 0px;
    }
}
@media (min-width: 768px) {
    .info_container {
        min-height: 570px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding-bottom: 75px;

        &.en {
            min-height: auto;
            flex-direction: column;
            align-items: center;
            gap: 0px;
        }
    }
}

.news {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 3px dotted #948175;

    &.en {
        padding-top: 0px;
        padding-bottom: 0px;
        border-bottom: none;
    }
}
@media (min-width: 768px) {
    .news {
        max-width: 680px;
        padding-top: 20px;
        padding-bottom: 0px;
        border-bottom: none;
        border-right: 3px dotted #948175;

        &.en {
            padding-top: 40px;
            border-right: none;
        }
    }
}
@media (min-width: 1024px) {
    .news {
        max-width: 735px;
    }
}
@media (min-width: 1210px) {
    .news {
        max-width: 735px;
    }
}

.news h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.news.en h2 {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color-en);
    padding: 5px 10px;
}

.news h2::before {
    content: "";
    display: block;
	background-image: url(../images/ico_news.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
}

.news.en h2::before {
    background-image: url(../images/ico_news_en.svg);
    width: 18px;
    height: 18px;
}

.news h2 span {
    font-size: 12px;
    font-weight: bold;
    color: var(--sub-color);
}

.news.en h2 span {
    font-size: 14px;
    color: #FFFFFF;
}

.news h2 + * {
    margin-top: 25px;
}

.news-list {
    height: 300px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: scroll;
    line-height: 1.4;

    &.en {
        height: 200px;
    }
}
@media (min-width: 768px) {
    .news-list {
        height: 260px;
        padding-left: 0px;
        padding-right: 20px;
        gap: 15px;

        &.en {
            height: 200px;
            margin-bottom: 40px;
        }
    }
}
@media (min-width: 1024px) {
    .news-list {
        padding-left: 0px;
        padding-right: 20px;
    }
}
@media (min-width: 1210px) {
    .news-list {
        padding-left: 47px;
        padding-right: 47px;
    }

    &.en {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.news-list li {
    display: flex;
    border-bottom: 1px dashed #948175;
    padding-bottom: 10px;
    font-size: 12px;
}

.news-list.en li {
    border-bottom: 1px dashed #FFFFFF;
}

.news-list li:first-child {
    padding-top: 14px;
    border-top: 1px dashed #948175;
}

.news-list.en li:first-child {
    padding-top: 0px;
}

.news-list.en li:first-child {
    border-top: 1px dashed #FFFFFF;
}

.date {
    width: 75px;
    font-weight: bold;
    color: var(--sub-color);

    &.en {
       width: 90px;
       color: var(--sub-color-en);
    }
}
@media (min-width: 768px) {
    .date {
        width: 75px;
    }
}

.excerpt {
    flex: 1;
    color: #333333;

    &.en {
        color: #8E8E8E;
    }
}

.secretariat {
    color: var(--sub-color);
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;

    &.en {
        border-image-source: linear-gradient(#EBDCD2,#EBDCD2);
        border-image-slice: fill 0;
        border-image-outset: 0 100vw 0 100vw;
        padding: 20px 0px 30px;
        margin-top: 0px;
        color: var(--primary-color-en);
        text-align: center;
    }
}
@media (min-width: 768px) {
    .secretariat {
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 0px;
    }
}

.secretariat h2 {
    margin-bottom: 10px;
}

.secretariat h2 span {
    font-size: 14px;
    font-weight: bold;
}

.secretariat dl {
    font-size: clamp(0.625rem, 0.568rem + 0.242vi, 0.75rem);
    line-height: 1.2;
}

.secretariat dl dt + * {
    margin-top: 5px;
}

.secretariat dt {
    font-size: 14px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 12px;
}

.secretariat dd a {
    text-decoration: none;
}

.secretariat dd a:hover {
    text-decoration: underline;
}

/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #FFFFFF;
    box-shadow: inset 2px 2px 7px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
    .page-contents {
        min-height: 1150px;
        box-shadow: inset 3px 3px 10px rgba(0,0,0,0.4);
    }
}

.page-title {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .page-title {
        background-size: 34px 100%;
        margin-bottom: 40px;
    }
}

.page-title::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--sub-color);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.page-title.en::before {
    background-color: var(--sub-color-en);
}

@media (min-width: 768px) {
    .page-title::before {
        width: 35px;
    }
}

.page-title > span {
    margin-left: 40px;
    font-size: clamp(1.375rem, 1.261rem + 0.485vi, 1.625rem);
    font-weight: bold;
    color: var(--sub-color);
    line-height: 1;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .page-title > span {
        margin-left: 50px;
    }
}

.page-body {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 35px;
}
@media (min-width: 768px) {
    .page-body {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: var(--space, 1.5em);
}

.page-body section > * + * {
    margin-block-start: var(--space, 1em);
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* 見出し */

.heading_h3 {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-color);
}

.heading_h3 > span {
    margin-left: 5px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: clamp(1.125rem, 1.05rem + 0.32vi, 1.25rem);
    color: var(--sub-color);
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.2;
}

.heading_h3 > span::before {
    font-family: "Font Awesome 5 Free";
    content: "\f058";
    font-weight: 900;
    font-size: 0.9em;
    padding-right: .3em;
    position: relative;
    top: -1px;
    color: #C2AD94;
}

.heading_h4 {
    border-left: 3px solid var(--sub-color);
    padding-top: 2px;
    padding-bottom: 2px;
}

.heading_h4 > span {
    font-weight: bold;
    font-size: clamp(1rem, 0.943rem + 0.242vi, 1.125rem);
    padding-left: 10px;
}

/* ボタン */

.btn_wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn_basic {
    min-width: 250px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.7em 2em;
    background: linear-gradient(var(--point-color), var(--point-color)) no-repeat;
    background-position: left top;
    background-size: 0% 100%;
    border: 1px solid var(--point-color);
    color: var(--point-color);
    transition: background .35s ease-out, color .35s;
    text-decoration: none;
    line-height: 1;
    font-size: clamp(0.938rem, 0.863rem + 0.32vi, 1.063rem);
}

.btn_basic:hover {
    text-decoration: none;
    background: linear-gradient(var(--point-color), var(--point-color)) no-repeat;
    background-size: 100% 100%;
    border: 1px solid var(--point-color);
    color: #fff;
}
.btn_basic.bg_gray {
    background: #aaa;
    border: 1px solid #aaa;
    color: #fff;
    pointer-events: none;
}

/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}


.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: FontAwesome;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint-o） */
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f003';
    font-family: FontAwesome;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: FontAwesome;
    margin-right: .5em;
}

.check::before {
    content: '\f046';
    font-family: FontAwesome;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}

/*囲みピンク*/
.border_pink{
	border: 3px solid rgba(245, 200, 200, 0.4);
	background: rgba(245, 200, 200, 0.1);
	padding: 1em 2em;
}
/*囲み青*/
.border_blue{
	border: 3px solid rgba(199, 222, 245, 0.4);
	background: rgba(199, 222, 245, 0.1);
	padding: 1em 2em;
}

/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.5em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/*※入り*/
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

.asterisk li::before {
    content: '※';
    margin-right: .3em;
    position: relative;
    bottom: 1px;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* ボタン */

.btn_basic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (min-width: 768px) {
    .btn_basic {
        flex-direction: row;
        justify-content: center;
    }
}

.btn_basic li {
    width: min(90%, 500px);
}

.btn_basic li a {
    display: block;
    background-image: linear-gradient(to bottom, #1C297B, rgba(28, 41, 123, 0.8));
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: clamp(0.938rem, 0.863rem + 0.32vi, 1.063rem);
    font-weight: bold;
    text-align: center;
    padding: 0.7em 2em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
}

.btn_basic.en li a {
    background-image: linear-gradient(to bottom, #F486B3, rgba(244, 134, 180, 0.8));
}

.btn_basic li a:hover {
    background-image: linear-gradient(to top, #1C297B, rgba(28, 41, 123, 0.8));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn_basic.en li a:hover {
    background-image: linear-gradient(to top, #F486B3, rgba(244, 134, 180, 0.8));
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* 開催概要 */

.outline-detail {
    display: grid;
    row-gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .outline-detail {
        grid-template-columns: 160px 1fr;
        column-gap: 15px;
        row-gap: 30px;
        padding-left: 10px;
        padding-right: 10px;

        &.en {
            grid-template-columns: 220px 1fr;
        }
    }
}

.outline-detail dt {
    margin-top: 10px;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--sub-color);
    padding-left: 10px;
    line-height: 1;
}
.outline-detail.en dt {
    background-color: var(--sub-color-en);
}

@media (min-width: 768px) {
    .outline-detail dt { 
        column-gap: 10px;
        margin-top: 0;
    }
}

.outline-detail dt span {
    color: #FFFFFF;
}

@media screen and (max-width:767px) {
    .outline-detail dt span::before {
        content: "\f14a";
        font-family: "Font Awesome 5 Free";
        margin-right: .5em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
        opacity: 0.7;
    }
}

@media (min-width: 768px) {
    .outline-detail dt::after {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        margin-right: .75em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
    }
}

.outline-detail dd {
    border-bottom: 1px dotted #CCCCCC;
    padding-bottom: 3px;
    margin-left: 10px;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .outline-detail dd {
        padding-bottom: 5px;
        padding-top: 2px;
        margin-left: 0px;
    }
}

/* 総会概要 */

.about_the_chairman {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid #DDDDDD;
    padding: 0px 20px 20px;
    text-align: center;
    font-feature-settings: "palt";
}
@media (width >= 768px) {
    .about_the_chairman {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
        text-align: left;
    }
}

.about_the_chairman img {
    width: 200px;
    height: 250px;
    object-fit: cover;
}

.greeting_text_wrap {
    padding: 10px;
}
@media (min-width: 768px) {
    .greeting_text_wrap {
        padding: 20px;
    }
}

.greeting_text_wrap > * + * {
    margin-top: 1em;
}

.greeting_text {
    text-indent: 1em;

    &.en {
        text-indent: 0;
    }
}

.outline-detail {
    display: grid;
    row-gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
    font-feature-settings: "palt";
}
@media (min-width: 768px) {
    .outline-detail {
        grid-template-columns: 160px 1fr;
        column-gap: 15px;
        row-gap: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.outline-detail dt {
    margin-top: 10px;
    height: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding-left: 10px;
    line-height: 1;
    
}
@media (min-width: 768px) {
    .outline-detail dt { 
        column-gap: 10px;
        margin-top: 0;
    }
}

.outline-detail dt span {
    color: #FFFFFF;
}

@media screen and (max-width:767px) {
    .outline-detail dt span::before {
        content: "\f14a";
        font-family: "Font Awesome 5 Free";
        margin-right: .5em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
        opacity: 0.7;
    }
}

@media (min-width: 768px) {
    .outline-detail dt::after {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        margin-right: .75em;
        font-weight: 900;
        font-size: 0.8em;
        position: relative;
        bottom: 1px;
        color: #FFFFFF;
    }
}

.outline-detail dd {
    border-bottom: 1px dotted #CCCCCC;
    padding-bottom: 3px;
    margin-left: 10px;
    line-height: 1.4;
}
@media (min-width: 768px) {
    .outline-detail dd {
        padding-bottom: 5px;
        padding-top: 2px;
        margin-left: 0px;
    }
}

/* リンク */

.link-list {
    padding: 10px 10px;
}
@media (width >= 768px) {
.link-list {
    padding: 20px 2%;
}
}
  
  .link-list dt {
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .link-list dt::before {
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.8em;
    position: relative;
    bottom: 1px;
    opacity: 0.7;
    color: var(--sub-color);
  }
  
  .link-list dd:not(:last-child) {
    margin-bottom: 1.5em;
  }
  
  .link-list dd {
    padding-left: 1.5em;
    padding-top: 1em;
    position: relative;
  }
  
  .link-list dd::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 1px;
    background-image: linear-gradient(to right, var(--sub-color), transparent);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left top;
    left: 1.4em;
    top: 0;
  }
  
  .link-list dd a {
    color: var(--sub-color);
  }

  .link-list dd a img {
    width: 300px;
    height: auto;
  }

  /* Links */

  .link-list_en {
    padding: 10px 10px;
  }
  @media (width >= 768px) {
    .link-list_en {
        padding: 20px 2%;
    }
  }

  .link-list_en li {
    font-weight: bold;
    font-size: 1.2em;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  
  .link-list_en li::before {
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.8em;
    position: relative;
    bottom: 1px;
    opacity: 0.7;
    color: var(--sub-color-en);
  }

  .link-list_en li a {
    color: var(--sub-color-en);
  }

/* 運営体制 */
.img_management {
    display: flex;
    justify-content: center;
}

.img_management img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center center;
}

@media (width >= 1024px) {
    .img_management img {
        width: 753px;
        height: 518px;
        object-fit: cover;
        object-position: right top;
    }
}

.management_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
}

@media (width >= 768px) {
    .management_info {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    }
}

.management_info figure {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.management_info figure img {
    width: 150px;
    height: auto;
}

@media (width >= 1024px) {
    .management_info figure img {
        width: 180px;
        height: auto;
    }
}

.management_info figure figcaption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.management_info figure figcaption span:first-child {
    font-size: 16px;
    font-weight: bold;
}

.management_info figure figcaption span:last-child {
    font-size: 14px;
}

.list_management {
    padding: 0px 20px;
}

.list_management > * + * {
    margin-top: 10px;
}

.list_management li {
    display: flex;
    font-size: 14px;
    gap: 10px;
}

.list_management li span:first-child {
    width: 120px;
    font-weight: bold;
    font-size: 16px;
}
.list_management li span:first-child::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    margin-right: .25em;
    font-size: 0.8em;
    padding-right: .3em;
    position: relative;
    top: -1px;
    color: #C2AD94;
}

.list_management li span:last-child {
    flex: 1;
}
.indent1em {
	text-indent: -1em;
	padding-left: 1em;
}
.indent2em {
	text-indent: -2em;
	padding-left: 2em;
}
.indent3em {
	text-indent: -3em;
	padding-left: 3em;
}
.indent4em {
	text-indent: -4em;
	padding-left: 4em;
}
.indent5em {
	text-indent: -5em;
	padding-left: 5em;
}
.indent6em {
	text-indent: -6em;
	padding-left: 6em;
}
.indent7em {
	text-indent: -7em;
	padding-left: 7em;
}
.indent8em {
	text-indent: -8em;
	padding-left: 8em;
}
.indent9em {
	text-indent: -9em;
	padding-left: 9em;
}
.indent10em {
	text-indent: -10em;
	padding-left: 10em;
}

/* 演題登録 */
.cfa_endai{
	width: 150px;
	background: var(--primary-color);
	color: #fff;
	text-align: center;
	padding: 3px;
}
.toggle_title {
	position: relative;
  border: 1px solid var(--primary-color);
	cursor: pointer;
	font-weight: bold;
	padding: 10px;
}
.toggle_text{
  border: 1px solid var(--primary-color);
	border-top:none;
	padding: 0 10px 10px 10px;
}
.toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: var(--primary-color);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}
.toggle_btn:before, .toggle_btn:after {
	display: block;
	content: '';
	background-color: #fff;
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.toggle_btn:before {
	width: 2px;
	height: 10px;
}
.toggle_title.selected .toggle_btn:before {
	content: normal;
}

@media (width <= 768px) {
	.enclosure01 .llText{
		font-size: 16px;
	}
}

/* 発表演題の倫理審査について */

/* チェック項目開閉 */
.accordion .body {
    display: none;
}

.category_check:not(:last-child) {
    padding-bottom: 100px;
}

.category_check .title {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--point-color);
    color: #ffffff;
    padding: 5px 50px 5px 30px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.category_check .title:hover {
    cursor: pointer;
    transition: 0.35s ease-in-out;
    filter: brightness(90%) contrast(120%);
}

.category_check .title span::after {
    right: 12px;
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -9px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
}

.category_check .title.clicked span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -4px;
}

.category_check .body {
    border-top: 1px;
    border-right: 1px;
    border-bottom: 1px;
    border-left: 1px;
    border-style: solid;
    border-color: var(--point-color);
    background-color: rgba(221, 221, 221, 0.1);
    padding: 7px 12px;
}
.ml282 {
    margin-left: 282px;
}
.ml226 {
    margin-left: 226px;
}
@media (width <= 768px) {
    .ml282 {
        margin-left: 10px;
    }
    .ml226 {
        margin-left: 0;
    }
}