/*
見出し+文章+画像
===============================================*/

.contents {
  max-width: 720px;
  margin: 0 auto 80px;
}
.contents-ttl {
  font-family: 'Noto Serif JP';
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid #E3E9EF;
  padding: 0 0 48px;
}
.contents-txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  margin: 48px 0 0;
}
.contents-img {
  margin: 80px 0 0;
}
.contents-img img {
  border-radius: 6px;
}
.contents-txt:empty {
  display: none;
}
.contents-img:empty {
  display: none;
}

@media screen and (max-width: 767px) {
  .contents {
    margin-bottom: 40px;
  }
  .contents-ttl {
    font-size: 22px;
    padding: 0 0 24px;
  }
  .contents-txt {
    font-size: 14px;
    margin: 24px 0 0;
  }
  .contents-img {
    margin: 40px 0 0;
  }
}
/*
===============================================*/


/*
プロフィール
===============================================*/
.profile {
  max-width: 720px;
  margin: 0 auto 80px;
}
.profile-wrap {
  display: flex;
  border-radius: 6px;
  background: #F7F8FA;
  padding: 48px;
}
.profile-img {
  flex: 0 0 160px;
  margin: 0 48px 0 0;
}
.profile-img img {
  border-radius: 100%;
}
.profile-data {
  flex: 1;
}
.profile-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 12px;
}
.profile-detail {
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 40px;
  }
  .profile-wrap {
    display: block;
    padding: 24px;
  }
  .profile-img {
    text-align: center;
    margin: 0 0 8px;
  }
  .profile-img img {
    width: 100px;
  }
}
/*
===============================================*/


/*
質問+回答
===============================================*/
.q_a {
  max-width: 720px;
  margin: 0 auto 80px;
}
.question-item {
  display: flex;
  align-items: center;
  margin: 0 0 40px;
}
.question-icon {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  margin: 0 56px 0 0;
}
.question-icon img {
  border-radius: 100%;
}
.question-txt {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
}
.answer-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
.answer-icon {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  margin: 0 0 0 24px;
}
.answer-icon img {
  border-radius: 100%;
}
.answer-txt {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  border-radius: 8px 2px 8px 8px;
  background: #F7F8FA;
  padding: 40px;
  margin: 42px 0 0;
}

@media screen and (max-width: 767px) {
  .q_a {
    margin-bottom: 40px;
  }
  .question-item {
    margin: 0 0 16px;
  }
  .question-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin: 0 16px 0 0;
  }
  .question-txt {
    font-size: 16px;
  }
  .answer-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    margin: 0 0 0 16px;
  }
  .answer-txt {
    font-size: 14px;
    padding: 24px;
    margin: 28px 0 0;
  }
}
/*
===============================================*/

/*
===============================================*/


/*
POINT（文章）
===============================================*/
.point {
  border-radius: 4px;
  border: 1px solid #E6E6E6;
  padding: 32px;
  /*margin: 0 0 40px;*/
  max-width: 720px;
  margin: 0 auto 40px;
}
.point-ttl {
  position: relative;
  font-family: 'Oswald';
  font-size: 20px;
  line-height: 1.2;
  padding: 0 0 0 28px;
  margin: 0 0 16px;
}
.point-ttl:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url({@icon-ttl@});
  background-size: contain;
  background-repeat: no-repeat;
}
.point-txt {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .point {
    padding: 24px;
    margin: 0 0 24px;
  }
  .point-ttl {
    font-size: 18px;
    margin: 0 0 8px;
  }
  .point-ttl:before {
    top: 0;
  }
}
/*
===============================================*/

/*
リスト（番号+文章）
===============================================*/
.howTo {
  position: relative;
  padding: 0 0 0 56px;
  /*margin: 0 0 40px;*/
  max-width: 720px;
  margin: 0 auto 40px;
}
.num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 100%;
  background: #333;
}
.howTo-detail {
  display: flex;
  justify-content: space-between;
}
.howTo-txt {
  flex: 1;
  line-height: 2;
}
.howTo-img {
  text-align: end;
  width: 48.08%;
  margin: 0 0 0 40px;
}
.howTo-img:empty {
  display: none;
}

@media screen and (max-width: 767px) {
  .howTo {
    margin: 0 0 24px;
  }
  .howTo-detail {
    display: block;
  }
  .howTo-img {
    width: auto;
    text-align: left;
    margin: 16px 0 0;
  }
}
/*
===============================================*/


/*
リスト（番号+文章）
===============================================*/
.editor {
  margin: 0 0 40px;
}
.editor a {
  color: #1571DA;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .editor a:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .editor {
    margin: 0 0 24px;
  }
  .editor a {
    text-decoration: underline;
  }
}

/*
===============================================*/

/*
動画（iframeタグを入力）
===============================================*/
.movie {
  position: relative;
  margin: 0 0 40px;
  padding-top: 58.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .movie {
    padding-top: 68.25%;
    margin: 0 0 24px;
  }
}
/*
===============================================*/


