/* CSS Document */
/***************************************************************************
general
****************************************************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* clearfix */
.clearfix:after{
	content: " ";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
	
.clearfix{
	zoom: 1;
}

body, html { height: 100%; }

html {
	overflow-y: scroll;
    font-size: 62.5%;
}
body {
	position: relative;
    font-family: "dnp-shuei-mgothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
	letter-spacing: 2px;
	background-color: #FFF;
	color: #000;
    transition: 0.5s;
}

a{transition: 0.5s;}
a:link { color: #333; text-decoration: none; cursor: pointer; }
a:active { color: #666; text-decoration: underline; }
a:visited { color: #333; text-decoration: none; }
a:hover { color: #999; text-decoration: none; opacity: 0.5;transition: 0.5s;}



/* SP start */
@media screen and (max-width: 480px) { 

body {
    min-width: 100%;
    position: relative;
    overflow: auto;
}

.wrap{
    min-height: 100%;
    margin-bottom: -30px; /* フッターの高さと同じ値 */
    margin-top: 5rem;
}

/***************************************************************************
top COMMON
****************************************************************************/

.ttl_h2{
    margin-bottom: 40px;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}
.ttl_h3{
    margin-bottom: 24px;
    font-weight: 800;
    font-size: 2rem;
    text-align: left;
    line-height: 1.4;
    color: #7b262b;
}

.moreLink{
    width: 50%;
    margin: 40px auto 24px;
}
.moreLink a{
    display: block;
    padding: 4px 0;
    border: solid #7b262b 1px;
    border-radius: 25px;
    text-align: center;
    color: #7b262b;
    font-weight: 800;
}

.backLink{
    width: 80%;
    margin: 24px auto;
    padding: 40px 0;
    border-top: dashed 1px #ccc;
}
.backLink a{
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 8px 16px;
    background: #7b262b;
    border-radius: 25px;
    text-align: center;
    color: #fff;
}

.attention{
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    color: #f00;
    font-weight: 400;
}

/***************************************************************************
header
****************************************************************************/
.gHead{
    width: 100%;
    height: 5rem;
    padding: 10px 0;
    /*border-bottom:solid 1px #eee;*/
    background: #fff;
    position: fixed;
    z-index: 1;
    box-sizing: border-box;
}
.gHead::after{
    content: '';
    display: inline-block;
    width: 100%;
    height: 50px;
    background: url(../img/head_bg.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
}
.gLogo{
    width: 25%;
    margin: 0 0 0 8px;
    line-height: 0;
    display: flex;
    
}
.gLogo a{
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 0;
}
.gLogo a img{
    width: 100%;
}

/* --- Hamburger Button --- */
.hamburger {
  width: 30px;
  height: 25px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.bar {
  height: 6px;
  background: #333;
  border-radius: 50px;
  transition: 0.4s;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    transition: opacity 0.8s ease;
    z-index: 1000;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.menu__list {
  margin: 20px 0;
}

.menu__list a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
}

body.noscroll {
  overflow: hidden;
}

/* --- Hamburger Button END --- */

.snsBoxMenu{
    display: flex;
    column-gap: 12px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    padding: 12px 0;
    border-top: dashed 1px #eee;
    border-bottom: dashed 1px #eee;
}
.snsBoxMenu__item{
    width: 100%;
    
}
.snsBoxMenu__item--square{
    width: 30%;
}

.snsBoxMenu__item a{
    display: block;
}
.snsBoxMenu__item a img {
  display: block;
  width: 100%;
  height: auto;
}



/***************************************************************************
about
****************************************************************************/

.about{
    margin-bottom: 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.mainvisual{
    width: 100%;
}
.mainvisual img{
    width: 100%;
}

.aboutBox{
    margin: -100px 20px 8px;
    text-align: center;
}
.aboutBox dt{
    width: 50%;
    margin: 0 auto;
}
.aboutBox dt img{
    width: 100%;
}
.aboutBox dd{
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 3rem;
    color: #7b262b;
}
.aboutBox dd span{
    display: block;
    line-height: 1;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 2rem;
    color: #000;
}
.aboutIntro{
    width: 70%;
    margin: 0 auto 32px;
}


.snsBox{
    display: flex;
    column-gap: 12px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    padding: 12px 0;
    border-top: dashed 1px #eee;
    border-bottom: dashed 1px #eee;
}
.snsBox__item{
    width: 100%;
    
}
.snsBox__item--square{
    width: 30%;
}

.snsBox__item a{
    display: block;
}
.snsBox__item a img {
  display: block;
  width: 100%;
  height: auto;
}

/***************************************************************************
NEWS
****************************************************************************/

.news{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}

.newsList__item{
    padding: 0 0 8px;
    margin-bottom: 12px;
    border-bottom: dashed 1px #ccc;
}
.newsList__item time{
    display: block;
    font-size: 1.2rem;
}
.newsList__item a{
    color: #7b262b;
}

/***************************************************************************
backnumber
****************************************************************************/
/* TOP */
.topBn{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.topBnList{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.topBnList__item{
    width: 30%;
    margin-bottom: 16px;
}
.topBnList__item a{
    
}
.topBnList__item a img{
    width: 100%;
    
}
/* list page */
.bnListBox{
    width: 80%;
    margin: 0 auto;
}
.bnList{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.bnList__item{
    width: 30%;
    margin-bottom: 24px;
}
.bnList__item a img{
    width: 100%;
}

/* contents page */

.SubBnBox{
    width: 80%;
    margin: 0 auto;
}
.SubBnBox .ttl_h3 span{
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    color: #666;
}
.SubBnBox__cover{
    width: 100%;
    margin-bottom: 24px;
}
.SubBnBox__cover img{
    width: 100%;
}

.SubBnInfo{}

.SubBnInfo__list__contents{
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #666;
    text-align: center;
}
.SubBnInfo__list__contents dt{
    color: #7b262b;
}
.SubBnInfo__list__contents dd{
    color: #666;
}

/***************************************************************************
illust
****************************************************************************/

.illust{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.illustList{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.illustList__item{
    width: 46%;
    margin-bottom: 32px;
}
.illustList__item a{
    
}
.illustList__item a img{
    width: 100%;
    
}


/* list page */
.illustListBox{
    width: 80%;
    margin: 0 auto;
}
.illustList{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.illustList__item{
    width: 45%;
    margin-bottom: 24px;
}
.illustList__item a img{
    width: 100%;
    height: 100%;
}

/* contents page */

.illustBox{
    width: 80%;
    margin: 0 auto;
}
.illustBox .ttl_h3 span{
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    color: #666;
}
.illustBox__img{
    width: 100%;
    margin-bottom: 24px;
}
.illustBox__img img{
    width: 100%;
}

.illustInfo{}

.illustInfo__list__contents{
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #666;
    text-align: center;
}
.illustInfo__list__contents dt{
    color: #7b262b;
}
.illustInfo__list__contents dd{
    color: #666;
}







/***************************************************************************
categoryList
****************************************************************************/
.categoryList{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 80px;
}


/***************************************************************************
pagenation
****************************************************************************/

.pagination {
    margin: 40px 0 0;
}
.nav-links {
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #7b262b;
    text-align:center;
    line-height: 25px;
    letter-spacing: 0;
    color: #7b262b;
}

.pagination .current {
    background: #7b262b;
    color: #fff;
}
.pagination .prev,
.pagination .next {
    background: transparent;
    box-shadow: none;
    color: #7b262b;
}
.pagination .dots {
    background: transparent;
    box-shadow: none;
    border: none;
}


/***************************************************************************
single
****************************************************************************/
.article{
    width: 80%;
    margin: 0 auto;
}
.article-date{
    display: block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #666;
}
.article-main{
    margin-bottom: 40px;
}
.article-main p{
    margin-bottom: 32px;
    line-height: 2;
}

/***************************************************************************
form
****************************************************************************/
.contact{
    width: 80%;
    margin: 0 auto 80px;
}

.formBox{
    margin-bottom: 100px;
}
.formBox__item{
    margin-bottom: 24px;
}

.formBox__item dt{
    font-weight: normal;
}

.wpcf7-form-control-wrap{
    display: block;
    margin-bottom: 16px;
}

.wpcf7-text{
    width: 100%;
    padding: 8px;
    border: solid 1px #ccc;
    border-radius: 10px;
}
.wpcf7-textarea{
    width: 100%;
    padding: 8px;
    height: 120px;
    padding: 4px;
    border: solid 1px #ccc;
    border-radius: 10px;
}
/*select,
::picker(select) {
  appearance: base-select;
  color: #999;
}
*/
select.wpcf7-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px;
    border: solid 1px #ccc;
    border-radius: 10px;
    cursor: pointer;
}

/* select.wpcf7-select::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    content: '';

   border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: calc(tan(60deg) * 30px) solid #000;

}*/


.wpcf7-submit{
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 4px 0;
    background: #7b262b;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    font-weight: 800;
}
/***************************************************************************
footer
****************************************************************************/

.gFoot{
    background: #ccc;
    color: #fff;
    text-align: center;
    line-height: 30px;
}
.gFoot small{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    text-align: center
}

.pc{display: none;}


/*
    sp END
*/
}


















@media screen and (min-width: 481px) { /* PC */

body {
    width: 100%;
    position: relative;
    overflow: auto;
}

.wrap{
    width: 1000px;
    margin: 80px auto -30px;
    min-height: 100%;
}

/***************************************************************************
top COMMON
****************************************************************************/

.ttl_h2{
    margin-bottom: 56px;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}
.ttl_h3{
    margin-bottom: 24px;
    font-weight: 800;
    font-size: 2rem;
    text-align: left;
    line-height: 1.4;
    color: #7b262b;
}

.moreLink{
    width: 30%;
    margin: 40px auto 24px;
}
.moreLink a{
    display: block;
    padding: 4px 0;
    border: solid #7b262b 1px;
    border-radius: 25px;
    text-align: center;
    color: #7b262b;
    font-weight: 800;
}

.backLink{
    width: 30%;
    margin: 24px auto;
    padding: 40px 0;
    border-top: dashed 1px #ccc;
}
.backLink a{
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 8px 16px;
    background: #7b262b;
    border-radius: 25px;
    text-align: center;
    color: #fff;
}

.attention{
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    color: #f00;
    font-weight: 400;
}

/***************************************************************************
header
****************************************************************************/
.gHead{
    width: 100%;
    background: #fff;
    position: fixed;
}
.gHeadWrap{
    width: 1000px;
    margin: 0 auto;

}
.gLogo{
    width: 120px;
    margin: 8px 0 8px 8px;
    float: left;
    line-height: 0;
    box-sizing: border-box;
}
.gLogo a{
    display: block;
    width: 100%;
    box-sizing: border-box;
    line-height: 0;
}
.gLogo a img{
    width: 100%;
}

.menu {
    display: flex;
    column-gap: 40px;
    float: right;
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.menu__list {
    margin: 20px 0;
}

.menu__list a {
    text-decoration: none;
    font-size: 1.5rem;
    color: #333;
}



.hamburger{
    display: none;
}




.snsBox-head{
    display: none;
    column-gap: 12px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    padding: 12px 0;
    border-top: dashed 1px #eee;
    border-bottom: dashed 1px #eee;
}
.snsBox-head__item{
    width: 100%;
    
}
.snsBox-head__item--square{
    width: 30%;
}

.snsBox-head__item a{
    display: block;
}
.snsBox-head__item a img {
  display: block;
  width: 100%;
  height: auto;
}


/***************************************************************************
about
****************************************************************************/

.about{
    margin-bottom: 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.mainvisual{
    width: 100%;
}
.mainvisual img{
    width: 100%;
}

.aboutBox{
    margin: -160px 20px 8px;
    text-align: center;
}
.aboutBox dt{
    width: 50%;
    margin: 0 auto;
}
.aboutBox dd{
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 3rem;
    color: #7b262b;
}
.aboutBox dd span{
    display: block;
    line-height: 1;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 2rem;
    color: #000;
}
.aboutIntro{
    width: 50%;
    margin: 0 auto 32px;
}

.snsBoxMenu{
    display: none;
}
.snsBox{
    display: flex;
    column-gap: 24px;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
    width: 380px;
    margin: 0 auto;
    padding: 12px 0;
    border-top: dashed 1px #eee;
    border-bottom: dashed 1px #eee;
}
.snsBox__item{
    width: 100%;
    
}
.snsBox__item--square{
    width: 30%;
}

.snsBox__item a{
    display: block;
}
.snsBox__item a img {
  display: block;
  width: 100%;
  height: auto;
}

/***************************************************************************
NEWS
****************************************************************************/

.news{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.newsList{
    width: 80%;
    margin: 0 auto;
}
.newsList__item{
    padding: 0 0 8px;
    margin-bottom: 12px;
    border-bottom: dashed 1px #ccc;
}
.newsList__item time{
    display: block;
    font-size: 1.2rem;
}
.newsList__item a{
    color: #7b262b;
}


/***************************************************************************
backnumber
****************************************************************************/
/* TOP */
.topBn{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.topBnList{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
.topBnList__item{
    width: 30%;
    margin-bottom: 16px;
}
.topBnList__item a{
    
}
.topBnList__item a img{
    width: 100%;
    
}

/* list page */
.bnListBox{
    width: 100%;
    margin: 0 auto;
}
.bnList{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.bnList__item{
    width: 20%;
    margin-bottom: 24px;
}
.bnList__item a img{
    width: 100%;
}

/* contents page */

.SubBnBox{
    width: 80%;
    margin: 0 auto;
}
.SubBnBox .ttl_h3 span{
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    color: #666;
}
.SubBnBox__cover{
    width: 40%;
    float: left;
    margin-bottom: 24px;
}
.SubBnBox__cover img{
    width: 100%;
}

.SubBnInfo{
    float: right;
    width: 55%;
}

.SubBnInfo__list__contents{
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #666;
}
.SubBnInfo__list__contents dt{
    color: #7b262b;
}
.SubBnInfo__list__contents dd{
    color: #666;
}

/***************************************************************************
illust
****************************************************************************/

.illust{
    width: 100%;
    margin: 0 auto 70px;
    padding-bottom: 150px;
    background: url( "../img/usajimasan.png") no-repeat bottom 0px center;
}
.illustList{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 40px;
}

.illustList__item{
    width: 21%;
    margin-bottom: 32px;
}
.illustList__item a{
    
}
.illustList__item a img{
    width: 100%;
    
}


/* list page */
.illustListBox{
    width: 100%;
    margin: 0 auto;
}
.illustList{}
.illustList__item{
    width: 21%;
    margin-bottom: 24px;
}
.illustList__item a img{
    width: 100%;
    height: 100%;
}

/* contents page */

.illustBox{
    width: 80%;
    margin: 0 auto;
}
.illustBox .ttl_h3 span{
    display: block;
    margin-top: 8px;
    font-size: 1.4rem;
    color: #666;
}
.illustBox__cover{
    width: 100%;
    margin-bottom: 24px;
}
.illustBox__cover img{
    width: 100%;
}

.illustBox__img{
    margin-bottom: 40px;
}
.illustBox__img img{
    width: 100%;
}
.illustInfo{
}


.illustInfo__list__contents{
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #666;
    text-align: center;
}
.illustInfo__list__contents dt{
    color: #7b262b;
}
.illustInfo__list__contents dd{
    color: #666;
}







/***************************************************************************
categoryList
****************************************************************************/
.categoryList{
    width: 80%;
    margin: 0 auto 70px;
    padding-bottom: 80px;
}


/***************************************************************************
pagenation
****************************************************************************/

.pagination {
    margin: 40px 0 0;
}
.nav-links {
    display: flex;
    justify-content: center;
}
.pagination .page-numbers {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #7b262b;
    text-align:center;
    line-height: 25px;
    letter-spacing: 0;
    color: #7b262b;
}

.pagination .current {
    background: #7b262b;
    color: #fff;
}
.pagination .prev,
.pagination .next {
    background: transparent;
    box-shadow: none;
    color: #7b262b;
}
.pagination .dots {
    background: transparent;
    box-shadow: none;
    border: none;
}


/***************************************************************************
single
****************************************************************************/
.article{
    width: 80%;
    margin: 0 auto;
}
.article-date{
    display: block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #666;
}
.article-main{
    margin-bottom: 40px;
}
.article-main p{
    margin-bottom: 32px;
    line-height: 2;
}

/***************************************************************************
form
****************************************************************************/
.contact{
    width: 80%;
    margin: 0 auto 80px;
}
.contact p{
    margin-bottom: 24px;
}
.wpcf7-form{
    width: 70%;
    margin: 0 auto;
}
.wpcf7-form-control-wrap{
    display: block;
    margin-bottom: 16px;
}
.wpcf7-text{
    width: 100%;
    padding: 8px;
    border: solid 1px #ccc;
    border-radius: 10px;
}
.wpcf7-textarea{
    width: 100%;
    padding: 8px;
    height: 120px;
    border: solid 1px #ccc;
    border-radius: 10px;
}
.wpcf7-submit{
    display: block;
    width: 30%;
    margin: 0 auto;
    padding: 8px 0;
    background: #7b262b;
    border-radius: 25px;
    text-align: center;
    color: #fff;
    font-weight: 800;
}
/*select,
::picker(select) {
  appearance: base-select;
  color: #999;
}
*/
select.wpcf7-select {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px;
    border: solid 1px #ccc;
    border-radius: 10px;
    cursor: pointer;
}

/*select.wpcf7-select::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 6px;
    height: 6px;
    content: '';

   border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: calc(tan(60deg) * 30px) solid #000;

}
*/
/***************************************************************************
footer
****************************************************************************/

.gFoot{
    background: #ccc;
    color: #fff;
    text-align: center;
    line-height: 30px;
}
.gFoot small{
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1rem;
    text-align: center
}



























.sp{display: none;}

}


/***************************************************************************
adjustment(common)
****************************************************************************/
.mt40{margin-top:40px;}

.pt40{padding-top:40px;}

.red{color:red;}