@charset "UTF-8";
/**
 *
 * style.scss
 *
 * 全てのscssファイルのインポートや
 * 全ての変数の指定を行います。
 *
 */
/**
 *
 * Foundation
 *
 * mixinやresetなど
 * あらかじめ記述しておかなければならないものを記述してあります。
 *
 */
* {
  box-sizing: border-box;
  line-height: 1;
}

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, sub, sup, 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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

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;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

main {
  display: block;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

textarea:focus {
  outline: 0;
}

input {
  border: none;
  background: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input:focus {
  outline: 0;
}

select {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  background: none;
}

select:focus {
  outline: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

/**
 *
 * Layout
 *
 * Componentは将来的に大量なデザインパターンを
 * 別ディレクトリで管理していくようになります。
 * 現状は何もインポートしていません。
 * Project内のLayoutとは別のものになります。
 *
 */
/**
 *
 * Component
 *
 * Componentは将来的に大量なデザインパターンを
 * 別ディレクトリで管理していくようになります。
 * 現状はpc, sp, clearfixクラスのみインポートしています。
 * Project内のComponentとは別のものになります。
 * 
 * Componentを利用する際は各種変数の値を
 * 適切に指定する必要があります。
 *
 */
.c-fzxs {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .c-fzxs {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-fzsm {
  font-size: 16px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .c-fzsm {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-fzmd {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .c-fzmd {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-fzlg {
  font-size: 24px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .c-fzlg {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-fzxl {
  font-size: 32px;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .c-fzxl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.c-fwn {
  font-weight: normal;
}
.c-fwb {
  font-weight: bold;
}
.c-fw1 {
  font-weight: 100;
}
.c-fw2 {
  font-weight: 200;
}
.c-fw3 {
  font-weight: 300;
}
.c-fw4 {
  font-weight: 400;
}
.c-fw5 {
  font-weight: 500;
}
.c-fw6 {
  font-weight: 600;
}
.c-fw7 {
  font-weight: 700;
}
.c-fw8 {
  font-weight: 800;
}
.c-fw9 {
  font-weight: 900;
}

.c-tal {
  text-align: left;
}
.c-tac {
  text-align: center;
}
.c-tar {
  text-align: right;
}

.c-mbxs {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .c-mbxs {
    margin-bottom: 8px;
  }
}
.c-mbsm {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .c-mbsm {
    margin-bottom: 16px;
  }
}
.c-mbmd {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .c-mbmd {
    margin-bottom: 24px;
  }
}
.c-mblg {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .c-mblg {
    margin-bottom: 32px;
  }
}
.c-mbxl {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .c-mbxl {
    margin-bottom: 40px;
  }
}

.c-ttl00 {
  color: black;
  line-height: 1.6;
}
.c-ttl01 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 1px solid black;
  line-height: 1.6;
}
.c-ttl02 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 1px dashed black;
  line-height: 1.6;
}
.c-ttl03 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 2px solid black;
  line-height: 1.6;
}
.c-ttl04 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 2px dashed black;
  line-height: 1.6;
}
.c-ttl05 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 4px solid black;
  line-height: 1.6;
}
.c-ttl06 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 4px dashed black;
  line-height: 1.6;
}
.c-ttl07 {
  color: black;
  padding-bottom: 8px;
  border-bottom: 4px double black;
  line-height: 1.6;
}
.c-ttl08 {
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  line-height: 1.6;
}
.c-ttl09 {
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px dashed black;
  border-bottom: 1px dashed black;
  line-height: 1.6;
}
.c-ttl10 {
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 4px double black;
  border-bottom: 4px double black;
  line-height: 1.6;
}
.c-ttl11 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 1.6;
}
.c-ttl12 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
  line-height: 1.6;
}
.c-ttl13 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px dashed black;
  line-height: 1.6;
}
.c-ttl14 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 4px double black;
  line-height: 1.6;
}
.c-ttl15 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
  line-height: 1.6;
}
.c-ttl16 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
  border: 1px solid black;
  line-height: 1.6;
}
.c-ttl17 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
  border: 1px dashed black;
  line-height: 1.6;
}
.c-ttl18 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
  border: 4px double black;
  line-height: 1.6;
}
.c-ttl19 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  line-height: 1.6;
}
.c-ttl20 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  border: 1px solid black;
  line-height: 1.6;
}
.c-ttl21 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  border: 1px dashed black;
  line-height: 1.6;
}
.c-ttl22 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  border: 4px double black;
  line-height: 1.6;
}
.c-ttl23 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 100px;
  line-height: 1.6;
}
.c-ttl24 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 100px;
  border: 1px solid black;
  line-height: 1.6;
}
.c-ttl25 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 100px;
  border: 1px dashed black;
  line-height: 1.6;
}
.c-ttl26 {
  background: white;
  color: black;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 100px;
  border: 4px double black;
  line-height: 1.6;
}
.c-ttl27 {
  color: black;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.6;
}
.c-ttl27::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 1px;
  background: black;
}
.c-ttl28 {
  color: black;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.6;
}
.c-ttl28::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: 2px;
  background: black;
}
.c-ttl29 {
  color: black;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.6;
}
.c-ttl29::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 80px;
  height: 1px;
  background: black;
}
.c-ttl30 {
  color: black;
  position: relative;
  padding-bottom: 16px;
  line-height: 1.6;
}
.c-ttl30::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 80px;
  height: 2px;
  background: black;
}
.c-ttl31 {
  color: black;
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}
.c-ttl31::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: black;
}
.c-ttl32 {
  color: black;
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
}
.c-ttl32::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: black;
}
.c-ttl33 {
  color: black;
  position: relative;
  padding-left: 40px;
  line-height: 1.6;
}
.c-ttl33::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 1px;
  background: black;
}
.c-ttl34 {
  color: black;
  position: relative;
  padding-left: 40px;
  line-height: 1.6;
}
.c-ttl34::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 32px;
  height: 2px;
  background: black;
}
.c-ttl35 {
  color: black;
  line-height: 1.6;
}
.c-ttl35 > span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid black;
}
.c-ttl36 {
  color: black;
  line-height: 1.6;
}
.c-ttl36 > span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid black;
}
.c-ttl37 {
  color: black;
  line-height: 1.6;
}
.c-ttl37 > span {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.c-ttl38 {
  color: black;
  line-height: 1.6;
}
.c-ttl38 > span {
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.c-ttl39 {
  color: black;
  line-height: 1.6;
}
.c-ttl39 > span {
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.c-ttl40 {
  color: black;
  line-height: 1.6;
}
.c-ttl40 > span {
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.c-ttl41 {
  color: black;
  line-height: 1.6;
  text-align: center;
}
.c-ttl41 > span {
  display: inline-block;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}
.c-ttl41 > span::before, .c-ttl41 > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 1px;
  background: black;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-ttl41 > span::before {
  left: 0;
}
.c-ttl41 > span::after {
  right: 0;
}
.c-ttl42 {
  color: black;
  line-height: 1.6;
  text-align: center;
}
.c-ttl42 > span {
  display: inline-block;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}
.c-ttl42 > span::before, .c-ttl42 > span::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 2px;
  background: black;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-ttl42 > span::before {
  left: 0;
}
.c-ttl42 > span::after {
  right: 0;
}
.c-ttl43 {
  color: black;
  line-height: 1.6;
}
.c-ttl43 > span {
  display: inline-block;
  position: relative;
}
.c-ttl43 > span::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  background: black;
}
.c-ttl44 {
  color: black;
  line-height: 1.6;
  position: relative;
}
.c-ttl44::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: black;
}
.c-ttl44 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}
.c-ttl44 > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: white;
}
.c-ttl45 {
  color: black;
  line-height: 1.6;
  position: relative;
}
.c-ttl45::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: black;
}
.c-ttl45 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.c-ttl45 > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: white;
}
.c-ttl46 {
  color: black;
  line-height: 1.6;
  position: relative;
}
.c-ttl46::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
}
.c-ttl46 > span {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.c-ttl46 > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: white;
}
.c-ttl47 {
  color: black;
  line-height: 1.6;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, white 8px, white 16px);
}
.c-ttl48 {
  color: black;
  line-height: 1.6;
  padding-bottom: 8px;
  position: relative;
}
.c-ttl48::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, black 4px, black 8px);
}
.c-ttl49 {
  color: black;
  line-height: 1.6;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 4px, black 4px, black 8px);
  position: relative;
  padding: 4px;
}
.c-ttl49 > span {
  display: block;
  background: white;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}
