@charset "utf-8";

html {
    font-size: 62.5%;
    scroll-behavior:smooth;
}
body{
    margin:0;
    padding:0;
    font-family: 'Kosugi Maru', sans-serif;
    color: #56256e;
}
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: 999;
      background:#56256e;
      text-align:center;
      color:#fff;
    }
    
    /* Loading画像中央配置　*/
    #load {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background:#2a093a;
        text-align:left;
      }
      #loadlogo {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 -50% 0 0;
      }
      #loadlogo h2{
        font-size: 4.5rem;
        letter-spacing: 0.1rem;
        line-height: 1.2;
        margin: auto;
        color: #ffffff;
          }
        #loadlogo h4{
        font-size: 1.6rem;
        margin: 0 auto 6%;
        color: #ffffff;
          }
      .fadeUp{
      animation-name: loadUpAnime;
      animation-duration:0.75s;
      animation-fill-mode:forwards;
      opacity: 0;
      }
      @keyframes loadUpAnime{
        0% {
          opacity: 0;
        }
        25%{
            opacity: 0;
        }         
        100% {
            opacity: 1;
          }
      }
.header-pc{
    width: 250px;
    height: 100vh;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}
.header-title{
    margin: 25% 0 0 12%;
    color: #56256e;
    text-decoration: none;
    transition: 0.5s;

}
.header-title h4{
    font-size: 1.8rem;
    margin: 0 0 8px 0;
}
.header-title h2{
    font-size: 5rem;
    line-height: 6rem;
    margin: 0;
    padding: 0;
}
.header-title:hover{
    color:#d79ed7;
    transition: 0.5;;
}
.header-pc nav{
    width: 123px;
    margin: 0 0 10% 15%;
}
.header-pc ul{
    padding:0;
    list-style-type: none;
}
.header-pc li{
    margin: 15px auto; 
}
.header-pc a{
    color:#56256e;
    display: block;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 5px 0;
    transition: 0.25s;
}
.header-pc a:hover{
    color:#d79ed7;
    transition: 0.25s;
}
/*ハンバーガーメニュー*/
.header-sp{
    position: fixed;
    width:100%;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.header-sp a{
    color:#56256e;
    margin: 15px 0 0 15px;
    text-decoration: none;
    z-index: 100;
    transition: 0.25s;
}
.header-sp a:hover{
    color:#d79ed7;
    transition: 0.25s;
}
.header-sp a h4{
    font-size: 1.3rem;
    margin: 0;
}
.header-sp a h2{
    font-size: 1.7rem;
    margin: 5px 0 0;
}
.drawer{
    margin: 20px 15px 0 0;
    position: relative;
}
.drawer>h4{
    position: absolute;
    top: -17%;
    right: 0;
    transform: translate(-30%,0%);
    font-size: 2rem;
    color: #56256e;
    margin: 0;
    z-index: 150;
}
.drawer-hidden{
    display:none;
}
.drawer-open{
    display:flex;
    height:60px;
    width:60px;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:100;
    cursor:pointer;
}
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after{
    content:'';
    display:block;
    height:3px;
    width:25px;
    border-radius:3px;
    background:#56256e;
    transition:0.5s;
    position:absolute;
}
.drawer-open span:before{
    bottom:8px;
}
.drawer-open span:after{
    top:8px;
}
#drawer-check:checked ~ .drawer-open span{
    background:rgba(255, 255, 255, 0);
}
#drawer-check:checked ~ .drawer-open span::before {
    bottom:0;
    transform:rotate(45deg);
}
#drawer-check:checked ~ .drawer-open span::after {
    top:0;
    transform:rotate(-45deg);
}
.drawer-content{
    width:100%;
    height:135px;
    position:fixed;
    top:-135px;
    left:0;
    z-index:99;
    background: #ffffff;;
    transition: .5s;
}
.drawer-list{
    display:flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 65px auto 0;
}
.drawer-list li{
    margin:0;
    font-size: 1.3rem;
    line-height: 1.5;
}
.drawer-list li a{
    text-decoration: none;
    color: #56256e;
    display: inline-block;
}
.drawer-list li a:hover{
    color: #d79ed7;
}
#drawer-check:checked ~ .drawer-content{
    top:0;
}
/*コンテンツ*/
article{
    overflow: hidden;
}
.top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.top-container{
    width: 90%;
    height: 90vh;
    overflow: hidden;
    border-radius: 52px 52px 0 52px;
    position: relative;
    margin: 5vh auto;
}
.top-content{
    width: 100%;
    height: 100%;
    background: rgb(164 159 166 / 30%);
}
.top-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-content-inner{
    position: absolute;
    bottom: 0%;
    right: 0;
    background: #ffffff;
    padding: 3% 0 0 5%;
    border-radius: 30px 0 0 0;
    z-index: 1;
}
.top-content-inner p{
    margin: 12px 0;
    font-size: 5rem;
    word-break: break-all;
    font-weight: 600;
    letter-spacing: 1rem;
    color: #56256e;
}
.top-content-inner-sp{
    background: #ffffff;
    padding: 125px 0 0 20px;
}
.top-content-inner-sp p{
    margin: 5px 0;
    font-size: 2.5rem;
    word-break: break-all;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: #56256e;
}

/*全共通*/

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1;
    animation-delay: 2.6s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 3.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
    animation-delay: 2.6s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #d79ed7;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
/* その場で */
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
        transform: translateY(75px);
      }
    
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
.smoothTrigger{
    opacity: 0;
}    

