@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

.w_base {
  max-width: 960px;
  margin: 0 auto;
}

.sp_br {
  display: none;
}

.wrap {
  border-top: 10px solid rgb(248, 182, 0);
  background: rgba(255, 232, 169, 0.1);
}

.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100% - 174px);
}

.main_area {
  margin-bottom: 70px;
  width: 70%;
  padding-right: 15px;
}

/*/////////// header //////////*/
header {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  background: #fff;
}
header .hd_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .hd_con .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .hd_con .head img {
  width: 80px;
}
header .hd_con .head .title a {
  text-decoration: none !important;
  color: #333 !important;
}
header .hd_con .head .title h1 {
  font-size: 23.4px;
}
header .hd_con .head .title p {
  font-size: 17px;
  margin-top: -8px;
  margin-bottom: 0;
}
header .hd_con .contact {
  text-align: right;
  font-size: 1.3em;
  font-weight: bold;
}
header .hd_con .contact p {
  margin-bottom: 0px;
}
header .hd_con .contact a {
  margin-top: -7px;
}
header .hd_con .contact a:visited, header .hd_con .contact a:link {
  text-decoration: none;
  color: #333;
}
header .hd_con .contact .tel::before,
header .hd_con .contact .mail::before {
  font-family: FontAwesome;
  margin-right: 5px;
  vertical-align: middle;
  font-size: 0.7em;
}
header .hd_con .contact .tel::before {
  content: "\f095";
}
header .hd_con .contact .mail::before {
  content: "\f0e0";
}

