@import url('https://fonts.googleapis.com/css2?family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&display=swap');

/*リセットCSS　■■■■■■■■■■■■■■■■■■■■■■■■■*/

/* Eric Meyer’s Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

img {
  max-width: 100%;
  height: auto;
}

input, button, textarea {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

/*共通　■■■■■■■■■■■■■■■■■■■■■■■■■*/

span.red { color: #E60033; }
span.orange { color: #fe7e01 ; }
span.yellow { color: #FFF100 ; }
 span.blue { color:  #33ccff ; }


/*ヘッダー（全体とロゴ）　■■■■■■■■■■■■■■■■■■■■■■■■■*/

body {
  font-family:  'Noto Sans JP', sans-serif;
}

.header {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffe0 ;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 5px 7px #f5deb3;
}

.logo {
  font-family: "Inknut Antiqua", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.7rem;
}

.logo-link {
	margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
}

.title-miks{
  color: #ffd700;
}
.main-words {
    display: flex;
}

.wordmiks-kana{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: #555;
  margin-bottom: -10px;
}
/*ヘッダー（メニュー）　■■■■■■■■■■■■■■■■■■■■■■■■■*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  list-style: none;
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  color: black ;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.menu a:hover {
  color: #fe7e01 ;	
  cursor: pointer;
}

.menu a:focus {
  color: #fe7e01 ;	
  cursor: pointer;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: orange;
  margin: 5px 0;
}


/*画像ブロック　■■■■■■■■■■■■■■■■■■■■■■■■■*/

.image-block {
  padding-top: 120px;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.top-image {
  width: 100%;
  display: block;
}

.trial {
  position: absolute;
  bottom: 10px;
  left: 30%;
  transform: translateX(-70%);
  padding: 10px 20px;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: white;
  background-color: limegreen;
  height: 70px;
  width: 350px;
  border-radius: 60px;
  z-index: 10;
}

.trial:hover {
  background-color: #fef263 ;	
  cursor: pointer;
  transition: 0.1s ease;
}
.trial:focus {
  cursor: pointer;
  transition: 0.1s ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/*料金プラン　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#pricing-plans {
  scroll-margin-top: 110px;
}

/* 料金プランのセクション */
.pricing-plans {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  padding-top: 50px;
}

/* 各料金カード */
.pricing-card-basic {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
  padding-top: 50px;
  text-align: center;
  border: 6px solid limegreen;
}
.pricing-card-standard {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
  padding-top: 50px;
  text-align: center;
  border: 6px solid #ea5549;
}

.pricing-card-premium {
  background-color: #fff;
  border-radius: 10px;
  width: 30%;
  padding-top: 50px;
  text-align: center;
  border: 6px solid #f39c12;
}
.name-basic{
  font-size: 1.8rem;
  color: #333;
  color: limegreen;
}
.name-standard{
  font-size: 1.8rem;
  color: #333;
  color: #ea5549;
}
.name-premium{
  font-size: 1.8rem;
  color: #333;
  color: #f39c12;
}
.price-basic {
  font-size: 1.8rem;
  font-weight: bold;
  color: limegreen;
  margin: 20px auto 90px auto;
}
.price-standard {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ea5549;
  margin: 20px auto 90px auto;
}
.price-premium {
  font-size: 1.8rem;
  font-weight: bold;
  color: #f39c12;
  margin: 20px auto 90px auto;
}

.content-standard, .content-premium{
  margin-bottom: 50px;
}

.about-plan{
  font-size: 1rem;
  /*background-color: #fafafa ; */
  background-color:#e8ecef;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  padding: 20px 40px 20px 40px;
  border-radius: 10px;
  line-height: 1.8;
}

/*特徴　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#feature {
  scroll-margin-top: 110px;
}

.feature {
  width: 100%;
  background-color: limegreen;
  background-position: 0 0;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
.feature-title{
  width: 100%;
  font-size: 1.5rem;
  color: white;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.feature-content{
  color: white;
  font-size: 1.1rem;
  margin-left: auto;
  margin-bottom: 30px;
  margin-right: auto;
  width: 60%;
  min-width: 300px;
  line-height: 1.8;
  font-weight: 600;
}


/*7つの能力　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#ability-block {
  scroll-margin-top: 110px;
}

/* 親コンテナのスタイル */
.ability-block {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 200px;
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 40px;
}

.ability-title-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 100px;
  background-color: #ffd700;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ability-title-text{
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

/* 各カードのスタイル */
.ability {
  min-width: 250px;
  max-width: 350px;
  width: 30%;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  background-color: #e8ecef  ;
  border-radius: 5px;
}

/* 画像のスタイル */
.ability-image {
  width: 100%;
  height: auto;
  object-fit: cover; 
  max-height: 200px; 
}

/* タイトル（能力名）のスタイル */
.name-ability {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fe7e01;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* タイトル下の線 */
.name-ability:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80%;
  height: 2px;
  background-color: #e74c3c;
  margin: 0 auto;
}

/* 詳細説明のスタイル */
.detail-ability {
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

/*QA　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#qa {
  scroll-margin-top: 110px;
}

.qa{
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.qa-title-box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 100px;
  background-color: #ffd700;
  border-radius: 10px;
  margin-bottom: 20px;
}

.qa-title-text{
  text-align: center;
  font-size: 1.5rem;
  color: white;
}
.q-box{
  display: flex;
  justify-content: flex-start;
  width: 100%;
  min-height: 50px;
  align-items: center;
  margin-bottom: 5px;
}

.q{
  background-color: #c3c3c3 ;
  min-width: 50px;
  min-height: 50px;
  font-size: 1.3rem;
  text-align: center;
  line-height: 50px;
  color: white;
  margin-left: 30px;
  margin-right: 30px;
}
.a-box{
  display: flex;
  justify-content: flex-start;
  width: 95%;
  min-height: 50px;
  align-items: center;
}

.ans{
  background-color: #ea5549;
  min-width: 50px;
  min-height: 50px;
  font-size: 1.3rem;
  text-align: center;
  line-height: 50px;
  color: white;
  margin-left: 30px;
  margin-right: 30px;
}

hr.line-80 {
	width: 95%;
    border: 0;
    min-height: 1px;
    background-color: black;
    margin: 5px auto auto 30px;
    margin-bottom: 20px;
}


/*About　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#about {
  scroll-margin-top: 80px;
}

/* セクション全体のスタイル */
.about-section {
  padding: 40px 0;
  text-align: center;
}

/* コンテナのスタイル */
.about-container {
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 30px;
  background-color: #f7f6f5 ;
  line-height: 1.8;
}

.about-title-box{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 100px;
  background-color: #ffd700;
  border-radius: 10px;
  margin-bottom: 20px;
}
.about-title-text{
  text-align: center;
  line-height: 100px;
  font-size: 1.5rem;
  color: white;
}

.creater-detail{
	text-align: left;
	padding-left: 30px;
}
.service{
	text-align: left;
	padding-left: 30px;
}
.service-sub-head{
	font-size: 1.2rem;
	font-weight: 700;
}
.service-detail{
	font-size: 1rem;
	font-weight: 500;
}
.func-mgr{
	text-align: left;
	padding-left: 30px;
}
.func-usr{
	text-align: left;
	padding-left: 30px;
}

/*Contact　■■■■■■■■■■■■■■■■■■■■■■■■■*/

#contact {
  scroll-margin-top: 110px;
}

/* セクション全体のスタイル */
.contact-section {
  padding: 40px 0;
  text-align: center;
}

/* コンテナのスタイル */
.contact-container {
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
  padding: 30px;
  background-color: #f7f6f5 ;
  line-height: 1.8;
}

.contact-title-box{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-height: 100px;
  background-color: #ffd700;
  border-radius: 10px;
  margin-bottom: 20px;
}
.contact-title-text{
  text-align: center;
  line-height: 100px;
  font-size: 1.5rem;
  color: white;
}

.contact{
	text-align: left;
	padding-left: 30px;
}

/*コピーライト　■■■■■■■■■■■■■■■■■■■■■■■■■*/
.footer{
  padding-top: 10px;
  margin-top: 100px;
  width: 100%;
  height: 135px;
  background-color: #414141 ;
  color: white;
  text-align: center;
  line-height: 40px;
  font-size: 0.8rem;
}

.privacy{
	color: white;
}
.privacy:link {
	color: white;
}
.privacy:visited {
	color: white;
}
.privacy:hover {
	color: white;
}

.terms{
	color: white;
}
.terms:link {
	color: white;
}
.terms:visited {
	color: white;
}
.terms:hover {
	color: white;
}
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*レスポンシブ対応*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/

/*■ヘッダー■*/
@media (max-width: 1150px) {
  .menu {
      display: none;
      width: 130px;
      background-color: #ffffe0 ;
      position: absolute;
      top: 60px;
      right: 10px;
      text-align: left;
      margin-top: 20px;
      margin-right: 10px;
      padding-left: 10px;
      border-radius: 10px;
  }
	.bar {
	  margin-right: 10px;
	}
  .menu li {
      margin: 10px 0;
  }
  .menu-toggle {
      display: flex;
  }
  .menu.active {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
  }
	.menu a {
	  font-size: 0.9rem;
	  font-weight: 600;
	}
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* スマートフォン */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 0px) and (max-width: 481px) {

 /*■ヘッダータイトル■*/
.header {
  height: 60px;
}
.logo-link {
	margin-top: 10px;
	height: 50px;
}
  .main-words{
    font-size: 1.7rem;
  }
  .wordmiks-kana{
    font-size: 0.6rem;
  }
  
   /*■ヘッダーメニュー■*/
	.bar {
	  margin-right: 1px;
	}
	
	/*■ファーストビュー■*/
  .image-block {
    padding-top: 40px;
  }

  .trial {
    position: absolute;
    bottom: -10px;
    left: 60%;
    font-size: 0.8rem;
    height: 35px;
    width: 190px;
    padding-top: 8px;
  }
  .top-image {
    content: url('../../IMG/firstview_320.svg'); 
  }
  
  	/*■料金■*/
@media (max-width: 481px) {

  #pricing-plans {
    scroll-margin-top: 60px;
  }

  .pricing-plans {
    margin-top: 50px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .pricing-card-basic {
    width: 200px;
    height: 200px;
    padding-top: 30px;
    margin: 10px auto 20px auto;
  }

  .pricing-card-standard {
    width: 200px;
    height: 200px;
    padding-top: 30px;
    margin: 10px auto 20px auto;
  }

  .pricing-card-premium {
    width: 200px;
    height: 200px;
    padding-top: 30px;
    margin: 10px auto 20px auto;
  }
  .name-basic{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .name-standard{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .name-premium{
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .price-basic {
    font-size: 1.2rem;
    margin: 0px auto 40px auto;
  }
  .price-standard {
    font-size: 1rem;
    margin: 10px auto 40px auto;
  }
  .price-premium {
    font-size: 1rem;
    margin: 10px auto 40px auto;
  }
  .content-basic{
    font-size: 0.8rem;
  }
  .content-standard{
    font-size: 0.8rem;
  }
  .content-premium{
    font-size: 0.8rem;
  }
  
	 .about-plan{
	  font-size: 0.9rem;
	  width: 90%;
	  margin-bottom: 50px;
	  padding: 20px 10px 20px 10px;
	  border-radius: 10px;
	  line-height: 1.8;
	}
}
  
  	/*■特徴■*/
  	
   #feature {
    scroll-margin-top: 60px;
  }
  
  	.feature{
		  padding-bottom: 10px;
		  margin-bottom: 50px;
	  }
  	.feature-title{
		padding-top: 10px;
		padding-bottom: 10px;
	  }
	  
	.feature-content{
	  font-size: 0.9rem;
	  padding-left: 10px;
	  padding-right: 10px;
	}
	
  	/*■身につく能力■*/
  	
   #ability-block {
    scroll-margin-top: 70px;
  }
  	
	.ability-block{
  margin-bottom: 50px;
  width: 90%;
	}
	.ability-title-box{
	  width: 100%;
	  min-height: 50px;
	  margin-bottom: 0px;
	}
	.ability-title-text{
		font-size: 1.2rem;
	}
	
  	/*■QA■*/
  	
   #qa {
    scroll-margin-top: 70px;
  }
  
	.qa{
		width: 90%;	
	}
	
	.qa-title-box{
	  padding: 10px auto;
	  min-height: 50px;
	  margin-bottom: 20px;
	}
	.qa-title-text{
		font-size: 1.2rem;
	}
	.q-box{
	  width: 100%;
	  min-height: 20px;
	  margin-bottom: 2px;
	}

	.q{
	  min-width: 20px;
	  min-height: 100px;
	  font-size: 0.9rem;
	  line-height: 100px;
	  margin-left: 5px;
	  margin-right: 5px;
	}
	.a-box{
	  width: 100%;
	  min-height: 20px;
	  align-items: center;
	  margin-bottom: 2px;
	}
	
	.ans{
	  min-width: 20px;
	  min-height: 100px;
	  font-size: 0.9rem;
	  line-height: 100px;
	  margin-left: 5px;
	  margin-right: 5px;
	}
	
	.a-text{
		font-size: 0.9rem;
	}
	
	.q-text{
		font-size: 0.9rem;
	}
	
	hr.line-80 {
		width: 90%;
	    margin-bottom: 20px;
	}
	
  	/*■About■*/
  	
   #about {
    scroll-margin-top: 70px;
  }
  
	.about-section {
	  padding: 0;
	  margin-bottom: 30px;
	}
	.about-container {
	  width: 90%;
	  padding: 10px;
	  line-height: 1.5;
	}
	.about-title-box{
	  padding: 3px auto;
	  min-height: 50px;
	  margin-bottom: 20px;
	}
	.about-title-text{
		font-size: 1.2rem;
		line-height: 50px;
	}
	.service, .func-mgr, .func-usr, .creater-detail{
		padding-left: 10px;
	}

	.service-sub-head{
		font-size: 1rem;
		font-weight: 700;
	}
	.service-detail{
		font-size: 0.9rem;
		font-weight: 300;
	}
  	/*■Contact■*/
  	
   #contract {
    scroll-margin-top: 70px;
  }
  
	.contact-section {
	  padding: 0;
	}
	.contact-container {
	  width: 90%;
	  padding: 10px;
	  line-height: 1.5;
	}
	.contact-title-box{
	  padding: 3px auto;
	  min-height: 50px;
	  margin-bottom: 20px;
	}
	.contact-title-text{
		font-size: 1.2rem;
		line-height: 50px;
	}
	.contact{
		padding-left: 10px;
	}

	.contact-sub-head{
		font-size: 1rem;
		font-weight: 700;
	}
	.contact-detail{
		font-size: 0.9rem;
		font-weight: 300;
	}
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* タブレット */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 481px) and (max-width: 768px) {

 /*■ヘッダータイトル■*/

	.logo-link {
		margin-top: 15px;
	}
  .main-words{
    font-size: 2.5rem;
  }
  .wordmiks-kana{
    font-size: 0.7rem;
  }
  
	/*■ファーストビュー■*/
  .image-block {
    padding-top: 120px;
  }
  .trial {
    position: absolute;
    bottom: 20px;
    left: 20%;
    transform: translateX(-30%);
    padding: 2px 5px;
    font-size: 0.8rem;
    height: 30px;
    width: 200px;
  }
  .top-image {
    content: url('../../IMG/firstview.svg'); 
  }
  
  	/*■料金■*/
  	
  	/*■特徴■*/
  	
  	/*■身につく能力■*/
  	
  	/*■QA■*/
  	
  	/*■About■*/
  	
  	/*■Contact■*/
  	
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* タブレット（横向き）/小型ラップトップ */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 481px) and (max-width: 1024px) {
	/*■料金■*/
  #pricing-plans {
    scroll-margin-top: 190px;
  }

  .pricing-plans {
    margin-top: 50px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .pricing-card-basic {
    width: 300px;
    height: 300px;
    padding: 50px auto;
    margin: 30px auto 50px auto;
  }

  .pricing-card-standard {
    width: 300px;
    height: 300px;
    padding: 50px auto;
    margin: 30px auto 50px auto;
  }

  .pricing-card-premium {
    width: 300px;
    height: 300px;
    padding: 50px auto;
    margin: 30px auto 50px auto;
  }
  .name-basic{
    font-size: 1.4rem;
  }
  .name-standard{
    font-size: 1.4rem;
  }
  .name-premium{
    font-size: 1.4rem;
  }
  .price-basic {
    font-size: 1.3rem;
    margin: 10px auto 50px auto;
  }
  .price-standard {
    font-size: 1.3rem;
    margin: 10px auto 50px auto;
  }
  .price-premium {
    font-size: 1.3rem;
    margin: 10px auto 50px auto;
  }

  	/*■特徴■*/
  	
  	/*■身につく能力■*/
  	
  	/*■QA■*/
  	
  	/*■About■*/
  	
  	/*■Contact■*/
  	
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* タブレット（横向き）/小型ラップトップ */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 768px) and (max-width: 1024px) {
	
	/*■ファーストビュー■*/
  .image-block {
    padding-top: 120px;
  }
  .trial {
    position: absolute;
    bottom: 20px;
    left: 20%;
    transform: translateX(-30%);
    padding: 2px 5px;
    font-size: 0.9rem;
    height: 40px;
    width: 240px;
  }


}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* デスクトップ */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 1280px) {
  /* デスクトップ用のスタイル */
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* 大きなデスクトップ */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 1440px) {
  /* 大きなデスクトップ用のスタイル */
}

/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
/* 超広角ディスプレイ */
/*★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/
@media (min-width: 1600px) {
  /* 超広角ディスプレイ用のスタイル */
}



