body {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000;
  background: #eeeef0;
  padding-top: 70px;
}
body a {
  color: #000;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}

.sp_only {
  display: none;
}

.bold {
  font-weight: bold;
}

.inner {
  box-sizing: content-box;
  max-width: 1100px;
  padding: 0 2%;
  position: relative;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.cmn_btn {
  border: none;
  outline: none;
  display: block;
  background: #000;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  width: 350px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}
.cmn_btn:hover {
  opacity: 0.7;
}

.btn_arrow {
  background: url(../images/ico_arrow.png) right 20px center no-repeat #000;
  background-size: 18px;
}

.btn_contact {
  background: url(../images/ico_contact.png) left 25px center no-repeat #000;
  background-size: 30px;
}

.btn_registration {
  background: url(../images/ico_arrow_02.png) right 20px center no-repeat #ffff00;
  color: #000;
  background-size: 18px;
}

.btn_return {
  background: url(../images/ico_arrow_03.png) left 20px center no-repeat #cccccf;
  color: #000;
  background-size: 18px;
}

.cmn_ttl {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}
.cmn_ttl::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(50% - 77px);
  width: 154px;
  height: 3px;
  background: #000;
}

.cmn_box {
  margin: 0 auto;
  background: #fff;
  border: 1px solid #cccccf;
  padding: 30px 20px;
}

.pagenation {
	position: relative;
    	margin: 5% auto;
    	display: flex;
    	justify-content: center;
}


@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .inner {
    padding: 0 3%;
  }
  .cmn_btn {
    font-size: 16px;
    width: 80%;
  }
  .btn_arrow {
    background: url(../images/ico_arrow.png) right 20px center no-repeat #000;
    background-size: 16px;
  }
  .btn_contact {
    background: url(../images/ico_contact.png) left 22px center no-repeat #000;
    background-size: 24px;
  }
  .btn_registration {
    background: url(../images/ico_arrow_02.png) right 20px center no-repeat #ffff00;
    background-size: 16px;
  }
  .btn_return {
    background: url(../images/ico_arrow_03.png) left 20px center no-repeat #cccccf;
    background-size: 16px;
  }
  .cmn_ttl {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .cmn_ttl::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: calc(50% - 50px);
    width: 100px;
    height: 3px;
    background: #000;
  }
  .cmn_box {
    padding: 20px;
  }
}
/*----------------------------------------------------- */
/*  header           */
/*----------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  height: 70px;
  padding: 0 10px 0 30px;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}

.header_logo {
  display: flex;
  align-items: center;
}
.header_logo a {
  width: 189px;
  transition: 0.3s ease-in-out;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_logo h1 {
  color: #fff;
  border-left: 1px solid #fff;
  padding-left: 20px;
  margin-left: 20px;
  line-height: 1.8;
  font-size: 22px;
  white-space: nowrap;
}

.header_nav_wrap {
  display: flex;
  flex-direction: row-reverse;
}

.header_nav {
  display: flex;
}
.header_nav li {
  height: 70px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header_nav a {
  color: #fff;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.3s ease-in-out;
}
.header_nav a:hover {
  opacity: 0.7;
}
.header_nav li:nth-child(1) a {
  padding-left: 43px;
  background: url(../images/ico_article.png) left center no-repeat;
  background-size: 33px;
}
.header_nav li:nth-child(2) a {
  padding-left: 50px;
  background: url(../images/ico_ma.png) left center no-repeat;
  background-size: 43px;
}
.header_nav li:nth-child(3) a {
  padding-left: 46px;
  background: url(../images/ico_company.png) left center no-repeat;
  background-size: 36px;
}
.header_nav li:nth-child(4) a {
  padding-left: 40px;
  background: url(../images/ico_contact.png) left center no-repeat;
  background-size: 30px;
}
.header_nav .sp_link {
  display: none;
}

.header_admin_nav {
  display: flex;
}
.header_admin_nav li {
  height: 70px;
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.header_admin_nav a {
  color: #fff;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.3s ease-in-out;
  font-size: 18px;
}
.header_admin_nav a:hover {
  opacity: 0.7;
}
.header_admin_nav .current {
  color: #ffff00;
}

.header_btns_sp {
  display: none;
}

.header_btns {
  display: flex;
}
.header_btns li {
  height: 70px;
  display: flex;
  align-items: center;
}
.header_btns li + li {
  margin-left: 10px;
}
.header_btns a {
  transition: 0.3s ease-in-out;
}
.header_btns a:hover {
  opacity: 0.7;
}
.header_btns li:nth-child(1) a {
  display: block;
  width: 162px;
  height: 46px;
  line-height: 46px;
  border-radius: 23px;
  background: #fff;
  text-align: center;
  font-weight: bold;
}
.header_btns li:nth-child(1) a span {
  padding: 10px 0 10px 30px;
  background: url(../images/ico_mypage.png) left center no-repeat;
  background-size: 25px;
}
.header_btns li:nth-child(2) a {
  display: block;
  width: 162px;
  height: 46px;
  line-height: 46px;
  border-radius: 23px;
  background: #ffff00;
  text-align: center;
  font-weight: bold;
}
.header_btns li:nth-child(2) a span {
  padding: 10px 0 10px 30px;
  background: url(../images/ico_registration.png) left center no-repeat;
  background-size: 26px;
}

.menu_toggle {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 3%;
  }
  .header_logo {
    width: 32%;
  }
  .header_logo a {
    width: 100%;
  }
  .header_logo h1 {
    padding-left: 10px;
    margin-left: 10px;
    font-size: 16px;
  }
  .header_btns_sp {
    display: flex;
    margin-right: 46px;
  }
  .header_btns_sp li {
    height: 70px;
    display: flex;
    align-items: center;
  }
  .header_btns_sp li + li {
    margin-left: 10px;
  }
  .header_btns_sp a {
    transition: 0.3s ease-in-out;
  }
  .header_btns_sp a:hover {
    opacity: 0.7;
  }
  .header_btns_sp li:nth-child(1) a {
    display: block;
    width: 37px;
    height: 37px;
    border-radius: 37px;
    background: url(../images/ico_mypage.png) center center no-repeat #fff;
    background-size: 22px;
  }
  .header_btns_sp li:nth-child(2) a {
    display: block;
    width: 120px;
    height: 37px;
    line-height: 37px;
    border-radius: 37px;
    background: #ffff00;
    text-align: center;
    font-weight: bold;
  }
  .header_btns_sp li:nth-child(2) a span {
    font-size: 14px;
    padding: 10px 0 10px 25px;
    background: url(../images/ico_registration.png) left center no-repeat;
    background-size: 21px;
  }
  .header_nav_wrap {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    padding: 30px 5%;
    flex-direction: column;
  }
  .is-open {
    overflow: hidden;
  }
  .is-open .header_nav_wrap {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .header_btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
  }
  .header_btns li {
    width: 48%;
    height: 46px;
    display: flex;
    align-items: center;
  }
  .header_btns li + li {
    margin-left: 0;
  }
  .header_btns li:nth-child(1) a {
    width: 100%;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    font-size: 16px;
  }
  .header_btns li:nth-child(1) a span {
    padding: 10px 0 10px 30px;
    background: url(../images/ico_mypage.png) left center no-repeat;
    background-size: 25px;
  }
  .header_btns li:nth-child(2) a {
    display: block;
    width: 162px;
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    background: #ffff00;
    text-align: center;
    font-weight: bold;
  }
  .header_btns li:nth-child(2) a span {
    padding: 10px 0 10px 30px;
    background: url(../images/ico_registration.png) left center no-repeat;
    background-size: 26px;
  }
  .header_admin_nav {
    display: block;
  }
  .header_admin_nav li {
    height: auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    margin-right: 0;
  }
  .header_admin_nav a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header_nav {
    display: block;
  }
  .header_nav li {
    height: auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
    margin-right: 0;
  }
  .header_nav a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header_nav li:nth-child(1) a {
    padding-left: 60px;
    background: url(../images/ico_article.png) left center no-repeat;
    background-size: 33px;
  }
  .header_nav li:nth-child(2) a {
    padding-left: 60px;
    background: url(../images/ico_ma.png) left center no-repeat;
    background-size: 43px;
  }
  .header_nav li:nth-child(3) a {
    padding-left: 60px;
    background: url(../images/ico_company.png) left center no-repeat;
    background-size: 36px;
  }
  .header_nav li:nth-child(4) a {
    padding-left: 60px;
    background: url(../images/ico_contact.png) left center no-repeat;
    background-size: 30px;
  }
  .header_nav .sp_link {
    display: block;
  }
  .header_nav .sp_link a {
    display: block;
    padding: 18px 0 18px 15px;
    font-size: 13px;
    position: relative;
  }
  .header_nav .sp_link a::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
  }
  .menu_toggle {
    position: absolute;
    top: 22px;
    right: 3%;
    display: block;
    height: 25px;
    cursor: pointer;
  }
  .menu_toggle div {
    position: relative;
    width: 32px;
  }
  .menu_toggle span {
    width: 100%;
    z-index: 100;
    height: 3px;
    right: 0;
    display: block;
    background: #fff;
    position: absolute;
    transition: all 0.2s ease-out;
  }
  .menu_toggle span:nth-child(1) {
    top: 0;
  }
  .menu_toggle span:nth-child(2) {
    top: 11px;
  }
  .menu_toggle span:nth-child(3) {
    top: 22px;
  }
  .is-open .menu_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  .is-open .menu_toggle span:nth-child(2) {
    opacity: 0;
  }
  .is-open .menu_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
  }
  .header_admin .header_logo {
    width: calc(32% + 75px);
  }
}
/*----------------------------------------------------- */
/*  mv           */
/*----------------------------------------------------- */
.mv {
  height: 556px;
  position: relative;
  overflow: hidden;
}

.mv_slide {
  position: relative;
  z-index: 1;
}
.mv_slide .slide_item01 {
  background: url(../images/pic_mv_01.png);
}
.mv_slide .slide_item02 {
  background: url(../images/pic_mv_02.png);
}
.mv_slide .slide_item03 {
  background: url(../images/pic_mv_03.png);
}
.mv_slide .slide_item {
  width: 100%;
  height: 556px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.mv_ttl {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.mv_ttl h1 {
  max-width: 715px;
}

@media screen and (max-width: 767px) {
  .mv {
    height: 280px;
  }
  .mv_slide {
    height: 280px;
  }
  .mv_ttl h1 {
    max-width: 95%;
  }
}
/*----------------------------------------------------- */
/*  top_article_list           */
/*----------------------------------------------------- */
.top {
  padding: 50px 0 60px;
}

.top_article_list {
  padding: 0 0 50px;
}

.article_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.article_list::after {
  content: "";
  display: block;
  width: 24%;
}
.article_list::before {
  content: "";
  display: block;
  width: 24%;
  order: 1;
}

.article_list .pic {
  position: relative;
}

.article_list .pic::before {
  display: block;
  padding-top: 70%;
  content: '';
}
.article_list .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.article_list_contents {
  width: 24%;
  background: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.article_list_contents a {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in-out;
}
.article_list_contents a:hover {
  opacity: 0.7;
}

.article_list_inner {
  padding: 10px 10px 20px;
}
.article_list_inner h3 {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.article_list_inner h4 {
  display: inline-block;
  background: #eeeef0;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 0 5px;
}
.article_list_inner p {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .top {
    padding: 30px 0 60px;
  }
  .top_article_list {
    padding: 0 0 20px;
  }
  .article_list {
    margin-bottom: 30px;
  }
  .article_list::after {
    width: 48%;
  }
  .article_list::before {
    width: 48%;
  }
  .article_list_contents {
    width: 48%;
    margin-bottom: 15px;
  }
  .article_list_inner {
    padding: 10px 10px 15px;
  }
  .article_list_inner h3 {
    font-size: 14px;
  }
  .article_list_inner h4 {
    font-size: 11px;
  }
  .article_list_inner p {
    font-size: 11px;
  }
}
/*----------------------------------------------------- */
/*  top_btns           */
/*----------------------------------------------------- */
.top_btns {
  display: flex;
  justify-content: space-between;
}
.top_btns li {
  width: 48%;
  background: #fff;
  height: 132px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}
.top_btns li a {
  position: relative;
  display: block;
  width: 100%;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.top_btns li a:hover {
  opacity: 0.7;
}
.top_btns li .ico {
  position: absolute;
  top: 17px;
  left: 10%;
  width: 98px;
  height: 98px;
  background: #ffff00;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_btns li .txt {
  text-align: center;
  transform: translateX(30px);
}
.top_btns li .txt p {
  font-size: 16px;
  line-height: 1.1;
}
.top_btns li .txt p span {
  position: relative;
  padding: 0 15px;
}
.top_btns li .txt p span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 20px;
  background: #000;
  transform: rotate(-30deg);
}
.top_btns li .txt p span::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 20px;
  background: #000;
  transform: rotate(30deg);
}
.top_btns li .txt h3 {
  font-size: 40px;
  font-weight: bold;
}
.top_btns li:nth-child(1) .ico img {
  width: 44px;
}
.top_btns li:nth-child(2) .ico img {
  width: 49px;
}

@media screen and (max-width: 767px) {
  .top_btns {
    display: block;
  }
  .top_btns li {
    width: 100%;
    height: 100px;
  }
  .top_btns li a {
    height: 100px;
  }
  .top_btns li .ico {
    top: 15px;
    left: 5%;
    width: 70px;
    height: 70px;
  }
  .top_btns li .txt {
    text-align: center;
    transform: translateX(30px);
  }
  .top_btns li .txt p {
    font-size: 12px;
    line-height: 1.1;
  }
  .top_btns li .txt p span {
    position: relative;
    padding: 0 12px;
  }
  .top_btns li .txt p span::after {
    height: 16px;
  }
  .top_btns li .txt p span::before {
    height: 16px;
  }
  .top_btns li .txt h3 {
    font-size: 33px;
    font-weight: bold;
  }
  .top_btns li:nth-child(1) {
    margin-bottom: 12px;
  }
  .top_btns li:nth-child(1) .ico img {
    width: 36px;
  }
  .top_btns li:nth-child(2) .ico img {
    width: 40px;
  }
}
/*----------------------------------------------------- */
/*  top_info           */
/*----------------------------------------------------- */
.top_info {
  padding: 100px 0 80px;
}
.top_info h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}
.top_info h2::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: calc(50% - 77px);
  width: 154px;
  height: 3px;
  background: #000;
}

.top_info_list {
  max-width: 870px;
  margin: 0 auto 40px;
}
.top_info_list li {
  border-bottom: 1px solid #cccccf;
  font-size: 17px;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 10px;
  position: relative;
}
.top_info_list li::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border-right: 1px solid #cccccf;
  border-bottom: 1px solid #cccccf;
  transform: rotate(-45deg);
}
.top_info_list li .date {
  width: 150px;
}

.top_info_wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.top_info_list li .cate {
  padding: 2px 5px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  width: 55px;
  display: block;
  margin-right: 20px;
}

.top_info_list li .cate_info {
  background: #990000;
}
.top_info_list li .cate_other {
  background: #000099;
}
.top_info_list li .cate_event {
  background: #000;
}



.top_info_list a {
  transition: 0.3s ease-in-out;
}
.top_info_list a:hover {
  opacity: 0.7;
}

.top_info_box {
  max-width: 870px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #cccccf;
  padding: 40px 20px;
}

@media screen and (max-width: 767px) {
  .top_info {
    padding: 60px 0 40px;
  }
  .top_info h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .top_info h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: calc(50% - 50px);
    width: 100px;
    height: 3px;
    background: #000;
  }
  .top_info_list {
    margin: 0 auto 30px;
  }
  .top_info_list li {
    border-bottom: 1px solid #cccccf;
    font-size: 13px;
    flex-wrap: wrap;
    padding: 10px 0px;
  }
  .top_info_list li .date {
    width: 120px;
  }
  
  .top_info_wrap {
    flex: auto;
    width: 100%;
    padding-top: 10px;
  }
  
  .top_info_box {
    font-size: 15px;
    padding: 20px;
  }
}
/*----------------------------------------------------- */
/*  top_ma_btn           */
/*----------------------------------------------------- */
.top_ma_btn {
  max-width: 870px;
  margin: 0 auto;
}
.top_ma_btn a {
  display: block;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}
.top_ma_btn a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------- */
/*  footer           */
/*----------------------------------------------------- */
.footer {
  background: #fff;
  padding: 50px 0 40px;
}

.footer_list {
  display: flex;
  margin-bottom: 40px;
}
.footer_list li + li {
  margin-left: 50px;
}
.footer_list a {
  transition: 0.3s ease-in-out;
}
.footer_list a:hover {
  opacity: 0.7;
}

.footer_list_sub {
  display: flex;
  font-size: 13px;
  margin-bottom: 40px;
}
.footer_list_sub li + li {
  margin-left: 30px;
}
.footer_list_sub a {
  padding-left: 15px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.footer_list_sub a::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}
.footer_list_sub a:hover {
  opacity: 0.7;
}

.copy {
  text-align: center;
  font-size: 12px;
  color: #cccccf;
}

.page_top {
  position: fixed;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  transition: 0.3s ease-in-out;
}
.page_top a {
  display: block;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 60px;
  position: relative;
}
.page_top::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateX(50%) translateY(-25%) rotate(-45deg);
}
.page_top:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
  .footer_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 15px;
  }
  .footer_list li + li {
    margin-left: 0;
  }
  .footer_list li {
    width: 33%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer_list_sub {
    margin-bottom: 20px;
  }
  .footer_list_sub li + li {
    margin-left: 20px;
  }
  .copy {
    text-align: left;
  }
  .page_top {
    position: fixed;
    bottom: 2%;
    right: 2%;
  }
  .page_top a {
    width: 40px;
    height: 40px;
  }
  .page_top::after {
    width: 10px;
    height: 10px;
  }
}
/*----------------------------------------------------- */
/*  sub_mv           */
/*----------------------------------------------------- */
.sub_mv {
  height: 343px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub_mv h1 {
  color: #fff;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top: -20px;
}
.sub_mv h1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .sub_mv {
    height: 240px;
  }
  .sub_mv h1 {
    font-size: 20px;
  }
}
/*----------------------------------------------------- */
/*  ma           */
/*----------------------------------------------------- */
.ma_mv {
  background: url(../images/bg_profile.jpg) center center no-repeat;
  background-size: cover;
}