/*/////////// nav //////////*/
nav {
  background: rgb(248, 182, 0);
}
nav > ul {
  padding: 4px 0 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
nav > ul > li {
  position: relative;
  width: 20%;
  border-left: 1px solid #fff;
}
nav > ul > li:nth-last-child(1) {
  border-right: 1px solid #fff;
}
nav > ul > li:hover .clist {
  opacity: 1;
}
nav > ul > li a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 17px;
  padding: 10px 0 10px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
nav > ul > li a:visited, nav > ul > li a:link {
  color: #fff;
  text-decoration: none;
}
nav > ul > li a:hover {
  background: rgba(255, 255, 255, 0.2);
}
nav > ul > li > .clist {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background: rgb(248, 182, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  z-index: 1;
}
nav > ul > li > .clist li {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 4px;
}
nav > ul > li > .clist li:nth-last-child(1) {
  padding-bottom: 4px;
}
nav > ul > li > .clist li:nth-last-child(1) a {
  border-bottom: none;
}
nav > ul > li > .clist a {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
}
nav > ul > li > .clist a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/*/////////// footer //////////*/
footer {
  background: rgb(248, 182, 0);
  margin-top: 100px;
}
footer p {
  margin-bottom: 0;
  padding: 1em 0;
  color: #fff;
  text-align: center;
}

/*--------------------
	index
--------------------*/
.main_img {
  height: 53vh;
  overflow: hidden;
  background: url(../images/main.jpg) center center/cover no-repeat;
  background-position-y: 43%;
}
.main_img img {
  width: 100%;
}

.about {
  position: relative;
}
.about h2 {
  position: absolute;
  width: 150px;
  height: 160px;
  text-align: center;
  background: rgb(248, 182, 0);
  top: -120px;
  color: #fff;
  padding-top: 110px;
  font-size: 18px;
  letter-spacing: 1px;
}
.about .greeting {
  margin: 60px 0 50px 40px;
  padding: 40px 30px;
  border: 10px solid rgb(254, 244, 217);
  font-size: 14px;
  line-height: 2;
}

.link_list {
  margin-bottom: 20px;
}
.link_list img {
  width: 100%;
}

.news_area {
  width: 30%;
  padding-left: 15px;
}
.news_area h2 {
  margin-top: 50px;
  font-size: 20px;
  border-bottom: 6px solid rgb(248, 182, 0);
  color: rgb(248, 182, 0);
}

.news_scroll {
  width: 100%;
  height: 380px;
  overflow: scroll;
}

.news_box {
  border-bottom: 1px dotted #333;
  padding: 20px 5px 20px 5px;
  font-size: 14px;
}
.news_box time {
  color: rgb(248, 182, 0);
}
.news_box time::before {
  font-family: FontAwesome;
  content: "\f017";
  font-size: 0.8em;
  margin-right: 2px;
  color: rgb(248, 182, 0);
}
.news_box p {
  padding: 5px 10px;
}

/*--------------------
	style
--------------------*/
.page .main_area {
  width: 100%;
  padding: 15px 0;
  margin-bottom: 0;
}
.page .contents {
  margin-bottom: 30px;
}
.page .contents h2 {
  text-align: center;
  margin: 20px 0 50px;
}
.page .contents h2 span {
  position: relative;
  font-size: 20.8px;
  color: #f8b600;
}
.page .contents h2 span:before, .page .contents h2 span:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 40px;
  height: 4px;
  background: #f8b600;
}
.page .contents h2 span:before {
  left: -80px;
}
.page .contents h2 span:after {
  right: -80px;
}
.page .contents h3 {
  margin: 24px 0 10px;
  padding-left: 8px;
  font-size: 18.2px;
  border-left: 4px solid rgb(248, 182, 0);
  border-bottom: 1px dotted rgb(248, 182, 0);
  letter-spacing: 1px;
}
.page .contents h4 {
  position: relative;
  margin: 0.6em 0 0.5em;
  padding: 0 0 0em 1.4em;
  font-size: 17px;
}
.page .contents h4:before {
  content: "■";
  color: #f8b600;
  position: absolute;
  left: 0;
}
.page .contents h5 {
  position: relative;
  font-size: 14px;
  padding: 0 0 0 1.5em;
}
.page .contents h5::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  width: 10px;
  height: 1px;
  background: #f8b600;
}
/*--------------------
	page
--------------------*/
/*====== member ======*/
.member_list {
  margin: 17px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.member_list:after {
  content: "";
  width: calc(33.3333333333% - 20px);
  display: block;
}
.member_list .member_item {
  width: calc(33.3333333333% - 20px);
  background: #fff;
  -webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.member_list .member_item .m_img {
  position: relative;
}
.member_list .member_item .m_img:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 45px solid #fff;
  border-left: 290px solid transparent;
}
.member_list .member_item .m_img img {
  aspect-ratio: 1.5/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.member_list .member_item .m_txt {
  padding: 0 20px 20px;
}
.member_list .member_item .m_txt .m_txt_name {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.member_list .member_item .m_txt .m_txt_name span {
  padding-left: 10px;
  font-size: 0.8em;
}
.member_list .member_item .m_txt .m_txt_name:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 50px;
  height: 2px;
  background: #ffbf00;
}
.member_list .member_item .m_txt .m_txt_other {
  text-align: center;
}
.member_list .member_item .m_txt .m_txt_other span {
  display: block;
  margin-bottom: 5px;
}
.member_list .member_item .m_txt .m_txt_other a {
  position: relative;
  text-decoration: none;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.member_list .member_item .m_txt .m_txt_other a:after {
  position: absolute;
  right: -20px;
  top: 0.5em;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffbf00;
  border-right: 1px solid #ffbf00;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.member_list .member_item .m_txt .m_txt_other a:hover {
  opacity: 0.7;
}
.member_list .member_item .m_txt .m_txt_other a:hover:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -30px;
}

/*================================================================================ tablet ==========================================================================================*/
@media screen and (min-width: 770px) and (max-width: 1024px) {
  .w_base {
    padding: 0 10px;
    width: 100%;
  }
  .sp_br {
    display: block;
  }
  /*/////////// tab header //////////*/
  header .hd_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .hd_con .head {
    margin-bottom: 10px;
  }
  header .hd_con .head img {
    width: 60px;
  }
  header .head,
header .contact {
    width: 100%;
    text-align: left !important;
  }
  header .head .tel,
header .head .mail,
header .contact .tel,
header .contact .mail {
    display: inline-block !important;
  }
  header .head .tel,
header .contact .tel {
    margin-right: 1em;
  }
  header .contact {
    line-height: 1.3;
  }
  /*/////////// tab nav //////////*/
  .nav {
    background: rgb(237, 165, 5);
    color: #fff;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    z-index: 100;
    width: 70%;
    overflow-x: none;
    overflow-y: auto;
    top: 0px;
    right: -70%;
    position: fixed;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav ul li {
    display: block;
    width: 100%;
    border: none;
  }
  .nav ul li:nth-last-child(1) {
    border: none;
  }
  .nav ul li .clist {
    position: static;
    opacity: 1;
    background: rgba(225, 83, 29, 0.4);
  }
  .nav_list > li > a {
    border-bottom: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
    padding: 1em 1em 1em 1.5em;
    text-decoration: none;
    position: relative;
  }
  .nav_list > li > a::after {
    content: attr(data-text);
    display: block;
  }
  .nav_list > li > a img {
    display: none;
  }
  .clist > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 13px;
    padding: 1em 1em 1em 2em;
    text-decoration: none;
  }
  .clist > li > a:hover, .clist > li > a.current {
    background-color: #000;
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 36px;
    right: 10px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
}
/*================================================================================ sp ==========================================================================================*/
@media screen and (max-width: 769px) {
  .w_base {
    padding: 0 10px;
    width: 100%;
  }
  .sp_br {
    display: block;
  }
  .main {
    display: block;
  }
  .main_area {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  /*/////////// header //////////*/
  header .hd_con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .hd_con .head {
    margin-bottom: 10px;
  }
  header .hd_con .head h1 {
    font-size: 15px !important;
  }
  header .hd_con .head img {
    width: 50px;
  }
  header .head,
header .contact {
    width: 100%;
    text-align: left !important;
  }
  header .head .tel,
header .head .mail,
header .contact .tel,
header .contact .mail {
    display: inline-block !important;
  }
  header .head .tel,
header .contact .tel {
    margin-right: 1em;
  }
  header .contact {
    line-height: 1.3;
    font-size: 1.1em !important;
  }
  /*/////////// sp nav //////////*/
  .nav {
    background: rgb(237, 165, 5);
    color: #fff;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    z-index: 100;
    width: 70%;
    overflow-x: none;
    overflow-y: auto;
    top: 0px;
    right: -70%;
    position: fixed;
    -webkit-transition: All 0.5s ease;
    transition: All 0.5s ease;
  }
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav ul li {
    display: block;
    width: 100%;
    border: none;
  }
  .nav ul li:nth-last-child(1) {
    border: none;
  }
  .nav ul li .clist {
    position: static;
    opacity: 1;
    background: rgba(225, 83, 29, 0.4);
  }
  .nav_list > li > a {
    border-bottom: 1px solid #fff;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    display: block;
    padding: 1em 1em 1em 1.5em;
    text-decoration: none;
    position: relative;
  }
  .nav_list > li > a::after {
    content: attr(data-text);
    display: block;
  }
  .nav_list > li > a img {
    display: none;
  }
  .clist > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: block;
    font-size: 13px;
    padding: 1em 1em 1em 2em;
    text-decoration: none;
  }
  .clist > li > a:hover, .clist > li > a.current {
    background-color: #000;
    -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
            box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger {
    cursor: pointer;
    z-index: 1000;
    position: fixed !important;
    top: 25px;
    right: 15px;
    margin-top: -5px;
    width: 36px;
    height: 24px;
  }
  .sp_nav_trigger span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  .sp_nav_trigger.sp_active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
    background: #fff;
  }
  /*/////////// sp footer //////////*/
  footer {
    margin-top: 60px;
  }
  footer p {
    font-size: 0.8em;
  }
  /*--------------------
  sp index
   --------------------*/
  .main_img {
    height: 30vh;
    background-position-x: 46%;
    background-position-y: 43%;
    background-size: 190%;
  }
  .about h2 {
    height: 50px;
    top: -30px;
    padding-top: 10px;
  }
  .link_list {
    margin: 20px;
  }
  .news_area {
    width: 100%;
    padding: 10px;
  }
  .news_area h2 {
    margin-top: 20px;
  }
  /*--------------------
  	page
  --------------------*/
  /*====== member ======*/
  .member_list .member_item {
    width: 100%;
    margin-bottom: 20px;
  }
  .member_list .member_item:nth-last-child(1) {
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */