@charset "UTF-8";

/* BOX */
header, article, section, aside, footer,
div, dl, dt, dd, ul, ol, li {
  position: relative;
  }
.inner {
  display: block;
  margin: auto;
  width: 940px;
  }
@media screen and (max-width:640px) {
  .inner {
    width: 580px;
    }
}


/* COLUMN */
.col_list {
  clear: both;
  overflow: hidden;
  zoom: 1;
  }
.col_list:after {
  content: " ";
  display: block;
  clear: both;
  height: 1px;
  visibility: hidden;
  }
.col_list > .col {
  display: block;
  float: left;
  margin: 0.5rem 0 0.5rem 2%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
.col01 > .col { width: 100%; }
.col02 > .col { width:  49%; }
.col03 > .col { width:  32%; }
.col04 > .col { width:  23.5%; }
.col01 > .col,
.col02 > .col:nth-child(2n+1),
.col03 > .col:nth-child(3n+1),
.col04 > .col:nth-child(4n+1) {
  clear: left;
  margin-left: 0;
  }
@media screen and (max-width:640px) {
  .col_list > .col {
    margin-right: auto;
    margin-left: auto;
    }
  .col01 > .col,
  .col02 > .col,
  .col03 > .col,
  .col04 > .col { width: 100%; }
}


/* HEADER
==================== */
#header {
  position: relative;
  padding: 3rem 0 2rem;
  }
#header ._logo {
  margin-left: 0;
  width: 13.5rem;
  }
#header .site_search {
  position: absolute;
  right: 0;
  bottom: 0;
  }
#header .lang_list {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 3rem;
  text-align: right;
  }
#header .lang_list .btn {
  display: inline-block;
  padding: 0.5em 2em 0.5em 1em;
  background-color: #00a33e;
  color: #FFF;
  font-size: 1.2rem;
  }
#header .lang_list .btn:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.8em;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em 0 0.4em 0.5em;
  border-color: transparent transparent transparent #FFF;
  }
@media screen and (max-width:640px) {
  #header {
    padding-top: 2rem;
    }
  #header ._logo {
    margin-left: auto;
    margin-bottom: 1rem;
    }
  #header .site_search {
    clear: both;
    position: relative;
    }
  #header .lang_list {
    display: none;
    position: relative;
    margin: 1rem auto;
    }
  #header .lang_list .btn {
    font-size: 1rem;
  }
}


/* GLOBAL NAVI
==================== */
#btn_gnav {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.8rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.2rem;
  background-color: rgba(0,0,0,0.3);
  -webkit-box-shadow: 0.1rem 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
  -moz-box-shadow: 0.1rem 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
  box-shadow: 0.1rem 0.1rem 0.1rem 0 rgba(0,0,0,0.2);
  z-index: 9999;
  }
#btn_gnav > img {
  width: 100%;
  height: auto;
  }
#gnav {
  border-style: solid;
  border-width: 0.1rem 0;
  border-color: #00a33e;
  }
#gnav .gnav_list {
  display: table;
  }
#gnav .gnav_list > li {
  display: table-cell;
  width: 19%;
  border-style: solid;
  border-width: 0 0 0 0.1rem;
  border-color: #00a33e;
  vertical-align: middle;
  }
#gnav .gnav_list > li:last-child {
  width: 24%;
  border-right-width: 0.1rem;
  }
#gnav .gnav_list a {
  display: block;
  padding: 2.5rem 0.5em;
  color: #00a33e;
  font-weight: bold;
  }
