/* 全デバイス共通 */

html{
    font-size: 62.5%;
}
body{
    font-size: 1.6rem;
    color: #000;
    background: #fff;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.8;
}
img{
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
dt{
    font-weight: normal;
}
p{
    margin-bottom: 20px;
}
*{
    box-sizing: border-box;
}

/* みんないっしょアニメーション */
.tt01{
    animation:tt01 1s 2s both;
}
.tt02{
    animation:tt01 1s 2.2s both;
}
.tt03{
    animation:tt01 1s 2.4s both;
}
.tt04{
    animation:tt01 1s 2.6s both;
}
.tt05{
    animation:tt01 1s 2.8s both;
}
.tt06{
    animation:tt01 1s 3s both;
}
.tt07{
    animation:tt01 1s 3.2s both;
}
@keyframes tt01{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt02{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt03{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt04{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt05{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt06{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
@keyframes tt07{
    0%{opacity: 0;}
    100%{opacity: 1;}
}

/*フェードイン*/
.fade_off {
opacity: 0;
transform: translateY(50px);
transition: 1s;
}
.fade_on {
opacity: 1;
transform: translateY(0px);
}

/* トップへ戻るボタン */
.pagetop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    background: #ccc;
    border-radius: 50%;
    display: none;
}
.pagetop a::after{
    content: "";
    display: block;
    width: 10px;
    padding: 5px 0;
    margin: 10px auto 0;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(-135deg);
}



/* sp用 */

/*ハンバーガーメニュークリック前*/
.btnHamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 13px;
  z-index: 12;
}
.btnHamburger .line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px; 
  height: 1px;
  background: #000;
  -webkit-transition:0.5s;
  transition:1s;
 }
.btnHamburger .line_01 { top: 0; }
.btnHamburger .line_02 { top: 6px; }
.btnHamburger .line_03 { top: 12px; }

/*navクリック前*/
nav{
	position: fixed;
    top:130px;
	right: -50%;
	opacity: 0;
	z-index: 12;
	transition: 1.5s;
}

/*#coverlayerクリック前*/
#coverlayer{
	background: #fff;
	width:50%;
	position: fixed;
	right: -50%;
	top: 0;
    bottom: 0;
	z-index: 11;
	opacity: 0.9;
	transition:1.5s;
}

/* #snsクリック前 */
#sns{
    width: 78px;
    position: fixed;
    top: 460px;
    right: -50%;
    transition: 1.5s;
    opacity: 0;
    z-index: 12;
}



/*ハンバーガーメニュークリック後*/
.btnHamburger.is-active .line_01 {
  top: 8px; 
  transform: rotate(45deg);
}
.btnHamburger.is-active .line_02 {
  opacity: 0; 
}
.btnHamburger.is-active .line_03 {
  top: 8px; 
  transform: rotate(135deg);
}

/*navクリック後*/
nav.is-active{
    opacity: 1;
    right: 4.545%;
}

/*#coverlayerクリック後*/
#coverlayer.is-active{
	opacity: 0.9;
    right: 0;
}

/* #snsクリック後 */
#sns.is-active{
    opacity: 1;
    right: 17%;
}


header{
    height: 100dvh;
    position: relative;
    overflow: hidden;
}
header h1{
    width: 34.09%;
    margin: 20px auto 0;
    position: relative;
    z-index: 10;
}
#header_bg{
    display: none;
}

/* スライダー */
.slidebox{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100dvh;
}
.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: slide 18s infinite;
}
.img1{
    background-image: url(../images/top_main01@2048.jpg);
}
.img2{
    background-image: url(../images/top_main02@2048.jpg);
    opacity: 0;
}
.img3{
    background-image: url(../images/top_main03@2048.jpg);
    opacity: 0;
}
@keyframes slide {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  80%{
    opacity: 0;
    transform: scale(1.2);
  }
  100%{
    opacity: 0;
    z-index: 0;
  }
}

.slide:nth-child(1) {
    animation-delay: 0s;
}
.slide:nth-child(2) {
    animation-delay:6s;
}
.slide:nth-child(3) {
    animation-delay: 12s;
}

/* みんないっしょ */
header #together{
    margin: 20% auto 0;
}
.together_text{
    display: block;
    background: rgba(255, 255, 255,.8);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 3.3rem;
    position: relative;
    z-index: 10;
    box-shadow: 1px 1px 10px 1px #ccc;
}

/* スクロールアイコン */
#scrl::after{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 47%;
    z-index: 10;
    transform: rotateZ(-45deg);
    animation: scrl_anime 1.5s infinite both;
}

@keyframes scrl_anime {
  0% {
    transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotateY(360deg) rotateZ(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/* SNSアイコン */
#sns ul{
    display: flex;
    justify-content: space-between;
}
#sns li:first-of-type{
    width: 27px;
}
#sns li:last-of-type{
    width: 22px;
}

nav ul li a{
    line-height: 40px;
}

/* メインコンテンツ */
main{
    padding: 0 2.272%;
}
main article:first-of-type{
    margin-top: 100px;
}
main article{
    margin-top: 150px;
}
main article h2{
    font-size: 2rem;
    font-weight: normal;
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}
main article h2::before,main article h2::after{
    content: "";
    display: inline-block;
    width: 30px;
    height: 27px;
    background: url(../images/h2_deco.svg);
    /* margin: 0 30px; */
}
main section{
    position: relative;
}
#top_new section dd{
    margin: 20px 0 50px;
}

/* 詳細ボタン */
.detail{
    width: 110px;
    line-height: 36px;
    border-radius: 5px;
    text-align: center;
    font-size: 1.8rem;
    margin: 0 auto;
    background: #EEDCB3;
}
.detail figure{
    width: 24px;
    line-height: 24px;
    display: inline-block;
    margin-left: 10px;
}

/* 新着情報 */
.newinfo::after{
    content: "new!";
    color: #f00;
    margin-left: 5px;
}

/* 施設情報 */
#top_facility{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top_facility h3{
    font-size: 1.4rem;
    font-weight: normal;
    text-align: center;
}
#top_facility section{
    width: 45.455%;
    margin-bottom: 30px;
}
#top_facility section figure{
    margin-bottom: 20px;
}

/* 法人情報 */
#top_company h3{
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 25px;
    text-align: center;
}
#top_company dt{
    text-align: center;
    margin: 15px 0 10px;
    white-space: pre-line;
}
#top_company dd{
    text-align: center;
    margin: 15px 0 50px;
    white-space: pre-line;
}

/* アクセス */
#top_access{
    margin-bottom: 100px;
}

/* フッター */
footer{
    background: #EEDCB3;
    overflow: hidden;
    padding-bottom: 30px;
}
footer h4{
    width: 22.727%;
    margin: 20px auto;
}
footer{
    text-align: center;
}
footer p:first-of-type{
    margin-bottom: 20px;
}
footer p:last-of-type{
    margin-bottom: 30px;
    white-space: pre-line;
}
/* footerSNSアイコン */
#sns_foot{
    width: 17.727%;
    margin: 0 auto 30px;
}
#sns_foot ul{
    display: flex;
    justify-content: space-between;
}
#sns_foot li:first-of-type{
    width: 27px;
}
#sns_foot li:last-of-type{
    width: 22px;
}

/* 下層ページ共通 */
/* ヘッダー */
#second header{
    background-size: cover;
    height: 50dvh;
}
#second.common .uselist{
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 30px;
}

/* ページタイトル */
header #page_title{
    margin: 15.909% auto 0;
}
.page_title_text{
    display: block;
    background: rgba(255, 255, 255,.8);
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 1.7rem;
    position: relative;
    z-index: 10;
    box-shadow: 1px 1px 10px 1px #ccc;
}

/* フッターとの余白 */
#second.common main article{
    margin-bottom: 100px;
}


/* 新着情報ページ */
#second.new header{
    background-image: url(../images/second_main_new@1320.jpg);
}
#second.new main section figure{
    width: 50%;
    margin: 0 auto 20px;
}
#second.new main section dt{
    margin-bottom: 15px;
}
#second.new main section{
    margin-bottom: 70px;
}

