/* 20250826  */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    font-size: 1.1rem;
    line-height: 1.8;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(238, 243, 255, 1) 5px, rgba(238, 243, 255, 1) 10px);
    color: #111;
    overflow-wrap: anywhere;
}

header {
    background-color: #ffffff;
    border-top: 1px solid rgb(33, 66, 139);
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    background-color: #ffffff;
}


header .container {
    display: flex;
    flex-direction: row;
}

h1 {
    font-size: 1.5rem;
    flex-grow: 2;
    text-align: left;
}

h2 {
    font-size: 1.3rem;
}

h3.type01 {
    font-size: 1.15rem;
    margin: 1.2rem 0 0.5rem 1rem;
}

p {
    /* font-size: 1.1rem; */
    line-height: 1.8;
}

main .container {
    padding-bottom: 2rem;
}

main section {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.hero{
    display: flex;
    flex-direction: column;
}

.mainTitle {
    font-size: 2rem;
}

.subTitle {
    font-size: 1.5rem;
}

.logo {
    width: 5%;
    min-width: 45px;
    margin-left: 1rem;
    margin-right: 2rem;
    flex-grow: 0;
}

.kv * {
    width: 100%;
    height: auto;
    display: block;
}

.titleWrapper {
    padding: 0 1rem;
    margin-top: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.titleWrapper h2 {
    font-size: 1.2rem;
    color: #555;
}

ul.type01,
ol.type01,
dl.type01 {
    margin: 0rem 0 1rem 0;
    padding-left: 0;
}

ul.type02,
ol.type02,
dl.type02 {
    margin: .5rem 0 1rem 1.5rem;
    padding-left: 0;
}

.row {
    display: grid;
    width:100%;
}


ul,
ol {
    list-style-position: inside;
}

ul.note,
ul.none {
    list-style-type: none;
}

ul.note {
    font-size: 0.9rem;
    border-top: 1px solid #aaa;
    padding-top: 0.5rem;
    width:90%;
}


ul.datetime{
    margin: 0rem 0 1rem 0rem;
    padding-left: 0;
    list-style-type: none;
}

.datetime ul.note{
    margin: 0.5rem 0 1rem 0rem;
}

dt{
    font-weight: bold;
}

dl:not(.row) dt:not(:first-of-type) {
    margin-top: 1.1rem;
}

dl.row dt,
dl.row dd{
    margin-bottom: 0.5rem;
}



dd {
    margin-left: 1rem;
}


li {
    text-indent: -1.5rem;
    margin-left: 1.5rem;
}


.titleArea {
    width: 100%;
    text-align: center;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    border-bottom: 1px solid rgb(33, 66, 139);
}

.detailArea {
    width: 100%;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}

.speakerWrapper .detailArea {
    display: flex;
    flex-direction: column;
}

.speaker {
    display: flex;
    flex-direction: row;
    margin-bottom: 2rem;
    ;
}

.speaker img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1rem;
	border:1px solid #eee;
}

.speakerDetail {
    margin-top: 1rem;
}

.speakerDetail .speakerName{
	font-weight:bold;
}

.speakerDetail .speakerHistory{
	font-size:85%;
}


.hero .contactWrapper{
    width: 100%;
    padding: 1rem 0 0 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.linkBtnWrapper {
    width: 100%;
    padding: 2rem 0 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hero .contactWrapper .linkBtn{
    padding: 0.5rem 2rem;
    width: 100%;
    margin: 0rem auto 0rem auto;
    border-radius: 0.25rem;
    text-decoration: none;
    border: 1px solid #d11919;
    background-color: #d11919;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.linkBtnWrapper .linkBtn {
    padding: 0.5rem 2rem;
    width: 100%;
    margin: 1rem auto 2rem auto;
    border-radius: 0.25rem;
    text-decoration: none;
    border: 1px solid #d11919;
    background-color: #d11919;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}


.linkBtnWrapper .linkTxt{
	margin-top:2rem;
    text-decoration: none;
}

.linkBtnWrapper .linkTxt:hover{
    text-decoration:underline;	
}


.hero .contactWrapper .linkBtn .linkLabel,
.linkBtnWrapper .linkBtn .linkLabel {
    font-size: 1.3rem;
    line-height: 1.2;

}

.hero .contactWrapper .linkBtn .arrow,
.linkBtnWrapper .linkBtn .arrow {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 1.5rem;
    background-image: url(img/arrow-wh.svg);
    background-repeat: no-repeat;
    background-position: 92% center;
    background-size: 1.2rem 1.2rem;
}

.hero .contactWrapper .linkBtn span,
.linkBtnWrapper .linkBtn span {
    font-size: 75%;
}

.hero .contactWrapper .linkBtn:hover, 
.linkBtnWrapper .linkBtn:hover {
    animation-duration: 0.5s;
    animation-name: linkBtnhover;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    text-underline-offset:2px;
    text-decoration: underline;
    text-decoration-thickness:1px;
}

.hero .contactWrapper .linkBtn:hover .arrow,
.linkBtnWrapper .linkBtn:hover .arrow {
    animation-duration: 0.3s;
    animation-name: linkBtnhoverArrow;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes linkBtnhover {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

@keyframes linkBtnhoverArrow {
    0% {
        transform: rotate(0);
    }


    50% {
        transform: rotate(180deg);
    }


    100% {
        transform: rotate(360deg);
    }
}

footer {
    border-top: 1px solid #aaa;
    background-color: #ffffff;
    text-align: center;
    padding: 2rem 0;
}

/* スマホ */
/* @media screen and (max-width: 375px) { */
@media screen and (max-width: 600px) {
    h1 {
        font-size: 1rem;
    }

	h1 br{
        display: none;
    }


    h3.mainTitle {
        font-size: 1.4rem;
    }

    p.subTitle {
        font-size: 1.1rem;
    }

    .row{
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 601px) and (max-width: 1024px) {
    h1 {
        text-align: center;
    }

    .titleWrapper {
        text-align: center;
    }

    main section {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 2rem;
    }

    .titleArea {
        width: 35%;
        text-align: right;
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
        border-right: 1px solid rgb(33, 66, 139);
        border-bottom: none;
    }

    .detailArea {
        width: 60%;
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }

    .hero .contactWrapper .linkBtn,
    .linkBtnWrapper .linkBtn {
        width: 30rem;
        margin: 1rem auto;
    }
    
    .row{
        grid-template-columns: 1fr;
    }
}

@media screen and (min-width: 1025px) {
    h1 {
        text-align: center;
    }

    .titleWrapper {
        text-align: center;
    }

    main section {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        margin-bottom: 2rem;
    }

    .titleArea {
        width: 35%;
        text-align: right;
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
        border-right: 1px solid rgb(33, 66, 139);
        border-bottom: none;
    }

    .detailArea {
        width: 60%;
        padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    }

    .hero .contactWrapper .linkBtn,
    .linkBtnWrapper .linkBtn {
        width: 30rem;
        margin: 1rem auto;
    }

    .row{
        grid-template-columns: 1fr 2fr;
    }
}

.w20 {
    width: 20%!important;
}

.w30 {
    width: 30%!important;
}

.w33 {
    width: 33%!important;
}

.w40 {
    width: 40%!important;
}

.w45 {
    width: 40%!important;
}

.w50 {
    width: 50%!important;
}

.w60 {
    width: 60%!important;
}

.w66 {
    width: 66%!important;
}

.w70 {
    width: 70%!important;
}

.w80 {
    width: 80%!important;
}

.w90{
      width: 90%!important;  
}

.w100{
      width: 100%!important;  
}