/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
    Base styles: opinionated defaults
   ========================================================================== */

/* font settings -------------------- */

@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}

@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

/*CSS カスタムプロパティ (変数) */
:root {
  /*カラー設定*/
  --c-beige: #faf7f0; /*背景色*/
  --c-lite-purple: #dde1ff; /* tag */
  --c-dark-purple: #4f404f;
  --c-lite-brown: #948094;
  --c-white: #ffffff;
  --c-black: #34302f;

  /*ボタンカラー*/
  --c-chocolate-brown: #804c4f; /*btn color purple*/
  --c-pink: #fbc9c9; /*btn color pink*/
  --c-lite-blue: #9edcff; /*btn color lite-blue*/
  --c-red: #eb5757; /*btn color lite-brown*/
  --c-blue: #4294e0; /* 2択ボタン yes*/
  --c-gray: #b8b8b8; /* 2択ボタン no*/

  /*テキストカラー設定*/
  --txt-color: #4f4040; /*font color*/
  --txt-color-second: #8c7070; /*font color second*/
  --txt-color-blue: #1a5293; /*btn color blue*/
  --txt-color-chocolate-brown: #804c4f; /*btn color purple*/
  --txt-color-red: #eb5757; /*警告色*/

  /*フォント別ウェイト設定*/
  /*Noto Sans Japanese*/
  --noto-regular: 400;
  --noto-mid: 500;
  --noto-bold: 700;
  --noto-black: 900;
  /*Shippori Mincho*/
  --shippori-regular: 400;
  --shippori-mid: 500;
  --shippori-bold: 700;
  --shippori-exbold: 800;

  /*ボーダーカラー設定*/
  --border-color: rgba(79, 64, 64, 0.30);
  --border-color-pink: #f0aab4;
  --border-color-purple: #b0b0f0;

  /*シャドウカラー設定*/
  --shadow-color: #00000029;

  /*角丸設定*/
  --thema-r: 32px;
  --thema-sub-r: 24px;
  --thema-tag-r: 4px;
}

@media only screen and (min-width: 981px) {
  :root {
    --thema-r: 60px;
    --thema-sub-r: 30px;
    --thema-tag-r: 4px;
  }
}

.shippori {
  font-family: "Shippori Mincho", serif;
}

html {
  color: var(--txt-color);
  font-size: 62.5%;
  /* 1rem = 10px */
}

body {
  font-family: "Noto Sans JP", "Shippori Mincho", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-optical-sizing: auto;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: var(--noto-regular);
  line-height: 2;
  letter-spacing: 0.2rem;
  background-color: var(--c-beige);
  overflow-x: hidden;
  min-height: 100%;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(110, 93, 110, 0.4);
  margin: 32px 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* 全ての要素にBorder-boxを適用する */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ---------------------------------
  Common styles
  mobileファーストレスポンシブの設定で記述します
  --------------------------------- */

/* PC SP control --------------------------------- */
.pc_br {
  display: none;
}

.sp_br {
  display: inline;
}

.pc_img {
  display: none;
}

.sp_img {
  display: inline-block;
}

.sp_b_elem {
  display: block;
}

.pc_b_elem {
  display: none;
}

@media only screen and (min-width: 981px) {
  .pc_br {
    display: inline;
  }

  .sp_br {
    display: none;
  }

  .pc_img {
    display: inline-block;
  }

  .sp_img {
    display: none;
  }

  .sp_b_elem {
    display: none !important;
  }

  .pc_b_elem {
    display: block;
  }
}

/* ---------------------------------
  icons
  ---------------------------------*/

.icon_glass {
  display: inline-block;
  position: relative;
  padding: 5px 32px 5px 0;
}

.icon_glass::after {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_glass.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.icon_r_arrow {
  display: inline-block;
  position: relative;
  padding: 5px 32px 5px 0;
}

.icon_r_arrow::after {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.icon_l_arrow_s {
  display: inline-block;
  position: relative;
  padding: 0 0 0 20px;
}

.icon_l_arrow_s::before {
  position: absolute;
  top: calc(50% - 8px);
  left: 0;
  content: "";
  display: block;
  background-image: url("../img/icon_left_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* ---------------------------------
  wrapper style
  ---------------------------------*/
.wrapper {
  width: calc(100% - 32px);
  margin: 0 auto;
  max-width: 1400px;
}

.wrapper .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1024px;
}

@media only screen and (min-width: 981px) {
  .wrapper {
    width: calc(100% - 200px);
  }

  .wrapper .wrapper {
    width: 100%;
  }
}

/* ---------------------------------
  layout style
  ---------------------------------*/
.layout {
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;

  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

ul.layout {
  padding: 0;
  /*リスト要素に使われた時に初期設定paddingをなくす*/
}

.layout > *,
.layout.one_half > *,
.layout.two_column > * {
  width: 100%;
}

.layout.one_third,
.layout.one_quarter {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;

  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.layout.one_third > * {
  width: 50%;
}

.layout.one_quarter > * {
  width: 33%;
}

.layout.side_title .contents_title {
}

.layout.side_title .contents_box {
  border-top: 1px solid rgba(110, 93, 110, 0.4);
}

.esc_flex {
  display: inline;
}

@media only screen and (min-width: 981px) {
  .layout.one_half > * {
    width: 50%;

    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .layout.one_third > * {
    width: 33%;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .layout.two_column {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .layout.two_column > .img_box {
    width: 540px;
  }

  .layout.two_column > .contents_box {
    width: calc(100% - 540px - 60px);
  }

  .layout.one_quarter > * {
    width: 25%;

    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .layout.side_title .contents_title {
    width: 240px;
    padding-right: 50px;
  }

  .layout.side_title .contents_title .title {
    margin-bottom: 0;
  }

  .layout.side_title .contents_box {
    width: calc(100% - 240px);
    padding-left: 50px;
    border-top: none;
    border-left: 1px solid rgba(110, 93, 110, 0.4);
  }
}

/* ---------------------------------
  appearance style
  
  利用頻度の高い特定の見た目を与える時に、
  appearanceクラスにまとめます。
  ---------------------------------*/
.appearance,
.appearance > * {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*背景白丸座布団*/
.appearance.round_box {
  border-radius: var(--thema-r);
  background-color: var(--c-white);
  padding: 26px 16px;
  margin: 30px 0;
  border: solid 2px var(--c-white);
}

.contents_title + .appearance.round_box {
  margin-top: 20px;
}

.appearance.round_box .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  margin: 0 0 18px 0;
}

.appearance.round_box .contents_box {
  padding: 18px 0 0 0;
}

.appearance.round_box .contents_box .appearance.num_list > * {
  margin-bottom: 24px;
}

.appearance.round_box .contents_box .appearance.num_list > *:last-child {
  margin-bottom: 0px;
}

@media only screen and (min-width: 981px) {
  .appearance.round_box {
    padding: 80px;
    margin: 40px 0;
  }

  .two_column .appearance.round_box {
    margin: 0;
  }

  .appearance.round_box .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .appearance.round_box .contents_box {
    padding: 0 0 0 50px;
  }
}

/* 標準リスト */
.appearance.std_list {
  padding-left: 25px;
}

.appearance.std_list > li {
  list-style: disc;
}

/* 標準順番リスト */
.appearance.std_olist {
  counter-reset: num-count;
  padding-left: 25px;
}

.appearance.std_olist > li {
  position: relative;
}

.appearance.std_olist > li:before {
  content: counter(num-count);
  counter-increment: num-count;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  width: 16px;
  color: var(--txt-color);
  font-size: 81%;
  font-weight: var(--noto-mid);
  line-height: 1;
  position: absolute;
  top: 7px;
  left: -25px;
  padding-top: 1px;
}

/* 画像付きリスト */

.appearance.img_list {
  margin-left: -12px;
  margin-right: -12px;
}

.appearance.img_list > * {
  box-sizing: border-box;
  padding: 6px;
  position: relative;
}

.appearance.img_list .img_box {
  margin-bottom: 16px;
}

.appearance.img_list.bounce > *:hover .img_box {
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

.appearance.img_list .contents_box {
}

.appearance.img_list .contents_box .title {
  margin: 0 0 8px 0;
  line-height: 1.5;

  font-size: 16px;
  font-size: 1.6rem;
  color: var(--txt-color);
  font-weight: var(--noto-mid);
  letter-spacing: 0.13rem;
  transition: 0.3s ease-in-out;
}

.appearance.img_list .contents_box .title.center {
  text-align: center;
}

.appearance.img_list .contents_box .title > a {
  text-decoration: none;
}

.appearance.img_list .contents_box .sub_title {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--txt-color-second);
  margin: 0 0 8px 0;
  transition: 0.3s ease-in-out;
}

.appearance.img_list > *:hover .contents_box .title > a,
.appearance.img_list > *:hover .contents_box .sub_title {
  color: var(--c-chocolate-brown);
}

@media only screen and (min-width: 981px) {
  .appearance.img_list {
    margin-left: -20px;
    margin-right: -20px;
  }

  .appearance.img_list > * {
    margin: 20px;
  }

  .appearance.img_list .img_box {
  }

  .appearance.img_list .contents_box {
    width: 100%;
  }

  .appearance.img_list .contents_box .title {
    font-size: 20px;
    font-size: 2rem;
  }

  .layout.appearance.img_list {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    margin-left: -20px;
    margin-right: -20px;
  }

  .layout.one_half.appearance.img_list > * {
    max-width: calc(50% - 40px);
  }

  .layout.one_third.appearance.img_list > * {
    max-width: calc(33% - 40px);
  }
}

/* 番号リスト */
.appearance.num_list {
  counter-reset: num 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.num_list > * {
  margin: 32px 0;
}

.appearance.num_list > *:first-child {
  margin-top: 0;
}

.appearance.num_list > *:last-child {
  margin-bottom: 0;
}

.appearance.num_list > * .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.appearance.num_list > * .title::before {
  display: block;
  counter-increment: num;
  content: counter(num) ".";
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  width: 50px;
  height: 50px;
  padding: 12px 0;

  background-image: url("../img/num_list_bg.svg");
  background-position: center;
  background-size: contain;
}

.appearance.num_list > * .title .title_txt {
  display: block;
  width: calc(100% - 66px);
}

.appearance.num_list > * > p {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.num_list > * .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* QAリスト */
.appearance.qa_list {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.appearance.qa_list > * {
  margin: 32px 0;
}

.appearance.qa_list > *:first-child {
  margin-top: 0;
}

.appearance.qa_list > *:last-child {
  margin-bottom: 0;
}

.appearance.qa_list > * .title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.appearance.qa_list > * .title::before {
  display: block;
  content: "Q.";
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-mid);
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1;
  width: 50px;
  height: 50px;
  padding: 12px 0;

  background-image: url("../img/num_list_bg.svg");
  background-position: center;
  background-size: contain;
}

.appearance.qa_list > * .title .title_txt {
  display: block;
  width: calc(100% - 66px);
}

.appearance.qa_list > * > p {
  margin: 0;
}

@media only screen and (min-width: 981px) {
  .appearance.qa_list > * .title {
    font-size: 20px;
    font-size: 2rem;
  }
}

/**/
.appearance.attention_list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 10px;
  font-size: 1rem;
  line-height: 2;
  color: var(--txt-color-second);
}

.appearance.attention_list > * {
  position: relative;
  padding-left: 20px;
}

.appearance.attention_list > *::before {
  content: "※";
  position: absolute;
  left: 0;
}

@media only screen and (min-width: 981px) {
}

/* 吹き出しメッセージ */
.appearance.speech_bubble > * {
  margin: 24px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.appearance.speech_bubble > *:last-child {
  margin-bottom: 6px;
}

.appearance.speech_bubble .avater_box {
  width: 80px;
  margin: 0;
}

.appearance.speech_bubble .avater_box > img {
  width: 100%;
  height: auto;
}

.appearance.speech_bubble .bubble_box {
  width: calc(100% - 80px - 16px);
  margin: 0 0 0 16px;
  padding: 24px 16px;
  border: var(--border-color-purple) solid 1px;
  border-radius: 24px;

  font-family: "Shippori Mincho", serif;
  color: var(--txt-color);
  font-weight: var(--shippori-mid);
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
}

.appearance.speech_bubble .bubble_box::before,
.appearance.speech_bubble .bubble_box::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  transform: rotate(-45deg) skew(26deg, 26deg);
  top: calc(50% - 7px);
}

.appearance.speech_bubble .bubble_box::before {
  left: calc(-24px + 16px);
  background: var(--border-color-purple);
  border-top-left-radius: 6px;
}

.appearance.speech_bubble .bubble_box::after {
  left: calc(-24px + 16px + 3px);
  background: #ffff;
  border-top-left-radius: 3px;
}

.appearance.speech_bubble > .layout.general {
  flex-direction: row-reverse;
}

.appearance.speech_bubble > .layout.general .bubble_box {
  margin-left: 0;
  margin-right: 16px;
  border: var(--border-color-pink) solid 1px;
}

.appearance.speech_bubble > .layout.general .bubble_box::before,
.appearance.speech_bubble > .layout.general .bubble_box::after {
  transform: rotate(135deg) skew(26deg, 26deg);
}

.appearance.speech_bubble > .layout.general .bubble_box::before {
  left: auto;
  right: calc(-24px + 16px);
  background-color: var(--border-color-pink);
}

.appearance.speech_bubble > .layout.general .bubble_box::after {
  left: auto;
  right: calc(-24px + 16px + 3px);
}

@media only screen and (min-width: 981px) {
  .appearance.speech_bubble > * {
    margin: 32px 0;
  }

  .appearance.speech_bubble > *:first-child {
    margin-top: 50px;
  }

  .appearance.speech_bubble > *:last-child {
    margin-bottom: 0;
  }

  .appearance.speech_bubble .avater_box {
    width: 100px;
  }

  .appearance.speech_bubble .bubble_box {
    width: calc(100% - 100px - 24px);
    margin: 0 0 0 24px;
    padding: 32px 48px;
    border-radius: 30px;

    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.36rem;
  }

  .appearance.round_box .appearance.speech_bubble .bubble_box {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}

/* ---------------------------------
  tag style
  ---------------------------------*/
.tag_box {
  line-height: 2;
}

.tag_box_text {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: var(--txt-color-second);
  line-height: 2;
}

.tag {
  display: inline-block;
  font-size: 10px;
  font-size: 1rem;
  font-weight: var(--noto-mid);
  text-align: center;
  line-height: 2;

  color: var(--txt-color);

  background-color: var(--c-lite-purple);
  border: solid 1px var(--c-white);
  padding: 2px 8px;
  margin-right: 0px;
  border-radius: var(--thema-tag-r);
}

.tag:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 981px) {
  .tag {
    padding: 2px 12px;
  }
}

/* ---------------------------------
  button style
  ---------------------------------*/
.btn_box {
  text-align: right;
  line-height: 1;
}

.button {
  display: inline-block;
  width: 100%;
  background-color: var(--c-pink);
  border: solid 2px var(--c-white);
  border-radius: 80px;
  line-height: 1;
  padding: 16px 16px 16px 24px;
  position: relative;
  color: var(--txt-color-chocolate-brown);
  text-decoration: none;
  text-align: center;
  letter-spacing: normal;

  transition: ease 0.3s;
  overflow: hidden;

  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  transform: translateZ(0px);
  /* ハードウェアアクセラレーションに仕事させるためだけの記述 */
}

.button.blue {
  background-color: var(--c-lite-blue);
  color: var(--txt-color-blue);
}

.button.border {
  background-color: var(--c-white);
  border: solid 1px var(--c-chocolate-brown);
}

.button.border .icon_bag {
  position: relative;
  padding-left: 52px;
  display: block;
  line-height: 1.5;
  text-align: left;
}

.button.border .icon_bag::before {
  position: absolute;
  top: calc(50% - 21px);
  left: 0;
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url("../img/icon_bag.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/*hoverした際の形状*/
.button:hover:before {
  transform: scale(1, 1);
}

.button > .button_label {
  position: relative;
  z-index: 3;
}

.button > .button_label.two_lines {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.button > .button_label.two_lines > em {
  font-size: 16px;
  font-size: 1.6rem;
}

.button:hover {
  background-color: var(--c-lite-purple);
  text-decoration: none;
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

.button.border:hover {
  border: solid 2px var(--c-white);
}

.bounce_anime:hover {
  animation: bounceScaleUp02 1s ease-in-out forwards;
}

@keyframes bounceScaleUp02 {
  0% {
    transform: matrix(1, 0, 0, 1, 0, 0);
  }

  3.4% {
    transform: matrix(0.913, 0, 0, 0.931, 0, 0);
  }

  4.7% {
    transform: matrix(0.94, 0, 0, 0.97, 0, 0);
  }

  6.81% {
    transform: matrix(0.992, 0, 0, 1.029, 0, 0);
  }

  9.41% {
    transform: matrix(1.027, 0, 0, 1.084, 0, 0);
  }

  10.21% {
    transform: matrix(1.038, 0, 0, 1.095, 0, 0);
  }

  13.61% {
    transform: matrix(1.075, 0, 0, 1.116, 0, 0);
  }

  14.11% {
    transform: matrix(1.078, 0, 0, 1.116, 0, 0);
  }

  17.52% {
    transform: matrix(1.092, 0, 0, 1.098, 0, 0);
  }

  18.72% {
    transform: matrix(1.092, 0, 0, 1.087, 0, 0);
  }

  21.32% {
    transform: matrix(1.089, 0, 0, 1.064, 0, 0);
  }

  24.32% {
    transform: matrix(1.08, 0, 0, 1.042, 0, 0);
  }

  25.23% {
    transform: matrix(1.077, 0, 0, 1.038, 0, 0);
  }

  29.03% {
    transform: matrix(1.063, 0, 0, 1.029, 0, 0);
  }

  29.93% {
    transform: matrix(1.051, 0, 0, 1.03, 0, 0);
  }

  35.54% {
    transform: matrix(1.046, 0, 0, 1.042, 0, 0);
  }

  36.74% {
    transform: matrix(1.044, 0, 0, 1.046, 0, 0);
  }

  41.04% {
    transform: matrix(1.042, 0, 0, 1.054, 0, 0);
  }

  44.44% {
    transform: matrix(1.043, 0, 0, 1.056, 0, 0);
  }

  52.15% {
    transform: matrix(1.048, 0, 0, 1.051, 0, 0);
  }

  59.86% {
    transform: matrix(1.051, 0, 0, 1.048, 0, 0);
  }

  63.26% {
    transform: matrix(1.051, 0, 0, 1.048, 0, 0);
  }

  75.28% {
    transform: matrix(1.05, 0, 0, 1.051, 0, 0);
  }

  85.49% {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }

  90.69% {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }

  to {
    transform: matrix(1.05, 0, 0, 1.05, 0, 0);
  }
}

.header_btn.button {
  font-size: 10px;
  font-size: 1rem;
  font-weight: var(--noto-bold);
  line-height: 1.5;
  text-align: left;
  padding: 8px 18px 8px 18px;
  width: 110px;
}

.header_btn.button .icon_r_arrow {
  padding: 2px 0;
  width: 100%;
}
.header_btn.button .icon_r_arrow::after {
  display: none;
  background-image: url(../img/icon_arrow-blue.svg);
}

@media only screen and (min-width: 981px) {
  .header_btn.button {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: var(--noto-mid);
    line-height: 1;
    text-align: left;
    padding: 16px 16px 16px 24px;
    width: 277px;
  }

  .header_btn.button .icon_r_arrow {
    padding: 3px 32px 3px 0;
  }
  .header_btn.button .icon_r_arrow::after {
    display: block;
  }
}

/* ---------------------------------
  img style

  画像を入れる場合、divに以下のクラスを適用するなどして、利用してください。
  ---------------------------------*/
.img_box {
  width: 100%;
  height: auto;
}

.img_box img {
  width: 100%;
  height: auto;
}

.img_box figcaption {
  font-size: 10px;
  font-size: 1rem;
  color: var(--txt-color-second);
  margin-top: 8px;
}

.img_box + .appearance.attention_list {
  margin-top: 28px;
}

@media only screen and (min-width: 981px) {
  .img_box figcaption {
    text-align: right;
    margin-bottom: -8px;
  }
}

/*
  比率の設定
  他にもパターンを加える場合は、同じ要領で追記してください。
*/
/*1:1*/
.square:before {
  content: "";
  display: block;
  padding-top: 100%;
}

/*3:2*/
.hvga:before {
  content: "";
  display: block;
  padding-top: calc(100% * 2 / 3);
}

/*4:3*/
.sd:before {
  content: "";
  display: block;
  padding-top: calc(100% * 3 / 4);
}

/*16:9*/
.hd:before {
  content: "";
  display: block;
  padding-top: calc(100% * 9 / 16);
}

@media only screen and (min-width: 1024px) {
  /*
    比率の設定 pcのみ
    他にもパターンを加える場合は、同じ要領で追記してください。
  */
  /*1:1*/
  .pc_square:before {
    content: "";
    display: block;
    padding-top: 100%;
  }

  /*3:2*/
  .pc_hvga:before {
    content: "";
    display: block;
    padding-top: calc(100% * 2 / 3);
  }

  /*4:3*/
  .pc_sd:before {
    content: "";
    display: block;
    padding-top: calc(100% * 3 / 4);
  }

  /*16:9*/
  .pc_hd:before {
    content: "";
    display: block;
    padding-top: calc(100% * 9 / 16);
  }
}

/* ---------------------------------
  header style
  ---------------------------------*/

/* header レイアウト */
#header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;

  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
}

#header .img_box.logo {
  display: block;
  padding: 13px 4px 13px 16px;
  width: 228px;
  transition: all 0.5s;
}

#header .nav_box {
  width: calc(100% - 228px);
  padding: 4px 16px 0px 4px;
  transition: all 0.5s;
  text-align: right;
}

@media only screen and (min-width: 981px) {
  #header {
    min-width: 810px;
  }

  #header .img_box.logo {
    width: 480px;
    padding: 24px 16px 16px 32px;
  }

  #header .nav_box {
    width: calc(100% - 480px);
    padding: 16px 32px 0px 0px;
  }
}

/* ---------------------------------
  footer style
  ---------------------------------*/
.icon_link_txt {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  text-decoration: none;
}

.icon_link_txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon_arrow-right-small.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.icon_link_txt:hover {
  text-decoration: underline;
}

#footer .bg_box {
  background-image: url("../img/bg_dot.svg"), url("../img/section_footer_bg.svg");
  background-repeat: repeat, no-repeat;
  background-size: auto, 100% 100%;
  padding-top: 74px;
}

#footer .back_top {
  width: 84px;
  height: 35px;
  margin: 0 auto 16px auto;
}

#footer .back_top .back_top_link {
  display: block;
  position: relative;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  color: var(--txt-color);
}

#footer .back_top .back_top_link img {
  display: block;
  width: 58px;
  height: auto;
  margin: 0 auto;
}
#footer .back_top .back_top_link > img {
  position: absolute;
  top: 0px;
  left: calc(50% - 58px * 0.5);
}
#footer .back_top .back_top_link:hover > img {
  top: -8px;
}

#footer .back_top .back_top_link span {
  display: block;
  margin: 0 auto;
  padding-top: 17px;
  font-size: 10px;
  font-size: 1rem;
  white-space: nowrap;
}

#footer .copyright {
  padding: 20px 0;
  text-align: center;
}

#footer .layout.copyright_link {
  width: 100%;
}

