@charset "UTF-8";

/*============================================================
  core settings
============================================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

div.font-noto{
  font-family: "Noto Sans JP", sans-serif;
}

.pt-123{
  padding:123px 0 0 0 ;
}

@media screen and (max-width: 960px){
  .pt-123{
    padding-top:50px;
    }
}

.mb-none{
margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.8;
  color: #292D31;
}

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

a {
  text-decoration: none;
}

.link {
  color: #292D31;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

.spdn {
  display: block;
}
@media screen and (max-width: 480px) {
  .spdn {
    display: none;
  }
}

.tbdn {
  display: block;
}
@media screen and (max-width: 768px) {
  .tbdn {
    display: none;
  }
}

.pcdn {
  display: none;
}
@media screen and (max-width: 480px) {
  .pcdn {
    display:inline-block;
  }
}

p {
  margin-bottom: 1.5em;
}
p:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex:after {
  content: none;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}
.flex__container {
  width: calc(50% - 16px);
}
.flex__container:last-child {
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .flex__container {
    width: 100%;
    margin-bottom: 1.5em;
  }
}

.blue {
  color: #2D3846;
}

.brown {
  color: #C9A905;
}

.red {
  color: #cd0000;
}

.gray {
  color: #8a8a8a;
}

.border-white {
  border: 6px solid #fff;
}

.box-shadow {
  box-shadow: 0px 0px 30px 0px rgba(45, 56, 70, 0.5);
}
@media screen and (max-width: 480px) {
  .box-shadow {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.5);
  }
}

.background-brown {
  position: relative;
  background: #C9A905;
  border-top: 1px solid #C9A905;
  padding-top: 32px;
}
.background-brown::before {
  content: "";
  position: absolute;
  top: -15vw;
  left: 0;
  border-bottom: 15vw solid #C9A905;
  border-right: 100vw solid transparent;
  z-index: 9000;
}

.copylight {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .copylight {
    font-size: 1.2rem;
  }
}

/*============================================================
  .container
  ※コンテンツの幅を調整するクラス
============================================================*/

.container {
  width: 92%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.container--small {
  max-width: 800px;
}

.container--large {
  max-width: 960px;
}

.container--x-large {
  max-width: 1060px;
}

.container--xx-large {
  max-width: 1100px;
}

.container--xxx-large {
  max-width: 1240px;
}

.container--full {
  max-width: 1920px;
}


/*============================================================
  .section
  ※各セクションを囲む（区切る）ためのクラス
============================================================*/

.section {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
  background-position: center center;
  background-size: cover;
}
.section--fixed {
  background-position: top center;
  background-attachment: fixed;
  z-index: 1;
  background-size: cover !important;
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 480px) {
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.section__container {
    position: relative;
    z-index: 10;
}
.section--bg-gray {
  /*sectionの背景色を指定*/
  background: #f6f6f6;
}

/*.section--bg-green {
  sectionの背景色を指定
  background: #eaf6f0;
}*/

.section--bg-white {
  /*sectionの背景色を指定*/
  background: #fff;
}

.section--book-contents {
  /*各sectionの背景画像を指定（セクション名は任意）*/
  background-image: url("../images/book_contents_background.jpg");
}
.section--book-contents::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.skill-container{
  padding: 30px;
  background: #fff;
}
@media screen and (max-width: 480px) {
	.skill-container{
	  padding: 5px;
	}
}


/*iOSでアクセスしたときのみ適用*/

.ios .section {
  background-attachment: scroll !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center;
}


.ios .section--introdaction {
  /*各sectionの背景画像を指定（セクション名は任意）*/
  background-image: url("../images/background.jpg");
  background-position: top left !important;
  background-repeat: repeat !important;
}

.ios .section--merit {
  background-image: url("../images/ios-background.jpg");
}

.ios .section--testimonial {
  background-image: url("../images/ios-background3.jpg");
}

.ios .section--entry {
  background-image: url("../images/ios-background4.jpg");
}

.ios .section--merit {
  background-image: url("../images/ios-background_merit.jpg");
}

.logo {
  position:absolute;
  top:2%;
  right: 0%;
  font-size: 2.8rem;
  font-family: "Playfair Display", serif;
  text-shadow: 0px 0px 4px #a8a8a8;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .logo {
    top:2%;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .logo {
    top:0%;
    font-size: 1.6rem;
	/*left: 5%;*/
  }
}
.logo a{
  color:#333;
  text-decoration: none;
}

.logo a:hover{
  text-decoration: none;
  }


.masthead{
  position: relative;
  background-image: url("../images/masthead_background.png");
  background-position: center;
  background-size: cover;

}
@media screen and (max-width: 768px) {
  .masthead {
    padding-top: 48px;
  }
}
@media screen and (max-width: 480px) {
  .masthead {
    padding-top: 12px;
    background-image: url("../images/masthead_background_sp.jpg");
  }
}
.masthead__container {
  position: relative;
  display: flex;
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

  z-index: 9999;
}


@media screen and (max-width: 480px) {
  .masthead__container {
    flex-direction: column;
    padding-bottom: 0;
	width: 100%;
  }
}
.masthead__body {
  flex: 1;
  color: #fff;
  margin-top: 32px;
  margin-right: 32px;
}
@media screen and (max-width: 768px) {
  .masthead__body {
    margin-top: auto;
  }
}
@media screen and (max-width: 480px) {
  .masthead__body {
    margin-bottom: 32px;
    margin-right: 0;
    text-align: center;
  }
}
.masthead__image {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .masthead__image {
    width: 38%;
  }
}
@media screen and (max-width: 480px) {
  .masthead__image {
    width: 85%;
  }
}
.masthead__title {
  margin-bottom: 32px;
  font-size: 5.2rem;
  color: #fff;
}
@media screen and (max-width: 1220px) {
  .masthead__title {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 1080px) {
  .masthead__title {
    margin-bottom: 16px;
    font-size: 4.1rem;
  }
}
@media screen and (max-width: 980px) {
  .masthead__title {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 900px) {
  .masthead__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .masthead__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .masthead__title {
    font-size: 2.8rem;
  }
}
.masthead__title span {
  margin-left: -25px;
}
@media screen and (max-width: 768px) {
  .masthead__title span {
    margin-left: -16px;
  }
}
@media screen and (max-width: 480px) {
  .masthead__title span {
    margin-left: auto;
  }
}
.masthead__sub-title {
  display: inline-block;
  margin-bottom: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .masthead__sub-title {
    margin-bottom: 32px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .masthead__sub-title {
    font-size: 1.3rem;
  }
}
.masthead__price {
  margin-bottom: 8px;
}
.masthead__price span {
  margin-left: 4px;
  margin-right: 4px;
  font-size: 5.2rem;
  font-weight: 700;
  color: #C9A905;
}
@media screen and (max-width: 768px) {
  .masthead__price span {
    font-size: 4.1rem;
  }
}
@media screen and (max-width: 480px) {
  .masthead__price span {
    font-size: 3.2rem;
  }
}


.section--benefit{
    margin: 0;
    padding: 80px 0 150px 0;
    text-align: center;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 58% 94%, 50% 100%, 42% 94%, 0 94%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 58% 94%, 50% 100%, 42% 94%, 0 94%);
    z-index: 100;

}
h2.heading__title span.number{
  font-size:5.4rem;
}

@media screen and (max-width: 820px) {
  .section--benefit{
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 60% 94%, 50% 100%, 40% 94%, 0 94%);
    padding: 30px 0 80px 0;
  }
}
@media screen and (max-width: 480px) {
  .section--benefit{
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 58% 85%, 50% 100%, 42% 85%, 0 85%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 65% 95%, 50% 100%, 35% 95%, 0 95%);
    padding: 30px 0 80px 0;
  }
  h2.heading__title span.number{
    font-size:2.8rem;
  }
}
.belt-benefit{
  background: #003271;
  /*background-image: linear-gradient(30deg, #bbc2ca 0%, #e5e6e8 50%,#bbc2ca 100%);*/
  padding: 20px 0 100px 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 58% 80%, 50% 100%, 42% 80%, 0 80%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 78%, 58% 78%, 50% 100%, 42% 78%, 0 78%);
}

.belt-benefit h2{
  line-height: 1.3;
  color:#fff;
}
.belt-benefit h2 strong{
    font-size:4.2rem;
}

.belt-benefit h2 .extension{
    font-size:4.2rem;
}

@media screen and (max-width: 480px) {
  .belt-benefit{
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 58% 85%, 50% 100%, 42% 85%, 0 85%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 58% 85%, 50% 100%, 42% 85%, 0 85%);
    padding: 20px 0 60px 0;
  }
	.belt-benefit h2{
	  line-height: 1.5;
	  font-size: 2.0rem;
	}

	.belt-benefit h2 strong{
	  font-size:2.8rem;
	  line-height: 1.3;
	}
	.belt-benefit h2 .extension{
		font-size:2.4rem;
	}
}



.campaign_period{
  margin: 0px 10px -10px 10px;
  font-size: 3.6rem;
  font-weight: bold;
  font-feature-settings: "palt";
}
.period{
  background: #FFA41C;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  margin-right: 10px;
  padding: 5px 15px;
  display: inline-block;
}

.period-block{
  background: #003271;
  /*background-image: linear-gradient(30deg, #bbc2ca 0%, #f2f3f5 35%, #e5e6e8 50%, #f2f3f5 70%, #bbc2ca 100%);*/
  padding: 16px;
}

@media screen and (max-width: 480px) {
	.period-block{
	  padding: 20px 0;
	}
}

.campaign-block__image{
  border: 5px solid #B28649;
  background: #fffbf0;
  padding: 50px;
  width: 900px;
  text-align: center;
  margin: 0 auto;
}

.campaign-block p{
  font-weight: bold;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 48px; 
}
@media screen and (max-width: 480px) {
	.campaign-block p{
	  font-size: 2.3rem;
	  margin-bottom: 32px;
	  line-height: 1.5;
	}
}


.application-block{
  padding: 64px 0;
}

.application-block h2{
  font-size: 2.6rem;
}

.application-block h2 strong{
  font-size: 4.1rem;
}
@media screen and (max-width: 820px) {
	.campaign-block__image{
	  width: 100%;
	  padding: 20px;
	}
}	
@media screen and (max-width: 480px) {
	.application-block{
	  padding: 32px 0;
	}
	.campaign-block__image{
	  width: 100%;
	  padding: 20px;
	}
	.application-block h2{
	  font-size: 1.8rem;
	}

	.application-block h2 strong{
	  font-size: 3.0rem;
	  display: inline-block;
	  margin-top: 20px;
      line-height: 1.3;
	}
}

