@charset "utf-8";
/* CSS Document */
* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	word-break: break-all;
}

body {
	color: #111;
    font-size: 1em;
	line-height:1.5;
    font-family: 'Noto Sans JP', sans-serif;
}

a:link,
a:visited {
	text-decoration:none;
	color: #111;
}
a:hover,
a:active {
	color: #40220F;
    text-decoration: underline;
	transition: all .3s;
	opacity:0.8;
}
img {
  max-width: 100%;
  height: auto;
}
/*アンカー調整*/
a.anchor{
    display: block;
    padding-top: 180px;
    margin-top: -180px;
}

@media screen and (max-width: 768px){
	a.anchor{
	    display: block;
	    padding-top: 100px;
	    margin-top: -100px;
	}
}

/*上からフェードイン*/
.fade-in-top {
   opacity: 0;
   animation: fadein-top 1.5s .3s ease-out forwards;
}
@keyframes fadein-top {
   0% {
      opacity: 0;
      transform: translateY(-20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

/*下からフェードイン*/
.fade-in-bottom {
   opacity: 0;
   animation: fadein-bottom 1.5s 0s ease-out forwards;
}
.fade-in-bottom-5 {
   opacity: 0;
   animation: fadein-bottom 1.5s .5s ease-out forwards;
}
.fade-in-bottom-10 {
   opacity: 0;
   animation: fadein-bottom 1.5s 1s ease-out forwards;
}
.fade-in-bottom-15 {
   opacity: 0;
   animation: fadein-bottom 1.5s 1.5s ease-out forwards;
}
@keyframes fadein-bottom {
   0% {
      opacity: 0;
      transform: translateY(20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

/*左からフェードイン*/
.fade-in-left {
   opacity: 0;
   animation: fadein-left 1.5s 0 ease-out forwards;
}
@keyframes fadein-left {
   0% {
      opacity: 0;
      transform: translateX(-20px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}

/*右からフェードイン*/
.fade-in-right {
   opacity: 0;
   animation: fadein-right 1.5s 0 ease-out forwards;
}
@keyframes fadein-right {
   0% {
      opacity: 0;
      transform: translateX(20px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}

#wrap {
	width:100%;
	margin:0 auto;
}
/*背景画像*/
#mv {
	background-image:url(../mv/mv1.jpg);
	background-size:cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
	position:fixed;   
}
#mv-wrap {
    width:80%;
    height: 100vh;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mv-wrap h1 {
    position: absolute;
    top: 100px;
    left: 0;
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.2;
    padding: 0;
    text-align: left;
    color: #fff;
}

#mv-wrap h2 {
    position: absolute;
    top: 300px;
    left: 0;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    color: #fff;
}
.mv_logo {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 200px;
}
.mv_logo img {
    width: 200px;
    height: 143px;
}

#mv_topics {
    width:80%;
    height: 100vh;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#mv_topics h3 {
    position: absolute;
    top: 200px;
    right: 0;
    font-size: 1.2em;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    color: #000;
	background-color:rgba(255,255,255,0.8);
}
#mv_topics h3 span {
    color: #006532;
}
#mv_topics h3 a {
	display: block;
	padding: 10px 15px;
	transition: all .3s;
}
#mv_topics h3 a:hover {
	color: #fff;
	background-color: #8FC31F;
	text-decoration: none;
	opacity:1;
}

@media screen and (max-width: 768px){
    #mv-wrap h1 {
        font-size: 1.6em;
        line-height: 1.5;
        top: 40px;
        left: 0;
    }
    #mv-wrap h2 {
        font-size: 1.2em;
        line-height: 1.5;
        top: 220px;
        left: 0;
    }
    .mv_logo {
        bottom: 15%;
        left: 50%;
        transform: translate(-50%, 50%);
    }
    #mv_topics h3 {
        font-size: 1.1em;
        line-height: 1.2;
        top: 330px;
        left: 0;
    }
	#mv_topics h3 a {
		padding: 10px 10px;
	}
}

/*背景動画*/
.video-wrap {
    width: 100vw;
    height: 100vh;
	position:fixed;
}
/* video */
.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/* overlay */
.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}


