@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html body #minuk * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html body #minuk {
  color: #535353;
  /*
  #casestudy{
  	background-color: $grey;
  	padding: 8em 0;
  	@include sp(){
  		padding: 3em 0
  	}
  	.wrap{
  		@include wrap();
  	}
  	ul{
  		display: grid;
  		grid-template-columns: 1fr 1fr 1fr;
  		grid-template-rows: auto auto 1fr auto;
  		gap: 3em;
  		margin-top: 8em;
  		@include sp(){
  			display: flex;
  			flex-direction: column;
  			gap: 5em;
  			margin-top: 6em;
  		}
  		li{
  			display: contents;
  			@include sp(){
  				display: flex;
  			}
  			a{
  				@include sp(){
  					display: flex;
  					flex-direction: column;						
  				}
  				display: grid;
  				grid-template-rows: subgrid;
  				grid-row: span 4;
  				row-gap: 0;
  				width: 100%;
  				padding-top: 3em;
  				padding-bottom: 3em;
  				overflow: visible;
  				background-color: #fff;
  				border-radius: 0.25em;
  				transition: $tran1;
  				&:hover{
  					background-color: $black;
  					transition: $tran1;
  					.ttl4,.btn,p{
  						color: #fff;
  					}
  					.btn::before{
  						background-color: #fff;
  					}
  					.ttl4{
  						border-color: #fff;
  					}
  					.img img{
  						transform: scale(1.05);
  						transition: $tran1;
  					}
  				}
  				.img{
  					margin-top: -6em;
  					overflow: hidden;
  					border-radius: 0.25em;
  					width: 96%;
  					img{
  						width: 100%;
  						height: auto;
  					}
  				}
  				.ttl4{
  					margin: 1em;
  					font-size: 16px;
  					font-weight: 600;
  					color: $black;
  					border-bottom: 1px dotted $black;
  					padding-bottom: 1em;
  					@include sp{
  						margin: 2em;
  					}
  				}
  				p{
  					margin: 0 1em 1em;
  					font-size: 18px;
  					font-weight: 600;
  					color: $black;
  					@include sp{
  						margin: 0 2em 2em;
  					}
  				}
  				.btn{
  					font-size: 12px;
  					font-weight: 600;
  					color: $black;
  					padding-left: 6em;
  					padding-right: 2em;
  					position: relative;
  					margin-top: 1em;
  					margin-left: 1em;
  					margin-right: 1em;
  					&::before{
  						content: '';
  						position: absolute;
  						left: 2em;
  						top: -0.5em;
  						display: block;
  						width: 3em;
  						height: 3em;
  						mask: url(../img/casestudy_ic.svg) no-repeat center/contain;
  						background-color: $black;

  					}
  				}
  			}
  		}
  	}

  }
  */
}
html body #minuk .pc {
  display: block;
}
@media (max-width: 767px) {
  html body #minuk .pc {
    display: none;
  }
}
html body #minuk .sp {
  display: none;
}
@media (max-width: 767px) {
  html body #minuk .sp {
    display: block;
  }
}
html body #minuk img {
  width: 100%;
  height: auto;
}
html body #minuk span {
  font-weight: inherit;
  color: inherit;
}
html body #minuk .ttl2-common {
  text-align: center;
  color: #2F85C5;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  html body #minuk .ttl2-common {
    font-size: 16px;
  }
}
html body #minuk .ttl2-common span {
  font-weight: 400;
  font-size: 45px;
  display: block;
}
@media (max-width: 767px) {
  html body #minuk .ttl2-common span {
    font-size: 32px;
  }
}
html body #minuk .ttl2-common + .desc-common {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 767px) {
  html body #minuk .ttl2-common + .desc-common {
    font-size: 25px;
  }
}
html body #minuk a.hover-line span.ul {
  display: inline;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2F85C5), to(#2F85C5));
  background-image: linear-gradient(#2F85C5, #2F85C5);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk a.hover-line:hover span.ul {
  display: inline;
  background-position: 0 100%;
  background-size: 100% 1px;
  color: #2F85C5;
}
html body #minuk a.hover-win {
  position: relative;
}
html body #minuk a.hover-win::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk a.hover-win:hover {
  position: relative;
}
html body #minuk a.hover-win:hover::after {
  width: 100%;
}
html body #minuk #mv {
  background: url(../img/mv_bg.png) no-repeat center/cover;
  height: 65vw;
  min-height: 568px;
  max-height: 768px;
  width: 100%;
}
@media (max-width: 1024px) {
  html body #minuk #mv {
    max-height: 100%;
    padding-bottom: 4em;
    min-height: 0;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  html body #minuk #mv {
    padding-top: 2em;
    padding-bottom: 3em;
    height: auto;
  }
}
html body #minuk #mv .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  html body #minuk #mv .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  html body #minuk #mv .wrap {
    max-width: 100%;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  html body #minuk #mv .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body #minuk #mv .wrap .txt {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .txt {
    width: 100%;
  }
}
html body #minuk #mv .wrap .txt .name {
  width: 100%;
  font-size: 1.404vw;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .txt .name {
    font-size: 16px;
  }
  html body #minuk #mv .wrap .txt .name img {
    width: 50%;
    height: auto;
  }
}
html body #minuk #mv .wrap .txt .name span {
  color: #fff;
  font-weight: 500;
  background-color: #2F85C5;
  padding: 0.25em 1.5em;
  border-radius: 0.25em;
}
html body #minuk #mv .wrap .txt img {
  width: 50%;
  height: auto;
  display: block;
  margin-top: 0.75em;
}
html body #minuk #mv .wrap .txt .catch {
  font-size: 4.212vw;
  color: #fff;
  margin-top: 0.35em;
  line-height: 1.35;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .txt .catch {
    font-size: 32px;
  }
}
html body #minuk #mv .wrap .txt .catch span {
  font-size: 1.872vw;
  font-weight: 600;
  display: block;
  padding-top: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .txt .catch span {
    font-size: 20px;
  }
}
html body #minuk #mv .wrap .img {
  padding: 0;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .img {
    width: 100%;
  }
}
html body #minuk #mv .wrap .img img {
  width: 94%;
  height: auto;
}
html body #minuk #mv .wrap .spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -5em;
}
@media (max-width: 1024px) {
  html body #minuk #mv .wrap .spec {
    margin-top: 0;
    gap: 1.5em;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  html body #minuk #mv .wrap .spec {
    gap: 1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body #minuk #mv .wrap .spec .box {
  width: 32%;
  background-color: #2F85C5;
  border-radius: 0.5em;
  padding: 1.25em 2em 1.75em;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 1024px) {
  html body #minuk #mv .wrap .spec .box {
    padding: 1em;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  html body #minuk #mv .wrap .spec .box {
    width: 100%;
    padding: 1.25em 1.5em 0.75em;
  }
}
html body #minuk #mv .wrap .spec .box .ttl {
  width: 100%;
  text-align: center;
  font-size: 1.872vw;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .spec .box .ttl {
    font-size: 18px;
  }
}
html body #minuk #mv .wrap .spec .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5em 2%;
  margin-top: 1em;
}
html body #minuk #mv .wrap .spec .box ul li {
  width: 49%;
  font-size: 0.936vw;
  border: 1px solid #fff;
  border-radius: 3em;
  padding: 0.5em 1.5em;
  text-align: center;
}
@media (max-width: 1024px) {
  html body #minuk #mv .wrap .spec .box ul li {
    font-size: 12px;
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  html body #minuk #mv .wrap .spec .box ul li {
    width: 49%;
    padding: 0.5em 0.75em;
  }
}
html body #minuk #mv .wrap .spec .box span {
  font-size: 0.936vw;
  text-align: right;
  padding-top: 0.5em;
  display: block;
}
@media (max-width: 767px) {
  html body #minuk #mv .wrap .spec .box span {
    font-size: 12px;
  }
}
html body #minuk #seminar {
  background-color: #F8F8F7;
  padding: 4em 0;
}
@media (max-width: 767px) {
  html body #minuk #seminar {
    padding: 3em 0;
  }
}
html body #minuk #seminar .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  html body #minuk #seminar .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  html body #minuk #seminar .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body #minuk #seminar .wrap .ttl2 {
  width: 220px;
  font-size: 32px;
  font-weight: 500;
  border-left: 6px solid #2F85C5;
  line-height: 1.25;
  padding-left: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #seminar .wrap .ttl2 {
    width: 100%;
    font-size: 26px;
  }
}
html body #minuk #seminar .wrap ul {
  width: calc(100% - 220px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media (max-width: 767px) {
  html body #minuk #seminar .wrap ul {
    width: 100%;
    margin-top: 3em;
    gap: 0.75em;
  }
}
html body #minuk #seminar .wrap ul li a {
  background-color: #fff;
  border: 1px solid #D1D0D0;
  border-radius: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  padding: 1em 2em;
  color: #535353;
  font-size: 16px;
}
@media (max-width: 767px) {
  html body #minuk #seminar .wrap ul li a {
    padding: 1em 1.5em;
  }
}
html body #minuk #seminar .wrap ul li a .date {
  font-weight: 600;
}
html body #minuk #seminar .wrap ul li a .cat {
  font-size: 14px;
  color: #fff;
  background-color: #2F85C5;
  border-radius: 0.25em;
  padding: 0.1em 1em;
}
html body #minuk #seminar .wrap ul li a .ttl {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  html body #minuk #seminar .wrap ul li a .ttl {
    white-space: wrap;
    overflow: visible;
    text-overflow: clip;
  }
}
html body #minuk #idea {
  padding: 8em 0;
  border-bottom: 3px solid #F8F8F7;
}
@media (max-width: 767px) {
  html body #minuk #idea {
    padding: 3em 0;
  }
}
html body #minuk #idea .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #idea .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #idea .wrap .ttl2 {
  text-align: center;
  font-size: 38px;
}
@media (max-width: 767px) {
  html body #minuk #idea .wrap .ttl2 {
    font-size: 24px;
  }
}
html body #minuk #idea .wrap .box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 4em;
  margin-top: 3em;
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #idea .wrap .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
  }
}
html body #minuk #idea .wrap .box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  margin: auto;
  display: block;
  background: url(../img/idea_ic.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #idea .wrap .box::before {
    display: none;
  }
}
html body #minuk #idea .wrap .box .before, html body #minuk #idea .wrap .box .after {
  display: grid;
  grid-template-rows: subgrid; /* 親の行トラックを共有 */
  grid-row: span 2; /*縦要素の数*/
  row-gap: 0;
  background-color: #F8F8F7;
  border-radius: 0.5em;
  padding: 2em 1em 1em;
}
html body #minuk #idea .wrap .box .before .ttl3, html body #minuk #idea .wrap .box .after .ttl3 {
  text-align: center;
  font-size: 22px;
}
html body #minuk #idea .wrap .box .before .txt, html body #minuk #idea .wrap .box .after .txt {
  background-color: #fff;
  border-radius: 0.25em;
  padding: 2em 4em;
  line-height: 2;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  html body #minuk #idea .wrap .box .before .txt, html body #minuk #idea .wrap .box .after .txt {
    padding: 2em;
  }
}
html body #minuk #idea .wrap .box .before .txt .ttl4, html body #minuk #idea .wrap .box .after .txt .ttl4 {
  font-size: 18px;
  font-weight: 600;
}
html body #minuk #idea .wrap .box .before .txt p, html body #minuk #idea .wrap .box .after .txt p {
  font-size: 16px;
  margin-top: 0.5em;
}
html body #minuk #idea .wrap .box .before .txt p.arw, html body #minuk #idea .wrap .box .after .txt p.arw {
  padding-left: 1.5em;
  position: relative;
}
html body #minuk #idea .wrap .box .before .txt p.arw::before, html body #minuk #idea .wrap .box .after .txt p.arw::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0.75em;
  height: 0.75em;
}
html body #minuk #idea .wrap .box .before .txt p .underline, html body #minuk #idea .wrap .box .after .txt p .underline {
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 767px) {
  html body #minuk #idea .wrap .box .before {
    position: relative;
  }
  html body #minuk #idea .wrap .box .before::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    right: 0;
    bottom: -2.5em;
    width: 2em;
    height: 2em;
    margin: 0 auto;
    display: block;
    background: url(../img/idea_ic.svg) no-repeat center/contain;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
html body #minuk #idea .wrap .box .after {
  background-color: #2F85C5;
}
html body #minuk #idea .wrap .box .after .ttl3 {
  color: #fff;
}
html body #minuk #idea .wrap .box .after .txt .ttl4 {
  color: #2F85C5;
}
html body #minuk #idea .wrap .box .after .txt p.arw {
  font-weight: 600;
}
html body #minuk #assignment {
  padding: 8em 0;
}
@media (max-width: 767px) {
  html body #minuk #assignment {
    padding: 3em 0;
  }
}
html body #minuk #assignment .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #assignment .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #assignment .wrap .box {
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1em;
  padding: 5em 4em;
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box {
    padding: 2em 1.5em 4em;
  }
}
html body #minuk #assignment .wrap .box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -7em;
  margin: auto;
  display: block;
  width: 6em;
  height: 11em;
  background: url(../img/assignment_ic.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box::before {
    width: 4em;
    height: 8em;
    bottom: -5em;
  }
}
html body #minuk #assignment .wrap .box .ttl2 {
  font-size: 38px;
  text-align: center;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box .ttl2 {
    font-size: 24px;
  }
}
html body #minuk #assignment .wrap .box .ttl2 span {
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box .ttl2 span {
    padding-right: 2.25em;
  }
}
html body #minuk #assignment .wrap .box .ttl2 span::before {
  content: "";
  position: absolute;
  right: -3em;
  top: -1em;
  display: block;
  width: 2em;
  height: 4em;
  background: url(../img/assignment_img1.svg) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box .ttl2 span::before {
    right: -1em;
    width: 3em;
    height: 6em;
    top: -2em;
  }
}
html body #minuk #assignment .wrap .box ul {
  position: relative;
  margin-top: 2.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box ul {
    margin-top: 1.75em;
  }
}
html body #minuk #assignment .wrap .box ul li {
  background: url(../img/assignment_ic2.svg) no-repeat #F8F8F7 1em 1em/1em;
  border-radius: 0.25em;
  padding: 0.5em 2em;
  font-size: 22px;
  text-align: center;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .box ul li {
    font-size: 20px;
    background-image: none;
    padding: 1em 0.25em;
  }
}
html body #minuk #assignment .wrap .box ul li span {
  color: #2F85C5;
  font-weight: 600;
}
html body #minuk #assignment .wrap .ttl3 {
  text-align: center;
  font-size: 38px;
  color: #2F85C5;
  margin: 3em auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  border-bottom: 3px solid #2F85C5;
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .ttl3 {
    font-size: 22px;
  }
}
html body #minuk #assignment .wrap .ttl3 span {
  font-size: 84px;
  font-weight: 300;
  padding-right: 0.1em;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .ttl3 span {
    font-size: 50px;
  }
}
html body #minuk #assignment .wrap .img1 {
  text-align: center;
  margin-top: -6em;
  width: 100%;
  max-width: 636px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .img1 {
    margin-top: -2.5em;
  }
}
html body #minuk #assignment .wrap .catch {
  font-size: 38px;
  text-align: center;
  margin-top: -2em;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .catch {
    margin-top: -1.5em;
    font-size: 26px;
  }
}
html body #minuk #assignment .wrap .catch span {
  color: #2F85C5;
}
html body #minuk #assignment .wrap p {
  text-align: center;
  font-size: 16px;
  margin-top: 2em;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap p {
    text-align: left;
  }
}
html body #minuk #assignment .wrap .img2 {
  width: 60%;
  margin: 4em auto 0;
  text-align: center;
  border: 1px solid #707070;
  border-radius: 1em;
  padding: 4em;
}
@media (max-width: 767px) {
  html body #minuk #assignment .wrap .img2 {
    width: 100%;
    padding: 2em 4em;
    margin-top: 2em;
  }
  html body #minuk #assignment .wrap .img2 img {
    margin-right: -2em;
  }
}
html body #minuk #assignment .wrap .img2 img {
  width: 100%;
  height: auto;
}
html body #minuk #feature {
  padding: 8em 0;
  background-color: #F8F8F7;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  html body #minuk #feature {
    padding: 3em 0;
  }
}
html body #minuk #feature .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #feature .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #feature .wrap ol {
  margin-top: 4em;
  list-style: none;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol {
    margin-top: 2em;
  }
}
html body #minuk #feature .wrap ol li {
  position: relative;
  padding-top: 12em;
  margin-top: 4em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li {
    margin-top: 3em;
  }
}
html body #minuk #feature .wrap ol li:nth-of-type(even) .txt {
  margin-left: 0;
}
html body #minuk #feature .wrap ol li::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 60%;
  max-width: 646px;
  height: 346px;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li::before {
    left: -30px;
    right: -30px;
    width: calc(100% + 70px);
    max-width: calc(100% + 70px);
    height: 200px;
  }
}
html body #minuk #feature .wrap ol li.list1::before {
  background: url(../img/feature_img1.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li.list1::before {
    background-size: cover;
  }
}
html body #minuk #feature .wrap ol li.list2::before {
  left: auto;
  right: -60px;
  background: url(../img/feature_img3.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li.list2::before {
    background-size: cover;
    left: -30px;
    right: -30px;
  }
}
html body #minuk #feature .wrap ol li.list3::before {
  background: url(../img/feature_img5.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li.list3::before {
    background-size: cover;
  }
}
html body #minuk #feature .wrap ol li .img {
  display: none;
}
html body #minuk #feature .wrap ol li .txt {
  position: relative;
  width: 86%;
  max-width: 964px;
  margin-left: auto;
  background-color: #fff;
  border-radius: 1em;
  padding: 6em;
  -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt {
    width: 100%;
    max-width: 100%;
    padding: 3em 2em;
    border-radius: 1.5em;
  }
}
html body #minuk #feature .wrap ol li .txt .ttl3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
html body #minuk #feature .wrap ol li .txt .ttl3 .sub {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  background-color: #2F85C5;
  padding: 0.25em 1em;
  border-radius: 3em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .ttl3 .sub {
    font-size: 12px;
  }
}
html body #minuk #feature .wrap ol li .txt .ttl3 .num {
  font-size: 33px;
  color: #2F85C5;
  line-height: 1;
  padding-left: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .ttl3 .num {
    font-size: 28px;
  }
}
html body #minuk #feature .wrap ol li .txt .ttl3 .ttl {
  width: 100%;
  font-size: 28px;
  font-weight: 500;
  padding-top: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .ttl3 .ttl {
    font-size: 22px;
  }
}
html body #minuk #feature .wrap ol li .txt p {
  font-size: 16px;
  margin-top: 2em;
}
html body #minuk #feature .wrap ol li .txt .img2 {
  text-align: center;
  margin-top: 4em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .img2 {
    margin-top: 2em;
  }
}
html body #minuk #feature .wrap ol li .txt .cont_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .cont_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
html body #minuk #feature .wrap ol li .txt .cont_wrap .img2 {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  html body #minuk #feature .wrap ol li .txt .cont_wrap .img2 {
    width: 100%;
  }
}
html body #minuk #usecase {
  padding: 8em 0;
}
@media (max-width: 767px) {
  html body #minuk #usecase {
    padding: 3em 0;
  }
}
html body #minuk #usecase .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #usecase .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #usecase .wrap ol {
  margin-top: 4em;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto auto;
  gap: 4em 1em;
  width: 100%;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
    margin-top: 3em;
  }
}
html body #minuk #usecase .wrap ol li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
}
html body #minuk #usecase .wrap ol li .ttl3 {
  background-color: #2F85C5;
  color: #fff;
  padding: 1em 1em 1.5em;
  font-size: 18px;
  font-weight: 600;
  border-radius: 0.25em;
  margin-bottom: 2.5em;
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap ol li .ttl3 {
    padding: 1.5em;
  }
}
html body #minuk #usecase .wrap ol li .ttl3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: -2.25em;
  margin: auto;
  width: 2em;
  height: 2em;
  background: url(../img/usecase_ic.svg) no-repeat center/contain;
}
html body #minuk #usecase .wrap ol li .ttl3 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #535353;
  font-size: 14px;
  padding: 0.15em 1em;
  border-radius: 0.25em;
  background-color: #fff;
  color: #2F85C5;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap ol li .ttl3 span {
    margin-bottom: 1em;
  }
}
html body #minuk #usecase .wrap ol li .ttl {
  border: 1px solid #2F85C5;
  border-radius: 0.25em 0.25em 0 0;
  font-size: 20px;
  line-height: 1.25;
  color: #2F85C5;
  padding: 0.75em 1.25em;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap ol li .ttl {
    padding: 0.75em 1.25em;
    font-size: 18px;
  }
}
html body #minuk #usecase .wrap ol li .cont-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em 2em 3em;
  border: 1px solid #2F85C5;
  border-radius: 0 0 0.25em 0.25em;
  border-top: none;
}
html body #minuk #usecase .wrap ol li .cont-wrap p {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap ol li .cont-wrap p {
    font-size: 16px;
  }
}
html body #minuk #usecase .wrap ol li .cont-wrap .img {
  display: block;
  width: 100%;
  margin-top: auto;
}
html body #minuk #usecase .wrap ol li.modal-target .cont-wrap .img {
  cursor: pointer;
  position: relative;
}
html body #minuk #usecase .wrap ol li.modal-target .cont-wrap .img img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk #usecase .wrap ol li.modal-target .cont-wrap .img::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2em;
  height: 2em;
  -webkit-mask: url(../img/usecase_ic2.svg) no-repeat center/contain;
          mask: url(../img/usecase_ic2.svg) no-repeat center/contain;
  background-color: #2F85C5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk #usecase .wrap ol li.modal-target .cont-wrap .img:hover {
  opacity: 1;
}
html body #minuk #usecase .wrap ol li.modal-target .cont-wrap .img:hover::before {
  z-index: 1;
  background-color: #25406C;
}
html body #minuk #usecase .wrap .modal-block .img-section {
  border: 1px solid #2F85C5;
  border-radius: 0.5em;
}
html body #minuk #usecase .wrap .modal-block .img-section .ttl {
  font-size: 45px;
  text-align: center;
  border-bottom: 1px solid #2F85C5;
  padding: 0.4em;
  color: #2F85C5;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap .modal-block .img-section .ttl {
    font-size: 18px;
  }
}
html body #minuk #usecase .wrap .modal-block .img-section .cont-wrap {
  padding: 1.5em 3em;
  margin: 0 auto;
  width: 100%;
  max-width: 630px;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap .modal-block .img-section .cont-wrap {
    padding: 1.25em 1.25em 0;
  }
}
html body #minuk #usecase .wrap .modal-block .img-section .cont-wrap p {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  html body #minuk #usecase .wrap .modal-block .img-section .cont-wrap p {
    font-size: 14px;
  }
}
html body #minuk #usecase .wrap .modal-block .img-section .cont-wrap .img {
  margin-top: 1.5em;
}
html body #minuk #article {
  padding: 8em 0;
}
@media (max-width: 767px) {
  html body #minuk #article {
    padding: 3em 0;
  }
}
html body #minuk #article .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #article .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #article .wrap ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-top: 6em;
}
@media (max-width: 767px) {
  html body #minuk #article .wrap ul {
    width: 100%;
    margin-top: 3em;
    gap: 0.75em;
  }
}
html body #minuk #article .wrap ul li a {
  background-color: #fff;
  border: 1px solid #D1D0D0;
  border-radius: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1em;
  padding: 1em 2em;
  color: #535353;
  font-size: 16px;
}
@media (max-width: 767px) {
  html body #minuk #article .wrap ul li a {
    padding: 1em 1.5em;
  }
}
html body #minuk #article .wrap ul li a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #2F85C5;
}
html body #minuk #article .wrap ul li a .date {
  font-weight: 600;
}
html body #minuk #article .wrap ul li a .ttl {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  html body #minuk #article .wrap ul li a .ttl {
    white-space: wrap;
    overflow: visible;
    text-overflow: clip;
  }
}
html body #minuk #movie {
  padding: 8em 0;
  background-color: #F8F8F7;
}
@media (max-width: 767px) {
  html body #minuk #movie {
    padding: 3em 0;
  }
}
html body #minuk #movie .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #movie .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #movie .wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3em 4%;
}
@media (max-width: 767px) {
  html body #minuk #movie .wrap ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3em;
    margin-top: 2em;
  }
}
html body #minuk #movie .wrap ul li {
  width: 48%;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 767px) {
  html body #minuk #movie .wrap ul li {
    width: 100%;
  }
}
html body #minuk #movie .wrap ul li .movie_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  html body #minuk #movie .wrap ul li .movie_wrap {
    margin-bottom: 0.5em;
  }
}
html body #minuk #movie .wrap ul li .movie_wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
html body #minuk #specs {
  padding: 8em 0;
}
@media (max-width: 767px) {
  html body #minuk #specs {
    padding: 3em 0;
  }
}
html body #minuk #specs .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #specs .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #specs .wrap .ttl {
  font-size: 26px;
  color: #2F85C5;
  font-weight: 500;
  margin-top: 2em;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap .ttl {
    font-size: 22px;
  }
}
html body #minuk #specs .wrap table {
  margin-top: 2em;
  width: 100%;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap table {
    margin-top: 1em;
  }
}
html body #minuk #specs .wrap table tr th, html body #minuk #specs .wrap table tr td {
  border: 1px solid #D1D0D0;
  font-size: 16px;
  padding: 1.25em 1.5em;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap table tr th, html body #minuk #specs .wrap table tr td {
    padding: 1.25em 1em;
  }
}
html body #minuk #specs .wrap table tr th {
  width: 110px;
  background-color: #F0F0F0;
  font-weight: 600;
  text-align: center;
}
html body #minuk #specs .wrap table tr td {
  width: 80%;
  background-color: #fff;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap table tr td {
    width: auto;
  }
}
html body #minuk #specs .wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  margin-top: 4em;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
    margin-top: 3em;
  }
}
html body #minuk #specs .wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32%;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap ul li {
    width: 100%;
  }
}
html body #minuk #specs .wrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 4em 1em;
  border-radius: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  html body #minuk #specs .wrap ul li a {
    border-radius: 0.25em;
  }
}
html body #minuk #specs .wrap ul li a span {
  position: relative;
  z-index: 1;
}
html body #minuk #specs .wrap ul li a::before {
  content: "";
  position: absolute;
  right: 1em;
  bottom: 1em;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/specs_ic.svg) no-repeat center/contain;
  z-index: 1;
}
html body #minuk #specs .wrap ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk #specs .wrap ul li a.bg1 {
  background: url(../img/spec_img1.png) no-repeat center/cover;
}
html body #minuk #specs .wrap ul li a.bg2 {
  background: url(../img/spec_img2.png) no-repeat center/cover;
}
html body #minuk #specs .wrap ul li a.bg3 {
  background: url(../img/spec_img3.png) no-repeat center/cover;
}
html body #minuk #specs .wrap ul li a:hover::after {
  width: 100%;
}
html body #minuk #contact {
  padding: 8em 0;
  background: url(../img/contact_bg.png) no-repeat center/cover;
}
@media (max-width: 767px) {
  html body #minuk #contact {
    padding: 3em 0;
  }
}
html body #minuk #contact .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #contact .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #contact .wrap .ttl2-common {
  color: #fff;
}
html body #minuk #contact .wrap .desc-common {
  color: #fff;
}
html body #minuk #contact .wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  margin-top: 4em;
  gap: 0 4em;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3em;
    gap: 1em;
  }
}
html body #minuk #contact .wrap ul li {
  display: contents;
}
html body #minuk #contact .wrap ul li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0;
  background-color: #25406C;
  color: #fff;
  padding: 3em;
  border-radius: 0.25em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk #contact .wrap ul li a::after {
  background-color: #fff;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul li a {
    padding: 2em;
  }
}
html body #minuk #contact .wrap ul li a:hover {
  color: #25406C;
}
html body #minuk #contact .wrap ul li a:hover::before {
  background-color: #25406C;
}
html body #minuk #contact .wrap ul li a::before {
  content: "";
  position: absolute;
  right: 2em;
  bottom: 2em;
  width: 4.5em;
  height: 4.5em;
  display: block;
  -webkit-mask: url(../img/contact_ic.svg) no-repeat center/contain;
          mask: url(../img/contact_ic.svg) no-repeat center/contain;
  background-color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul li a::before {
    width: 3.5em;
    height: 3.5em;
  }
}
html body #minuk #contact .wrap ul li a.download {
  background-color: #2F85C5;
}
html body #minuk #contact .wrap ul li a.download:hover {
  color: #2F85C5;
  background-color: #fff;
}
html body #minuk #contact .wrap ul li a.download:hover::before {
  background-color: #2F85C5;
}
html body #minuk #contact .wrap ul li a .ttl {
  font-size: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul li a .ttl {
    font-size: 26px;
  }
}
html body #minuk #contact .wrap ul li a .ttl span {
  font-size: 14px;
  display: block;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul li a .ttl span {
    font-size: 12px;
  }
}
html body #minuk #contact .wrap ul li a p {
  font-size: 18px;
  margin-top: 3em;
  padding-right: 3em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  html body #minuk #contact .wrap ul li a p {
    font-size: 16px;
    padding-right: 3em;
    margin-top: 1em;
  }
}
html body #minuk #member-site {
  padding: 0 0 8em;
}
html body #minuk #member-site .bg {
  background-color: #E7F2F8;
  padding: 8em 0 8em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg {
    padding: 3em 0;
  }
}
@media (max-width: 767px) {
  html body #minuk #member-site {
    padding: 0 0 3em 0;
  }
}
html body #minuk #member-site .bg > .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #member-site .bg > .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #member-site .bg > .wrap .ttl2 {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  color: #25406C;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .ttl2 {
    font-size: 24px;
  }
}
html body #minuk #member-site .bg > .wrap .desc {
  text-align: center;
  font-size: 16px;
  padding-top: 1em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .desc {
    font-size: 14px;
    text-align: left;
  }
}
html body #minuk #member-site .bg > .wrap .ttl3 {
  font-size: 24px;
  padding-left: 1em;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  margin-top: 2.5em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .ttl3 {
    font-size: 18px;
  }
}
html body #minuk #member-site .bg > .wrap .ttl3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #2F85C5;
}
html body #minuk #member-site .bg > .wrap .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
    margin-top: 1.5em;
  }
}
html body #minuk #member-site .bg > .wrap .list li {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 2.5em 1em;
  background-color: #fff;
  border: 2px solid #F8F8F7;
  border-radius: 0.25em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .list li {
    width: 100%;
    padding: 1.25em 1em;
  }
}
html body #minuk #member-site .bg > .wrap .list li .ic {
  width: 6em;
  height: 6em;
  position: relative;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .list li .ic {
    width: 4em;
    height: 4em;
  }
}
html body #minuk #member-site .bg > .wrap .list li .ic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
html body #minuk #member-site .bg > .wrap .list li .ic.ic1::before {
  background: url(../img/member_ic1.svg) no-repeat center/contain;
}
html body #minuk #member-site .bg > .wrap .list li .ic.ic2::before {
  background: url(../img/member_ic2.svg) no-repeat center/contain;
}
html body #minuk #member-site .bg > .wrap .list li .ic.ic3::before {
  background: url(../img/member_ic3.svg) no-repeat center/contain;
}
html body #minuk #member-site .bg > .wrap .list li p {
  font-size: 18px;
  font-weight: 500;
  padding-top: 1em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .list li p {
    font-size: 16px;
  }
}
html body #minuk #member-site .bg > .wrap .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6em;
  gap: 1em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .btn {
    margin-top: 3em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body #minuk #member-site .bg > .wrap .btn li {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .btn li {
    width: 100%;
  }
}
html body #minuk #member-site .bg > .wrap .btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em;
  border-radius: 3em;
}
@media (max-width: 767px) {
  html body #minuk #member-site .bg > .wrap .btn li a {
    font-size: 16px;
    padding: 1.25em;
  }
}
html body #minuk #member-site .bg > .wrap .btn li a span {
  position: relative;
  padding-left: 2.5em;
}
html body #minuk #member-site .bg > .wrap .btn li a.login {
  background-color: #fff;
  border: 2px solid #2F85C5;
  color: #2F85C5;
}
html body #minuk #member-site .bg > .wrap .btn li a.login span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  display: block;
  -webkit-mask: url(../img/member_ic4.svg) no-repeat center/contain;
          mask: url(../img/member_ic4.svg) no-repeat center/contain;
  background-color: #2F85C5;
}
html body #minuk #member-site .bg > .wrap .btn li a.login::after {
  background-color: #2F85C5;
}
html body #minuk #member-site .bg > .wrap .btn li a.login:hover span {
  color: #fff;
  z-index: 1;
}
html body #minuk #member-site .bg > .wrap .btn li a.login:hover span::before {
  background-color: #fff;
}
html body #minuk #member-site .bg > .wrap .btn li a.regist {
  background-color: #C5304C;
  border: 2px solid #C5304C;
  color: #fff;
}
html body #minuk #member-site .bg > .wrap .btn li a.regist::after {
  background-color: #fff;
}
html body #minuk #member-site .bg > .wrap .btn li a.regist span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
  height: 1.5em;
  display: block;
  -webkit-mask: url(../img/member_ic5.svg) no-repeat center/contain;
          mask: url(../img/member_ic5.svg) no-repeat center/contain;
  background-color: #fff;
}
html body #minuk #member-site .bg > .wrap .btn li a.regist:hover span {
  color: #C5304C;
  z-index: 1;
}
html body #minuk #member-site .bg > .wrap .btn li a.regist:hover span::before {
  background-color: #C5304C;
}
html body #minuk #member-site > .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 8em;
}
@media (max-width: 1024px) {
  html body #minuk #member-site > .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  html body #minuk #member-site > .wrap {
    padding-top: 3em;
  }
}
html body #minuk #member-site > .wrap .other-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media (max-width: 767px) {
  html body #minuk #member-site > .wrap .other-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}
html body #minuk #member-site > .wrap .other-btn li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body #minuk #member-site > .wrap .other-btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 4em 1em;
  border-radius: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  html body #minuk #member-site > .wrap .other-btn li a {
    border-radius: 0.25em;
  }
}
html body #minuk #member-site > .wrap .other-btn li a span {
  position: relative;
  z-index: 1;
}
html body #minuk #member-site > .wrap .other-btn li a::before {
  content: "";
  position: absolute;
  right: 1em;
  bottom: 1em;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/specs_ic.svg) no-repeat center/contain;
  z-index: 1;
}
html body #minuk #member-site > .wrap .other-btn li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body #minuk #member-site > .wrap .other-btn li a.hirameki {
  background: url(../img/member_bg1.png) no-repeat center/cover;
}
html body #minuk #member-site > .wrap .other-btn li a.makuatsu {
  background: url(../img/member_bg2.png) no-repeat center/cover;
}
html body #minuk #member-site > .wrap .other-btn li a:hover::after {
  width: 100%;
}
html body #minuk #related {
  padding: 8em 0 10em;
}
@media (max-width: 767px) {
  html body #minuk #related {
    padding: 3em 0 5em;
  }
}
html body #minuk #related .wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1024px) {
  html body #minuk #related .wrap {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
  }
}
html body #minuk #related .wrap .ttl2 {
  font-size: 32px;
  font-weight: 500;
  border-left: 6px solid #2F85C5;
  line-height: 1.25;
  padding-left: 0.5em;
}
@media (max-width: 767px) {
  html body #minuk #related .wrap .ttl2 {
    font-size: 26px;
  }
}
html body #minuk #related .wrap ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr auto;
  margin-top: 4em;
  gap: 0 6em;
}
@media (max-width: 767px) {
  html body #minuk #related .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
    margin-top: 2em;
  }
}
html body #minuk #related .wrap ul li {
  display: contents;
}
html body #minuk #related .wrap ul li a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 0;
  border-radius: 0.25em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #fff;
}
html body #minuk #related .wrap ul li a .ttl {
  color: #535353;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
}
@media (max-width: 767px) {
  html body #minuk #related .wrap ul li a .ttl {
    padding: 1em 1em 0.5em 1em;
  }
}
html body #minuk #related .wrap ul li a .ttl .sub {
  font-size: 14px;
  width: 100%;
}
html body #minuk #related .wrap ul li a .ttl .ic {
  font-size: 9px;
  color: #fff;
  width: 24px;
  height: 24px;
  background-color: #C5304C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.5em;
}
html body #minuk #related .wrap ul li a .img {
  margin-top: 2em;
  width: 100%;
  background-color: #F8F8F7;
  border-radius: 0.5em;
  text-align: center;
  padding: 3em 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  html body #minuk #related .wrap ul li a .img {
    margin-top: 0;
  }
}
html body #minuk #related .wrap ul li a .img img {
  width: 60%;
  height: auto;
}
html body #minuk #related .wrap ul li a::before {
  content: "";
  position: absolute;
  right: 1em;
  bottom: 1em;
  display: block;
  width: 1.5em;
  height: 1.5em;
  -webkit-mask: url(../img/ic_arw.svg) no-repeat center/contain;
          mask: url(../img/ic_arw.svg) no-repeat center/contain;
  background-color: #2F85C5;
  opacity: 0;
}
html body #minuk #related .wrap ul li a:hover {
  background-color: #E5F0FA;
  border: 1px solid #2F85C5;
}
html body #minuk #related .wrap ul li a:hover::before {
  opacity: 1;
}
html body #minuk #related .wrap ul li a:hover .img {
  background-color: transparent;
}
html body #minuk #in-page-link {
  position: fixed;
  right: 0;
  left: calc(100% - 146px);
  width: 146px;
  bottom: 11em;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.16);
  z-index: 100;
  display: none;
}
html body #minuk #in-page-link ul li:not(:last-of-type) {
  border-bottom: 1px solid #D1D0D0;
}
html body #minuk #in-page-link ul li:first-of-type a span::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
html body #minuk #in-page-link ul li a {
  display: block;
  width: 100%;
  font-size: 12px;
  padding: 1.5em 1em;
  font-weight: 600;
  color: #535353;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}