.ma {
  padding: 50px 0;
}

.ma_box {
  max-width: 870px;
}
.ma_box h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.ma_box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}

.ma_box + .ma_box {
  margin-top: 30px;
}

.ma_case h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.ma_case h3 span {
  font-size: 70px;
  font-weight: bold;
  font-style: italic;
  color: #9bcbf0;
  padding-right: 5px;
}

.ma_case + .ma_case {
  margin-top: 20px;
  border-top: 1px dashed #cccccf;
  padding-top: 10px;
}

.ma_btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .ma_mv {
    background: url(../images/bg_ma.png) right 10% center no-repeat;
    background-size: cover;
  }
  .ma {
    padding: 30px 0 50px;
  }
  .ma_box h2 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .ma_box + .ma_box {
    margin-top: 20px;
  }
  .ma_case h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ma_case h3 span {
    font-size: 40px;
  }
  .ma_case + .ma_case {
    margin-top: 20px;
    border-top: 1px dashed #cccccf;
    padding-top: 10px;
  }
  .ma_btn {
    margin-top: 40px;
  }
}
/*----------------------------------------------------- */
/*  article_list           */
/*----------------------------------------------------- */
.article_list_mv {
  background: url(../images/bg_article_list.png) center center no-repeat;
  background-size: cover;
}

.article_list_page {
  padding: 50px 0 80px;
}

.article_list_box {
  max-width: 870px;
  margin-bottom: 50px;
}

.search_box {
  max-width: 606px;
  margin: 0 auto 80px;
}
.search_box form {
  display: flex;
  align-items: center;
}
.search_box input[type=search] {
  background: #fff;
  border: 1px solid #cccccf;
  border-radius: 0;
  padding: 20px;
  flex: 1;
}
.search_box input[type=submit] {
  display: block;
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
  background: #000;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  padding: 14px 0;
  width: 155px;
  border-radius: 6px;
  margin-left: 20px;
  transition: 0.3s ease-in-out;
}
.search_box input[type=submit]::after {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .article_list_page {
    padding: 30px 0 50px;
  }
  .article_list_box {
    max-width: 870px;
    margin-bottom: 30px;
  }
  .search_box {
    max-width: 606px;
    margin: 0 auto 40px;
  }
  .search_box input[type=search] {
    padding: 10px;
  }
  .search_box input[type=submit] {
    font-size: 15px;
    padding: 6px 0;
    width: 28%;
    margin-left: 10px;
  }
}
/*----------------------------------------------------- */
/*  profile           */
/*----------------------------------------------------- */
.profile_mv {
  background: url(../images/bg_profile.jpg) center center no-repeat;
  background-size: cover;
}

.profile {
  padding: 50px 0 80px;
}

.profile_box {
  max-width: 870px;
}
.profile_box h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.profile_box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}

.profile_txt {
  margin-bottom: 80px;
}

.profile_table {
  margin-bottom: 80px;
}
.profile_table th {
  font-weight: bold;
  padding-right: 20px;
}
.profile_table a {
  color: #4a8ff0;
  text-decoration: underline;
}

.profile_btn {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .profile_mv {
    background: url(../images/bg_profile.jpg) right 10% center no-repeat;
    background-size: cover;
  }
  .profile {
    padding: 30px 0 50px;
  }
  .profile_box h2 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .profile_txt {
    margin-bottom: 40px;
  }
  .profile_table {
    margin-bottom: 40px;
  }
  .profile_btn {
    margin-bottom: 20px;
  }
  .btn_contact {
    width: 100%;
  }
}
/*----------------------------------------------------- */
/*  privacy           */
/*----------------------------------------------------- */
.privacy_mv {
  background: url(../images/bg_profile.jpg) center center no-repeat;
  background-size: cover;
}

.privacy {
  padding: 50px 0 80px;
}

.privacy_box {
  max-width: 870px;
  padding: 30px 60px 1px;
}
.privacy_box h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.privacy_box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}

.privacy_txt {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .privacy_mv {
    background: url(../images/bg_privacy.png) right 10% center no-repeat;
    background-size: cover;
  }
  .privacy {
    padding: 30px 0 50px;
  }
  .privacy_box {
    padding: 20px 20px 1px;
  }
  .privacy_box h2 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .privacy_txt {
    margin-bottom: 40px;
  }
}

/*----------------------------------------------------- */
/* businness deal          */
/*----------------------------------------------------- */
.bdeal_mv {
  background: url(../images/bg_profile.jpg) center center no-repeat;
  background-size: cover;
}

.bdeal {
  padding: 50px 0 80px;
}

.bdeal_box {
  max-width: 870px;
}
.bdeal_box h2 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.bdeal_box h2::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}

.bdeal_table {
  margin-bottom: 80px;
}
.bdeal_table th {
  font-weight: bold;
  padding-right: 20px;
  width: 30%;
  height: 35px;
}
.bdeal_th_align_top {
 align-content: baseline;
}

.bdeal_table td {
  width: 70%;
  height: 35px;
}
.bdeal_table a {
  color: #4a8ff0;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .bdeal_mv {
    background: url(../images/bg_profile.jpg) right 10% center no-repeat;
    background-size: cover;
  }
  .bdeal {
    padding: 30px 0 50px;
  }
  .bdeal_box h2 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .bdeal_table {
    margin-bottom: 40px;
  }
   .bdeal_table tr
  {
    /*border-bottom: 1px solid #B3B3B3;*/
  }
  .bdeal_table th {
        display: block;
        width: 100%;
        height: auto;
        padding-bottom: 0;
  }
  .bdeal_table td {
        display: block;
        width: 100%;
        height: auto;
	padding-bottom: 10px;
	
  }
}
/*----------------------------------------------------- */
/*  article_details           */
/*----------------------------------------------------- */
.article_details_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 2% 80px;
  box-sizing: content-box;
  max-width: 1280px;
  margin: 0 auto;
}

.article_details {
  flex: 1;
  background: #fff;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.article_details_mv {
  position: relative;
}

.article_details_mv::before {
  display: block;
  padding-top: 48%;
  content: '';
}
.article_details_mv img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article_details_inner {
  padding: 20px 30px 80px;
}
.article_details_inner .date {
  font-size: 13px;
  margin-bottom: 10px;
}
.article_details_inner h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.2;
}

.article_details_profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.article_details_profile .pic {
  width: 37%;
  position: relative;
}

.article_details_profile .pic::before {
  display: block;
  padding-top: 68%;
  content: '';
}
.article_details_profile .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article_details_profile .txt {
  width: 57%;
}
.article_details_profile .txt h3 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
  line-height: 1;
}
.article_details_profile .txt h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #000;
}
.article_details_profile .txt em {
  font-size: 18px;
  font-weight: bold;
}
.article_details_profile .txt a {
  color: #4a8ff0;
  text-decoration: underline;
}

.article_details_txt + .article_details_txt {
  margin-top: 30px;
}

.article_details_rock {
  max-width: 560px;
  background: #eeeef0;
  padding: 10px 0;
  text-align: center;
  margin: 40px auto;
}
.article_details_rock span {
  padding: 5px 0 5px 35px;
  background: url(../images/ico_rock.png) left center no-repeat;
  background-size: 20px;
}

.article_details_btn + .article_details_btn {
  margin-top: 25px;
}

.article_details_btn_02 {
  margin-top: 60px;
  text-align: center;
}
.article_details_btn_02 p {
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 15px;
}
.article_details_btn_02 p span {
  position: relative;
  padding: 0 15px;
}
.article_details_btn_02 p span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1px;
  height: 20px;
  background: #000;
  transform: rotate(-30deg);
}
.article_details_btn_02 p span::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 20px;
  background: #000;
  transform: rotate(30deg);
}

.article_details_pic {
  margin: 50px 0 30px;
}

.article_details_side {
  width: 358px;
  margin-left: 3%;
  background: #fff;
  padding: 30px 20px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}
.article_details_side h2 {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
  line-height: 1;
}
.article_details_side h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #000;
}

.article_details_side_list li {
  border-bottom: 1px solid #cccccf;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.article_details_side_list li a {
  display: flex;
  transition: 0.3s ease-in-out;
}
.article_details_side_list li a:hover {
  opacity: 0.7;
}
.article_details_side_list li .pic {
  width: 37%;
  margin-right: 15px;
  position: relative;
}
.article_details_side_list li .pic::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.article_details_side_list li .pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article_details_side_list li .txt {
  font-size: 17px;
  font-weight: bold;
}

.article_details_side_bnr {
  transition: 0.3s ease-in-out;
}
.article_details_side_bnr:hover {
  opacity: 0.7;
}

.article_details_note {
  text-align: center;
  font-size: 14px;
  margin: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .article_details_wrap {
    display: block;
    padding: 30px 3% 50px;
  }
  .article_details {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .article_details_inner {
    padding: 20px 10px 50px;
  }
  .article_details_inner h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .article_details_profile {
    display: block;
    margin-bottom: 30px;
  }
  .article_details_profile .pic {
    width: 100%;
    margin-bottom: 20px;
  }
  .article_details_profile .txt {
    width: 100%;
  }
  .article_details_profile .txt h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .article_details_profile .txt h3::after {
    width: 60px;
  }
  .article_details_profile .txt em {
    font-size: 16px;
  }
  .article_details_txt + .article_details_txt {
    margin-top: 20px;
  }
  .article_details_rock {
    padding: 5px 20px;
    text-align: left;
    margin: 30px auto;
  }
  .article_details_rock span {
    display: block;
    padding: 5px 0 5px 35px;
    background: url(../images/ico_rock.png) left center no-repeat;
    background-size: 20px;
  }
  .article_details_btn_02 p {
    font-size: 12px;
  }
  .article_details_pic {
    margin: 20px 0;
  }
  .article_details_side {
    width: 100%;
    margin-left: 0;
    padding: 30px 10px;
  }
  .article_details_side_list li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .article_details_side_list li .pic {
    width: 29%;
  }
}
/*----------------------------------------------------- */
/*  contact           */
/*----------------------------------------------------- */
.contact {
  padding: 50px 0;
}

.contact_mv {
  background: url(../images/bg_contact.png) center center no-repeat;
  background-size: cover;
}

.contact_box {
  max-width: 800px;
  margin-bottom: 50px;
}
.contact_box h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.contact_box h3::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 40px);
  width: 80px;
  height: 3px;
  background: #000;
}

.contact_ttl {
  max-width: 800px;
  font-size: 18px;
  font-weight: bold;
  margin: 0 auto 30px;
}

.contact_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: -15px;
}
.contact_table tr:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.contact_table th {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  padding: 15px;
}
.contact_table th .required {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  background: #dc3b22;
  padding: 0 5px;
  margin-left: 10px;
}
.contact_table td {
  display: block;
  width: 100%;
  padding: 0 15px 20px 15px;
}
.contact_table td input[type=text],
.contact_table td input[type=password] {
  border: 1px solid #cccccf;
  border-radius: 5px;
  padding: 10px;
  max-width: 400px;
  width: 100%;
}
.contact_table td input[type=text].long {
  max-width: 728px;
  width: 100%;
}
.contact_table td textarea {
  border: 1px solid #cccccf;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  height: 250px;
}

.select_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.select_list::after {
  content: "";
  display: block;
  width: 32%;
}
.select_list .select_wrap {
  overflow: hidden;
  width: 32%;
  position: relative;
  border: 1px solid #cccccf;
  background: #ffffff;
  border-radius: 5px;
}
.select_list .select_wrap::before {
  position: absolute;
  top: 50%;
  right: 3%;
  margin-top: -4px;
  width: 0;
  height: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #b3b3b3;
  pointer-events: none;
}
.select_list .select_wrap select {
  width: 100%;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 12px 40px 12px 10px;
}
.select_list .select_wrap select::-ms-expand {
  display: none;
}

.radio_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.radio_list::after {
  content: "";
  display: block;
  width: 32%;
}
.radio_list .radio_wrap {
  width: 32%;
  border: 1px solid #cccccf;
  background: #ffffff;
  border-radius: 5px;
  padding: 12px 10px;
}
.radio_list input[type=radio] {
  display: none;
}
.radio_list span {
  padding-left: 30px;
  position: relative;
  line-height: 1;
  display: block;
}
.radio_list span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #b3b3b3;
  border-radius: 50%;
}
.radio_list input[type=radio]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #43b3ea;
  border-radius: 50%;
}

.checkbox input[type=checkbox] {
  display: none;
}
.checkbox span {
  padding-left: 30px;
  position: relative;
}
.checkbox span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccf;
  border-radius: 4px;
}
.checkbox input[type=checkbox]:checked + span::after {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 4px solid #fff;
  border-right: 4px solid #fff;
}
.checkbox input[type=checkbox]:checked + span::before {
  background: #43b3ea;
}
.checkbox a {
  display: inline-block;
  color: #43b3ea;
  padding-right: 20px;
  background: url(../images/ico_ex.png) right center no-repeat;
  background-size: 14px;
  margin-right: 5px;
}

.appointment_confirm_ttl {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.contact_btn_list {
  display: flex;
  justify-content: space-between;
  max-width: 730px;
  margin: 0 auto;
}
.contact_btn_list li {
  width: 49%;
}

.appointment_completion_txt + .appointment_completion_txt {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 30px 0 50px;
  }
  .contact_box {
    margin-bottom: 30px;
  }
  .contact_box h3 {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .contact_box h3::after {
    bottom: -15px;
    left: calc(50% - 30px);
    width: 60px;
  }
  .contact_ttl {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .contact_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: -15px;
  }
  .contact_table tr:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
  }
  .contact_table th {
    font-size: 16px;
    padding: 12px 0;
  }
  .contact_table th .required {
    font-size: 12px;
  }
  .contact_table td {
    display: block;
    width: 100%;
    padding: 0 0 15px 0;
  }
  .contact_table td textarea {
    height: 180px;
  }
  .select_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .select_list::after {
    content: "";
    display: block;
    width: 32%;
  }
  .select_list .select_wrap::before {
    right: 5%;
  }
  .radio_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .radio_list::after {
    content: "";
    display: block;
    width: 32%;
  }
  .radio_list .radio_wrap {
    width: 32%;
    border: 1px solid #cccccf;
    background: #ffffff;
    border-radius: 5px;
    padding: 12px 10px;
  }
  .radio_list input[type=radio] {
    display: none;
  }
  .radio_list span {
    padding-left: 25px;
  }
  .radio_list_long .radio_wrap {
    width: 49%;
  }
  .appointment_confirm_ttl {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contact_btn_list {
    display: flex;
    justify-content: space-between;
    max-width: 730px;
    margin: 0 auto;
  }
  .contact_btn_list li {
    width: 49%;
  }
  .contact_btn_list li .cmn_btn {
    width: 100%;
  }
  .appointment_completion_txt + .appointment_completion_txt {
    margin-top: 20px;
  }
}
/*----------------------------------------------------- */
/*  mypage           */
/*----------------------------------------------------- */
.mypage_mv {
  background: #cccccf;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 152px;
}
.mypage_mv h1 {
  color: #000;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-top: -20px;
}
.mypage_mv h1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}

.mypage {
  padding: 50px 0 80px;
}
.mypage h2 {
  font-size: 30px;
  font-weight: bold;
  max-width: 870px;
  margin: 0 auto 20px;
}

.mypage_profile {
  display: flex;
  align-items: center;
  max-width: 870px;
  margin: 0 auto 50px;
}
.mypage_profile .pic {
  width: 110px;
  margin-right: 20px;
}
.mypage_profile .name p {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1;
}
.mypage_profile .name .btn {
  display: inline-block;
  background: url(../images/ico_arrow.png) right 10px center no-repeat #000;
  background-size: 9px;
  border-radius: 100px;
  width: 148px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 2px 25px 2px 15px;
  transition: 0.3s ease-in-out;
}
.mypage_profile .name .btn:hover {
  opacity: 0.7;
}
.mypage_profile .name_list {
  display: flex;
}
.mypage_profile .name_list li {
  margin-right: 10px;
}

.mypage_box {
  max-width: 870px;
}

