@charset "utf-8";

/* ==========================================================================
   初期スタイル調整
   ========================================================================== */

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

html {
  overflow-x: hidden;
}

body {
  font-weight: 300;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif, "Apple Color Emoji", Roboto, "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  line-height: 1.75;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  letter-spacing: .05em;
  font-weight: 700;
  font-feature-settings: "palt";
}

p:not(:last-child) {
  margin-bottom: 1em;
}

ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

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

strong {
  font-weight: 700;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* フェートイン */

body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* リンク
   ========================================================================== */

a {
  color: #1a0dab;
  text-decoration: underline;
}


a:hover,
a:focus {
  text-decoration: none;
}

a:active {
}

/* メディアクエリによる表示／非表示
   ========================================================================== */

.pc {display: block;}
.sp {display: none;}

@media(max-width: 599px) {
  .pc {display: none;}
  .sp {display: block;}
}

/* ==========================================================================
   レイアウト
   ========================================================================== */

/* 幅 */

.l-width {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* 部品 */

.l-module {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media(max-width: 599px) {
  .l-width {
    width: 100%;
  }
  .l-module {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   背景
   ========================================================================== */

body {
  background: #fff;
}

/* ==========================================================================
   カウントダウン
   ========================================================================== */

.countdown {
  margin: 0 auto;
  padding: 15px 0;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;

  /* スティッキー */
  position: sticky;
  top: 0;
  z-index: 2;
}

.countdown strong {
  color: #ff6;
}

@media(max-width: 599px) {
  .countdown {
    padding: 12px;
    font-size: 15px;
    line-height: 1;
  }
  .countdown strong {
    display: block;
    margin-bottom: 6px;
  }
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */

.header {
  text-align: center;
  line-height: 1;
}

.header-1 {
  margin: 0 auto;
  padding: 18px 0;
  background: #c00;
}

.header-2 {
  margin: 30px auto;
  padding: 0;
}

@media(max-width: 599px) {
  .header-1 {
    padding: 0 20px 10px;
  }
}

/* ==========================================================================
   メディア掲載実績
   ========================================================================== */

.media {
  padding: 30px 0;
  background-color: #000;
}

@media(max-width: 599px) {
  .media {
    padding: 20px 0;
  }
}

/* ==========================================================================
   イントロ１
   ========================================================================== */

.intro-1 {
  padding: 40px;
  background: #1a1a1a url("img/intro-1-bg.jpg") no-repeat right top;
  color: #fff;
}

.intro-1__head {
  margin-bottom: 30px;
}

.intro-1 p {
  font-size: 1.2em;
}

@media(max-width: 599px) {
  .intro-1 {
    padding: 20px 0;
    background-image: none;
  }
  .intro-1__head {
    margin-bottom: 20px;
  }
  .intro-1 p {
    font-size: inherit;
  }
}

/* ==========================================================================
   イントロ２
   ========================================================================== */

.intro-2 {
  padding: 40px;
  padding-left: 400px;
  background: #000 url("img/intro-2-bg.jpg") no-repeat left top;
  color: #fff;
}

.intro-2__head {
  margin-bottom: 30px;
}

.intro-2 p {
  font-size: 1.2em;
}

@media(max-width: 599px) {
  .intro-2 {
    padding: 20px 0;
    background-image: none;
  }
  .intro-2__head {
    margin-bottom: 20px;
  }
  .intro-2 p {
    font-size: inherit;
  }
}

/* ==========================================================================
   メイン
   ========================================================================== */

.main {
}

/* ==========================================================================
   本文エリア
   ========================================================================== */

.text {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media(max-width: 599px) {
  .text {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* ==========================================================================
   タイポグラフィー
   ========================================================================== */

body {
  font-size: 17px;
}
@media(max-width: 599px) {
  body {
    font-size: inherit;
  }
}

/* 小見出し H3
   ========================================================================== */

.main h3:not([class]) {
  position: relative;
  margin: 40px 0;
  padding: 20px 20px;
  border-top: 1px solid #caca99;
  border-bottom: 1px solid #caca99;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
}
  .main h3:not([class]):first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .main h3:not([class]) {
    margin: 30px -30px;
    padding: 1em;
    font-size: 19px;
  }
}

/* 小見出し H4
   ========================================================================== */

.h4 {
  margin: 40px auto 33px;
  padding: .7em 0 0;
  border-top: 1px solid #ccc;
  font-size: 24px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h4 {
  margin: 2em auto 1em;
    font-size: 18px;
  }
  .h4 br {
    display: none;
  }
}

/* イメージカット
   ========================================================================== */

.cut {
  margin: 0 40px;
  text-align: center;
}

@media(max-width: 599px) {
  .cut {
    margin: 0;
  }
}

/* 顔写真
   ========================================================================== */

.author {
  float: right;
  width: 25%;
  margin: 0 0 1em 1em;
}

.author img {
  margin-bottom: 10px;
}

.author figcaption {
  color: #666;
  font-size: .9em;
}

/* ==========================================================================
   チェックリスト
   ========================================================================== */

ul.checklist {
  margin: 30px 0;
  padding: 30px;
  background-color: #f2eee6;
  list-style-type: none;
}

ul.checklist > li {
  margin: 0;
  padding: 12px;
  border-top: 1px solid #ccc;
  font-weight: 700;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

ul.checklist > li::before {
  margin-right: 12px;
  color: #c00;
  content: '\f14a';
  font-family: FontAwesome;
}

ul.checklist > li:last-child {
  border-bottom: 1px solid #ccc;
}

ul.checklist > li.caption {
  padding-left: 1.5em;
  text-indent: -1em;
  font-weight: normal;
  font-size: 17px;
  line-height: 1.75em;
}
ul.checklist > li.caption::before {
  content: none;
}

/* 2段 */

ul.checklist.column-count-2 {
  column-count: 2;
}

@media(max-width: 599px) {
  ul.checklist {
    margin: 20px 0;
    padding: 15px;
    border: none;
  }
  .main 
  ul.checklist > li {
    font-size: 4vw;
    padding: 6px 0;
    padding-left: 2em;
  }
  ul.checklist > li::before {
    margin-right: 6px;
  }
  /* 2段 */
  ul.checklist.column-count-2 {
    column-count: 1;
  }
}

/* ==========================================================================
   ナンバーリスト
   ========================================================================== */

ol.numberlist {
  margin: 30px 0;
  padding: 30px;
  background-color: #f2eee6;
  color: #c00;
  list-style-position: inside;
}

ol.numberlist > li {
  margin: 0;
  padding: 12px;
  border-top: 1px solid #ccc;
  font-weight: 700;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

ol.numberlist > li > span {
  color: #000;
}

ol.numberlist > li:last-child {
  border-bottom: 1px solid #ccc;
}

@media(max-width: 599px) {
  ol.numberlist {
    margin: 20px 0;
    padding: 15px;
    border: none;
  }
  .main 
  ol.numberlist > li {
    font-size: 4vw;
    padding: 6px 0;
    padding-left: 2em;
  }
  ol.numberlist > li::before {
    margin-right: 6px;
  }
}

/* ==========================================================================
   フォーム
   ========================================================================== */

.form {
  position: relative;
  margin: 40px 0 25px;
  padding: 40px;
  background: #ffcc00;
  text-align: center;
}

.form__title {
  margin: -40px -40px 20px;
  padding: 20px 1em;
  background: #369;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.form__head {
  margin: 0 auto 20px;
  padding: 0;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

.form input[type="text"],
.form input[type="email"] {
  display: block;
  margin: 0 auto 20px;
  padding: 1em;
  width: 100%;
  border: 1px solid #999;
  background-color: #fff;
  color: #666;
  font-size: 1.5rem;
  font-family: FontAwesome;
}

.form input[type="image"] {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
}

.form .checkbox {
  display: flex;
  align-items: center;

  margin-bottom: 10px;
}

.form input[type="checkbox"] {
  margin-right: 5px;
}

.form p.form__note {
  overflow-y: scroll;
  margin: 0 auto 20px;
  padding: .75em;
  height: 4.95em;
  background-color: #e6e6e6;
  color: #666;
  text-align: left;
  font-size: 13px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .form {
    margin: 20px 0;
    padding: 20px 0;
  }
  .form__title {
    margin: -20px -20px 15px;
    padding: 12px;
    font-size: 16px;
  }
  .form__head {
    font-size: 16px;
  }
  .form input[type="text"],
  .form input[type="email"] {
    margin: 0 0 15px;
    font-size: 15px;
  }
  .form input[type="image"] {
    margin: 0 0 15px;
  }
  .form p.form__note {
    font-size: 10px;
  }
}

/* フォームの下のチェックリスト
   ========================================================================== */

.form__footer-txt {
  border: 2px solid #000;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: .6em 1em;
  text-align: left;
  font-size: 21px;
}

.form__footer-txt > li::before {
  margin-right: .5em;
  color: #c00;
  content: '\f14a';
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .form__footer-txt {
    font-size: inherit;
  }
}

/* ==========================================================================
   ポイント
   ========================================================================== */

.point {
  margin: 40px auto;
  padding: 40px;
  background: #f2eee6;
}
  .point > *:last-child {
    margin-bottom: 0;
  }

.point__item {
  margin-bottom: 40px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
  .point__item:last-child {
    margin-bottom: 0;
  }
  .point__item > *:last-child {
    margin-bottom: -.4em;
  }

.point__title {
  margin: -40px -40px 40px;
  padding: 1em;
  background: #c00;
  color: #fff;
  text-indent: -2px;
  letter-spacing: 2px;
  font-size: 21px;
  text-align: center;
}

.point__img {
  margin-bottom: 40px;
}

.point__head {
  margin-bottom: 20px;
  text-align: center;
  font-size: 27px;
  line-height: 1.5;
}

@media(max-width: 599px) {
  .point {
    margin: 20px auto;
    padding: 20px 0;
  }
  .point__item {
    margin-bottom: 20px;
    padding: 20px;
  }
  .point__title {
    margin: -20px -20px 20px;
    text-indent: 0;
    letter-spacing: 0;
    font-size: 15px;
  }
  .point__img {
    margin-bottom: 20px;
  }
  .point__item h4 {
    font-size: 18px;
  }
}

/* ==========================================================================
   プレゼント
   ========================================================================== */

.present {
  margin: 0;
  padding: 40px 0;
  background: #f2eee6;
}

.present__item {
  margin: 33px auto;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);

  display: flex;
  flex-direction: row-reverse;
}

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

/* 見出し */

.present__head {

}

/* 画像 */

.present__img {
  width: 30%;
}

/* テキスト */

.present__txt {
  width: 70%;
  margin: 25px;
}

.present__txt > h4 {
  display: inline-block;
  margin: 0 0 12px;
  padding: .5em 1em;
  background-color: #c00;
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}

.present__txt > p {
  font-weight: 700;
  font-size: 21px;
}

@media(max-width: 599px) {
  .present {
    padding: 20px 0;
  }
  .present__item {
    margin: 20px auto;

    flex-direction: column-reverse;
  }
  .present__img {
    margin: 0 auto 25px;
    width: 50%;
  }
  .present__txt {
    width: auto;
  }
  .present__txt > h4 {
    display: block;
    text-align: center;
    font-size: 15px;
  }
  .present__txt > p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 16px;
  }
}

/* ==========================================================================
   プロフィール
   ========================================================================== */

.profile {
  margin: 40px auto;
  padding: 40px;
  background: #f2eee6;
}

.profile__title {
  margin-bottom: 1em;
}

.profile__name-j {
  margin-bottom: .5em;
  color: #333;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  font-feature-settings: "palt";
}

.profile__name-e {
  margin-bottom: 1em;
  color: #95844a;
  letter-spacing: .25em;
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  font-feature-settings: "palt";
}

.profile__photo {
  float: right;
  margin: 0 0 1.5em 1.5em;
  width: 25%;
}

.main 
.profile h4 {
  margin: 1.5em 0 1em;
  padding-top: 1em;
  border-top: 1px solid #ccc;
  font-size: 18px;
}

.main 
.profile h5 {
  margin: 1em 0 .5em;
  padding-top: .75em;
  border-top: 1px solid #ccc;
  font-size: 17px;
}

ul.profile__books {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 0;
}

ul.profile__books li {
  display: inline;
  font-size: 0;
}

ul.profile__books li img {
  margin-right: 15px;
  width: 25%;
  /*box-shadow: 0 1px 3px rgba(0,0,0,.1);*/
}
ul.profile__books li:last-child img {
  margin-right: 0;
}

@media(max-width: 599px) {
  .profile {
    margin: 20px auto;
    padding: 20px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 1em auto;
    width: 50%;
  }
  .profile__name-j {
    text-align: center;
    font-size: 18px;
  }
  .profile__name-e {
    text-align: center;
    font-size: 15px;
  }
  .main 
  .profile p,
  .main 
  .profile li {
    font-size: 15px;
  }
  .main 
  .profile h4 {
    font-size: 18px;
  }
  .main 
  .profile h5 {
    font-size: inherit;
  }
  ul.profile__books li img {
    margin: 0 12px 6px 0;
    width: 33%;
  }
}

/* ==========================================================================
   フッター
   ========================================================================== */

.footer {
  font-size: 14px;
  color: #444;
  border-top: 1px solid #ccc;

}

.footer__inner {
  padding: 40px 20px;
}

.footer a {
  color: #444;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ナビゲーション */

.footer__nav ul {
  display: flex;
  margin: 0 0 9px;
  padding: 0;
  list-style: none;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ddd;
}

/* コピーライト */

.footer__copyright {
  padding: 0;
  font-size: inherit;
}

@media(max-width: 599px) {
  .footer {
    font-size: 12px;
  }
  .footer__inner {
    padding: 20px;
  }
}

/* ==========================================================================
   このページの先頭へ戻る
   ========================================================================== */

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  clear: both;
  text-align: right;
}

.back-to-top a {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAABhlBMVEUAAADMzMzd3d2AgIDd3d3d3d3c3Nzb29vc3NzV1dXc3Nzc3Nzd3d3d3d3c3Nzb29vc3Nzc3Nze3t7c3NzW1tbb29vd3d3d3d3d3d3c3Nzc3Nzf39/d3d3d3d3b29va2trc3NzGxsbb29vc3Nzd3d3d3d3c3Nzc3Ny/v7/c3Nzd3d3c3NzR0dHY2Njc3Nzc3Nzc3Nzc3Nzc3Nzb29vY2Nja2trc3Nzc3NzZ2dnc3Nze3t7d3d3c3Nzc3Nzc3NzX19fc3Nzc3Nzc3Nzd3d3b29vc3Nzc3Nzb29vV1dXd3d3c3NzV1dXd3d3c3Nzc3Nzd3d3c3Nzc3Nzd3d3d3d3c3Nzc3Nzb29vc3Nzd3d3d3d3d3d3c3Nzd3d3d3d3////o6Oj9/f329vbm5ub8/Pz5+fn4+Pj+/v7w8PDj4+Py8vLx8fHv7+/i4uL4+fnk5OTs7Ozd3d339/ekpqrt7e3u7u6doKS3ubzLzM6+wMLr6+vf39/6+vrl5uexs7bR09WqrbDr7O3e3+Ej3aiqAAAAXnRSTlMACuEC35y4FXYMFunx9NtH60j0px9NeHCUUCT+WchcKewJB2y70VjzCKjX2gsh1m2Yk9yPDUXV5RTG79DjkL0g+eTinV3FHUYS3r8G7d2+b/KZ4NK3dZ5RSlJ3SVq5/bnMpQAAAw1JREFUeF6t2WVz4lAUgOGDU6SFFipABaruLluVdXe58eBWddl/vjPMMGXTJpwk9/0Bz6ebKydQp6X53va+Ce9gafP1m/6+9t75JTCeJTy7GuUvkpwosERmr0QuecFHV2fDFiOaranFzydF8igxyftbmmw6uYY2eyojEJWETMHe1gD44l8CTJloVmYC7jjWG7AyIqmbyFgHUFzoc4ojqLiUM1Tf6/IdywSZfOzrAu2GdnIS0ZGU+zqk5XmWGZboimWWPere+EyR6K44M67mdS9miYGyi91Pe5G1NDFUei3ylOdqTBKDZRpdj71XnUfEcEedCVDmYIiJGIfS68qxZkA2p1jhIZ9ETCX5QlCb85iYLOus9QZSsllQTsUePIuVI6bjrBao5mYIhRh31WsIiDRAsad6KkwyhErMJFSyvZDogJLdVgGbUoRShWAFbMnQAjPDlTXTLNACheYxAOjgCbX4DgCYStIDk1MAMCoigPztXwwojgJ4LhHe9eHJyV0eIV56IMjjPJzI/4LWIspDisVWcGQwHlZMO+AZh/DQIvcWRq4QHlq8GgGvgPDQouCF9yzKuztEiewglHBe/honlmAT5/2Ha4I9LM7Diewg2AU1774K3FQAlCh44ZPqsjmt8RTirfqy0VjYhw+eUjxXA7mX4EirgWcPnlK8Vv/0NDaH/GnVU4pnWptDkNfYVW/O8kTR/fmpxl7Lf0dtsPguPQCNIg7AHgHwgfIhRf8YHaN90MMw5asIBAuUL0s2O63r3Ecb5Qvnu+qVuIfulZj+pR0s1rJ5r1zzrIAYjYfPb6jJmTULZv9AbRvmH4+KycOu2eftLuUH+A4oS5gbEQw9NcTIUB1iAES2jI5ZtiIqg6BtY4Og7W5QaX/ByKhqYR9Ue76nf5i29xw0SkzrHfdNJ0C7bys6BpLZlR9Qt5BTx8h0AzDFsEPdGCCLuwOMpM1JTOBnHPDNtdkLdQbjcxRH982K0T02S3i9P8oX05woyITIgsili3y0fz1sAeO5Diq/P/ylkt870dfee+AC7f4Bnw1DMsoy0tsAAAAASUVORK5CYII=") no-repeat center center;
  background-size: contain;
  line-height: 100px;
}

.back-to-top a:active {
  outline: 0 none black;
}

/* ==========================================================================
   見た目調整
   ========================================================================== */

/* 文字装飾 */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 39px;
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  background: #ffcc00;
  background: linear-gradient(transparent 50%, #ffcc00 50%) repeat scroll 0% 0% transparent;
}

.a-red,
p.a-red {
  color: #c00;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

@media(max-width: 599px) {
  .a-big ,
  p.a-big {
    font-size: 19px;
  }

  .a-big1 ,
  p.a-big1 {
    font-size: 21px;
  }

  .a-big2 ,
  p.a-big2 {
    font-size: 23px;
  }

  .a-big3 ,
  p.a-big3 {
    font-size: 27px;
  }
}

/* 図 */

.img-float-right {
  float: right;
  margin: .4em 0 1.4em 1.4em;
}

.img-float-left {
  float: left;
  margin: .4em 1.4em 1.4em 0;
}

/* 点滅 */
.a-blinking {
  -webkit-animation:blink .8s ease-in-out infinite alternate;
    -moz-animation:blink .8s ease-in-out infinite alternate;
    animation:blink .8s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
