@charset "UTF-8";
/* 【必要であれば読み込む】Google fonts : Noto Sans JP */
@import "https://fonts.googleapis.com/css?family=Noto+Sans+JP";
/* 【必要であれば読み込む】Web Icon Fonts : FontAwesome */
@import "https://use.fontawesome.com/releases/v5.8.2/css/all.css";

/***************************************

Reset CSS:ver1.0

***************************************/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,
del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,
label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,
figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  cursor: default;
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #F7F7F8;
  color: #333;
  font: 16px/400 -apple-system, BlinkMacSystemFont, Hiragino Sans, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic ProN, YuGothic, 'Yu Gothic', 'メイリオ', meiryo, sans-serif;
  height: 100%;
  margin: 0 auto;
  letter-spacing: .05rem;
  line-height: 1.5;
  width: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul,
nav ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  background: transparent;
  color: #0044CC;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration-skip: objects;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

em {
  padding: 0.2em;
  font-weight: bold;
  display: inline;
  font-style: normal;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #333;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #333;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* smart phone default style reset */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* select box , checkboxの矢印を非表示 */
select::-ms-expand {
  display: none;
}

input[type="submit"]:hover {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 10px;
  border: 1px solid #D3D3D3;
  background: #F7F7F7;
}

input:focus,
textarea:focus {
  background: #fffbc9;
}

input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="image"] {
  height: auto;
  width: 100%;
}

/* placeholder color */
input::placeholder {
  color: #333;
  opacity: 0.7;
}

/* IE */
input:-ms-input-placeholder {
  color: #333;
}

/* Edge */
input::-ms-input-placeholder {
  opacity: 0.7;
}

/* テキストを選択時時のハイライトカラー */
::-moz-selection {
  background-color: #93C1E5;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #93C1E5;
  color: #fff;
  text-shadow: none;
}


/***************************************

COMMON

***************************************/
/* --------------------
LAYOUT
-------------------- */
.wrap {
  margin: 0 10px;
}

article {
  background: #fff;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 0 auto;
  max-width: 640px;
  padding: 1px 0;
  width: 100%;
}

/* --------------------
FONT
-------------------- */
/* web font */
.wf-noto {
  font-family: "Noto Sans JP";
}

p {
  font-size: 16px;
  line-height: 2;
  margin: 20px 0 0;
}

/* font decoration */
.bold {
  font-weight: bold;
}

.big {
  font-size: 20px;
}

.red {
  color: #f00;
}

.gray {
  color: #8a8a8a;
}

.yellow-line {
  background: #fff9ba;
}

.yellow-line-2 {
  padding: 5px 20px;
  border-top: 3px solid #fff9ba;
  border-bottom: 3px solid #fff9ba;
}

.white {
  color: #fff;
}


/***************************************

PR

***************************************/
.pr {
  color: #aaa;
  font-size: 12px;
  padding: 10px 0;
  text-align: right;
}


/***************************************

TITLE

***************************************/
.m__title {
  border-bottom: 1px dashed #8e8e8e;
  border-left: 10px solid #ffe37f;
  color: #333;
  font-size: 36px;
  font-size: 4.8vmin;
  font-weight: bold;
  line-height: 1.4;
  margin: 40px 0 20px;
  padding: 0.9em 10px;
}

@media screen and (min-width: 641px) {
  .m__title {
    font-size: 22px;
    margin: 40px 0 20px;
  }
}

/***************************************

talk

***************************************/
.talk_img {
  margin: 5px 0 0;
}

.talk_text {
  text-align: center;
  margin: 20px 0;
}


/***************************************

voice

***************************************/
.voice .voice_annotation {
  display: block;
  font-size: 12px;
  text-align: right;
}


/***************************************

reason

***************************************/
.reason {
  position: relative;
}

.reason_img {
  margin: 20px 0 0;
}

.reason_list {
  background: #fffde7;
  border: solid 2px #ffd54f;
  border-radius: 5px;
  list-style: none;
  margin: 30px 0 25px 0;
  position: relative;
  padding: 20px 20px 20px 40px;
}

.reason_list::before {
  background: #fff;
  content: 'ポイント';
  color: #ffd54f;
  position: absolute;
  padding: 0 10px;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, -1px 0 0 #fff, 0 -1px 0 #fff;
  top: -18px;
  left: 10px;
}

.reason_list .list_item {
  font-weight: bold;
  position: relative;
  margin: 0 0 10px;
}

.reason_list .list_item:last-child {
  margin: 0;
}

.reason_list .list_item::before {
  content: '\f058';
  color: #5174ff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: -20px;
}

/***************************************

sim

***************************************/
.sim_footer {
  margin: 40px 20px;
}

.sim_footer .footer_item {
  text-align: right;
  margin: 0;
  line-height: 2;
  font-size: 14px;
}

.sim_form .form_title {
  background: #0B6418;
  text-align: center;
  line-height: 3;
  padding: 30px 0 20px;
}

.sim_form .form_img {
  margin: 0;
}

/* --------------------
入力フォーム
-------------------- */

.questionnaire_area p {
  color: #353535;
  font-size: 16px;
  line-height: 2;
  margin: 30px 10px 0 10px;
}

.questionnaire_area img {
  display: block;
  margin: 0;
  padding: 0px;
  width: 100%;
}

