/* =========================
   Reset / Normalize
========================= */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    margin: 0;
    word-wrap: break-word;
  }
  
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  menu,
  nav,
  section,
  summary {
    display: block;
  }
  
  audio,
  canvas,
  progress,
  video {
    display: inline-block;
    vertical-align: baseline;
  }
  
  audio:not([controls]) {
    display: none;
    height: 0;
  }
  
  [hidden],
  template {
    display: none;
  }
  
  a {
    background-color: transparent;
  }
  
  a:active,
  a:hover {
    outline: 0;
  }
  
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  b,
  strong {
    font-weight: 700;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  mark {
    background: #ff0;
    color: #000;
  }
  
  small {
    font-size: 80%;
  }
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sup {
    top: -0.5em;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  img {
    border: 0;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  figure {
    margin: 0;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
  }
  
  pre {
    overflow: auto;
  }
  
  code,
  kbd,
  pre,
  samp {
    font-family: monospace;
    font-size: 1em;
  }
  
  /* =========================
     Body Layout
  ========================= */
  
  body {
    font-size: 17px;
    background-color: #F4F4F4;
  
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
  
    -webkit-user-drag: none;
  }
  
  @media screen and (min-width: 920px) {
    body {
      width: 620px;
      margin: 0 auto;
    }
  }
  
  /* =========================
     Article
  ========================= */
  
  .article-body {
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    padding: 15px 20px;
    background-color: #fff;
  }
  
  .article-body span,
  .article-body p,
  .article-body div,
  .article-body h1,
  .article-body h2,
  .article-body h3,
  .article-body h4,
  .article-body h5,
  .article-body h6 {
    max-width: 100%;
  }
  
  /* =========================
     Text Utility
  ========================= */
  
  .sb-font-bold {
    font-weight: bold;
  }
  
  .sb-color-black { color:#000; }
  .sb-color-red { color:#ff0000; }
  .sb-color-blue { color:#0000ff; }
  
  .sb-align-left {
    display:block;
    text-align:left;
  }
  
  .sb-align-center {
    display:block;
    text-align:center;
  }
  
  .sb-align-right {
    display:block;
    text-align:right;
  }
  
  /* =========================
     Font Size Utility
  ========================= */
  
  .sb-fs-10 { font-size:10px }
  .sb-fs-13 { font-size:13px }
  .sb-fs-15 { font-size:15px }
  .sb-fs-17 { font-size:17px }
  .sb-fs-19 { font-size:19px }
  .sb-fs-21 { font-size:21px }
  .sb-fs-23 { font-size:23px }
  .sb-fs-25 { font-size:25px }
  .sb-fs-27 { font-size:27px }
  .sb-fs-29 { font-size:29px }
  
  /* =========================
     Image
  ========================= */
  
  .article-body img {
    display: block;
    max-width: 100%;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  
  .article-body img:not(.lazyload) {
    height: auto !important;
  }
  
  .article-body img.sb-fl {
    float: left;
    margin-right: 10px;
  }
  
  .article-body img.sb-fr {
    float: right;
    margin-left: 10px;
  }
  
  .article-body img.sb-fc {
    display: block;
    margin: 0 auto;
  }
  
  /* =========================
     Image Animation
  ========================= */
  
  .article-body img.sb-img-move-side {
    animation: sb_img_move_side 1s ease-in-out infinite alternate !important;
  }
  
  @keyframes sb_img_move_side {
    0% {
      transform: translateX(-5px);
    }
    100% {
      transform: translateX(5px);
    }
  }
  
  /* =========================
     Marker Highlight
  ========================= */
  
  .sb-bg-gum-marker,
  .sb-bg-gum-marker-animated {
    background: linear-gradient(to right, #ffee57 50%, transparent 50%) 100% 0% / 200% 70% no-repeat;
    transition: background-position 1s ease-out;
  }
  
  .sb-bg-gum-marker.animated,
  .sb-bg-gum-marker-animated.animated {
    background-position: bottom 0 right 100%;
  }
  
  /* =========================
     Comment Block
  ========================= */
  
  .article-body-comment {
    display: table;
    width: 100%;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
  }
  
  .article-body-comment .comment-image,
  .article-body-comment .comment-content {
    display: table-cell;
    vertical-align: top;
  }
  
  .article-body-comment .comment-image {
    padding-right: 1em;
  }
  
  .article-body-comment .comment-image img {
    display: block;
    margin: 0 !important;
    height: auto;
  }
  
  .article-body-comment .comment-content {
    width: 100%;
  }
  
  .article-body-comment .comment-title {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: .5em;
  }
  
  .article-body-comment p {
    line-height: 1.5em;
  }
  
  .comment-detail {
    color: rgba(51,51,51,.5);
    font-size: .9em;
    font-style: italic;
  }

	/* =========================
     個別
  ========================= */

  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area {
    width: 500px;
    max-width: 95%;
    height: auto;
    margin: 30px auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn {
    display: block;
    width: 100%;
    height: auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn img {
    width: 100%;
    height: auto;
    animation: puyoBtn 1.6s ease-in infinite;
  }
  
  @keyframes puyoBtn {
    0% {
      transform: scale(1.09);
    }
  
    40% {
      transform: scale(1);
    }
  
    60% {
      transform: scale(1);
    }
  
    70%,
    100% {
      transform: scale(1.09);
    }
  }

	#sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area {
    width: 100%;
    height: auto;
    font-size: 16px;
    border-width: 1px 2px 2px 1px;
    border-style: solid;
    border-color: #C7243A;
    border-radius: 10px;
    background-color: #fff;
  }
  
  @media screen and (max-width: 600px) {
    #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area {
      font-size: 12px;
    }
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__headBox {
    width: 100%;
    height: auto;
    background-color: #C7243A;
    padding: 0.3em 0;
    border-radius: 8px 8px 0 0;
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__headBox .head {
    font-size: 1.1em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0;
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area .items {
    padding: 0 1em;
    list-style: none;
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area .items li {
    font-weight: bold;
    font-size: 1.1em;
    padding-left: 1.5em;
    margin-top: 0.5em;
    position: relative;
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area .items li:before {
    content: '';
    width: 0.8em;
    height: 0.8em !important;
    display: block;
    border: 2px solid #C7243A;
    position: absolute;
    top: 0.2em;
    left: 0;
  }
  
  #sb-part-15208.sb-custom-part-ml7g1alxvc5t5lacc6 .listItem__area .items li:after {
    content: '';
    width: 0.8em;
    height: 0.3em !important;
    display: block;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #C7243A;
    transform: translateY(-50%) rotate(-50deg);
    position: absolute;
    top: 0.3em;
    left: 0.2em;
  }

	#sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation {
    font-size: 16px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
    padding-top: 2em;
    position: relative;
    width: fit-content;
    margin: auto;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-title::before {
    content: attr(data-title) "";
    position: absolute;
    font-size: 2.25em;
    opacity: 0.15;
    line-height: 1;
    font-weight: 700;
    left: -1.5em;
    bottom: 0.25em;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-content {
    margin: 0 2em;
    padding: 1em;
    border: solid 3px;
    border-radius: 10px;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-content li {
    line-height: 1.5;
    position: relative;
    padding-left: 2em;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-content li:not(:first-child) {
    margin-top: 0.75em;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-content li:not(:last-child) {
    border-bottom: dashed 2px;
    padding-bottom: 0.75em;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    background: url(https://file.mysquadbeyond.com/uploads/article_photo/photo/3036937/9622ec1b-45b1-43bf-8f24-75fd93eab588.png) no-repeat 0 0/contain;
    aspect-ratio: 1/1;
    width: 1.5em;
    display: block;
    margin: 0;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.good .evaluation-title {
    color: #ff5e5e;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.good .evaluation-content {
    border-color: #ff5e5e;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.good .evaluation-content li:not(:last-child) {
    border-color: #ff5e5e;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.more .evaluation-title {
    color: #1d6faa;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.more .evaluation-content {
    border-color: #1d6faa;
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation.more .evaluation-content li:not(:last-child) {
    border-color: #1d6faa;
  }
  
  @media (max-width: 500px) {
    #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation {
      font-size: 3.3vw;
    }
  
    #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-title::before {
      left: -.5em;
    }
  }
  
  #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl
  
  /* タイトルを1行に固定 */
  .evaluation-title {
    white-space: nowrap;
  }
  
  /* モバイルで少し縮める（必要なら数値を微調整） */
  @media (max-width: 500px) {
    #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-title {
      font-size: 1.1em;
    }
  
    #sb-part-11214.sb-custom-part-mkkpnphr6lr30sf2ypl .evaluation-title::before {
      font-size: 2em;
      /* 背景“Good”も少し縮小 */
      left: -.8em;
      /* かぶる場合だけ調整 */
    }
  }

	#sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .navigation-carousel {
    width: 600px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    background: #ebe5db;
    box-sizing: border-box;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .navigation-carousel .image {
    padding: 0;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .navigation-carousel .image img,
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .navigation-carousel .image video {
    width: 100%;
    margin: 0 !important;
    padding: 0;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0 0 60px;
    z-index: 1;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    transform: translate3d(0px, 0, 0);
    transition-property: transform;
    box-sizing: content-box;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-slide {
    background: #ffffff;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    transition-property: transform;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-controller-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    box-sizing: border-box;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-next,
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-prev {
    font-size: 40px;
    color: #ffffff;
    font-family: Sans-serif;
    line-height: 1;
    background: #000000;
    width: 1em;
    height: auto;
		aspect-ratio: 1/1;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    position: relative;
    transition: 0.1s background;
    cursor: pointer;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-disabled {
    color: #ffffff;
    background: #cccccc;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-prev::after,
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-next::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: -0.24em auto 0px 0.02em;
    box-sizing: border-box;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-prev::after {
    content: "\0ab";
  
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-button-next::after {
    content: "\0bb";
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-pagination {
    position: relative;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #ffffff;
    border: 1px solid #cccccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-pagination-bullet-active {
    background: #ff4500;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-pointer-events {
    touch-action: pan-y;
  }
  
  #sb-part-16548.sb-custom-part-mh1d9pcpfdjyb22tag .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }

	#sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .balloon {
    width: 100%;
    margin: 1.5em 0;
    overflow: visible;
    display: flex;
    flex-direction: row;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .faceicon {
    flex-basis: 55px;
    flex-shrink: 0;
    align-self: flex-end;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .faceicon img {
    width: 55px;
    max-width: 55px;
    height: 55px !important;
    object-fit: cover;
    /*アイコン周りの線。線の種類｜線の太さ｜線の色*/
    border: solid 3px #ffe6d9;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .outline-think {
    width: auto;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .think {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 12px;
    /*一番大きい吹き出しの背景色*/
    background-color: #ffe6d9;
    border-radius: 20px;
    margin-left: 50px;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .think::before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    /*中くらいの真ん中にある吹き出しの背景色*/
    background-color: #ffe6d9;
    left: -29px;
    top: 25%;
    width: 22px;
    height: 22px;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .think::after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    /*一番小さい吹き出しの背景色*/
    background-color: #ffe6d9;
    left: -45px;
    top: 50%;
    width: 12px;
    height: 12px;
  }
  
  #sb-part-1812.sb-custom-part-mkm00ki7k0gowna3r5d .think p {
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
  }

	#sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area {
    width: 100%;
    height: auto;
    font-size: 16px;
    border-width: 1px 2px 2px 1px;
    border-style: solid;
    border-color: #C7243A;
    border-radius: 10px;
    background-color: #fff;
  }
  
  @media screen and (max-width: 600px) {
    #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area {
      font-size: 12px;
    }
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__headBox {
    width: 100%;
    height: auto;
    background-color: #C7243A;
    padding: 0.3em 0;
    border-radius: 8px 8px 0 0;
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__headBox .head {
    font-size: 1.1em;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0;
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area .items {
    padding: 0 1em;
    list-style: none;
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area .items li {
    font-weight: bold;
    font-size: 1.1em;
    padding-left: 1.5em;
    margin-top: 0.5em;
    position: relative;
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area .items li:before {
    content: '';
    width: 0.8em;
    height: 0.8em !important;
    display: block;
    border: 2px solid #C7243A;
    position: absolute;
    top: 0.2em;
    left: 0;
  }
  
  #sb-part-15208.sb-custom-part-mixxen8gqotzf6ugg4 .listItem__area .items li:after {
    content: '';
    width: 0.8em;
    height: 0.3em !important;
    display: block;
    border-width: 0 0 2px 2px;
    border-style: solid;
    border-color: #C7243A;
    transform: translateY(-50%) rotate(-50deg);
    position: absolute;
    top: 0.3em;
    left: 0.2em;
  }

	#sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows {
    position: relative;
    /*widget自体の高さ*/
    height: 50px;
    /*widgetの上余白*/
    margin-top: 1em;
    /*widgetの下余白*/
    margin-bottom: 1em;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m
  
  /*一個目の矢印*/
  .cp_arrows .cp_arrowfirst {
    /*アニメーション設定。
     左からアニメーション名、動きの速さ（2s=2秒）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
    animation: arrow-move08 2s ease-in-out infinite;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m
  
  /*二個目の矢印*/
  .cp_arrows .cp_arrowsecond {
    /*アニメーション設定。
     左からアニメーション名、動きの速さ（2s=2秒）、開始時間（1s=1秒後）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
    animation: arrow-move08 2s 1s ease-in-out infinite;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m
  
  /*共通設定*/
  .cp_arrows .cp_arrow {
    position: absolute;
    /*矢印の到着位置　（縦位置）*/
    top: 100%;
    /*矢印の到着位置　（横位置）*/
    left: 45%;
    transform: translate(-50%, -50%);
    transform-origin: 50% 50%;
    /*透明度（0=透明、1=不透明）*/
    opacity: 0;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .content :first-child {
    margin-top: 0;
  }
  
  @keyframes arrow-move08 {
  
    /*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
    0% {
      top: 40%;
      opacity: 0;
    }
  
    /*2sの70％（1.7秒）時に不透明になる*/
    70% {
      opacity: 1;
    }
  
    /*2s（2秒）時に透明になる*/
    100% {
      opacity: 0;
    }
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows .cp_arrow:before {
    /*矢印左の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
    transform: rotate(30deg) translateX(-39%);
    /*矢印左の棒の起点。（top left=左上）*/
    transform-origin: top left;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows .cp_arrow:after {
    /*矢印右の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
    transform: rotate(-30deg) translateX(39%);
    /*矢印右の棒の起点。（top right=右上）*/
    transform-origin: top right;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows .cp_arrow:before,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows .cp_arrow:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    /*矢印の棒の横の長さ*/
    width: 40px;
    /*矢印の棒の縦の長さ*/
    height: 3px;
    content: '';
    /*矢印の色*/
    background: #E91E63;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *:before,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *:before,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .cp_arrows *:after {
    box-sizing: border-box;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m content div:after,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .content p:after {
    clear: both;
  }
  
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .content div :after,
  #sb-part-1449.sb-custom-part-miwr4xesqr9uybohv0m .content p:after {
    display: block;
    content: "";
    clear: both;
  }

	#sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .balloon {
    width: 100%;
    margin: 1.5em 0;
    overflow: visible;
    display: flex;
    flex-direction: row;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .faceicon {
    flex-basis: 55px;
    flex-shrink: 0;
    align-self: flex-end;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .faceicon img {
    width: 55px;
    max-width: 55px;
    height: 55px !important;
    object-fit: cover;
    /*アイコン周りの線。線の種類｜線の太さ｜線の色*/
    border: solid 3px #ffe6d9;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .outline-think {
    width: auto;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .think {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 12px;
    /*一番大きい吹き出しの背景色*/
    background-color: #ffe6d9;
    border-radius: 20px;
    margin-left: 50px;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .think::before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    /*中くらいの真ん中にある吹き出しの背景色*/
    background-color: #ffe6d9;
    left: -29px;
    top: 25%;
    width: 22px;
    height: 22px;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .think::after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    /*一番小さい吹き出しの背景色*/
    background-color: #ffe6d9;
    left: -45px;
    top: 50%;
    width: 12px;
    height: 12px;
  }
  
  #sb-part-1812.sb-custom-part-mixugrrel5pmcgafx9 .think p {
    margin: 0;
    padding: 0;
    letter-spacing: -0.01em;
  }

	#sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area {
    width: 500px;
    max-width: 95%;
    height: auto;
    margin: 30px auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn {
    display: block;
    width: 100%;
    height: auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn img {
    width: 100%;
    height: auto;
    animation: puyoBtn 1.6s ease-in infinite;
  }
  
  @keyframes puyoBtn {
    0% {
      transform: scale(1.09);
    }
  
    40% {
      transform: scale(1);
    }
  
    60% {
      transform: scale(1);
    }
  
    70%,
    100% {
      transform: scale(1.09);
    }
  }

	#sb-part-811.sb-custom-part-mi8gpifqb0oqqjegjkh h2 {
    color: #fff;
    padding: 0.5rem 1rem;
    background-image: linear-gradient(to right, #0072ff 0%, #00c6ff 100%);
    letter-spacing: 0.05em;
  }

	#sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box {
    /* 背景色 */
    background: #fffde7;
    /* ボーダー|太さ|タイプ|色| */
    border: solid 2px #ffd54f;
    border-radius: 5px;
    margin: 25px 0 25px 0;
    position: relative;
    padding: 0 20px;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .ttl {
    color: #ffd54f;
    font-weight: bold;
    text-shadow: #fff 3px 0px 0px, #fff 2.83487px 0.981584px 0px, #fff 2.35766px 1.85511px 0px, #fff 1.62091px 2.52441px 0px, #fff 0.705713px 2.91581px 0px,
      #fff -0.287171px 2.98622px 0px, #fff -1.24844px 2.72789px 0px, #fff -2.07227px 2.16926px 0px, #fff -2.66798px 1.37182px 0px, #fff -2.96998px 0.42336px 0px,
      #fff -2.94502px -0.571704px 0px, #fff -2.59586px -1.50383px 0px, #fff -1.96093px -2.27041px 0px, #fff -1.11013px -2.78704px 0px,
      #fff -0.137119px -2.99686px 0px, #fff 0.850987px -2.87677px 0px, #fff 1.74541px -2.43999px 0px, #fff 2.44769px -1.73459px 0px,
      #fff 2.88051px -0.838246px 0px;
    background: linear-gradient(0deg, #fffde7 0%, #fffde7 55%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  
    position: relative;
    display: inline-block;
    top: -0.8em;
    left: -10px;
    padding: 0 10px;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 10px;
    z-index: 1;
    box-sizing: border-box;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .ttl:after {
    position: absolute;
    display: inline-block;
    top: calc(0.8em - 11px);
    left: 0;
    background: #ffffff;
    content: "";
    width: 100%;
    height: 11px;
    z-index: -1;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_cont {
    padding: 0 0 20px;
    z-index: -2;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_cont_inner {
    margin: 0;
    padding: 0;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_list {
    padding: 0;
    margin: 0;
    bottom: 0;
    list-style-type: none;
    z-index: -2;
    box-sizing: border-box;
    max-width: 100%;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_list li {
    list-style-type: none;
    padding-left: 2.25em;
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    position: relative;
    margin: 0;
    font-size: 15px;
    line-height: 1.5em !important;
    color: #333;
    line-height: 22.5px;
    font-weight: bold;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_list li .red {
    color: #ff0000;
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_list li:before {
    background: #3880ff;
    color: #ffffff;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    color: #333;
    box-sizing: border-box;
    left: 0.25em;
    position: absolute;
    transform: scale(0.8);
    content: "";
  }
  
  #sb-part-3392.sb-custom-part-mih2nw0ghfla4ajjsng .box .box_list li:after {
    content: "";
    background: url(https://file.mysquadbeyond.com/uploads/article_photo/photo/864303/f0c027b4-cb57-4e52-be8a-41fe135572bc.png) no-repeat center/ contain;
    width: 0.9em;
    height: 0.7em;
    left: 0.55em;
    top: 1em;
    position: absolute;
    transform: translateY(-50%);
  }

	#sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area {
    width: 500px;
    max-width: 95%;
    height: auto;
    margin: 30px auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn {
    display: block;
    width: 100%;
    height: auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn img {
    width: 100%;
    height: auto;
    animation: puyoBtn 1.6s ease-in infinite;
  }
  
  @keyframes puyoBtn {
    0% {
      transform: scale(1.09);
    }
  
    40% {
      transform: scale(1);
    }
  
    60% {
      transform: scale(1);
    }
  
    70%,
    100% {
      transform: scale(1.09);
    }
  }

	#sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area {
    width: 500px;
    max-width: 95%;
    height: auto;
    margin: 30px auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn {
    display: block;
    width: 100%;
    height: auto;
  }
  
  #sb-part-10214.sb-custom-part-mi8g4j9ttsfdztkxv5 .puyoBtn__area .btn img {
    width: 100%;
    height: auto;
    animation: puyoBtn 1.6s ease-in infinite;
  }
  
  @keyframes puyoBtn {
    0% {
      transform: scale(1.09);
    }
  
    40% {
      transform: scale(1);
    }
  
    60% {
      transform: scale(1);
    }
  
    70%,
    100% {
      transform: scale(1.09);
    }
  }
	#sb-part-3428.sb-custom-part-mgacoisqbvysp2p4di .box {
    background-color: #0b2347;
    /* ネイビー */
    color: #ffffff;
    border-radius: 3px;
    padding: 1em;
    border: 1px solid #081a34;
    /* ネイビーより少し濃い枠 */
    box-sizing: border-box;
  }
  
  #sb-part-3428.sb-custom-part-mgacoisqbvysp2p4di .box p {
    font-weight: bold;
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
  }
  
  #sb-part-3428.sb-custom-part-mgacoisqbvysp2p4di .box p a {
    color: #ffffff;
    text-decoration: none;
  }
  
  #sb-part-3428.sb-custom-part-mgacoisqbvysp2p4di .box p a:hover {
    text-decoration: underline;
  }

	body {
  }
  
	.article-body {
		font-size: 17px !important;
		font-family: Hiragino Sans, Arial, sans-serif !important;
		color: #000000 !important;
		line-height: 1.8 !important;    
		padding-top: 15px !important;
		padding-bottom: 15px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
  }
  
  body .article-body iframe {
  }
  
	body .article-body img {
		display: unset !important;
		margin-top: 0px !important;	
		margin-bottom: 0px !important;
	}
  
	body .article-body video {
		display: unset !important;
		height: auto !important;
    max-width: 100%;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
	}
  
	body .article-body .sb-custom  {
		font-size: 17px !important;
		font-family: Hiragino Sans, Arial, sans-serif !important;
		color: #000000 !important;
		line-height: 1.8 !important;
	}

	body .article-body .sb-custom img {
		margin-top: 0px !important;
		margin-bottom: 0px !important;
	}
  