.button-container{
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 480px) {
	.button-container{
	  flex-direction: column;
	  display: block;
	}
}
.button-container__bottom{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.application__process-title{
  font-size: 3.6rem;
  line-height: 1.3;
  font-weight: bold;
  color:#000;
  text-align: center;
  margin: -30px 0 20px 0;
}
.application__process-title strong {
    font-size: 4.0rem;
}

@media screen and (max-width: 480px) {
  .application__process-title{
    font-size: 2.8rem;
  }
  .application__process-title strong {
    font-size: 3.2rem;
  }
}

.application__process-box{
  padding: 40px 30px 30px 30px;
}

.application__process-box .step1,.application__process-box .step2,.application__process-box .step3{
  width: 100%;
  height: auto;
  background-color: #fafafa;
  border-radius: 0;
  text-align: center;
  color: #333;
}

.step__arrow{
  text-align: center;
}
.step__arrow.arrow01 i{
  color: #1252b1;
}
.step__arrow.arrow02 i{
  color: #072e67;
}

.step-container{
  padding: 10px 50px 50px 50px;
  text-align: left;
}

.application__process-box h3{
  font-size: 2.4rem;
  margin: 0 0 20px 0;
  padding: 10px 0 10px 0;
  background-color: #0013A7;
  color: #fff;
  text-align: center;
}

.application__process-box .step1 h3{
  background-color: #3982ee;
}

.application__process-box .step2 h3{
  background-color: #1252b1;
}

.application__process-box .step3 h3{
  background-color: #072e67;
}

.application__process-box p{
  padding: 15px;
}
.application__process-box .rice-indent {
  padding: 0 15px 15px 1em;
  position: relative;
  margin-left: 1em;
}
.application__process-box figure{
  text-align: center;
}

.application__process-box figure img{
}

@media screen and (max-width: 480px) {
  .application__process-box{
    padding: 0;
  }
  .step-container{
    padding: 10px 0px 0px 0px;
    text-align: left;
  }
  .application__process-box h3{
    font-size: 2.0rem;
	margin: 0 0 0 0;
  }
  .application__process-box figure img{
    width: 90%;
    height: auto;
  }
}



.term {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  padding: 64px 0;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .term {
    margin-top: 0;
    padding-top: 32px;
  }
}
.term__container {
  width: 92%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-recommendation{}
.recommendation-container{
  position: relative;
  margin: 96px 0 150px 0;
  display: flex;
  align-items:center;
  justify-content: center;
}
.recommendation-block{
  display: flex;
  flex-wrap: wrap;
  align-items:center;
  width: 80%;
  max-width: 1200px;
  height: auto;
}

@media screen and (max-width: 768px) {
	.recommendation-container{
	  margin: 30px 0 50px 0;
	}
	.recommendation-container:last-of-type{
	  margin: 30px 0;
	}
	.recommendation-block{
	  width: 100%;
	  flex-direction: column;
	  height: auto;
	}
}

.recommendation-container::before {
    content: "";
    width: 75%;
    height: 120%;
	min-height: 300px;
    position: absolute;
    z-index: -1;
    top: -3rem;
    right: 0;
    /*background-color: #bae1f2;*/
    background-color: #00a0e9;
	
}

.recommendation-container--reverse::before {
    left: 0;
}

@media screen and (max-width: 768px) {
.recommendation-container::before {
    width: 95%;
    height: 85%;
	min-height: 300px;
    z-index: -1;
    top: auto;
	bottom:0;
    right: auto;
}
.recommendation-container--reverse::before {
    left: auto;
}
}

.recommendation-container--reverse .recommendation-block__body {
  order: 1;
}
.recommendation-container--reverse .recommendation-block__trainer-image {
  order: 2;
}
@media screen and (max-width: 768px) {
.recommendation-container--reverse .recommendation-block__body {
  order: 2;
}
.recommendation-container--reverse .recommendation-block__trainer-image {
  order: 1;
  text-align: center;
}}

.recommendation-block__trainer-image img{
  box-shadow: 8px 8px 4px rgb(0 0 0 / 20%);
}
.recommendation-block__body{
  text-align: left;
  flex: 1;
  margin: 20px 20px 20px 50px;
  color:#fff;
}
.recommendation-container--reverse .recommendation-block__body{
  margin: 20px 50px 20px 20px;
}
@media screen and (max-width: 768px) {
	.recommendation-block__trainer-image {
	  text-align: center;
	}

	.recommendation-block__trainer-image img{
	  width: 90%;
	  height: auto;
	}

	.recommendation-block__body{
	  order: 2;
	  width: 90%;
	  margin: 20px 0;
	}
	.recommendation-container--reverse .recommendation-block__body{
	  order: 2;
	  width: 90%;
	  margin: 20px 0;
	}
}
.recommendation-block__trainer-name{
  font-size:2.6rem;
  line-height: 1.5;
}

.recommendation-block__trainer-title{
  font-size:1.5rem; 
}
@media screen and (max-width: 480px) {
	.recommendation-block__trainer-profile{
	  margin: 0 10px;
	}
	
	.recommendation-block__trainer-name{
	  font-size:2.2rem;
	  margin-top: 30px;
	}

	.recommendation-block__trainer-title{
	  font-size:1.5rem; 
	}
}



.author {
  margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
  .author {
    margin-bottom: 30px;
  }
}

.author:last-child {
  margin-bottom: 0;
}

.author--reverse .author__image {
  order: 2;
}

@media screen and (max-width: 480px) {
  .author--reverse .author__image {
    order: 0;
  }
}

.author--reverse .author__comment {
  order: 1;
  margin-left: auto;
  margin-right: 48px;
}

@media screen and (max-width: 768px) {
  .author--reverse .author__comment {
    margin-right: 32px;
  }
}

@media screen and (max-width: 480px) {
  .author--reverse .author__comment {
    order: 2;
    margin-right: auto;
  }
}

.author--reverse .author__comment::after,
.author--reverse .author__comment::before {
  left: 100%;
}

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

  .author--reverse .author__comment::after,
  .author--reverse .author__comment::before {
    bottom: 100%;
    left: 50%;
    top: auto;
  }
}

.author--reverse .author__comment::after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fefefe;
  border-width: 15px;
  margin-top: -15px;
}

@media screen and (max-width: 480px) {
  .author--reverse .author__comment::after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fefefe;
    border-width: 10px;
    margin-left: -10px;
  }
}

.author--reverse .author__comment::before {
  border-color: rgba(223, 223, 223, 0);
  border-left-color: #dfdfdf;
  border-width: 16px;
  margin-top: -16px;
}

@media screen and (max-width: 480px) {
  .author--reverse .author__comment::before {
    border-color: rgba(223, 223, 223, 0);
    border-bottom-color: #dfdfdf;
    border-width: 11px;
    margin-left: -11px;
  }
}

.author__container {
  display: flex;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .author__container {
    margin-bottom: 32px;
  }
}

@media screen and (max-width: 480px) {
  .author__container {
    flex-direction: column;
    margin-bottom: 24px;
  }
}

.author__image {
  margin-bottom: 32px;
  text-align: center;
}

@media screen and (max-width: 480px) {
  .author__image {
    margin-bottom: 24px;
  }
}

.author__image img {
  width: 200px;
  margin-bottom: 16px;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .author__image img {
    width: 180px;
  }
}

@media screen and (max-width: 480px) {
  .author__image img {
    margin-bottom: 8px;
  }
}

.author__role {
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 480px) {
  .author__role {
    font-size: 1.4rem;
  }
}

.author__name {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3c70a4;
}

@media screen and (max-width: 768px) {
  .author__name {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 480px) {
  .author__name {
    font-size: 2rem;
  }
}

.author__profile {
  position: relative;
  flex: 1;
  width: 75%;
  max-width: 800px;
  margin-left: 48px;
  margin-right: 0;
  margin-bottom: 40px;
  padding: 48px;
  background-color: #fff;
  font-size: 1.6rem;
  text-align: left;
}

.author--reverse .author__profile {
  margin-left: 0;
  margin-right: 48px;
}

@media screen and (max-width: 768px) {
  .author__profile {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .author__profile {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
	margin-left: 0;
	margin-bottom: 0;
    font-size: 1.5rem;
  }
}

	


.heading {
  margin-bottom: 48px;
}
@media screen and (max-width: 480px) {
  .heading {
    margin-bottom: 32px;
  }
}
.heading--center {
  text-align: center;
}
.heading__english {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00a0e9;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .heading__english {
    font-size: 1.2rem;
  }
}
.heading__title {
  font-size: 4.1rem;
}
@media screen and (max-width: 768px) {
  .heading__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .heading__title {
  }
}

.panel {
  position: relative;
  width: 92%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding:48px;
  background: #fff;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .panel {
    padding: 40px;
  }
}
@media screen and (max-width: 480px) {
  .panel {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.panel--padding-large {
  padding: 80px;
}
@media screen and (max-width: 768px) {
  .panel--padding-large {
    padding: 40px;
  }
}
@media screen and (max-width: 480px) {
  .panel--padding-large {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.panel--shadow {
  box-shadow: inset 1px 1px 0 #ffffff, 1px 1px 2px 0px #dddddd;
}

.panel--box-shadow {
  -webkit-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.08);
}
.postscript{
  font-size: 3.0rem;
  line-height: 1.3;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
	.postscript{
	  font-size: 2.4rem;
	}
}


.toc {
  margin-bottom: 32px;
}
.toc:last-child {
  margin-bottom: 0;
}
.toc ol li{
  list-style-type: decimal;
}
.toc__title {
  margin-bottom: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background: #00a0e9;
  display: flex;
  color: #fff;
  line-height: 1.5;
}
.toc__title span {
  margin-left: 8px;
}
.toc__chapter {
  margin-right: 16px;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .toc__chapter {
    margin-right: 8px;
  }
}
.toc__lists {
  margin-left: 40px;
}
.toc__list {
  margin-bottom: 8px;
  list-style-type: disc;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  .toc__lists {
    margin-left: 25px;
  }
  .toc__list {
    font-size: 1.5rem;
  }
}
.toc__list span {
  font-style: italic;
  color: #818a99;
}
.toc__note{
  width: 96%;
  max-width: 960px;
  text-align: center;
  margin: 70px auto 0 auto;
  padding: 24px;
  background: #fefafc;
  border: 2px solid #f5a4a4;
}
.toc__note p{
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 480px) {
	.toc__note{
	  width: 92%;
	  margin: 40px auto 0 auto;
	  padding: 10px;
	}
	.toc__note p{
	  font-size: 1.6rem;
	}
}

.author-intro {
  padding-left: 32px;
  padding-right: 32px;
  font-size: 1.6rem;
  color: #818a99;
}
@media screen and (max-width: 480px) {
  .author-intro {
    padding: 0;
    font-size: 1.4rem;
  }
}

.term-block {
  width: auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .term-block {
    font-size: 1.5rem;
  }
}
.term-block__title {
  display: block;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 32px;
  padding-right: 32px;
  background: #222;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .term-block__title {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .term-block__title {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.term-block__box {
  margin-bottom: 32px;
}
.term-block__inner-box {
  margin-bottom: 16px;
}
.term-block__box-title {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .term-block__box-title {
    font-size: 1.4rem;
  }
}
.term-block__box-sub-title {
  margin-left: -8px;
  margin-bottom: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #292D31;
}
@media screen and (max-width: 768px) {
  .term-block__box-sub-title {
    font-size: 1.3rem;
  }
}
.term-block p {
  margin-bottom: 0;
}







.cta {
  position: relative;
  background: #f2f3f5;
  padding-top: 168px;
  padding-bottom: 128px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 480px) {
  .cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.cta__container {
  position: relative;
  text-align: center;
  width: 96%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .cta__container {
    margin-top: 0;
  }
}


.cta__title {
  margin-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 4.6rem;
  text-align: center;
  color: #022A4C;
}
@media screen and (max-width: 768px) {
  .cta__title {
    margin-bottom: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__title {
    font-size: 2.3rem;
  }
}
.cta__book--subtitle {
  font-size: 3.5rem;
}
@media screen and (max-width: 480px) {
  .cta__book--subtitle {
    font-size: 1.7rem;
  }
}

.cta__overview {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .cta__overview {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.cta__seminar-type {
  display: inline-block;
  margin-right: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  background: #022A4C;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .cta__seminar-type {
    margin-bottom: 16px;
    margin-right: 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__seminar-type {
    margin-bottom: 16px;
    margin-right: 0;
    font-size: 1.6rem;
  }
}
.cta__date {
  font-family: "Roboto", sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 1px;
  color: #022A4C;
}
@media screen and (max-width: 768px) {
  .cta__date {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__date {
    font-size: 2.3rem;
  }
}
.cta__date span {
  position: relative;
  top: -2px;
  font-size: 2.9rem;
}
@media screen and (max-width: 768px) {
  .cta__date span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__date span {
    font-size: 1.8rem;
  }
}
.cta__button-container {
  text-align: center;
}

.cta__button {
  position: relative;
  display: inline-block;
  margin: 0 20px;
  padding: 20px;
  background: #FFA41C;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
  box-sizing: border-box;
  border: 3px solid #FFA41C;
  width: 400px;
  text-align: center;
  line-height: 1.3;
}
.cta__button span{
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 5px;
  display: block;
}

.cta__button:hover {
  color: #a91616;
  text-decoration: none;
  background: #fff;
}
.cta__container .cta__button {
  margin: 0 ;
}

@media screen and (max-width: 768px) {
  .cta__button {
    font-size: 2.3rem;
    line-height: 0.7;
  }
}
@media screen and (max-width: 480px) {
  .cta__button {
    width: 98%;
    margin: 10px 0;
    padding: 12px;
    font-size: 2.2rem;
    line-height: 1.5;
  }
  .cta__container .cta__button {
	margin: 0 ;
    width: 100%;
  }

}
.cta__button i {
  position: relative;
  top: 1px;
  margin: 0 10px;
  font-size: 2.6rem;
}
@media screen and (max-width: 480px) {
  .cta__button i {
    font-size: 2.3rem;
  }
}
.cta__container .button-container__bottom .cta__button{
  margin: 10px auto;
}

.cta__button.campaign {
  background: #a91616;
  border: 3px solid #a91616;
}
.cta__button.campaign:hover {
  color: #a91616;
  text-decoration: none;
  background: #fff;
}

.cta__button-close {
  background: #9a9a9a;
  color: #fff;
  border: 3px solid #9a9a9a;
}

.cta__button-close:hover {
  color: #fff;
  text-decoration: none;
  background: #9a9a9a;
}

.cta__button-full {
  position: relative;
  display: inline-block;
  padding: 32px;
  background: #9a9a9a;
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .cta__button-full {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  .cta__button-full {
    padding: 24px;
    font-size: 1.8rem;
  }
}
.cta__button-blue {
  background: #74c3ee;
  border: 3px solid #74c3ee;
}
.cta__button-blue:hover {
  color: #74c3ee;
  text-decoration: none;
  background: #fff;
}

.cta__present {
  margin: 62px auto 0;
  text-align: center;
  max-width: 460px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
.cta__present {
  font-size: 1.8rem;
  }
}
.cta__present-mark {
  color: #022A4C;
  border-top: #022A4C 3px dotted;
  border-bottom: #022A4C 3px dotted;
  line-height: 2;
  margin: 0 auto;
}
.cta__present-contents {
  padding: 1em 0;
  color: #022A4C;
}
.cta__present-contents p {
  line-height: 1.3;
}

.purchase {
  position: relative;
  display: flex;
}
@media screen and (max-width: 480px) {
  .purchase {
    flex-direction: column;
    text-align: center;
  }
}
.purchase__image {
  width: 40%;
  /*margin-right: 64px;*/
}
@media screen and (max-width: 768px) {
  .purchase__image {
    width: 38%;
    margin-right: 48px;
  }
}
@media screen and (max-width: 480px) {
  .purchase__image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    width: 75%;
  }
}
.purchase__body {
  flex: 1;
}
.purchase__body--white, .purchase__body--white h3{
  color: #fff;
}
.purchase__title {
  margin-bottom: 24px;
  font-size: 5.2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1080px) {
  .purchase__title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1000px) {
  .purchase__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .purchase__title {
    font-size: 2.8rem;
  }
}
.purchase__title span {
  font-size: 2.8rem;
  color: #00a0e9;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .purchase__title span {
    margin-left: -16px;
    font-size: 2.5rem;
	margin-bottom: 10px;
	display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  .purchase__title span {
    margin-left: auto;
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.purchase__author {
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .purchase__author {
    margin-bottom: 10px;
  }
}
.purchase__benefit {
  margin-bottom: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid #022A4C;
  border-bottom: 1px solid #022A4C;
}
.purchase__benefit--white {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.purchase__price {
  margin-bottom: 1em;
}
.purchase__price span {
  margin-left: 4px;
  margin-right: 4px;
  font-size: 4.1rem;
  font-weight: 700;
  color: #a91616;
}
@media screen and (max-width: 480px) {
  .purchase__price span {
    font-size: 3.2rem;
  }
}
.purchase__price--white span {
  color: #fff;
}

.purchase-term a {
  font-size: 1.4rem;
  text-decoration: underline;
  color: rgba(255, 255, 255, 0.8);
}
.purchase-term a:hover {
  text-decoration: none;
}

.purchase__notice {
  margin: 2em 0 0;
  padding: 1em;
  background-color: #f7f9fb;
  text-align: left;
  line-height: 1.5;
  font-size: 1.35rem;
}
.purchase__notice--navy {
  background-color: #022A4C;
}










.footer {
  padding-top: 100px;
  padding-bottom: 50px;
  background-image: url("../images/img_bg_genius_publishing.jpg");
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 100px;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    padding-top: 80px;
  }
}
.footer__block {
  padding-bottom: 64px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__block {
    padding-bottom: 48px;
  }
}
.footer__published {
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .footer__published {
    font-size: 1.6rem;
  }
}
.footer__publisher {
  font-size: 4.1rem;
}

.footer__publisher a{
  color: #FFF;
}

.footer__publisher a:hover{
  text-decoration:none;
}


@media screen and (max-width: 768px) {
  .footer__publisher {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .footer__publisher {
    font-size: 2.9rem;
  }
}
.footer__navigation {
  margin-bottom: 24px;
}
.footer__lists {
  display: flex;
  justify-content: center;
  list-style-type: none;
}
@media screen and (max-width: 480px) {
  .footer__lists {
    flex-direction: column;
    align-items: center;
  }
}
.footer__list {
  padding-left: 8px;
  padding-right: 8px;
}
.footer__list a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.15s;
}
@media screen and (max-width: 480px) {
  .footer__list a {
    font-size: 1.4rem;
  }
}

.footer__list a:hover {
  color: #fff;
}

.masthead-pd{
  padding:0 0 10px 0;
}

.amazon-img{
width: 960px;
margin:0 auto 20px; 
padding: 120px 0 0 0;
}

.amazon-img2{
  width: 960px;
  margin:0 auto 15px; 
  padding: 0 0 0 0;
  }

.amazon-img img{
  width: 700px;
  }


  @media screen and (max-width: 480px) {
.amazon-img{
width: 100%;
margin:0 auto 20px; 
padding: 60px 0 0 0;
}


.amazon-img2{
  width: 100%;
  margin:0 auto 10px; 
  padding: 0 0 0 0;
  }

.amazon-img img{
  width: 700px;
  }

  .masthead-pd{
  padding:0 0 40px 0;
}

}