@charset "UTF-8";
/* ====================================================
共通設定
===================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; }

main {
  display: block; }

li {
  list-style: none; }

a {
  text-decoration: none;
  transition: 0.3s; }
  a:hover {
    opacity: 0.6; }

img {
  width: 100%;
  vertical-align: bottom; }

h2 {
  font-size: 4.2rem;
  font-weight: 400;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 50px;
  line-height: 1.2; }
  @media (max-width: 767px) {
    h2 {
      font-size: 2.4rem;
      padding-top: 50px;
      padding-bottom: 20px; } }

h3 {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1.2; }
  @media (max-width: 767px) {
    h3 {
      font-size: 2rem; } }

h4 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  padding-top: 4rem; }
  @media (max-width: 767px) {
    h4 {
      font-size: 1.6rem;
      margin-bottom: 1rem; } }

.smallcomment {
  font-size: 1.2rem; }
  @media (max-width: 767px) {
    .smallcomment {
      font-size: 1rem; } }

.blockelement {
  display: block; }

@media (max-width: 767px) {
  .sp-block {
    display: block; } }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.tac {
  text-align: center; }

.pc {
  display: inline; }
  @media (max-width: 767px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media (max-width: 767px) {
    .sp {
      display: block; } }

.link {
  color: #333333;
  font-weight: bold;
  margin: 0 1rem;
  border-bottom: 2px solid #e67586;
  display: inline-block;
  line-height: 1.2em; }
  @media (max-width: 767px) {
    .link {
      margin: 0 5px;
      border-bottom: 1px solid #e67586; } }

.red {
  color: red; }

/*---------------- wrapper -------------------------*/
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #ffffff;
  font-size: 1.6rem; }
  @media (max-width: 767px) {
    .wrapper {
      font-size: 1.3rem; } }

.basewrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 50px; }
  @media (max-width: 767px) {
    .basewrap {
      padding: 0 20px; } }

.miniwrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 50px; }
  @media (max-width: 767px) {
    .miniwrap {
      padding: 0 20px; } }

/*---------------- header -------------------------*/
.header {
  padding: 1rem 8rem 1rem 5rem;
  justify-content: space-between;
  background-color: #ffffff;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99; }
  @media (max-width: 767px) {
    .header {
      padding: 10px; } }
  .header__title {
    width: 350px; }
    @media (max-width: 767px) {
      .header__title {
        width: 150px; } }
    .header__title h1,
	.header__title p{
      font-size: 1.3rem;
      color: #333333; }
      @media (max-width: 767px) {
        .header__title h1,
		  .header__title p{
          font-size: 1rem; } }
  .header__nav {
    padding-top: 1rem; }
    @media (max-width: 767px) {
      .header__nav {
        padding-top: 5px; } }
    .header__nav__order {
      width: 20rem;
      background-color: #e67586;
      color: #ffffff;
      border: 3px solid #e67586;
      border-radius: 10px;
      padding: 0.5rem 1.5rem; }
	.header__nav__order span{
		font-size: 0.7em;
	}
      @media (max-width: 767px) {
        .header__nav__order {
          border: 2px solid #e67586;
          width: 8rem;
          font-size: 1rem;
          padding: 0.3rem 0.5rem;
          border-radius: 5px; } }
    .header__nav__mypage {
      width: 12rem;
      background-color: #ffffff;
      color: #e67586;
      border: 3px solid #e67586;
      border-radius: 10px;
      padding: 0.5rem 1.5rem;
      margin-left: 2rem;
      margin-right: 4.5rem; }
      @media (max-width: 767px) {
        .header__nav__mypage {
          border: 2px solid #e67586;
          width: 7rem;
          font-size: 1rem;
          padding: 0.3rem 0.5rem;
          margin-left: 7px;
          border-radius: 5px; } }

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 80vh;
  /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.6s; }

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0; }

/*ナビゲーションの縦スクロール*/
/*
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
*/
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none; }

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold; }

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 70px;
  height: 70px; }
  @media (max-width: 767px) {
    .openbtn {
      top: 3px;
      right: 10px;
      width: 50px;
      height: 50px; } }

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 50%; }

.openbtn span:nth-of-type(1) {
  top: 15px; }

.openbtn span:nth-of-type(2) {
  top: 23px; }

.openbtn span:nth-of-type(3) {
  top: 31px; }

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%; }

.openbtn.active span:nth-of-type(2) {
  opacity: 0; }

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%; }

/*---------------- top image -------------------------*/
.top {
  padding-top: 80px;
    background: #ffffff;
  height: 95vh;
  position: relative;
}

.slide {
    height: 85vh;
    overflow: hidden;
}
.slide .item span {
  display: block;
  height: 85vh;
}
.slide .item span i {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100vw auto;width: 0;
}
.slide .slick-slide:nth-of-type(2) span i{background-image: url("../image/main_pc_1.jpg");}
.slide .slick-slide:nth-of-type(3) span i{background-image: url("../image/main_pc_2.jpg");}
.slide .slick-slide:nth-of-type(4) span i{background-image: url("../image/main_pc_3.jpg");}
.slide .slick-slide:nth-of-type(1) span i{background-image: url("../image/main_pc_4.jpg");}
        
.top__title { position: absolute; top: 50px;   left: 70px;}

.slide-animation span i  {    animation: slideLeft 2s 0s forwards;}
@keyframes slideLeft {  0% {    width: 0;  }  50% {    width: 100%;  }  100% {    width: 100%;  }}

.top__title img {      width: 40vw; }
@media (max-width: 1200px) {
	.top__title img {      width: 50vw; }}
@media (max-width: 834px) {
	.top__title img {      width: 80%; }}

.top__container {position: absolute;top: 90px;left: 0;right: 0; margin: 0 auto; width: 100%;height: 85vh;}
.top__container__copybox__price {position: absolute;right: 0;bottom: -30px; margin-right: 100px;}
@media (max-width: 1180px) {
    .top__container__copybox__price{margin-right: 0;}}
.top__container__copybox__price img{width: inherit;}

@media (max-width: 1400px) { .top__title { left: 10px;}.slide .item span i{background-size: 100vw;} }
@media (max-width: 834px) {
	.slide .item span i{background-size: cover;} }
@media (max-width: 767px) {
	.slide .item span i{background-size: auto;} }
@media (max-width: 767px) { .top__title { left: 0px; margin-right: 10px;}}
@media (max-width: 767px) {
.top { padding-top: 50px;height: 80vh; background-position: 65%; }
.slide{height: 70vh;}         
.slide .slick-slide:nth-of-type(2) span i{background-image: url("../image/main_sp_1.jpg");}
.slide .slick-slide:nth-of-type(3) span i{background-image: url("../image/main_sp_2.jpg");}
.slide .slick-slide:nth-of-type(4) span i{background-image: url("../image/main_sp_3.jpg");}
.slide .slick-slide:nth-of-type(1) span i{background-image: url("../image/main_sp_4.jpg");}
          
.slide .item span i{background-size: 100vw auto;} 
.top__title {top: 0;}
.top__title img { width: 100%; } 
.top__container{height: 50vh;}
          }

@media (max-width: 500px) { .slide .item span { height: 500px;}
.top__container__copybox__price{bottom:-120px;} }




/*---------------- banner -------------------------*/
.banner {
  margin-top: 5rem; }
  @media (max-width: 767px) {
    .banner {
      margin-top: 2rem; } }

/*---------------- what closetservice -------------------------*/
.what__container {
  border: 20px solid #f6f6f6;
  padding: 10px; }
  @media (max-width: 767px) {
    .what__container {
      border: 10px solid #f6f6f6; } }
  .what__container__upper {
    display: flex;
    justify-content: space-around;
    width: 100%; }
    @media (max-width: 821px) {
      .what__container__upper {
        display: block; } }
    .what__container__upper__photo1 {
      align-items: center;
      width: calc(100% - 300px);
      margin-left: 50px; }
      @media (max-width: 821px) {
        .what__container__upper__photo1 {
          width: 100%;
          margin-left: 0; } }
      .what__container__upper__photo1 img {
        width: 180px;
        object-fit: cover;
        background-color: #ffffff; }
        @media (max-width: 767px) {
          .what__container__upper__photo1 img {
            width: 100px;
            object-fit: cover; } }
    .what__container__upper__text {
      background-color: #ffffff;
      padding-top: 20px;
      font-weight: 600;
      font-size: 18px;
      line-height: 2em;
      letter-spacing: 0.1;
      margin-left: 4rem;
      width: calc(100%-180px); }
      @media (max-width: 767px) {
        .what__container__upper__text {
          padding-top: 2rem;
          line-height: 2em;
          margin-left: 1rem;
          margin-bottom: 2rem;
          font-size: 1.3rem;
          letter-spacing: 0; } }
      .what__container__upper__text p {
        margin-top: 2rem; }
        @media all and (-ms-high-contrast: none) {
          .what__container__upper__text p {
            font-weight: bold; } }
        @media (max-width: 767px) {
          .what__container__upper__text p {
            margin-top: 0; } }
    .what__container__upper__photo2 {
      text-align: center;
      margin: 0 auto;
      margin-right: 5rem;
      width: 300px; }
      @media (max-width: 767px) {
        .what__container__upper__photo2 {
          width: 200px; } }
  .what__container__under {
    width: 100%; }
    .what__container__under li {
      width: 25%; }
  .what__container__lastcomment {
    margin-top: 2rem; }
    @media (max-width: 767px) {
      .what__container__lastcomment {
        margin-top: 1rem; } }

.pinkline {
  display: inline-block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: linear-gradient(transparent 60%, #deacb3 60%); }

/*---------------- point -------------------------*/
.point1 {
  background-image: url(../image/point1.jpg); }

.point2 {
  background-image: url(../image/point2.jpg); }

.point3 {
  background-image: url(../image/point3.jpg); }

.point4 {
  background-image: url(../image/point4.jpg); }

.point5 {
  background-image: url(../image/point5.jpg); }

.point {
  background-size: cover;
  background-repeat: no-repeat; }
  @media (max-width: 767px) {
    .point {
      position: relative; } }
  .point__title {
    padding-bottom: 0; }
  .point__step {
    height: 350px;
    position: relative;
    margin-top: 50px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center; }
    @media (max-width: 767px) {
      .point__step {
        height: 200px;
        margin-top: 20px;
        margin-bottom: 5px; } }
    .point__step__number {
      width: 100px;
      height: 100px;
      border-bottom-right-radius: 100px;
      position: absolute;
      background-color: #e67586;
      font-size: 5rem;
      color: #ffffff;
      vertical-align: middle;
      padding-left: 25px; }
      @media all and (-ms-high-contrast: none) {
        .point__step__number {
          padding-top: 10px; } }
      @media (max-width: 767px) {
        .point__step__number {
          width: 50px;
          height: 50px;
          border-bottom-right-radius: 50px;
          font-size: 2.5rem;
          padding-left: 12px; } }
    .point__step__text {
      width: 30%;
      height: 100%;
      background-color: rgba(76, 76, 76, 0.6);
      color: #ffffff;
      padding: 130px 2rem 0 2rem; }
      @media (max-width: 767px) {
        .point__step__text {
          width: 100%;
          height: 30%;
          padding: 2rem;
          position: absolute;
          bottom: 0;
          padding: 1rem;
          display: flex; } }
      @media (max-width: 767px) {
        .point__step__text p {
          width: 80%;
          flex-shrink: 0; } }
      .point__step__text a:hover {
        opacity: 1; }
      .point__step__text__more {
        width: 70%;
        background-color: #ffffff;
        border-radius: 10px;
        color: #e67586;
        font-weight: bold;
        padding: 1rem 1.5rem;
        margin: 5rem auto 0 auto;
        text-align: center; }
@media (max-width: 1080px) {
          .point__step__text__more {
              width: 100%;
    }}

        @media (max-width: 767px) {
          .point__step__text__more {
            width: 100%;
            font-size: 1rem;
            padding: 0.5rem;
            margin-top: 0;
            margin-left: 0.5rem; } }
        @media (max-width: 767px) {
          .point__step__text__more span {
            display: block; } }
        .point__step__text__more:hover {
          transition: all 0.3s;
          background-color: #333333;
          color: #ffffff; }

/*---------------- order btn -------------------------*/
.order {
  margin: 7rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold; }
  @media (max-width: 767px) {
    .order {
      font-size: 1.5rem;
      margin: 4rem 0; } }
  .order__text {
    margin: 3rem 0 2rem 0; }
    @media (max-width: 767px) {
      .order__text {
        margin-bottom: 1rem; } }
  .order__btn p {
    display: inline-block;
    border: 3px solid #57bd37;
    background-color: #57bd37;
    border-radius: 1rem;
    color: #ffffff;
    width: 60rem;
    padding: 2rem 0; }
    @media (max-width: 767px) {
      .order__btn p {
        width: 30rem;
        padding: 1.5rem 0; } }
  .order__link p {
    display: inline-block;
    border: 3px solid #57bd37;
    background-color: #ffffff;
    border-radius: 1rem;
    width: 60rem;
    padding: 2rem 0;
    color: #57bd37;
    margin-bottom: 2rem; }
    @media (max-width: 767px) {
      .order__link p {
        width: 30rem;
        padding: 1.5rem 0; } }

.contact-btn-wrap{
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 15px auto 0;
    border: 3px solid #e67586;
    background-color: #e67586;
    border-radius: 1rem;
    color: #ffffff;
    width: 60rem;
    padding: 2rem;
}
.contact-btn-wrap > p{
	width: 100%;
}
.contact-btn-wrap .contact-btn{
	display: block;
	font-size: 1.4rem;
	width: calc(50% - 4px);
	padding: 15px;
	color: #ffffff;
    background-color: #e67586;
    border: 3px solid #ffffff;
	border-radius: 1rem;
	cursor: pointer;
	margin-top: 10px;
}
.contact-btn-wrap .contact-btn.first{
	border: 3px solid #e67586;
    color: #e67586;
    background-color: #ffffff;
}
@media (max-width: 767px) {
	.contact-btn-wrap{
		width: 30rem;
		padding: 1.5rem;
	}
	.contact-btn-wrap .contact-btn{
		width: 100%;
	}
	.contact-btn-wrap .contact-btn.first{
		margin-top: 7px;
	}
}


/*---------------- box -------------------------*/
.box {
  background-color: #f6f6f6;
  padding-bottom: 1rem; }
  @media (max-width: 860px) {
    .box {
      padding: 0 4% 1rem 4%; } }
  .box__subtitle {
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    padding-top: 1rem; }
    @media (max-width: 767px) {
      .box__subtitle {
        font-size: 16px;
        padding-top: 0.5rem; } }
    .box__subtitle::before, .box__subtitle::after {
      border-top: 1px solid #333;
      margin-top: 1.2rem;
      content: "";
      width: 4rem; }
      @media (max-width: 767px) {
        .box__subtitle::before, .box__subtitle::after {
          margin-top: 1rem;
          width: 2rem; } }
    .box__subtitle::before {
      margin-right: 1rem; }
      @media (max-width: 767px) {
        .box__subtitle::before {
          margin-right: 0.5rem; } }
    .box__subtitle::after {
      margin-left: 1rem; }
      @media (max-width: 767px) {
        .box__subtitle::after {
          margin-left: 0.5rem; } }
  .box__item {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative; }
    @media (max-width: 767px) {
      .box__item {
        padding-bottom: 20px;
        padding-top: 1rem;
        margin-top: 20px; } }
    .box__item__copy {
      position: absolute;
      left: -5%;
      top: -10%; }
      @media (max-width: 767px) {
        .box__item__copy {
          left: -3%;
          top: -5%; } }
      .box__item__copy img {
        width: 180px; }
        @media (max-width: 767px) {
          .box__item__copy img {
            width: 100px; } }
    .box__item__copyno1 {
      position: absolute;
      left: -5%;
      top: -10%; }
      @media (max-width: 767px) {
        .box__item__copyno1 {
          left: -3%;
          top: -3%; } }
      .box__item__copyno1 img {
        width: 540px; }
        @media (max-width: 767px) {
          .box__item__copyno1 img {
            width: 300px; } }
    .box__item__container {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 767px) {
        .box__item__container {
          display: block; } }
      .box__item__container__photo {
        width: 50%;
        margin-top: 2rem; }
        @media (max-width: 767px) {
          .box__item__container__photo {
            width: 100%;
            margin-top: 0; } }
        .box__item__container__photo ul {
          display: flex; }
      .box__item__container__description {
        width: 45%; }
        @media (max-width: 767px) {
          .box__item__container__description {
            width: 100%; } }
        .box__item__container__description__title {
          margin-top: 1rem;
          position: relative;
          margin-bottom: 1em; }
          @media (max-width: 767px) {
            .box__item__container__description__title {
              margin-top: 1rem;
              margin-bottom: 0.5rem; } }
          .box__item__container__description__title:before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -20px;
            display: inline-block;
            width: 60px;
            height: 8px;
            transform: translateX(-50%);
            background-color: #e67586;
            border-radius: 2px; }
            @media (max-width: 767px) {
              .box__item__container__description__title:before {
                bottom: -15px;
                width: 50px;
                height: 6px; } }
        .box__item__container__description__text {
          margin: 5rem 0 2rem 0; }
          @media (max-width: 767px) {
            .box__item__container__description__text {
              margin: 3rem 0 2rem 0; } }
        .box__item__container__description .smallcomment {
          margin-top: 1rem;
          line-height: 1.9; }
          @media (max-width: 767px) {
            .box__item__container__description .smallcomment {
              margin-top: 1rem; } }
        .box__item__container__description table {
          margin-top: 3rem;
          text-align: center;
          width: 100%;
          table-layout: fixed; }
          @media (max-width: 767px) {
            .box__item__container__description table {
              margin-top: 1.5rem; } }
          .box__item__container__description table th {
            background-color: #cfcfcf;
            width: 35%;
            padding: 1rem 0px;
            font-weight: 500; }
            @media (max-width: 767px) {
              .box__item__container__description table th {
                width: 30%; } }
          .box__item__container__description table td {
            padding: 0.5rem 0; }
            @media (max-width: 767px) {
              .box__item__container__description table td {
                line-height: 1.2; } }
          .box__item__container__description table .price {
            font-size: 3rem;
            font-weight: bold; }
            @media (max-width: 767px) {
              .box__item__container__description table .price {
                font-size: 2rem; } }
          .box__item__container__description table .tax {
            font-size: 1.2rem; }
      .box__item__container__more {
        display: block;
        color: #333333;
        border: 1px solid #333;
        text-align: center;
        border-radius: 10px;
        padding: 1rem 1rem;
        font-size: 1.8rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s; }
        @media (max-width: 767px) {
          .box__item__container__more {
            font-size: 1.6rem; } }
        .box__item__container__more:hover {
          background-color: #333333;
          color: #ffffff; }
    .box__item__order {
      max-width: 860px;
      margin: 0 auto; }
      .box__item__order p {
        background-color: #e67586;
        text-align: center;
        padding: 3rem 0;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        color: #ffffff;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 10rem; }
        @media (max-width: 767px) {
          .box__item__order p {
            font-size: 1.6rem;
            padding: 1.5rem 0;
            margin-bottom: 7rem; } }
      .box__item__order .mb0 {
        margin-bottom: 0; }
  .box__lastcomment {
    font-size: 1.2rem;
    margin-top: 2rem; }
    @media (max-width: 767px) {
      .box__lastcomment {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 10px; } }

.bold {
  font-weight: bold; }

.icon {
  justify-content: space-around; }
  .icon__container {
    width: 45%;
    padding-top: 5px;
    font-size: 10px;
    background-color: #ffffff;
    border: 1px solid #333;
    border-radius: 5px;
    line-height: 1.2;
    margin: 0 auto; }
    .icon__container__text {
      background-color: #333333;
      padding: 5px;
      color: #ffffff; }
      .icon__container__text:hover {
        opacity: 0.8; }

.box #mainImg, .box #mainImg_a, .box #mainImg_l, .box #mainImg_b, .box #mainImg_s, .box #mainImg_p {
  width: 100%;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .box #mainImg, .box #mainImg_a, .box #mainImg_l, .box #mainImg_b, .box #mainImg_s, .box #mainImg_p {
      width: 80%; } }
.box #subImg, .box #subImg_a, .box #subImg_l, .box #subImg_b, .box #subImg_s, .box #subImg_p {
  -webkit-box-pack: distribute;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0 auto; }
  .box #subImg img, .box #subImg_a img, .box #subImg_l img, .box #subImg_b img, .box #subImg_s img, .box #subImg_p img {
    width: 100%;
    cursor: pointer;
    transition: all 0.3s; }

.popup-content {
  margin: 20px auto 20px auto;
  width: 80%;
  height: 80%; }
  @media (max-width: 767px) {
    .popup-content {
      width: 85%;
      height: auto;
      margin-bottom: 40px; } }

.popup {
  background-color: #ffffff;
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 800px;
  height: 600px;
  overflow-y: scroll;
  z-index: 99; }
  @media (max-width: 767px) {
    .popup {
      width: 90vw;
      height: 90vh;
      overflow-y: scroll; } }
  .popup__photo {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    @media (max-width: 767px) {
      .popup__photo {
        display: block;
        text-align: center; } }
    .popup__photo img {
      width: 300px;
      object-fit: cover; }
      @media all and (-ms-high-contrast: none) {
        .popup__photo img {
          object-fit: none; } }
      @media (max-width: 767px) {
        .popup__photo img {
          height: 160px;
          width: 100%;
          object-fit: contain; } }
  @media all and (max-width: 767px) and (-ms-high-contrast: none) {
    .popup__photo img {
      object-fit: none; } }

  .popup__title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center; }
  .popup__size {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem; }
    @media (max-width: 767px) {
      .popup__size {
        font-size: 1.3rem; } }

/* チェックボックスの初期設定 */
#popup-on,
#popup-on_a,
#popup-on_l,
#popup-on_b {
  display: none; }

/* チェックされたらポップアップウインドウを開く */
#popup-on:checked + .popup,
#popup-on_a:checked + .popup,
#popup-on_l:checked + .popup,
#popup-on_b:checked + .popup {
  display: block; }

/* 閉じるアイコン（右上） */
.icon-close {
  background: #000;
  color: #fff;
  font-size: 50px;
  padding: 0 15px;
  position: absolute;
  right: 0; }
  @media (max-width: 767px) {
    .icon-close {
      font-size: 30px;
      padding: 0 10px; } }

/* 閉じるボタン */
.btn-close {
  display: block;
  background: #000;
  border-radius: 10px;
  color: #fff;
  padding: 1.5rem;
  cursor: pointer;
  margin: 10px auto;
  width: 95%;
  text-align: center; }

/* 開くボタン */
.btn-open {
  background: #fff;
  border-radius: 10px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  margin: 10px auto;
  width: 95%;
  text-align: center; }

.packTitle {
  font-size: 3.5rem;
  text-align: center;
  line-height: 1.2; }
  @media (max-width: 767px) {
    .packTitle {
      font-size: 2rem; } }

/*---------------- option -------------------------*/
.option {
  background-color: #f6f6f6;
  padding-bottom: 5rem; }
  @media (max-width: 860px) {
    .option {
      padding: 0 5% 3rem 5%; } }
  .option__container {
    background-color: #ffffff;
    border: solid 1px #333;
    border-radius: 15px;
    padding-bottom: 50px;
    margin-bottom: 5rem; }
    @media (max-width: 767px) {
      .option__container {
        padding-bottom: 3rem; } }
    .option__container__category {
      text-align: center;
      background-color: #cfcfcf;
      margin: 0 10rem 3rem 10rem;
      padding: 1.5rem;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      font-size: 2.4rem;
      color: #ffffff;
      font-weight: bold; }
      @media (max-width: 767px) {
        .option__container__category {
          margin: 0 5rem 1.5rem 5rem;
          border-bottom-left-radius: 10px;
          border-bottom-right-radius: 10px;
          font-size: 1.6rem;
          padding: 1rem; } }
    .option__container__titleprice {
      justify-content: space-between;
      position: relative;
      margin-bottom: 3rem;
      padding-left: 3rem; }
      @media (max-width: 767px) {
        .option__container__titleprice {
          margin-bottom: 2rem;
          padding-left: 0;
          margin-left: 0.5rem; } }
      .option__container__titleprice__title img {
        width: 7rem;
        height: 7rem; }
        @media (max-width: 767px) {
          .option__container__titleprice__title img {
            width: 4rem;
            height: 4rem; } }
      .option__container__titleprice__title p {
        font-size: 3rem;
        font-weight: bold;
        margin-left: 2rem;
        line-height: 1.2; }
        @media (max-width: 767px) {
          .option__container__titleprice__title p {
            font-size: 1.8rem;
            margin-left: 1rem; } }
        .option__container__titleprice__title p .cleaningtitle {
          font-size: 3.5rem;
          position: absolute;
          top: 25%; }
          @media (max-width: 767px) {
            .option__container__titleprice__title p .cleaningtitle {
              font-size: 1.8rem; } }
      .option__container__titleprice__priceflex {
        display: flex; }
        @media (max-width: 767px) {
          .option__container__titleprice__priceflex {
            display: block; } }
      .option__container__titleprice__price {
        position: absolute;
        top: 30%;
        right: 0;
        text-align: right;
        line-height: 1.2; }
    .option__container__text {
      margin-bottom: 3rem;
      margin-left: 3rem; }
      @media (max-width: 767px) {
        .option__container__text {
          margin-bottom: 1rem;
          margin-left: 0; } }
    .option__container__photo div {
      width: 100%;
      margin-bottom: 3rem; }
      @media (max-width: 767px) {
        .option__container__photo div {
          margin-bottom: 1rem; } }
    .option__container__menu {
      margin-bottom: 1rem; }
      .option__container__menu__title {
        width: 10rem;
        border-right: 1px dashed #333333;
        padding: 1rem 0 1rem 2rem;
        flex-shrink: 0; }
        @media (max-width: 767px) {
          .option__container__menu__title {
            width: 8rem;
            padding: 1rem 0 1rem 1rem;
            line-height: 3; } }
      .option__container__menu__text {
        padding: 1rem 0;
        margin-left: 2rem; }
        @media (max-width: 767px) {
          .option__container__menu__text {
            margin-left: 1rem; } }
  .option__lastcomment {
    margin-top: 1rem;
    font-size: 1.2rem; }
    @media (max-width: 767px) {
      .option__lastcomment {
        font-size: 1rem; } }

/*---------------- how to use -------------------------*/
.use {
  background-color: #f6f6f6;
  padding-bottom: 5rem; }
  @media (max-width: 767px) {
    .use {
      padding: 0 5% 5rem 5%; } }
  .use__title span {
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem; }
    @media (max-width: 767px) {
      .use__title span {
        font-size: 1.6rem;
        margin-bottom: 0.5rem; } }
  .use__container {
    display: flex; }
    @media (max-width: 767px) {
      .use__container {
        display: block; } }
    .use__container__item {
      position: relative;
      background-color: #ffffff;
      width: 100%; }
      .use__container__item__number {
        position: absolute;
        width: 6rem;
        height: 6rem;
        background-color: #e67586;
        border-radius: 6rem;
        color: #ffffff;
        font-weight: bold;
        font-size: 2.4rem;
        top: -1rem;
        left: -3rem;
        text-align: center;
        padding-top: 1.2rem; }
        @media (max-width: 767px) {
          .use__container__item__number {
            width: 4rem;
            height: 4rem;
            font-size: 1.6rem;
            left: -1rem;
            padding-top: 0.8rem; } }
      .use__container__item__flex {
        display: flex; }
        @media all and (-ms-high-contrast: none) {
          .use__container__item__flex {
            padding-top: 8px;
            padding-left: 8px; } }
        @media (max-width: 767px) {
          .use__container__item__flex {
            display: block; } }
  @media all and (max-width: 767px) and (-ms-high-contrast: none) {
    .use__container__item__flex {
      padding-top: 0;
      padding-left: 0; } }

      .use__container__item__photo {
        flex-shrink: 0; }
      .use__container__item__photo img {
        width: 160px;
        height: 100%;
        object-fit: cover; }
        @media (max-width: 767px) {
          .use__container__item__photo img {
            width: 100%; } }
      .use__container__item__titletext {
        padding: 2rem; }
        @media (max-width: 767px) {
          .use__container__item__titletext {
            padding: 1rem 1.5rem 1.5rem 1.5rem; } }
        .use__container__item__titletext__title {
          font-size: 2rem;
          font-weight: bold;
          margin-bottom: 2rem; }
          @media (max-width: 767px) {
            .use__container__item__titletext__title {
              margin-bottom: 1rem;
              font-size: 1.8rem; } }
    .use__container__next {
      color: #cfcfcf;
      text-align: center;
      font-size: 3rem;
      padding: 2rem 0; }

/*---------------- priceplan -------------------------*/
.priceplan {
  background-color: #ffffff;
  padding-bottom: 5rem; }
  @media (max-width: 767px) {
    .priceplan {
      padding: 0 0 3rem 0; } }
  .priceplan__title {
    padding-bottom: 20px; }
  .priceplan__container {
    margin-bottom: 5rem; }
    .priceplan__container__text {
      text-align: center;
      margin-bottom: 2rem; }
      @media (max-width: 767px) {
        .priceplan__container__text {
          text-align: left;
          margin-bottom: 1rem; } }
    .priceplan__container__table {
      margin-top: 1rem;
      margin-bottom: 1rem;
      border-collapse: collapse;
      width: 100%; }
      .priceplan__container__table th,
      .priceplan__container__table td {
        border: 1px solid #333;
        padding: 10px 10px;
        font-weight: normal;
        line-height: 1.5; }
    .priceplan__container__photo {
      border: 1px solid #333;
      margin: 1rem 0px; }

.takeout__menu {
  width: 15rem;
  background-color: #f6f6f6; }
  @media (max-width: 767px) {
    .takeout__menu {
      width: 10rem; } }
.takeout__price {
  text-align: center;
  width: 8rem; }
  @media (max-width: 767px) {
    .takeout__price {
      width: 7rem; } }

.schedule {
    /*
    &__photo,
    &__pickup,
    &__storage,
    &__takeout {
        text-align: center;

        @media (max-width: 767px) {
            writing-mode: vertical-rl;
            -webkit-writing-mode: vertical-rl;

            & span {
                writing-mode: horizontal-tb;
            }
        }
    }
*/ }
  .schedule__menu {
    background-color: #f6f6f6; }
    .schedule__menu td {
      padding: 15px 10px;
      text-align: center; }
  .schedule__box {
    width: 14rem; }
    @media (max-width: 767px) {
      .schedule__box {
        width: 8rem; } }
  .schedule__limit {
    width: 13rem;
    text-align: center; }
    @media (max-width: 767px) {
      .schedule__limit {
        width: 6rem; } }
  @media (max-width: 767px) {
    .schedule__photo {
      width: 4rem; } }
  .schedule__yoko {
    text-orientation: upright; }

.minimum__menu {
  background-color: #f6f6f6; }
  .minimum__menu td {
    padding: 15px 10px; }
.minimum__month {
  width: 150px;
  text-align: center; }
  @media (max-width: 767px) {
    .minimum__month {
      width: 100px; } }
.minimum__price {
  text-align: center; }
  @media (max-width: 767px) {
    .minimum__price {
      width: 90px; } }
.minimum__total {
  text-align: center; }

/*---------------- delivery -------------------------*/
.delivery {
  background-color: #f6f6f6;
  padding-top: 5rem;
  padding-bottom: 5rem; }
  @media (max-width: 767px) {
    .delivery {
      padding: 5rem 0 5rem 0; } }
  .delivery__container {
    margin-bottom: 3rem; }
    @media (max-width: 767px) {
      .delivery__container {
        padding-right: 0;
        padding-left: 0; } }
    .delivery__container__item {
      position: relative;
      background-color: #ffffff; }
      .delivery__container__item__flex {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        @media all and (-ms-high-contrast: none) {
          .delivery__container__item__flex {
            padding-top: 8px;
            padding-left: 8px; } }
        @media (max-width: 767px) {
          .delivery__container__item__flex {
            display: block; } }
  @media all and (max-width: 767px) and (-ms-high-contrast: none) {
    .delivery__container__item__flex {
      padding-top: 0;
      padding-left: 0; } }

      .delivery__container__item__photo {
        flex-shrink: 0; }
      .delivery__container__item__photo img {
        width: 250px;
        height: 230px;
        object-fit: cover;
        padding: 10px; }
        @media (max-width: 767px) {
          .delivery__container__item__photo img {
            width: 100%;
            height: 180px;
            padding: 0; } }
      .delivery__container__item__titletext {
        width: calc(100%-250px);
        padding: 2rem; }
        @media (max-width: 767px) {
          .delivery__container__item__titletext {
            padding: 1rem 3rem 1.5rem 3rem; } }
        .delivery__container__item__titletext__copy {
          color: #e67586; }
        .delivery__container__item__titletext__title {
          font-size: 2rem;
          font-weight: bold;
          margin-bottom: 2rem; }
          @media (max-width: 767px) {
            .delivery__container__item__titletext__title {
              margin-bottom: 1rem;
              font-size: 1.8rem; } }
        .delivery__container__item__titletext__table {
          margin-top: 1rem;
          margin-bottom: 1rem;
          border-collapse: collapse;
          width: 100%; }
          .delivery__container__item__titletext__table th,
          .delivery__container__item__titletext__table td {
            border: 1px solid #333;
            padding: 5px 10px;
            font-weight: normal; }
          .delivery__container__item__titletext__table th {
            width: 15rem; }
          .delivery__container__item__titletext__table td {
            line-height: 1.3; }

/*---------------- cleaning pack -------------------------*/
.limit {
  display: block;
  font-size: 1.2rem;
  font-weight: normal; }

.line {
 text-decoration-line: line-through;
	-webkit-text-decoration-line: line-through;
    text-decoration-color:#f00000;
    text-decoration-thickness: 2px;
  margin-right: 0.5rem; }
  @media (max-width: 767px) {
    .line {
      margin-right: 0.5rem; } }

/*---------------- storage -------------------------*/
.storage {
  background-color: #f6f6f6;
  padding-bottom: 5rem; }
  @media (max-width: 767px) {
    .storage {
      padding-bottom: 3rem; } }
  .storage__container {
    margin-bottom: 5rem; }
    .storage__container__titletext {
      background-color: #ffffff;
      padding: 4rem 3rem; }
      @media (max-width: 767px) {
        .storage__container__titletext {
          padding: 2rem; } }
      .storage__container__titletext__title {
        font-weight: bold;
        font-size: 2rem;
        margin-bottom: 1rem; }
        @media (max-width: 767px) {
          .storage__container__titletext__title {
            font-size: 1.8rem; } }

/*---------------- QandA -------------------------*/
.question {
  padding-bottom: 6rem; }
  .question__list {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 0 1em 0; }
    .question__list input {
      position: absolute;
      opacity: 0; }
    .question__list label {
      font-weight: bold;
      line-height: 1.6em;
      position: relative;
      display: block;
      margin: 0 0 0 0;
      padding: 1em 2em 1em 2.5em;
      cursor: pointer;
      text-indent: 1em;
      border-radius: 0.5em;
      background-color: #cfcfcf; }
      @media (max-width: 767px) {
        .question__list label {
          padding: 1em 2em 1em 1em; } }
      .question__list label:hover {
        transition: all 0.3s;
        color: #ffffff;
        background-color: #333333; }
      .question__list label::after {
        font-size: 1.7em;
        font-weight: bold;
        line-height: 2em;
        position: absolute;
        top: 0;
        right: 0;
        content: '+';
        display: inline-block;
        width: 2em;
        height: 2em;
        -webkit-transition: transform 0.4s;
        transition: transform 0.4s; }
    .question__list__answer {
      position: relative;
      overflow: hidden;
      max-height: 0;
      -webkit-transition: max-height 0.2s;
      transition: max-height 0.2s;
      border-radius: 0 0 0.5em 0.5em; }
      .question__list__answer p {
        margin: 20px 30px; }
        @media (max-width: 767px) {
          .question__list__answer p {
            margin: 10px 15px;
            line-height: 1.7; } }

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.question__list input:checked ~ .question__list__answer {
  max-height: 40em;
  border: 5px solid #cfcfcf; }

/* 質問をクリックした時のアイコンの動き */
.question__list input:checked ~ label {
  border-radius: 0.5em 0.5em 0 0; }

/* 質問をクリックした時の+の動き */
.question__list input[type=checkbox]:checked + label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

/*---------------- footer -------------------------*/
.footer {
  font-size: 1.2rem;
  margin-bottom: 5rem; }
  @media (max-width: 767px) {
    .footer {
      margin-bottom: 3rem;
      font-size: 1rem; } }
  .footer__text {
    text-align: center;
    margin-bottom: 1rem; }
  .footer__container {
    background-color: #f6f6f6;
    padding-bottom: 5rem;
    padding-top: 5rem; }
    @media (max-width: 767px) {
      .footer__container {
        padding: 2rem 0;
        line-height: 2; } }
    .footer__container__list__group {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 767px) {
        .footer__container__list__group {
          display: block; } }
      .footer__container__list__group li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0px; }
        @media (max-width: 767px) {
          .footer__container__list__group li {
            text-align: left;
            padding-left: 8rem; } }
        .footer__container__list__group li p {
          color: #333333; }
  .footer__logo {
    margin: 3rem auto 1rem;
    width: 20%; }
    @media (max-width: 767px) {
      .footer__logo {
        margin: 1.5rem auto;
        width: 40%; } }



/*追加要素*/
/*お申し込みはこちら*/
.subscription-wrap{
	width: 100%;
	padding: 0;
}
.subscription-inner{
	width: 60rem;
	max-width: 980px;
	margin: 0 auto;
}
   @media (max-width: 767px) {
       .subscription-inner {
           width: 30rem;
           padding: 1.5rem 0;
       }}

.subscription-main-btn{
	display: block;
	width: 100%;
	padding: 20px;
	color: #ffffff;
	background-color: #57bd37;
	border: 3px solid #57bd37;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	transition: .3s ease;
}
.subscription-main-btn:hover{
	color: #57bd37;
	background-color: #ffffff;
}
.subscription-main-btn h3{
	font-size: 20px;
	letter-spacing: 0.075em;
	font-weight: 800;
}
.subscription-sub-wrap{
	margin-top: 15px;
	width: 100%;
	padding: 20px 0;
	background-color: #dedede;
	-webkit-border-radius: 16px;
	border-radius: 16px;
}
.subscription-sub-wrap > p{
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.025em;
	font-weight: 800;
}
@media (max-width: 767px) {
    .subscription-sub-wrap > p{
        font-size: 1.5rem;
    }}
    
.subscription-sub-btn-wrap{
	width: 90%;
	max-width: 750px;
	margin: 10px auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
   @media (max-width: 767px) {
     .subscription-sub-btn-wrap{
         display: block;
       }}

.subscription-sub-btn-wrap .subscription-sub-btn{
	width: calc(100% / 2 - 8px);
	text-align: center;
	padding: 0.75em 0;
	font-size: 1.6rem;
	font-weight: 800;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: .3s ease;
}
@media (max-width: 767px) {
     .subscription-sub-btn-wrap .subscription-sub-btn{
         width: 100%;
         font-size: 1.4rem;
         padding: 15px 0;
       }}

.subscription-sub-btn-wrap .subscription-sub-btn:hover{
	opacity: 0.5;
}
.subscription-sub-btn-wrap .subscription-sub-btn.first{
	color: #ffffff;
	background-color: #e67586;
	border: 3px solid #e67586;
}
@media (max-width: 767px) {
    .subscription-sub-btn-wrap .subscription-sub-btn.first{
    margin-bottom: 10px;
}}

.subscription-sub-btn-wrap .subscription-sub-btn.second{
	border: 3px solid #e67586;
	color: #e67586;
	background-color: #ffffff;
}



/*モーダルについて*/

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container,
.modal-container-1,
.modal-container2,
.modal-container3,
.modal-container4{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before,
.modal-container-1:before,
.modal-container2:before,
.modal-container3:before,
.modal-container4:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active,
.modal-container-1.active,
.modal-container2.active,
.modal-container3.active,
.modal-container4.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body,
.modal-body-1,
.modal-body2,
.modal-body3,
.modal-body4{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 750px;
	width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-body > .modal-close,
.modal-body-1 > .modal-close-1,
.modal-body2 > .modal-close2,
.modal-body3 > .modal-close3,
.modal-body4 > .modal-close4{
	position: absolute;
	display: flex;
    align-items: center;
    justify-content: center;
	top: 0;
	right: 0;
	transform: translate(100%,-100%);
	width: 30px;
	height: 30px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}

.modal-content-inner{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.modal-item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.modal-item:not(:first-of-type){
	margin-top: 25px;
}
.modal-item-img{
	width: 30%;
	background-position: center center;
	background-size: cover;
}
.modal-item-img.no1{
	background-image: url("../../image/clp/modal1_01.png");
}
.modal-item-img.no2{
	background-image: url("../../image/clp/modal1_02.png");
}
.modal-item-img.no3{
	background-image: url("../../image/clp/modal2_01.png");
}
.modal-item-img.no4{
	background-image: url("../../image/clp/modal2_02.png");
}
.modal-item-img.no5{
	background-image: url("../../image/clp/modal2_03.png");
}
.modal-item-img.no6{
	background-image: url("../../image/clp/modal3_01.png");
}
.modal-item-img.no7{
	background-image: url("../../image/clp/modal3_02.png");
}
.modal-item-img.no8{
	background-image: url("../../image/clp/modal3_03.png");
}
.modal-item-img.no9{
	background-image: url("../../image/clp/modal3_04.png");
}
.modal-item-sentence{
	width: calc(70% - 15px);
	padding: 40px 0;
}
.modal-item-sentence h3{
	color: #0181a6;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	text-align: left;
}
.modal-item-sentence p{
	margin-top: 15px;
	font-size: 1.4rem;
	font-weight: 800;
	line-height: 1.8em;
	letter-spacing: 0.025em;
	text-align: justify;
}
.modal-item-sentence p a{
	text-decoration: underline;
}


/*登録手順について*/
.registry-title{
	width: 100%;
	text-align: center;
	padding: 40px 0;
	color: #ffffff;
	background-color: #87BD23;
}
.registry-title h3{
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: 0.025em;
}
.registry-title p{
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.025em;
}
.registry-subtitle{
	width: 100%;
	text-align: center;	
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	position: relative;
	margin-top: 35px;
	padding-bottom: 15px;
}
.registry-subtitle::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 5px;
	background-color: #87BD23;
}
.registry-contents-wrap{
	width: 100%;
	position: relative;
	padding-left: 80px;
	margin-top: 50px;
}
.registry-contents-wrap::after{
	content: "";
	position: absolute;
	top: 25px;
	left: 40px;
	z-index: 1;
	transform: translateX(-50%);
	width: 5px;
	height: calc(100% - 25px);
	background-color: #87BD23;
	opacity: 0.25;
}
.registry-contents{
	position: relative;
	padding-top: 15px;
}
.registry-contents:not(:first-of-type){
	margin-top: 50px;
}
.registry-num{
	position: absolute;
	top: 0;
	left: -40px;
	transform: translateX(-50%);
	z-index: 2;
	width: 50px;
	height: 50px;
	font-size: 25px;
	text-align: center;
	line-height: 50px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #ffffff;
	background-color: #87BD23;
}
.registry-contents > p{
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.8em;
	letter-spacing: 0.025em;
	text-align: justify;
}
.registry-contents > p a{
	text-decoration: underline;
}
p.registry-middle-text{
	text-align: center;
	margin-top: 15px;
}
.registry-img{
	margin-top: 20px;
}
.registry-coution{
	margin-top: 15px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	line-height: 1.5em;
	color: #87BD23;
	padding: 20px;
	background-color: #ffffff;
	border: 3px dashed #87BD23;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
p.registry-subcoution{
    margin-top: 15px;
    color: #808080;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.025em;
}
.registry-contact{
	display: block;
	text-align: center;
	padding: 20px;
	font-size: 1.6rem;
	letter-spacing: 0.025em;
	color: #87BD23;
	background-color: #ffffff;
	border: 2px solid#87BD23;
	margin-top: 30px;
	transition: .3s ease;
    width: 100%;
}
.registry-contact:hover{
	color: #ffffff;
	background-color: #87BD23;
	opacity: 1;
}

    @media (max-width: 767px) {
.modal-container .modal-content,
	.modal-container-1 .modal-content{
		padding: 10px;
	}
	.modal-item-img{
		width: 100%;
		height: 150px;
	}
	.modal-item-sentence{
		width: 100%;
		padding: 20px 0 0;
	}
	.modal-item-sentence h3{
		font-size: 2rem;
	}
	.modal-item-sentence p{
		margin-top: 8px;
		font-size: 1.2rem;
	}
	.registry-title{
		padding: 20px 0;
	}
	.registry-title h3{
		font-size: 2rem;
	}
	.registry-title p{
		font-size: 1.2rem;
		font-weight: 500;
	}
	.registry-subtitle{
		font-size: 1.4rem;
		margin-top: 20px;
		padding-bottom: 10px;
	}
	.registry-subtitle::after{
		width: 55px;
		height: 3px;
	}
	.registry-contents-wrap{
		margin-top: 20px;
		padding-left: 40px;
	}
	.registry-contents-wrap::after{
		top: 15px;
		left: 20px;
		height: calc(100% - 15px);
	}
	.registry-contents{
		padding-top: 0;
	}
	.registry-contents:not(:first-of-type){
		margin-top: 30px;
	}
	.registry-num{
		width: 30px;
		height: 30px;
		font-size: 15px;
		line-height: 30px;
		left: -20px;
	}
	.registry-contents > p{
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	.registry-img{
		margin-top: 8px;
	}
	.registry-coution{
		margin-top: 8px;
		padding: 10px;
		font-size: 1.4rem;
	}
	.modal-container .registry-coution{
		text-align: justify;
	}
	.registry-contents > p{
		font-size: 1.1rem;
	}
	.registry-contact{
		font-size: 1.2rem;
		padding: 10px;
		letter-spacing: 0;
		margin-top: 15px;
	}
}


/*---------------- news -------------------------*/

.news {
    padding-top: 5rem;
    padding-bottom: 2rem;
    text-align: center;
    display: none;
}
@media (max-width: 767px) {
    .news {
    padding-top: 4rem;
    padding-bottom: 3rem;
    }
}

.news p {
    text-align: center;
}

.news a {
    text-decoration: underline;
     text-underline-offset:0.3em;
    font-weight: 600;
    font-size: 2rem;
    color: #333;
}
@media (max-width: 767px) {
    .news a {
        font-size: 1.6rem;
    }
}