.questionnaire_area em {
  display: inline;
  font-style: normal;
  font-weight: bold;
  padding: 0.2em;
}

.questionnaire_area footer {
  background: #00234c;
  margin: 0 auto;
  text-align: center;
  width: 640px;
}

.questionnaire_area footer div {
  display: inline-block;
  margin: 10px 0 10px;
  padding: 0px 10px;
}

.questionnaire_area footer div:nth-of-type(2) {
  border-left: 1px solid #fff;
}

.questionnaire_area footer div a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.questionnaire {
  background: #dbe3f0;
  padding: 16px;
  position: relative;
  margin: 0;
}

.questionnaire__wrapper {
  background: #fff;
  box-sizing: border-box;
  padding: 32px 48px 0;
}

.questionnaire__title {
  background: #31b2d0;
  border-radius: 4px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  padding: 8px 0;
  text-align: center;
}

.questionnaire__inner {
  margin: 0 auto;
  position: relative;
}

.questionnaire__2col {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
}

.questionnaire__item {
  margin-bottom: 20px;
}

.questionnaire__item:last-child {
  margin-bottom: 0;
}

.questionnaire__2col .questionnaire__item {
  flex: 0 1 50%;
  margin: 0;
}

.questionnaire__head {
  align-items: center;
  display: flex;
}

.q .questionnaire__balloon {
  display: inline-block;
  margin: 0 8px 0 0;
  vertical-align: top;
  width: 42px;
}

.q .questionnaire__question {
  font-size: 16px;
  margin: 2px auto 2px 0;
}

.questionnaire__question span {
  color: #696969;
  font-size: 12px;
  font-weight: 500;
}

.questionnaire__note_box {
  position: relative;
}

.q .questionnaire__note {
  color: #6a6a6a;
  display: block;
  font-size: 60%;
  font-weight: 500;
  left: 0;
  margin: 0;
  min-width: 180px;
  position: absolute;
  top: 100%;
}

/* --------------------
借入金額入力
-------------------- */

.q .questionnaire__debt_text {
  align-items: flex-end;
  display: flex;
  margin: 0;
  text-align: center;
}

.questionnaire__debt_unit {
  font-weight: 700;
  padding-left: 0.5em;
  white-space: nowrap;
}

.questionnaire__debt_inner {
  display: block;
}

.questionnaire__debt_total em {
  display: block;
}

input.questionnaire__input,
.questionnaire .questionnaire__debt_total input.questionnaire__debt_input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #a8a8a8;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  padding: 14px 8px;
  width: 100%;
  background: #fff;
}

.questionnaire__input::-moz-placeholder {
  color: #ccc;
}

.questionnaire__input:-ms-input-placeholder {
  color: #ccc;
}

.questionnaire__input::-ms-input-placeholder {
  color: #ccc;
}

.questionnaire__input::placeholder {
  color: #ccc;
}

.questionnaire .questionnaire__debt_total input.questionnaire__debt_input {
  max-width: 160px;
}

.questionnaire .questionnaire__debt_total input.questionnaire__debt_input+span {
  padding: 0;
}

input.questionnaire__input,
.questionnaire .questionnaire__debt_total input.questionnaire__debt_input+span::before {
  content: none;
}

/* --------------------
質問内電話番号
-------------------- */

.questionnaire__tel {
  align-items: center;
  display: flex;
  max-width: 100%;
}

.questionnaire__tel input.questionnaire__input {
  margin: 0 0 0 10px;
  width: 100px;
}

/* --------------------
セレクトボックス
-------------------- */

.questionnaire__select_box,
.questionnaire__select_box--pref,
.questionnaire__select_box--tel {
  margin: 0;
  position: relative;
  text-align: center;
  width: 100%;
}


.questionnaire__select_box--pref select,
.questionnaire__select_box select,
.questionnaire__select_box--tel select {
  color: #363636;
}

.questionnaire__select_box--tel {
  max-width: 100px;
}

.questionnaire__select_box:after,
.questionnaire__select_box--pref:after,
.questionnaire__select_box--tel:after {
  border: none;
  border-bottom: 2px solid #4b4b4b;
  border-right: 2px solid #4b4b4b;
  bottom: calc(50% - 3px);
  content: '';
  display: block;
  height: 5px;
  margin: auto;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: rotate(45deg) translate(0, -50%);
  width: 5px;
}

.questionnaire__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 2px solid #a8a8a8;
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  height: 50px;
  padding: 0.5em;
  width: 100%;
}

.questionnaire__select:disabled {
  background-color: orange;
  border: 1px solid black;
  color: blue;
}

@media screen and (max-width: 30em) {
  .questionnaire {
    padding: 8px;
  }

  .questionnaire__balloon {
    width: 20%;
  }

  .questionnaire__question {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
  }
}


/* --------------------
ボタン
-------------------- */
.qform__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: none;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  padding: 0 0 20px;
  width: 100%;
}

.qform__button img {
  transform: scale(1);
  transition: 0.3s cubic-bezier(0.78, 0.76, 0.28, 0.98);
}

.qform__button img:hover {
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  top: 3px;
  transform: scale(0.98);
}

@media screen and (max-width: 640px) {
  .questionnaire__wrapper {
    padding: 10px;
  }

  .questionnaire__2col {
    display: block;
    margin: 0;
  }

  .questionnaire__2col .questionnaire__item {
    margin: 0 0 20px;
  }
}

/***************************************

arrow（矢印）

***************************************/
.arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -10px 0 0;
  padding: 10px 0 20px;
}

.arrow_item {
  width: 40px;
  height: 40px;
  border-bottom: 3px solid #ffd54f;
  border-right: 3px solid #ffd54f;
  transform: rotate(45deg);
  animation: move 2s infinite;
  margin: -20px 0 0;
}

@for $i from 1 through 2 {
  .arrow:nth-child(#{$i + 1}) {
    animation-delay: 0.15 * $i + s;
  }
}

@keyframes move {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(40px) rotate(45deg);
  }
}

.note {
  text-align: right;
  font-size: 12px;
  color: #828282;
}

p.is_privacy_read_text {
  margin: 20px 0;
  text-align: center;
  font-size: 12px;
}

.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.checkbox:before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 14px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 14px;
}

.checkbox:after {
  border-right: 3px solid #06b5b5;
  border-bottom: 3px solid #06b5b5;
  content: '';
  display: block;
  height: 9px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked+.checkbox:after {
  opacity: 1;
}


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;
}

mark {
  background: #ff0;
  color: #000
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sup {
  top: -.5em
}

sub {
  bottom: -.25em
}

img {
  border: 0
}

svg:not(:root) {
  overflow: hidden
}

figure {
  margin: 0
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0
}

pre {
  overflow: auto
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /*font: inherit;*/
  margin: 0
}

button {
  overflow: visible
}

button,
select {
  text-transform: none
}

button,
html input [ type="button"
],
/* 1 */

body {
  font-size: 17px;
  background-color: #F4F4F4;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

@media screen and (min-width: 920px) {
  body {
    width: 620px;
    margin: 0 auto;
  }
}

body .article-header-wrapper img {
  max-width: 100%;
}

body .article-body {
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  background-color: #ffffff;
  font-family: Hiragino Sans, Arial, sans-serif !important;
}

body .article-body h1,
body .article-body h2,
body .article-body h3,
body .article-body h4,
body .article-body h5,
body .article-body h6 {
  max-width: 100%;
}


body .article-body .sb-font-bold {
  font-weight: bold;
}

body .article-body .sb-color-black {
  color: #000;
}

body .article-body .sb-color-red {
  color: #ff0000;
}

body .article-body .sb-color-blue {
  color: #0000ff;
}

body .article-body .sb-align-left {
  display: block;
  text-align: left;
}

body .article-body .sb-align-center {
  display: block;
  text-align: center;
}

body .article-body .sb-align-right {
  display: block;
  text-align: right;
}

body .article-body .sb-bg-gray {
  background: linear-gradient(to right, #eee 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #eee 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-white {
  background: linear-gradient(to right, #fff 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #fff 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-black {
  background: linear-gradient(to right, #000 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #000 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-red {
  background: linear-gradient(to right, red 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, red 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-green {
  background: linear-gradient(to right, lime 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, lime 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-yellow {
  background: linear-gradient(to right, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-blue {
  background: linear-gradient(to right, blue 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, blue 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out;
  background-position: bottom 0 right 100%
}

body .article-body .sb-fs-10 {
  font-size: 10px
}

body .article-body .sb-fs-13 {
  font-size: 13px
}

body .article-body .sb-fs-15 {
  font-size: 15px
}

body .article-body .sb-fs-17 {
  font-size: 17px
}

body .article-body .sb-fs-19 {
  font-size: 19px
}

body .article-body .sb-fs-21 {
  font-size: 21px
}

body .article-body .sb-fs-23 {
  font-size: 23px
}

body .article-body .sb-fs-25 {
  font-size: 25px
}

body .article-body .sb-fs-27 {
  font-size: 27px
}

body .article-body .sb-fs-29 {
  font-size: 29px
}

body .article-body a {
  color: #000
}

body .article-body iframe {
  display: block;
  max-width: 100%;
  margin-top: 20px !important;
  margin-bottom: 20px !important
}

body .article-body video {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important
}

body .article-body img.sb-fl {
  float: left;
  margin-right: 10px
}

body .article-body img.sb-fc {
  display: block;
  float: none;
  margin: 0 auto
}

body .article-body img.sb-fr {
  float: right;
  margin-left: 10px
}

body .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)
  }
}

body .article-body .sb-bg-gum-marker,
body .article-body .sb-bg-gum-marker-animated {
  background: linear-gradient(to right, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.animated,
body .article-body .sb-bg-gum-marker-animated.animated {
  background-position: bottom 0 right 100% !important
}

body .article-body .sb-bg-gum-marker.sb-bg-gray,
body .article-body .sb-bg-gum-marker-animated.sb-bg-gray {
  background: linear-gradient(to right, #eee 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #eee 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-gray.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-gray.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-white,
body .article-body .sb-bg-gum-marker-animated.sb-bg-white {
  background: linear-gradient(to right, #fff 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #fff 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-white.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-white.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-black,
body .article-body .sb-bg-gum-marker-animated.sb-bg-black {
  background: linear-gradient(to right, #000 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #000 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-black.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-black.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-red,
body .article-body .sb-bg-gum-marker-animated.sb-bg-red {
  background: linear-gradient(to right, red 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, red 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-red.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-red.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-green,
body .article-body .sb-bg-gum-marker-animated.sb-bg-green {
  background: linear-gradient(to right, lime 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, lime 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-green.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-green.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-yellow,
body .article-body .sb-bg-gum-marker-animated.sb-bg-yellow {
  background: linear-gradient(to right, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, #ffee57 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-yellow.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-yellow.animated {
  background-position: bottom 0 right 100%
}

body .article-body .sb-bg-gum-marker.sb-bg-blue,
body .article-body .sb-bg-gum-marker-animated.sb-bg-blue {
  background: linear-gradient(to right, blue 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  background: -webkit-linear-gradient(left, blue 50%, transparent 50%) 100% 0%/200% 70% no-repeat;
  transition: background-position 1s ease-out;
  -webkit-transition: background-position 1s ease-out
}

body .article-body .sb-bg-gum-marker.sb-bg-blue.animated,
body .article-body .sb-bg-gum-marker-animated.sb-bg-blue.animated {
  background-position: bottom 0 right 100%
}

body .article-body .article-body-comment {
  display: table;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  width: 100% !important;
  max-width: 100% !important
}

body .article-body .article-body-comment .comment-image,
body .article-body .article-body-comment .comment-content {
  display: table-cell;
  vertical-align: top
}

body .article-body .article-body-comment .comment-image {
  padding-right: 1em
}

body .article-body .article-body-comment .comment-image>img {
  display: block;
  height: auto;
  max-width: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important
}

body .article-body .article-body-comment .comment-content {
  width: 100%
}

body .article-body .article-body-comment .comment-content .comment-title {
  font-size: 1em;
  margin: 0 0 0.5em 0;
  font-weight: bold
}

body .article-body .article-body-comment .comment-content p {
  line-height: 1.5em;
  margin-bottom: 0.5em
}

body .article-body .article-body-comment .comment-content p.comment-detail {
  color: rgba(51, 51, 51, 0.5);
  font-size: 0.9em;
  font-style: italic
}

body .article-body .sb-custom img {
  display: block !important
}

body .article-body .sb-form iframe {
  height: 0;
  margin: 0 auto !important
}

body .article-body video {
  display: unset !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;
}




#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .purupuru {
  animation: purupuru 2s linear 0s infinite;
}

@keyframes purupuru {
  0% {
    transform: skew(9deg);
  }

  10% {
    transform: skew(-8deg);
  }

  20% {
    transform: skew(7deg);
  }

  30% {
    transform: skew(-6deg);
  }

  40% {
    transform: skew(5deg);
  }

  50% {
    transform: skew(-4deg);
  }

  60% {
    transform: skew(3deg);
  }

  70% {
    transform: skew(-2deg);
  }

  80% {
    transform: skew(1deg);
  }

  90% {
    transform: skew(0deg);
  }

  100% {
    transform: skew(0deg);
  }
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .animate69 {
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  text-align: center;
  float: none;
  -webkit-animation-name: animate69;
  -moz-animation-name: animate69;
  -o-animation-name: animate69;
  animation-name: animate69;
  animation-duration: 1s !important;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -moz-animation-duration: 1s !important;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM a.a-btn {
  position: relative;
  display: inline-block;
  margin: auto;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: none;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .a-btn69 {
  padding-left: 1% !important;
  max-width: 100% !important;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM img {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  width: 500px;
  height: auto;
}

@-moz-keyframes animate69 {
  0% {
    -moz-transform: skewX(9deg);
  }

  10% {
    -moz-transform: skewX(-8deg);
  }

  20% {
    -moz-transform: skewX(7deg);
  }

  30% {
    -moz-transform: skewX(-6deg);
  }

  40% {
    -moz-transform: skewX(5deg);
  }

  50% {
    -moz-transform: skewX(-4deg);
  }

  60% {
    -moz-transform: skewX(3deg);
  }

  70% {
    -moz-transform: skewX(-2deg);
  }

  80% {
    -moz-transform: skewX(1deg);
  }

  90% {
    -moz-transform: skewX(0deg);
  }

  100% {
    -moz-transform: skewX(0deg);
  }
}

@-o-keyframes animate69 {
  0% {
    -o-transform: skewX(9deg);
  }

  10% {
    -o-transform: skewX(-8deg);
  }

  20% {
    -o-transform: skewX(7deg);
  }

  30% {
    -o-transform: skewX(-6deg);
  }

  40% {
    -o-transform: skewX(5deg);
  }

  50% {
    -o-transform: skewX(-4deg);
  }

  60% {
    -o-transform: skewX(3deg);
  }

  70% {
    -o-transform: skewX(-2deg);
  }

  80% {
    -o-transform: skewX(1deg);
  }

  90% {
    -o-transform: skewX(0deg);
  }

  100% {
    -o-transform: skewX(0deg);
  }
}

@-webkit-keyframes animate69 {
  0% {
    -webkit-transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
  }
}

@keyframes animate69 {
  0% {
    transform: skewX(9deg);
  }

  10% {
    transform: skewX(-8deg);
  }

  20% {
    transform: skewX(7deg);
  }

  30% {
    transform: skewX(-6deg);
  }

  40% {
    transform: skewX(5deg);
  }

  50% {
    transform: skewX(-4deg);
  }

  60% {
    transform: skewX(3deg);
  }

  70% {
    transform: skewX(-2deg);
  }

  80% {
    transform: skewX(1deg);
  }

  90% {
    transform: skewX(0deg);
  }

  100% {
    transform: skewX(0deg);
  }
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon-wrap {
  text-align: center;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon {
  font-size: 1.2em;
  position: relative;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin-top: 2em;
}

@media (max-width : 619px) {
  #sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon {
    font-size: 4vw;
  }
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .baloon {
  font-weight: 700;
  color: #134791;
  position: absolute;
  top: -2.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  border-radius: 1.5em;
  padding: 0.6em 1em;
  white-space: nowrap;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .baloon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.5em;
  border: 0.5em solid transparent;
  border-top: 0.5em solid #fff;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .baloon .js-count {
  font-size: 1em;
  margin: 0 0 -0.4em;
  display: inline-block;
  width: 1em;
  height: 1.2em;
  background:
    url(https://production.static.squadbeyond.com/uploads/article_photo/photo/516021/73e7ae98-fd7a-4eb3-93cd-8c26f0552b39.png) #000 no-repeat;
  background-size: cover;
  background-position: top left 90%;
  border: 4px solid #000;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .baloon .yen {
  font-size: 0.8em;
  color: #000;
  vertical-align: sub;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .btn {
  font-size: 2em;
  font-weight: 700;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  background: #ff126e;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff126e),
      to(#fd0131));
  background: linear-gradient(to bottom, #ff126e 0%, #fd0131 100%);
  border-bottom: 5px solid #cb012a;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.8em 1.2em 0.6em;
  border-radius: 0.5em;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon .btn::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.4em -0.1em 0;
  background:
    url(https://production.static.squadbeyond.com/uploads/article_photo/photo/516023/8f9995cd-c946-4897-ab3f-205299fcb3eb.png) center center no-repeat;
  background-size: contain;
}

#sb-part-1680.sb-custom-part-EiBE1rQWGaGMBwjM .link-btn-baloon:hover .btn {
  margin-top: 3px;
  border-bottom: 2px solid #cb012a;
}




#sb-part-2747.sb-custom-part-CD00iLz8FNLeqGr7 #sample02 {
  width: 800px;
  font-size: 1.5em;
  margin: 0 auto;
  font-family: sans-serif;
  color: #5f5f5f;
  background-color: #f7f7f7;
  border-left: 10px solid #ff7e00;
  border-bottom: 1px solid #ff7e00;
  white-space: nowrap;
  padding-left: 5px;
}




#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .underline-animation {
  font-size: 18px;
  padding-bottom: 0.0em;
  background: linear-gradient(#e25ad7, #e25ad7) 0 100%/0 3px no-repeat;
  transition: background 2s;
  line-height: 1.8;
  font-weight: normal;
  background-position: 25px bottom;
  text-decoration: none;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .underline-animation.isActive {
  background-size: 80% 3px;
  background-position: 25px bottom;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group {
  max-width: 100%;
  width: 100%;
  border: 2px solid #ff7e00;
  border-radius: 5px;
  background-color: #ffffff;
  margin: 20px auto 0;
  padding: 0 20px 20px;
  position: relative;
  box-sizing: border-box;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group .title {
  font-size: 18px;
  color: #757575;
  font-weight: 700;
  background-color: #ffffff;
  margin: 0 0 0 -0.5em;
  padding: 0 0.5em;
  display: inline-block;
  position: relative;
  top: -0.9em;
  left: 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group .title+p,
#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group .title+ol,
#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group .title+ul {
  margin: 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group p {
  margin: 1em 0 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol,
#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ul {
  list-style-type: none;
  padding: 0;
  margin: 1em 0 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol>li p,
#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ul>li p {
  margin: 1em 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol {
  counter-reset: item;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol>li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol>li p {
  text-indent: 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ol>li::before {
  counter-increment: item;
  content: counter(item) ".";
  margin: 0;
  padding-right: 0.5em;
  font-weight: normal;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ul>li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ul>li p {
  text-indent: 0;
}

#sb-part-1680.sb-custom-part-hw5b9fS20l8y3KIf .box-group ul>li::before {
  content: "・";
  margin: 0;
  padding-right: 0.3em;
  font-weight: normal;
}



* {
  box-sizing: border-box;
  word-break: break-all;
  letter-spacing: 0;
}

/*全体*/
html {
  /** コンテンツ幅640pxの時  1rem = 10px */
  font-size: clamp(6px, 1.5625vw, 10px);
}

body {
  background: #F5F5F5;
  color: #333;
  font-family: sans-serif;
  margin: 0 auto;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

/*共通*/
a {
  color: #0064f5;
  font-weight: bold;
  text-decoration: none;
}

p {
  font-size: 2.8rem;
  line-height: 1.6;
  margin: 2rem auto;
}

.text_wrap {
  padding: 0 2rem;
}

.red {
  color: #d70202;
  font-weight: bold;
}

.red2 {
  color: #d70202;
}

.blue {
  color: #508ae2;
  font-weight: bold;
}

.blue2 {
  color: #206CD8;
}

.center {
  text-align: center;
  font-weight: bold;
}

.center2 {
  text-align: center;
}

.marker {
  background: linear-gradient(transparent 70%, #F2FF5F 70%);
}

.marker2 {
  background-color: #206CD8;
  color: #fff;
  padding: .5rem;
}

@media screen and (min-width:640px) {
  a {
    font-size: 18px;
  }
}

@media screen and (max-width:375px) {
  a {
    font-size: 13px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: -1px auto;
}


/*表示非表示*/
.sp {
  display: none !important;
}

@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/*レイアウト*/
.header,
.article,
.footer {
  margin: 0 auto;
  width: 100%;
  max-width: 640px;
}

.article {
  padding: 0;
}

.section {
  margin: 0;
  padding: 0;
}

@media screen and (min-width:640px) {
  .article {
    padding: 0;
  }

  .section {
    margin: 0;
  }
}


/*header*/
.header__top {
  background-color: #056aaf;
  padding: 1.5rem 1rem;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}


/*.cta*/
.cta {
  margin: -1px 0;
  padding: 0;
}

.cta .btn {
  margin: 2.5rem auto 1.5rem;
  width: 100%;
}

.yureru-j {
  -webkit-animation: yureru-j 2s infinite;
  animation: yureru-j 2s infinite;
}

@-webkit-keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }

  5% {
    transform: translate(0px, -2px);
  }

  10% {
    transform: translate(0px, 2px);
  }

  15% {
    transform: translate(0px, -2px);
  }

  20% {
    transform: translate(0px, 2px);
  }

  25% {
    transform: translate(0px, -2px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}

@keyframes yureru-j {
  0% {
    transform: translate(0px, 2px);
  }

  5% {
    transform: translate(0px, -2px);
  }

  10% {
    transform: translate(0px, 2px);
  }

  15% {
    transform: translate(0px, -2px);
  }

  20% {
    transform: translate(0px, 2px);
  }

  25% {
    transform: translate(0px, -2px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}


/* section.case */
.case {
  background: url(../img/bg1.png);
  background-repeat: repeat-y;
  background-size: 100%;
  padding: 5rem 2rem;
}

.case h2 {
  font-size: 5.0rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 2rem;
}


/* section.avance */
.avance {
  background-color: #F0F8FF;
  padding: 0 0 5rem;
}


/* section.sim */
.sim {
  background-color: #fff;
  padding: 0;
}

.sim2 {
  background-color: #fff;
  padding: 0;
}

.kaisetsu-box2 {
  border: 1px solid #41aad3;
  border-radius: 5px;
  width: 90%;
  margin: 20px auto 30px;
}

.kaisetsu-box2-title {
  background-color: #41aad3;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 20px;
  line-height: 1.2;
  text-align: center;
  border-radius: 3px 3px 0 0;
}

.kaisetsu-box2 ul {
  padding: 20px 20px 15px 40px;
}

.kaisetsu-box2 ul li {
  list-style: outside;
  color: #41aad3;
  border-bottom: dotted #ccc 3px;
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 22px;
}

.kaisetsu-box2 ul li span {
  color: #333;
}

.kaisetsu-box2 ul li span strong {
  font-weight: bold;
}

@media screen and (max-width:600px) {
  .kaisetsu-box2-title {
    font-size: 18px;
  }

  .kaisetsu-box2 ul li {
    font-size: 15px;
  }
}


/* section.reason */
.reason {
  background-color: #fff;
  padding: 0 0 5rem;
}

.reason__point .pointbox__area {
  width: calc(100% - 20px);
  margin: 0 auto 30px;
  height: auto;
  background: #056aaf;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.reason__point .pointComment__box {
  width: 30%;
  height: auto;
}

.reason__point .pointComment__box .text {
  color: #fff;
  font-size: 1em;
  text-align: center;
  margin: 0;
}

.reason__point .pointComment__box .text .comment {
  position: relative;
}

.reason__point .pointComment__box .text .comment:before {
  content: '';
  width: 15px;
  height: 1px !important;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(50deg);
  display: block;
  position: absolute;
  top: 80%;
  left: 0.5em;
}

.reason__point .pointComment__box .text .comment:after {
  content: '';
  width: 15px;
  height: 1px !important;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(-50deg);
  display: block;
  position: absolute;
  top: 80%;
  right: -1.5em;
}

.reason__point .pointComment__box .img__box {
  width: 40px;
  height: auto;
  margin: 10px auto 0;
  display: block;
}

.reason__point .pointComment__box .img__box img {
  width: 100%;
  height: auto;
}

.reason__point .pointDetail__box {
  width: 70%;
  height: auto;
  background: #fff;
  border-radius: 5px;
}

.reason__point .pointDetail__box .point {
  list-style: none;
  padding: 0;
}

.reason__point .pointDetail__box .point li {
  position: relative;
  margin: 0 20px;
  padding: 5px 0 5px 24px;
  border-bottom: 2px dotted #eee;
  line-height: 1.8;
}

.reason__point .pointDetail__box .point li span.span1 {
  color: #ff9900;
  font-weight: bold;
}

.reason__point .pointDetail__box .point li span.span2 {
  color: #056aaf;
  font-weight: bold;
}

.reason__point .pointDetail__box .point li:last-of-type {
  border-bottom: none;
}

.reason__point .pointDetail__box .point li:before {
  content: '';
  width: 16px;
  height: 16px !important;
  border-radius: 8px;
  background: #056aaf;
  position: absolute;
  top: 10px;
  left: 0;
}

.reason__point .pointDetail__box .point li:after {
  content: '';
  width: 8px;
  height: 3px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 15px;
  left: 3px;
  transform: rotate(-45deg);
}

.reason__point .pointDetail__box .point li ._bold {
  color: #056aaf;
  background: linear-gradient(180deg, transparent 0%, transparent 69%, rgb(67, 153, 200) 70%, rgb(68, 116, 177) 100%);
}

@media screen and (max-width:600px) {
  .reason__point .pointbox__area {
    flex-wrap: wrap;
  }

  .reason__point .pointComment__box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .reason__point .pointComment__box .img__box {
    order: 1;
    width: 40px;
    margin: 0 20px;
  }

  .reason__point .pointComment__box .text {
    order: 2;
    width: calc(100% - 80px);
    text-align: left;
  }

  .reason__point .pointComment__box .text .comment:before {
    top: -10px;
    left: 0;
    transform: translateY(0) rotate(-30deg);
  }

  .reason__point .pointComment__box .text .comment:after {
    top: inherit;
    bottom: -10px;
    left: 0;
    transform: inherit;
    transform: rotate(30deg);
  }

  .reason__point .pointDetail__box {
    width: 100%;
  }
}



/* section.questionnaire */

.questionnaire__text {
  font-size: 3rem;
  font-weight: bold;
  color: #FF7B22;
  text-align: center;
  margin-bottom: 3rem
}

.question {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 1rem;
}

.answer {
  background-color: #F8F8F3;
  padding: 2rem 2rem .5rem;
  margin-bottom: 3rem;
}

.answer li {
  padding-bottom: 1.5rem;
}

.answer li label {
  font-size: 2.4rem;
}

input[type="checkbox"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: .1rem solid #A4A2A2;
  border-radius: .4rem;
  vertical-align: -.5rem;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: .1rem;
  left: .5rem;
  transform: rotate(50deg);
  width: .8rem;
  height: 1.2rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}

input[type="radio"] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: .1rem solid #A4A2A2;
  border-radius: .4rem;
  vertical-align: -.5rem;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: .1rem;
  left: .5rem;
  transform: rotate(50deg);
  width: .8rem;
  height: 1.2rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}


/*footer.footer*/
.footer {
  background: #197d96;
  display: flex;
  justify-content: center;
  padding: 0 12px 25px;
}

.footer p {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
}

.footer a {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
}

@media screen and (min-width:640px) {
  .footer a {
    font-size: 14px;
  }
}

@media screen and (max-width:375px) {
  .footer a {
    font-size: 11px;
  }
}


/***************************************

thanks

***************************************/

.thanks_wrapper {
  background: #fff;
  border: 6px solid #dbe3f0;
  line-height: 1.8;
  margin: 10px 10px 0;
  overflow: hidden;
  padding: 35px 10px 30px;
  position: relative;
}

.thanks_title {
  border-bottom: 2px dotted #dcdcdc;
  color: #ff8723;
  display: block;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
  padding: 10px 0 15px;
  text-align: center;
}

.thanks_text {
  line-height: 1.8;
  text-align: center;
}

.thanks_text_hilight {
  background: #FFFF00;
}

.thanks_flow_caption {
  background: #eaeaea;
  border-left: 5px solid #c5c5c5;
  border-right: 5px solid #c5c5c5;
  color: #111;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin: 30px 0 0;
  padding: 5px;
  text-align: center;
}

.thanks_flow {
  display: flex;
}

.thanks_flow__title {
  background: #255094;
  border: 3px solid #255094;
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-size: 14px;
  padding: 8px;
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.thanks_flow__text {
  background: #fff;
  border: 3px solid #255094;
  border-left: none;
  border-radius: 0 8px 8px 0;
  color: #003219;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  padding: 8px;
  width: 85%;
}

.thanks_flow__text--hilight {
  background: linear-gradient(transparent 55%, #ffff00 55% 95%, transparent 95%);
  padding-bottom: 3px;
}

.thanks_flow_triangle {
  text-align: center;
  margin: 15px 0;
}

.thanks_flow_triangle>img {
  width: 15%;
  height: auto;
}

.thanks_office {
  border: 3px solid #255094;
  padding: 10px 10px 15px;
  margin-top: 20px;
}

.thanks_office__name {
  background: #255094;
  border-radius: 5px;
  color: #fff;
  line-height: 1.8;
  padding: 10px 5px;
  text-align: center;
}

.thanks_office__phone {
  background: url(../img/tel.png) no-repeat;
  background-size: contain;
  color: #255094;
  display: table;
  font-size: 45px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  line-height: 1;
  padding: 0 0 0 35px;
  text-align: center;
}

/*===================================
PC表示
/*==================================*/
@media screen and (min-width:768px) and ( max-width:1024px) {
  .button {
      font-size:1.8rem;
      padding: 20px 0;
  }
  .next_button_box {
      margin: 50px auto 0;
      width: 60%;
  }
  .thanks_wrapper {
      padding: 30px 20px;
  }
  .thanks_flow_triangle>img {
      width: 10%;
      height: auto;
  }
}

@media screen and (min-width:1024px) {
  .button {
      font-size:2.5rem;
      padding: 20px 0;
  }
  .next_button_box {
      margin: 50px auto 0;
      width: 60%;
  }
  .thanks_wrapper {
      padding: 40px 20px 25px;
      margin: 20px auto 10px;
      max-width: 710px;
  }
  .thanks_flow_triangle>img {
      width: 10%;
      height: auto;
  }
}
/*===================================
SP表示
/*==================================*/
@media screen and (max-width:768px){
  .main__fv_counter{
      border: 4px solid #006419;
      padding: 6px;
  }
  .thanks_flow__title{
      width: 20%
  }
  .thanks_office__phone{
  font-size: 36px;
  }
}

.is_privacy_read_text {
  margin: 20px 0;
  text-align: center;
  font-size: 12px;
}

.checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox:before {
  background: #fff;
  border: 1px solid #231815;
  content: '';
  display: block;
  height: 14px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 14px;
}
.checkbox:after {
  border-right: 3px solid #06b5b5;
  border-bottom: 3px solid #06b5b5;
  content: '';
  display: block;
  height: 9px;
  left: 9px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
}

/***************************************
common
***************************************/
.wrapper {
  position: relative;
}

.header {
  padding: 0;
  text-align: center;
}
.sim_head{
  background: #255094;
  padding: 5px 0;
}

.header__logo {
  height: auto;
  width: 50%;
}

.main {
  position: relative;
  width: 100%;
}

.main__fv {
  position: relative;
}

.main__fv_counter {
  background: #fff;
  border: 7px solid #255094;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  width: 52%;
  height: auto;
  left: calc(50% - 26%);
  bottom: -11px;
  z-index: 3;
}

.main__fv_counter>img {
  width: 100%;
  height: auto;
}

.footer {
  font-size: 1.2rem;
  margin: 10px 0 0 0;
  padding: 15px 0;
  width: 100%;
}

.footer__links {
  display: flex;
  justify-content: center;
}

.footer__link {
  flex-shrink: 0;
  margin: 0 20px;
  list-style: none;
}



html, body {
  font-family: sans-serif;
  height: 100%;
  margin: 0 auto;
  max-width: 640px;
  padding: 0 0;
  width: 100%;
}
body {
  -webkit-text-size-adjust: 100%;
  background: #eff5f8;
  color: #111;
  font-family: "Yu Gothic","游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  padding: 0;
}
.yellow {
  color: #ffff00;
  font-weight: bold;
}
p {
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  margin: 10px 0 0;
}
.form_header p.o_name {
  background: #255094;
  line-height: 1;
  padding: 0 5px;
  width: 100%;
  height: 46px;
  margin: 0;
}
.o_name img{
  margin: 0 auto;
  width: 50%;
  height: auto;
  padding-top: 2%;
}
h1.form_h1 {
  background: #255094;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 5px;
  text-align: center;
  width: 100%;
  margin: 0;
}
div.form_main p {
  margin: 0;
}
div.form_main p img, div.form_main div img {
  display: block;
  width: 100%;
  height: auto;
}
div.form_main {
  width: 100%;
  height: auto;
  position: relative;
}
div[class^="head_img"]{
	width:16%;
	height:auto;
	overflow:visible;
	position:absolute;	
}
div.head_img1{
	top:14%;
	left:28.5%;
}
div.head_img2{
	top:50%;
	left:39%;
}
div.head_img3{
	top:14%;
	left:49.5%;
}
div.head_img4{
	top:50%;
	left:60.5%;
}

div.head_img1 img{
	animation:bigsmall1 4s linear infinite normal;
}
@keyframes bigsmall1{
0%{transform: scale(0.96);}
5%{transform: scale(0.96);}
15%{transform: scale(1.1);}
25%{transform: scale(0.96);}
100%{transform: scale(0.96);}
}
div.head_img2 img{
	animation:bigsmall2 4s linear infinite normal;
}
@keyframes bigsmall2{
0%{transform: scale(0.96);}
30%{transform: scale(0.96);}
40%{transform: scale(1.1);}
50%{transform: scale(0.96);}
100%{transform: scale(0.96);}
}
div.head_img3 img{
	animation:bigsmall3 4s linear infinite normal;
}
@keyframes bigsmall3{
0%{transform: scale(0.96);}
55%{transform: scale(0.96);}
65%{transform: scale(1.1);}
75%{transform: scale(0.96);}
100%{transform: scale(0.96);}
}
div.head_img4 img{
	animation:bigsmall4 4s linear infinite normal;
}
@keyframes bigsmall4{
0%{transform: scale(0.96);}
80%{transform: scale(0.96);}
90%{transform: scale(1.1);}
100%{transform: scale(0.96);}
}


/*送信ボタン*/
p.button{
	margin:10px auto 0;
	width:250px;
}
button#submit{
	appearance:none;
    background:linear-gradient(to bottom right, #3d50a1, #1d3688);
    border:2px solid #142d81;
	border-radius:10px;
	color:#fff;
	cursor:pointer;
	display:block;
	font-size:1.5rem;
	font-weight:bold;
	padding:0.8em 0;
	position:relative;
	text-align:center;
	width:100%;
	transition:0s;
}
button#submit:focus{
  outline-width:0;
}
button#submit:focus,
button#submit:active,
button#submit:hover{
  background:#0e236a;
}
#submit em.abled {
	display: inline;
    font-size:26px;
    font-size: 2.6rem;
}


/*div.button_after*/
div.button_after{
	margin:15px 0 0;
	padding:0 0 20px;
	text-align:center;
}
div.button_after p{
	color:#333;
	display:inline-block;
	font-size:10px;
	line-height:1.5;
	text-align:left;
}
@media screen and (min-width:640px) {
div.button_after{
padding:0 0 45px;
}
div.button_after p{
font-size:12px;
}
}