* {
  user-select: none;
}

body{
  overflow-x: hidden;
}

header {
  width: 100%;
  background: #fff;
  height: 100px;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.05);
}

header .inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

header h1 img {
  vertical-align: bottom;
  padding: 20px 0;
}

header .inner ul {
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
    display: flex;
}

header .inner ul li {
    margin-left: 40px;
    color: #8d8d8d;
    font-weight: bold;
    font-size: 1.5rem;
}

header .inner ul li a{
	color:#1c1c1c;
}


br.sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  header {
    padding: 0 3%;
    box-sizing: border-box;
  }

}

@media screen and (max-width: 767px) {
  header {
    height: auto;
    text-align: center;
  }

  header .inner{
	  display: block;
	}

	header h1{
	width: 100%;
    text-align: center;
	}

  header h1 img {
    padding: 10px;
    width: 180px;
  }

  header .inner ul {
	background:#fff;
	flex-wrap: wrap;
}

  header .inner ul li{
	margin:8px 0;
	width:50%;
	font-size:1.4rem;
	line-height:1.2;
	}

header .inner ul li a {

}


  br.sp {
    display: block;
  }
}

section#title {
  text-align: center;
  background: url("../img/head_img.jpg") center no-repeat;
  color: #fff;
  background-size: cover;
  height: 318px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section#title h2 {
  width: 1170px;
  margin: 0 auto;
  font-size: 7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 1rem;
  padding-left: 1rem;
  line-height: 1;
  padding-bottom: 1.6rem;
}

section#title h2 span {
  font-weight: 700;
  display: inline-block;
  padding-right: 3rem;
}

section#title h2 img {
  max-width: 500px;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

section#title p {
  font-size: 1.8rem;
  line-height: 1.6;
}

section#title p br {
  display: none;
}

@media screen and (max-width: 1280px) {
  section#title {
    padding: 0 2%;
  }

  section#title h2 {
    max-width: 1170px;
    width: 100%;
    padding-left: 0;
  }

  section#title h2 span {
    display: block;
    padding-right: 0;
    padding-bottom: 1rem;
  }

  section#title p br {
    display: inherit;
  }
}

@media screen and (max-width: 767px) {
  section#title {
    height: 180px;
  }

  section#title h2 {
    font-size: 3.5rem;
    letter-spacing: 0.5rem;
  }

  section#title h2 img {
    max-width: 250px;
  }

  section#title p {
    font-size: 1.3rem;
  }
}

section#guide{
	padding:0 3%;
}

section#guide .bannerArea{
  max-width: 1170px;
	margin:20px auto;
}
section#guide .bannerArea a{
  display: inline-block;
  transition: all 0.3s ease 0.1s;
}
section#guide .bannerArea a:hover{
	opacity: 0.7;
}
section#guide .bannerArea a+a{
  margin-top: 10px;
}
section#guide .bannerArea img{
  max-width: 100%;
}

section#guide ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	max-width: 1170px;
	margin:10px auto 30px;
}

section#guide ul li:not(:last-child){
	margin-right:15px;
}

section#guide ul li{
	transition: all 0.3s ease 0.1s;
	margin-top:20px;
}

section#guide ul li:hover{
	transition: all 0.3s ease 0.1s;
	opacity: 0.7;
}


section#guide ul li a{
	display: table-cell;
	justify-content: space-between;
	color:#fff;
	font-size:1.6rem;
	padding:0px 20px;
	height:70px;
	background: #0075a3;
	box-sizing:border-box;
	vertical-align: middle;
}

section#guide ul li a span{
	display: inline-block;
	vertical-align: middle;
/*display: grid;
    flex-wrap: wrap;
    align-content: center;*/
}

section#guide ul li a img{
	margin-left:10px;
	vertical-align: middle;
	height:64px;
	width:auto;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  height: 233px;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  cursor: pointer;
  font-size:3.0rem;
}


#modalArea .modalContents{
	width:380px;
	margin:0 auto;
}


#modalArea .title {
  width: 100%;
  font-size: 2.4rem;
  font-weight: bolder;
}

#modalArea .btn {
  margin-top: 25px;
}

#modalArea .btn a {
  font-size: 2rem;
  width: 150px;
  line-height: 50px;
  display: inline-block;
  background: #18739f;
  text-decoration: none;
  color: #fff;
  margin: 0 20px;
}