.mypage_list li {
  border-bottom: 1px dashed #cccccf;
  padding: 15px 0 15px 10px;
}
.mypage_list li a {
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
.mypage_list li a:hover {
  opacity: 0.7;
}
.mypage_list .company {
  font-weight: bold;
  max-width: 250px;
  padding-right: 10px;
}
.mypage_list .ttl {
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.mypage_list .date {
  width: 150px;
  border: 1px solid #000;
  padding: 2px 5px;
  margin-left: 10px;
}

.pager {
  display: flex;
  justify-content: center;
  margin: 20px auto 80px;
}
.pager li {
  margin: 0 2px;
}
.pager a {
  display: block;
  width: 39px;
  height: 39px;
  text-align: center;
  line-height: 39px;
  border: 1px solid #cccccf;
  background: #fff;
  transition: 0.3s ease-in-out;
}
.pager a:hover {
  background: #ffff00;
}
.pager a.nolink {
  pointer-events: none;
  background: #cccccf;
}
.pager a.current {
  background: #ffff00;
}

#company {
  padding-top: 70px;
  margin-top: -70px;
}

@media screen and (max-width: 767px) {
  .mypage_mv {
    height: 120px;
  }
  .mypage_mv h1 {
    font-size: 20px;
  }
  .mypage {
    padding: 30px 0 50px;
  }
  .mypage h2 {
    font-size: 18px;
  }
  .mypage_profile {
    margin: 0 auto 30px;
  }
  .mypage_profile .pic {
    width: 80px;
    margin-right: 20px;
  }
  .mypage_profile .name p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .mypage_profile .name .btn {
    font-size: 12px;
    padding: 7%;
    margin-left: 20%;
    margin-bottom: 8%;
  }
  .mypage_profile .name_list{
    display: list-item;
  }
  .mypage_list li {
    border-bottom: 1px dashed #cccccf;
    padding: 10px 0 10px 0;
  }
  .mypage_list li a {
    display: block;
  }
  .mypage_list .company {
    max-width: 100%;
    padding-right: 0;
  }
  .mypage_list .ttl {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin: 10px 0;
  }
  .mypage_list .date {
    width: 150px;
    border: 1px solid #000;
    padding: 2px 5px;
    margin-left: 0;
  }
  .pager {
    margin: 20px auto 50px;
  }
}
/*----------------------------------------------------- */
/*  login           */
/*----------------------------------------------------- */
.login {
  padding: 100px 0 120px;
}

.login_box {
  max-width: 800px;
  padding: 50px;
}
.login_box h1 {
  color: #000;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.login_box h1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  background: #000;
}
.login_box p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 40px;
}
.login_box input[type=text],
.login_box input[type=password] {
  display: block;
  border: 1px solid #cccccf;
  border-radius: 5px;
  padding: 10px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto 10px;
}
.login_box .ttl {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.login_address_btn {
  margin-top: 40px;
}

.login_wrap {
  max-width: 400px;
  margin: 0 auto 40px;
}
.login_wrap a {
  color: #43b3ea;
  text-decoration: underline;
}
.login_wrap .error {
  margin-top: 5px;
  text-align: left;
  color: #e82f00;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .login {
    padding: 50px 0 60px;
  }
  .login_box {
    padding: 30px;
  }
  .login_box h1 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .login_box p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .login_wrap {
    margin: 0 auto 30px;
  }
}
/*----------------------------------------------------- */
/*  admin           */
/*----------------------------------------------------- */
.admin {
  padding: 1px 0 60px;
}
.admin h2 {
  font-size: 30px;
  font-weight: bold;
  max-width: 800px;
  margin: 60px auto 20px;
}
.admin input[type=text] {
  display: block;
  border: 1px solid #cccccf;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin: 0 auto 10px;
}
.admin form {
  display: flex;
}
/*.admin button {
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
  display: block;
  background: #000;
  border-radius: 100px;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}*/
.admin textarea {
  border: 1px solid #cccccf;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  height: 250px;
}

.admin_box {
  max-width: 800px;
  padding: 30px;
}

.admin_box02 {
  margin-bottom: 50px;
}

.admin_table01 {
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}
.admin_table01 th {
  width: 110px;
  padding: 20px 0;
}
.admin_table01 td {
  padding: 20px 0;
}
.admin_table01 td em {
  font-size: 25px;
}

.admin_list01 {
  font-weight: bold;
}
.admin_list01 li + li {
  margin-top: 10px;
}

.admin_table02 {
  width: 100%;
  border-collapse: collapse;
}
.admin_table02 thead th {
  font-weight: bold;
  text-align: center;
}
.admin_table02 tbody tr {
  border-bottom: 1px dashed #e6e6e6;
}
.admin_table02 tbody td {
  text-align: center;
  padding: 15px 0;
}
.admin_table02 tbody .btn {
  display: block;
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #cccccf;
  border-radius: 100px;
  margin-right: 0;
  margin-left: auto;
  transition: 0.3s ease-in-out;
}
.admin_table02 tbody .btn:hover {
  opacity: 0.7;
}

.admin_table03 {
  width: 100%;
  border-collapse: collapse;
}
.admin_table03 tr:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.admin_table03 th {
  font-weight: bold;
  width: 100%;
  display: block;
  padding: 15px 15px 0;
}
.admin_table03 td {
  font-weight: bold;
  width: 100%;
  display: block;
  padding: 15px;
}

.admin_table03 td .btn {
  border: 1px solid #000;
  padding: 2px 20px;
  border-radius: 100px;
}

.admin_btn_list {
  display: flex;
  justify-content: space-between;
  max-width: 594px;
  margin: 40px auto 0;
}
.admin_btn_list li {
  width: 47%;
}
.admin_btn_list .cmn_btn {
  width: 100%;
}

.admin_table04 {
  width: 100%;
}
.admin_table04 th {
  font-weight: bold;
  width: 100%;
  display: block;
  padding: 15px 15px 0;
}
.admin_table04 td {
  font-weight: bold;
  width: 100%;
  display: block;
  padding: 15px 15px 0;
}
.admin_table04 .select_list .select_wrap {
  width: 100%;
}

.admin_table04_wrap {
  display: flex;
  justify-content: space-between;
}

.admin_table04_box {
  width: 48%;
}

.input_date {
  border: 1px solid #cccccf;
  background: #ffffff;
  border-radius: 5px;
  padding: 9px;
  width: 100%;
}

.admin_table05 {
  width: 100%;
  border-collapse: collapse;
}
.admin_table05 tr {
  border-bottom: 1px dashed #e6e6e6;
}
.admin_table05 td:nth-child(1) {
  padding: 15px;
}
.admin_table05 td:nth-child(2) {
  width: 140px;
  padding-left: 20px;
}
.admin_table05 .status {
  display: block;
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 100px;
  margin-right: 0;
  margin-left: auto;
}
.admin_table05 .status01 {
  background: #cccccf;
}
.admin_table05 .status02 {
  background: #000;
  color: #fff;
}
.admin_table05 .date {
  font-weight: bold;
}
.admin_table05 .cate {
  display: inline-block;
  background: #eeeef0;
  padding: 0 5px;
  margin-left: 10px;
}
.admin_table05 p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 10px;
}