#footer .layout.copyright_link > li {
  list-style: none;
}

#footer .copyright .icon_link_txt {
  font-size: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

#footer .copyright .copyright_txt {
  font-family: "Shippori Mincho", serif;
  color: var(--txt-color-second);
  font-size: 10px;
  font-size: 1rem;
  font-weight: var(--shippori-bold);
  letter-spacing: normal;
  margin: 0;
}

@media only screen and (min-width: 981px) {
  #footer .bg_box {
    background-image: url("../img/bg_dot.svg"), url("../img/section_footer_bg-pc.svg");
    padding-top: 132px;
  }

  #footer .copyright {
    width: calc(100% - 80px);
    margin: 0 auto;
  }

  #footer .copyright .layout.one_half {
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #footer .layout.copyright_link {
    margin: 0;
    justify-content: flex-end;
    width: auto;
  }

  #footer .layout.copyright_link > li {
    width: auto;
    margin-left: 30px;
  }

  #footer .copyright .link_txt {
    text-align: left;
    margin: 0;
  }

  #footer .copyright .copyright_txt {
    text-align: left;
  }
}

/* ---------------------------------
  breadcrumb style
  ---------------------------------*/
.breadcrumb_box {
  line-height: 1;
  text-align: left;
  font-size: 12px;
  font-size: 1.2rem;
}