/*スライド*/
.slide01{
    width: 100%;
    height: 100%;
}
@keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
       -webkit-transform: scale(1.15);
       transform: scale(1.15);
    }
}    
.swiper-slide {
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-slide-active .slide-img1,
.swiper-slide-duplicate-active .slide-img1,
.swiper-slide-prev .slide-img1 { 
    -webkit-animation: zoomUp 15s linear 0s;
    animation: zoomUp 15s linear 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
      
.slide-img1 {
    background-size: cover; 
    background-position: center;
    width:100%;
    height: 100%;
}
.top-title{
    width: 90%;
    text-align: right;
    margin: 0 auto;
}
.top-title h1{
    font-size: 2.5rem;
    color: #56256e;
    letter-spacing: 0.5rem;
    text-align: right;
    margin: 0;
}
.top-title>span{
    display: block;
    font-size: 1.5rem;
    margin: 10px 0 0;
    letter-spacing: 0;
    text-align: right;
}
.top-title h3{
    color: #d79ed7;
    font-size: 3rem;
    letter-spacing: 0.5rem;
    margin: 30px 0 10px;
    text-align: right;
}
.vision{
    width: calc(100% - 243px);
    margin: 0 0 150px auto;
}
.vision-top{
    width:85%;
    margin: 150px auto 100px;
}
.vision-title{
    margin: 0 0 50px;
}
.vision-title h2{
    font-size: 4.5rem;
    margin: 150px 0 0;;
    letter-spacing: 0.3rem;
    line-height: 1.2;
}
.vision-title h3{
    font-size: 3rem;
    color: #d79ed7;
    margin: 5px 0 0 ;
}
.vision-top p{
    width: 50%;
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 50px 0 0;
}
.vision-content{
    width: 70%;
    margin: 50px auto 0;
}
.vision-title-inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: auto;
}
.vision-img{
    width:40%;
    margin: auto;
}
.vision-img img{
    display: block;
    width: 100%;
    object-fit: contain;
    margin: auto;
}
.vision-about{
    width: 85%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.vision-about-title{
    width:65%;
}
.vision-about-title h3{
    color:#56256e;
    font-size:2.5rem;
    letter-spacing: 0.3rem;
    margin: 0;
}
.vision-about-title p{
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 20px 0 0;
}
.vision-aboutlink{
    margin:0;
}
.viewall-vision{
    display: inline-block;
    color: #ffffff;
    background: #d79ed7;
    font-size: 2rem;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #d79ed7;
    outline: none;
    transition: all 0.4s ease-out;
    margin: 0;
}
.viewall-vision:hover{
    border: 1px solid #56256e;
    color: #56256e;
    background: transparent;
}
.service-back{
    background: #f5f5f5;
}
.service,.activity{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 50px 0 100px;
}
.service-title,.activity-title{
    width: 85%;
    margin: 50px auto;
}
.service-title h2,.activity-title h2{
    font-size: 4.5rem;
    margin: 0;
    letter-spacing: 0.3rem;
    line-height: 1.2;
}
.service-title h3,.activity-title h3{
    font-size: 3rem;
    color: #d79ed7;
    margin: 5px 0 0 ;
}
.service-title p{
    width: 60%;
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 30px 0 0;
}
.service-inner,.activity-inner{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.service-content{
    margin: 20px auto;
    border: 2px solid #d79ed7;
    background: #ffffff;
    border-radius: 22px;
    padding: 10px;
    width: 45%;
}
.service-content-comment{
    width: 85%;
    margin: 0 auto;
    padding: 2% 2%;
}
.service-content h3{
    font-size: 2.5rem;
    margin: 15px auto 20px;
    color: #56256e;
}
.service-content h4{
    font-size:5rem;
    color: #d79ed7;
    margin:0;
}
.service-content span{
    font-size: 3rem;
    padding: 0 0 0 12px;
}
.service-content-comment p{
    width: 100%;
    font-size: 1.5rem;
    color: #56256e;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: auto;
}
.service-list{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    margin:12px 0 0;
    padding: 0%;
    list-style-type: none;
}
.service-list li{
    font-size: 1.4rem;
    color: #ffffff;
    background: #d79ed7;
    border-radius: 3px;
    padding: 5px 10px;
    margin: 10px 10px 0 0;
    white-space: nowrap;
}
.service-link{
    width: 85%;
    margin: 40px auto 70px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.service-link p{
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 0;
    width: 65%;
}
.service-viewall{
    margin:0;
}

.activity-content{
    margin: 20px auto;
    border: 2px solid #d79ed7;
    background: #ffffff;
    border-radius: 22px;
    padding: 10px 20px;
    width: 100%;
}
.activity-content h3{
    font-size: 2.5rem;
    margin: 15px auto 20px;
    color: #56256e;
}
.activity-content h4{
    font-size:5rem;
    color: #d79ed7;
    margin:0;
}

.viewall-service{
    display: inline-block;
    border-color:transparent;
    color: #fff;
    background: #d79ed7;
    font-size: 1.5rem;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-out;
    margin: 0;
}
.viewall-service:hover{
    border: 1px solid #56256e;
    color: #56256e;
    background: transparent;
}
.results{
    width:80%;
    margin:auto;
}
.results h2{
    font-size:2.5rem;
    letter-spacing: 0;
}
.results-content{
    width:70%;
    margin: auto 0 auto auto;
}
.results-content h3{
    font-size:2rem;
}
.flow {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f0f0f0;
    padding: 25px 0;
}
.flow-text-content {
    padding: 0;
    margin-right: 150px;
    list-style-type: none;
    white-space: nowrap;
    font-size: 10rem;
    font-weight: bolder;
    color: #ffffff;
}
.flow-text {
    padding:0;
    display: flex;
    animation: FlowText 100s infinite linear 1s both;
}
  @keyframes FlowText {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
.information{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 100px 0 0;
}
.information-inner{
    width: 90%;
    margin: 0 auto;
    padding: 0 0 50px;
}
.information-inner h2{
    font-size:3.5rem;
    color:#d79ed7;
    letter-spacing: 0;
    margin: 0;
}
.viewall{
    display: inline-block;
    color: #fff;
    background: #d79ed7;
    font-size: 2rem;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #d79ed7;
    outline: none;
    transition: all 0.4s ease-out;
    margin:0;
}
.viewall:hover{
    border-color:#56256e;
    color: #56256e;
    background: transparent;
}

.information-content{
    width: 100%;
    margin: auto;
}
/*ニュースの中身*/
.news-content{
    width: 100%;
    margin: 10px 0 0;
}
.news-content ul{
    padding: 0px;
    margin: 0px;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-content li{
    width: calc(100%/3.2);
    margin: 0 0 40px;
}
.news-content a{
	display:block;
    width: 100%;
    color: #56256e;
    text-decoration: none;
    transition: 0.5s;
}
.newsimg{
	display: block;
    width: 100%;
    height: calc(100vw/5);
    overflow: hidden;
    border-radius:5px;
    margin: 0;
}
.newsimg img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.1);
    transition: 0.75s;
    margin: 0;
}
.news-content a:hover .newsimg img{
    transform: scale(1);
    filter: blur(2px);
    transition: 0.75s;
}
.newstitle{
	display:block;
    font-size: 1.6rem;
    margin: 10px 0 0 10px;
    letter-spacing: 0.1rem;
}
.newsday{
	display:block;
    font-size: 1.5rem;
    margin: 10px 5px;
    transition: 0.5s;
}
.news-content a:hover .newstitle{
    color:#d79ed7;
    transition: 0.5s;
}
.news-content a:hover .newsday{
    color:#d79ed7;
    transition: 0.5s;
}
.getPostDispArea{
	padding: 0px;
    margin: 0px;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.getPost {
    width: calc(100%/3.2);
    margin: 0 0 30px;
}
 
.getPostImgArea {
    display: block;
    width: 100%;
    height: calc(100vw/5);
    overflow: hidden;
    border-radius:5px;
    margin: 0;
}
.getPostImgArea img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.1);
    transition: 0.75s;
    margin: 0;
}
.getPost:hover .getPostImgArea img{
    transform: scale(1);
    filter: blur(2px);
    transition: 0.75s;
}
 
.getPostStringArea {
    width: 80%;
    padding-left: 15px;
    float: left;
}
.getPostStringArea h4{
	display:block;
    font-size: 1.6rem;
    margin: 10px 0 0 10px;
    letter-spacing: 0.1rem;
}
.getPostStringArea span{
	display:block;
    font-size: 1.5rem;
    margin: 10px 5px;
    transition: 0.5s;
}
.getPost:hover .getPostStringArea h4{
    color:#d79ed7;
    transition: 0.5s;
}
.getPost:hover .getPostStringArea span{
    color:#d79ed7;
    transition: 0.5s;
}



.information-content li{
    width:calc(100%/3.1);
    margin: auto;
}
.information-content a{
    width: 100%;
    color: #56256e;
    margin: 0;
    text-decoration: none;
    transition: 0.5s;
    display: block;
}
.news-content-img{
    width: 100%;
    height: calc(100vw/5);
    overflow: hidden;
    border-radius:5px;
    margin: 0;
}
.information-content img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
    transform: scale(1.1);
    transition: 0.75s;
    border-radius:5px;
    margin: 0;
}
.information-content a:hover img {
    transform: scale(1);
    filter: blur(2px);
    transition: 0.75s;
}
.news-content-title{
    width: 100%;
    margin: 10px 0;
}
.information-content a h4{
    font-size: 1.6rem;
    margin: 10px 0 0 10px;
    letter-spacing: 0.1rem;
}
.information-content p{
    margin: 0 0 0 auto;
}
.information-content a time{
    font-size: 1.5rem;
    margin: 5px;
    transition: 0.5s;
}
.information-content a:hover h4{
    color:#d79ed7;
    text-decoration: underline;
    transition: 0.5s;
}
.information-content a:hover time{
    color:#d79ed7;
    transition: 0.5s;
}
footer{
    background-color: #ffffff;
    padding: 1px 0 0;
    overflow: hidden;
    width: calc(100% - 243px);
    margin: 0 0 0 auto;
    text-align: center;
}
.contact{
    width: calc(100% - 243px);
    margin: 0 0 0 auto;
    text-align: center;
}
.contact p{
    color: #56256e;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.3rem;
    margin: 120px auto 0;
    text-align: left;
    display: inline-block;
}
.contact-viewall{
    margin:0 auto;
}
.viewall-contact{
    display: inline-block;
    color: #fff;
    background: #d79ed7;
    border: 1px solid #d79ed7;
    font-size: 2.5rem;
    padding: 15px 50px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-out;
    margin: 50px 0;
}
.viewall-contact:hover{
    border: 1px solid #56256e;
    color: #56256e;
    background: transparent;
}
.contact-inner{
    width:100%;
    margin: 70px auto;
    text-align: center;
}
.contact-inner h2{
    font-size:3.5rem;
}
.contact-inner h4{
    font-size:2rem;
    letter-spacing: 0rem;
}
.bottom-end{
    margin: 50px 0 0 auto;
}
.bottom-end p{
    padding: 10px 0px 10px;
    margin: 0;
    width: 100%;
    color: #56256e;
    text-align: center;
}
/*パンくずリスト*/
.panlist{
	width: 100%;
    padding: 10px 0;
	margin: 0 0 0 23px;
}
.panlist ol{
	display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    align-items: baseline;
	justify-content: flex-start;
    flex-wrap: wrap;
}
.panlist li{
	font-size: 1.5rem;
    color: #56256e;
	margin: 0 0 0 7px;
}
.panlist a{
	font-size: 1.5rem;
    color: #56256e;
	text-decoration:none;
}
.panlist a:hover{
    color: #d79ed7;
	text-decoration:underline;
}
/*newsパンくずリスト*/
.breadli{
    padding:0;
	margin: 0 0 0 20px;
}
.breadli ol{
	display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    align-items: baseline;
	justify-content: flex-start;
    flex-wrap: wrap;
}
.breadli li{
	font-size: 1.5rem;
    color: #56256e;
	margin: 0 0 0 7px;
	line-height: 0;
}
.breadli a{
	font-size: 1.5rem;
    color: #56256e;
	text-decoration:none;
}
.breadli a:hover{
    color: #d79ed7;
	text-decoration:underline;
}
/*事業案内*/
.efforts-top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.efforts-top h1{
    position: relative;
    letter-spacing: 0.5rem;
    padding-top:100px;
    font-size:3.5rem;
    color:#56256e;
    margin:30px 0 0 5%;
}
.efforts-top span{
    position:relative;
    z-index:2;
}
.efforts-top h1::before{
    content: attr(data-en);
    position:absolute;
    top:40px;
    left:0;
    color:rgb(215 158 215 / 30%);
    font-size: 8rem;
    text-transform:uppercase;
    z-index:1;
}
.efforts-top h2{
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    margin: 0 2% 22px auto;
    color: #56256e;
    text-align: right;
}
.efforts-top img{
    display: block;
    width: 90%;
    height: 85vh;
    border-radius: 52px 0 0 52px;
    object-fit: cover;
    object-position: 50% 55%;
    margin: 0 0 100px auto;
}
.efforts-middle{
    width: calc(100% - 243px);
    margin: 120px 0 0 auto;
}
.efforts-middle p{
    font-size:1.7rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin:0 7% 0 auto;
    width:80%;
}
.efforts-middle h3{
	font-size: 2.5rem;
    letter-spacing: 0.5rem;
    margin: 75px auto 25px 13%;
    color: #56256e;
}
.efforts-inner{
    width: 85%;
    margin: auto;
}
.efforts-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 75px auto;
}
.efforts-content-comment{
    width: 40%;
    margin: 0 auto;
    padding: 2% 5%;
}
.efforts-content h3{
    font-size: 2.5rem;
    margin: 22px auto 22px;
    color: #56256e;
}
.efforts-content h4{
    font-size:7rem;
    color: #d79ed7;
    margin:0;
}
.efforts-content span{
    font-size: 4rem;
    padding: 0 0 0 12px;
}
.efforts-content-comment p{
    width: 100%;
    font-size: 1.5rem;
    color: #56256e;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: auto;
}
.efforts-list{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 0%;
    list-style-type: none;
}
.efforts-list li{
    font-size: 1.4rem;
    color: #ffffff;
    background: #d79ed7;
    border-radius: 3px;
    padding: 5px 10px;
    margin: 10px 10px 0 0;
    white-space: nowrap;
}
.efforts-content-img{
    width: 45%;
    height: calc(100vw/4);
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}
.efforts-content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
}
.efforts-link{
    width: 85%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.efforts-link p{
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 20px 0 0;
    width:65%;
}
/*活動実績*/

.activity-top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.activity-top h1{
    position: relative;
    letter-spacing: 0.5rem;
    padding-top:100px;
    font-size:3.5rem;
    color:#56256e;
    margin:30px 0 25px 5%;
}
.activity-top span{
    position:relative;
    z-index:2;
}
.activity-top h1::before{
    content: attr(data-en);
    position:absolute;
    top:40px;
    left:0;
    color:rgb(215 158 215 / 30%);
    font-size: 8rem;
    text-transform:uppercase;
    z-index:1;
}
.activity-top h2{
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    margin: 0 2% 22px auto;
    color: #56256e;
    text-align: right;
}
.activity-top img{
    display: block;
    width: 90%;
    height: 85vh;
    border-radius: 52px 0 0 52px;
    object-fit: cover;
    object-position: 50% 55%;
    margin: 0 0 100px auto;
}
.activity-middle{
    width: calc(100% - 243px);
    margin: 120px 0 0 auto;
}
.activity-middle>p{
    font-size:1.7rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin:0 auto;
    width:80%;
}
.activity-middle h2{
	font-size: 2.5rem;
    letter-spacing: 0.5rem;
    margin: 45px auto 10px 10%;
    color: #56256e;
}
.activity-inner{
    width: 80%;
    margin: auto;
}
.activity-inner-content{
    margin: 30px 0;
}
.activity-inner-content-comment{
    width: 40%;
    margin: 0 auto;
    padding: 2% 5%;
}
.activity-inner-content h3{
    font-size: 2.5rem;
    margin: 22px auto 22px;
    color: #56256e;
}
.activity-inner-content h4{
    font-size:7rem;
    color: #d79ed7;
    margin:0;
}
.activity-inner-content li{
    font-size:1.7rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin:0 auto;
}
.activity-inner-content span{
    font-size: 4rem;
    padding: 0 0 0 12px;
}
.activity-inner-content-comment p{
    width: 100%;
    font-size: 1.5rem;
    color: #56256e;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: auto;
}
.activity-content-img{
    width: 45%;
    height: calc(100vw/4);
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}
.activity-content-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
}
.activity-link{
    width: 85%;
    margin: 70px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.activity-link p{
    color: #56256e;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin: 20px 0 0;
    width:65%;
}
/*法人案内*/
.about-top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.about-top h1{
    position: relative;
    letter-spacing: 0.5rem;
    padding-top:100px;
    font-size:3.5rem;
    color:#56256e;
    margin:30px 0 0 5%;
}
.about-top span{
    position:relative;
    z-index:2;
}
.about-top h1::before{
    content: attr(data-en);
    position:absolute;
    top:40px;
    left:0;
    color:rgb(215 158 215 / 30%);
    font-size: 8rem;
    text-transform:uppercase;
    z-index:1;
}
.about-top h2{
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
    margin: 0 2% 22px auto;
    color: #56256e;
    text-align: right;
}
.about-top h3{
    font-size: 3.5rem;
    margin: 0 2% 10px auto;
    color: #56256e;
    text-align: right;
}
.about-top img{
    display: block;
    width: 80%;
    height: 50vh;
    border-radius: 52px 0 0 52px;
    object-fit: cover;
    object-position: 50% 65%;
    margin: 0 0 100px auto;
}
.about-middle{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.about-middle-inner{
    width:80%;
    margin: auto;
}
.about-middle-comment{
    margin: 50px auto;
    width: 80%;
}
.about-middle-comment h3{
    font-size: 3.5rem;
    margin: 50px 7% 40px auto;
    color: #56256e;
}
.about-middle-comment-inner{
    display:flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 35px 0;
    padding: 0 0 15px;
    border-bottom:1px solid #56256e;
}
.about-middle-comment-inner h4{
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    line-height: 2;
    color: #56256e;
    margin: 0;
    white-space: nowrap;
    width: 10%;
}
.about-middle-comment-inner p{
    width:70%;
    font-size: 1.7rem;
    font-weight: 600;
    color: #56256e;
    margin: 0 auto 0 50px;
    line-height: 2;
    letter-spacing: 0.1rem;
}
.about-middle-commenttwo{
    margin: 100px auto 0;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #56256e;
}
.about-middle-commenttwo h3{
    width: 250px;
    font-size: 3.5rem;
    margin: 0 0 40px;
    color: #56256e;
}
.about-middle-commentbox{
    width: calc(100% - 255px);
    margin: 0;
    padding: 0 0 35px;
}
.about-middle-commentbox p{
    font-size: 1.7rem;
    font-weight: 600;
    color: #56256e;
    margin: 0 0 25px 175px;
    line-height: 2;
    letter-spacing: 0.1rem;
}
.about-commentboxone::before{
    content:"2001年(平成13年)";
    padding: 0 15px 0 0;
    margin: 0 0 0 -175px;
}
.about-commentboxtwo::before{
    content:"2021年(令和3年)";
    padding: 0 35px 0 0;
    margin: 0 0 0 -175px;
}
.about-middle-commentbox p{
    font-size: 1.7rem;
    font-weight: 600;
    color: #56256e;
    margin: 0 auto 25px 178px;
    line-height: 2;
    letter-spacing: 0.1rem;
}
.about-middle-commentbox ul{
    width:100%;
}
.about-middle-commentbox li{
    font-size: 1.7rem;
    letter-spacing: 0.3rem;
    font-weight: 600;
    line-height: 2;
    color: #56256e;
    margin: 0 0 25px;
}

/*お問い合わせ*/
.contact-top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.contact-top h1{
    position: relative;
    letter-spacing: 0.5rem;
    padding-top:100px;
    font-size:3.5rem;
    color:#56256e;
    margin:30px 0 0 5%;
}
.contact-top span{
    position:relative;
    z-index:2;
}
.contact-top h1::before{
    content: attr(data-en);
    position:absolute;
    top:40px;
    left:0;
    color:rgb(215 158 215 / 30%);
    font-size: 8rem;
    text-transform:uppercase;
    z-index:1;
}
.contact-middle{
    width: calc(100% - 243px);
    margin: 150px 0 0 auto;
}
.contact-messageone{
    font-size:2rem;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.3rem;
    margin: 0 auto 100px 10%;
    color:#56256e;
}
#pg-contact .contact-check{
	font-size: 1.5rem;
    color: #56256e;
    margin: 0 auto 25px 10%;
    width: 70%;
    line-height: 1.5;
}
#pg-contact .form-inner {
	margin: 0 auto;
    width: 80%;
}
#pg-contact .form-inner .contact-form {
	margin: auto;
}
#pg-contact .form-inner .contact-form .input-box .label-area{
    font-size: 1.5rem;
    color:#56256e;
    position: relative;
}
#pg-contact .form-inner .contact-form .input-box .label-area::after{
    content: "必須";
    color: #d79ed7;
    text-align: center;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    right: -30px;
}
#pg-contact .form-inner .contact-form .input-box:not(:first-child) {
	margin-top: 25px;
}
#pg-contact .form-inner .contact-form .input-box .input-area {
	width: 85%;
	color: #d0d0d0;
	position: relative;
}
#pg-contact .form-inner .contact-form .input-box .input-area input {
	padding: 9px 12px;
    margin: 5px 0;
	width: 100%;
	font-size: 1.5rem;
	color: #d0d0d0;
	border: 1px solid #d0d0d0;
}
#pg-contact .form-inner .contact-form .input-box .input-area textarea {
	resize: none;
	padding: 9px 12px;
    margin: 5px 0;
	width: 100%;
	height: 243px;
	font-size: 1.6rem;
	color: #d0d0d0;
	border: 1px solid #d0d0d0;
}
#pg-contact .form-inner .contact-form .input-box .input-area input:focus, #pg-contact .form-inner .contact-form .input-box .input-area textarea:focus {
	outline: none;
	color: #343434;
	border: 1px solid #127dd6;
	box-shadow: 0 0 1px 0 rgba(18, 125, 214, 0.45);
}
#pg-contact .form-inner .contact-form .input-box .input-area .input-error {
	display: none;
	position: absolute;
	bottom: -30px;
	left: 0;
	color: #c00;
}
#pg-contact .form-inner .contact-form .input-box .input-area .input-error.wpcf7-not-valid-tip {
	display: block;
}
#pg-contact .form-inner .contact-form .action-box {
	margin-top: 25px;
	text-align:center;
}
#pg-contact .form-inner .contact-form .action-box .wpcf7-submit{
	font-size: 1.5rem;
    padding: 10px 0;
    width: 50%;
}
#pg-contact .form-inner .contact-form .wpcf7-list-item-label{
	font-size: 1.5rem;
}
#pg-contact .form-inner .contact-form .wpcf7-list-item-label::after{
    content: "必須";
    color: #d79ed7;
    text-align: center;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    right: -20px;
}
.contact-comment{
	font-size: 1.4rem;
    text-align: center;
    margin: 50px 0;	
}
/*ニュース一覧*/
.notice{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.notice-top{
    width: 100%;
    margin:0;
	display: flex;
	flex-wrap:wrap;
    align-items: flex-end;
}
.notice-top h1{
    position: relative;
    letter-spacing: 0.5rem;
    padding-top:100px;
    font-size:3.5rem;
    color:#56256e;
    margin:30px 0 0 5%;
}
.notice-top span{
    position:relative;
    z-index:2;
}
.notice-top h1::before{
    content: attr(data-en);
    position:absolute;
    top:40px;
    left:0;
    color:rgb(215 158 215 / 30%);
    font-size: 8rem;
    text-transform:uppercase;
    z-index:1;
}
.notice-middle{
    width: calc(100% - 243px);
    margin: 100px 0 200px auto;
}
.notice-content {
    width: 95%;
    margin: 0;
}
.notice-content a {
    width: 30%;
    margin: 0 0 50px;
    padding: 0px 0 20px;
    text-decoration: none;
    transition: 0.5s;
}
.notice-content ul{
    padding: 0px;
    margin: 0px;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.getPostimg{
    width: 100%;
    height: calc(100vw/6.5);
    overflow: hidden;
    border-radius: 5px;
    margin: 0;
}
.getPostimg img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0% 50%;
    transform: scale(1.1);
    transition: 0.75s;
    border-radius: 5px;
    margin: 0;
}
.notice-content a:hover .getPostimg {
    transform: scale(1);
    filter: blur(2px);
    transition: 0.75s;
}
.getPostTitle{
    font-size: 1.6rem;
	font-weight: 500;
    margin: 10px 0 0;
    padding: 0 0 10px 10px;
    letter-spacing: 0.1rem;
    color: #56256e;
}
.notice-content-title{
    color: #56256e;
    width: 100%;
    margin: 10px 0;
}
.notice-content p{
    color:#56256e;
    margin: 0 0 0 auto;
}
.getPostDate{
    font-size: 1.5rem;
    margin: 5px;
    color: #56256e;
    transition: 0.5s;
}
.notice-content a:hover .getPostDate{
    color:#d79ed7;
    transition: 0.5s;
}
.notice-content a:hover .getPostTitle{
    color:#d79ed7;
    transition: 0.5s;
}
.pagination {
    font-size: 1.4rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 0px 0px 100px;
}
.pagination span, .pagination a {
  margin-right: 0.5em;
  padding: 0.2em 0.8em;
  background-color: #eee;
  border: 1px solid #56256e;
  color: #56256e;
  text-decoration: none;
  border-radius: 3px;
}
.pagination a:hover {
  background-color: #d79ed7;
	color:#ffffff;
}
.pagination .current{
  background-color: #56256e;
  color: #ffffff;
  font-weight: bold;
  border-radius: 3px;
}
.pagination .mb_page_navi{ display: none; }
.pagination .pc_page_navi{ display: block; }
/*ニュースのページ*/
.posts-container{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 100px 0 100px;
}
.posts-inner{
    width:85%;
    margin:auto;
}
.posts-inner h1{
    font-size:3.5rem;
    color:#56256e;
}
.posts-date{
   font-size:1.5rem;
    color:#56256e;
}
.posts-img{
    width: 100%;
    overflow: hidden;
    height: calc(100vw/3);
}
.posts-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	border-radius:10px;
	
}
.posts-inner p{
     font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
}