/*ヘッダーチェンジ*/
.site-header{
    background: rgba(255,255,255,0.30);
    display: flex;
    justify-content: space-between;
    padding: 0;
    position: absolute;
    width: 100%;
}
.header-change{
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    position: fixed;
    top: -93px;
    transition: .5s;
    width: 100%;
}
.header-change.show{
    top: 0;
}
.header-change .gnav__menu__item a{
    color: #006532;
    text-decoration: none;
}
.site-logo img{
    height: 40px;
    width: auto;
    padding-left: 20px;
}
/*menu*/
.menu{
    height: 20px;
    position: absolute;
    right: 20px;
    top: 30px;
    width: 30px;
    z-index: 99;
}
.menu__line{
    background: #006532;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}
/*gnav*/
.gnav{
    background: rgba(255,255,255,0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}

.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
    top:-15%;
}
.gnav__menu__item{
    margin: 20px 0;
	text-align:center;
    font-size: 1.5em;
}
.gnav__menu__item a{
    color: #006532;
    font-size: 1.2em;
    font-weight: bold;
    padding: 20px;
    text-decoration: none;
    transition: .5s;
}
.gnav__menu__item img{
	width:30%;
}
.gnav__menu__item a:hover{
    color: #8FC31F;
}
.hero{
    position: relative;
    height:100vh;
    max-height: 100vh;
    overflow: hidden;
}
.hero img{
    height: auto;
    width: 300px;
}

.hero h1 {
  font-size: 40px;
  line-height:0.5;
  padding-bottom: 12px;
}
.hero h1 span {
  font-size: 10.5px;
  color: #111;
  font-weight:bold;
  /*border-bottom: 2px solid #e8f380;*/
}

/*下層ページ用*/
.hero2 {
    position: relative;
    height:0;
    max-height: 0;
    overflow: hidden;
}


.content {
  /*padding: 70px 2% 100px;*/
  padding: 0;
  background-color:#FFF;
  padding-top:140px;
}
/*.content img.h1logo {
  width: 120px;
}*/

/* セクション‐コンセプト */
.sec_concept {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFF;
    text-align: center;
    padding-bottom: 70px;
}
.sec_concept h1 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.sec_concept h2 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2.5em;
	font-weight:bold;
	letter-spacing:0.1em;
    color: #006532;
}
.sec_concept p {
	text-align:left;
    font-size: 1em;
    line-height: 1.5;
	letter-spacing:0.1em;
}
.concept-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #FFF;
}
@media screen and (max-width: 768px){
    .sec_concept h2 {
        font-size: 1.5em;
    }
   .concept-inner {
        width:90%;
    }
    .sec_concept p {
	text-align:left;
    }
}

/* セクション‐ギャラリー
.sec_gallery {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFF;
    text-align: center;
    padding-bottom: 70px;
} */
.gallery-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}
.gallery-area {
    width:100%;
    position: relative; 
    height: 550px;
}
.gallery-logo {
    width:300px;
    height: auto;
    position: absolute;
    top:0;
    left:50px;
}
.gallery-item {
    /* width:600px; ストロー2種画像用 */
    width:500px; /* ストロー1種画像用 */
	height: auto;
    position: absolute;
    top:0;
    right:0;
}
.gallery-image1 {
    width:180px;
    height: auto;
    position: absolute;
    top:250px;
    left:0;
}
.gallery-image2 {
    width:180px;
    height: auto;
    position: absolute;
    top:300px;
    left:200px;
}
.gallery-logo img,
.gallery-item img,
.gallery-image1 img,
.gallery-image2 img {
    width:100%;
    height: auto;
}
.gallery-image1 .gallery-image-caption {
	text-align:left;
	font-weight: normal;
	font-size:18px;
	line-height:1.4em;
}

.fadein1 {
	opacity: 0;
	transform : translateX(-50px);
	transition : all 1000ms;
}

.fadein1.scrollin1{
	opacity: 1;
	transform: translateX(0);
}
.fadein2 {
	opacity: 0;
	transform : translateX(50px);
	transition : all 1000ms;
}

.fadein2.scrollin2{
	opacity: 1;
	transform: translateX(0);
}
.fadein3 {
	opacity: 0;
	transform : translate(0, 50px);
	transition : all 1000ms;
}

.fadein3.scrollin3{
	opacity: 1;
	transform: translate(0, 0);
}
.fadein4 {
	opacity: 0;
	transform : translate(0, 50px);
	transition : all 1000ms;
}

.fadein4.scrollin4{
	opacity: 1;
	transform: translate(0, 0);
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
    .gallery-area {
        width:90%;
        margin: 0 auto;
        position: relative; 
        height: 350px;
    }
    .gallery-logo {
        width:200px;
        height: auto;
        position: absolute;
        top:0;
        left:50px;
    }
    .gallery-item {
		/* width: 400px; ストロー2種画像用 */
		width:300px; /* ストロー1種画像用 */
        height: auto;
        position: absolute;
        top:0;
        right:0;
    }
    .gallery-image1 {
        width:130px;
        height: auto;
        position: absolute;
        top:180px;
        left:0;
    }
    .gallery-image2 {
        width:130px;
        height: auto;
        position: absolute;
        top:200px;
        left:150px;
    }
    .gallery-logo img,
    .gallery-item img,
    .gallery-image1 img,
    .gallery-image2 img {
        width:100%;
        height: auto;
    }
}
@media screen and (max-width: 600px){
    .gallery-area {
        width: 100%;
        position: relative; 
        height: 1000px;
    }
    .gallery-logo {
        width: 60%;
        height: auto;
        position: absolute;
        top:0;
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery-item {
        /* width: 90%; ストロー2種画像用 */
		width: 70%; /* ストロー1種画像用 */
        height: auto;
        position: absolute;
        top:200px;
        right: 50%;
        transform: translateX(50%);
    }
    .gallery-image1 {
        width: 50%;
        height: auto;
        position: absolute;
        top:500px;
        left: 50%;
        transform: translateX(-50%);
    }
    .gallery-image2 {
        width: 50%;
        height: auto;
        position: absolute;
        top:810px;
        left: 50%;
        transform: translateX(-50%);
    }
    .fadein1 {
        opacity: 0;
        transform : translate(0, 50px);
        transition : all 1000ms;
    }

    .fadein1.scrollin1{
        opacity: 1;
        transform: translate(0, 0);
    }
    .fadein2 {
        opacity: 0;
        transform : translate(0, 50px);
        transition : all 1000ms;
    }

    .fadein2.scrollin2{
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* セクション‐アイテム */
.sec_item {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #D5E4E2;
    text-align: center;
    padding-bottom: 70px;
}
.sec_item h1 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.sec_item h2 {
	text-align:center;
	padding-bottom:50px;
    font-size: 1.2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.item-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
}
.item-detail {
    clear: both;
	display: table;
	width: 85%;
    margin: 0 auto;
    margin-bottom: 50px;
    background-color: #FFF;
    padding: 30px;
    box-shadow: 3px 3px 3px 3px rgba(127,173,167,.5);/*#7FADA7*/
    overflow: hidden;
}
.item-detail-l, .item-detail-r {
	display: table-cell;
	vertical-align: top;
    text-align: left;
}
.item-detail-l {
	width: 50%;
    float: left;
}
.item-detail-r {
	width: 50%;
    float: right;
}
.item-detail-btm {
	width: 100%;
	clear: both;
	padding-top: 50px;
}
.item-detail-btm p.title {
    width: auto;
    text-align:center;
    color:#40220F;
    font-weight: bold;
	font-size: 1.5em;
}
.item-detail-btm p.subtitle {
    width: auto;
    text-align:center;
    color:#40220F;
    font-weight: bold;
}

.item-detail-l img, .item-detail img {
	width: 100%;
    height: auto;
}
.item-detail-title {
    color: #006532;
    margin-bottom: 10px;
    font-size: 1.2em;
    line-height: 2;
    font-weight: bold;
    border-bottom: #D5E4E2 solid 2px;
}
.item-detail-subt {
    color: #40220F;
    font-weight: bold;
    margin: 8px 0;
}
.item-detail-head {
    color: #40220F;
    font-weight: bold;
    line-height: 2;
    margin: 8px 0;
}
.item-detail-data {
	display: flex;
	flex-direction: column;
	font-size:16px;
}
.datawrap-left {
	display:inline-table;
	width:65px;
}
.datawrap-attention {
	display:inline-table;
	width:65px;
}

.item-detail-phonenum-wrap {
	display:flex;
	justify-content: center;
	margin:20px 20px;
}
.item-detail-phonenum {
	background-color: #009999;
	padding:10px 30px;
	color:#fff;
	display:flex;
	justify-content: center;
	align-items: center;
	
}
.item-detail-phonenum .ft-smaller {
	font-size:18px;
}
.item-detail-phonenum .ft-num {
	font-size:30px;
}

@media only screen and (max-width: 768px) {
    .sec_item h2 {
	    text-align:left;
        font-size: 1em;
    }
    .item-inner {
        width:90%;
    }
	.item-detail {
		display: block;
		width: 90%;
        text-align: left;
	}
	.item-detail-l, .item-detail-r {
		display: block;
		width: 100%;
        float: none;
        text-align: left;
	}
    .item-detail-l img, .item-detail-r img {
	    width: 100%;
    }
    .item-detail-title {
        text-align: left;
    }
    .item-detail-data {
		display: flex;
		flex-direction: column;
		font-size:13px;
    }
    .datawrap-left {
		display:inline-table;
		width:55px;
    }
    .item-detail-phonenum-wrap {
		display:flex;
		justify-content: center;
		margin:20px 0px;
    }
    .item-detail-phonenum {
		background-color: #009999;
		padding:10px 20px;
	    color:#fff;
	    display:flex;
	    justify-content: center;
	    align-items: center;
    }
    .item-detail-phonenum .ft-smaller {
	    font-size:14px;
	    padding-top: 2px;
    }
    .item-detail-phonenum .ft-num {
	    font-size:20px;
    }
}

@media only screen and (max-width: 400px) {
	.item-detail-phonenum {
		background-color: #009999;
		padding:10px 10px;
	    color:#fff;
	    display:flex;
	    justify-content: center;
	    align-items: center;
    }
	.item-detail-phonenum .ft-smaller {
	    font-size:14px;
	    padding-top: 2px;
    }
    .item-detail-phonenum .ft-num {
	    font-size:18px;
    }
}


/* セクション‐ニュース */
.sec_news {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFF;
    text-align: center;
    padding-bottom: 70px;
}
.sec_news h1 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.news-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid #D5E4E2;
}
.news-inner dl {
    border-bottom: 1px solid #D5E4E2;
    padding: 15px;
}

.news-inner dt {
    clear: left;
    float: left;
    /*width: 10%;*/
    padding-bottom: 5px;
    line-height: 1.5;
}
.news-inner dd {
    /*width: 100%;*/
}
.news-inner p{
    line-height: 2;
    text-align: left;
}
.date{
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
}
.label-info{
    background-color: #8FC31F;
    color: #FFF;
    font-size: 0.8em;
    border-radius: 2px;
    padding: 4px 0.8em;
    margin: 0 10px 0 10px;
    display: inline-block;
    line-height: 1;
}
.label-media{
    background-color: #003F2B;
    color: #FFF;
    font-size: 0.8em;
    border-radius: 2px;
    padding: 4px;
    margin: 0 10px 0 10px;
    display: inline-block;
    line-height: 1;
}
.label-press{
    background-color: #006532;
    color: #FFF;
    font-size: 0.8em;
    border-radius: 2px;
    padding: 4px;
    margin: 0 10px 0 10px;
    display: inline-block;
    line-height: 1;
}

.new{
    color: #d10606;
    background-color: #FFF;
    font-size: 0.8em;
    border: 1px solid #d10606;
    padding: 3px;
    margin: 0 10px 0 10px;
    display: inline-block;
    line-height: 1;
}
@media screen and (max-width: 768px){
    .news-inner {
        width:90%;
    }
    .news-inner dt {
        width: 100%;
    }
    .news-inner dd {
        width: 100%;
    }
}

/* 記事ページ用 */
.article-inner {
    width:90%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #D5E4E2;
    padding: 20px;
}
.article-inner p{
    line-height: 2;
    text-align: left;
}
.article-title {
    color: #006532;
    margin: 20px 0;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    border-top: #D5E4E2 solid 1px;
    border-bottom: #D5E4E2 solid 1px;
}
.article-subt {
    color: #40220F;
    line-height: 2;
    font-weight: bold;
    margin: 8px 0;
}
.article-inner img{
    text-align: center;
    margin: 20px;
    max-width: 90%;
}

/* セクション‐プロフィール */
.sec_profile {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFF;
    text-align: center;
    padding-bottom: 70px;
}
.sec_profile h1 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.profile-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    /*border-top: 1px solid #D5E4E2;*/
}
.profile-inner dl {
    border-bottom: 1px solid #D5E4E2;
    padding: 15px;
}

.profile-inner dt {
    clear: left;
    float: left;
    /*width: 10%;*/
    padding-bottom: 5px;
    line-height: 1.5;
}
.profile-inner dd {
    /*width: 100%;*/
}
.profile-inner p{
    line-height: 2;
    text-align: left;
}
.profile-title {
    color: #006532;
    margin: 20px 0;
    padding: 10px 0;
    font-size: 1.2em;
    font-weight: bold;
    /*border-top: #D5E4E2 solid 2px;
    border-bottom: #D5E4E2 solid 2px;*/
}
.profile-subt {
    color: #40220F;
    line-height: 2;
    font-weight: bold;
    margin: 8px 0;
}

@media screen and (max-width: 768px){
    .profile-inner {
        width:90%;
    }
    .profile-inner dt {
        width: 100%;
    }
    .profile-inner dd {
        width: 100%;
    }
}

/* プロフィール用テーブル */
.profile_table {
  border-collapse: collapse;
  margin:0 auto;
  width: 100%;
  max-width:100%;
  padding:20px;
  line-height:1.5;
}

.profile_table th,
.profile_table td {
  border-top: 1px solid #D5E4E2;  
  border-bottom: 1px solid #D5E4E2;  
  padding:15px;
}

.profile_table th {
  background: #EBF2F1;
  text-align: center;
  width: 20%;
  font-weight:bold;
}

@media only screen and (max-width: 800px) {
  .profile_table tr,
  .profile_table th,
  .profile_table td {
    display: block;
    width: auto;
  }
  
  .profile_table tr:first-child {
    border-top: 1px solid #D5E4E2;  
  }
  
  .profile_table th,
  .profile_table td {
    border-top: none;
  }
  .profile_table td {
	text-align:left;
  }
}

/* トップページへ戻る */
.btn-back {
	display: inline-block;
	padding: 7px 20px;
	text-decoration: none;
	color:#D5E4E2;
	border:#D5E4E2 solid 2px;
	background-color:#FFF;
    margin-top:50px; 
}
.btn-back:hover {
  	color:#006532;
  	border:#006532 solid 2px;
  	background-color:#D5E4E2;
	text-decoration: none;
}


/* セクション‐コンタクト */
.sec_contact {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #FFF;
    text-align: center;
    padding-bottom: 70px;
}
.sec_contact h1 {
	text-align:center;
	padding-bottom:50px;
    font-size: 2em;
	font-weight:bold;
	letter-spacing:0.1em;
}
.sec_contact h2 {
    line-height: 1.5;
	text-align:center;
    font-size: 1.2em;
	font-weight:bold;
	letter-spacing:0.1em;
    color: #006532;
    margin-bottom: 20px;
}
.sec_contact p {
	text-align:center;
    font-size: 1em;
    line-height: 1.5;
	letter-spacing:0.1em;
}

.contact-inner {
    width:100%;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #D5E4E2;
    padding: 50px;
}
@media screen and (max-width: 768px){
    .sec_contact h2 {
        font-size: 1.2em;
    }
   .contact-inner {
        width:90%;
        padding: 10px;
    }
    .sec_contact p {
	    text-align:left;
    }
}


/* トップへ戻る */
#page-top {
	margin:0 auto;
	position: fixed;
	bottom:30px;
	right:5px;
}
#page-top a {
	display: block;
	text-decoration: none;
	text-align:center;
	padding: 0.1em 0.3em;
	transition: all .3s;
}
#page-top img:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
	transition: all .3s;
    opacity: 0.7;
}
#page-top img {
	width:80px;
	height:80px;
	margin:10px;
	border-radius:50%;
}
@media screen and (max-width: 768px){
	#page-top {
		position: fixed;
	}
	#page-top a {
		padding: 0;
		display: block;
	}
}
/* フッター */