.c-ttl50 {
  color: black;
  line-height: 1.6;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 1px, white 1px, white 9px);
}
.c-ttl51 {
  color: black;
  line-height: 1.6;
  border-left: 1px solid black;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
}
.c-ttl52 {
  color: black;
  line-height: 1.6;
  border-left: 2px solid black;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
}
.c-ttl53 {
  color: black;
  line-height: 1.6;
  border-left: 4px solid black;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 16px;
}
.c-ttl54 {
  color: black;
  line-height: 1.6;
}
.c-ttl54 > small {
  font-size: 12px;
  font-size: 0.75rem;
  padding-left: 8px;
}
.c-ttl55 {
  color: black;
  line-height: 1.6;
}
.c-ttl55 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
}
.c-ttl56 {
  color: black;
  line-height: 1.6;
}
.c-ttl56 > span {
  display: block;
}
.c-ttl56 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}
.c-ttl56 > small::before, .c-ttl56 > small::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 1px;
  background: black;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-ttl56 > small::before {
  left: 0;
}
.c-ttl56 > small::after {
  right: 0;
}
.c-ttl57 {
  color: black;
  line-height: 1.6;
  position: relative;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border: 1px solid black;
  text-align: center;
}
.c-ttl57 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: white;
  padding-right: 8px;
  padding-left: 8px;
}
.c-ttl58 {
  color: black;
  line-height: 1.6;
}
.c-ttl58 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
}
.c-ttl59 {
  color: black;
  line-height: 1.6;
}
.c-ttl59 > span {
  display: block;
  padding-bottom: 8px;
}
.c-ttl59 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  padding-top: 8px;
  position: relative;
}
.c-ttl59 > small::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl60 {
  color: black;
  line-height: 1.6;
}
.c-ttl60 > span {
  display: block;
  padding-bottom: 16px;
}
.c-ttl60 > small {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  padding-top: 16px;
  position: relative;
}
.c-ttl60 > small::before {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: black;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ttl61 {
  overflow: hidden;
  text-align: left;
}
.c-ttl61 > span {
  position: relative;
  display: inline-block;
  padding-right: 8px;
}
.c-ttl61 > span::before, .c-ttl61 > span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 100vw;
  height: 1px;
  background: black;
}
.c-ttl61 > span::before {
  right: 100%;
}
.c-ttl61 > span::after {
  left: 100%;
}
.c-ttl62 {
  overflow: hidden;
  text-align: center;
}
.c-ttl62 > span {
  position: relative;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
}
.c-ttl62 > span::before, .c-ttl62 > span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 100vw;
  height: 1px;
  background: black;
}
.c-ttl62 > span::before {
  right: 100%;
}
.c-ttl62 > span::after {
  left: 100%;
}
.c-ttl63 {
  overflow: hidden;
  text-align: right;
}
.c-ttl63 > span {
  position: relative;
  display: inline-block;
  padding-left: 8px;
}
.c-ttl63 > span::before, .c-ttl63 > span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 100vw;
  height: 1px;
  background: black;
}
.c-ttl63 > span::before {
  right: 100%;
}
.c-ttl63 > span::after {
  left: 100%;
}

.c-btn01 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
}
.c-btn01:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn01:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn02 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px dashed black;
}
.c-btn02:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn02:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn03 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
}
.c-btn03:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn03:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn04 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
.c-btn04:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn04:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn05 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
  border-radius: 2px;
}
.c-btn05:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn05:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn06 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px dashed black;
  border-radius: 2px;
}
.c-btn06:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn06:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn07 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
  border-radius: 2px;
}
.c-btn07:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn07:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn08 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 2px;
}
.c-btn08:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn08:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn09 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
  border-radius: 5px;
}
.c-btn09:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn09:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn10 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px dashed black;
  border-radius: 5px;
}
.c-btn10:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn10:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn11 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid black;
  border-radius: 5px;
}
.c-btn11:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn11:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn12 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  background: white;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
}
.c-btn12:not(.is-off) {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.c-btn12:not(.is-off):hover {
  opacity: 0.7;
}
.c-btn13 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  border: 1px solid black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
.c-btn13:not(.is-off) {
  transition: all 0.3s ease;
}
.c-btn13:not(.is-off):hover {
  color: white;
  background: black;
}
.c-btn14 {
  font-size: 14px;
  font-size: 0.875rem;
  color: black;
  border: 1px solid black;
  line-height: 1.6;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  overflow: hidden;
}
.c-btn14 > span {
  position: relative;
  z-index: 1;
}
.c-btn14::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: black;
  transition: all 0.3s ease;
}
.c-btn14:not(.is-off) {
  transition: all 0.3s ease;
}
.c-btn14:not(.is-off):hover {
  color: white;
}
.c-btn14:not(.is-off):hover::before {
  left: 0;
}

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

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/**
 *
 * Project
 *
 * 実質的なWEBサイトの構築を行います。
 * layout.scssには全ページに存在するWEBサイトの
 * レイアウトに相当するものを記述してください。
 * bodyへの指定もここで行います。
 * component.scssには全ページに存在しうる
 * 汎用的なコンポーネントを記述してください。
 *
 */
/**
 *
 * header, footer, navigation
 * content, sidebar, modal,
 * keyvisual, lowervisual, breadcrumbs 
 *
 * などなど全ページに存在する
 * WEBサイトのレイアウトに相当するものを記述してください。
 * bodyへの指定もここで行います。
 *
 */
::-moz-selection {
  background: #264a9d;
  color: #fff;
}
::selection {
  background: #264a9d;
  color: #fff;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wr {
  position: relative;
}
@media (max-width: 768px) {
  .wr {
    overflow: hidden;
  }
}