.breadcrumb_box .breadcrumbs {
  min-height: 16px;
  white-space: nowrap;
  overflow-x: auto;
}

.breadcrumb_box .breadcrumbs a {
  position: relative;
  padding-right: 20px;
  margin-right: 10px;
  text-decoration: none;
}

.breadcrumb_box .breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumb_box .breadcrumbs a::after {
  position: absolute;
  right: 0;
  content: "/";
  display: inline-block;
}

.breadcrumb_box .breadcrumbs .current_item {
  color: var(--txt-color-second);
}

.breadcrumb_box + section {
  margin-top: 30px;
}

.breadcrumb_box + section.section_bgw {
  margin-top: calc(100px + 20px);
}

@media only screen and (min-width: 981px) {
  .breadcrumb_box {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .breadcrumb_box .breadcrumbs a {
    padding-right: 20px;
    margin-right: 10px;
  }

  .breadcrumb_box + section {
    margin-top: 60px;
  }

  .breadcrumb_box + section.section_bgw {
    margin-top: calc(187px + 60px);
  }
}

/* ---------------------------------
  section title style
  ---------------------------------*/
.section_title {
  font-family: "Shippori Mincho", serif;
  color: var(--txt-color);
  text-align: left;
  margin-bottom: 32px;
}

.section_title .sub_txt {
  display: inline-block;
  line-height: 1;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Shippori Mincho", serif;
  font-weight: var(--shippori-exbold);
  margin-bottom: 16px;
  padding: 0 16px;
  letter-spacing: normal;
  position: relative;
}

.section_title .sub_txt::before,
.section_title .sub_txt::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: solid 1px var(--txt-color);
  margin: 0 2px;

  position: absolute;
  top: calc(50% - 3px);
}

