* {
  box-sizing: border-box;
}

body {
  color: #333;
  font-family: 'Barlow', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

.description {
  font-size: 1px;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  cursor: default;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.topline {
  width: 100%;
  height: 90px;
  position: relative;
  display: flex;
  transition: all 0.5s;
}

#nav-toggle {
  position: fixed;
  top: 25px;
  left: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 86%;
  height: 1px;
  left: 0;
  display: block;
  background: #888;
  position: absolute;
  -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 2px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 18px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
  display: none;
}
#container {
  z-index: 900;
}

#gloval-nav {
  background: #999;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
  font-family: 'Barlow' !important;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
  display: block;
  width: 100vw;
  color: #e6e6e6;
  text-decoration: none;
  padding: 16px 0;
  margin-right: 50px;
  border-top: 1px solid #e6e6e6;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #fff;
  background: #b3b3b3;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: .9s;
}
#gloval-nav ul li:nth-child(8) {
  transition-delay: 1.05s;
}
#gloval-nav ul li:nth-child(9) {
  transition-delay: 1.2s;
}

.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}


.logo {
  margin: 0 auto;
}

.logo img {
  width: 230px;
  padding: 50px 0 0 0;
  cursor: default;
}

.link-list {
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  padding: 50px 30px 0 0;
  
}

.list-item {
  padding-right: 25px;
}

.list-item:hover {
  opacity: 0.8;
}

.fa-large {
  font-size: 24px;
}
.fa-gray {
  color: #b3b3b3;
}
.fa-middle {
  font-size: 22px;
}
.fa-white {
  color: #e6e6e6;
}

.fa-small {
  font-size: 20px;
}

.material-icons-outlined {
  padding-top: 3px;
}

.header-list {
  text-align: center;
}

.header-list li {
  display: inline-block;
  list-style: none;
  margin-right: 50px;
  font-size: 12px;
  font-family: 'Barlow' !important;
  font-weight: 100;
  letter-spacing: 2px;
}

.header-list a {
  color: #666;
  text-decoration: none;
}

.header-list a:hover {
  color: #999;
}

.topSlider { 
  margin: 0 0 0;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.topSlider img{ 
  object-fit: cover;
  width: 100vw;
  height: auto;
}

.topSlider .slick-next {
  right: 23px;
  z-index: 1;
}

.topSlider .slick-prev { 
  left: 23px;
  z-index: 1;
}

.background {
  width: 100%;
  overflow: hidden;
  background-image: url("https://hellomissmolly.jp/img/bg02.jpg");
  background-position: top;
  background-attachment: local;
  background-repeat: no-repeat;
  z-index: 0;
}

h5 {
  display: none;
}
.newsfeed {
  width: 570px;
  margin: 10px auto 20px auto;
}

.p-slider {
 width: 90%;
 margin: 0 auto;
}

.p-slider img {
  height: auto;
  width: 100%;
  padding: 0 8px;
  margin: 0 auto;
}

.p-slider .slick-next {
  right: 23px;
  z-index: 100;
}

.p-slider .slick-prev { 
  left: 23px;
  z-index: 100;
}

section {
  padding-top: 100px;
  cursor: default;
}

.title {
  text-align: center;
  height: 360px; 
}

.illust {
  height: auto;
}

.contents-title {
  top: 320px;
  font-family: 'Barlow' !important;
  font-size: 25px;
  font-weight: 200;
  letter-spacing: 7px;
  margin: 0;
}

.news-content {
  text-align: center;
  margin: 80px 0 0 0;
}

.i-contents {
  margin: 0 auto;
  text-align: center;
  width: 570px;
  height: 230px;
}

.i-contents h1 {
  font-size: 16px;
  margin-top: 0;
}

.i-contents p {
  line-height: 1.9;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
 }

.p-contents {
  display: flex;
  margin: 40px auto;
  justify-content: center;
  width: 95%;
  height: 380px;
}

.contents-left {
  width: 150px;
  height: 150px;
}

.contents-illust1 {
  width: 150px;
  height: auto;
  margin: 20px 0 0 0;
}

.contents-right {
  width: 450px;
  margin-left: 25px;
}

.contents-right h1 {
  margin: 20px 0 12px 0;
  font-size: 15px;
  text-align: left;
}

.contents-right p {
  margin: 0;
  padding: 0 14px 0 0;
  line-height: 1.9;
  font-size: 12px;
  font-weight: 300;
}

.contents-right a {
  display: inline-block;
  width: 150px;
  height: 36px;
  font-size: 13px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #666;
  color: #666;
  line-height: 34px; 
  border-radius: 5px;
  margin-top: 30px;
}

.contents-right a:hover {
  opacity: 0.8;
  background: #f3f3f3;
}

.title-d {
  text-align: center;
  height: 300px; 
}

.d-slider {
  width: 90%;
  margin: 0 auto;
}

.d-slider img {
  height: auto;
  width: 100%;
  padding: 0 8px;
  margin: 0 auto;
  transition: 0.5s;
}

.d-slider img:hover {
  opacity: 0.6;
}

.d-slider .slick-next {
  right: 23px;
  z-index: 100;
}

.d-slider .slick-prev { 
  left: 23px;
  z-index: 100;
}

.d-contents {
  display: flex;
  margin: 25px auto;
  justify-content: center;
  width: 95%;
  height: 220px;
}

.d-category {
  width: 90%;
  margin: 0 auto;
}

.d-category a {
  outline: none;
}

.d-category h1 {
  width: 90%;
  font-size: 16px;
  font-family: 'Barlow' !important;
  font-weight: 400;
  margin: 10px auto;
  text-align: center;
}

.contents-illust2 {
  width: 140px;
  height: auto;
  margin: 27px 0 0 20px;
}

.workevent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.workevent-list {
  width: 300px;
  height: 340px;
  margin: 0 15px 30px 15px;
  box-shadow: 0 0 5px rgba(153,153,153,0.3);
  text-align: center;
  text-decoration: none;
  color: #000;
}

.workevent-img {
  width: 260px;
  height: 200px;
  margin-top: 20px;
  object-fit: cover;
}

.workevent-text h1 {
  width: 85%;
  font-size: 16px;
  font-weight: 200;
  margin: 10px 0 0 20px;
  letter-spacing: 1.5px;
}

.workevent-text p {
  width: 80%;
  font-size: 12px;
  font-weight: 200;
  margin: 5px auto;
  letter-spacing: 1.5px;
  text-align: left;
}

.workevent-right {
  display: flex;
  width: 80%;
  height: 300px;
  margin: 0 0 30px auto;
  box-shadow: 5px 5px 5px rgba(153,153,153,0.3);
  text-align: right;
  border: 1px solid #999;
  border-radius: 3px;
}

#about {
  background: #f8f8f8;
  padding: 50px 0 32px 0;
}

