/* 241126 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

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

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

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

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #333;
}

/* リンク */

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

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

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

a:hover > img {
  opacity: .9;
}

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

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

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

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

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 24px;
  }
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

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

  ヘッダー

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

.header {
  line-height: 1;
  margin-bottom: 40px;
}
section.header {
  margin-right: -100%;
  margin-left: -100%;
}
.header-1 {
  background: #d7bee2 url("img/head-1_bg.jpg") no-repeat center top;
  padding-top: 80px;
  padding-bottom: 100px;
}
.header-2 {
  background: #701f99 url("img/head-2_bg.jpg") repeat-x center top;
  padding-top: 30px;
  padding-bottom: 30px;
}
.header-2 .l-width {
  position: relative;
}

.head-2_img {
  position: absolute;
  top: -90px;
  right: 0;
}

@media(max-width: 599px) {
  .header {
    margin-bottom: 20px;
  }
  section.header {
    margin-right: -24px;
    margin-left: -24px;
  }
}

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

  メイン

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

.main {
  padding-bottom: 40px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

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

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

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}

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

.h3 {
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #663399;
  border-bottom: 1px solid #663399;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #663399;
  font-family: serif;
}
  .h3:first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .h3 {
    margin: 20px 0;
    padding: .75em 1em;
    font-size: 21px;
  }
}

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

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 36px;
  line-height: 1.333;
  color: #663399;
  position: relative;
}
  .h3-1:first-child {
    margin-top: 0;
  }

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }
  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

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

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

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

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}

/* 引用
======================================================================= */

.blockquote {
  position: relative;
  padding: 24px 24px 24px 64px;
  box-sizing: border-box;
  font-style: italic;
  background: #f7f5f0;
  color: #333;
}

.blockquote::before {
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 24px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #ddd;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.blockquote p {
  padding: 0;
  margin: 18px 0;
  line-height: 1.7;
}

.blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

@media(max-width: 599px) {
  .blockquote {
    padding: 24px 24px 24px 48px;
  }
}

/* キャプション
======================================================================= */

.caption,
.main p.caption {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

/* サイン
======================================================================= */

p.sign {
  margin: 3em 0;
  text-align: right;
  font-weight: bold;
  font-size: 1.5em;
  font-family: serif;
}
  p.sign img {
    max-width: 50%;
  }

@media(max-width: 599px) {
  .main p.sign {
    margin: 2em 0 ;
  }
  .main p.sign img {
    max-width: 50%;
  }
}

/* UL
======================================================================= */

.ul {
  background-color: #f7f5f0;
  padding: 1.5em 2em;
  padding-left: 3em;
}

.ul li::before {
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #369;
  content: "\f111";
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .ul {
    font-size: 1em;
  }
}

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

.form {
  position: relative;
  background: #f7f5f0;
  border-top: 20px solid #e65ca1;
}

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

.form__btn {
  display: block;
  margin: 0 auto 24px;
  max-width: 100%;
}

.form p.form__note {
  overflow-y: scroll;
  margin-bottom: 0;
  padding: .5em;
  height: 4.6em;
  background-color: #fff;
  color: #666;
  font-size: 13px;
  line-height: 1.333;
}

.form p.form__note:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .form {
    margin: 24px 0;
    padding: 24px;

    border-top: 8px solid #e65ca1;
  }
  .form input[type="text"],
  .form input[type="email"] {
    margin: 0 0 15px;
    font-size: 10px;
  }
  .form__btn {
    margin: 0 0 15px;
    max-width: 100%;
  }
  .form p.form__note {
    font-size: 10px;
  }

  body div.submit {
    padding: 0;
  }
  body .form_input_input {
    max-width: 100%;
  }
}

/* =======================================================================
  リード文
======================================================================= */
.lead {
  background: #fff url("img/lead_bg.jpg") no-repeat center top;
  background-size: 100vw auto;
  text-align: center;
}
.lead__h3 img {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

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

}

/* =======================================================================
  女性性・男性性の『黄金比率』を手に入れる(point)
======================================================================= */