@media screen and (max-width:640px) {
  #header + .is_pc {
    position: fixed;
    top: -0.1rem;
    right: 0;
    left: 0;
    z-index: 9998;
    }
  #gnav {
    margin-top: 2rem;
    background-color: rgba(0, 163, 62, 0.9);
    border: none;
    }
  #header + .is_pc > #gnav {
    margin-top: 0;
    background-color: 0 0.1rem 0.2rem 0 rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 0.1rem 0.2rem 0 rgba(0,0,0,0.25);
    -moz-box-shadow:  0 0.1rem 0.2rem 0 rgba(0,0,0,0.25);
    box-shadow: 0 0.1rem 0.2rem 0 rgba(0,0,0,0.25);
    }
  #gnav .gnav_list {
    display: block;
    width: 100%;
    border: none;
    }
  #gnav .gnav_list > li {
    display: block;
    width: auto;
    margin-top: 0.1rem;
    border-top: solid 0.1rem #fff;
    }
  #gnav .gnav_list > li:last-child {
    width: auto;
  }
  #gnav .gnav_list a {
    padding: 1em;
    color: #FFF;
    text-align: left;
    text-indent: 1.2em;
    }
  #header + .is_pc > #gnav .gnav_list a {
    }
  #gnav .gnav_list a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1em;
    margin: auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: url(../images/arrow_transparent.png) center center no-repeat;
    background-size: cover;
    }
}

/* BREADCRUMB
==================== */
.bc {
  text-align: left;
  }
.bc .bc_list {
  display: inline-block;
  margin: 1em auto;
  padding: 0.5em 0;
  border-style: dotted;
  border-color: #ccc;
  border-width: 0 0 0.1rem;
  font-size: 0.75em;
  line-height: 1.25;
  }
.bc .bc_list > li {
  display: inline-block;
  }
.bc .bc_list > li + li:before {
  content: '>';
  display: inline-block;
  margin: auto 0.5em;
  color: #CCC;
  }
.bc .bc_list a {
  color: #666;
  }


/* CATEGORY
==================== */
.category {
  }
.category .category1_title {
  padding: 0.7em 0;
  background-color: #F29300;
  color: #FFF;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  }
.category .category2_title {
  padding: 0.8em 0;
  border-bottom: solid 0.1rem #7FBE26;
  color: #00A33E;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  }



/* CONTENT
==================== */
#content {
  padding-bottom: 30rem;
  text-align: left;
  }
#content .content_body {
  margin: 2rem auto;
  }
#content .content_body .content_main {
  float: left;
  width: 62rem;
  }
#content .content_body .content_sub {
  float: right;
  width: 30rem;
  background-color: #EFEFEF;
}
/* システム改修後要確認 */
#content.unattached .content_body .content_main {
  width: 100%;
  }
#content.unattached .content_body .content_sub {
  display: none;
  }
#content.unattached .content_body .content_main form .caution {
	line-height: 2;
 	color: #FF0000;
}
#content.unattached .content_body .content_main form .caution.bg {
 	color: #FFFFFF;
	background: #FF8A8A;
	margin: 5px 0 0 0;
	padding: 0 10px;
}
@media screen and (max-width:640px) {
  #content {
    padding-bottom: 2rem;
    }
  #content .content_body .content_main {
    float: none;
    width: auto;
    }
  #content .content_body .content_sub {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    background-color: transparent;
    }
}


/* BLOCK */
.block {
  clear: both;
  margin: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  zoom: 1;
  }
.block:after {
  content: " ";
  display: block;
  clear: both;
  height: 1px;
  visibility: hidden;
  }

.block:nth-child(n+2) {
  margin-top: 2rem;
  }

@media screen and (max-width:640px) {
  .block:nth-child(n+2) {
    margin-top: 0;
  }
}

.block_intro,
.block_column {
  padding: 1em;
  border-radius: 0.5rem;
  border: solid 0.1rem #CFE5B2;
  background-color: #F8FBF4;
	margin-top: 4rem;
	margin-bottom: 4rem!important;
  }
.block_menu {
  margin-top: 0 !important;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #FCEFCB;
  }
.block_menu .menu {
  height: 100%;
  padding: 1em;
  }
.block_menu .menu > ._title {
  color: #0F7226;
  font-size: 1.125em;
  line-height: 1.25;
  }
.block_menu .menu > ._text {
  font-weight: normal;
  }
.block_menu .menu ._banner {
  display: block;
  margin: 1rem auto;
  border: solid 0.1rem #ccc;
  }
