/* ------------------------------------------
                COMMON STYLES
------------------------------------------ */

body {
  color: #262A32;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
	font-family: 'Inter', 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  word-wrap: break-word;
}

main {
  display: block;
}

input {
  -webkit-appearance: none;
  border-radius: 0px;
}

a {
  transition: 0.3s;
  color: #349997;
  text-decoration: none;
}

a:hover {
  color: #349997;
  opacity: .8;
}

.inner {
  max-width: 996px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1036px) {
  .inner {
    max-width: none;
    width: auto;
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
body {
  font-size: 15px;
}
  .inner {
    padding: 0 20px;
  }
}

.navi__title a {
  height: 98px;
  line-height: 98px;
  display: block;
  font-size: 2rem;
  color: #349997;
}

.navi__title a img {
  width: auto;
  height: 40px;
  line-height: 84px;
  padding: 29px 0px;
}

.navi__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.125rem;
  font-weight: bold;
}

.navi__list li {
  margin-right: 40px;
}

.navi__list li:last-child {
  margin-right: 0;
}

.navi__list li a {
	color: #262A32;
}

.sp-ul-header {
  display: none;
}

/* sp_navi */

.sp_gnav {
  display: none;
}

@media (max-width: 1036px) {
  .ul-header {
    padding-bottom: 0;
    display: none;
  }

  .sp-ul-header {
    height: 32px;
    width: calc(100% - 40px);
    text-align: center;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
    background-color: #ffffff;
  }

  .sp-ul-header .sp_ul__logo {
    height: 20px;
  }

  .sp-ul-header img {
    max-height: 20px;
    width: auto;
  }

  .sp_gnav {
    width: 100%;
    display: block;
    z-index: 100;
    position: fixed;
  }
  
  .menu {
    height: 20px;
    position: absolute;
    right: 20px;
    top: 14px;
    width: 30px;
    z-index: 200;
  }
  
  .menu__line {
    background: #262A32;
    display: block;
    height: 2px;
    position: absolute;
    transition: 0.3s;
    width: 100%;
  }
  
  .menu__line--center {
    top: 9px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
    background: #ffffff;
  }
  .menu__line--center.active {
    transform: scaleX(0);
    background: #ffffff;
  }
  .menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
    background: #ffffff;
  }

  .gnav {
    background: #349997df;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    top: 0;
    left: 0;
  }

  .gnav a {
    color: #ffffff;
  }
  
  .gnav__wrap {
    align-items: center;
    display: flex;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    justify-content: center;
    position: absolute;
    margin: 20px;
  }
  
  .gnav__menu {
    width: 100%;
  }

  .gnav__menu__item {
    margin: 28px 0;
  }
  .gnav__menu__item a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    transition: 0.3s;
  }
  .gnav__menu__item a:hover {
    opacity: .8;
  }
  
  .scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .gnav__menu__item a {
    font-size: 1rem;
  }
}

.footer__wrap {
  width: 100%;
  color: #ffffff;
  padding: 60px 0 80px 0;
	background-color: #000000;
}

.footer__wrap a {
  color: #ffffff;
}
.footer__wrap a:hover {
  opacity: .8;
}

.footer__scrollBtn {
  width: 40px;
  height: 24px;
  display: block;
  margin: 0 auto 52px;
  position: relative;
  cursor: pointer;
  text-indent: -9999px;
  transition: 0.3s;
  top: 0px;
}
.footer__scrollBtn:hover {
  height: 24px;
  opacity: .8;
  top: -4px;
}
.footer__scrollBtn:before, .footer__scrollBtn:after {
  content: "";
  width: 26px;
  height: 2px;
  top: 6px;
  background-color: #ffffff;
  display: block;
  position: absolute;
}
.footer__scrollBtn:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: -2px;
}
.footer__scrollBtn:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -2px;
}

.footer__naviWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.footer__navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  font-weight: bold;
}

.footer__navi li {
  margin-right: 40px;
}
.footer__navi li:last-child {
  margin-right: 0;
}
.footer__navi li a:hover {
  color: #349997;
}

.footer__copyright {
  font-size: 12px;
	text-align: center;
}

@media (max-width: 1036px) {
  .footer__naviWrap {
    display: block;
    margin-bottom: 40px;
    text-align: center;
    justify-content: center;
  }
  .footer__wrap {
    padding: 28px 0 40px 0;
  }
  .footer__navi {
    width: auto;
    margin: 0 auto 40px;
  }
  .footer__navi ul {
    justify-content: center;
  }

  .footer__navi li {
    margin-right: 20px;
  }
  .footer__sns {
    max-width: none;
    width: auto;
    text-align: center;
    justify-content: center;
  }
  .footer__contentsWrap {
    text-align: center;
    display: block;
  }
  .footer__sublist {
    margin: 0 0 20px 0;
    justify-content: center;
  }
  .footer__scrollBtn {
    margin-bottom: 28px;
  }
}