.point {
  background: #ffeebb url("img/gold_bg.jpg") no-repeat center top ;
  background-size: 100vw auto;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.point__item {
  background-color: #fff;
  box-shadow: 0 2px 5px 0 #e65ca1;
}
.point__item:last-child {
  margin-bottom: 0;
}

.point__img {
  padding-bottom: 40px;
}

.point__head {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  font-size: clamp(18px, 5.07vw, 27px);
}

.point__head-num {
  margin-right: 15px;
  width: 60px;
  flex-shrink: 0;
}

.point__head-txt {
  font-family: serif;
  font-weight: bolder;
}

@media(max-width: 599px) {
  .point {
    background-attachment: scroll;
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .point__img {
    margin: -24px -24px 24px;
    padding-bottom: 0;
  }
  .point__head {
    margin-bottom: 16px;
  }
  .point__head-num {
    margin-right: 16px;
    width: 45px;
  }
  .main .point__item p {
    font-size: 0.95em;
  }
  .point__head-txt {
    font-size: 16px;
  }
  
}

/* =======================================================================
  こんな方にオススメの無料ウェブセミナーです(check)
======================================================================= */

.check {
  background: #1e0c1d url("img/check_bg.jpg") no-repeat center top;
  background-size: 100vw auto;
  font-size: 24px;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

.check_h3 {
  text-align: center;
}

ul.check__ul {
  background-color: rgba(255, 255,255, .9);
  box-shadow: 0 2px 5px 0 #e65ca1;
  list-style-type: none;
  margin-bottom: 0;
}

ul.check__ul li {
  position: relative;
  margin-bottom: .75em;
  padding-bottom: .75em;
  padding-left: 33px;
  border-bottom: 1px solid #999;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.333;
}

ul.check__ul li:last-child {
  margin-bottom: 0;
}

ul.check__ul li::before {
  position: absolute;
  top: .25em; /* (line-height1.5 - 1) ÷ 2 */
  left: 0;

  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(img/check-mark.png) ;
  background-size: contain;
  vertical-align: middle;
}

@media(max-width: 599px) {
  .check_h3 img {
    text-align: center;
    padding: .75em 1em;
    padding-top: 0;
  }
  .check__ul {
    margin-top: 0;
  }
  ul.check__ul li {
    padding-left: 27px;
    font-size: 18px;
  }

  ul.check__ul li::before {
    width: 18px;
    height: 18px;
  }
}

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

.profile {
  background: #f7f5f0;
  font-size: 1rem;
}

.profile-h3 {
  font-size: 36px;
}

.profile__title {
  margin-bottom: 1.25em;
}

.profile__name-j {
  margin-bottom: .5em;
  letter-spacing: .5em;
  font-size: 1.618em;
  line-height: 1;
  font-feature-settings: "palt";

  color: #333;
  font-weight: bold;
}

.profile__name-j-ruby {
  font-size: .7em;
  letter-spacing: .25em;
}

.profile__name-e {
  margin-bottom: 1.5em;
  color: #aaa;
  letter-spacing: .25em;
  font-weight: normal;
  font-size: 1em;
  line-height: 1;
  font-feature-settings: "palt";
  text-transform: uppercase;
}

.profile__photo {
  float: right;
  margin: 0 0 2em 2em;
  width: 150px;
}

.profile__photo img {
  border-radius: 50%;
}

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

/* 本 */

.profile__books {
  padding: 0;
  list-style-type: none;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.profile__books img {
  width: 100%;
  aspect-ratio: 2 / 3;
}

@media(max-width: 599px) {
  .profile {
    margin: 24px auto;
    padding: 24px;
  }
  .profile-h3 {
    font-size: 22px;
  }
  .profile__photo {
    display: block;
    float: none;
    margin: 1em auto;
    width: 40%;
  }
  .profile__title {
    text-align: center;
  }

  .profile__name-j {
    text-align: center;
    font-size: 18px;
  }
  .profile__name-j-ruby {
    display: block;
    margin-top: 16px;
  }
  .profile__name-e {
    text-align: center;
    font-size: 15px;
  }
  .main
  .profile p,
  .main
  .profile li {
    font-size: .9em;
  }
  .main
  .profile h4 {
    font-size: 18px;
  }
  .profile__books {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* =======================================================================
  特典動画(present)
======================================================================= */

.present {
  background: #f5ebf1 url("img/present_bg.jpg") no-repeat center top fixed;
  background-size: 100vw auto;

  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}
.main
.present__h3 {
  font-size: 36px;
  text-shadow: 1px 1px 5px #fff,
  -1px 1px 5px #fff,
  1px -1px 5px #fff,
  -1px -1px 5px #fff;
}
.present__head {
  text-align: center;
}

.present__item {
  margin: 20px auto;
  background-color: rgb(255 255 255 / 0.9);
  background-color: #f7f5f0;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  display: grid;
  grid-template-columns: auto 25%;
}

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

.main
.present__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .present
.present__txt p {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.42;
}

.present__head-num {
  margin-bottom: 20px;
}

.present__head-num-1,
.present__head-num-2 {
  margin-right: 10px;
  padding: .333em 1em;
  line-height: 1;
  background-color: #663399;
  color: #fff;
  border-radius: 3px;
  letter-spacing: .5em;
  padding-left: 1.5em;
}

.present__head-num-2 {
  background-color: #e65ca1;
}

@media(max-width: 599px) {
  /* 下に移動して横位置（文字が多い場合） */
  .present__item {
    flex-direction: column;
    align-items: center;
  }
  .main
  .present__h3 {
    font-size: 22px;
  }
  .present__head-num {
    font-size: .7em;
    padding-bottom: .5em;
  }
  .main .present
  .present__txt p {
    font-size: 18px;
  }
  .present__img {
    width: 100%;
  }
  .present__img img {
    aspect-ratio: 2.414 / 1;
  }

  /* そのまま縮める（文字が少ない場合） */
  .present__item {
    display: grid;
  }
  .present__img {
    width: 100%;
    height: 100%;
  }
  .present__img img {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* 表
======================================================================= */

.table {
  width: 100%;
  border-top: 1px solid #ddd;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table th,
.table td,
.table p {
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
}

.table tbody th {
  background: #f7f5f0;
  width: 25%;
}

@media(max-width: 599px) {
  .table th,
  .table td,
  .table p { 
    font-size: .9em;
  }

  .table th {
    
    padding-right:0;
  }
}
/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #663399;
  color: #fff;
}

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

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

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

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

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

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

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

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

ul.checklist > li {
  position: relative;
  margin: 0;
  padding: .5em;
  padding-left: 1.75em;
  border-top: 1px solid #ddd;
  line-height: 1.5;
}

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

ul.checklist > li::before {
  position: absolute;
  top: .25em; /* (line-height1.5 - 1) ÷ 2 */
  left: 0;

  color: #369;
  content: '\f14a';
  font-family: FontAwesome;
  font-size: 1.2em;
}

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

@media(max-width: 599px) {
  ul.checklist {
    margin: 24px 0;
    padding: 24px;
  }
}

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

ol.numberlist {
  margin: 30px 0;
  padding: 30px;
  background-color: #f7f5f0;
  list-style-type: none;
  counter-reset: number;
}

ol.numberlist li {
  position: relative;
  padding-left: 2em;
  line-height: 1.5;

  border-bottom: 1px solid #ddd;
  padding-top: .75em;
  padding-bottom: .75em;
}

ol.numberlist li::before {
  position: absolute;
  top: 50%;
  left: 0;
  display:inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #369;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  text-align: center;
  font-weight: bold;
  font-size: .75em;
  line-height: 25px;
  transform: translateY(-50%);
}

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

/* =======================================================================
  色囲み
======================================================================= */

.color-box {
  background-color: #f7f5f0;
}

.main .color-box *:last-child {
  margin-bottom: 0;
}

/* =======================================================================
  線囲み
======================================================================= */

.border-box {
  border: 1px solid #ddd;
}

.main .border-box *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .border-box {
  }
}





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

.lay-02 {
  background-color: #f7f5f0;
}

.lay-02__title {
  text-align: center;
}

.lay-02__item {
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}
.lay-02__item:last-child {
  margin-bottom: 0;
}

.lay-02__img {
  margin: -40px -40px 40px;
}

.lay-02__head {
  margin-bottom: 24px;
  display: flex;
}

.lay-02__head-num {
  padding: 24px;

  background-color: #369;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lay-02__head-txt {
  padding: 24px;

  width: 100%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
}

@media(max-width: 599px) {
  .lay-02__img {
    margin: -24px -24px 24px;
  }
  .lay-02__head {
    flex-direction: column;
  }
  .lay-02__head-num {
    padding: .8em 1em;
    font-size: .8em;
  }
  .lay-02__head-txt {
    padding: 1em;
  }
}

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

.lay-03 {
}

.lay-03__item {
  background-color: #f7f5f0;
}
.lay-03__item:last-child {
  margin-bottom: 0;
}

.lay-03__img {
  margin: -40px -40px 40px;
}

@media(max-width: 599px) {
  .lay-03 {
  }
  .lay-03__img {
    margin: -24px -24px 24px;
  }
}
  

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

ol.lay-05 {
  padding: 0;

  list-style-type: none;
  counter-reset: number;
}

ol.lay-05 li {
  position: relative;

  margin-bottom: 1em;
  background-color: #f2efe6;

  display: flex;
}

ol.lay-05 li span {
  display: flex;
  align-items: center;
  justify-content: start;
}

.lay-05__img {
  width: 25%;
  flex-shrink: 0;
  margin-left: auto;
}

.lay-05__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ol.lay-05 li::before {
  padding: 1em;
  display: block;
  background: #369;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}



/* =======================================================================
  アクセント
======================================================================= */

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

.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: 30px;
}

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

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

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

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

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

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #c8a2d6;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.p-marker,
p.p-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #f09dc7;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

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

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

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 16px 16px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

.is-round {
  border-radius: 9px;
}


/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */