*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .8px;
  word-break: normal;
  color: #353535;
}

a {
  text-decoration: none;
  color: #353535;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

ul,
li {
  list-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.hover-action {
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .1);
  border-radius:40px;
}

.hover-action:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px);
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .12);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .12);
}

/*--------------------------------
 文字
---------------------------------*/
.heading-primary {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: .05em;
}

.section-heading {
  margin-bottom: 20px;
  text-align: center;
}

.section-lead {
  margin:20px 0 30px 0;
  text-align: center;
  font-size: 20px;
}

.section-lead2 {
  margin:25px 0 15px 0;
  text-align: left;
  font-size: 20px;
}


.section-lead p {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
}

.section-lead p span {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
}

.text-bold {
  font-weight: bold;
}

.option-heading-primary {
  font-family: 'Quicksand', sans-serif;
  font-size: 35px;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: .05em;
	  }
/*--------------------------------
 レイアウト
---------------------------------*/
.wrapper {
  padding-top: 0px;
}

.section {
  padding: 120px 0;
}

.section:nth-of-type(odd) {
  background: linear-gradient(to bottom right, #f8f4f0, #fff);
}

.inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.c-header {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9); /* カスタマイズしてください */  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem; /* カスタマイズしてください */
  width: 100%;
 
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
  margin-right:20px;
}

.c-header__list-link {
  color: #353535; /* カスタマイズしてください */
  display: block;
  margin-right: 20px; /* カスタマイズしてください */
  text-decoration: none;
  padding: 10px 0px; /* カスタマイズしてください */
  font-size:17px;
}

.c-header__list-link:hover {
  color: #d21788; /* カスタマイズしてください */
}

.c-header__list-link:active {
  color: #d21788; /* カスタマイズしてください */
}

.c-hamburger-menu {
  position: fixed;
  -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
  z-index:3;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__list {
    background-color: #f8f4f0; /* カスタマイズしてください */
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-header__list-item {
 padding:5px;
} 

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 750px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}

/*--------------------------------
 メインビジュアル
---------------------------------*/

.mv {
  display: flex;
  align-items: center;
  justify-content: center;
  height:95vh;
  text-align: center;
  background-image:url('../img/lareunion_toki_pc.jpg');
  background-repeat: repeat-x;
}

.mv-container {
  padding: 0 40px;
  margin-top:40px;
}

.mv-title {
  font-family: 'Quicksand', sans-serif;
  font-size:50px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: .1em;
  color: #fff;
  text-shadow: 2px 2px 5px #00155d;
}
.mv-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: .08em;
  color: #fff; 
  text-shadow: 2px 2px 5px #00155d;
}

.mv-text {
  font-size: 25px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 2px 2px 5px #00155d;
   letter-spacing: .08em;
  margin: 0 auto;
  font-weight: 400;
}


/*--------------------------------
tarif
---------------------------------*/

.pricecards{
  margin: 0;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  align-items: stretch;
  -webkit-align-items: stretch;
  }

.pricecard{
  flex: 0 0 33%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  text-align: center;
  border: 3px solid #f8f4f0;
  border-radius:30px;
  padding-bottom: 1rem;
  box-sizing: border-box;
  margin:0 auto 3em;
  }

        .pricecard.free h3{
            font-size: 25px;
            background: #8ce0da;
            color: #fff;
            padding: 10px;
            margin: 0;
            border-radius:28px 28px 0px 0px;
            font-weight: 400;
		line-height:normal;
       }
         .pricecard.premium h3{
            font-size: 25px;
            background: #79d8ba;
            color: #fff;
            padding: 10px;
            margin: 0;
            border-radius:28px 28px 0px 0px;
            font-weight: 400;
		line-height:normal;
        }
         .pricecard.standard h3{
            font-size: 25px;
            background: #9accc6;
            color: #fff;
            padding: 10px;
            margin: 0;
            border-radius:28px 28px 0px 0px;
            font-weight: 400;
            line-height:normal;
        }
        .pricecard .plus{
            padding:1rem 2rem 0 ;
        }
        .pricecard .plusborderfree{
            padding:1rem 2rem  ;
            border-bottom: 2px dotted #8ce0da;
        }
        .pricecard .plusborderpremium{
            padding:1rem 2rem  ;
            border-bottom: 2px dotted #79d8ba;
        }
        .pricecard .plusborderstandard{
            padding:1rem 2rem  ;
            border-bottom: 2px dotted #9accc6;
        }
        .pricecard h4{
            font-size: 3rem;
            margin: 0 auto;
            line-height:normal;
         }
         .pricecard h5{
            line-height: 1.5rem;
            padding: 10px 10px;
         }
         .pricecard-standard-h4{
            font-size: 2.5rem;
         }
         .pricecard p{
            margin: 0;
            padding: 1rem 2rem 0;
            text-align: left;
            font-size:17px;
        }
        .pricecard a{
            padding: 10px 40px;
            background: #d21788;
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            display: inline-block;
            border-radius:20px;
            margin-top:2rem;
        }
      .price_card{
            flex: 0 0 auto;
            -webkit-flex: 0 0 auto;
        }

      
      .options{
            border: 3px solid #f8f4f0;
    		border-radius: 20px;
           
       }
      .options-details{
            text-align: center;
            margin: 0 auto;
  		padding: 1rem;
 		display: flex;
  		display: -webkit-flex;
 		align-items: stretch;
  		-webkit-align-items: stretch; 
       }

  	.options-details1{
 		flex: 0 0 33%;
 		display: flex;
  		display: -webkit-flex;
  		flex-direction: column;
 		-webkit-flex-direction: column;
  		justify-content: space-between;
  		-webkit-justify-content: space-between;
 		text-align: left;
 		box-sizing: border-box;
            padding:0 20px ;
  	  }
      .options-details1 p{
   		padding-bottom : 1rem;
		font-size: 17px;
            line-height:1.2;
        }
 	.options-details1 p:last-child{
   		padding-bottom :0;
        }
 	.options-details1 a{
            padding: 10px 40px;
            background: #d21788;
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            display: inline-block;
            border-radius:20px;
            margin-top:2rem;
        }
      
@media screen and (max-width: 1081px){
.pricecard p, .options-details1 p{
            padding: 1rem 1rem 0;
            font-size:14px;
        }
.options-details1 p:first-child{
   		padding-top:0px;
        }
  
}

@media screen and (max-width: 912px){
.pricecard p, .options-details1 p{
            font-size:13px;
        }
  
} 
@media screen and (max-width: 815px){
.profile_card, .pricecards, .profile_cards, .options-details {
    flex-direction: column;
    -webkit-flex-direction: column;
}
  .pricecard, .card_photo, .options-details1 {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}
.pricecard p, .options-details1 p{
      font-size:17px;
      text-align:center;
 }

.options, .pricecard{
      margin: 0 2em 3em;
}
  
.options-details1 p:last-child{
   		padding-bottom :10px;
        }
}

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

.pricecard p, .options-details1 p{
      text-align:left;
 }

.options-details1 p:first-child{
   		padding-top:1rem;
        }

.options-details{
        padding: 0;
 }
}


@media screen and (max-width: 328px){
.pricecard p{
            font-size:15px;
        }
 .options .pricecard{
      margin: 0 2em 3em;
	  }
}


	
/*--------------------------------
 Works
---------------------------------*/
.works-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}

.works-item {
  flex: 0 0 32.31552%;
  margin-right: 1.52671%;
  margin-bottom: 40px;
}

.works-item:nth-of-type(3n) {
  margin-right: 0;
}

.works-body {
  text-align: center;
}

.works-title {
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
}

.works-text {
  font-size: 14px;
}

.works-url {
  font-size: 13px;
}

.works-image.fadein {
  -webkit-transition: 1.5s;
  transition: 1.5s;
  opacity: 0;
}

.works-image.fadein.lazyloaded {
  opacity: 1;
  border-radius:40px;
}

/*--------------------------------
 Feature
---------------------------------*/
.feature-item {
  display: flex;
  flex-wrap: wrap;
}

.feature-image-wrapper {
  flex: 0 0 45%;
  margin-right: 40px;
}

.feature-body {
  flex: 1;
}

.feature-body p:not(:last-child) {
  margin-bottom: 20px;
}

/*--------------------------------
 About
---------------------------------*/
.about-section .inner {
  max-width: 1000px;
}

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