.hd {
  position: absolute;
  display: block;
  width: 100%;
  height: 64px;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 24px;
  z-index: 10;
}
@media (max-width: 768px) {
  .hd {
    padding: 0 16px;
    height: 60px;
  }
}
.hd__in {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 100%;
}
.hd__in > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .hd__in {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
.hd__ttl {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.hd__ttl:hover {
  opacity: 0.7;
}
@media (max-width: 1040px) {
  .hd__ttl img {
    height: 24px;
  }
}

.nv__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.nv__li > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .nv__li {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media (max-width: 768px) {
  .nv__li {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100% - 60px);
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
    opacity: 0;
    transition: opacity .3s ease, left 0s ease .3s;
  }
  .nv__li.is-active {
    left: 0;
    opacity: 1;
    transition: opacity .3s ease, left 0s ease 0s;
  }
}
.nv__li > li {
  margin: 0 40px 0 0;
}
@media (max-width: 1040px) {
  .nv__li > li {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 768px) {
  .nv__li > li {
    width: 100%;
    margin: 0 0 32px;
    text-align: center;
  }
}
.nv__li > li:last-child {
  margin: 0;
}
.nv__li > li > a:not(.p-btn06) {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #00a4e3;
}
@media (max-width: 1040px) {
  .nv__li > li > a:not(.p-btn06) {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .nv__li > li > a:not(.p-btn06) {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.nv__open {
  width: 28px;
  height: 25px;
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  .nv__open {
    display: block;
  }
}
.nv__open.is-active::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.nv__open.is-active::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  bottom: auto;
}
.nv__open.is-active > span {
  display: none;
}
.nv__open > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 0;
  background: #00a4e3;
  transition: .3s;
}
.nv__open::before, .nv__open::after {
  content: "";
  background: #00a4e3;
  transition: .3s;
}
.nv__open::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.nv__open::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

.kv {
  padding: 110px 0 60px;
  position: relative;
}
@media (max-width: 768px) {
  .kv {
    padding: 84px 0 40px;
  }
}
.kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 770px;
  background: url(../img/kv_bg.png) 50% 100% no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .kv::before {
    background: url(../img/kv_bg_sp.png) 50% 0% no-repeat;
    background-size: 100% auto;
  }
}
.kv__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .kv__in {
    overflow-x: hidden;
  }
}
.kv__img {
  position: absolute;
  display: block;
  width: 578px;
  height: auto;
  top: 10px;
  right: auto;
  bottom: auto;
  left: 678px;
}
@media (max-width: 768px) {
  .kv__img {
    width: 220px;
    left: 220px;
    top: 100px;
  }
}
.kv__ttl {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: calc(75/60);
  color: #fff;
  font-weight: bold;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .kv__ttl {
    font-size: 34px;
    font-size: 2.125rem;
    line-height: calc(38/34);
  }
}
@media (max-width: 360px) {
  .kv__ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.sub {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
 .sub {
    font-size: 1.5rem;
}
}


.kv__ld {
  display: none;
}
@media (max-width: 768px) {
  .kv__ld {
    display: block;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc(26/18);
    text-align: center;
    margin: 0 0 8px;
    color: #264a9d;
    font-weight: bold;
  }
}
.kv__cnt {
  width: 618px;
  margin: 0 0 110px;
}
@media (max-width: 768px) {
  .kv__cnt {
    width: 100%;
    margin: 0 0 40px;
  }
}
.kv__achievement__ttl {
  font-size: 30px;
  font-size: 1.875rem;
  color: #264a9d;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
}
@media (max-width: 768px) {
  .kv__achievement__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.kv__achievement__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 0 24px;
}
.kv__achievement__li > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .kv__achievement__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media (max-width: 768px) {
  .kv__achievement__li.is-pc {
    display: none;
  }
}
.kv__achievement__li.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .kv__achievement__li.is-sp {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
  .kv__achievement__li.is-sp > * {
    min-height: 0%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .kv__achievement__li.is-sp {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
  }
}

.kv__achievement__li.is-last {
  margin: 0;
}
@media (max-width: 768px) {
  .kv__achievement__li {
    margin: 0 0 16px;
  }
}
.kv__achievement__li > li img {
  height: 40px;
}
@media (max-width: 768px) {
  .kv__achievement__li > li img {
    height: 24px;
  }
}
@media (max-width: 360px) {
  .kv__achievement__li > li img {
    height: 20px;
  }
}
.kv__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 0 0 40px;
}
.kv__li > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .kv__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
@media (max-width: 768px) {
  .kv__li {
    width: 190px;
  }
}
.kv__li > li {
  margin: 0 30px 0 0;
  width: 155px;
  height: 155px;
  border-radius: 155px;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}
@media (max-width: 768px) {
  .kv__li > li {
    width: 100%;
    height: 35px;
    line-height: 35px;
    border-radius: 10px;
    border: 2px solid #fff;
    margin: 0 0 16px;
  }
}
@media (max-width: 360px) {
  .kv__li > li {
    background: rgba(0, 164, 227, 0.25);
  }
}
.kv__li > li:last-child {
  margin: 0;
}
.kv__li > li > span {
  font-size: 20px;
  font-size: 1.25rem;
    font-weight: 900;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  line-height: calc(30/20);
  text-align: center;
}
@media (max-width: 768px) {
  .kv__li > li > span {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  .kv__li > li > span br {
    display: none;
  }
}

.ft__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 64px;
  padding-bottom: 72px;
}
@media (max-width: 768px) {
  .ft__in {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.ft__ttl {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 32px;
  color: #264a9d;
}
@media (max-width: 1040px) {
  .ft__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.ft__contact__li > li {
  margin: 0 0 16px;
}
.ft__contact__li > li:last-child {
  margin: 0;
}
.ft__tel__num {
  margin: 0 0 24px;
  text-align: center;
  padding: 4px 0 0;
}
@media (max-width: 768px) {
  .ft__tel__num {
    padding: 0;
  }
}
.ft__tel__num a {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  color: #264a9d;
}
@media (min-width: 769px) {
  .ft__tel__num a {
    cursor: default;
    text-decoration: none;
    pointer-events: none;
  }
}
.ft__tel__an {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
.ft__tel__an > li {
  position: relative;
  padding: 0 0 0 1em;
}
.ft__tel__an > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.ft__copy {
  font-size: 14px;
  font-size: 0.875rem;
  background: #264a9d;
  height: 62px;
  line-height: 62px;
  display: block;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .ft__copy {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 40px;
    height: 40px;
  }
}
@media (max-width: 360px) {
  .ft__copy {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.ft__cnt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
}
.ft__cnt > * {
  width: calc(50% - 33px);
  margin-right: 66px;
  margin-bottom: 0px;
  min-height: 0%;
}
.ft__cnt > *:nth-child(2n) {
  margin-right: 0;
}
.ft__cnt > *:nth-last-child(1) {
  margin-bottom: 0;
}
.ft__cnt > *:nth-last-child(2) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ft__cnt {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .ft__cnt > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 56px;
  }
  .ft__cnt > *:nth-child(2n) {
    margin-right: 0px;
  }
  .ft__cnt > *:nth-child(1n) {
    margin-right: 0;
  }
  .ft__cnt > *:nth-last-child(1) {
    margin-bottom: 56px;
  }
  .ft__cnt > *:nth-last-child(2) {
    margin-bottom: 56px;
  }
  .ft__cnt > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}

/**
 *
 * ttl, btn, card, sec
 * 
 * などなど全ページに存在"しうる"
 * 汎用的なコンポーネントを記述してください。
 * またコンポーネントに相当するクラスは
 * 先頭にc-のプリフィクスをつけてください。
 *
 */
.p-ttl01 {
  font-size: 36px;
  font-size: 2.25rem;
  color: #264a9d;
  font-weight: bold;
  margin: 0 0 40px;
  text-align: center;
}
.p-ttl01 img {
  padding: 0 5px 3px 0;
    height: 2.65rem;
}
@media (max-width: 768px) {
  .p-ttl01 img {
    height: 20px;
  }
}
@media (max-width: 768px) {
  .p-ttl01 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 32px;
  }
}

.p-ttl02 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #264a9d;
  font-weight: bold;
  padding: 0 0 0 14px;
  border-left: 10px solid #00a4e3;
  line-height: 40px;
  height: 40px;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .p-ttl02 {
    font-size: 16px;
    font-size: 1rem;
    line-height: 32px;
    height: 32px;
    padding: 0 0 0 14px;
  }
}

.p-ttl03 {
  padding: 0 0 0 130px;
}
@media (max-width: 768px) {
  .p-ttl03 {
    padding: 0 0 0 80px;
  }
}
.p-ttl03 .is-sb {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #00a4e3;
  line-height: calc(25.6/18);
  display: block;
}
@media (max-width: 768px) {
  .p-ttl03 .is-sb {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-ttl03 .is-mn {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  color: #264a9d;
  line-height: calc(43.2/36);
  display: block;
}
@media (max-width: 768px) {
  .p-ttl03 .is-mn {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc(25.2/18);
  }
}
.p-ttl03.is-01 {
  background: url(../img/bg_ttl03_01.svg) 0 50% no-repeat;
  background-size: 114px 114px;
}
@media (max-width: 768px) {
  .p-ttl03.is-01 {
    background-size: 69px 69px;
  }
}
.p-ttl03.is-02 {
  background: url(../img/bg_ttl03_02.svg) 0 50% no-repeat;
  background-size: 114px 114px;
}
@media (max-width: 768px) {
  .p-ttl03.is-02 {
    background-size: 69px 69px;
  }
}
.p-ttl03.is-03_01 {
  background: url(../img/bg_ttl03_03_01.svg) 0 50% no-repeat;
  background-size: 114px 114px;
}
@media (max-width: 768px) {
  .p-ttl03.is-03_01 {
    background-size: 69px 69px;
  }
}
.p-ttl03.is-03_02 {
  background: url(../img/bg_ttl03_03_02.svg) 0 50% no-repeat;
  background-size: 114px 114px;
}
@media (max-width: 768px) {
  .p-ttl03.is-03_02 {
    background-size: 69px 69px;
  }
}
.p-ttl03.is-03_02 .is-mn {
  color: #fff;
}

.p-btn01 {
  display: inline-block;
  color: #fff;
  padding: 21px 21px;
  background: #25bf09;
  border-radius: 80px;
  width: 100%;
  border: 3px solid #25bf09;
  transition: .3s;
  position: relative;
  box-shadow: 6px 6px 4px rgba(38, 74, 157, 0.2);
}
@media (max-width: 768px) {
  .p-btn01 {
    padding: 0 16px;
    height: 74px;
    line-height: 74px;
    border: none;
  }
}
.p-btn01 .is-ld01 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-btn01 .is-ld01 {
    display: none;
  }
}
.p-btn01 .is-ld02 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .p-btn01 .is-ld02 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.p-btn01:hover {
  background: #fff;
  color: #25bf09;
}
@media (max-width: 768px) {
  .p-btn01:hover {
    color: #fff;
    background: #25bf09;
  }
}
.p-btn01:hover::before {
  border-top: 3px solid #25bf09;
  border-right: 3px solid #25bf09;
}
@media (max-width: 768px) {
  .p-btn01:hover::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
.p-btn01::before {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  top: auto;
  right: 32px;
  bottom: 20px;
  left: auto;
  content: "";
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}

.p-btn02 {
  font-size: 30px;
  font-size: 1.875rem;
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #25bf09;
  padding: 0 24px;
  border: 3px solid #25bf09;
  border-radius: 4px;
  line-height: 80px;
  height: 80px;
  transition: .3s;
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
}
@media (max-width: 1040px) {
  .p-btn02 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 55px;
    height: 55px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .p-btn02 {
    max-width: auto;
  }
}
.p-btn02:hover {
  background: none;
  color: #25bf09;
}
.p-btn02:hover::before {
  border-top: 3px solid #25bf09;
  border-right: 3px solid #25bf09;
}
.p-btn02::before {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 32px;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}

.p-btn03 {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  color: #00a4e3;
  width: 100%;
  border: 3px solid #00a4e3;
  font-weight: bold;
  height: 50px;
  width: 100%;
  line-height: 45px;
  transition: .3s;
  text-align: center;
  position: relative;
}
.p-btn03::before {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 24px;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #00a4e3;
  border-right: 3px solid #00a4e3;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}
.p-btn03:hover {
  color: #fff;
  background: #00a4e3;
}
.p-btn03:hover::before {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}

.p-btn04 {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  color: #fff;
  width: 100%;
  border: 3px solid #00a4e3;
  background: #00a4e3;
  font-weight: bold;
  height: 50px;
  width: 100%;
  line-height: 45px;
  transition: .3s;
  text-align: center;
  position: relative;
}
.p-btn04::before {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: 24px;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  transition: .3s;
}
.p-btn04:hover {
  color: #00a4e3;
  background: none;
}
.p-btn04:hover::before {
  border-top: 3px solid #00a4e3;
  border-right: 3px solid #00a4e3;
}

.p-btn05 {
  font-size: 18px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-weight: bold;
  border: 3px solid #00a4e3;
  padding: 24px 40px;
  color: #00a4e3;
  min-width: 224px;
  display: inline-block;
  position: relative;
  text-align: center;
}
.p-btn05:hover {
  opacity: 0.7;
}
@media (max-width: 1040px) {
  .p-btn05 {
    min-width: 200px;
    padding: 16px 12px;
  }
}
@media (max-width: 768px) {
  .p-btn05 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: calc(22.4/16);
    min-width: 100px;
    padding: 16px 8px;
  }
}
@media (max-width: 360px) {
  .p-btn05 {
    font-size: 12px;
    font-size: 0.75rem;
    min-width: 80px;
    padding: 16px 8px;
  }
}
.p-btn05.is-white::before, .p-btn05.is-white::after {
  background: #fff;
}
.p-btn05::before {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-left: 3px solid #00a4e3;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  background: #f6f8fd;
}
.p-btn05::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -24px;
  right: -3px;
  width: 30px;
  height: 30px;
  border-left: 3px solid #00a4e3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  background: #f6f8fd;
}

.p-btn06 {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  font-weight: bold;
  color: #fff;
  padding: 11px 32px;
  background: #25bf09;
  border: 3px solid #25bf09;
  border-radius: 40px;
  transition: .3s;
}
@media (max-width: 1040px) {
  .p-btn06 {
    padding: 8px 16px;
  }
}
.p-btn06:hover {
  background: none;
  color: #25bf09;
}

.p-tgt01 {
  margin-top: -104px;
  padding-top: 104px;
  display: block;
}
@media (max-width: 768px) {
  .p-tgt01 {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.reason {
  background: #f6f8fd;
  position: relative;
  margin: 0 0 8.81944vw;
  padding: 64px 0 0;
}
@media (max-width: 768px) {
  .reason {
    padding: 40px 0;
  }
}
.reason::before {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -8.81944vw;
  left: 0;
  content: "";
  padding-top: 8.819444444%;
  background: url(../img/sec_bg_blue.svg) 0 0 no-repeat #fff;
  background-size: cover;
}
.reason__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
}
.reason__anchor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 0 0 50px;
}
.reason__anchor > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .reason__anchor {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
@media (max-width: 768px) {
  .reason__anchor {
    margin: 0 0 40px;
  }
}
@media (max-width: 360px) {
  .reason__anchor {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .reason__anchor > * {
    min-height: 0%;
  }
}
@media (max-width: 360px) and (max-width: 768px) {
  .reason__anchor {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}

.reason__anchor > li {
  margin: 0 40px 0 0;
}
@media (max-width: 768px) {
  .reason__anchor > li {
    margin: 0;
  }
}
.reason__anchor > li:last-child {
  margin: 0;
}
.reason__li > li {
  margin: -20px 0 64px;
  padding-top: 20px;
}
.reason__li__fig {
  margin: 48px 0 40px;
}
@media (max-width: 768px) {
  .reason__li__fig {
    margin: 32px 0 40px;
  }
}
.reason__ld {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(30/20);
  text-align: center;
  margin: 0 0 24px;
  color: #264a9d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reason__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
    text-align: left;
  }
}
.reason__btn {
  text-align: center;
}
@media (max-width: 768px) {
  .reason .reduction {
    margin-bottom: 64px;
  }
}
.reason .reduction__ld {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 24px;
  height: 52px;
  line-height: 52px;
  background: #264a9d;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .reason .reduction__ld {
    font-size: 16px;
    font-size: 1rem;
    height: 48px;
    line-height: 48px;
  }
}
@media (max-width: 360px) {
  .reason .reduction__ld {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.reason .reduction__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 0 20px;
}
.reason .reduction__li > * {
  width: calc(33.33333% - 13.33333px);
  margin-right: 20px;
  margin-bottom: 0px;
  min-height: 0%;
}
.reason .reduction__li > *:nth-child(3n) {
  margin-right: 0;
}
.reason .reduction__li > *:nth-last-child(1) {
  margin-bottom: 0;
}
.reason .reduction__li > *:nth-last-child(2) {
  margin-bottom: 0;
}
.reason .reduction__li > *:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .reason .reduction__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center;
  }
  .reason .reduction__li > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .reason .reduction__li > *:nth-child(3n) {
    margin-right: 0px;
  }
  .reason .reduction__li > *:nth-child(1n) {
    margin-right: 0;
  }
  .reason .reduction__li > *:nth-last-child(1) {
    margin-bottom: 24px;
  }
  .reason .reduction__li > *:nth-last-child(2) {
    margin-bottom: 24px;
  }
  .reason .reduction__li > *:nth-last-child(3) {
    margin-bottom: 24px;
  }
  .reason .reduction__li > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .reason .reduction__li {
    padding: 0;
  }
}
.reason .reduction__li > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 0 20px 0 0;
}
.reason .reduction__li > li > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .reason .reduction__li > li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
.reason .reduction__li > li:last-child {
  margin: 0;
}
.reason .reduction__li__fig {
  width: 90px;
  position: relative;
}
.reason .reduction__li__fig > img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 60px;
}
.reason .reduction__li__txt {
  width: calc(100% - 90px);
  padding: 0 0 0 16px;
}
.reason .reduction__li__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #264a9d;
  margin: 0 0 8px;
  line-height: calc(30/20);
}
@media (max-width: 768px) {
  .reason .reduction__li__ttl {
    margin: 0 0 16px;
  }
}
.reason .reduction__li__ld {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
@media (max-width: 768px) {
  .reason .saving {
    margin-bottom: 40px;
  }
}
.reason .saving__ld {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(27/18);
  margin: 0 0 40px;
  padding: 16px 0 0 130px;
}
@media (max-width: 768px) {
  .reason .saving__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
    padding: 16px 0 0;
  }
}
.reason .saving__sec {
  margin: 0 0 48px;
}
.reason .saving__sec.is-last {
  margin: 0;
}
.reason .saving__sec.is-last .saving__sec__ld {
  margin: 0 0 32px;
}
.reason .saving__sec.is-last .saving__sec__fig {
  margin: 0 0 24px;
}
.reason .saving__sec__ld {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(27/18);
  margin: 0 0 40px;
  padding: 0 0 0 24px;
}
@media (max-width: 768px) {
  .reason .saving__sec__ld {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 56px;
    line-height: calc(24/16);
    padding: 0 0 0 12px;
  }
}
.reason .saving__sec__ld span {
  font-weight: bold;
}
.reason .saving__sec__fig {
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .reason .saving__sec__fig {
    margin: 0 0 40px;
  }
  .reason .saving__sec__fig img {
    margin: 0 auto;
  }
}
.reason .saving__sec__an {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-align: center;
}
@media (max-width: 768px) {
  .reason .saving__sec__an {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: calc(22.4/14);
    text-align: left;
  }
}
.reason .superiority {
  position: relative;
  margin: 0 0 64px;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .reason .superiority {
    padding: 40px 0;
    margin-bottom: 40px;
  }
}
.reason .superiority__in {
  position: relative;
  z-index: 1;
}
.reason .superiority__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
  margin: 103px 0 0;
}
.reason .superiority__li > * {
  width: calc(33.33333% - 10.66667px);
  margin-right: 16px;
  margin-bottom: 0px;
  min-height: 0%;
}
.reason .superiority__li > *:nth-child(3n) {
  margin-right: 0;
}
.reason .superiority__li > *:nth-last-child(1) {
  margin-bottom: 0;
}
.reason .superiority__li > *:nth-last-child(2) {
  margin-bottom: 0;
}
.reason .superiority__li > *:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .reason .superiority__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .reason .superiority__li > * {
    width: calc(50% - 8px);
    margin-right: 16px;
    margin-bottom: 120px;
  }
  .reason .superiority__li > *:nth-child(3n) {
    margin-right: 16px;
  }
  .reason .superiority__li > *:nth-child(2n) {
    margin-right: 0;
  }
  .reason .superiority__li > *:nth-last-child(1) {
    margin-bottom: 120px;
  }
  .reason .superiority__li > *:nth-last-child(2) {
    margin-bottom: 120px;
  }
  .reason .superiority__li > *:nth-last-child(3) {
    margin-bottom: 120px;
  }
  .reason .superiority__li > *:nth-last-child(1) {
    margin-bottom: 0;
  }
  .reason .superiority__li > *:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .reason .superiority__li {
    margin: 88px 0 0;
  }
}
.reason .superiority__li > li {
  border-radius: 4px;
  background: #fff;
  position: relative;
}
.reason .superiority__li > li.is-others::before {
  position: absolute;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -72px;
  bottom: auto;
  content: "";
  width: 246px;
  height: 63px;
  background: url(../img/ico_42.svg) 0 0 no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .reason .superiority__li > li.is-others::before {
    top: -62px;
    width: 150px;
    height: 54px;
    background: url(../img/ico_42_sp.svg) 0 0 no-repeat;
    background-size: cover;
  }
}
.reason .superiority__li > li.is-backstore {
  box-shadow: 0 0 20px #00a4e3;
  border: 4px solid #00a4e3;
}
@media (max-width: 768px) {
  .reason .superiority__li > li.is-backstore {
    width: 100%;
    margin: 0;
  }
}
.reason .superiority__li > li.is-backstore::before {
  position: absolute;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -94px;
  bottom: auto;
  content: "";
  width: 334px;
  height: 79px;
  background: url(../img/ico_76.svg) 0 0 no-repeat;
  background-size: cover;
}
@media (max-width: 1040px) {
  .reason .superiority__li > li.is-backstore::before {
    width: 250.5px;
    height: 59.25px;
  }
}
@media (max-width: 768px) {
  .reason .superiority__li > li.is-backstore::before {
    width: 342px;
    height: 79px;
    background: url(../img/ico_76_sp.svg) 0 0 no-repeat;
    background-size: cover;
  }
}
.reason .superiority__li__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  height: 52px;
  line-height: 52px;
  background: #f6f8fd;
  color: #264a9d;
  margin: 0 0 24px;
  text-align: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
@media (max-width: 768px) {
  .reason .superiority__li__ttl {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    height: auto;
    margin: 0 0 16px;
    padding: 16px 0;
  }
}
.reason .superiority__li__ttl.is-backstore {
  height: 82px;
  line-height: 82px;
}
@media (max-width: 768px) {
  .reason .superiority__li__ttl.is-backstore {
    height: auto;
    line-height: 1;
    padding: 24px 0;
  }
}
.reason .superiority__li__ttl.is-backstore img {
  vertical-align: middle;
}
@media (max-width: 768px) {
  .reason .superiority__li__ttl.is-backstore img {
    height: 32px;
  }
}
.reason .superiority__li__ld {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 24px;
  font-weight: bold;
  text-align: center;
  color: #264a9d;
}
@media (max-width: 768px) {
  .reason .superiority__li__ld {
    font-size: 16px;
    font-size: 1rem;
  }
}
.reason .superiority__li__ld span {
  font-size: 36px;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .reason .superiority__li__ld span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .reason .superiority__li__ld.is-backstore {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.reason .superiority__li__ld.is-backstore > span {
  font-size: 66px;
  font-size: 4.125rem;
  display: inline-block;
  position: relative;
}
.reason .superiority__li__ld.is-backstore > span::before {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 82px;
  height: 82px;
  background: #FFF361;
  border-radius: 82px;
  z-index: 1;
}
.reason .superiority__li__ld.is-backstore i {
  position: relative;
  z-index: 2;
}
.reason .superiority__li__li {
  margin: 0 0 24px;
  padding: 0 0 0 50px;
}
@media (max-width: 1040px) {
  .reason .superiority__li__li {
    padding: 0 0 0 16px;
  }
}
.reason .superiority__li__li > li {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(27/18);
}
.reason .superiority__li__li > li::before {
  content: "";
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -0px;
  padding: 0 4px 0 0;
  background: url(../img/ico_check.svg) 0 0 no-repeat;
  background-size: contain;
}
@media (max-width: 1040px) {
  .reason .superiority__li__li > li::before {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 1040px) {
  .reason .superiority__li__li > li {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: calc(21/14);
    margin: 0 0 4px;
  }
}
.reason .superiority__li__li > li:last-child {
  margin: 0;
}
.reason .superiority__an {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  display: block;
  text-align: center;
  margin: 32px 0 0;
}
@media (max-width: 768px) {
  .reason .superiority__an {
    text-align: left;
    line-height: calc(22.4/14);
  }
}
.reason .superiority::before {
  position: absolute;
  display: block;
  width: 100vw;
  height: 100%;
  top: 0;
  right: auto;
  bottom: auto;
  left: calc(((100vw - 100%) / 2) * -1);
  content: "";
  background: #264a9d;
}
.reason .superiority::after {
  position: absolute;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  bottom: auto;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 15px 0 15px;
  border-color: #f6f8fd transparent transparent transparent;
}

.feature {
  padding: 64px 0;
  position: relative;
  margin: 0 0 8.81944vw;
}
@media (max-width: 768px) {
  .feature {
    padding: 40px 0;
  }
}
.feature::before {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -8.81944vw;
  left: 0;
  content: "";
  padding-top: 8.819444444%;
  background: url(../img/sec_bg_white.svg) 0 0 no-repeat #f6f8fd;
  background-size: cover;
}
.feature__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
}
.feature__ld {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(30/20);
  text-align: center;
  margin: 0 0 24px;
  color: #264a9d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .feature__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(26/14);
  }
}
.feature__btn {
  text-align: center;
}
.feature__anchor {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 0 0 50px;
}
.feature__anchor > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .feature__anchor {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
@media (max-width: 768px) {
  .feature__anchor {
    margin: 0 0 40px;
  }
}
@media (max-width: 360px) {
  .feature__anchor {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .feature__anchor > * {
    min-height: 0%;
  }
}
@media (max-width: 360px) and (max-width: 768px) {
  .feature__anchor {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}

.feature__anchor > li {
  margin: 0 40px 0 0;
}
@media (max-width: 768px) {
  .feature__anchor > li {
    margin: 0;
  }
}
.feature__anchor > li:last-child {
  margin: 0;
}
.feature__li {
  margin: 0 0 64px;
}
.feature__li > li {
  margin: 0 0 64px;
}
.feature__li > li:last-child {
  margin: 0;
}
.feature .interface__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 64px 0 0;
  padding: 0 16px;
}
.feature .interface__li > * {
  width: calc(33.33333% - 10.66667px);
  margin-right: 16px;
  margin-bottom: 0px;
  min-height: 0%;
}
.feature .interface__li > *:nth-child(3n) {
  margin-right: 0;
}
.feature .interface__li > *:nth-last-child(1) {
  margin-bottom: 0;
}
.feature .interface__li > *:nth-last-child(2) {
  margin-bottom: 0;
}
.feature .interface__li > *:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .feature .interface__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .feature .interface__li > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 16px;
  }
  .feature .interface__li > *:nth-child(3n) {
    margin-right: 0px;
  }
  .feature .interface__li > *:nth-child(1n) {
    margin-right: 0;
  }
  .feature .interface__li > *:nth-last-child(1) {
    margin-bottom: 16px;
  }
  .feature .interface__li > *:nth-last-child(2) {
    margin-bottom: 16px;
  }
  .feature .interface__li > *:nth-last-child(3) {
    margin-bottom: 16px;
  }
  .feature .interface__li > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .feature .interface__li {
    margin: 32px 0 0;
    padding: 0;
  }
}
.feature .interface__li__fig {
  margin: 0 0 16px;
  text-align: center;
}
.feature .interface__li__fig img {
  height: 73px;
  margin: 0 0 32px;
}
.feature .interface__li__fig figcaption {
  font-size: 20px;
  font-size: 1.25rem;
  color: #264a9d;
  display: block;
  text-align: center;
  font-weight: bold;
}
.feature .interface__li__ld {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
.feature .correspondence__cnt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 48px 0 0;
}
.feature .correspondence__cnt > * {
  width: calc(50% - 22px);
  margin-right: 44px;
  margin-bottom: 0px;
  min-height: 0%;
}
.feature .correspondence__cnt > *:nth-child(2n) {
  margin-right: 0;
}
.feature .correspondence__cnt > *:nth-last-child(1) {
  margin-bottom: 0;
}
.feature .correspondence__cnt > *:nth-last-child(2) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .feature .correspondence__cnt {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .feature .correspondence__cnt > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .feature .correspondence__cnt > *:nth-child(2n) {
    margin-right: 0px;
  }
  .feature .correspondence__cnt > *:nth-child(1n) {
    margin-right: 0;
  }
  .feature .correspondence__cnt > *:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .feature .correspondence__cnt > *:nth-last-child(2) {
    margin-bottom: 0px;
  }
  .feature .correspondence__cnt > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .feature .correspondence__cnt {
    margin: 32px 0 0;
  }
}
.feature .correspondence__ld {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(27/18);
}
@media (max-width: 768px) {
  .feature .correspondence__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
  }
}
.feature .correspondence__an {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 24px 0 0;
}
@media (max-width: 360px) {
  .feature .correspondence__an {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.feature .correspondence__an a {
  cursor: pointer;
  text-decoration: underline;
  color: #00a4e3;
}
.feature .correspondence__an a:hover {
  text-decoration: none;
}
.feature .correspondence__fig {
  display: block;
}
@media (max-width: 768px) {
  .feature .correspondence__fig {
    margin: 0 0 24px !important;
  }
}
.feature .solve__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 48px 0 0;
  padding: 0 16px;
}
.feature .solve__li > * {
  width: calc(25% - 12px);
  margin-right: 16px;
  margin-bottom: 0px;
  min-height: 0%;
}
.feature .solve__li > *:nth-child(4n) {
  margin-right: 0;
}
.feature .solve__li > *:nth-last-child(1) {
  margin-bottom: 0;
}
.feature .solve__li > *:nth-last-child(2) {
  margin-bottom: 0;
}
.feature .solve__li > *:nth-last-child(3) {
  margin-bottom: 0;
}
.feature .solve__li > *:nth-last-child(4) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .feature .solve__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .feature .solve__li > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .feature .solve__li > *:nth-child(4n) {
    margin-right: 0px;
  }
  .feature .solve__li > *:nth-child(1n) {
    margin-right: 0;
  }
  .feature .solve__li > *:nth-last-child(1) {
    margin-bottom: 24px;
  }
  .feature .solve__li > *:nth-last-child(2) {
    margin-bottom: 24px;
  }
  .feature .solve__li > *:nth-last-child(3) {
    margin-bottom: 24px;
  }
  .feature .solve__li > *:nth-last-child(4) {
    margin-bottom: 24px;
  }
  .feature .solve__li > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .feature .solve__li {
    padding: 0;
  }
}
.feature .solve__li__fig {
  margin: 0 0 16px;
  text-align: center;
}
.feature .solve__li__fig img {
  height: 100px;
  margin: 0 0 16px;
}
.feature .solve__li__fig figcaption {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(30/20);
  color: #264a9d;
  display: block;
  text-align: center;
  font-weight: bold;
  min-height: 60px;
}
@media (max-width: 768px) {
  .feature .solve__li__fig figcaption {
    min-height: auto;
  }
}
.feature .solve__li__ld {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}

.sample {
  background: #f6f8fd;
  position: relative;
  margin: 0 0 8.81944vw;
  padding: 64px 0 0;
}
@media (max-width: 768px) {
  .sample {
    padding: 40px 0;
  }
}
.sample::before {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -8.81944vw;
  left: 0;
  content: "";
  padding-top: 8.819444444%;
  background: url(../img/sec_bg_blue.svg) 0 0 no-repeat #fff;
  background-size: cover;
}
.sample__ld {
    text-align: center;
    font-size: 1.25rem;
}
@media (max-width: 768px) {
  .sample__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(26/14);
    display: block;
  }
}
.sample__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
}
.sample__ld02 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(30/20);
  text-align: center;
  margin: 0 0 24px;
  color: #264a9d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .sample__ld02 {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(26/14);
  }
}
.sample__btn {
  text-align: center;
}
.sample__li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 30px 0 80px;
}
.sample__li > * {
  width: calc(50% - 2px);
  margin-right: 2px;
  margin-bottom: 0px;
  min-height: 0%;
}
.sample__li > *:nth-child(3n) {
  margin-right: 0;
}
.sample__li > *:nth-last-child(1) {
  margin-bottom: 0;
}
.sample__li > *:nth-last-child(2) {
  margin-bottom: 0;
}
.sample__li > *:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sample__li {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .sample__li > * {
    width: calc(50% - 10px);
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .sample__li > *:nth-child(3n) {
    margin-right: 0px;
  }
  .sample__li > *:nth-child(1n) {
    margin-right: 0;
  }
  .sample__li > *:nth-last-child(1) {
    margin-bottom: 24px;
  }
  .sample__li > *:nth-last-child(2) {
    margin-bottom: 24px;
  }
  .sample__li > *:nth-last-child(3) {
    margin-bottom: 24px;
  }
  .sample__li > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .sample__li {
    margin: 40px 0;
  }
}
.sample__li > li {
  background: #fff;
  padding: 24px;
}
.sample__li__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0 24px;
  color: #264a9d;
  border-bottom: 1px solid #B4C4E9;
    line-height: 1.7rem;
}
.sample__li__detail {
  padding: 24px 0 16px;
  border-bottom: 1px solid #B4C4E9;
}
@media (max-width: 1040px) {
  .sample__li__detail {
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  .sample__li__detail {
    padding: 24px 0 16px;
  }
}
.sample__li__detail__dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
.sample__li__detail__dl > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .sample__li__detail__dl {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
@media (max-width: 1040px) {
  .sample__li__detail__dl {
    display: block;
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  .sample__li__detail__dl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
    padding: 0;
  }
  .sample__li__detail__dl > * {
    min-height: 0%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .sample__li__detail__dl {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}

.sample__li__detail__dl > dt {
  font-weight: bold;
  color: #264a9d;
  width: 130px;
  padding: 0 16px 16px 0;
}
@media (max-width: 1040px) {
  .sample__li__detail__dl > dt {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .sample__li__detail__dl > dt {
    width: 130px;
    padding: 0 16px 0 0;
  }
}
.sample__li__detail__dl > dd {
  width: calc(100% - 130px);
}
@media (max-width: 1040px) {
  .sample__li__detail__dl > dd {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sample__li__detail__dl > dd {
    width: calc(100% - 130px);
  }
}
.sample__li__ld {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
  padding: 24px 0;
}
.sample__li__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: center;
      align-items: center;
}
.sample__li__info > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .sample__li__info {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center;
  }
}
.sample__li__info__fig {
  width: 80px;
}
.sample__li__info__dl {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
  width: calc(100% - 80px);
  padding: 0 0 0 16px;
}
.sample__li__info__dl > dt {
  font-weight: bold;
}

.small {font-size: small;
margin-top:1rem;
color: grey;}

.flow {
  padding: 64px 0;
  position: relative;
  margin: 0 0 8.81944vw;
}
@media (max-width: 768px) {
  .flow {
    padding: 40px 0;
  }
}
.flow::before {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -8.81944vw;
  left: 0;
  content: "";
  padding-top: 8.819444444%;
  background: url(../img/sec_bg_white.svg) 0 0 no-repeat #f6f8fd;
  background-size: cover;
}
.flow__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
}
.flow__sec {
  margin: 0 0 40px;
}
.flow__sec__ld {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: calc(27/18);
}
.flow__sec__ld.is-backup {
  display: none;
}
@media (max-width: 768px) {
  .flow__sec__ld.is-backup {
    display: block;
  }
}
@media (max-width: 768px) {
  .flow__sec__ld {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
    padding: 0 0 0 12px;
  }
  .flow__sec__ld span {
    font-weight: bold;
  }
}
.flow__steps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 32px 0 0;
}
.flow__steps > * {
  min-height: 0%;
}
@media (max-width: 768px) {
  .flow__steps {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
}
.flow__steps > li {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  width: 82px;
  height: 238px;
  margin: 0 60px 0 0;
  border: 2.4px solid #7F9FE9;
  border-radius: 6.4px;
  position: relative;
}
@media (max-width: 768px) {
  .flow__steps > li {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 0 0 30px;
  }
}
.flow__steps > li::before {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: auto;
  right: -40px;
  left: auto;
  content: "";
  width: 24px;
  height: 24px;
  border-top: 6px solid #7F9FE9;
  border-right: 6px solid #7F9FE9;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 768px) {
  .flow__steps > li::before {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    position: absolute;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: -28px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #7F9FE9;
    border-right: 3px solid #7F9FE9;
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
  }
}
.flow__steps > li:last-child {
  margin: 0;
}
.flow__steps > li:last-child::before {
  display: none;
}
.flow__steps > li > span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
  font-size: 1.125rem;
  color: #264a9d;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: block;
  height: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .flow__steps > li > span {
    width: 100%;
    -webkit-writing-mode: vertical-tb;
    -ms-writing-mode: tb-tb;
    writing-mode: horizontal-tb;
  }
}
.flow__backup {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  height: 149px;
  margin: 32px 0 0;
  padding: 0 60px;
  background: url(../img/flow_bg.png) 0 0 no-repeat;
  background-size: contain;
}
.flow__backup > * {
  width: calc(33.33333% - 40px);
  margin-right: 60px;
  margin-bottom: 0px;
  min-height: 0%;
}
.flow__backup > *:nth-child(3n) {
  margin-right: 0;
}
.flow__backup > *:nth-last-child(1) {
  margin-bottom: 0;
}
.flow__backup > *:nth-last-child(2) {
  margin-bottom: 0;
}
.flow__backup > *:nth-last-child(3) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .flow__backup {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .flow__backup > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-child(3n) {
    margin-right: 0px;
  }
  .flow__backup > *:nth-child(1n) {
    margin-right: 0;
  }
  .flow__backup > *:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-last-child(2) {
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-last-child(3) {
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 1040px) {
  .flow__backup {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
    width: 343px;
    height: 451px;
    margin: 32px auto 0;
    background: url(../img/flow_bg_sp.png) 0 0 no-repeat;
    background-size: contain;
    padding: 0;
  }
  .flow__backup > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 0px;
    min-height: 0%;
  }
  .flow__backup > *:nth-child(1n) {
    margin-right: 0;
  }
  .flow__backup > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 1040px) and (max-width: 768px) {
  .flow__backup {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: stretch;
        align-items: stretch;
  }
  .flow__backup > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-child(1n) {
    margin-right: 0px;
  }
  .flow__backup > *:nth-child(1n) {
    margin-right: 0;
  }
  .flow__backup > *:nth-last-child(1) {
    margin-bottom: 0px;
  }
  .flow__backup > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}

@media (max-width: 360px) {
  .flow__backup {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
.flow__backup > li {
  padding: 24px 0;
  position: relative;
}
@media (max-width: 1040px) {
  .flow__backup > li {
    padding: 44px 0 0;
  }
}
.flow__backup > li.is-01 .flow__backup__ttl::before, .flow__backup > li.is-02 .flow__backup__ttl::before, .flow__backup > li.is-03 .flow__backup__ttl::before {
  content: "";
  width: 34px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.flow__backup > li.is-01 .flow__backup__ttl::before {
  background: url(../img/backup_ico01.svg) 0 50% no-repeat;
  background-size: contain;
}
.flow__backup > li.is-02 .flow__backup__ttl::before {
  background: url(../img/backup_ico02.svg) 0 50% no-repeat;
  background-size: contain;
}
.flow__backup > li.is-03 .flow__backup__ttl::before {
  background: url(../img/backup_ico03.svg) 0 50% no-repeat;
  background-size: contain;
}
.flow__backup > li.is-02, .flow__backup > li.is-03 {
  color: #fff;
}
.flow__backup > li.is-02 .flow__backup__ttl, .flow__backup > li.is-03 .flow__backup__ttl {
  color: #fff;
}
@media (max-width: 1040px) {
  .flow__backup > li.is-02, .flow__backup > li.is-03 {
    padding: 24px 0 0;
  }
}
.flow__backup__ttl {
  font-size: 20px;
  font-size: 1.25rem;
  color: #264a9d;
  font-weight: bold;
  text-align: center;
  margin: 0 0 8px;
  padding: 0 24px 0 0;
}
.flow__backup__ld {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
  text-align: center;
}
.flow__catch {
  position: relative;
  margin: 110px 0 0;
}
@media (max-width: 768px) {
  .flow__catch {
    margin: 100px 0 0;
  }
}
.flow__catch::before, .flow__catch::after {
  position: absolute;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -62px;
  bottom: auto;
  content: "";
  width: 24px;
  height: 24px;
  border-top: 6px solid #7F9FE9;
  border-right: 6px solid #7F9FE9;
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
}
@media (max-width: 768px) {
  .flow__catch::before, .flow__catch::after {
    top: -68px;
  }
}
.flow__catch::after {
  top: -84px;
}
@media (max-width: 768px) {
  .flow__catch::after {
    top: -88px;
  }
}
.flow__catch__sm {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  color: #00a4e3;
  margin: 0 0 16px;
}
.flow__catch__sm > span {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.flow__catch__sm > span::before {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  top: 9px;
  right: auto;
  bottom: auto;
  left: 0px;
  content: "";
  background: #00a4e3;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.flow__catch__sm > span::after {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  top: 9px;
  right: 0;
  bottom: auto;
  left: auto;
  content: "";
  background: #00a4e3;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.flow__catch__lg {
  font-size: 30px;
  font-size: 1.875rem;
  color: #264a9d;
  text-align: center;
}
@media (max-width: 768px) {
  .flow__catch__lg {
    line-height: calc(39/30);
  }
}
.flow__catch__lg i {
  position: relative;
  z-index: 2;
}
.flow__catch__lg > span {
  font-weight: bold;
  position: relative;
  display: inline-block;
}
.flow__catch__lg > span::before {
  position: absolute;
  display: block;
  width: calc(100% + 10px);
  height: 10px;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  content: "";
  background: #FFF361;
  z-index: 1;
}
@media (max-width: 768px) {
  .flow__catch__lg > span::before {
    position: absolute;
    display: block;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: 0;
  }
}

.plan {
  background: #f6f8fd;
  position: relative;
  margin: 0 0 8.81944vw;
  padding: 64px 0 0;
}
@media (max-width: 768px) {
  .plan {
    padding: 40px 0;
  }
}
.plan::before {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
  top: auto;
  right: auto;
  bottom: -8.81944vw;
  left: 0;
  content: "";
  padding-top: 8.819444444%;
  background: url(../img/sec_bg_blue.svg) 0 0 no-repeat #fff;
  background-size: cover;
}
.plan__in {
  max-width: 968px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box;
  padding-right: 16px;
  padding-left: 16px;
}
.plan__ld01 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 50px 0 0;
  text-align: center;
  line-height: calc(27/18);
}
@media (max-width: 768px) {
  .plan__ld01 {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
    margin: 0;
    text-align: left;
  }
}
.plan__ld02 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: calc(30/20);
  text-align: center;
  margin: 0 0 24px;
  color: #264a9d;
  font-weight: bold;
}
@media (max-width: 768px) {
  .plan__ld02 {
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(24/16);
  }
}
.plan__cnt {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-align: stretch;
      align-items: stretch;
  margin: 40px 0 72px;
}
.plan__cnt > * {
  width: calc(50% - 16px);
  margin-right: 32px;
  margin-bottom: 0px;
  min-height: 0%;
}
.plan__cnt > *:nth-child(2n) {
  margin-right: 0;
}
.plan__cnt > *:nth-last-child(1) {
  margin-bottom: 0;
}
.plan__cnt > *:nth-last-child(2) {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .plan__cnt {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .plan__cnt > * {
    width: calc(100% - 0px);
    margin-right: 0px;
    margin-bottom: 24px;
  }
  .plan__cnt > *:nth-child(2n) {
    margin-right: 0px;
  }
  .plan__cnt > *:nth-child(1n) {
    margin-right: 0;
  }
  .plan__cnt > *:nth-last-child(1) {
    margin-bottom: 24px;
  }
  .plan__cnt > *:nth-last-child(2) {
    margin-bottom: 24px;
  }
  .plan__cnt > *:nth-last-child(1) {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .plan__cnt {
    margin: 50px 0;
  }
}
.plan__cnt .server,
.plan__cnt .endpoint {
  background: #fff;
}
.plan__cnt .server__ttlbox,
.plan__cnt .endpoint__ttlbox {
  padding: 32px 16px 24px;
  color: #fff;
}
@media (max-width: 1040px) {
  .plan__cnt .server__ttlbox,
  .plan__cnt .endpoint__ttlbox {
    padding: 24px 8px;
  }
}
.plan__cnt .server__ttl,
.plan__cnt .endpoint__ttl {
  text-align: center;
}
.plan__cnt .server__ttl .is-ttl,
.plan__cnt .endpoint__ttl .is-ttl {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0 0 12px;
  font-weight: bold;
}
@media (max-width: 1040px) {
  .plan__cnt .server__ttl .is-ttl,
  .plan__cnt .endpoint__ttl .is-ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.plan__cnt .server__ttl .is-ttl > span::before,
.plan__cnt .endpoint__ttl .is-ttl > span::before {
  content: "";
  width: 34px;
  height: 34px;
  display: inline-block;
  padding: 0 16px 0 0;
  vertical-align: -5px;
}
.plan__cnt .server__ttl .is-price,
.plan__cnt .endpoint__ttl .is-price {
  font-size: 27px;
  font-size: 1.6875rem;
  margin: 0 0 24px;
  font-weight: bold;
}
@media (max-width: 1040px) {
  .plan__cnt .server__ttl .is-price,
  .plan__cnt .endpoint__ttl .is-price {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.plan__cnt .server__ttl .is-price > span,
.plan__cnt .endpoint__ttl .is-price > span {
  font-size: 36px;
  font-size: 2.25rem;
}
@media (max-width: 1040px) {
  .plan__cnt .server__ttl .is-price > span,
  .plan__cnt .endpoint__ttl .is-price > span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.plan__cnt .server__ld,
.plan__cnt .endpoint__ld {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media (max-width: 1040px) {
  .plan__cnt .server__ld,
  .plan__cnt .endpoint__ld {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .plan__cnt .server__ld,
  .plan__cnt .endpoint__ld {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: calc(22.4/14);
  }
}
.plan__cnt .server__in,
.plan__cnt .endpoint__in {
  padding: 24px;
}
@media (max-width: 768px) {
  .plan__cnt .server__in,
  .plan__cnt .endpoint__in {
    padding: 16px 20px 28px;
  }
}
.plan__cnt .server__dl > dt,
.plan__cnt .endpoint__dl > dt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  height: 50px;
  line-height: 50px;
  color: #264a9d;
  background: #f6f8fd;
  margin: 0 0 16px;
  text-align: center;
}
.plan__cnt .server__dl > dd,
.plan__cnt .endpoint__dl > dd {
  margin: 0 0 24px;
}
.plan__cnt .server__dl > dd.is-last,
.plan__cnt .endpoint__dl > dd.is-last {
  margin: 0;
}
.plan__cnt .server__dl > dd p,
.plan__cnt .endpoint__dl > dd p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
.plan__cnt .server__dl > dd small,
.plan__cnt .endpoint__dl > dd small {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
}
.plan__cnt .server__dl > dd ul,
.plan__cnt .endpoint__dl > dd ul {
  list-style-type: disc;
  list-style-position: inside;
}
.plan__cnt .server__dl > dd ul > li,
.plan__cnt .endpoint__dl > dd ul > li {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(22.4/14);
}
.plan__cnt .server {
  border: 3px solid #264a9d;
}
.plan__cnt .server__ttlbox {
  background: #264a9d;
}
.plan__cnt .server__ttl .is-ttl span::before {
  background: url(../img/plan_ico01.svg) 0 0 no-repeat;
}
.plan__cnt .endpoint {
  border: 3px solid #00a4e3;
}
.plan__cnt .endpoint__ttlbox {
  background: #00a4e3;
}
.plan__cnt .endpoint__ttl .is-ttl span::before {
  background: url(../img/plan_ico02.svg) 0 0 no-repeat;
}
.plan__btn {
  text-align: center;
}

/**
 *
 * Utility
 * 
 * 汎用クラスです。
 * 必要であればインポートしてください。
 * !importantは付いていません。
 *
 */