@media screen and (max-width: 836px) {
.modalWrapper {
    max-width: 90%;
    width: auto;
    height: 245px;
  }


#modalArea .title {
    width: 100%;
  }
#modalArea .btn {
    margin-top: 0;
  }
#modalArea .btn a {
    width: 80%;
    margin-top: 20px;
  }

.closeModal {
  top: 0.2rem;
  right: 2rem;
  font-size:3.0rem;
}

}


@media screen and (max-width: 767px) {

section#guide .bannerArea{
  width: 100%;
  max-width: inherit;
	margin: 10.666666vw auto;
}
section#guide .bannerArea img{
  max-width: 100%;
}

section#guide ul{
  margin: 0 auto 6.666666vw;
	/*padding: 0 3%;
	justify-content: space-around;
	text-align: center;*/
}

section#guide ul li{
	width:100%;
  margin-top: 0;
}

section#guide ul li:not(:last-child){
  margin-bottom: 4vw;
	margin-right:0;
}

section#guide ul li a{
	display: flex;
	font-size:1.7rem;
	justify-content: space-between;
    align-items: center;
	/*font-size:1.6rem;*/
}

section#guide ul li a span{
}

}


section#information {
  padding: 0 3%;
}

section#information dl {
  border: 3px solid #0075a1;
  padding: 7px 15px;
  background: #fff;
  font-size: 1.6rem;
  max-width: 1170px;
  width: 100%;
  margin: 30px auto 40px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

section#information dl dt {
  display: inline-block;
  width: 225px;
  padding: 8px 0;
  line-height: 1;
}

section#information dl dd {
  display: inline-block;
  width: calc(100% - 225px);
  padding: 8px 0;
}

section#information dl dt span {
  width: 100px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 21px;
  margin: 0 0 0 15px;
  vertical-align: 1px;
}

section#information dl dt span.society {
  background: #c0b002;
}

section#information dl dt span.info {
  background: #0075a1;
}

@media screen and (max-width: 767px) {
  section#information dl {
    font-size: 1.4rem;
    margin: 30px auto 10px;
    display: block;
  }

  section#information dl dt {
    display: inline-block;
    width: 100%;
    padding: 8px 0 0;
  }

  section#information dl dd {
    display: inline-block;
    width: 100%;
    padding: 5px 0 8px;
  }
}

section#list {
  max-width: calc(1170px + 6%);
  width: 100%;
  margin: 0 auto;
  padding: 0 3%;
}

.menu{
  position: -webkit-sticky;
    position: sticky;
	z-index: 90;
	/*margin: 0 calc(50% - 50vw);
	width: 100vw;*/
}

.bg{
	background:#fff;
}

.menu .select {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  margin: 0 auto 20px;
  padding:20px 0;
  height: 100%;
  max-width: 1170px;
  justify-content: space-between;
}

.menu .select::after,
.menu .select::before{
  content: "";
  display: block;
  width: 24%;
  height: 0;
}

.menu .select::before {
   order: 1;
    }

div .banner {
  width: 100%;
  background-color: #fff;
  padding: 25px;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  margin-left: 1.75%;
  margin-right: 1.75%;
}

div .banner h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

div .banner h4 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  line-height: 1;
}

div .banner ul + h4 {
  padding-top: 1rem;
}

/* div .banner ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

div .banner ul li:nth-child(1),
div .banner ul li:nth-child(4),
div .banner ul li:nth-child(7) {
  width: 28%;
}

div .banner ul li:nth-child(2),
div .banner ul li:nth-child(5),
div .banner ul li:nth-child(8) {
  width: 34%;
}

div .banner ul li:nth-child(3n) {
  width: 34%;
} */

div .banner .mq_inline_list li {
  display: inline-block;
  padding-right: 2em;
}

@media screen and (max-width: 767px) {
  div .banner .mq_inline_list li {
    display: block;
    padding-right: 0;
  }
}

div .banner ul li a {
  font-size: 1.5rem;
  display: inline-block;
  padding: 10px 0 10px 22px;
  transition: .3s;
  background: url("../img/pdf.png") no-repeat left 10px;
  background-size: 18px;
  line-height: 1.5;
}

div .banner ul li a:hover {
  opacity: .7;
}
@media screen and (max-width: 767px) {

  div .banner ul {
    display: block;
    margin-top: 15px;
  }

  div .banner ul li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  div .banner ul li a {
    padding: 2px 0 0 22px;
    background: url("../img/pdf.png") no-repeat left 2px;
    background-size: 18px;
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  div .banner ul li a {
    width: 100% !important;
    font-size: 1.4rem;
  }
}

.is-hide {
  display: none !important;
}

.is-banner-active {
  display: block !important;
}

.menu .select > span {
  width: 24%;
  font-size: 1.6rem;
  background: #fff;
  border: 1px solid #0075a1;
  transition: 0.3s;
  cursor: pointer;
  line-height: 1.5;
  height:60px;
/*  padding: 15px 5px;*/
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
}
.menu.ostomy .select > span {
  width: 18.97435897%;
  height:80px;
}

.menu.ostomy .select > span .is-recovery {
  font-size: 100%;
}

.menu.ostomy .select > span .is-new_label {
  background: #db3333;
  font-size: 1.1rem;
  width: 40px;
  line-height: 15px;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-left: 0.5rem;
  vertical-align: 1px;
}

.menu .select span span{
  font-size:80%;
}

.menu .select > span:hover {
  background: #d9e8ee;
}

.menu .select > span.is-active {
  background: #0075a1;
  color: #fff;
  position:relative;
}

.menu .select > span.is-active:after{
  content:"";
  width:24px;
  height:24px;
  background: #0075a1;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index:-1;
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu .select > span.recovery{
  display:flex;
  align-items:center;
}
.menu .select > span.recovery:before{
  content:"";
  width: 22.52252252%;
  /* height: 62.5%; */
  height: 55%;
  margin-right:8px;
  background:url("../img/logo_me.png") no-repeat center/contain;
}

@media screen and (max-width: 767px) {
  .menu .select {
    margin:0;
    padding: 8vw 0;
  }

  .menu .select > span,
  .menu.ostomy .select > span {
    width: 49%;
    height: 8vw;
    padding: 0.666666vw;
    margin-top: 2vw;
  }

  .menu .select > span,
  .menu.ostomy .select > span .is-new_label {
    font-size: 1rem;

  }

  .menu .select > span.is-active:after{
    display:none;
  }

  .menu .select > span:nth-child(1),
  .menu .select > span:nth-child(2) {
    margin-top: 0px;
  }
  
  .menu .select > span.recovery:before{
    width: 9vw;
    height:9vw;
    /* width: 10vw; */
    /* height:10vw; */
    margin-right: 1vw;
  }
}

@media screen and (max-width: 480px) {
  .menu .select > span {
    margin-top: 10px;
    font-size: 1.4rem;
    min-height: 55px;
  }
}


p.text{
	margin-top:-20px;
	margin-bottom:40px;
	color:#ff33ff;
	font-size:1.6rem;
}

@media screen and (max-width: 767px) {
	p.text{
		margin-top:-2.66667vw;
		margin-bottom:5.33333vw;
	}
	
}

section#list .channel {
  display: flex;
  flex-wrap: wrap;
  flex-flow: row wrap;
  width: 103.5%;
  margin-left: -1.75%;
  margin-right: -1.75%;
}

section#list .channel.duo_dl {
  display: none;
}

section#list .channel.duo_dl.is-active {
  display: flex;
}

section#list .channel > a {
  width: 29.8%;
  background: #fff;
  position: relative;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
  color: #1f1f1f;
  flex-direction: column;
  display: flex;
  margin-left: 1.75%;
  margin-right: 1.75%;
}

section#list .channel > a .img {
  overflow: hidden;
  text-align: center;
}

section#list .channel > a .img img {
  vertical-align: bottom;
  transition: 0.5s;
  width: 100%;
}

section#list .channel > a:hover .img img {
  transform: scale(1.1);
}

section#list .channel .box {
  padding: 15px;
  flex-grow: 1;
}

section#list .channel span {
  font-size: 1.4rem;
}

section#list .channel .box span.day.new:after {
  content: "NEW";
  background: #db3333;
  font-size: 1.1rem;
  width: 40px;
  line-height: 15px;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-left: 0.5rem;
  vertical-align: 1px;
}

section#list .channel .box p {
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 0.5rem;
}

section#list .channel span.name {
  display: block;
  padding: 0 15px 15px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .menu .select ul {
    margin-bottom: 30px;
  }

  .menu .select ul {
    justify-content: space-between;
  }

  .menu .select ul li {
    margin-right: 0;
    width: 48%;
    margin-top: 10px;
  }

  .menu .select ul li:nth-child(1),
  .menu .select ul li:nth-child(2) {
    margin-top: 0;
  }

  section#list .channel a {
    width: 46.5%;
    margin-bottom: 20px;
  }

  section#list .channel a:hover .img img {
    transform: scale(1);
  }

  section#list .channel .box {
    padding: 10px;
  }

  section#list .channel span {
    font-size: 1.2rem;
  }

  section#list .channel .box span.day.new:after {
    font-size: 1rem;
  }

  section#list .channel .box p {
    font-size: 1.5rem;
    line-height: 1.4;
    padding-top: 0.3rem;
  }

  section#list .channel span.name {
    padding: 0 10px 10px;
  }
}

section#detail {
  padding: 80px 3%;
  max-width: calc(1170px + 6%);
  width: 100%;
  margin: 0 auto;
}

section#detail h2 {
  position: relative;
  border-left: 10px solid #0075a1;
  border-bottom: 1px solid #dbdbdb;
  font-size: 2.8rem;
  padding: 3.2rem 2rem 1.2rem;
  line-height: 1.3;
}

section#detail h2 span.day {
  font-size: 1.6rem;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

section#detail h2 span.name {
  display: block;
  font-size: 1.8rem;
  padding-top: 1rem;
  line-height: 1.3;
  text-align: right;
}

section#detail .mov {
  text-align: center;
  margin: 50px auto 60px;
}

section#detail .mov video {
  width: 100%;
  cursor: pointer;
  outline: none;
}

video::-internal-media-controls-download-button {
  display: none;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px); /* Adjust as needed */
}

section#detail a.enquete {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  background: #e84091;
  color: #fff;
  transition: 0.3s;
  width: 350px;
  line-height: 60px;
  margin: 0 auto 30px;
}

section#detail a.enquete i {
  font-size: 2.1rem;
  vertical-align: -2px;
  padding-right: 5px;
}

section#detail a.enquete:hover {
  opacity: 0.7;
}

section#detail a.back {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  background: #fff;
  border: 1px solid #0075a1;
  transition: 0.3s;
  width: 200px;
  line-height: 50px;
  margin: 0 auto;
}

section#detail a.back:hover {
  background: #d9e8ee;
}

@media screen and (max-width: 767px) {
  section#detail {
    padding: 45px 3%;
  }

  section#detail h2 {
    font-size: 2rem;
    line-height: 1.3;
    padding: 3rem 0 0 1rem;
  }

  section#detail h2 span.day {
    font-size: 1.4rem;
    left: 1rem;
  }

  section#detail h2 span.name {
    font-size: 1.4rem;
    bottom: auto;
    right: auto;
    padding: 0.5rem 0 1rem;
    text-align: right;
    position: relative;
    display: block;
    line-height: 1.3;
  }

  section#detail .mov {
    text-align: center;
    margin: 30px auto;
  }

  section#detail a.back {
    margin-top: 30px;
    font-size: 1.4rem;
  }
}

footer {
  width: 100%;
  margin: 0 auto;
  line-height: 52px;
  background: #434343;
  color: #fff;
  text-align: center;
}

footer small {
  font-size: 1.4rem;
}

/* アンケート追加 */

#enquete_area.show_enquete {
  position: relative;
  transition: 0.3s;
}

#enquete_area {
  transition: 0.3s;
}

#enquete_area .enquete_box {
  display: none;
  transition: 0.3s;
}

#enquete_area.show_enquete .enquete_box {
  color: #fff;
  position: absolute;
  background: rgba(0, 0, 0, 0.8) !important;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  text-align: center;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  align-content: center;
}

#enquete_area.show_enquete .enquete_box span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#enquete_area.show_enquete .enquete_box span p {
  font-size: 1.5rem;
  margin-bottom: 35px;
}