.about-image-wrapper {
  flex: 0 0 220px;
  margin: auto 50px auto auto;
}

.about-image {
  border-radius: 50%;
  box-shadow: 0 0 25px 0 #d9d9d9;
}

.about-body {
  flex: 1;
  margin:auto;
}

.about-text{
  font-size:18px;
}

.about-textdroit{
  font-size:18px;
  text-align:right;
}

.about-body p:not(:last-child) {
  margin-bottom: 20px;
}

/*--------------------------------
 Skill
---------------------------------*/
.skill-section .inner {
  max-width: 1000px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}

.skill-item {
  display: flex;
  flex: 0 0 46%;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.skill-image-wrapper {
  flex: 0 0 60px;
  margin-right: 20px;
}

.skill-body {
  flex: 1;
}

.skill-body p:not(:last-child) {
  margin-bottom: 20px;
}

.skill-title {
  margin-bottom: 3px;
}

.rate {
  position: relative;
  font-size: 16px;
  display: inline-block;
  width: 100%;
  height: 20px;
  letter-spacing: .3em;
}

.rate:before,
.rate:after {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 20px;
  display: inline-block;
  height: 20px;
  content: "★★★★★";
}

.rate:before {
  color: #ddd;
}

.rate:after {
  overflow: hidden;
  white-space: nowrap;
  color: #f181b4;
}

.rate1:after {
  width: 20px;
}

.rate2:after {
  width: 40px;
}

.rate3:after {
  width: 60px;
}

.rate4:after {
  width: 80px;
}

.rate5:after {
  width: 100px;
}

/*--------------------------------
 Kap numérik
---------------------------------*/
.kap-section .inner {
  max-width: 1000px;
}
/*--------------------------------
 Contact
---------------------------------*/
.contact-list {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.contact-item {
  width: 50px;
  margin: 10px 10px;
  text-align: center;
}

.contact-text {
  margin-top: 10px;
  text-align: center;
}

.contact p{
 text-align:center;
 font-size:20px;
 font-weight: 400;
}

.kap{
   margin-top: 10px;  
 }


.kap p{
   padding:0px 0 10px 0;
   font-size:18px;
   font-weight: 400;
}
 
.kapbutton p{
 font-size:15px;
}

 
.kapbutton p a{
   border: 1px solid #d21788;
   border-radius: 20px;
   display: inline-block; 
   padding: 10px 40px
}


/*--------------------------------
 フッター
---------------------------------*/
.footer {
  background-color: #1d1d1d;
}

.footer .inner {
  padding: 30px;
}

.copyright {
  font-size: 12px;
  text-align: center;
  color: #8c8c8c;
}

.page-top {
  font-size: 12px;
  font-weight: bold;
  display: block;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #ccc;
}

/*--------------------------------
 グローバルナビ フッター
---------------------------------*/
.gnavfooter {
 
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #1d1d1d;
  -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, .2);
}

.gnavfooter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gnavfooter-item {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  padding: 0 8px;
  letter-spacing: .05em;
  
}

.gnavfooter-link {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  -webkit-transition: .3s;
  transition: .3s;
  color: #f8f4f0;
}

.gnavfooter-link:hover {
  opacity: 1;
}

.gnavfooter-link:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  content: "";
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #353535;
}

.gnavfooter-link:hover:after {
  width: 100%;
}

/* iOS対策 */
.ios .gnavfooter-link:after,
.ios .gnavfooter-link:hover:after {
  display: none;
}

/*--------------------------------
 下層：Worksページ
---------------------------------*/
.article {
  padding: 150px 0;
}

.article-container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-title {
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: .05em;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.article-body h3 {
  position: relative;
  font-size: 18px;
  margin-bottom: 5px;
  padding-left: 1em;
}

.article-body h3:not(:first-child) {
  margin-top: 50px;
}

.article-body h3::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  border-radius: 3px;
  background-color: #333;
}

.article-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.home-link {
  text-align: center;
  }

font-family: 'Quicksand', sans-serif;
    font-size: 40px;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: .05em;


*media Queries 794
----------------------------------------------------*/
@media screen and (max-width: 794px) {

  /*  メインビジュアル */
  .mv-container {
    margin-top:80px;
  }
 }