/* 施設情報ページ */
#second.facility header{
    background-image: url(../images/second_main_facility@1320.jpg);
}
#second.facility main figure{
    margin-bottom: 30px;
}
#second.facility main article h2{
        font-size: 1.8rem;
        font-weight: normal;
        display: inline-block;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        white-space: pre-line;
        position: relative;
}
#second.facility main article h2::before,#second.facility main article h2::after{
        content: "";
        display: inline;
        width: auto;
        height: auto;
        background: none;
        margin: 0;
}
#second.facility main section{
    margin-bottom: 50px;
}
#second.facility main section>figure{
    width: 70%;
    margin: 0 auto 20px;
}
#second.facility .detail{
    font-size: 1.6rem;
    line-height: 30px;
}
#second.facility .detail figure{
    width: 24px;
    line-height: 24px;
    display: inline-block;
    margin: 0 0 0 10px;
}

/* 法人情報ページ */
#second.company header{
    background-image: url(../images/second_main_company@1320.jpg);
}
#second.company dt,#second.company dd{
    text-align: center;
}
#second.company .hd_dt{
    background: #e6e6e6;
}
#second.company dt{
    font-size: 1.8rem;
    margin-bottom: 15px;
}
#second.company dd dt{
    font-size: 1.7rem;
}
/* #second.company dd dd{
    margin-bottom: 0;
} */
#second.company dd{
    margin-bottom: 50px;
    white-space: pre-line;
}
#second.company .normal{
    white-space: normal;
}
#second.company .division{
    display: block;
    font-size: 13px;
    margin-bottom: 40px;
}
#second.company .maincap{
    font-size: 3rem;
    text-align: center;
}
#second.company main article{
    margin-top: 100px;
}
#second.company #basic ul{
    margin-bottom: 40px;
}
#second.company #basic dd,#second.company #goal dd{
    text-align-last: left;
    white-space: normal;
}
#second.company .point{
    background: #f8eaca;
}
#second.company #goal dd dd{
    margin-bottom: 30px;
}
#second.company #goal dd dt{
    margin-bottom: 0;
}
#second.company .btn_dl{
    background: #eedcb3;
    width: 80%;
    line-height: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}
#second.company .btn_dl a{
    display: block;
}
#second.company .cname,#second.company .chistory{
        width: 80%;
        margin: 0 auto;
}
#second.company .cname dt{
        text-align: left;
}
#second.company .cname dd{
        margin: -45.59px 0 30px 6em;
        text-align: left;
}
#second.company .cname dd small{
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
#second.company .chistory dt,#second.company .chistory dd{
        text-align: left;
}
#second.company #assessment h3{
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
}
#second.company #assessment .btn_dl{
    margin-bottom: 40px;
}


/* 公開資料ページ */
#second.material header{
    background-image: url(../images/second_main_material@1320.jpg);
}
#second.material main article h2::before{
    content: "";
    display: inline-block;
    width: 30px;
    height: 27px;
    background: url(../images/h2_deco.svg);
    margin: 0 30px 0 0;
}
#second.material main article h2::after{
    content: "";
    display: inline-block;
    width: 30px;
    height: 27px;
    background: url(../images/h2_deco.svg);
    margin: 0 0 0 30px;
}

/* タブ表示上 */
.tab1 {
    display: flex;
    flex-wrap: wrap;
}

.tab1 > label {
    flex: 1 1;
    order: -1;
    position: relative;
    min-width: 70px;
    padding: .7em 1em;
    background-color: #f2f2f2;
    color: #999;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab1 > label:hover,
.tab1 label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}

.tab1 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #2589d0;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab1 input {
    display: none;
}

.tab1 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
}

.tab1 label:has(:checked) + div {
    display: block;
}

/* タブ表示下 */
.tab2 {
    display: flex;
    flex-wrap: wrap;
}

.tab2 > label {
    flex: 1 1;
    order: -1;
    position: relative;
    min-width: 70px;
    padding: .7em 1em;
    background-color: #f2f2f2;
    color: #999;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab2 > label:hover,
.tab2 label:has(:checked) {
    background-color: #2589d0;
    color: #fff;
}

.tab2 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #2589d0;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab2 input {
    display: none;
}

.tab2 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
}

.tab2 label:has(:checked) + div {
    display: block;
}

#second.material table{
    width: 100%;
}
#second.material table td{
    width: 50%;
    height: 60px;
    vertical-align: middle;
}
#second.material .btn_dl{
    background: #eedcb3;
    width: 80%;
    line-height: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

/* 個人情報ページ */
#second.privacy header{
    background-image: url(../images/second_main_privacy@1320.jpg);
}
#second.privacy header #page_title{
    margin: 10% auto 0;
}
#second.privacy .page_title_text{
    width: 40px;
    line-height: 40px;
}
#second.privacy .pt01,#second.privacy .pt02,#second.privacy .pt03,#second.privacy .pt04,#second.privacy .pt05{
    left: 30px;
}
#second.privacy .pt06,#second.privacy .pt07,#second.privacy .pt08{
    left: -30px;
    top: -100px;
}

#second.privacy main h2{
    margin-bottom: 50px;
}
#second.privacy main h3{
    font-size: 1.8rem;
    margin-bottom: 15px;
}
#second.privacy main dt{
    font-size: 1.7rem;
    margin-bottom: 10px;
}
#second.privacy main dd{
    margin-bottom: 40px;
}
#second.privacy main section{
    margin-bottom: 50px;
}

/* 採用情報ページ */
#second.recruit header{
    background-image: url(../images/second_main_recruit@1320.jpg);
}
#second.recruit main article{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#second.recruit main article p{
    width: 100%;
}
#second.recruit main article h2{
        font-size: 1.8rem;
        font-weight: normal;
        display: inline-block;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        white-space: pre-line;
        position: relative;
}
#second.recruit main article h2::before,#second.recruit main article h2::after{
        content: "";
        display: inline;
        width: auto;
        height: auto;
        background: none;
        margin: 0;
}
#second.recruit main section{
    width: 48%;
}
#second.recruit main section img{
    border-radius: 10px;
}



/* お問い合わせページ */
#second.contact header{
    background-image: url(../images/second_main_contact@1320.jpg);
}
#second.contact header #page_title{
    margin: 10% auto 0;
}
#second.contact .page_title_text{
    width: 40px;
    line-height: 40px;
}
/*お問い合わせ*/
#second.contact section dd {
  margin: 0 0 30px;
}
#second.contact input[type="text"],#second.contact input[type="email"]{
    background: #e6e6e6;
    width: 80%;
    border-radius: 5px;
}
#second.contact input[type="date"],#second.contact input[type="time"]{
    background: #e6e6e6;
    width: 30%;
    border-radius: 5px;
    margin-right: 10px;
    -webkit-appearance: auto;
    appearance: auto;
}
#second.contact input[name="zip1"]{
    width: 3em;
}
#second.contact input[name="zip2"]{
    width: 4em;
}
#second.contact select{
    background: #e6e6e6;
    width: 50%;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 5px;
}
#second.contact input[type="radio"],#second.contact input[type="checkbox"]{
    border: 1px solid #666;
    margin-right: 5px;
}
#second.contact label {
    margin-right: 20px;
}
#second.contact input[type="submit"],#second.contact input[type="button"] {
    background: #e6e6e6;
    border: 1px solid #666;
    padding: 5px;
    margin-bottom: 30px;
    border-radius: 5px;
    font-size: 14px;
}
#second.contact textarea{
    background: #e6e6e6;
    width: 100%;
    height: 300px;
    border-radius: 5px;
}
#second.contact_r textarea,#second.contact_e textarea{
    height: 150px;
}

.error{
    color: #f00;
}
#complete p{
    text-align: left;
    margin-bottom: 20px;
    white-space: pre-line;
}
#complete small{
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}
#complete .telbox{
    width: 50%;
    padding: 10px;
    margin: 0 auto;
    background: #e6e6e6;
    text-align: center;
}



/* 施設紹介モーダル */
#second.modal main{
    padding: 0;
}
#second.modal main article{
    margin-top: 0;
}
#second.modal figure{
    margin-bottom: 20px;
}
#second.modal main h2::before,#second.modal main h2::after{
    background: transparent;
}
#second.modal dt,#second.modal dd{
    text-align: center;
}
#second.modal dd{
    margin-bottom: 30px;
    white-space: pre-line;
}
#second.modal iframe{
    display: block;
    margin-top: 15px;
}
#second.modal dl dd:nth-of-type(5){
    width: 70%;
    margin: 0 auto 30px;
}







/* 小型sp（SE）用 */
@media screen and (max-width:393px){
    header #together{
        margin: 18% auto 0;
    }
    .together_text{
        width: 50px;
        line-height: 50px;
        font-size: 3.1rem;
    }
    @keyframes scrl_anime {
        0% {
            transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            transform: rotateY(360deg) rotateZ(-45deg) translate(-20px, 20px);
            opacity: 0;
        }
    }

    /* 下層ページ共通 */
    #second.common header{
        height: 60dvh!important;
    }
    #second.common header #page_title{
    margin: 7% auto 0;
    }

    /* 公開資料 */
    #second.material .btn_dl{
    width: 90%;
    }

    /* 個人情報ページ */
    #second.privacy .page_title_text{
        width: 35px;
        line-height: 35px;
    }
    #second.privacy .pt01,#second.privacy .pt02,#second.privacy .pt03,#second.privacy .pt04,#second.privacy .pt05{
    left: 30px;
    }
    #second.privacy .pt06,#second.privacy .pt07,#second.privacy .pt08{
        left: -30px;
        top: -100px;
    }

    /* お問い合わせページ */
    #second.contact header #page_title{
    margin: 8% auto 0;
    }
    #second.contact .page_title_text{
        width: 35px;
        line-height: 35px;
    }
}



