.section_title .sub_txt::before {
  left: 0;
}

.section_title .sub_txt::after {
  right: 0;
}

.section_title .main_txt {
  display: block;
  line-height: 1.5;
  font-size: 23px;
  font-size: 2.3rem;
  font-weight: var(--shippori-mid);
}

.section_title > * {
  margin: 0;
  line-height: 1;
}

@media only screen and (min-width: 981px) {
  .section_title .sub_txt {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 26px;
  }

  .section_title .sub_txt::before,
  .section_title .sub_txt::after {
    margin: 0 4px;
  }

  .section_title .main_txt {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.title_with_img {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: var(--noto-mid);
  line-height: 1.5;
  min-height: 50px;
  margin: 0 0 16px 0;

  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.title_with_img > img {
  display: block;
  line-height: 1;
  width: 57px;
  height: auto;
}

.title_with_img > .title_txt {
  display: block;
  width: calc(100% - 73px);
}

@media only screen and (min-width: 981px) {
  .title_with_img {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 0 40px 0;
  }
}

/* ---------------------------------
  section style
  ---------------------------------*/
main {
  overflow-x: hidden;
  overflow-y: hidden;
  min-width: 375px;
}

main.no_mt {
  margin-top: 0;
}

main.no_mb {
  margin-bottom: 0;
}

@media only screen and (min-width: 981px) {
  main {
  }
}

section {
  margin-top: 80px;
  margin-bottom: 100px;
}

@media only screen and (min-width: 981px) {
  section {
    margin-top: 170px;
    margin-bottom: 200px;
  }
}

/**/
section.section_bgw {
  background-color: var(--c-white);
  position: relative;
  margin-top: calc(100px + 80px);
  margin-bottom: calc(94px + 50px);
}

section.section_bgw.no_breadcrumb {
  margin-top: calc(100px + 20px);
}

section.section_bgw::before {
  display: block;
  content: "";
  height: 100px;
  width: 100%;
  background-image: url(../img/bg_dot.svg), url("../img/section_before_bg-sp.svg");
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  background-size: auto, 100% 100%;
  position: absolute;
  top: -100px;
  z-index: -1;
}

section.section_bgw::after {
  display: block;
  content: "";
  height: 94px;
  width: 100%;
  background-image: url(../img/bg_dot.svg), url("../img/section_after_bg-sp.svg");
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  background-size: auto, 100% 100%;
  position: absolute;
  bottom: -94px;
  z-index: -1;
}

section.section_bgw > .wrapper::before {
  content: "";
  display: block;
  background-image: url("../img/section_before_bg_deco.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 25px;
  height: 27px;
  position: absolute;
  left: 29%;
  top: -103px;
}

section.section_bgw > .wrapper::after {
  content: "";
  display: block;
  background-image: url("../img/section_after_bg_deco2.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 25px;
  height: 27px;
  position: absolute;
  right: 5%;
  bottom: -103px;
}

@media only screen and (min-width: 981px) {
  section.section_bgw {
    margin-top: calc(187px + 170px);
    margin-bottom: calc(212px + 70px);
  }

  section.section_bgw.no_breadcrumb {
    margin-top: calc(187px + 60px);
  }

  section.section_bgw::before {
    height: 187px;
    background-image: url(../img/bg_dot.svg), url("../img/section_before_bg.svg");
    position: absolute;
    top: -187px;
  }

  section.section_bgw::after {
    height: 212px;
    background-image: url(../img/bg_dot.svg), url("../img/section_after_bg.svg");
    bottom: -212px;
  }

  section.section_bgw > .wrapper::before {
    width: 31px;
    height: 33px;
    left: 46%;
    top: -183px;
  }

  section.section_bgw > .wrapper::after {
    width: 29px;
    height: 26px;
    right: 35%;
    bottom: -153px;
  }
}

/* ---------------------------------
  section_qa style
  ---------------------------------*/
.section_qa.layout .section_title {
  margin: 0 0 32px 0;
}

.section_qa.layout .section_contents {
  border-top: 1px solid rgba(110, 93, 110, 0.4);
  padding: 32px 0 0 0;
}

@media only screen and (min-width: 981px) {
  .section_qa.layout {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .section_qa.layout .section_title {
    margin: 0 50px 0 0;
    width: 163px;
  }

  .section_qa.layout .section_contents {
    width: calc(100% - 213px);
    border-top: none;
    border-left: 1px solid rgba(110, 93, 110, 0.4);
    padding: 0 0 0 50px;
  }
}

/* ---------------------------------
  section_img_list style
  ---------------------------------*/
.section_img_list_bg {
  background-image: url("../img/bg_dot.svg"), url("../img/section_img_list_bg.svg");
  background-size: auto, 100% calc(100% - 100px);
  background-repeat: repeat, no-repeat;
  background-position: top left, top 100px left;
  padding-bottom: 100px;
}

@media only screen and (min-width: 981px) {
  .section_img_list_bg {
    padding-top: 50px;
    padding-bottom: 0;
    background-image: url("../img/bg_dot.svg"), url("../img/section_img_list_bg-pc.svg");
    background-size: auto, 100% 100%;
    background-position: top left, top left;
  }
}

/* ---------------------------------
  section_one_point_bg style
  ---------------------------------*/
.section_one_point_bg {
  background-image: url("../img/bg_dot.svg"), url("../img/section_one_point_bg.svg");
  background-size: auto, 628px auto;
  background-repeat: repeat, no-repeat;
  background-position: left, -314px 0px;
  padding-top: 50px;
}

@media only screen and (min-width: 981px) {
  .section_one_point_bg {
    background-image: url("../img/bg_dot.svg"), url("../img/section_one_point_bg.svg");
    background-size: auto, 628px auto;
    background-position: left, calc(50% - 314px) 0px;
  }
}

/* ---------------------------------
  page_header style
  ---------------------------------*/
#page_header {
  position: relative;
  margin: 0;
  padding: 90px 0 83px 0;
  background-image: url(../img/bg_dot.svg), url("../img/section_page_header_bg-sp.svg");
  background-size: auto, 100% 100%;
  background-repeat: repeat, no-repeat;
}

#page_header::after {
  content: "";
  display: block;
  background-image: url(../img/section_page_header_bg_deco-sp.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 56px;
  height: 69px;
  position: absolute;
  right: 1%;
  bottom: -79px;
}

#page_header .section_title {
  margin-bottom: 0;
  min-height: 63px;
}

#page_header .section_title .main_txt {
  font-size: 26px;
  font-size: 2.6rem;
  max-width: 540px;
}

#page_header .section_title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: var(--noto-mid);
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 12px;
}

@media only screen and (min-width: 981px) {
  #page_header {
    margin: 0 0 40px 0;
    padding: 130px 0 100px 0;
    background-image: url(../img/bg_dot.svg), url("../img/section_page_header_bg.svg");
  }

  #page_header::after {
    background-image: url(../img/section_page_header_bg_deco.svg);
    width: 109px;
    height: 73px;
    position: absolute;
    right: 1%;
    bottom: 10px;
  }

  #page_header .section_title {
    min-height: 84px;
  }

  #page_header .section_title .main_txt {
    font-size: 36px;
    font-size: 3.6rem;
    max-width: none;
  }

  #page_header .section_title p {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 16px;
  }
}

/* ---------------------------------
  text style
  ---------------------------------*/

em {
  font-style: normal;
  font-weight: var(--noto-bold);
}

.recommended_text {
  font-weight: var(--noto-mid);
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (min-width: 981px) {
  .recommended_text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* ---------------------------------
  link style
  ---------------------------------*/

a {
  color: var(--txt-color-chocolate-brown);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a > img {
  transition: 0.3s;
}

a:hover > img {
  opacity: 0.8;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* ---------------------------------
  youtube style
  ---------------------------------*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================================================
  Helper classes
  ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

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

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