.about-title {
  text-align: center;
}

.about-contents {
  display: flex;
  margin: 40px auto 0 auto;
  justify-content: center;
  width: 70%;
  height: 130px;
}

.about-left {
  width: 180px;
  height: auto;
}

.about-left h1 {
  font-size: 16px;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
}

.about-left p {
  font-size: 10.5px;
  letter-spacing: 1px;
  color: #999;
  margin: 4px 0 0 0;
  padding: 0;
}

.about-right {
  width: 60%;
  height: 80%;
}

.about-right p {
  display: inline-block;
  margin: 0;
  padding: 0 14px 0 45px;
  height: auto;
  line-height: 1.5;
  font-size: 11px;
  font-weight: 300;
  color: #666;
  border-left: 1px solid #888;
}

.about-right p a {
  color: #666;
  text-decoration: none;
  font-weight: bold;
}

.caution {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  margin: 25px 0 0 0;
  color: #666;
}

footer {
  width: 100%;
  height: 150px;
  margin: 0 auto;
}

.footer-list {
  text-align: center;
  margin-top: 0;
  border-top: 1px solid #e6e6e6;
}

.footer-list ul {
  padding: 0;
}

.footer-list ul li {
  display: inline-block;
  list-style: none;
  margin: 0 8px 20px 8px;
}

.footer-link-list {
  text-decoration: none;
  font-size: 12px;
  font-family: 'Barlow' !important;
  font-size: 100;
  letter-spacing: 2px;
  color: #666;
}

.footer-link-list:hover {
  opacity: 0.8;
}

.copyright {
  display: inline-block;
  font-family: 'Barlow' !important;
  font-size: 13px;
  text-decoration: none;
  color: #999;
  cursor: default;
}

#pageTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  margin: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
  opacity: 0.8;
  border: 1px solid #999;

}

#pageTop:hover {
  text-decoration: none;
  opacity: 0.7;
}

#pageTop img {
  width: 48px;
}


.d-w-title {
  text-align: center;
  height: 320px; 
  margin: 0;
  padding-top: 110px;
  border-top: 1px solid #e6e6e6;
}