/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.7;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .hover-action {
    -webkit-transition: none;
    transition: none;
  }

  .hover-action:hover {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
    transform: none;
  }

 /*  メインビジュアル */
  
  .mv {
   height: 95vh;
  }

  /* 文字 */
  .section-heading {
    margin-bottom: 20px;
  }
  .heading-primary {
    font-size: 30px;
  }
  .section-lead p{
    font-size: 20px
  }
  .section-lead p span {
  font-size: 22px;
  }
  .option-heading-primary{
    font-size: 27px;
}
 
  /* レイアウト */
  .wrapper {
    padding-top: 0px;
  }

  .section {
    padding: 60px 0;
  }

  .section .inner {
    padding: 0 15px;
  }

   

  /*  メインビジュアル */
  
  .mv {
   height: 85vh;
   background-image:url('../img/lareunion_toki_mb.jpg');
  }

  .mv-container {
    padding: 0 40px;
    margin-top:50px;
    text-align:left;
  }

  .mv-title {
    font-size: 60px;
  
  }
  .mv-subtitle {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .mv-text {
    font-size: 20px;
    line-height: 1.6;
    max-width:100%;
  }

  /* グローバルナビ */
  .gnav {
    padding: 15px 0;
  }

  .gnav-item {
    font-size: 13px;
    padding: 2px 8px;
  }

  .gnav-link {
    padding: 0;
  }

  .gnav-link:hover {
    opacity: 1;
  }

  .gnav-link:after {
    display: none;
  }

  /* Works */
  .works-body {
    text-align: left;
  }

  .works-title {
    font-size: 10px;
  }

  .works-list {
    justify-content: space-between;
  }

  .works-item {
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  /* Feature */
  .feature-item {
    display: block;
  }

  .feature-image-wrapper {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  /* About */
  .about-item {
    display: block;
  }

  .about-image-wrapper {
    width: 100px;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  /* Skill */
  .skill-list {
    display: block;
    margin-bottom: 0;
  }

  .skill-item {
    max-width: 100%;
    margin-bottom: 35px;
  }

  .skill-item:last-child {
    margin-bottom: 0;
  }

  .skill-image-wrapper {
    flex: 0 0 75px;
    margin-right: 15px;
  }

  .rate {
    font-size: 15px;
    height: 15px;
  }

  .rate:before,
  .rate:after {
    line-height: 15px;
    height: 15px;
  }

  .rate1:after {
    width: 15px;
  }

  .rate2:after {
    width: 35px;
  }

  .rate3:after {
    width: 55px;
  }

  .rate4:after {
    width: 75px;
  }

  .rate5:after {
    width: 95px;
  }

  /* Contact */
  .contact-item {
    width: 40px;
    margin: 10px10px;
  }

  /* フッター */
  .footer .inner {
    padding: 20px 0;
  }
}

 /* 下層ページ */
  .article {
    padding: 130px 0;
  }

  .article-body h3 {
    font-size: 16px;
    padding-left: .8em;
  }

  .article-body h3:not(:first-child) {
    margin-top: 30px;
  }

  .article-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}


/*media Queries 566
----------------------------------------------------*/
@media screen and (max-width: 566px) {

/*  メインビジュアル */

 .mv-container {
    margin-top:45px;
  }

  .mv-title {
    font-size: 35px;
  }
 .mv-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .mv-text {
    font-size: 20px;
    line-height: 1.6;
  }
}



/*media Queries 540
----------------------------------------------------*/
@media screen and (max-width: 540px) {

  /*  メインビジュアル */
  .mv {
   height: 85vh;
   background-image:url('../img/lareunion_toki_mb2.jpg');
  }
  .mv-container {
    margin-top:80px;
  }

 .mv-title {
    font-size:50px; 
    padding-top: 50px; 
  }
 .mv-subtitle {
    font-size:25px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px #00155d;
   }

  .mv-text {
    font-size: 20px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px #00155d;
    }

}

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

  /*  メインビジュアル */
  
  .mv-subtitle {
    font-size: 25px;
    }
  .mv-text {
    font-size: 18px;
    }
  .mv-container{
    margin-top:56px;
    padding:0 20px;
   }
  }