html body #minuk #in-page-link ul li a span {
  display: block;
  width: 100%;
  padding-right: 1em;
  position: relative;
  z-index: 1;
}
html body #minuk #in-page-link ul li a span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.25em;
  width: 1.5em;
  height: 1.5em;
  display: block;
  -webkit-mask: url(../img/in-page-link_ic.svg) no-repeat center/contain;
          mask: url(../img/in-page-link_ic.svg) no-repeat center/contain;
  background-color: #2F85C5;
}
html body #minuk #in-page-link ul li a::after {
  background-color: #E7F2F8;
}
html body #minuk #in-page-link ul li a.act {
  background-color: #C5304C;
  color: #fff;
}
html body #minuk #in-page-link ul li a.act span::before {
  background-color: #fff;
}
html body #minuk #in-page-link ul li a.act:hover::after {
  display: none;
}

@media (min-width: 1280px) {
  html body #minuk #mv .wrap .txt .name span {
    font-size: 18px;
  }
  html body #minuk #mv .wrap .txt .catch {
    font-size: 54px;
  }
  html body #minuk #mv .wrap .txt .catch span {
    font-size: 24px;
  }
  html body #minuk #mv .wrap .spec .box .ttl {
    font-size: 24px;
  }
  html body #minuk #mv .wrap .spec .box ul li {
    font-size: 12px;
  }
}/*# sourceMappingURL=minuk.css.map */