.postsbread{
	font-size: 1.4rem;
    color: #56256e;
	width:100%;
	display: flex;
    padding: 5px 0;
    margin: 50px 0 25px;
    list-style-type: none;
    align-items: baseline;
	justify-content: flex-end;
    flex-wrap: wrap;
}
.postsbread a{
	font-size: 1.4rem;
    color: #56256e;
	margin: 0 0 0 7px;
	padding: 0 7px 0 0;
	text-decoration:none;
}
.postsbread a:hover{
    color: #d79ed7;
	text-decoration:underline;
}
.post__pagination{
    width: 100%;
    margin: 30px auto 0;
    padding:0;
    display: flex;
    justify-content: space-between;
}
.post__pagination__left{
    width:47%;
}
.post__pagination__left > a{
    display:block;
    position:relative;
	text-decoration:none;
}
.post__pagination__left_nav{
    font-size: 1.3rem;
    color: #56256e;
    margin: 0px 0ox 10px;
}
.post__pagination__left__img{
    display: block;
    width: 100%;
    height: calc(100vw/8);
    background: #000;
	border-radius:5px;
	overflow: hidden;
}
.post__pagination__left__img > img{
   width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    opacity: 0.5;
		transition:0.5s;
}
.post__pagination__left__text{
    position: absolute;
    top: 60%;
	left:50%;
	transform:translate(-50%,-50%);
	margin:0 -50% 0 0;
    z-index: 1;
    color: #fff;
    font-size:1.4rem;
	padding: 7px;
}
.post__pagination__left > a:hover .post__pagination__left_nav{
	color:#d79ed7;
	transition:0.5s;
}
.post__pagination__left > a:hover .post__pagination__left__img > img{
	opacity:1;
	transition:0.5s;
}
.post__pagination__right{
    width:47%;
	text-align:right;
}
.post__pagination__right > a{
    display:block;
	text-decoration:none;
	position:relative;
}
.post__pagination__right_nav{
	text-align: right;
    font-size: 1.3rem;
    color: #56256e;
    margin: 0px 0ox 10px;
}
.post__pagination__right__img{
   display: block;
    width: 100%;
    height: calc(100vw/8);
    background: #000;
	border-radius:5px;
	overflow: hidden;
}
.post__pagination__right__img > img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    opacity: 0.5;
	transition:0.5s;
}
.post__pagination__right__text{
    position: absolute;
    top: 60%;
	left:50%;
	transform:translate(-50%,-50%);
	margin:0 -50% 0 0;
    z-index: 1;
    color: #fff;
    font-size:1.4rem;
	text-align: left;
}
.post__pagination__right > a:hover .post__pagination__right_nav{
	color:#d79ed7;
	transition:0.5s;
}
.post__pagination__right > a:hover .post__pagination__right__img > img{
	opacity:1;
	transition:0.5s;
}
/*プライバシーポリシー*/
.pulibacy-top{
    width: calc(100% - 243px);
    margin: auto 0 auto auto;
    padding: 1px 0 0;
}
.pulibacy-middle{
    width: calc(100% - 243px);
    margin: 100px 0 0 auto;
}
.pulibacycontent{
    width: 75%;
    margin: auto;
}
.pulibacycontent h1{
    margin: 0 0 50px 0;
    font-size: 2.5rem;
    color:#56256e;
    line-height: 2;
    letter-spacing: 0.3rem;
}
.pulibacycontent p{
    margin: 0 0 30px 0;
    font-size: 1.5rem;
    color:#56256e;
    line-height: 1.5;
    letter-spacing: 0.1rem;
}
.pulibacycontent a{
    margin: 0 0 30px 0;
    font-size: 1.5rem;
	font-weight:500;
    color:#56256e;
    line-height: 1.5;
    letter-spacing: 0.1rem;
}
.pulibacycontent h2{
    margin: 50px 0;
    font-size: 1.6rem;
    color:#56256e;
    line-height: 2;
    letter-spacing: 0.3rem;
}
.pulibacycontent ol{
    margin: 20px 0 0 40px;
}
.pulibacycontent li{
    list-style: outside decimal;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 10px 0;
}