/*------------
    INDEX
------------*/

.index__navi {
  min-height: 100px;
  line-height: 100px;

    z-index: 100;
	position: relative;
}

.index__navi .inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index__navi a {
  height: 98px;
  line-height: 98px;
  display: block;
}

.index__navi a img {
  width: auto;
  height: 60px;
  line-height: 100px;
  padding: 20px;
}

.index__navi a:hover {
  color: #349997;
}

.index__navi__title {
  font-size: 2rem;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  opacity: .9;
  transition: 0.3s;
  background-color: #ffffff;
}

.is-fixed:hover {
  opacity: 1;
}

.index__main {
	top: -100px;
    position: relative;
    margin-bottom: -100px;
    pointer-events: none;
}

.index__main .index__main__inner {
    max-width: 996px;
    margin: 0 auto;
    position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: left;
}

.index__catchWrap {
  width: 528px;
  color: #262A32;
}

.index__catch {
    font-size: 80px;
    line-height: 1.2;
	font-family: 'Lato', sans-serif;
  letter-spacing: 6px;
  margin-bottom: 40px;
  font-weight: bold;
}

.index__catchTxt {
  line-height: 2;
  letter-spacing: 1.5px;
}

.index__important {
	position: relative;
	border-bottom: 1px solid #262A32;
	margin-bottom: 40px;
	z-index: 20;
    pointer-events: all;
    display: block;
}

.index__importantheader {
    width: 140px;
    height: 24px;
    text-align: center;
    color: #ffffff;
    display: block;
    background-color: #262A32;
    padding: 2px 0;
    position: absolute;
    left: 0;
    bottom: 0px;
}

.index__importantBody {
    display: block;
    padding: 2px 0;
    padding-left: 20px;
    margin-left: 140px;
    height: 24px;
    background-color: #ffffff99;
}

.index__importantBody a {
  color: #262A32;
}

.index__importantBody a:hover {
  color: #349997;
}

