@charset "utf-8";
/*==========================================*/
/*　　　　　　　　　　基本レイアウト　　　　　　　　*/
/*==========================================*/
html {
  font-size: 62.5%;
}
body {
  font-family: Helvetica, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, "sans-serif";
  background: #fff;
  color: #3e3e3e;
  font-size: 1.6rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}

h1, h2 {
  color: #6b5d40;
  font-size: 3.4rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
h3 {
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
}
h4 {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #container {
    margin: 0 20px;
    padding: 0;
  }
  h1, h2 {
    font-size: 2.6rem;
  }
  h3 {
    font-size: 2rem;
  }
}
/**------------------------------------------------------------
   HEADERーINDEX
　-----------------------------------------------------------**/
#header {
  position: fixed;
  height: 100px;
  width: 100%;
  padding: 20px 0 0 20px;
  z-index: 10;
  display: flex;
}
#header.change-color {
  background: #FFFFFF;
  transition: 0.3s;
}
#header .title {
  width: 400px;
  height: 90px;
  display: inline-block;
  padding: 0px 10px;
  line-height: 1.3;
}
#header .title h1 {
  font-size: 2em;
}
span {
  display: block;
  font-size: 0.8rem;
  color: #555;
  font-family: Tahoma, Geneva, "sans-serif"
}
.shadow {
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.75), -1px -1px 1px rgba(255, 255, 255, 0.75), -1px 1px 1px rgba(255, 255, 255, 0.75), 1px -1px 1px rgba(255, 255, 255, 0.75);
}
@media screen and (max-width: 767px) {
  #header {
    padding: 0px 0 0 20px;
  }
  #header .title {
    width: 70%;
  }
  #header .title h1 {
    font-size: 1.5em;
  }
}
@media screen and (min-width:768px) and (max-width:999px) {
  #header {
    padding: 5px 0 0 20px;
  }
  #header .title h1 {
    font-size: 1.5em;
  }
}
/*--sub page--*/
#header_sub {
  position: fixed;
  background: #fff;
  height: 120px;
  width: 100%;
  z-index: 10;
  border-bottom: #0dd0d0 16px solid;
}
.header_sub_logo {
  position: absolute;
  z-index: 10;
  background-image: url(../images/logo_s.png);
  background-position: left center;
  background-size: 70px 70px;
  background-repeat: no-repeat;
  height: 100px;
  margin: 0px 0px 0px 40px;
  padding-left: 80px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.header_sub_logo h1, a {
  line-height: 1.6;
  font-size: 1.8rem;
  color: #6b5d40;
  text-decoration: none;
}
.header_sub_logo h1, a > span {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width:767px) {
  #header {
    height: 100px;
  }
  #header_sub {
    height: 100px;
  }
  .header_sub_logo {
    background-size: 45px 45px;
    height: 60px;
    margin: 0px 0px 0px 10px;
    padding-left: 55px;
  }
}
/**------------------------------------------------------------
   MAIN VISUAL
　-----------------------------------------------------------**/
#mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  z-index: -10;
}
.mv-wrapper {
  width: 100%;
  height: 850px;
  background-image: url("../images/main-bg.webp");
  background-size: cover;
  background-position: 0 0;
  animation-name: slide_img;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes slide_img {
  0% {
    left: 0;
  }
  100% {
    background-position: right 0px;
  }
}
.mv-wrapper_child {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 700px;
}
.mv-wrapper_child_inner h2 {
  position: absolute;
  width: 500px;
  z-index: 100;
  display: block;
  margin: 0 auto;
  color: #6b5d40;
  text-align: center;
  font-size: 2.4em;
  font-weight: 400;
  top: 280px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mv-wrapper_child_inner h3 {
  font-size: 1.25em;
  width: 500px;
  font-weight: 400;
  color: #555;
  position: absolute;
  z-index: 100;
  display: block;
  top: 500px;
  left: 50%;
  padding-left: 30px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (min-width:768px) and (max-width:999px) {
  .mv-wrapper {
    width: 100%;
    height: 700px;
    background-image: url("../images/main-bg.webp");
  }
  .mv-wrapper_child {
    padding: 0rem 0;
    top: 100px;
    width: 80%;
  }
  .mv-wrapper_child_inner h2 {
    width: 80%;
    font-size: 2.3em;
    top: 240px;
  }
  .mv-wrapper_child_inner h3 {
    font-size: 1em;
    width: 75%;
    letter-spacing: 0;
    top: 430px;
    padding-left: 20px;
  }
}
@media screen and (max-width:767px) {
  .mv-wrapper {
    height: 400px;
    background-image: url("../images/main-bg_sp.jpg");
  }
  .mv-wrapper_child {
    top: 80px;
    width: 95%;
  }
  .mv-wrapper_child_inner h2 {
    width: 120%;
    font-size: 2em;
    top: -50px;
    background: rgba(255, 255, 255, 0.85);
  }
  .mv-wrapper_child_inner h3 {
    font-size: 0.9em;
	width: 70%;
    padding-left: 15px;
    letter-spacing: 0;
	line-height: 180%;
    top: 260px;
  }
}
@media screen and (max-width:320px) {
  .mv-wrapper_child_inner h3 {
    font-size: 0.85em;
	width: 75%;
    padding-left: 15px;
    letter-spacing: 0;
	line-height: 150%;
    top: 230px;
  }
}
/**------------------------------------------------------------
   SECTIONING
　-----------------------------------------------------------**/
/*-- INDEX menu--*/
#index_menu {
  width: 100%;
  margin-top: -550px;
  padding-bottom: 100px;
}
.index_menu_inner {
  display: block;
  width: 100%;
  background: url("../images/index_main_bg.png")repeat-x;
}
/*-- INDEX news --*/
#section_news_title h2 {
  padding-top: 150px;
  color: #0dd0d0;
  font-size: 3.6rem;
  letter-spacing: 1.8rem;
  text-align: center;
}
#section_news_title h2 span {
  font-size: 1rem;
  display: block;
  width: 190px;
  padding: 1px;
  background: #5DC5C9;
  color: #fff;
  font-weight: 600;
  margin: 0 auto;
  letter-spacing: 1rem;
}
.section_news_inner {
  width: 100%;
}
.section_news_inner h2 {
  text-align: center;
  padding: 30px 10px 50px 0px;
}
.section_news_inner h2:before {
  margin-right: 10px;
  content: '';
  display: inline-block;
  width: 35px;
  height: 28px;
  background-image: url("../images/info_icon@2x.png");
  background-size: contain;
  vertical-align: middle;
  margin-bottom: 3px;
}
.section_news_inner_box {
  width: 100%;
  border: 1px solid #6b5d40;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  height: 450px;
  margin-bottom: 50px;
}
.inlineFrame {
  width: 100%;
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  border: none;
  padding: 40px;
}
.news-main {
  width: 100%;
  padding-top: 120px;
  height: 80px;
  background: url("../images/main.jpg") no-repeat center;
  background-size: cover;
}
@media screen and (min-width:768px) and (max-width:999px) {
  #index_menu {
    width: 100%;
    margin-top: -360px;
    padding-bottom: 100px;
  }
  .index_menu_inner {
    display: block;
    width: 100%;
    background: url("../images/index_main_bg.png")repeat-x;
  }
}
@media screen and (max-width:767px) {
  #section_news {
    margin-top: 350px
  }
  #section_news_title h2 {
    padding-top: 150px;
    font-size: 3.0rem;
  }
  #section_news_title h2 span {
    font-size: 1.2rem;
  }
  .section_news_inner h2 {
    text-align: center;
    padding: 30px 10px 50px 0px;
  }
  .section_news_inner h2:before {
    margin-right: 0;
    width: 26px;
    height: 24px;
  }
  .section_news_inner_box {
    width: 100%;
    border: 1px solid #6b5d40;
    background-color: #fff;
    display: block;
    margin: 0 auto;
    height: 580px;
    margin-bottom: 50px;
  }
  .inlineFrame {
    width: 100%;
    height: 570px;
    overflow-y: scroll;
    overflow-x: hidden;
    border: none;
    padding: 40px;
  }
  .news-main {
    width: 100%;
    padding-top: 120px;
    height: 80px;
    background: url("../images/main.jpg") no-repeat center;
    background-size: cover;
  }
  .news-main:before {
    background-position: top center;
    background-size: auto 90%;
  }
  .inlineFrame {
    height: 600px;
    padding: 0px;
  }
}
/* facebook */
#fb_pr {
  margin-top: 100px;
}
.fb_pr_inner {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.fb_pr_inner img {
  width: 40%;
  margin: 0 auto;
  display: block;
}
.fb_pr_inner iframe {
  padding-top: 20px;
  display: block;
  margin: 0 auto;
}
/**------------------------------------------------------------
   SUB PAGE HEADER VISUAL
　-----------------------------------------------------------**/
.header_sub_bg_information {
  background: url("../images/header_sub_bg_information.jpg") no-repeat center;
  background-size: cover;
  height: 650px;
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.header_sub_bg_information::after {
  background: url("../images/curve.svg");
  bottom: 0;
  content: '';
  height: 400px;
  position: absolute;
  width: 100%;
}
.header_sub_bg_explanation {
  background: url("../images/header_sub_bg_explanation.webp") no-repeat center;
  background-size: cover;
  height: 650px;
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.header_sub_bg_explanation::after {
  background: url("../images/curve.svg");
  bottom: 0;
  content: '';
  height: 400px;
  position: absolute;
  width: 100%;
}
.header_sub_bg_schedule {
  background: url("../images/header_sub_bg_schedule.jpg") no-repeat center;
  background-size: cover;
  height: 650px;
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.header_sub_bg_schedule::after {
  background: url("../images/curve.svg");
  bottom: 0;
  content: '';
  height: 400px;
  position: absolute;
  width: 100%;
}
.header_sub_bg_meeting {
  background: url("../images/header_sub_bg_meeting.jpg") no-repeat center;
  background-size: cover;
  height: 650px;
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.header_sub_bg_meeting::after {
  background: url("../images/curve.svg");
  bottom: 0;
  content: '';
  height: 400px;
  position: absolute;
  width: 100%;
}
.header_sub_bg_profile {
  background: url("../images/header_sub_bg_profile.webp") no-repeat center;
  background-size: cover;
  height: 650px;
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
}
.header_sub_bg_profile::after {
  background: url("../images/curve.svg");
  bottom: 0;
  content: '';
  height: 400px;
  position: absolute;
  width: 100%;
}
.header_sub_bg_tips::after {
  background-size: 100% 100%;
}
/*firefoxに適応するtips*/
@-moz-document url-prefix() {
  .header_sub_bg_tips::after {
    background-size: 100% 100%;
  }
}
.header_sub_bg_inner {
  width: 50%;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.85);
  padding-top: 40px;
  margin-top: 20px
}
.header_sub_bg_inner img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width:767px) {
  .header_sub_bg_information {
    height: 420px;
  }
  .header_sub_bg_information::after {
    background: url("../images/curve_sp.svg");
    height: 150px;
  }
  .header_sub_bg_explanation {
    height: 420px;
  }
  .header_sub_bg_explanation::after {
    background: url("../images/curve_sp.svg");
    height: 150px;
  }
  .header_sub_bg_schedule {
    height: 420px;
  }
  .header_sub_bg_schedule::after {
    background: url("../images/curve_sp.svg");
    height: 150px;
  }
  .header_sub_bg_meeting {
    height: 420px;
  }
  .header_sub_bg_meeting::after {
    background: url("../images/curve_sp.svg");
    height: 150px;
  }
  .header_sub_bg_profile {
    height: 420px;
  }
  .header_sub_bg_profile::after {
    background: url("../images/curve_sp.svg");
    height: 150px;
  }
  .header_sub_bg_inner {
    width: 80%;
    height: 100px;
    padding-top: 15px;
    margin-top: 0px
  }
  .header_sub_bg_inner img {
    width: 80%;
  }
}
@media screen and (min-width:768px) and (max-width:999px) {
  .header_sub_bg_inner {
    width: 75%;
    height: 150px;
    padding-top: 25px;
    margin-top: 0px
  }
  .header_sub_bg_inner img {
    width: 70%;
  }
}
/**------------------------------------------------------------
   SUB-PAGE-MAIN
　-----------------------------------------------------------**/
/*--　サブページ共通　--*/
.section_inner {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  clear: both !important
}
.section_inner h2 {
  text-align: center;
  padding: 30px 10px 50px 0px; /*内側の余白*/
}
/*--　県民の皆様へ　--*/
.explanation_wrap_box {
  margin: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/image17.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain
}
.explanation_wrap_box2 {
  margin: 0;
  width: 100%;
  height: auto;
  background-image: url("../images/explanation_wrap_bg02.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain
}
#explanation_wrap h3 {
  padding: 0em .5em;
  background: transparent;
  border-left: solid 8px #ff995a;
  margin-bottom: 20px;
}
#explanation_wrap blockquote {
  padding: 0.5em 1em;
  margin: 2em 0;
  color: #232323;
  background: #fff;
  border-left: solid 10px #ff995a;
  border-right: solid 1px #ff995a;
  border-top: solid 1px #ff995a;
  border-bottom: solid 1px #ff995a;
}
#explanation_wrap strong {
  color: #F97E32;
  font-size: 1, 85rem
}
#explanation_wrap ol {
  counter-reset: list;
  list-style-type: none;
  padding: 1.5em;
}
#explanation_wrap ol li {
  position: relative;
  padding: 7px 5px 7px 40px;
  margin: 2px 0 10px 0px;
  font-weight: bold;
  font-size: 14px;
  border-bottom: dashed 1px #F97E32;
}
#explanation_wrap ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: #F97E32;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#explanation_wrap .img_center80 {
  display: block;
  max-width: 50%;
  margin: 0 auto;
  padding: 20px 0
}
.explanation_ill_name {
  padding: .1em 1em;
  background: #ff995a;
  margin-bottom: 40px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
}
.explanation_ill_menu_pt {
  margin-top: -100px;
}
@media screen and (max-width: 768px) {
  .explanation_ill_menu_pt {
    margin-top: 10px;
    padding-bottom: 50px
  }
  .explanation_ill_menu { 
	  display: block;
	  border: 1px solid rgba(15,208,208,1.00);
	  margin-bottom: 10px;
	      padding: 10px;
	}
	
  .explanation_ill_menu a {
    color: #43403C;
    text-decoration: none;

  }
  .explanation_ill_menu a:before {
    content: attr(data-menu);
  }
  .explanation_ill_menu img {
    display: none;
  }
}
/*--　年会について　--*/
.section_meeting {
  font-size: 1.8rem;
  line-height: 3.6rem;
}
.section_meeting h3 {
  display: block;
  width: 100%;
  background: #5DC4C9;
  color: #fff;
  padding: 5px 20px;
  margin-bottom: 20px
}
.section_meeting blockquote {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  margin-bottom: 20px;
  background: #F5F3F3;
  border: 1px solid #5DC4C9;
}
.section_meeting blockquote p {
  display: block;
  border-bottom: 1px solid #E4E4E4
}
.section_meeting blockquote h4 {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section_meeting h3 {
    font-size: 2rem;
  }
}
/* 団体概要　*/
.section_profile_wrap {
  background: linear-gradient(#fff, #D6D3C6, #fff);
  font-size: 2.1rem;
  font-weight: 600;
  color: #655C49;
}
.section_profile_wrap p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.9rem;
  color: #655C49;
}
.section_profile_wrap img {
  border: 1px solid #655C49
}
.section_profile {
  list-style-type: disc;
  list-style-position: inside;
}
.section_profile li {
  list-style: none
}
.section_profile li {
  padding: .5em;
  border-bottom: 1px dashed #655C49;
}
.section_profile li::marker {
  color: #655d53;
  font-size: 1.1em;
}
/**------------------------------------------------------------
   FOOTER　共通
　-----------------------------------------------------------**/
#footer {
  bottom: 0;
  width: 100%;
  height: 250px;
  padding: 10px 40px;
  position: relative;
  text-transform: uppercase;
  background: url("../images/footer_bg.png");
  background-position: bottom center;
  background-repeat: no-repeat;
}
#footer .footer-site-name {
  font-weight: 500;
  margin: 0 0 40px 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  color: #6b5d40;
  line-height: 1.6;
}
span {
  display: block;
  font-size: 0.8rem;
  color: #555;
}
#footer .footer-address {
  font-weight: 500;
  margin: 0 0 10px 0;
  font-size: 1em;
  letter-spacing: 0.1em;
  color: #6b5d40;
  line-height: 1.6;
}
#footer small {
  display: block;
  color: #555;
  padding-top: 15px;
  text-align: center;
}
#footer img{
	width:180px;
}

@media screen and (max-width: 768px) {
  #footer {
    height: 280px;
    padding: 20px;
  }
  #footer .footer-site-name {
    margin: 0 0 30px 0;
    font-size: 1.5em !important;
  }
  /*span {
    font-size: 0.65rem !important;
  }*/
  #footer .footer-address {
    margin: 50px 0 30px 0;
    font-size: 0.85em;
  }
}