.footer {
    background-color: #FFF;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top:50px;
    text-align:center;
}
.footer img {
    width: 150px;
    margin: 0 auto;
    padding: 10px;
}
.footer p.subtitle {
    width: auto;
    text-align:center;
    color:#40220F;
    font-weight: bold;
}
.footer p.corp {
    width: auto;
    text-align:center;
    font-weight: bold;
    display: inline-block;
}
.footer p.corp span.right {
	margin-left:1em;
}
.ft-profile {
    width: 100%;
    text-align:center;
    padding: 20px 0;
    line-height: 2em;
    font-size:100%;
}
.copyright {
    background-color: #006532;
	text-align:center;
	width: 100%;
	font-size:12px;
	padding: 10px 0;
	/*margin-top:20px;*/
	color:#FFF;
	/*border-top:#CCC solid 1px;*/
}
@media screen and (min-width: 768px){
    .br-sp {
        display: none;
    }
    
}
@media screen and (max-width: 768px){
    .br-pc {
        display: none;
    }
    
}
@media screen and (max-width: 768px){
	.ft-profile {
	    font-size:90%;
    }
    .footer p.corp {
	    width: 100%;
	    text-align:center;
	    font-weight: bold;
	    display: flex;
	    flex-direction: column; 
    }
    .footer p.corp span.right {
	    margin-left: 0em;
    }
}