@media (max-width: 1036px) {
  .index__navi {
    display: none;
  }

  .index__main {
	top: 0px;
  	margin-bottom: 0;
  }
.index__main .index__main__inner {
  justify-content: space-around;
  height: auto;
}
  .index__catchWrap {
  width: 528px;
  margin: 32px 0 20px;
}
  .index__catch {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .index__main .inner {
    width: auto;
    height: 100%;
    display: block;
  }
  .index__main__scrollBtn {
    position: absolute;
    bottom: 160px;
    left: calc(50% - 30px);
  }
  .index__catchWrap {
    width: auto;
    margin: 0 0;
    padding: 40px 40px;
  }
  .index__catch {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .index__catchTxt {
    line-height: 2;
    letter-spacing: 1.5px;
  }
  .index__importantheader {
    position: relative;
  }
  .index__importantBody {
    height: auto;
    margin-left: 0;
    padding: 4px;
  }
}

.index__sectionWrap {
  padding: 80px 0 80px;
}

.index__sectionWrap.blockSection {
  padding: 0 0;
}

.index__section__header {
  text-align: center;
  margin-bottom: 40px;
}

.index__sectionWrap .index__section__title {
  font-family: Europa, sans-serif;
  font-weight: bold;
  font-size: 2rem;
  font-weight: bold;
  color: #262A32;
  letter-spacing: 6.5px;
  line-height: 2.5rem;
}

.index__sectionWrap .index__sectionWrap main .inner>p {
  margin: 0 auto;
  width: 800px;
  text-align: center;
}

.index__section__btn {
	position: relative;
    text-align: right;
    margin:  40px auto 0 auto;
}

.index__sectionWrap .index__section__btn a:after {
  content: "➡︎";
}

.index__sectionWrap .index_section_iconList {
  width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.index__sectionWrap .index_section_iconList li {
  text-align: center;
}

.index__sectionWrap .index_section_iconList i {
  font-size: 80px;
  color: #666666;
  display: block;
  margin-bottom: 40px;
}

.index__sectionWrap .index_section_iconList .iconList_title {
  font-weight: bold;
  font-size: 1.2rem;
  color: #666666;
}

.index__sectionWrap .index_section_iconList p {
  font-size: 0.75rem;
  margin-top: 20px;
}

.index__news {
  width: 720px;
  margin: 0 auto;
}

.index__news li {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.index__news li:last-child {
  margin-bottom: 0;
}

.index__news a {
  color: #262A32;
  transition: 0.3s;
}

.index__news a:hover {
  color: #349997;
}

.index__news .index__newsWrap {
  display: flex;
}

.index__news .index__news__dateWrap {
  width: 256px;
  display: flex;
  justify-content: space-between;
  margin-right: 32px;
}

.index__news__category {
  width: 128px;
  text-align: center;
}

.index__news .index__news__date {
  width: auto;
}

.index__news .index__news__text {
  width: 464px;
  display: contents;
}

.index__news__pdf {
    display: inline-block;
    margin-left: 1rem;
}

.index__news__pdf a {
    line-height: 12px;
    padding: 2px 12px;
    background-color: #d42313;
    color: #ffffff;
  font-weight: 600;
  transition: 0.3s;
}

.index__news__pdf a:hover {
    color: #ffffff;
	opacity: .8;
}

.index__sectionWrap.product {
  background-color:  #f7f6f4;
}

.index__sectionWrap.product .inner {
	max-width: 1160px;
}

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

.index__product__list li {
  width: 260px;
  height: 260px;
	margin-right: 40px;
  background-color: #ffffff;
	display: block;
    transition: 0.3s;
}
.index__product__list li:last-child {
	margin-right: 0px;
}

.index__product__list li:hover {
	opacity: 0.5;
  }

.index__productWrap {
  width: calc(260px - 2rem);
  height: 260px;
  padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: space-around
}

.index__productWrap img {
  width: 100%;
  height: auto;
}

.index__section__subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1.92px;
  font-family: Europa, sans-serif;
	margin-bottom: 1.5rem;
  color: #349997;
}

.inner.category {
    padding-top: 80px;
}

.index__product__dlWrap {
    display: flex;
	justify-content: space-around;
    flex-wrap: wrap;
}

.index__product__dlWrap a {
	color: #262A32;
}

.index__product__dlWrap a:hover {
	color: #349997;
}

.index__product__dl {
	width: calc(50% - 80px);
    margin-bottom: 40px;
}

.index__product__dl dt {
	font-weight: bold;
    font-family: Europa, sans-serif;
    position: relative;
    margin: 0px 0 1rem 0px;
}

.index__product__dl dt:after {
	content: "";
	width: calc(100% - 100px);
	height: 1px;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	background-color: #000000;
}

.index__product__dl dd {
	padding-left: 1rem;
    line-height: 1;
    margin-bottom: 12px;
}

.index__product__dl dd:before {
	content: "・";
}

.index__sectionWrap.seminar {
    background-image: url(https://saori830lala.movabletype.io/tophdeki/common/images/seminar_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
	 background-position: 0 -40px;
}

.index__sectionWrap.seminar .index__section__title {
    text-align: left;
}

.index__seminar {
	width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.seminar .inner {
	max-width: 1160px;
}

.index__seminar li {
	width: calc(100% / 3 - 27px);
    height: 270px;
    display: block;
    margin-right: 40px;
}

.index__seminar li:last-child {
    margin-right: 0px;
}

.index__seminarWrap {
    width: 100%;
    height: 270px;
    display: block;
    position: relative;
  transition: 0.3s;
border: solid 1px #707070;
}

.index__seminarWrap:hover {
	opacity: .5;
}

.index__seminar__dateWrap {
	width: calc(100% - 24px);
  background-color: #ffffffb0;
	position: absolute;
	padding: 12px;
	bottom: 0;
	color: #262A32;
}

.index__seminar__date {
  font-size: 12px;
}

.index__seminar__title {
  font-weight: 900;
}

.section_block {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  text-align: center;
}

.section_block img {
  width: 464px;
  height: auto;
}

.section_block h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 28px;
}

.section_block button {
  margin: 40px 0 0 0;
}

.section_block .section_block_inner {
  width: auto;
  padding: 0 120px;
  position: relative;
  text-align: left;
}

.section_block.imgBlock {
  padding: 52px 0;
}

.index__sectionWrap table {
  width: 800px;
  text-align: center;
  border-collapse: separate;
  border-spacing: 8px 0px;
  margin: 60px auto;
}

.index__sectionWrap table th {
  padding: 20px 20px;
  background-color: #f7f6f4;
}

.index__sectionWrap table th.point {
  background-color: #349997;
  color: #ffffff;
  font-weight: bold;
  height: 120%;
}

.index__sectionWrap table td {
  padding: 20px 20px;
  border-bottom: 1px solid #f7f6f4;
}

.index__sectionWrap table td.point {
  color: #349997;
  font-weight: bold;
}

@media (max-width: 1176px) {
  .index__product__list {
    justify-content: center;
    align-items: center;
  }
.index__product__list li {
    width: calc(100% / 2 - 10px);
    height: 200px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.index__product__list li:nth-child(2) {
    margin-right: 0;
}

.index__productWrap { 
    width: calc(100% - 2rem);
    height: 200px;
}

.index__seminar li {
    width: calc(100% / 2 - 20px);
    display: block;
    margin-right: 20px;
    margin-bottom: 20px;
}

.index__seminarWrap {
    width: 100%;
    height: 270px;
    display: block;
    position: relative;
  transition: 0.3s;
border: solid 1px #707070;
}

}

@media (max-width: 768px) {
  .index__section__header::after {
    margin: 16px auto 0 auto;
  }
.index__sectionWrap {
  padding: 40px 0;
}
  .index__sectionWrap .index__section__title {
    font-size: 27px;
    line-height: 1.25;
  }
  .index_section_iconList {
    width: auto;
    display: block;
  }
  .index_section_iconList p {
    margin-top: 0px;
  }
  .index__section__btn {
    margin-top: 20px;
  }

.index__product__list li {
    margin-right: 10px;
    height: 80px;
	padding: 10px 0;
}
.index__productWrap {
    height: 80px;
}
  .index__sectionWrap table {
    width: auto;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .index__sectionWrap table tbody {
    width: 100%;
    display: table;
  }
  .index__sectionWrap main .inner>p {
    margin: auto auto;
    width: auto;
    text-align: left;
  }
  .index__news {
    width: auto;
  }
  .index__news .index__newsWrap {
    display: block;
    margin-right: 0;
  }
  .index__news .index__news__dateWrap {
    font-size: 12px;
    margin-bottom: 4px;
    width: auto;
    justify-content: flex-start;
  }
  .index__news a .index__news__category {
    padding: 2px 4px;
    margin-right: 8px;
    margin-top: -4px;
  }
  
  .index__news .index__news__text {
    width: auto;
  }

.index__seminar li {
    width: calc(100%);
	margin-right: 0;
}

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

  .index__product__dl:last-child {
    margin-bottom: 0;
  }
}

/*------------------------
    ARCHIVES
------------------------*/
.ul-bg {
	background-image: url(https://saori830lala.movabletype.io/tophdeki/common/images/page_bg.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 0 -20px;
}

.archivesWrap {
  max-width: 996px;
  margin: 0 auto;
  margin-top: 60px;
  border-top: 1px solid #262A32;
  padding-top: 60px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.archives__main, .entry__main {
  width: 680px;
}

.archives__side, .entry__side {
  width: 215px;
  flex-shrink: 0;
}

.archives__header {
  font-size: 2.25rem;
  position: relative;
  margin-bottom: 40px;
  line-height: 1;
}

.entry__back {
  margin-top: 80px;
}

.archives__list>li {
  padding: 40px 0;
  border-bottom: 1px solid #CCCCCC;
}

.archives__list>li:first-child {
  padding-top: 0;
}

.archives__list>li:last-child {
  border: 0;
  padding-bottom: 0;
}

.archives__list li .archivesdata__wrap {
  margin-bottom: 4px;
  display: flex;
}

.archives__list li .archivesdata__date {
  margin-right: 1rem;
}

.archives__list li .archivesdata__genre {
  display: flex;
  flex-wrap: wrap;
}

.archives__list li .archivesdata__genre li {
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 0.75rem;
  background: #999999;
  border-radius: 2px;
  padding: 0px 6px;
  color: #ffffff;
  transition: 0.3s;
}

.archives__list li .archivesdata__genre li:hover {
  opacity: .5;
}

.archives__list li .archivesdata__genre li a {
  color: #ffffff;
}

.archives__list li .archives__list__title {
  font-weight: bold;
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.archives__list li .archives__list__text {
  margin-bottom: 40px;
}

.archives__list li .archives__list__btn {
  display: block;
  padding: 10px 48px;
  border-radius: 20px;
  border-width: 0px;
  color: #349997;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
}

.archives__list li .archives__list__btn:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #349997 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.archives__list li .archives__list__btn:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #ffffff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}

.archives__list li .archives__list__btn:hover {
  color: #ffffff;
  border: 0px;
}

.archives__list li .archives__list__btn:hover:after {
  opacity: 0;
}

.archives__pagination {
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #262A32;
}

.archives__pagination .next:after {
	content: "➡︎";
}

.archives__pagination .prev:before {
	content: "⬅︎";
}


.archives__pagination *:nth-child(2) {
  margin-left: 8px;
}

@media (max-width: 1036px) {
  .archivesWrap {
    display: block;
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .archives__main {
    width: auto;
  }
  .archives__list {
    margin-bottom: 60px;
  }
  .archives__list li .archives__cardWrap {
    display: block;
    margin: 0 20px;
  }
  .archives__list li .archives__list__title {
    font-size: 1.25rem;
  }
  .archives__list li .archives__list__text {
    margin-bottom: 21px;
  }

  .archives__pagination {
    padding: 40px 20px 0;
    margin-bottom: 40px;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
.archivesWrap {
  padding-top: 40px;
}
  .archives__header {
    font-size: 1.5rem;
  }
  .archives__list li .archives__list__btn {
    width: 100%;
  }
}

/*------------------------
    ENTRY
------------------------*/

.entry__header .inner {
  height: 188px;
  display: flex;
  align-items: center;
}

.entry__articletitle {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 1.6px;
  font-weight: bold;
  color: #262A32;
  text-align: center;
  margin: 0 auto;
}

.entrydata__wrap {
  align-items: center;
  margin-top: 8px;
}

.entrydata__date, .entrydata__pdf {
  display: block;
  text-align: center;
}

.entrydata__genre {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 8px;
}

.entrydata__genre li {
  margin-right: 4px;
  background-color: #999999;
  padding: 0 6px;
  margin-bottom: 4px;
  transition: 0.3s;
}

.entrydata__genre li:hover {
  opacity: 0.5;
}

.entrydata__genre li a, .entrydata__genre li:hover a {
  color: #ffffff;
}

.entry__title {
	font-size: 80px;
 	line-height: 1;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	margin-top: 80px;
}

.entry__title .entry__title--caps {
  font-size: 16px;
	margin-left: 20px;
}

.entryWrap {
  width: 996px;
  margin: 0 auto;
  margin-top: 60px;;
  padding-top: 60px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  border-top: 1px solid #262A32;
}

.entry__body {
	margin-top: 80px;
  width: auto;
}

.entry__side__header {
  width: auto;
  height: 40px;
  padding: 0 12px;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 32px;
  background-color: #262A32;
}

.entry__side__list {
  margin-bottom: 60px;
  margin-left: 12px;
}

.entry__side__list:last-child {
  margin-bottom: 0;
}

.entry__side__list li {
  margin-bottom: 24px;
  position: relative;
  line-height: 1;
}

.entry__side__list li:last-child {
  margin-bottom: 0;
}

.entry__side__list li.catdepth-2, .entry__side__list li.catdepth-3 {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 20px;
}

.entry__side__list li .nolink {
  color: #666666;
}

.entry__side__list li.catdepth-2:before, .entry__side__list li.catdepth-3:before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  position: absolute;
  top: -4px;
  left: -16px;
  border-left: #CCCCCC 1px solid;
  border-bottom: 1px solid #CCCCCC;
}

@media (max-width: 1036px) {
  .entry__header .inner {
    height: 120px;
  }
  .entryWrap {
    width: auto;
    max-width: none;
    display: block;
    margin-top: 40px;
  }

  .entrydata__wrap {
    padding: 0 20px;
  }

  .entry__main {
    width: auto;
    margin-bottom: 60px;
  }

  .entry__body {
    margin: 40px 0 80px;
  }

  .entry__articletitle {
    font-size: 1.75rem;
    font-weight: bold;
  }

  .entry__side {
    width: auto;
    margin: 0;
  }
  .entry__side__header {
    padding: 0 20px;
  }
  .entry__side__list {
    margin: 0 20px 40px;
  }
  .entry__side__list li:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .entry__title {
    font-size: 1.75rem;
    margin-top: 40px;
  }
}

/*------------------------
    WEBPAGE
------------------------*/
article {
  margin: 0 0 60px;
}

.page__main {
  max-width: 996px;
  margin: 64px auto 100px;
  padding: 0rem 0 0rem 0;
  position: relative;
}

.pageContents__main {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.page__header {
  width: 100%;
  color: #ffffff;
  z-index: 0;
  overflow: hidden;
  background-color: #349997;
  position: relative;
}

.page__header .inner {
  height: 188px;
  display: flex;
  align-items: center;
}

.pageContents__header {
  width: 100%;
  height: 580px;
  background-color: #349997;
  color: #ffffff;
  display: table;
  table-layout: fixed;
}

  /* コンテンツ - 背景画像あり */
  .pageContents__bg-titleWrap {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-left: 120px;
    padding-right: 40px;
    text-align: left;
  }
  /* コンテンツ - 背景画像なし */
  .pageContents__titleWrap {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-left: 120px;
    padding-right: 40px;
    text-align: left;
  }
  
.page__title {
	font-size: 60px;
 	line-height: 1.25;
	font-weight: bold;
	margin-top: 80px;
}
.page__title span {
	font-size: 60px;
    margin: 0 12px;
}

.page__title .page__title--caps {
  font-size: 16px;
	margin-left: 20px;
}

.page__main .corporate__table {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
    flex-wrap: wrap;
}

.page__main .corporate__table dt {
    width: 80px;
	margin: 0 80px 1rem 0;
}

.page__main .corporate__table dd {
    width: calc(100% - 160px);
	margin: 0 0 1rem 0;
}

.corporate__navi {
	font-size: 1.75rem;
	padding-bottom: 12px;
	border-bottom: solid 1px #262A32;
	margin-bottom: 80px;
	display: flex;
	letter-spacing: 3.6px;
}

.page__back a:before {
  content: "⬅︎";
}

.corporate__navi li a {
	color:  #262A32;
}
.corporate__navi li a.active {
	color:  #349997;
}

.corporate__navi li:after {
    content: "/";
    padding: 0 0.5rem;
}
.corporate__navi li:last-child:after {
    content: "";
}

.products__main {
	max-width: 100%;
    margin: 64px auto 20px;
    padding: 0rem 0 0rem 0;
    position: relative;
}

.products__wrap {
	border-top: solid 1px #212121;
}

.products__brand {
}

.products__brand:nth-child(2n) {
  background-color: #f7f6f4;
}

.products__brand .inner {
    max-width: 800px;
	padding: 80px 0;
}

.products__brand img {
	text-align: center;
	display: block;
	margin: 0 auto 12px;
}

.products__brand .brands__shoulder {
	text-align: center;
  font-weight: bold;
  color: #004b9a;
  margin-bottom: 1rem;
}

.products__brand.mtnet  .brands__shoulder {
  color: #349997;
}

.products__brand.lekumoblog  .brands__shoulder {
  color: #A59ACA;
}

img.products__img--mt {
    width: 600px;
}

img.products__img--mtnet {
    width: 720px;
}
img.products__img--form {
    width: 380px;
}
img.products__img--sitesearch {
    width: 500px;
    margin-bottom: -0.5rem;
}
img.products__img--lekumoblog {
    width: 520px;
}
.ul-bggray {
	background-color : #f7f6f4; 
}

.seminar__header {
	height: 280px;
    background-color: #f7f6f4;
    display: flex;
    align-items: center;
}

.seminar__header .page__title {
	margin-top: 0;
}

.seminar__list {
	margin-top: 80px;
}



.pageContents__bg-title, .pageContents__title {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 11.2px;
  font-weight: bold;
}

@media (max-width: 1036px) {
  .page__main {
    max-width: 100%;
    box-sizing: border-box;
  }
  .pageContents__header {
    height: 280px;
  }
  .pageContents__titleWrap {
    padding: 0 40px;
  }
  .pageContents__bg-titleWrap {
    width: 40%;
    padding-left: 40px;
    padding-right: 20px;
  }
  .pageContents__title {
    letter-spacing: 6px;
  }
  .page__folder {
    max-width: 100%;
    padding: 64px 20px 36px;
  }
  .page__folderList {
    display: block;
  }
  .page__folderList li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .page__folderTitle {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
.products__brand .inner {
    padding: 40px 20px;
}

.products__brand img {
	width: 75%;
	margin: 0 auto;
	margin-bottom: 12px;
}

.products__brand img.products__img--form {
	width: 50%;
}

.seminar__header {
	height: 120px
}

  .page__header .inner {
    height: 120px;
    box-sizing: border-box;
  }
  .page__title {
    margin-top: 60px;
    font-size: 1.5rem;
    letter-spacing: 4px;
  }
  .page__title span {
    font-size: 1rem;
    letter-spacing: 0;
    margin: 0 4px;
  }

  .page__main {
    margin: 40px 0 80px;
  }
  
  .pageContents__header {
    width: auto;
    height: 120px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
  }
  
  .pageContents__bg-header {
    display: table;
    padding: 0px;
  }
  .pageContents__titleWrap {
    padding: 0;
    display: block;
    width: auto;
  }
  .pageContents__title, .pageContents__bg-title {
    font-size: 1.5rem;
    letter-spacing: 4px;
    z-index: 10;
    position: relative;
  }

.seminar__list {
	margin-top: 40px;
}


.corporate__navi {
	font-size: 1.25rem;
	padding-bottom: 0.5rem;
	margin-bottom: 40px;
	letter-spacing: normal;
}
.page__main .corporate__table dt {
    width: 80px;
	margin: 0 20px 1rem 0;
}
.page__main .corporate__table dd {
	width: calc(100% - 100px);
}

}

/*------------
  breadcrumbs
------------*/
.pankuzu nav {
  max-width: 996px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

.pankuzu .pankuzu__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #666666;
}

.pankuzu .pankuzu__list li:after {
  content: ">";
  margin: 0 8px;
}

.pankuzu .pankuzu__list li:last-child:after {
  display: none;
}

@media (max-width: 1036px) {
  .pankuzu nav {
    padding: 20px;
  }
}

/*------------
    WYSIWYG
------------*/

.wysiwyg:last-child {
  margin-bottom: 0;
}

.wysiwyg {
  word-wrap: break-word;
}

.wysiwyg h1 {
  max-width: 730px;
  width: auto;
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 3.84px;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px
  margin-bottom: 60px;
}

.wysiwyg h2 {
  font-size: 2rem;
  color: #349997;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 2.25px;
  margin-bottom: 20px;
}

.wysiwyg h3 {
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: bold;
  padding-left: 12px;
  border-left: 4px #349997 solid;
  margin-bottom: 20px;
}

.wysiwyg h4 {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: bold;
  color: #666666;
  margin-bottom: 20px;
}

.wysiwyg h5 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #666666;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.wysiwyg *+h1, .wysiwyg *+h2, .wysiwyg *+h3, .wysiwyg *+h4, .wysiwyg *+h5, .wysiwyg *+table, .wysiwyg *+ul, .wysiwyg *+ol, .wysiwyg *+hr {
  margin-top: 40px;
}

.wysiwyg *:first-child {
  margin-top: 0;
}

.wysiwyg strong {
  font-weight: bold;
  background-color: #ecf4f8;
  color: #349997;
}

.wysiwyg p {
  margin: 20px 0;
}

.wysiwyg a {
  color: #349997;
  text-decoration: underline;
}

.wysiwyg a:hover {
  color: ;
}

.wysiwyg strong {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.wysiwyg hr {
  height: 0px;
  margin: 20px 0;
  border: none;
  border-top: 1px solid #CCCCCC;
}

.wysiwyg .underline {
  text-decoration: underline;
}

.wysiwyg .linethrough {
  text-decoration: line-through;
}

.wysiwyg blockquote {
  margin-bottom: 2rem;
  padding: 28px 30px;
  color: #666666;
  display: block;
  position: relative;
  background-color: #f7f6f4;
}

.wysiwyg blockquote::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  top: 0px;
  left: 0;
  background-color: #CCCCCC;
  position: absolute;
}

.wysiwyg blockquote p:first-child {
  margin-top: 0;
}

.wysiwyg ul {
  margin-bottom: 20px;
  margin-left: 1rem;
}

.wysiwyg ul li {
  margin-right: 1rem;
  position: relative;
}

.wysiwyg ul li::before {
  content: "●";
  position: absolute;
  font-size: 6px;
  left: -1rem;
  top: 6px;
  color: #349997;
  margin-right: 0.5rem;
}

.wysiwyg ol {
  margin-bottom: 20px;
}

.wysiwyg ol li {
  list-style: decimal;
  list-style-position: inside;
}

.wysiwyg ol.alphabet li {
  list-style-type: upper-alpha;
  list-style-position: inside;
}

.wysiwyg ol.alphabet-small li {
  list-style-type: lower-latin;
  list-style-position: inside;
}

.wysiwyg ol.hiragana li {
  list-style-type: hiragana;
  list-style-position: inside;
}

.wysiwyg dl {
  margin: 1em;
}

.wysiwyg dl dt {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.wysiwyg dl dd {
  margin: 0 0 1em 2em;
}

.wysiwyg button {
  max-width: 100%;
  min-width: 400px;
  display: inline-block;
  padding: 12px 72px;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.wysiwyg table {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

.wysiwyg table th, .wysiwyg table td {
  padding: 18px 0;
  border-bottom: 1px solid #f7f6f4;
  border-top: 1px solid #f7f6f4;
}

.wysiwyg table th {
  background-color: #349997;
  color: #ffffff;
}

.wysiwyg pre {
  background-color: #f7f6f4;
  white-space: pre-wrap;
  word-break: break-all;
  padding: 1rem;
  margin: 0 0 20px 0;
}

.wysiwyg>*:last-child {
  margin-bottom: 0;
}

/* Contents */

.pageContents__wysiwyg section {
  background-color: #ffffff;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 84px 20px;
}

.pageContents__wysiwyg section:nth-child(2n+1) {
  background-color: #ecf4f8;
}

.pageContents__wysiwyg .pageContents__Wrap>*:last-child {
  margin-bottom: 0;
}

.pageContents__wysiwyg .pageContents__Wrap>*:first-child {
  margin-top: 0;
}

.pageContents__wysiwyg .pageContents__Wrap {
  width: 996px;
  margin: 0 auto;
}

.pageContents__wysiwyg .partition .pageContents__Wrap {
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}

.pageContents__wysiwyg .partition .pageContents__Wrap>* {
  width: 100%;
  height: auto;
  margin-right: 40px;
}

.pageContents__wysiwyg .partition .pageContents__Wrap>*:last-child {
  margin-right: 0;
}

.pageContents__wysiwyg .partition h1, .pageContents__wysiwyg .partition h2, .pageContents__wysiwyg .partition h3, .pageContents__wysiwyg .partition h4, .pageContents__wysiwyg .partition h5 {
  margin-right: 0;
  margin-top: 0;
}

.pageContents__wysiwyg section:nth-child(2n+1) pre {
  background-color: #ffffff;
}

.pageContents__wysiwyg .linebg {
  width: 100%;
  height: 200px;
  padding: 0px;
  overflow: hidden;
}

.pageContents__wysiwyg .linebg .pageContents__Wrap {
  width: 100%;
}

.pageContents__wysiwyg .linebg img {
  width: 100%;
  height: auto;
}

@media (max-width: 1036px) {
  .wysiwyg {
    padding: 0 0;
  }
  .wysiwyg h1, .wysiwyg h2, .wysiwyg p {
    max-width: none;
    width: auto;
  }
  .wysiwyg h1 {
    font-size: 1.75rem;
    font-weight: bold;
  }
  .wysiwyg h1:after {
    width: 60px;
    height: 4px;
    margin: 20px auto 32px;
  }
  .wysiwyg h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .wysiwyg h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .wysiwyg h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
  .wysiwyg button {
    max-width: none;
    min-width: auto;
    width: 100%;
    display: inline-block;
    padding: 12px 0;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    margin: 0 auto 40px;
    font-size: 1em;
  }

  .wysiwyg pre {
    padding: 16px;
  }
  .wysiwyg table {
    width: auto;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .wysiwyg table tbody {
    width: 100%;
    display: table;
  }
  .wysiwyg blockquote {
    padding: 16px 20px;
  }

  .pageContents__wysiwyg {
    padding: 0 0;
  }

  .pageContents__wysiwyg .pageContents__Wrap {
    width: auto;
  }

  .pageContents__wysiwyg button {
    width: 100%;
  }

  .pageContents__wysiwyg section {
    padding: 40px 20px;
  }

  .pageContents__wysiwyg p {
    max-width: none;
  }
  .pageContents__wysiwyg dl {
    max-width: none;
  }
  .pageContents__wysiwyg dl dd {
    display: block;
    padding: 0;
    margin-bottom: 20px;
  }
  .pageContents__wysiwyg button {
    margin: 40px auto 0;
    padding: 12px 32px;
  }
  .pageContents__wysiwyg .pageContents__Wrap {
    width: 100%;
    margin: 0 auto;
  }
  .pageContents__wysiwyg .linebg {
    height: 140px;
  }
}

@media (max-width: 768px) {
  .pageContents__wysiwyg .partition .pageContents__Wrap {
    display: block;
  }
  .pageContents__wysiwyg .partition .pageContents__Wrap>* {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .pageContents__wysiwyg .partition .pageContents__Wrap>*:last-child {
    margin-bottom: 0;
  }
}

/*------------------------
    404 notfound
------------------------*/

.notfoundWrap {
  width: 100%;
  height: 570px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 center;
  z-index: 0;
  overflow: hidden;
  /*半透明カラーの色*/
  position: relative;
  display: flex;
  align-items: center;
}

.notfoundWrap:before {
  content: '';
  
  background-size: cover;
  background-position: center center;
  /*半透明カラーの透明度*/
  opacity: 0.5;
  /*ぼかし度*/
  -webkit-filter: blur(10px);
          filter: blur(10px);
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: -1;
}

.notfound_title {
  font-size: 2rem;
  letter-spacing: 12px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .notfoundWrap {
    height: 50vh;
  }
  .notfound_title {
    font-size: 2em;
    letter-spacing: 12px;
  }
}

/* search area */

.mt-site-search-form {
  display: flex;
  justify-content: flex-end;
  margin: 16px auto;
}

.mt-site-search-form__query {
  width: 204px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #ffffff;
}

.mt-site-search-form__button {
  width: 80px;
  height: 32px;
  margin-left: 0px;
  border: 1px solid #ffffff;
  border-width: 1px 1px 1px 0px;
  background-color: inherit;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}

.mt-site-search-form__button:hover {
  background-color: #ffffff99;
}

@media (max-width: 1036px) {
  .mt-site-search-form {
    justify-content: center;
  }
}

/*-------------
  webpush
-------------*/
.webpush {
display: none;
}

.mtnet-push-notification-service-enabled .webpush {
  display: block;
  padding: 12px 20px;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(to left, #349997, #00437c);
  transition: 0.3s;
}

.webpush:hover {
  opacity: .8;
}

.webpush span {
  font-size: 0.87rem;
}
.webpush span:before {
  content: "\f0f3";
  font-size: 1.25em;
  margin-right: 2px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.25em;
}

@media (max-width: 1036px) {
  .side-webpush {
    padding: 0 20px;
  }
}


.swiper-container {
	z-index: 0 !important;
    position: absolute !important;
    width: 100%;
	height: 700px;
    top: 0px;
    left: 0;
	overflow: hidden;
}

.slide-img img {
	width: 100%;
}

.swiper-slide.slide01 {
	background: url("https://inoue.sample-web.biz/common/images/mv01.png") no-repeat bottom center;
    background-size: cover;
}
.swiper-slide.slide02 {
	background: url("https://inoue.sample-web.biz/common/images/mv02.png") no-repeat bottom center;
    background-size: cover;
}
.swiper-slide.slide03 {
	background: url("https://inoue.sample-web.biz/common/images/mv03.png") no-repeat bottom center;
    background-size: cover;
}


.swiper-button-prev, .swiper-button-next {
    width: 28px !important;
    background-color: black !important;
    padding: 8px 2px;
    color: #ffffff !important;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 24px !important;
}


@media (max-width: 1176px ) {
	.swiper-container {
    	height: 500px;
	}
	.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
		right: 0px !important;
	}
	.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
		left: 0px !important;
	}
}