/* tb用 */
@media screen and (min-width:600px){

    /*#coverlayerクリック前*/
    #coverlayer{
        width: 30%;
    }

    /* ヘッダー */
    header{
        height: 600px;
    }

    /* スライダー */
    .slidebox{
        height: 600px;
    }
    .img1{
        background-image: url(../images/top_main01@2048w.jpg);
    }
    .img2{
        background-image: url(../images/top_main02@2048w.jpg);
    }
    .img3{
        background-image: url(../images/top_main03@2048w.jpg);
    }

    /*ハンバーガーメニュークリック前*/
    .btnHamburger {
        position: fixed;
        top: 40px;
        width: 50px;
        height: 23px;
    }
    .btnHamburger .line {
        width: 50px; 
    }
    .btnHamburger .line_02 { top: 10px; }
    .btnHamburger .line_03 { top: 20px; }

    header h1{
        width: 17.986%;
        margin: 40px 0 0 20px;
    }

    /* みんないっしょ */
    header #together{
        margin: -20px auto 0;
    }

    /* メインコンテンツ */
    main{
        width: 71.942%;
        margin: 0 auto;
        padding: 0;
    }

    /* フェードイン解除 */
    main article:first-of-type{
        opacity: 1;
    }

    /* 新着情報 */
    #top_new section dd{
        margin: -1.8em 0 30px 9em;
    }

    /* 施設情報 */
    #top_facility section{
        width: 45%;
    }

    /* 法人情報 */
    #top_company dt{
        text-align: left;
        margin: 0;
    }
    #top_company dd{
        text-align: left;
        margin: -1.8em 0 30px 11em;
        white-space: normal;
    }
    main #top_company .m40{
        margin-left: 40px;
    }

    /* フッター */
    footer h4{
        width: 16.666%;
    }

    /* footerSNSアイコン */
    #sns_foot{
        width: 13%;
    }

    /* #snsクリック後 */
    #sns.is-active{
        right: 11%;
    }


    /* 下層ページ共通 */
    #second .page_title_text{
        width: 60px;
        line-height: 60px;
    }
    #second .page_title_text{
        font-size: 2.3rem;
    }
    #second.common header #page_title{
        margin: 4.188% auto 0;
    }

    /* 新着情報 */
    #second.new header{
        height: 50.251dvh;
        background-image: url(../images/second_main_new@2048.jpg);
    }
    #second.new header #page_title{
        margin: 4.188% auto 0;
    }
    #second.new main section{
        display: flex;
        justify-content: space-between;
    }
    #second.new main section figure{
        width: 33.333%;
        margin: 0;
    }
    #second.new main section dl{
        width: 63.333%;
    }

    /* 施設情報 */
    #second.facility header{
        background-image: url(../images/second_main_facility@2048.jpg);
    }
    #second.facility header #page_title{
        margin: 4.188% auto 0;
    }
    #second.facility main article{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #second.facility section{
        width: 48%;
    }
    #second.facility main section>figure{
        width: 100%;
    }
    #second.facility main section:nth-of-type(3) h2,#second.facility main section:nth-of-type(9) h2{
        margin-bottom: 5.24rem;
    }

    /* 法人情報 */
    #second.company header{
        background-image: url(../images/second_main_company@2048.jpg);
    }
    #second.company header #page_title{
        margin: 4.188% auto 0;
    }
    #second.company .btn_dl{
    width: 50%;
    }
    #second.company .cname{
        width: 65%;
    }

    /* 公開資料 */
    #second.material header{
        background-image: url(../images/second_main_material@2048.jpg);
    }
    #second.material header #page_title{
        margin: 4.188% auto 0;
    }
    

    /* 個人情報 */
    #second.privacy header{
        background-image: url(../images/second_main_privacy@2048.jpg);
    }
    #second.privacy header #page_title{
        margin: 2% auto 0;
    }
    #second.privacy .page_title_text{
        width: 45px;
        line-height: 45px;
    }
    #second.privacy .pt06,#second.privacy .pt07,#second.privacy .pt08{
    top: -110px;
    }

    /* 採用情報 */
    #second.recruit header{
        background-image: url(../images/second_main_recruit@2048.jpg);
    }
    #second.recruit header #page_title{
        margin: 4.188% auto 0;
    }

    /* お問い合わせ */
    #second.contact header{
        background-image: url(../images/second_main_contact@2048.jpg);
    }
    #second.contact header #page_title{
        margin: 2% auto 0;
    }
    #second.contact .page_title_text{
        width: 45px;
        line-height: 45px;
    }
    /*お問い合わせ*/
    #second.contact dl{
        width: 100%;
    }
    #second.contact form{
        width: 72.541%;
        margin: 0 auto;
    }
    #complete p{
        text-align: center;
    }

    /* 施設情報モーダル */
    #second.modal main{
        width: 95%;
        margin: 0 auto;
    }
    #second.modal section{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #second.modal h2{
        width: 100%;
        order: -2;
    }
    #second.modal figure{
        width: 40%;
        order: -1;
    }
    #second.modal dl{
        width: 55%;
    }
    #second.modal dl dt,#second.modal dl dd{
        text-align: left;
    }
    #second.modal dl dd:nth-of-type(5){
        width: auto;
    }
    #second.modal dl dd{
        white-space: normal;
    }

    }

    /* iPadPro（大型TB）用 */
    @media screen and (min-width:835px) and (max-width:1024px){
        header,.slidebox{
            height: 700px;
        }
        nav.is-active{
            right: 10%;
        }
        #sns.is-active{
            right: 15%;
        }
        #second.common header #page_title{
            margin: 0 auto;
        }
    }

























/* PC用 */
@media screen and (min-width:1025px){
    
    header{
        height: 100dvh;
    }
    header h1{
        position: fixed;
        width: 10.416%;
        top: 30px;
        left: 50px;
        margin: 0;
    }
    #header_bg{
        display: block;
        background:rgba(255, 255, 255,.8);
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        height: 1px;
        opacity: 0;
        transition: 1s;
        z-index: 2;
    }
    #second.privacy .pt06,#second.privacy .pt07,#second.privacy .pt08{
    top: -140px;
    }

    /* スライダー */
    .slidebox{
        height: 100dvh;
    }
    .img1{
        background-image: url(../images/top_main01@2560.jpg);
    }
    .img2{
        background-image: url(../images/top_main02@2560.jpg);
    }
    .img3{
        background-image: url(../images/top_main03@2560.jpg);
    }

    .btnHamburger{
        display: none;
    }

    /* #sns */
    #sns{
        top: 30px;
        right: 50px;
        opacity: 1;
        width: 70px;
        transition: none;
    }

    /* ナビゲーション */
    nav{
        opacity: 1;
        top: 70px;
        right: 50px;
        width: 700px;
        transition: none;
    }
    nav ul{
        display: flex;
        justify-content: space-between;
    }
    nav ul li a{
        line-height: 30px;
        transition: 0.5s;
    }
    nav ul li a:hover{
        opacity: 0.6;
    }

    /* みんないっしょ */
    header #together{
        /* margin: 180px auto 0; */
        position: absolute;
        top: 50vh;
        left: 50vw;
        transform: translate(-50%,-50%);
        z-index: 1;
    }

    /* スクロールアイコン */
    #scrl::after{
        top: 75vh;
        left: 49.3vw;
    }

    /* メインコンテンツ */
    main{
        width: 55.556%;
    }
    main article{
    margin-top: 200px;
    }
    main article h2{
        font-size: 2.5rem;
    }
    main article h2::before,main article h2::after{
    width: 34.14px;
    }
    #top_facility h3{
        font-size: 1.6rem;
    }
    main section dl{
        /* width: 80%; */
        margin: 0 auto;
    }
    main #top_company dd{
        white-space: normal;
    }
    

    /* フッター */
    footer h4{
        width: 10.417%;
    }
    #sns_foot{
        width: 5.417%;
    }


    /* 下層ページ共通 */
    #second.common header{
        height: 42vw;
    }
    #second.common header #page_title{
        margin: 12.5vw auto 0;
        position: relative;
        z-index: 1;
    }
    #second .page_title_text{
        width: 60px;
        line-height: 60px;
    }
    #second .page_title_text{
        font-size: 2.3rem;
    }
    #second main section dl{
        margin: 0;
    }

    /* 新着情報ページ */
    #second.new header{
        background-image: url(../images/second_main_new@2560.jpg);
    }

    /* 施設情報ページ */
    #second.facility header{
        background-image: url(../images/second_main_facility@2560.jpg);
    }
    #second.facility main article{
        justify-content: left;
        column-gap: 5%;
    }
    #second.facility section{
        width: 30%;
    }
    #second.facility main section:nth-of-type(1) h2,#second.facility main section:nth-of-type(2) h2,#second.facility main section:nth-of-type(5) h2,#second.facility main section:nth-of-type(6) h2,#second.facility main section:nth-of-type(11) h2,#second.facility main section:nth-of-type(12) h2{
        margin-bottom: 5.24rem;
    }
    #second.facility main section:nth-of-type(3) h2,#second.facility main section:nth-of-type(9) h2{
        margin-bottom: 20px;
    }

    /* 法人情報ページ */
    #second.company header{
        background-image: url(../images/second_main_company@2560.jpg);
    }
    #second.company dl{
        width: 100%;
    }
    #second.company dt,#second.company dd{
        text-align-last: left;
    }
    #second.company dd{
        margin: -47.4px 0 40px 15em;
    }
    #second.company main section dl{
        margin: 0 auto;
    }
    #second.company .hd_dt{
        background: none;
    }
    #second.company dd dd,#second.company #basic dd,#second.company #goal dd{
        margin: 0 0 40px;
    }
    #second.company .cname{
        width: 100%;
        margin: 0;
    }
    #second.company .cname dd{
        margin: -45.59px 0 30px 10em;
    }
    


    /* 公開資料ページ */
    #second.material header{
        background-image: url(../images/second_main_material@2560.jpg);
    }

    /* 個人情報ページ */
    #second.privacy header{
        background-image: url(../images/second_main_privacy@2560.jpg);
    }
    #second.privacy header #page_title{
        margin: 10vw auto 0;
    }
    #second.privacy main dl{
        width: 100%;
        margin: 0 auto;
    }

    /* 採用情報ページ */
    #second.recruit header{
        background-image: url(../images/second_main_recruit@2560.jpg);
    }
    #second.recruit main article a:hover{
        opacity: 0.7;
    }

    /* お問い合わせページ */
    #second.contact header{
        background-image: url(../images/second_main_contact@2560.jpg);
    }
    #second.contact header #page_title{
        margin: 10vw auto 0;
    }
    /*お問い合わせ*/
    #second.contact section form{
        width: 100%;
    }
    #second.contact section dd {
    margin: -1.5em 0 30px 15em;
    }
    

}