.block_text,
.block_column {
  line-height: 1.5;
  font-size: 0.875em;
  }
.block_text > h4,
.block_title {
  margin-top: 2rem;
  margin-bottom: 0.5em;
  padding: 0.2em 0;
  border-bottom: dotted 0.1rem #1DA134;
  color: #333;
  }
.block_text .text_img {
  float: right;
  margin-left: 0.5em;
  margin-bottom: 0.5em;
  width: 40%;
  text-align: center;
  }
.block_text dl > dt {
  margin-top: 1em;
  }
.block_text dl > dd {
  margin-left: 1em;
  }
.block_text li {
  margin-top: 0.5em;
  }
.block_text ol {
  list-style: decimal;
  margin-left: 2em;
  }
.block_text ul {
  margin-left: 1em;
  }
.block_text ul > li:before {
  display: inline-block;
  content: '●';
  margin-left: -1em;
  }
.block_column .column_title {
  color: #333;
  font-size: 1.125em;
  }

.block_column em {
  font-weight:bold;
}
.block_image {
  text-align: center;
  }
.block_product {
  margin-bottom: 20px;
  }
  
.block_product iframe {
    width: 100%;
	height: 600px;
}

.block_product.movie2 {
	display: flex;
}
.block_product.movie2 div {
	width: 49%;
}
.block_product.movie2 iframe {
	height: 300px;
}
.block_product.movie2 div:first-child {
	margin-right: 2%;
}

.product > ._title {
  border-top: solid 0.3rem #00A33E;
  padding: 1rem 0;
  color: #00A33E;
  font-weight: bold;
  }
.product > ._image,
.product > ._text,
.product > ._info {
  margin-bottom: 1rem;
  width: 49%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  }
.product > ._image {
  float: right;
  }
.product > ._text,
.product > ._info {
  font-size: 0.875em;
  }

.product > ._info {
  padding: 1rem;
  background-color: #EFEFEF;
  }
@media screen and (max-width:640px) {
  .product > ._image,
  .product > ._text,
  .product > ._info {
    float: none;
    width: auto;
    }
  .block_product iframe {
    width: 100%;
	height: 400px;
  }
	
  .block_product.movie2 {
	display: block;
  }
  .block_product.movie2 div {
	width: 100%;
  }
  .block_product.movie2 iframe {
	height: 400px;
  }
  .block_product.movie2 div:first-child {
	margin-right: 0;
  }
}

.block.block_text a._icn {
  margin-left: 1em;
}
.block.block_text a._icn:before {
  content: '';
  display: inline-block;
  margin-left: -1em;
  margin-right: 0.2em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3em 0 0.3em 0.8em;
  border-color: transparent transparent transparent #f18d00;
}
.block.slider01_wrap li {
  position: relative;
}
.block.slider01_wrap li p {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 20px;
  background:rgba(0,0,0,0.5);
  color: #FFFFFF;
  box-sizing: border-box;
}


/* ARTICLE
==================== */

#content article {
  }
#content .article_title {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5em;
  font-size: 1.125em;
  font-weight: bold;
  }
#content .article_title:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  border: solid 0.5rem #00A33E;
  border-radius: 50%;
  }
#content article.category_index {
  margin-top: 0 !important;
  }
#content article.category_index .article_title {
  display: none;
  }
#content article h2.article_subtitle {
  color: #1EA33E;
  font-size: 1.125em;
  }

#content .block_head + .article_subtitle {
  margin-top: 2rem;
  }
#content article .article_subtitle {
  line-height: 1.25;
  }
#content article h3.article_subtitle {
  margin-top: 3rem;
  /* [disabled]padding: 1rem 0 1rem 1em; */
  /* [disabled]border-style: solid; */
  /* [disabled]border-width: 0.1rem 0; */
  /* [disabled]border-color: #00a33e; */
  /* [disabled]color: #00a33e; */
  padding: 0.5rem 0.5em 0.5rem 1.5em;
  background-color: #00a33e;
  color: #FFF;
  }
#content article h3.article_subtitle:before {
  content: '■';
  display: inline-block;
  text-indent: -1em;
  }
#content article:nth-child(n+2),
#content article > section:nth-child(n+2) {
  /*margin-top: 2rem;*/
  }
  
#content .cassette_tableList01 {
  width:100%;
  font-size:14px;
}
#content .cassette_tableList01 th,
#content .cassette_tableList01 td {
  border:#CCCCCC 1px solid;	 
  padding:5px;
}

#content .cassette_tableList01 th {
  width:100px;
  background:#efefef;
  font-weight:normal;
}
@media screen and (max-width:640px) {
  #content > article {
    background-color: #fff;
    }
}

/* mimiyori data */
.mimiyori_data {
  position: relative;
  padding-top: 16rem;
  color: #666;
  font-size: 1.4rem;
  }
.coop_newsrelease .mimiyori_data {
  padding-top: 0;
  }

.mimiyori_data ._image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  line-height: 0;
  }
.mimiyori_data ._title {
  margin-bottom: 0.5rem;
  color: #00a33e;
  text-align: left;
  }
.mimiyori_data ._tag {
  display: inline-block;
  margin-left: 0.1rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.2rem;
  background-color: #177FC4;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: normal;
  }
@media screen and (max-width:640px) {
  .mimiyori_data {
    padding-top: 0;
    padding-bottom: 1rem;
    padding-left: 13rem;
    }
  .mimiyori_data ._image {
    position: absolute;
    right: auto;
    left: 0;
    width: 12rem;
    }
  .coop_newsrelease .mimiyori_data {
    padding-left: 0;
    }
  .coop_newsrelease .mimiyori_data ._image {
    display: none;
    }
}


/* mimiyori color */
.mimiyori_menu .coop_school { color: #00a2e6; }
.mimiyori_menu .coop_school,
.mimiyori_menu .coop_school ._title:before,
.coop_school .section_title { background-color: #00a2e6; }
.coop_school.mimiyori_section { border-color: #00a2e6; }

.mimiyori_menu .coop_information { color: #eb6da2; }
.mimiyori_menu .coop_information,
.mimiyori_menu .coop_information ._title:before,
.coop_information .section_title { background-color: #eb6da2; }
.coop_information.mimiyori_section { border-color: #eb6da2; }

.mimiyori_menu .coop_event { color: #f18d00; }
.mimiyori_menu .coop_event,
.mimiyori_menu .coop_event ._title:before,
.coop_event .section_title { background-color: #f18d00; }
.coop_event.mimiyori_section { border-color: #f18d00; }

.mimiyori_menu .coop_campaign { color: #7fbe25; }
.mimiyori_menu .coop_campaign,
.mimiyori_menu .coop_campaign ._title:before,
.coop_campaign .section_title { background-color: #7fbe25; }
.coop_campaign.mimiyori_section { border-color: #7fbe25; }

.mimiyori_menu .coop_newsrelease { color: #786bae; }
.mimiyori_menu .coop_newsrelease,
.mimiyori_menu .coop_newsrelease ._title:before,
.coop_newsrelease .section_title { background-color: #786bae; }
.coop_newsrelease.mimiyori_section { border-color: #786bae; }
@media screen and (max-width:640px) {
  .mimiyori_menu .coop_school,
  .mimiyori_menu .coop_information,
  .mimiyori_menu .coop_event,
  .mimiyori_menu .coop_campaign,
  .mimiyori_menu .coop_newsrelease { color: #FFF; }
}




/* FOOTER
==================== */
#footer {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  }
#footer ._logo {
  width: 10rem;
  }
#footer .footer_visual {
  }
#footer .footer_menu {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  background-color: #00a33e;
  }
#footer .menu_category {
  display: table;
  }
#footer .menu_category > li {
  display: table-cell;
  vertical-align: middle;
  }
#footer .menu_category > li:first-child {
  text-align: left;
width: 60%;
  }
#footer .menu_category > li:last-child {
  text-align: center;
  }

#footer .footer_menu .menu_list {
  font-size: 1.3rem;
    line-height: 1.5;
  }
#footer .footer_menu .menu_list > li {
  display: inline-block;
  padding-right: 0.75em;
  padding-left: 0.75em;
  border-style: solid;
  border-color: #FFF;
  border-right-width: 0.1rem;
    margin-bottom: 0.5rem;
  }
#footer .footer_menu .menu_list > li:first-child {
  border-left-width: 0.1rem;
  }
#footer .footer_menu .menu_list > li:nth-child(5) {
    border-left-width: 0.1rem;
}
#footer .footer_menu .menu_list a {
  display: block;
  color: #FFF;
  font-weight: bold;
  }

#footer .footer_menu .connect_list {
  font-size: 1.2rem;
  min-width: 25em;
  }
#footer .footer_menu .connect_list::after {
  content: ' ';
  display: block;
  clear: both;
}
#footer .footer_menu .connect_list > li {
  float: left;
  width: 38%;
    margin: 1%;
}
#footer .footer_menu .connect_list > li + li {
 /* margin-left: 2%;*/
}
#footer .footer_menu .connect_list　.btn {
  padding-right: 1.5em;
  padding-left: 1.5em;
  min-width: 8.5em;
}
@media only screen and (max-width:640px) {
  #footer .footer_menu .connect_list > li {
  width: 48%;
}
    #footer .menu_category > li:first-child{
        width: 100%;
    }
}