.d-w-slider {
 display: flex;
 width: 80%;
 margin: 0 auto;
 padding: 100px 0 0px 0;
 justify-content: space-between;
}

.dx-w-slider {
  display: flex;
  width: 80%;
  margin: 0 auto;
  padding: 100px 0 0px 0;
  justify-content: space-between;
}

.we-img {
  width: 240px;
}

.slider-space {
  margin: 0 30px;
  width: 50%;
}

.contents-space {
  margin: 30px 30px 0 30px;
  justify-content: center;
  width: 100%;
  height: 220px;
}

.contents-space h1 {
  margin: 0;
  padding-bottom: 20px;
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 1px solid #999;
}

.contents-space p {
  margin: 0;
  padding: 0;
  padding: 20px 0;
  line-height: 1.8;
  font-size: 12px;
  font-weight: 300;
  border-bottom: 1px dotted #999;
}

.contents-space h2 {
  padding-bottom: 20px;
  line-height: 1.8;
  font-size: 12px;
  font-weight: 300;
  border-bottom: 1px solid #999;
}

.thumbnail_logo { 
  margin: 30px auto 10px; 
  padding: 0;
  border: 1px solid #e6e6e6;
}

.thumbnail_logo img, .thumbnail-nav img { 
  width: 100%;
  height: auto;
}

.thumbnail-thumb_logo { 
  width: 100%;
  margin: 0 auto;
}

.thumbnail-thumb_logo img { 
  margin: 0;
  width: 100%;
  height: auto;
}

.thumbnial-thumb_logo .slick-next { 
  right: -25px; 
  z-index: 9;
}

.thumbnail-thumb_logo  .slick-prev { 
  left: -30px; 
  z-index: 9;
}

.thumbnail-thumb_logo  .slick-current { 
  opacity: 0.5;
}

.thumbnail-thumb_logo  div div div { 
  cursor: pointer;
}

.thumbnail_graphic { 
  margin: 30px auto 10px; 
  padding: 0;
  border: 1px solid #e6e6e6;
}

.thumbnail_graphic img, .thumbnail-nav img { 
  width: 100%;
  height: auto;
}

.thumbnail-thumb_graphic { 
  width: 100%;
  margin: 0 auto;
}

.thumbnail-thumb_graphic img { 
  margin: 0;
  width: 100%;
  height: auto;
}

.thumbnial-thumb_graphic .slick-next { 
  right: -25px; 
  z-index: 9;
}

.thumbnail-thumb_graphic  .slick-prev { 
  left: -30px; 
  z-index: 9;
}

.thumbnail-thumb_graphic  .slick-current { 
  opacity: 0.5;
}

.thumbnail-thumb_graphic  div div div { 
  cursor: pointer;
}

.thumbnail_info { 
  margin: 30px auto 10px; 
  padding: 0;
  border: 1px solid #e6e6e6;
}

.thumbnail_info img, .thumbnail-nav img { 
  width: 100%;
  height: auto;
}

.thumbnail-thumb_info { 
  width: 100%;
  margin: 0 auto;
}

.thumbnail-thumb_info img { 
  margin: 0;
  width: 100%;
  height: auto;
}

.thumbnial-thumb_info .slick-next { 
  right: -25px; 
  z-index: 9;
}

.thumbnail-thumb_info  .slick-prev { 
  left: -30px; 
  z-index: 9;
}

.thumbnail-thumb_info .slick-current { 
  opacity: 0.5;
}

.thumbnail-thumb_info  div div div { 
  cursor: pointer;
}

.thumbnail_book { 
  margin: 30px auto 10px; 
  padding: 0;
  border: 1px solid #e6e6e6;
}

.thumbnail_book img, .thumbnail-nav img { 
  width: 100%;
  height: auto;
}

.thumbnail-thumb_book { 
  width: 100%;
  margin: 0 auto;
}

.thumbnail-thumb_book img { 
  margin: 0;
  width: 100%;
  height: auto;
}

.thumbnial-thumb_book .slick-next { 
  right: -25px; 
  z-index: 9;
}

.thumbnail-thumb_book  .slick-prev { 
  left: -30px; 
  z-index: 9;
}

.thumbnail-thumb_book  .slick-current { 
  opacity: 0.5;
}

.thumbnail-thumb_book  div div div { 
  cursor: pointer;
}

.d-caution {
  width: 80%;
  margin: 50px auto 30px auto;
}

.d-caution p {
  font-size: 12.5px;
  font-weight: 300;
  color: #666;
  text-align: center;
}