section#detail #enquete_area a.enquete {
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  section#detail a.enquete {
    font-size: 1.3rem;
    width: 300px;
  }
  #enquete_area.show_enquete .enquete_box span p {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}

#num{
  width:100%;
  margin-bottom:100px;
  display:-webkit-flex;
  display:flex;
  justify-content:center;
  align-items:center;
}
#num span{
  display:-webkit-flex;
  display:flex;
  justify-content:center;
  align-items:center;
  width:1.5em;
  height:1.5em;
  margin:0 0.25em;
  font-size:18px;
  background:#fff;
  cursor:pointer;
}
#num span:hover,
#num span.active{
  color:#fff;
  background:#0075a1;
}
#caseList,
#summaryList,
#seminarList,
#recoveryList{
  display:none;
}
.sub{
  width:100%;
  margin-bottom:40px;
  padding:9px;
  background:#0075a1;
  overflow:hidden;
}
.sub ul{
  display:-webkit-flex;
  display:flex;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.sub ul li{
  margin:9px;
  padding:0 12px;
  color:#0075a1;
  font-size:16px;
  line-height:36px;
  background:#fff;
  border:1px solid #fff;
  cursor:pointer;
}
.sub ul li.active{
  color:#fff;
  background:none;
}
#recoveryList .row{
  display:flex;
  align-items: flex-end;
}
#recoveryList ul{
  display: -webkit-inline-flex;
  display: inline-flex;
  flex-direction: column;
}
#recoveryList ul li:first-child{
  align-self:flex-start;
}
#recoveryList .close{
  margin-left:auto;
}
.selectWord{
  display:none;
}
sup{
  line-height: 1;
  font-size: 10px;
}
.sub .open,
.sub .close{
  margin:6px;
  padding-left:18px;
  color:#fff;
  font-size:14px;
  line-height:1;
  letter-spacing:0.05em;
  cursor:pointer;
  position:relative;
}
.sub .open{
  display:none;
}
.sub .close{
  float:right;
}
.sub .open:before,
.sub .open:after,
.sub .close:before,
.sub .close:after{
  content:"";
  display:block;
  width:12px;
  height:1px;
  background:#fff;
  position:absolute;
  top:calc(50% - 1px);
  left:0;
}
.sub .open:before{
  transform:rotate(0deg);
}
.sub .open:after{
  transform:rotate(90deg);
}
.sub .close:before{
  transform:rotate(45deg);
}
.sub .close:after{
  transform:rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .sub{
    width:100%;
    margin-bottom:8vw;
    padding:0;
    background:#fff;
    overflow: visible;
    position:relative;
    z-index:80;
  }
  .sub ul,
  #recoveryList ul{
    width:100%;
    display:none;
    position:absolute;
    top:100%;
    left:0;
    z-index:0;
  }
  .sub ul li{
    display:-webkit-flex;
    display:flex;
    align-items:center;
    width:100%;
    min-height:10.666667vw;
    margin:0;
    padding:2vw 4vw;
    color:#0075a1;
    font-size: 1.4rem;
    line-height:1.4;
    background:#fff;
    border-top: none;
    border-left: 1px solid #0075a1;
    border-right: 1px solid #0075a1;
    border-bottom: 1px solid #0075a1;
    cursor:pointer;
  }
  .sub ul li.active{
    color:#0075a1;
    background:#fff;
  }
  .sub ul li:first-child{
    display:none;
  }
  #recoveryList .row{
    display: static;
  }
  .selectWord{
    display:-webkit-flex;
    display:flex;
    align-items:center;
    width:100%;
    min-height:10.666667vw;
    padding:2vw 5.3333vw;
    color:#0075a1;
    font-size: 1.4rem;
    line-height:1.4;
    background:#fff;
    border: 1px solid #0075a1;
    position:relative;
    z-index:10;
  }
  .selectWord:before{
    content:"";
    display:inline-block;
    width:3.2vw;
    height:3.2vw;
    margin-right:0.8em;
    border-right: 1px solid #0075a1;
    border-bottom: 1px solid #0075a1;
    transform:rotate(45deg) translateX(-1vw);
  }
  #num{
    margin-bottom:13.3333vw;
  }
  .sub .open,
  .sub .close{
    display:none;
  }
}