@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*CSS redefinition*/
:root {
    --blue: #21A5C7;
    --lblue: #3EC1E5;
}

html{
	height:100%;
	width:100%;
	font-size: 62.5%;
    background-color: #FFF;
}

@media only screen and (max-width: 1080px) {
    html {
        font-size: 0.87vw;
    }
}

@media only screen and (max-width: 767px) {
    html {
        font-size: 2.579vw;
    }
}

body{
	height:100%;
	width:100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	color: #555555;
	line-height: 1.8;
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    word-break: normal; /* 単語の分割はデフォルトに依存 */
    line-break: strict; /* 禁則処理を厳格に適用 */
}
body.front{
    padding-top: 0;
}
@media only screen and (max-width: 767px) {
    body{
        padding-top: 7.5rem;
    }
}

*{
	box-sizing: border-box;
}

a{
	text-decoration: none;
    color: #333;
}

img{
	border:none;
	max-width: 100%;
	height: auto;
	display: inline;
}

iframe{
    /*width: 100%;*/
}

strong,
dt,
h1,
h2,
h3{
    font-weight: 500;
}

/*common*/
.disp-sp{
    display: none;
}
@media only screen and (max-width: 767px) {
    .disp-sp{
        display: block;
    }
    .disp-pc{
        display: none;
    }
}

.tel{
    pointer-events: none;
    text-decoration: none !important;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .tel{
        pointer-events: unset;
        text-decoration: underline !important;
    }
}

.eng{
    font-family: Arial, Helvetica, sans-serif;
}


.cmn__h2{
    text-align: center;
}

.cmn__h2 h2{
    font-size: 3.6rem;
    font-weight: 700;
    color: #f93082;
}
@media only screen and (max-width: 767px) {
    .cmn__h2 h2{
        font-size: 3rem;
    }
}

.cmn__h2 p{
    margin-top: 2rem;
    font-size: 1.8rem;
}

.btn-area{
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .btn-area{
        
        flex-wrap: wrap;
        gap: 2rem;
    }
}

.cmn__center{
    text-align: center;
}

.cmn__bold{
    font-weight: bold;
}

.cmn__btn{
    display: inline-block;
    width: 250px;
    background-color: #2096d5;
    color: #FFF;
    border-radius: 0.6rem;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
    margin: 0 2rem;
}
@media only screen and (max-width: 767px) {
    .cmn__btn{
        display: block;
        width: calc(100% - 4rem);
        margin: 0 auto;
    }
}

.cmn__btn:hover{
    opacity: 0.8;
}

.cmn__btn::after{
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: middle;
    background: url(../img/arrow_link.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    margin-left: 1rem;
}

.icon_x::after{
    content: "";
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    background: url(../img/icon_x.svg) no-repeat;
    background-size: contain;
    display: inline-block;
    margin-left: 1rem;
}

.list-disc li{
    list-style: disc;
    margin-left: 1.8rem;
}

.list-sup{
    margin-top: 3rem;
}

.list-sup li{
    font-size: 1.3rem;
    position: relative;
    padding-left: 1.8rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.list-sup li:before{
    content: "※";
    position: absolute;
    left: 0;
}

/*rayout*/
section{
    padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
    section{
        padding: 6rem 0;
    }
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}
@media only screen and (max-width:1260px) {
    .container{
        padding: 0 3rem;
    }
}

/*section contents*/
header{
}

footer{
    background-color: #2096d5;
    color: #FFF;
    padding: 2rem;
    text-align: center;
}

.opening{
    text-align: center;
    padding: 0 0 2rem;
}

.opening__present{
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1800px;
}
@media only screen and (max-width: 767px) {
    .opening__present{
        flex-direction: column;
    }
}

.opening__present img{
    max-width: 100%;
}

.opening__present div:nth-child(1){
}
.opening__present div:nth-child(2){
}

.about{
    background-color: #e8f3f9;
}

.about__h3{
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-top: 4rem;
    color: #2096d5;
}

.about p{
    margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
    .about p{
        text-align: left !important;
    }
}

.about__table{
    max-width: 800px;
    margin: 4rem auto 0;
}

.about__table a{
    text-decoration: underline;
}

.about__table table{
    width: 100%;
    background-color: #FFF;
    border-collapse: collapse;
    border:1px solid #CCC;
}

.about__table th{
    text-align: left;
    border:1px solid #CCC;
    padding: 1rem;
    background-color: #f5f5f5;
    font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
    .about__table th{
        padding: 0.5rem;
        display: block;
        border-bottom: 0;
    }
}

.about__table td{
    text-align: left;
    border:1px solid #CCC;
    padding: 1rem;
    font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
    .about__table td{
        border-top: 0;
        padding: 0.5rem;
        display: block;
    }
}


.sanka{
    background-color: #e8f3f9;
}

.sanka__inner{
    background-color: #FFF;
    padding: 4rem;
    border-radius: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
}
@media only screen and (max-width:767px) {
    .sanka__inner{
        padding: 3rem;
    }
}

.sanka__inner dl{
    display: flex;
    align-items: center;
    margin-top: 3rem;
}
@media only screen and (max-width:1260px) {
    .sanka__inner dl{
        flex-direction: column;
    }
}

.sanka__inner dl:first-child{
    margin-top: 0;
}

.sanka__inner dt{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background-color: #2096d5;
    border-radius: 100%;
    width: 6rem;
    height: 6rem;
    color: #FFF;
    font-weight: bold;
    margin-right: 2rem;
}
@media only screen and (max-width:767px) {
    .sanka__inner dt{
        margin-right:0;
    }
}

.sanka__inner dd{
    font-size: 2rem;;
    font-weight: 700;
}
@media only screen and (max-width:767px) {
    .sanka__inner dd{
        text-align: center;
        font-size: 1.8rem;
    }
}

.sanka__inner dd a{
    text-decoration: underline;
}

.sanka__attention{
    margin-top: 2rem;
}

.sanka__attention p{
    font-size: 1.5rem;
}

.sanka__flex{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sanka__flex li{
    display: block;
    width: 40%;
    margin: 0 2rem;
    font-size: 1.4rem;
    text-align: center;
    margin-top: 1.5rem;
}
@media only screen and (max-width:767px) {
    .sanka__flex li{
        width: 80%;
        font-size: 1.2rem;
    }
}

.sanka__flex li span{
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}

.news{
    background-color: #f5f5f5;
}

.news .cmn__h2 h2{
    font-size: 3rem;
}

.news-flex{
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width:767px) {
    .news-flex{
        flex-wrap: wrap;
    }
}

.news-flex .left-col{
    width: calc(50% - 3rem);
}
@media only screen and (max-width:767px) {
    .news-flex .left-col{
        width: 100%;
    }
}

.news-flex .right-col{
    width: calc(50% - 3rem);
}
@media only screen and (max-width:767px) {
    .news-flex .right-col{
        width: 100%;
        margin-top: 6rem;
    }
}

.news-flex .right-col iframe{
    margin-top: 4rem;
}

.news__list{
    margin: 5rem auto 4rem;
    padding: 3rem;
    background-color: #FFF;
    border: 1px solid rgb(207, 217, 222);
    border-radius: 12px;
}
@media only screen and (max-width:767px) {
    .news__list{
        padding: 2rem;
    }
}

.news__list li{
    padding: 2rem 0;
    border-top: 1px solid #CCC;
}

.news__list li:first-child{
    border-top: none;
}

.news__list li a{
    text-decoration: underline;
}

.ex{
}

.ex-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 4rem;
    gap: 4rem;
}
@media only screen and (max-width: 767px) {
    .ex-list{
        margin-top: 3rem;
        gap: 3rem;
    }
}

.ex-item{
    width: calc(33.33% - 3rem);
    padding: 2rem;
    box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.25);
    background-color: #FFF;
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 1024px) {
    .ex-item{
        width: calc(50% - 2rem);
    }
}
@media only screen and (max-width: 767px) {
    .ex-item{
        width: 100%;
    }
}

.ex-item__tx1{
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: #2096d5;
    flex: 1;
    line-height: 1.6;
}

.ex-item__tx2{
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
    margin-top: 1rem;
}

.ex-item__tx3{
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.5;
}

.ex-item figure{
    margin-top: 1.5rem;
}

.ex-item figure .hidden{
    display: none;
}

.ex-item figure a{
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #CCC;
}

.ex-item figure a::before{
    content: "";
    padding-top: 100%;
    display: block;
}

.ex-item figure a img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.ex-item figure a:hover{
    opacity: 0.7;
}

.ex-list__contact{
    background-color: #f5f5f5;
    padding: 2rem;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.ex-list__contact dl{
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}

.ex-list__contact dl dt{
    width: 7rem;
}

.ex-list__contact dl dd{
    position: relative;
}

.ex-list__contact dl dd a{
    text-decoration: underline;
}

.ex-list__contact dl dt::after{
    content: "：";
}