.admin_table06 {
  width: 100%;
  border-bottom: 1px dashed #e6e6e6;
}
.admin_table06 span {
  font-weight: bold;
}
.admin_table06 tr:nth-child(1) th {
  padding-top: 15px;
}
.admin_table06 td:nth-child(2) {
  width: 260px;
  padding-left: 10px;
  padding-bottom: 15px;
}
.admin_table06 .btn_list {
  display: flex;
}
.admin_table06 .btn_list li + li {
  margin-left: 10px;
}
.admin_table06 .status {
  display: block;
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 100px;
  margin-right: 0;
  margin-left: auto;
}
.admin_table06 .status01 {
  background: #cccccf;
}
.admin_table06 .status02 {
  background: #000;
  color: #fff;
}
.admin_table06 .date {
  font-weight: bold;
}
.admin_table06 .cate {
  display: inline-block;
  background: #eeeef0;
  padding: 0 5px;
  margin-left: 10px;
}
.admin_table06 .company {
  margin-right: 10px;
}
.admin_table06 .ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.admin_table06 .btn {
  display: block;
  width: 120px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background: #9bcbf0;
  border-radius: 100px;
  margin-right: 0;
  margin-left: auto;
  transition: 0.3s ease-in-out;
}
.admin_table06 .btn:hover {
  opacity: 0.7;
}

.admin_check {
  text-align: center;
  margin: 30px auto 0;
}

.admin_table_list {
  display: flex;
  justify-content: space-between;
}
.admin_table_list li {
  display: flex;
  align-items: center;
}
.admin_table_list li P {
  white-space: nowrap;
  margin-right: 10px;
}
.admin_table_list li input[type=text] {
  width: 160px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .admin {
    padding: 1px 0 40px;
  }
  .admin h2 {
    font-size: 18px;
    margin: 40px auto 20px;
  }
  .admin input[type=text] {
    display: block;
    border: 1px solid #cccccf;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    margin: 0 auto 10px;
  }
  .admin form {
    display: flex;
  }
  .admin .admin-ibtn {
    -moz-appearance: none;
    -webkit-appearance: none;
            appearance: none;
    border-radius: 0;
    border: none;
    outline: none;
    display: block;
    background: #000;
    border-radius: 100px;
    width: 80px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
  }
  .admin textarea {
    border: 1px solid #cccccf;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    height: 250px;
  }
  .admin_box {
    padding: 20px 10px;
  }
  .admin_box02 {
    margin-bottom: 30px;
  }
  .admin_table01 {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 15px;
    margin-top: -15px;
  }
  .admin_table01 th {
    width: 110px;
    padding: 15px 0;
  }
  .admin_table01 td {
    padding: 15px 0;
  }
  .admin_table01 td em {
    font-size: 24px;
  }
  .admin_list01 {
    font-weight: bold;
  }
  .admin_list01 li + li {
    margin-top: 10px;
  }
  .admin_table02 {
    font-size: 12px;
  }
  .admin_table02 thead th {
    line-height: 1.2;
  }
  .admin_table02 tbody td {
    text-align: center;
    padding: 15px 0;
  }
  .admin_table02 tbody .btn {
    width: 90px;
    font-size: 12px;
  }
  .admin_table03 th {
    padding: 15px 0 0;
  }
  .admin_table03 td {
    padding: 15px 0;
  }
  .admin_btn_list {
    margin: 20px auto 0;
  }
  .admin_btn_list li {
    width: 49%;
  }
  .admin_btn_list .cmn_btn {
    width: 100%;
    font-size: 14px;
  }
  .admin_table04 {
    width: 100%;
  }
  .admin_table04 th {
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 15px 15px 0;
  }
  .admin_table04 td {
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 15px 15px 0;
  }
  .admin_table04 .select_list .select_wrap {
    width: 100%;
  }
  .admin_table05 {
    width: 100%;
    border-collapse: collapse;
  }
  .admin_table05 tr {
    border-bottom: 1px dashed #e6e6e6;
  }
  .admin_table05 td:nth-child(1) {
    padding: 15px 0;
  }
  .admin_table05 td:nth-child(2) {
    width: 100px;
    padding-left: 10px;
  }
  .admin_table05 .status {
    width: 90px;
    font-size: 14px;
  }
  .admin_table06 {
    width: 100%;
    border-bottom: 1px dashed #e6e6e6;
  }
  .admin_table06 span {
    font-weight: bold;
  }
  .admin_table06 tr:nth-child(1) th {
    padding-top: 15px;
  }
  .admin_table06 td:nth-child(2) {
    width: 260px;
    padding-left: 10px;
    padding-bottom: 15px;
  }
  .admin_table06 .btn_list {
    margin-top: 10px;
  }
  .admin_table06 .status {
    width: 90px;
    font-size: 14px;
  }
  .admin_table06 .company {
    display: block;
  }
  .admin_table06 .name {
    display: block;
  }
  .admin_table06 .ttl {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .admin_table06 .btn {
    width: 90px;
  }
  .admin_table06 tr:nth-child(3) td {
    display: block;
    width: 100%;
  }
  .admin_check {
    margin: 20px auto 0;
  }
}/*# sourceMappingURL=style.css.map */


.withdrawal_txt {
  max-width: 600px;
  margin: 0 auto;
}

.withdrawal_txt p {
  margin-bottom: 20px;
}

/*article_details*/
.artcle
{
	margin: 5% 0;
}

.mainimg {
	display: flex;
	justify-content: center;
}

.mainimg img {
	width: 80%;
}

.articletitle
{
	text-align: center;
	font-size: large;
}

.articleprice
{
	text-align: center;
	font-size: xx-large;
	font-weight: bold;
}

#error-message
{
	text-align: center;
	font-size: large;
	font-weight: bold;
	color: #ff0000;
}