/* foot_message */
#footer .foot_message {
  display: inline-block;
  margin-bottom: 1em;
  color: #666666;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: 0.1em;
  }
#footer .footer_copyright {
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 10rem;
  }
#footer .copyright {
  margin: 1em auto;
  color: #666;
  font-size: 1.2rem;
  }
@media screen and (max-width:640px) {
  #footer {
    position: relative;
    }
  #footer .footer_menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: transparent;
    }
  #footer .menu_category > li {
    display: block;
    }
  #footer .menu_category > li:first-child,
  #footer .menu_category > li:last-child {
    text-align: center;
    }
  #footer .footer_menu .menu_list > li {
    border-color: #666;
    margin: 0.5rem 0;
    padding: 0 0.5rem;
    }
  #footer .footer_menu .menu_list a {
    color: #666;
    }
  #footer .footer_menu .menu_list > li:first-child {
    border-left-width: 0;
    }
    #footer .footer_menu .menu_list > li:nth-child(5) {
        border-left-width: 0;
    }
  #footer .footer_menu .menu_list > li:last-child {
    border-right-width: 0;
    }
  #footer .footer_copyright {
    padding-top: 0;
    }
}



/* PAGETOP
==================== */
#pagetop {
  position: fixed;
  right: 5%;
  bottom: -2em;
  height: 2em;
  line-height: 1;
  opacity: 0;
  transition: all 0.4s;
  z-index: 9999;
  }
#pagetop.-active {
  opacity: 0.8;
  bottom: -0.5rem;
  }
#pagetop:hover {
  opacity: 1;
  }
#pagetop .btn_pagetop {
  padding-top: 0.5em;
  background-color: #EF8D18;
  color: #FFF;
  }
#pagetop .btn_pagetop:before {
  content: '';
  display: inline-block;
  margin-right: 0.2em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.4em 0.8em 0.4em;
  border-color: transparent transparent #FFF transparent;
  vertical-align: middle;
  }
@media screen and (max-width:640px) {
}



/* NOT FOUND
==================== */

.notfound {
  padding: 3rem 0;
  text-align: center;
  }
.notfound .block_intro {
  padding: 3rem 0;
  }
.notfound ._title {
  color: #F29300;
  font-size: 1.125em;
  }
.notfound ._text {
  margin: 1em auto;
  text-align: center;
  }
.notfound .link_home {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  }
.notfound .link_home:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
  background: #00A33E url(../images/arrow_transparent.png) center center no-repeat;
  background-size: contain;
  line-height: 0;
  }