/*1100px以上*/
@media screen and (min-width:1100px){
    .header-sp{
        display: none;
    }
    .top-content-inner-sp{
        display: none;
    }

}

/*1099px以下*/
@media screen and (min-width:560px) and (max-width:1099px){
    .header-pc{
        display: none;
    }
    .top {
        width: 100%;
    }
    .top-container {
        width: 95%;
        height: 90vh;
        border-radius: 52px 0 0 52px;
        margin: 7vh 0 10vh auto;
    }
    .top-content-inner-sp{
        display: none;
    }
    .top-content-inner p {
        font-size: 4rem;
    }
    .top-title h3 {
        font-size: 2rem;
    }
    .information {
        width: 100%;
        margin: auto;
        padding: 50px 0 0;
    }
    .vision {
        width: 100%;
        margin: 0 0 100px auto;
    }
    .vision-top {
        width: 90%;
        margin: 100px auto 75px;
    }
    .viewall-vision {
        font-size: 1.5rem;
        padding: 10px 25px;
    }
    .service {
        width: 100%;
        margin: auto;
        padding: 50px 0 50px;
    }
    .service-title {
        width: 90%;
    }
    .service-content h4 {
        font-size: 4.5rem;
    }
    .service-content span {
        font-size: 2.5rem;
        padding: 0 0 0 10px;
    }
    .service-content h3 {
        font-size: 2.2rem;
    }
    .service-link {
        width: 90%;
        margin: 40px auto 50px;
    }
    .viewall-service {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    .service-inner {
        width: 90%;
    }
    .contact {
        width: 100%;
        margin: auto;
    }
    .contact p {
        font-size: 2.2rem;
        margin: 100px auto 0;
        text-align: center;
    }
    .viewall-contact {
        font-size: 2.2rem;
        margin: 25px 0;
    }
    footer {
        width: 100%;
        margin:auto;
    }
    .contact-inner {
        margin: 50px auto 20px
    }
    .bottom-end {
        margin: 25px 0 0 auto;
    }

/*事業案内*/
.efforts-top,.about-top,.contact-top,.pulibacy-middle{
    width: 100%;
}
.efforts-top h2 {
    letter-spacing: 0.1rem;
    margin: 22px 2% 10px auto;
}
.efforts-top img,.about-top img {
    width: 95%;
}
.efforts-middle,.about-middle,.contact-middle{
    width: 100%;
    margin: 75px 0 0 auto;
}
.efforts-inner {
    width: 95%;
}
.efforts-content h4 {
    font-size: 5rem;
}
.efforts-content-img {
    margin: auto auto 0;
}
.efforts-middle p {
    margin: 0 auto;
    width: 90%;
}
.efforts-middle h3 {
    letter-spacing: 0.3rem;
    margin: 50px auto 20px 5%;
}
/*法人紹介*/
.about-top h3 {
    font-size: 2.5rem;
    margin: 50px 2% 10px auto;
}
.about-middle-commenttwo {
    width: 90%;
    display: block;
}
.about-middle-commentbox {
    width: 100%;
}
.about-middle-commentbox li {
    letter-spacing: 0.1rem;
    margin: 0 0 10px;
}
/*お問い合わせ*/
.contact-messageone {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    width: 75%;
}
#pg-contact .contact-check {
    font-size: 1.5rem;
    margin: 0 auto 25px;
    width: 75%;
}
#pg-contact .form-inner .contact-form .input-box .input-area {
    width: 95%;
}
/*プライバシーポリシー*/
.pulibacycontent {
    width: 90%;
    margin: auto;
}
.pulibacycontent ol {
    margin: 20px 0 0 0px;
}
	/*お知らせ*/
.notice,.posts-container{
    width: 100%;
}
.notice-middle {
    width: 100%;
    margin: 50px auto 100px;
}
.notice-content {
    width: 95%;
    margin: 0 auto;
}
.getPostimg {
    height: calc(100vw/5);
}
/*記事*/
.posts-img {
    height: calc(100vw/2);
}
}

/*559px以下*/
@media screen and (max-width:559px){
    .header-pc{
        display: none;
    }
    .drawer {
        margin: 15px 5px 0 0;
    }
    .drawer-content{
        height:100%;
        top:-100%;
    }
    .drawer-list {
        margin: 100px auto 100px;
    }
    .drawer-list{
        display:block;
        margin: 100px auto 100px;
    }
    .drawer-list li {
        font-size: 1.6rem;
        margin: 20px 60px 0 auto;
        font-weight: bold;
        text-align: right;
    }
    .top {
        width: 100%;
    }
    .top-container {
        width: 95%;
        height: 70vh;
        border-radius: 35px 0 0 35px;
        margin: 10px 0 50px auto;
    }
    .top-content-inner{
        display: none;
    }
    .top-content-inner p {
        font-size: 4rem;
    }
    .top-title h3 {
        font-size: 2.2rem;
    }
    .top-title h1 {
        font-size: 2.3rem;
        color: #56256e;
        letter-spacing: 0.5rem;
        text-align: right;
        margin: 10px 0 0;
    }
    .top-title>span {
        font-size: 1.3rem;
        margin: 5px 0 0;
    }
    .information {
        width: 100%;
        margin: auto;
        padding: 50px 0 0;
    }
    .information-inner {
        width: 90%;
        margin: 0 auto;
        padding: 0 0 25px;
    }
    .information-inner h2 {
        font-size: 3rem;
    }
	.getPostDispArea {
        display: block;
    }
	.getPost {
        width: 100%;
		height: calc(100vw/1.65);
    }
	.getPostImgArea {
        height: calc(100vw/2.25);

    }
    .viewall {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    .vision {
        width: 100%;
        margin: 0 0 75px auto;
    }
    .vision-top {
        width: 90%;
        margin: 50px auto;
    }
    .vision-title h2 {
        font-size: 2.5rem;
        margin: 25px 0 0;
        letter-spacing: 0.1rem;
        line-height: 1.5;
    }
    .vision-title h3 {
        margin: 5px 15px 0 0;
        text-align: right;
    }
    .vision-title-inner {
        display: block;
    }
    .vision-top p {
        width: 100%;
        margin: 25px 0 0;
    }
    .vision-img {
        width: 100%;
        margin: auto;
    }
    .viewall-vision {
        font-size: 1.5rem;
        padding: 10px 25px;
    }
    .vision-about {
        width: 90%;
        margin: 70px auto;
        display: block;
    }
    .vision-about-title {
        width: 100%;
    }
    .vision-about-title h3 {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }
    .vision-aboutlink {
        text-align: right;
        margin: 25px 0;
    }
    .flow {
        padding: 5px 0;
    }
    .flow-text-content {
        margin-right: 50px;
        font-size: 5rem;
    }
    .service {
        width: 100%;
        margin: auto;
        padding: 25px 0 50px;
    }
    .service-title {
        width: 90%;
        margin: 50px auto 25px;
    }
    .service-title h2 {
        font-size: 3rem;
    }
    .service-title p {
        width: 100%;
        margin: 25px 0 0;
    }
    .service-content {
        margin: 0 auto 20px;
        width: 100%;
    }
    .service-content h4 {
        font-size: 3.5rem;
    }
    .service-content span {
        font-size: 2rem;
        padding: 0 0 0 5px;
    }
    .service-content h3 {
        font-size: 2rem;
        margin: 10px auto 15px;
    }
    .service-link {
        width: 90%;
        display: block;
        margin: 25px auto 20px;
    }
	.service-link p {
        width: 100%;
    }
	.service-viewall {
        margin: 25px 0;
        text-align: right;
    }
    .viewall-service {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    .service-inner {
        width: 90%;
    }
    .contact {
        width: 90%;
        margin: auto;
    }
    .contact p {
        font-size: 1.8rem;
        margin: 50px auto 0;
        text-align: left;
    }
    .viewall-contact {
        font-size: 2rem;
        padding: 10px 30px;
        margin: 25px 0;
    }
    footer {
        width: 100%;
        margin:auto;
    }
    .contact-inner {
        margin: 25px auto 20px
    }
    .contact-inner h2 {
        font-size: 2rem;
        margin: 0 auto;
    }
    .contact-inner h4 {
        font-size: 1.5rem;
        letter-spacing: 0rem;
        margin: 10px auto 0;
    }
    .bottom-end {
        margin: 25px 0 0 auto;
    }
/*事業案内*/
.efforts-top,.about-top,.contact-top,.pulibacy-middle {
    width: 100%;
}
.efforts-top h1 {
    font-size: 3rem;
}
.efforts-top h1::before {
    top: 60px;
    font-size: 6rem;
}
.about-top h1 {
    font-size: 3rem;
}
.about-top h1::before {
    top: 60px;
    font-size: 6rem;
}
.efforts-top h2 {
	font-size: 2rem;
    letter-spacing: 0.1rem;
    margin: 22px 2% 10px auto;
}
.efforts-top img{
    width: 95%;
}
.efforts-middle,.about-middle,.contact-middle{
    width: 100%;
    margin: 0;
}
.efforts-inner {
    width: 95%;
}
.efforts-content {
    display: block;
    margin: 50px auto 0;
}
.efforts-content-comment {
    width: 95%;
    margin: 0 auto;
    padding: 0;
}
.efforts-content h4 {
    font-size: 5rem;
}
.efforts-list {
    margin: 10px 0;
}
.efforts-content-img {
    width: 95%;
    height: calc(100vw/2);
    border-radius: 10px;
    overflow: hidden;
    margin: auto auto 0;
}
.efforts-middle>p {
    margin: 25px auto;
    width: 90%;
}
.efforts-middle>h3 {
	width: 90%;
    font-size:2rem;
    letter-spacing: 0.3rem;
    margin: 75px auto 0 5%;
}
/*法人紹介*/
.about-top h3 {
    font-size: 1.7rem;
    margin: 31px 2% 10px auto;
}
.about-top img {
    width: 95%;
    margin: 0 0 0px auto;
}
.about-top h2 {
    font-size: 3rem;
}
.about-middle-comment {
    width: 90%;
}
.about-middle-comment-inner {
    display: block;
}
.about-middle-comment-inner h4 {
    width: 100%;
}
.about-middle-comment h3 {
    font-size: 2.5rem;
    margin: 50px 0 30px;
}
.about-middle-comment-inner p {
    width: 100%;
    margin: 10px auto 0 10px;
}
.about-middle-commenttwo {
    width: 90%;
    margin: 75px auto 0;
    display: block;
}
.about-middle-commenttwo h3 {
    width: 100%;
    font-size: 2.5rem;
    margin: 0 0 20px;
}
.about-middle-commentbox {
    width: 100%;
    padding: 1px 0 35px;
}
.about-middle-commentbox p {
    margin: 50px auto 25px;
}
.about-commentboxone::before {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -30px;
    left: 0;
}
.about-commentboxtwo::before {
    padding: 0;
    margin: 0;
    position: absolute;
    top: -30px;
    left: 0;
}
.about-middle-commentbox ul {
    width: 100%;
    padding: 10px 0 0 10px;
}
.about-middle-commentbox li {
    letter-spacing: 0.1rem;
    margin: 0 0 10px;
}
/*お問い合わせ*/
.contact-top h1 {
    font-size: 3rem;
}
.contact-top h1::before {
    top: 60px;
    font-size: 6rem;
}
.contact-messageone {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    width: 90%;
    margin: 30px auto;
}
#pg-contact .form-inner{
    width: 90%;
    margin: 0 auto 25px;
}
#pg-contact .contact-check {
    width: 90%;
	margin: 0 auto 50px;
}
#pg-contact .form-inner .contact-form .input-box .input-area input {
    padding: 5px 6px;
    width: 95%;
}
#pg-contact .form-inner .contact-form .input-box .input-area textarea {
    padding: 5px 6px;
    width: 95%;
}
#pg-contact .form-inner .contact-form .input-box .input-area {
    width: 95%;
}
.contact-comment {
    text-align: left;
    margin: 50px auto;
    width: 90%;
}
/*プライバシーポリシー*/
.pulibacycontent {
    width: 90%;
    margin: auto;
}
.pulibacycontent ol {
    margin: 20px 0 0 0px;
}
	/*お知らせ*/
.notice,.posts-container{
    width: 100%;
	padding: 100px 0 50px;
}
.notice-middle {
    width: 100%;
    margin: 50px auto 100px;
}
.notice-content {
    width: 95%;
    margin: 0 auto;
}
.notice-content ul {
    display: block;
	margin:0 auto;
}
.notice-content a {
    width: 95%;
    display: block;
    margin: auto;
}
.getPostimg {
    height: calc(100vw/2);
}
/*記事*/
.posts-img {
    height: calc(100vw/2);
}
.post__pagination__right__img,.post__pagination__left__img{
	display:none;
	}
}