@charset "UTF-8";
/*-------------------------------------------------------------

	CSS (Last Update 2020.6.29)

	- reset
	- common（全共通）
	- contents 下層（共通）
	- contents 下層（1カラム共通）
	- contents 下層（2カラム共通）
	- Typography ※pの指定の関係で一番最後

--------------------------------------------------------------*/
/*  何もなしは769px以下の場合に適用　*/
@media screen and (max-width: 768px) {
  /*  768px以下の場合に適用　*/
}
@media screen and (max-width: 480px) {
  /*  480px以下の場合に適用
  （こっちを記述しなければ上の959pxの方が適用される）　*/
}
/*============================================================
  reset
============================================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*
  font: inherit;
  */
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

div:after,
ul:after {
  content: "";
  display: block;
  clear: both;
}

hr {
  border: none;
}

.dotted-line {
  border-top: #ccc 1px dotted;
  padding-top: 20px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

/*============================================================
  common（全共通）
============================================================*/
html {
  font-size: 62.5%;
  /* 基準を10pxにする　※フォントは「rem」で指定する */
}

body {
  width: 100%;
  color: #333333;
  font-size: 1.8rem;
  /* 全体のフォントサイズを18pxにする */
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

.spdn {
  display: block;
}

.pcdn {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    -webkit-text-size-adjust: none;
    /* background-color:#ffffee; */
    font-size: 1.7rem;
    /* 全体のフォントサイズを17pxにする */
  }

  .tbspdn {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  body {
    /*  background-color: #ffffdd; */
    font-size: 1.7rem;
    /* 全体のフォントサイズを17pxにする */
    line-height: 1.6;
  }

  .spdn {
    display: none;
  }

  .pcdn {
    display: block;
  }
}
a {
  color: #0054d2;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #6ea1ee;
  text-decoration: underline;
}

a.none:hover {
  text-decoration: none;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

.icon-outlink {
  margin-left: 2rem;
}

a:hover img.opacityimg {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}

.contents p {
  margin-bottom: 1.5em;
}

/*============================================================
  paragraph settings
============================================================*/
p:last-child {
  margin-bottom: 0;
}

/*============================================================
  margin settings
============================================================*/
.margin-center {
  margin-left: auto;
  margin-right: auto;
}

/* margin */
.m-half {
  margin: 16px !important;
}

.m-1 {
  margin: 32px !important;
}

@media screen and (max-width: 480px) {
  .m-1 {
    margin: 16px !important;
  }
}
.m-1-half {
  margin: 48px !important;
}

@media screen and (max-width: 480px) {
  .m-1-half {
    margin: 32px !important;
  }
}
.m-2 {
  margin: 64px !important;
}

@media screen and (max-width: 480px) {
  .m-2 {
    margin: 48px !important;
  }
}
/* margin-bottom */
.mb-half {
  margin-bottom: 16px !important;
}

.mb-1 {
  margin-bottom: 32px !important;
}

.mb-1-half {
  margin-bottom: 48px !important;
}

@media screen and (max-width: 480px) {
  .mb-1-half {
    margin-bottom: 32px !important;
  }
}
.mb-2 {
  margin-bottom: 64px !important;
}

@media screen and (max-width: 480px) {
  .mb-2 {
    margin-bottom: 48px !important;
  }
}
.mb-2-half {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 480px) {
  .mb-2-half {
    margin-bottom: 64px !important;
  }
}
.mb-3 {
  margin-bottom: 96px !important;
}

@media screen and (max-width: 480px) {
  .mb-3 {
    margin-bottom: 64px !important;
  }
}
.mb-3-half {
  margin-bottom: 112px !important;
}

@media screen and (max-width: 480px) {
  .mb-3-half {
    margin-bottom: 96px !important;
  }
}
.mb-none {
  margin-bottom: 0 !important;
}

/* margin-top */
.mt-half {
  margin-top: 16px !important;
}

@media screen and (max-width: 480px) {
  .mt-half {
    margin-top: 8px !important;
  }
}
.mt-1 {
  margin-top: 32px !important;
}

@media screen and (max-width: 480px) {
  .mt-1 {
    margin-top: 16px !important;
  }
}
.mt-1-half {
  margin-top: 48px !important;
}

@media screen and (max-width: 480px) {
  .mt-1-half {
    margin-top: 32px !important;
  }
}
.mt-2 {
  margin-top: 64px !important;
}

@media screen and (max-width: 480px) {
  .mt-2 {
    margin-top: 48px !important;
  }
}
.mt-2-half {
  margin-top: 80px !important;
}

@media screen and (max-width: 480px) {
  .mt-2-half {
    margin-top: 64px !important;
  }
}
.mt-3 {
  margin-top: 96px !important;
}

@media screen and (max-width: 480px) {
  .mt-3 {
    margin-top: 64px !important;
  }
}
.mt-none {
  margin-top: 0 !important;
}

/* margin-bottom-minus */
.mb-m-half {
  margin-bottom: -16px !important;
}

.mb-m-1 {
  margin-bottom: -32px !important;
}

.mb-m-1-half {
  margin-bottom: -48px !important;
}

@media screen and (max-width: 480px) {
  .mb-m-1-half {
    margin-bottom: -32px !important;
  }
}
.mb-m-2 {
  margin-bottom: -64px !important;
}

@media screen and (max-width: 480px) {
  .mb-m-2 {
    margin-bottom: -48px !important;
  }
}
.mb-m-2-half {
  margin-bottom: -80px !important;
}

@media screen and (max-width: 480px) {
  .mb-m-2-half {
    margin-bottom: -64px !important;
  }
}
.mb-m-3 {
  margin-bottom: -96px !important;
}

@media screen and (max-width: 480px) {
  .mb-m-3 {
    margin-bottom: -64px !important;
  }
}
.mb-m-3-half {
  margin-bottom: -112px !important;
}

@media screen and (max-width: 480px) {
  .mb-m-3-half {
    margin-bottom: -96px !important;
  }
}
/* margin-top-minus */
.mt-m-half {
  margin-top: -16px !important;
}

.mt-m-1 {
  margin-top: -32px !important;
}

.mt-m-1-half {
  margin-top: -48px !important;
}

@media screen and (max-width: 480px) {
  .mt-m-1-half {
    margin-top: -32px !important;
  }
}
.mt-m-2 {
  margin-top: -64px !important;
}

@media screen and (max-width: 480px) {
  .mt-m-2 {
    margin-top: -48px !important;
  }
}
.mt-m-2-half {
  margin-top: -80px !important;
}

@media screen and (max-width: 480px) {
  .mt-m-2-half {
    margin-top: -64px !important;
  }
}
.mt-m-3 {
  margin-top: -96px !important;
}

@media screen and (max-width: 480px) {
  .mt-m-3 {
    margin-top: -64px !important;
  }
}
.mt-m-3-half {
  margin-top: -112px !important;
}

@media screen and (max-width: 480px) {
  .mt-m-3-half {
    margin-top: -96px !important;
  }
}
/*============================================================
  padding settings
============================================================*/
/* padding-bottom */
.pb-half {
  padding-bottom: 16px !important;
}

.pb-1 {
  padding-bottom: 32px !important;
}

.pb-1-half {
  padding-bottom: 48px !important;
}

@media screen and (max-width: 480px) {
  .pb-1-half {
    padding-bottom: 32px !important;
  }
}
.pb-2 {
  padding-bottom: 64px !important;
}

@media screen and (max-width: 480px) {
  .pb-2 {
    padding-bottom: 48px !important;
  }
}
.pb-2-half {
  padding-bottom: 80px !important;
}

@media screen and (max-width: 480px) {
  .pb-2-half {
    padding-bottom: 64px !important;
  }
}
.pb-3 {
  padding-bottom: 96px !important;
}

@media screen and (max-width: 480px) {
  .pb-3 {
    padding-bottom: 64px !important;
  }
}
.pb-3-half {
  padding-bottom: 112px !important;
}

@media screen and (max-width: 480px) {
  .pb-3-half {
    padding-bottom: 96px !important;
  }
}
.pb-none {
  padding-bottom: 0 !important;
}

/* padding-top */
.pt-half {
  padding-top: 16px !important;
}

@media screen and (max-width: 480px) {
  .pt-half {
    padding-top: 8px !important;
  }
}
.pt-1 {
  padding-top: 32px !important;
}

@media screen and (max-width: 480px) {
  .pt-1 {
    padding-top: 16px !important;
  }
}
.pt-1-half {
  padding-top: 48px !important;
}

@media screen and (max-width: 480px) {
  .pt-1-half {
    padding-top: 32px !important;
  }
}
.pt-2 {
  padding-top: 64px !important;
}

@media screen and (max-width: 480px) {
  .pt-2 {
    padding-top: 48px !important;
  }
}
.pt-2-half {
  padding-top: 80px !important;
}

@media screen and (max-width: 480px) {
  .pt-2-half {
    padding-top: 64px !important;
  }
}
.pt-3 {
  padding-top: 96px !important;
}

@media screen and (max-width: 480px) {
  .pt-3 {
    padding-top: 64px !important;
  }
}
.pt-none {
  padding-top: 0 !important;
}

/* padding-bottom-minus */
.pb-m-half {
  padding-bottom: -16px !important;
}

.pb-m-1 {
  padding-bottom: -32px !important;
}

.pb-m-1-half {
  padding-bottom: -48px !important;
}

@media screen and (max-width: 480px) {
  .pb-m-1-half {
    padding-bottom: -32px !important;
  }
}
.pb-m-2 {
  padding-bottom: -64px !important;
}

@media screen and (max-width: 480px) {
  .pb-m-2 {
    padding-bottom: -48px !important;
  }
}
.pb-m-2-half {
  padding-bottom: -80px !important;
}

@media screen and (max-width: 480px) {
  .pb-m-2-half {
    padding-bottom: -64px !important;
  }
}
.pb-m-3 {
  padding-bottom: -96px !important;
}

@media screen and (max-width: 480px) {
  .pb-m-3 {
    padding-bottom: -64px !important;
  }
}
.pb-m-3-half {
  padding-bottom: -112px !important;
}

@media screen and (max-width: 480px) {
  .pb-m-3-half {
    padding-bottom: -96px !important;
  }
}
/* padding-top-minus */
.pt-m-half {
  padding-top: -16px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-half {
    padding-top: -8px !important;
  }
}
.pt-m-1 {
  padding-top: -32px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-1 {
    padding-top: -16px !important;
  }
}
.pt-m-1-half {
  padding-top: -48px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-1-half {
    padding-top: -32px !important;
  }
}
.pt-m-2 {
  padding-top: -64px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-2 {
    padding-top: -48px !important;
  }
}
.pt-m-2-half {
  padding-top: -80px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-2-half {
    padding-top: -64px !important;
  }
}
.pt-m-3 {
  padding-top: -96px !important;
}

@media screen and (max-width: 480px) {
  .pt-m-3 {
    padding-top: -64px !important;
  }
}
/*============================================================
 iframe settings
============================================================*/
.iframe-container {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.iframe {
  position: relative;
  width: 100%;
  /* 以下タテヨコ比（アスペクト比） */
  /* padding-top: 75%;/* 4:3 */
  /* padding-top: 66%;/* 3:2 */
  padding-top: 56.25%;
  /* 16:9 */
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/*============================================================
  display settings
============================================================*/
.inline {
  display: inline !important;
}

.inline-block {
  display: inline-block !important;
}

.block {
  display: block !important;
}

.float-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
.float-right img {
  width: auto;
  max-width: 300px !important;
  height: auto;
}
@media screen and (max-width: 640px) {
  .float-right {
    float: none;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .float-right img {
    width: auto;
    max-width: 90%;
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .float-right_sp {
    float: right !important;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 20%;
  }
  .float-right_sp img {
    width: 100%;
    height: auto;
  }
}
.float-left {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.float-left img {
  width: auto;
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 640px) {
  .float-left {
    float: none;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }
  .float-left img {
    width: auto;
    max-width: 90%;
    height: auto;
  }
}

/*============================================================
  align settings
============================================================*/
.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

/*============================================================
  font style settings
============================================================*/
.strong {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.txtUnderline {
  text-decoration: underline !important;
}

.line-through {
  text-decoration: line-through !important;
}

.marker_blue {
  background: linear-gradient(transparent 85%, #76AFD6 90%);
}

/*============================================================
  indent settings
============================================================*/
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-large {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.indent-2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent-3 {
  padding-left: 3em;
  text-indent: -3em;
}

.indent-4 {
  padding-left: 4em;
  text-indent: -4em;
}

.indent-5 {
  padding-left: 5em;
  text-indent: -5em;
}

.indent-6 {
  padding-left: 6em;
  text-indent: -6em;
}

.indent-check {
  padding-left: 16px;
  text-indent: -8px;
}

.rice-indent {
  padding-left: 1em;
  position: relative;
}

.rice-indent:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.square-indent {
  padding-left: 1em;
  position: relative;
}

.square-indent:before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
}

.triangle-indent {
  padding-left: 1em;
  position: relative;
}

.triangle-indent:before {
  content: "▼";
  position: absolute;
  left: 0;
  top: 0;
}

.parentheses-indent {
  padding-left: 1em;
  position: relative;
}

.parentheses-indent:before {
  content: "（";
  position: absolute;
  left: 0;
  top: 0;
}

.dot-indent {
  padding-left: 1em;
  position: relative;
}

.dot-indent:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.bracket-indent {
  padding-left: 1.2em;
  position: relative;
}

.bracket-indent:before {
  content: "「";
  position: absolute;
  left: 0;
  top: 0;
}

.bracket-wide-indent {
  padding-left: 1.2em;
  position: relative;
}

.bracket-wide-indent:before {
  content: "『";
  position: absolute;
  left: 0;
  top: 0;
}

.bracket-bold-indent {
  padding-left: 1.2em;
  position: relative;
}

.bracket-bold-indent:before {
  content: "【";
  position: absolute;
  left: 0;
  top: 0;
}

.circle-indent {
  padding-left: 1.2em;
  position: relative;
}

.circle-indent:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}

.circle-line-indent {
  padding-left: 1.2em;
  position: relative;
}

.circle-line-indent:before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
}

.blank-indent {
  padding-left: 1.2em;
  position: relative;
}

.blank-indent:before {
  content: "　";
  position: absolute;
  left: 0;
  top: 0;
}

/*============================================================
  text-box-indent settings
============================================================*/
.text-box-indent-1 {
  margin-left: 1em !important;
}

.text-box-indent-1-1 {
  margin-left: 1.1em !important;
}

.text-box-indent-1-2 {
  margin-left: 1.2em !important;
}

.text-box-indent-1-3 {
  margin-left: 1.3em !important;
}

.text-box-indent-1-4 {
  margin-left: 1.4em !important;
}

.text-box-indent-1-5 {
  margin-left: 1.5em !important;
}

.text-box-indent-1-6 {
  margin-left: 1.6em !important;
}

.text-box-indent-1-7 {
  margin-left: 1.7em !important;
}

.text-box-indent-1-8 {
  margin-left: 1.8em !important;
}

.text-box-indent-1-9 {
  margin-left: 1.9em !important;
}

.text-box-indent-2 {
  margin-left: 2em !important;
}

/*============================================================
  font-size settings
============================================================*/
.font-xx-small {
  font-size: 1.3rem !important;
}

@media screen and (max-width: 480px) {
  .font-xx-small {
    font-size: 1.1rem !important;
  }
}
.font-x-small {
  font-size: 1.4rem !important;
}

@media screen and (max-width: 480px) {
  .font-x-small {
    font-size: 1.3rem !important;
  }
}
.font-small {
  font-size: 1.6rem !important;
}

@media screen and (max-width: 480px) {
  .font-small {
    font-size: 1.5rem !important;
  }
}
.font-normal {
  font-size: 1.8rem !important;
}

@media screen and (max-width: 480px) {
  .font-normal {
    font-size: 1.6rem !important;
  }
}
.font-medium {
  font-size: 2rem !important;
}

@media screen and (max-width: 480px) {
  .font-medium {
    font-size: 1.8rem !important;
  }
}
.font-large {
  font-size: 2.3rem !important;
}

@media screen and (max-width: 480px) {
  .font-large {
    font-size: 2rem !important;
  }
}
.font-x-large {
  font-size: 2.6rem !important;
}

@media screen and (max-width: 480px) {
  .font-x-large {
    font-size: 2rem !important;
  }
}
.font-xx-large {
  font-size: 2.9rem !important;
}

@media screen and (max-width: 480px) {
  .font-xx-large {
    font-size: 2.3rem !important;
  }
}
.font-xxx-large {
  font-size: 3.2rem !important;
}

@media screen and (max-width: 480px) {
  .font-xxx-large {
    font-size: 2.3rem !important;
  }
}
.font-xxxx-large {
  font-size: 4.0rem !important;
}
@media screen and (max-width: 480px) {
  .font-xxxx-large {
    font-size: 2.5rem !important;
  }
}

/*============================================================
  font-feature-settings
============================================================*/
.palt {
  font-feature-settings: "palt";
}

/*============================================================
  line-height
============================================================*/
.line-height {
  line-height: 1.8;
}

.line-height-medium {
  line-height: 1.65;
}

.line-height-medium-small {
  line-height: 1.5;
}

.line-height-small {
  line-height: 1.35;
}

/*============================================================
  color
============================================================*/
.color-gray {
  color: #999999 !important;
}

.color-blue {
  color: #74c3ee !important;
}

.color-darkblue {
  color: #164883 !important;
}

.color-green {
  color: #49b700 !important;
}

.color-red {
  color: #CA0A0A !important;
}

.color-orange {
  color: #ef521b !important;
}

.marker-yellow {
  background-color: #fffca7;
}

/*============================================================
  container
============================================================*/
.container {
  width: 88%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.container--small {
  max-width: 700px;
}

.container--medium {
  max-width: 960px;
}

.container--large {
  max-width: 1024px;
}

.container--x-large {
  max-width: 1120px;
}

.container--xx-large {
  max-width: 1200px;
}

.container--full {
  max-width: 1920px;
}

/*============================================================
  リスト
============================================================*/
.main ul li {
  margin-bottom: 1.5em;
}

ul.black, ul.black_bold {
  margin-left: 1.3em;
}
ul.black li, ul.black_bold li {
  text-indent: -1em;
}
ul.black li:before, ul.black_bold li:before {
  margin-right: 7px;
  content: '●';
  font-size: 10px;
  vertical-align: 3px;
}

ul.black_bold li {
  font-weight: 700;
}

ul.no_list li {
  list-style: none;
}

ul.no_list li:before {
  content: none !important;
}

.main ul {
  margin-left: 1.3em;
}
.main ul li {
  text-indent: -1em;
}
.main ul li:before {
  margin-right: 7px;
  content: '●';
  font-size: 10px;
  vertical-align: 3px;
}

ul li.indent {
  padding-left: 1em;
  text-indent: -2em;
}

ul.square li:before {
  margin-right: 7px;
  content: '■';
  font-size: 10px;
  vertical-align: 3px;
}

ul.square-black {
  margin-left: 25px !important;
}

ul.square-black li {
  list-style: none;
  color: #333;
  text-indent: -1.5em;
}

ul.square-black li::before {
  content: '■';
  font-size: 100%;
  margin-right: 10px;
  vertical-align: 0px;
}

.main ol {
  margin-left: 25px;
}

.main ol li {
  list-style: decimal;
}

ul.circle {
  margin-left: 25px !important;
}

ul.circle li {
  list-style-type: circle;
  text-indent: 0em;
  color: #000;
}

ul.circle li::before {
  content: none;
}

ol.circledNumber {
  padding-left: 0px;
  margin-left: 0;
  counter-reset: circledNumber;
}

@media screen and (max-width: 480px) {
  div > ol.circledNumber {
    margin-left: 0 !important;
  }
}
ol.circledNumber li {
  position: relative;
  display: block;
  color: #333;
  font-weight: normal;
  counter-increment: circledNumber;
  padding: 5px 0px 10px 24px;
  line-height: 20px;
}

@media screen and (max-width: 480px) {
  ol.circledNumber li {
    position: relative;
    display: block;
    color: #333;
    font-weight: normal;
    counter-increment: circledNumber;
    padding: 5px 0px 5px 24px;
    line-height: 20px;
  }
}
ol.circledNumber li:before,
ol.circledNumber li:after {
  position: absolute;
  left: 0px;
  top: 5px;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 480px) {
  ol.circledNumber li:before,
  ol.circledNumber li:after {
    position: absolute;
    left: 0px;
    top: 5px;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
  }
}
ol.circledNumber li:before {
  content: counter(circledNumber);
  line-height: 20px;
  text-align: center;
  font-size: 12px;
}

ol.circledNumber li:after {
  content: '';
  border-radius: 10px;
  border: 1px solid black;
  transform: scale(0.8, 0.8);
}

.attention {
  margin-bottom: 2.4em !important;
  overflow: hidden;
}

div.a-1 {
  border: 2px solid #c5d3dd;
  background: #f5f9fe;
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 2.6em;
}

div.a-2 {
  border: 2px solid #dadada;
  background: #f7f7f7;
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 2.6em;
}

div.a-3 {
  border: 3px solid #dadada;
  background: #fff5cc;
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 2.6em;
}

div.a-4 {
  border: 2px solid #7fd6ff;
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 2.6em;
}

div.a-5 {
  border: 1px solid #e1e1e1;
  padding: 18px;
  box-sizing: border-box;
  margin-bottom: 2.6em;
}

blockquote {
  margin: 0 0 28px;
  padding: 30px 20px 35px 55px;
  border: 1px #eee solid;
  background: #fafafa;
  position: relative;
  clear: both;
}

blockquote *:last-child {
  margin-bottom: 0;
}

blockquote:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f10d";
  font-size: 32px;
  color: #e7e7e7;
  position: absolute;
  top: 20px;
  left: 12px;
}

/*============================================================
  SNSボタン
============================================================*/
.sns-button {
  display: flex;
  justify-content: space-between;
  margin: 80px 0 30px 0;
  font-size: 1.4rem;
  line-height: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sns-button {
    margin: 50px 0 50px 0;
  }
}
.sns-button span {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .sns-button span {
    display: none;
  }
}
.sns-button .hatebu-button span {
  font-size: 1.1rem;
}
.sns-button a {
  width: calc(98%/5);
  height: 40px;
  text-align: center;
  display: inline-block;
  color: #fff !important;
}
.sns-button a:link {
  text-decoration: none;
  color: #fff !important;
}
.sns-button a:hover {
  opacity: 0.7;
}
.sns-button a div {
  width: 100%;
  height: 40px;
}
.sns-button .fb-button {
  background: #2177F2;
}
.sns-button .x-button {
  background: #0F1419;
}
.sns-button .hatebu-button {
  background: #00a4de;
}
.sns-button .pocket-button {
  background: #e84352;
}
.sns-button .line-button {
  background: #4cc764;
}

.banner img {
  width: 100%;
  height: auto;
}

.back-button {
  text-align: left;
  margin: 60px auto 30px auto;
}

@media screen and (max-width: 834px) {
  .common .banner {
    display: none;
  }
}
