@charset "UTF-8";

/*==================================================================
    style.css
===================================================================*/


/*==================================================================
    reset
===================================================================*/

html {
    overflow-x: hidden;
    background: #fff;
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
    min-width: 320px;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    word-wrap: break-word;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
    margin: 0;
    padding: 0;
}

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

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ul,
ol,
menu {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: "";
}

abbr,
acronym {
    border: none;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
}

a img,
map a {
    border: none;
}

a:hover,
a:active,
a:focus {
    outline: 0;
}

embed {
    width: 100%;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img,
object,
embed {
    max-width: 100%;
    height: auto;
}

object,
embed {
    height: 100%;
}

img {
    vertical-align: bottom;
    -ms-interpolation-mode: bicubic;
}

div {
    vertical-align: top;
}

strong {
    font-weight: bold;
}

em {
    font-style: normal;
}

select,
input,
button,
textarea,
button {
    font: 99% arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
    font-family: monospace;
    line-height: 1;
}


/*  touch
---------------------------------------------*/

a,
img,
button,
input[type="button"],
input[type="submit"],
.touch-hover {
    -webkit-tap-highlight-color: transparent;
}


/*  box-sizing
---------------------------------------------*/

* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}


/*  table
---------------------------------------------*/

table {
    empty-cells: show;
    font-size: 100%;
}


/*  main
---------------------------------------------*/


/* IE10,11対策 main要素の高さと幅を認識させる */

@media all and (-ms-high-contrast: none) {
    main {
        display: block;
    }
}


/*  list
---------------------------------------------*/

li {
    list-style: none;
    line-height: 1;
}


/*  form
---------------------------------------------*/

input {
    line-height: 1;
}

form img,
input,
select {
    vertical-align: middle;
}

textarea {
    resize: none;
}

select {
    padding: 1px;
}

legend {
    display: none;
}

input,
select,
textarea,
button {
    font-size: 1.4rem;
    vertical-align: middle;
    color: #000;
    height: auto;
    background-color: #fff;
}

textarea {
    height: auto;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
    -webkit-appearance: none;
    font-size: 1.2rem;
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ccc;
    color: #000;
    background: #fff;
    font-weight: normal;
    border-radius: 4px;
}


/* ======= outline ======= */

input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
    outline: none;
}


/* ======= label ======= */

label {
    margin-right: 1em;
    line-height: 1;
}


/*==================================================================
    utility
===================================================================*/


/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/


/*  display
---------------------------------------------*/

.noDisplay {
    display: none !important;
}

.block {
    display: block !important;
}

.inline {
    display: inline !important;
}

.inlineBlock {
    display: inline-block !important;
}


/* ======= display none ======= */

@media screen and (min-width: 960px) {
    .pc-none {
        display: none !important;
    }
}

@media screen and (max-width: 960px) {
    .sp-none {
        display: none !important;
    }
}

.tab-block {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .sp-none.-tabBlock {
        display: block !important;
    }
    .tab-none {
        display: none !important;
    }
    .tab-block {
        display: block;
    }
}

.u-ir {
    display: block;
    overflow: hidden;
    font: 0/0 a;
    white-space: nowrap;
    text-indent: 100%;
}


/*  float
---------------------------------------------*/

.leftBox {
    float: left;
}

.rightBox {
    float: right;
}

.nofloat {
    float: none !important;
}

.clearfix {
    zoom: 1;
}

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

.clear {
    clear: both !important;
}


/* IE6 */

* html .clearfix {
    zoom: 1;
}


/* IE7 */

*:first-child+html .clearfix {
    zoom: 1;
}


/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/

.bold {
    font-weight: bold !important;
}

.italic {
    font-style: italic !important;
}

.note {
    color: #dddddd;
    background-color: transparent;
    margin-left: 1em;
    text-indent: -1em;
}

.underline {
    text-decoration: underline !important;
}

.textNoLine {
    text-decoration: none !important;
}


/*  font-family
---------------------------------------------*/

.font1 {
    font-family: "Noto Sans JP" !important;
}

.font2 {
    font-family: "" !important;
}


/*==================================================================
    general
===================================================================*/


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

body {
    font-family: "Noto Sans JP", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    color: #000;
    background-color: transparent;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1;
    -webkit-font-kerning: normal;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: subpixel-antialiased;
}

@media screen and (max-width: 960px) {
    body {
        font-size: 1.3rem;
        line-height: 1;
    }
}

@media screen and (max-width: 374px) {
    html,
    body {
        font-size: 56.5%;
        line-height: 1;
    }
}


/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W0), local(メイリオ);
    font-weight: 100;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W1), local(メイリオ);
    font-weight: 200;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W2), local(メイリオ);
    font-weight: 300;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W3), local(メイリオ);
    font-weight: 400;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W4), local(メイリオ);
    font-weight: 500;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W5), local(メイリオ ボールド);
    font-weight: 600;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W6), local(メイリオ ボールド);
    font-weight: 700;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W7), local(メイリオ ボールド);
    font-weight: 800;
}

@font-face {
    font-family: "Hiragino Sans";
    src: local(HiraginoSans-W8), local(メイリオ ボールド);
    font-weight: 900;
}

@font-face {
    font-family: "Hiragino Sans W9";
    src: local(HiraginoSans-W9), local(メイリオ ボールド);
    font-weight: 900;
}


/* -----------------------------------------------
    p
------------------------------------------------*/

p {
    font-size: 1.4rem;
    line-height: 1.8;
}

@media screen and (max-width: 960px) {
    p {
        font-size: 1.3rem;
        line-height: 1.8;
    }
}


/* ======= hiwrite ======= */

::-moz-selection {
    background: #a6d2fc;
}

::selection {
    background: #a6d2fc;
}


/* ======= テキストの下線スタイル ======= */

.underHiwrite {
    background: linear-gradient(transparent 70%, #fcf420 70%);
}


/* ======= 上付き文字、下付き文字 ======= */

.supText {
    font-size: 75.5%;
    vertical-align: top;
    position: relative;
    top: -0.1em;
}

.subText {
    font-size: 75.5%;
    vertical-align: bottom;
    position: relative;
    top: 0.1em;
}


/* ======= 注釈 ======= */

.annotation {
    color: #666;
    background-color: transparent;
    font-size: 1.2rem;
}

@media screen and (max-width: 960px) {
    .annotation {
        font-size: 1.1rem;
    }
}


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

a {
    text-decoration: none;
    transition: all 200ms ease;
}

.pc a:hover {
    text-decoration: none;
}


/*  a img
---------------------------------------------*/

a img {
    background-color: rgba(255, 255, 255, 0.01);
    transition: all 200ms ease;
}

a[href^="tel:"] {
    cursor: default;
}


/* ======= hover ======= */

a[href^="tel:"]:hover img {
    opacity: 1;
}


/*  .link - decoration underline
---------------------------------------------*/

a.link {
    color: #ff7f42;
    background-color: transparent;
    text-decoration: underline;
}

.pc a.link:hover {
    text-decoration: none;
    color: #ff7f42;
    background-color: transparent;
}


/*==================================================================
    layout
===================================================================*/


/*  container
---------------------------------------------*/

.container {
    width: 100%;
    max-width: 1010px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container.-large {
    max-width: 1230px;
}

.container.-small {
    max-width: 830px;
}

.container.-min {
    max-width: 690px;
}

.container.-fluid {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}


/* ======= sp ======= */

@media screen and (max-width: 960px) {
    .container {
        max-width: auto;
    }
    .container.-large,
    .container.-small,
    .container.-min {
        max-width: auto;
    }
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .container.-tab,
    .tab-mw {
        width: 100%;
        max-width: 738px !important;
    }
}


/*==================================================================
    form
===================================================================*/


/*  autofill
---------------------------------------------*/

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


/*  hover
---------------------------------------------*/

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
    transition: all 200ms ease;
}

.pc input[type="text"]:hover,
.pc input[type="tel"]:hover,
.pc input[type="email"]:hover,
.pc input[type="password"]:hover,
.pc select:hover,
.pc textarea:hover {
    color: #333;
    border: 1px solid #ff7f42;
    background-color: #fff;
}


/*  focus
---------------------------------------------*/

input:focus,
select:focus,
textarea:focus {
    color: #000000;
    background-color: #fff;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    border: 1px solid #ff7f42;
}

input[type="button"]:focus,
input[type="submit"]:focus,
button[type="submit"]:focus,
input[type="file"],
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
button:focus {
    outline: none;
}


/*  input.short
---------------------------------------------*/

input.short,
select.short,
textarea.short {
    width: 40%;
}

@media screen and (max-width: 960px) {
    input.short,
    select.short,
    textarea.short {
        width: 100%;
    }
}


/*  must 必須項目
---------------------------------------------*/

.must {
    color: #e20c0c;
    background-color: transparent;
    font-size: 80%;
    vertical-align: top;
    position: relative;
    top: -0.4em;
    right: -0.2rem;
}


/*  button submit
---------------------------------------------*/

input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    display: inline-block;
    color: #fff;
    background-color: #ff7f42;
    border: 0;
    padding: 0rem 3rem;
    margin-bottom: 0.5em;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    height: 50px;
    position: relative;
    transition: all 200ms ease;
}


/* ======= hover ======= */

.pc input[type="button"]:hover,
.pc input[type="submit"]:hover {
    opacity: 0.8;
    cursor: pointer;
}


/*  checkbox radio
---------------------------------------------*/


/* ======= common ======= */

input[type="checkbox"],
input[type="radio"] {
    transform-origin: right bottom;
    transform: scale(1, 1);
    cursor: pointer;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    outline: 0;
}

label.checkbox,
label.radio {
    padding-left: 1.5em;
    margin-bottom: 0.5em;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0;
}

label.checkbox input,
label.radio input {
    display: none;
}

label.checkbox span,
label.radio span {
    display: inline-block;
    position: relative;
}


/* ======= checkbox ======= */

label.checkbox span::before,
label.checkbox span::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 200ms ease;
}

label.checkbox span::before {
    top: 50%;
    transform: translateY(-50%);
    left: -22px;
    width: 16px;
    height: 16px;
    color: transparent;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

label.checkbox input[type="checkbox"]:checked+span::before {
    color: transparent;
    background: #ffbfa0;
    border: 1px solid #ffbfa0;
}

label.checkbox input[type="checkbox"]:checked+span::after {
    position: absolute;
    content: "";
    display: block;
    top: 3px;
    left: -19px;
    width: 10px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}


/* ======= radio ======= */

label.radio span::before,
label.radio span::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transition: all 200ms ease;
}

label.radio span::before {
    left: -22px;
    width: 18px;
    height: 18px;
    color: transparent;
    background: #fff;
    border: 1px solid #bcc2ba;
    border-radius: 100%;
    transform: translateY(-50%);
}

label.radio span::after {
    opacity: 0;
    left: -19px;
    transform-origin: center;
    transform: translateY(-50%) scale(1);
}

label.radio input[type="radio"]:checked+span::after {
    opacity: 1;
    left: -19px;
    width: 12px;
    height: 12px;
    background: #ffbfa0;
    border-radius: 100%;
}


/*  input file
---------------------------------------------*/

input[type="file"] {
    -webkit-appearance: none;
    display: none;
}

label.file {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    background-color: #ff7f42;
    padding: 1rem 2.5rem;
    margin-bottom: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 200ms ease;
}


/* ======= hover ======= */

.pc label.file:hover {
    color: #fff;
    background-color: #ffbfa0;
}


/*  select
---------------------------------------------*/

select {
    -webkit-appearance: none;
    width: 100%;
    position: relative;
    height: 40px;
    padding-left: 1rem;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1;
}

label.select {
    position: relative;
    display: block;
}

label.select::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    right: 1px;
    width: 38px;
    height: 38px;
}

label.select::after {
    position: absolute;
    content: "";
    display: block;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    border-top: 6px solid #000;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    font-size: 1.4rem;
}


/* IE9以下 */

label.select::after,
label.select::before {
    display: none\9;
}


/* IE10,11 */

@media all and (-ms-high-contrast: none) {
    label.select::after,
    label.select::before {
        display: none;
    }
}


/* ======= sp ======= */

@media screen and (max-width: 960px) {
    label.select::after {
        right: 10px;
        border-top: 5px solid #000;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        font-size: 1.4rem;
    }
}


/*==================================================================
    .headline01
===================================================================*/

.headline01 {
    text-align: center;
    font-weight: bold;
    font-size: 3.8rem;
    margin-bottom: 84px;
    letter-spacing: 0.1em;
    color: #333333;
    background-color: transparent;
}

.headline01 span {
    position: relative;
}

.headline01 span::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 18px;
    color: transparent;
    background-color: #ffbfa0;
}


/* ======= option ======= */

.headline01.-blue span::before {
    color: transparent;
    background-color: #bcdffe;
}

.headline01.-orange span::before {
    color: transparent;
    background-color: #ff7f42;
}

.headline01.-red {
    color: #ff4f42;
    background-color: transparent;
}

.headline01.-red span::before {
    color: transparent;
    background-color: #ff4f42;
}

.headline01.-twoRow span {
    display: inline-block;
}


/* tablet */

@media screen and (max-width: 960px) {
    .headline01 {
        font-size: 3.8rem;
        margin-bottom: 56px;
        letter-spacing: 0.1em;
    }
    .headline01 span {
        line-height: 1.45;
        display: inline;
        padding-bottom: 0em;
        background: linear-gradient(transparent 70%, #ffbfa0 70%);
    }
    .headline01 span::before {
        display: none;
    }
    .headline01.-twoRow span {
        display: inline;
    }
    .headline01.-blue span {
        background: linear-gradient(transparent 70%, #bcdffe 70%);
    }
    .headline01.-orange span {
        background: linear-gradient(transparent 70%, #ff7f42 70%);
    }
    .headline01.-red {
        color: #333;
    }
    .headline01.-red span {
        background: linear-gradient(transparent 70%, #ff4f42 70%);
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .headline01 {
        font-size: 2.6rem;
        margin-bottom: 34px;
    }
}


/*==================================================================
    headline02
===================================================================*/

.headline02 {
    text-align: center;
    font-weight: bold;
    font-size: 3.6rem;
    line-height: 1.4;
    margin-bottom: 34px;
    letter-spacing: 0.1em;
    color: #333333;
    background-color: transparent;
}

@media screen and (max-width: 960px) {
    .headline02 {
        font-size: 2.6rem;
        margin-bottom: 24px;
        letter-spacing: 0.1em;
    }
}


/*==================================================================
    headline03
===================================================================*/

.headline03 {
    line-height: 3.5;
}

@media screen and (max-width: 960px) {
    .headline03 {
        line-height: normal;
    }
}


/*==================================================================
    .btn01
===================================================================*/

.btn01 {
    display: inline-block;
    text-align: center;
    width: 400px;
    height: 80px;
    line-height: 80px;
    background-color: #ff7f42;
    color: #fff;
    border-radius: 40px;
    font-weight: bold;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0px 8px 0px #e35511;
}

.btn01::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateX(-50%) translateY(-50%);
    width: 12px;
    height: 18px;
    background-image: url("../img/common/arw_w01.svg");
    background-repeat: no-repeat;
    background-size: contain;
}


/* ======= hover ======= */

.pc .btn01:not(.-accessbility):hover {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px #e35511;
}

.pc .btn01.-pdf:hover {
    color: #fff;
}


/* ======= option ======= */

.btn01.-twoRow {
    padding-top: 13px;
    line-height: 1.2;
}

.btn01.-arwDown::after {
    transform: translateX(-50%) translateY(-50%) rotateZ(90deg);
}

.btn01.-txtS {
    font-size: 1.8rem;
}

.btn01.-external::after {
    background-image: url("../img/common/icon_external_w.svg");
    width: 27px;
    height: 23px;
    right: 10px;
}

.btn01.-external.-twoRow small {
    font-size: 1.6rem;
}

.btn01.-long {
    width: 460px;
}

.btn01.-blue {
    background-color: #2095fc;
    box-shadow: 0px 8px 0px #0577dc;
}

.pc .btn01.-blue:hover {
    box-shadow: 0px 0px 0px #0577dc;
}

.btn01.-pdf::after {
    background-image: url("../img/common/icon_pdf_w.svg");
    width: 31px;
    height: 39px;
    right: 24px;
}

.btn01.-bse::after {
    background-image: url("../img/common/icon_bse_w.svg");
    width: 31px;
    height: 39px;
    right: 24px;
}

.btn01.-accessbility::after {
    background-image: url("../img/common/icon_accesbility.svg");
    width: 31px;
    height: 39px;
    right: 24px;
}

.btn01.-multiline {
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: .005em;
    margin: 0 auto;
}

.btn01.-small {
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: .005em;
    width: 300px;
    margin: 2rem auto 0;
    height: auto;
    line-height: 1;
    box-shadow: none!important;
    border-radius: 6px!important;
}

.btn01.-small a {
    color: #FFF;
    font-size: 1.6rem;
    padding: 1.2rem 0 1.3rem 3.2rem;
}

.btn01.-small::after {
    width: 22px;
    height: 22px;
    left: 24px;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .btn01.-tabTwoRow {
        font-size: 2rem;
        line-height: 1.3;
        height: 80px;
        border-radius: 40px;
        padding-top: 0.7em;
        box-shadow: 0px 8px 0px #e35511;
    }
}

@media screen and (max-width: 960px) {
    .btn01 {
        width: 100%;
        max-width: 400px;
        height: 80px;
        line-height: 80px;
        border-radius: 40px;
        font-size: 2rem;
        box-shadow: 0px 8px 0px #e35511;
    }
    .btn01::after {
        right: 20px;
        width: 10px;
        height: 16px;
    }
    .btn01.-twoRow {
        padding-top: 10px;
        line-height: 1.2;
    }
    .btn01.-txtM-sp {
        font-size: 1.5rem;
    }
    .btn01.-txtM-sp.-twoRow {
        padding-top: 12px;
    }
    .btn01.-txtS {
        font-size: 1.4rem;
    }
    .btn01.-txtS.-twoRow {
        padding-top: 15px;
    }
    .btn01.-arwDown::after {
        right: 10px;
        width: 8px;
        height: 12px;
    }
    .btn01.-external::after {
        width: 18px;
        height: 16px;
        right: 5px;
    }
    .btn01.-external.-twoRow small {
        font-size: 1.4rem;
    }
    .btn01.-long {
        width: 100%;
    }
    .btn01.-blue {
        box-shadow: 0px 6px 0px #0577dc;
    }
    .btn01.-spW95 {
        width: calc(315 / 345 * 100%);
    }
    .btn01.-spMxw {
        max-width: 315px;
    }
    .btn01.-small {
        height: 36px;
        line-height: 36px;
        font-size: 1.2rem;
        border-radius: 18px;
    }
    .btn01.-small.-arwDown::after {
        right: 8px;
        width: 6px;
        height: 10px;
    }
    .btn01.-small {
        width: 295px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .btn01 {
        width: 100%;
        max-width: inherit;
        height: 60px;
        line-height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
        box-shadow: 0px 6px 0px #e35511;
    }
    .btn01.-pdf::after {
        background-image: url("../img/common/icon_pdf_w_sp.svg");
        width: 22px;
        height: 28px;
        right: 19px;
    }
    .btn01.-bse::after {
        background-image: url("../img/common/icon_bse_w_sp.svg");
        width: 22px;
        height: 28px;
        right: 19px;
    }
    .btn01.-small {
        width: 225px;
    }
    .btn01.-small a {
        font-size: 1.2rem;
        padding: 1.2rem .5rem 1.3rem 3.2rem;
    }
    .btn01.-small::after {
        width: 18px;
        height: 18px;
        left: 20px;
    }
}

@media screen and (max-width: 340px) {
    .btn01 {
        font-size: 1.4rem;
    }
    .btn01.-twoRow {
        padding-top: 1em;
        line-height: 1.2;
    }
    .btn01.-external::after {
        width: 15px;
        height: 12px;
        right: 5px;
    }
    .btn01.-external.-twoRow small {
        font-size: 1.1rem;
    }
    .btn01::after {
        right: 10px;
        width: 8px;
        height: 12px;
    }
    .btn01.-small.-arwDown::after {
        right: 5px;
        width: 5px;
        height: 8px;
    }
}


/*==================================================================
    bg
===================================================================*/

.bg-stripe {
    background: url("../img/common/bg_stripe_blue01.png") repeat;
}

.bg-stripe.-o {
    background: url("../img/common/bg_stripe_orange01.png") repeat;
}

.bg-stripe.-k {
    background: url("../img/common/bg_stripe_k01.png") repeat;
}


/*==================================================================
    .header
===================================================================*/

.header {
    width: 100%;
    background-color: #fff;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

@media screen and (max-width: 960px) {
    .header {
        padding-top: 30px;
        height: auto;
        /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25); */
        position: static;
        z-index: 999;
    }
    .header .container {
        display: block;
        padding-left: 0;
        padding-right: 0;
        height: auto;
    }
    .header__logo {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    .header__logo img {
        width: 240px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .header {
        padding-top: 15px;
    }
    .header .container {
        height: 80px;
    }
    .header__logo {
        margin-bottom: 12px;
    }
    .header__logo img {
        width: 160px;
    }
}


/*  .header__logo
---------------------------------------------*/

.pc .header__logo:hover {
    opacity: 0.6;
}


/* -----------------------------------------------
    .header__nav
------------------------------------------------*/

.header__nav {
    min-width: 460px;
    margin-top: -0.8rem;
}

.header__nav .header__nav-list {
    display: flex;
    justify-content: space-between;
}

.header__nav-list__item {
    margin: 0 16px;
    text-align: center;
}

.header__nav-list__item:last-child {
    margin-right: 0;
}

.header__nav .header__nav-list .header__nav-list__item a {
    font-size: 1.6rem;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    font-weight: bold;
    position: relative;
    display: flex;
    height: 4.4rem;
    align-items: center;
}

.header__nav .header__nav-list .header__nav-list__item a span {
    font-size: 1.4rem;
    display: block;
}

#top .header__nav .header__nav-list .header__nav-list__item:first-child a::before,
#apply .header__nav .header__nav-list .header__nav-list__item:nth-child(2) a::before,
#post .header__nav .header__nav-list .header__nav-list__item:nth-child(2) a::before,
#online .header__nav .header__nav-list .header__nav-list__item:nth-child(3) a::before,
#cities .header__nav .header__nav-list .header__nav-list__item:nth-child(4) a::before,
#faq .header__nav .header__nav-list .header__nav-list__item:nth-child(5) a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    color: transparent;
    background-color: #ff7f42;
}

.pc .header__nav-list__item a:hover {
    color: #ff7f42;
    background-color: #fff;
}

.pc .header-ml__accessvility .btn01.-small {
    margin: 0;
    position: absolute;
    top: 12px;
    width: 240px;
}

.pc .header-ml__accessvility .btn01.-small a {
    font-size: 1.2rem;
    padding: 1.0rem 0 0.9rem 3.2rem;
    transition: none;
}

.pc .header-ml__accessvility .btn01.-small::after {
    width: 18px;
    height: 17px;
}


/* ======= sp ======= */

@media screen and (max-width: 960px) {
    .header__nav {
        min-width: auto;
        position: static;
        width: 100%;
        height: auto;
    }
    .header__nav .header__nav-list {
        display: flex;
        padding-bottom: 40px;
        padding-top: 0;
    }
    .header__nav .header__nav-list__item {
        width: 25%;
        text-align: center;
        letter-spacing: 0.075em;
        margin: 0;
    }
    .header__nav .header__nav-list__item:nth-child(1) {
        width: 20%;
        padding-top: 0.7em;
        display: none;
    }
    .header__nav .header__nav-list__item:nth-child(2) {
        width: 23.5%;
    }
    .header__nav .header__nav-list__item:nth-child(3) {
        width: 28%;
    }
    .header__nav .header__nav-list__item:nth-child(4) {
        width: 25%;
    }
    .header__nav .header__nav-list__item:nth-child(5) {
        width: 23.5%;
    }
    .header__nav .header__nav-list .header__nav-list__item a {
        display: inline-block;
        width: auto;
        line-height: 1.4;
        font-size: 2.2rem !important;
    }
    .header__nav .header__nav-list__item a::before {
        bottom: -1.5em !important;
        height: 12px !important;
        width: 100% !important;
    }
    /* .header__nav .header__nav-list__item a.-active {
    color: #ff7f42;
  } */
    .header__nav.-active {
        right: 0;
    }
    .header__bg.-active {
        opacity: 1;
        visibility: visible;
    }
    .main-container {
        margin-top: 0px;
        padding-bottom: 50px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .header__nav .header__nav-list .header__nav-list__item a {
        font-size: 1.3rem !important;
    }
    .header__nav .header__nav-list__item a::before {
        bottom: -0.3em !important;
        height: 6px !important;
        width: 90% !important;
    }
    .header__nav .header__nav-list {
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 374px) {
    .header__nav .header__nav-list .header__nav-list__item a {
        font-size: 1.3rem !important;
    }
}


/*==================================================================
    .footer
===================================================================*/


/* -----------------------------------------------
    .footer-call
------------------------------------------------*/

.footer-call {
    width: 100%;
    background: url("../img/common/bg_stripe_orange01.png") repeat;
    padding-top: 56px;
    padding-bottom: 56px;
}

.footer-call__ttl {
    margin-bottom: 25px;
}

.footer-call__tell {
    text-align: center;
    margin-bottom: 0px;
}

.footer-call__tell:last-child {
    margin-bottom: 24px;
}

.footer-call__tell img {
    margin-bottom: 24px;
}

.footer-call__tell img.no-mb {
    margin-bottom: 0;
}

.footer-call__caution {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 2rem;
    line-height: 1.8;
    background-color: transparent;
}

.footer-call__time {
    display: inline-block;
}

.footer-call__time dl {
    display: flex;
}

.footer-call__time dl dt {
    font-weight: bold;
    color: #ff7f42;
    font-size: 1.9rem;
    padding: 0.2em 0.4em;
    border: 1px solid #ff7f42;
    border-radius: 5px;
    background-color: transparent;
}

.footer-call__time dl dd {
    padding: 0.2em 0.7em;
    font-size: 2rem;
    color: #171717;
    background-color: transparent;
}

.footer-call__annotation .footer-call__annotaion-item {
    line-height: 1.7;
    font-size: 1.4rem;
    color: #171717;
    position: relative;
    background-color: transparent;
}

.footer-call__annotation .footer-call__annotaion-item::before {
    content: "";
    display: block;
    position: absolute;
    top: .3em;
    left: -1.5em;
    width: 1.2rem;
    height: 1.2rem;
    background-image: url(../img/common/icon_anno_k.png);
    background-repeat: no-repeat;
    background-size: contain;
}


/* ======= footer-call__annotaion-txt ======= */

.footer-call__annotation-txt {
    padding-top: 20px;
    position: relative;
    padding-left: 1.5em;
    width: 570px;
    margin: 0 auto;
}

.footer-call__annotation-txt .absolute {
    position: absolute;
    top: 20px;
    left: 0;
}

.footer-call__annotation-txt p {
    font-size: 1.5rem;
    font-weight: bold;
    color: red;
}

.footer-call__annotation-txt .normal {
    font-weight: normal;
}

.footer-call__annotation-txt a {
    font-weight: normal;
    color: #0058b5;
    text-decoration: underline;
}


/* tablet */

@media screen and (max-width: 960px) {
    .footer-call__annotation-txt {
        padding-top: 20px;
        padding-left: 1.5em;
        width: 520px;
    }
}

@media screen and (max-width: 768px) and (min-width: 480px) {
    .footer-call__annotation-txt p {
        text-align: center;
    }
    .footer-call__annotation-txt .absolute {
        position: static;
    }
}


/* sp */

@media screen and (max-width: 768px) {
    .footer-call__annotation-txt {
        width: auto;
    }
}


/* ======= footer-call__tell-date ======= */

.footer-call__tell-date {
    text-align: center;
    margin-bottom: 20px;
}

.footer-call__tell-date span {
    display: inline-block;
    font-size: 2.4rem;
    color: #fff;
    font-weight: bold;
    background-color: #2095fc;
    padding: 0.3em 0.5em;
    line-height: 1;
    border-radius: 5px;
}


/* sp */

@media screen and (max-width: 960px) {
    .footer-call__tell-date {
        margin-bottom: 10px;
    }
    .footer-call__tell-date span {
        font-size: 1.6rem;
        padding: 0.3em 0.5em;
        border-radius: 5px;
    }
}


/* tablet */

@media screen and (max-width: 960px) {
    .footer-call {
        padding-top: 64px;
        padding-bottom: 56px;
    }
    .footer-call__ttl {
        margin-bottom: 40px;
    }
    .footer-call__tell {
        margin-bottom: 5px;
    }
    .footer-call__tell img {
        margin-bottom: 32px;
    }
    .footer-call__caution {
        margin-bottom: 0px;
        font-size: 1.8rem;
        line-height: 1.8;
    }
    .footer-call__time dl dt {
        width: auto;
        font-size: 2.8rem;
        padding: 0.3em 0.6em;
        margin-bottom: 0.4em;
        display: inline-block;
    }
    .footer-call__time dl dd {
        padding: 0.2em 0.7em 0.2em 1em;
        font-size: 2.8rem;
        font-weight: normal;
    }
    .footer-call__annotation .footer-call__annotaion-item {
        padding-left: 1.5em;
        font-size: 1.4rem;
    }
    .footer-call__annotation .footer-call__annotaion-item::before {
        left: 0;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .footer-call {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .footer-call__ttl {
        margin-bottom: 32px;
    }
    .footer-call__tell {
        margin-bottom: 0px;
    }
    .footer-call__tell img {
        margin-bottom: 12px;
    }
    .footer-call__caution {
        margin-bottom: 0px;
        font-size: 1.6rem;
        line-height: 1.8;
        letter-spacing: 0;
    }
    .footer-call__time {
        width: 100%;
    }
    .footer-call__time dl {
        display: block;
    }
    .footer-call__time dl dt {
        width: auto;
        font-size: 1.8rem;
        padding: 0.3em 0.6em;
        margin-bottom: 0.4em;
        display: inline-block;
    }
    .footer-call__time dl dd {
        padding: 0.2em 0.7em;
        font-size: 1.8rem;
        font-weight: bold;
    }
    .footer-call__annotation .footer-call__annotaion-item {
        padding-left: 1.5em;
        font-size: 1.4rem;
    }
    .footer-call__annotation .footer-call__annotaion-item::before {
        left: 0;
    }
}


/* -----------------------------------------------
    .footer-bottom
------------------------------------------------*/

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 25px;
}

.footer-bottom__inner {
    position: relative;
}

.footer-bottom__logo {
    color: transparent;
    display: block;
    background: #fff url(../img/common/logo_mic.png) 50% 50% no-repeat;
    background-size: cover;
    width: 150px;
}

.footer-bottom__logo::before {
    content: "";
    display: block;
    padding-top: 66px;
}

.footer-bottom__privacy {
    position: absolute;
    font-size: 1rem;
    letter-spacing: 0;
    right: 15px;
    bottom: 35px;
    width: calc(100% - 150px - 15px - 15px);
}

.footer-bottom__privacy ul {
    display: flex;
    justify-content: flex-end;
}

.footer-bottom__privacy ul li {
    margin-left: 24px;
}

.footer-bottom__privacy ul li a {
    color: #333;
    font-size: 1.2rem;
    background-color: #fff;
}

.footer-bottom__copyright {
    line-height: 1.2;
    position: absolute;
    font-size: 1rem;
    letter-spacing: 0;
    right: 15px;
    bottom: 0;
    text-align: right;
}

.pc .footer-bottom__privacy ul li a:hover {
    opacity: 0.6;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .footer-bottom {
        padding-top: 0px;
        padding-bottom: 80px;
        text-align: center;
    }
    .footer-bottom__logo {
        display: inline-block;
        margin-bottom: 24px;
        width: 240px;
    }
    .footer-bottom__logo {
        background: #fff url(../img/common/logo_mic_tab.png) 50% 50% no-repeat;
    }
    .footer-bottom__logo::before {
        padding-top: 105px;
    }
    .footer-bottom__privacy {
        position: static;
        font-size: 1.2rem;
        line-height: 1.2;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 32px;
    }
    .footer-bottom__privacy ul {
        justify-content: center;
    }
    .footer-bottom__privacy ul li {
        margin-bottom: 0.8em;
        font-size: 1.4rem;
        margin: 0 50px;
    }
    .footer-bottom__privacy ul li a {
        font-size: 1.4rem;
    }
    .footer-bottom__copyright {
        text-align: center;
        position: static;
    }
    .footer-bottom__copyright small {
        font-size: 1.2rem;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .footer-bottom {
        padding-top: 0px;
        padding-bottom: 20px;
        text-align: center;
    }
    .footer-bottom__logo {
        display: inline-block;
        margin-bottom: 20px;
    }
    .footer-bottom__privacy {
        position: static;
        font-size: 1rem;
        line-height: 1.2;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-bottom__privacy ul {
        justify-content: center;
    }
    .footer-bottom__privacy ul li {
        margin-bottom: 0.8em;
        font-size: 1.2rem;
        margin: 0 16px;
    }
    .footer-bottom__copyright {
        text-align: center;
        position: static;
    }
}


/* -----------------------------------------------
    footer-link
------------------------------------------------*/

.footer-link {
    padding-top: 32px;
    margin-bottom: 32px;
}

.footer-link .container {
    max-width: 1020px;
}

.footer-link .footer-link__ttl {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.footer-link .footer-link__list {
    display: flex;
    justify-content: space-between;
}

.footer-link .footer-link__list li {
    padding-right: 5px;
    padding-left: 5px;
    width: 16.666666667%;
}

.footer-link .footer-link__list li a {
    text-align: center;
    display: inline-block;
    width: 100%;
}


/* ======= hover ======= */

.pc .footer-link .footer-link__list li a:hover img {
    opacity: 0.6;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .footer-link {
        padding-top: 40px;
        margin-bottom: 16px;
    }
    .footer-link .footer-link__ttl {
        font-size: 3.2rem;
        margin-bottom: 32px;
        line-height: 1;
    }
    .footer-link .footer-link__list {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }
    .footer-link .footer-link__list li {
        width: 33.333%;
        padding-left: 0;
        padding-right: 16px;
        margin-bottom: 16px;
    }
    .footer-link .footer-link__list li:nth-child(1),
    .footer-link .footer-link__list li:nth-child(4) {
        padding-right: 10px;
        padding-left: 0px;
    }
    .footer-link .footer-link__list li:nth-child(2),
    .footer-link .footer-link__list li:nth-child(5) {
        padding-right: 6px;
        padding-left: 6px;
    }
    .footer-link .footer-link__list li:nth-child(3),
    .footer-link .footer-link__list li:nth-child(6) {
        padding-right: 0px;
        padding-left: 10px;
    }
    .footer-link .footer-link__list li:last-child {
        margin-bottom: 0;
    }
    .footer-link .footer-link__list li a img {
        width: 100%;
        max-width: 280px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .footer-link {
        padding-top: 28px;
        margin-bottom: 16px;
    }
    .footer-link .footer-link__ttl {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .footer-link .footer-link__list {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }
    .footer-link .footer-link__list li {
        width: 50%;
        padding-left: 0;
        padding-right: 7px;
        margin-bottom: 12px;
    }
    .footer-link .footer-link__list li:nth-child(even) {
        padding-right: 0;
        padding-left: 7px;
    }
    .footer-link .footer-link__list li:last-child {
        margin-bottom: 0;
    }
    .footer-link .footer-link__list li a img {
        width: 100%;
        max-width: 280px;
    }
}


/*==================================================================
    .mainView01
===================================================================*/

.mainView01 {
    padding: 56px 0px 121px;
    margin-bottom: 40px;
    text-align: center;
    background: url(../img/common/bg_mv.png) bottom center no-repeat;
    background-size: cover;
}

.mainView01__inner {
    position: relative;
}

.mainView01__btn {
    position: absolute;
    width: 110px;
    height: 110px;
    top: -20px;
    right: 65px;
}

.mainView01__btn a {
    display: inline-block;
    width: 110px;
    height: 110px;
    background-color: #ff7f42;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.6rem;
    padding-top: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 5px 0px #e35511;
}

.mainView01__btn a::after {
    content: "";
    display: block;
    position: absolute;
    top: 90px;
    left: 50%;
    transform-origin: center;
    transform: translateX(-50%) rotateZ(90deg);
    width: 14px;
    height: 10px;
    background-image: url("../img/common/arw_w01.svg");
    background-repeat: no-repeat;
    background-size: contain;
}


/* ======= hover ======= */

.pc .mainView01 .mainView01__btn a:hover {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px #e35511;
}


/* tablet */

@media screen and (max-width: 960px) {
    .mainView01 {
        padding: 13.333333333% 5.6% 22.933333333%;
        background: url(../img/top/bg_mv_tab.png) center bottom no-repeat;
        background-size: cover;
    }
    .mainView01__ttl {
        text-align: center;
        margin-bottom: 10.451977401%;
    }
    .mainView01__ttl img {
        width: 100%;
        max-width: 100%;
    }
    .mainView01__btn {
        position: static;
        width: 100%;
        height: auto;
    }
    .mainView01__btn a {
        max-width: 300px;
        width: 100%;
        height: 60px;
        border-radius: 30px;
        padding-top: 0;
        line-height: 60px;
        font-size: 2rem;
        position: relative;
        z-index: 1;
        box-shadow: 0px 8px 0px #e35511;
    }
    .mainView01__btn a::after {
        top: 50%;
        left: auto;
        right: 4px;
        transform-origin: center;
        transform: translateX(-50%) rotateZ(90deg);
        width: 24px;
        height: 16px;
        background-image: url("../img/common/arw_w01.svg");
        background-repeat: no-repeat;
        background-size: contain;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .mainView01 {
        padding: 13.466666667% 5.6% 29.2%;
        background: url(../img/top/bg_mv_sp.png) center bottom no-repeat;
        background-size: cover;
    }
    .mainView01__ttl {
        margin-bottom: 14.451977401%;
    }
    .mainView01__btn a {
        max-width: 160px;
        height: 30px;
        border-radius: 15px;
        line-height: 30px;
        font-size: 1.2rem;
        box-shadow: 0px 3px 0px #e35511;
    }
    .mainView01__btn a::after {
        width: 14px;
        height: 10px;
    }
}


/*==================================================================
    .mainView02
===================================================================*/

.mainView02 {
    width: 100%;
    text-align: center;
    background: url(../img/common/bg_mv02.png) bottom center no-repeat;
    background-size: cover;
    height: 200px;
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
}

.mainView02__ttl {
    font-size: 4.2rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.2;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .mainView02 {
        height: 350px;
        padding-top: 120px;
        background: url(../img/common/bg_mv02_tab.png) bottom center no-repeat;
        background-size: cover;
    }
    .mainView02__ttl {
        font-size: 4.2rem;
    }
    .mainView02 .mainView02__ttl img {
        height: 36px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .mainView02 {
        height: 175px;
        padding-top: 60px;
    }
    .mainView02__ttl {
        font-size: 3.3rem;
    }
    .mainView02 .mainView02__ttl img {
        height: 36px;
    }
}

@media screen and (max-width: 540px) {
    .mainView02 {
        padding-top: 50px;
        background-image: url(../img/common/bg_mv_sp.png);
    }
    .mainView02 .mainView02__ttl img {
        height: 30px;
    }
}


/*==================================================================
    box
===================================================================*/


/* -----------------------------------------------
    .box-alert01
------------------------------------------------*/

.box-alert01 {
    width: 100%;
    color: #333;
    border: 5px solid #000;
    border-radius: 20px;
    position: relative;
    background-color: #fff;
}

.box-alert01__ttl {
    display: inline-block;
    text-align: center;
    background-color: #000;
    color: #fcf420;
    font-size: 3rem;
    font-weight: bold;
    padding: 16px 0.8em 0;
    letter-spacing: 0.1em;
    height: 70px;
    border-radius: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -35px;
}

.box-alert01__ttl-icon {
    height: 27px;
    transform: translateY(0px);
    margin-right: 2px;
}

.box-alert01__txt {
    padding: 75px 2.5em 40px;
    text-align: center;
}

.box-alert01__txt p {
    color: #333;
    background-color: transparent;
    font-weight: bold;
    font-size: 2rem;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-alert01 {
        border: 5px solid #000;
        border-radius: 15px;
    }
    .box-alert01__ttl {
        display: inline-block;
        font-size: 2.4rem;
        width: 90%;
        font-weight: bold;
        padding: 10px 0em 0;
        height: 50px;
        border-radius: 25px;
        position: absolute;
        top: -25px;
    }
    .box-alert01__ttl-icon {
        height: 20px;
        transform: translateY(0px);
        margin-right: 2px;
    }
    .box-alert01__txt {
        padding: 40px 15px 20px;
        text-align: left;
    }
    .box-alert01__txt.-ttlSpTwoRow {
        padding-top: 60px;
    }
    .box-alert01__txt p {
        font-size: 1.8rem;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-alert01 {
        border: 3px solid #000;
        border-radius: 15px;
    }
    .box-alert01__ttl {
        display: inline-block;
        font-size: 1.8rem;
        width: 90%;
        font-weight: bold;
        padding: 10px 0em 0;
        height: 40px;
        border-radius: 20px;
        position: absolute;
        top: -20px;
    }
    .box-alert01__ttl-icon {
        height: 20px;
        transform: translateY(0px);
        margin-right: 2px;
    }
    .box-alert01__txt {
        padding: 40px 15px 20px;
        text-align: left;
    }
    .box-alert01__txt.-ttlSpTwoRow {
        padding-top: 50px;
    }
    .box-alert01__txt p {
        font-size: 1.6rem;
    }
}


/* ======= small ======= */

.box-alert01.-small .box-alert01__txt {
    padding: 55px 2.5em 30px;
}

.box-alert01.-small .mb0 {
    margin-bottom: 0;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-alert01.-small .box-alert01__txt {
        padding: 50px 30px 30px;
    }
    .box-alert01.-small .box-alert01__txt p {
        text-align: left;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-alert01.-small .box-alert01__txt {
        padding: 40px 15px 20px;
    }
    .box-alert01.-small .box-alert01__txt p {
        text-align: left;
    }
}


/* ======= long ======= */

.box-alert01__ttl.-long {
    width: 100%;
    max-width: 840px;
}

.box-alert01__ttl.-long .box-alert01__ttl-icon {
    height: 27px;
    transform: translateX(10px);
    margin-right: 2px;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-alert01__ttl.-long {
        width: 92%;
        height: auto;
        padding-top: 0;
    }
    .box-alert01__ttl.-twoRowSp.-long {
        height: 80px;
        font-size: 2.4rem;
        line-height: 1.2;
        top: -40px;
        border-radius: 40px;
        padding-top: 0.4em;
        padding-left: 0;
    }
    .box-alert01__ttl.-long .box-alert01__ttl-icon {
        height: 27px;
        transform: translateX(10px);
        margin-right: 2px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-alert01__ttl.-long {
        width: 92%;
        height: auto;
        padding-top: 0;
    }
    .box-alert01__ttl.-twoRowSp.-long {
        height: 65px;
        line-height: 1.2;
        top: -32px;
        border-radius: 33px;
        padding-top: 0.6em;
        padding-left: 0;
    }
    .box-alert01__ttl.-long .box-alert01__ttl-icon {
        height: 27px;
        transform: translateX(10px);
        margin-right: 2px;
    }
}

@media screen and (max-width: 340px) {
    .box-alert01__ttl.-twoRowSp.-long {
        padding-top: 0.75em;
    }
}


/* ======= iconTell ======= */

.box-alert01__ttl .box-alert01__ttl-iconTell {
    position: relative;
    padding-left: 30px;
}

.box-alert01__ttl .box-alert01__ttl-iconTell::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 32px;
    height: 32px;
    background-image: url("../img/alert/icon_alert_tell.svg");
    background-repeat: no-repeat;
    background-size: contain;
}


/* ======= sp ======= */

@media screen and (max-width: 960px) {
    .box-alert01__ttl .box-alert01__ttl-iconTell {
        padding-left: 30px;
        display: inline-block;
    }
    .box-alert01__ttl .box-alert01__ttl-iconTell::before {
        width: 21px;
        height: 21px;
    }
}

@media screen and (max-width: 340px) {
    .box-alert01__ttl .box-alert01__ttl-iconTell {
        padding-left: 20px;
    }
    .box-alert01__ttl .box-alert01__ttl-iconTell::before {
        width: 15px;
        height: 15px;
    }
}


/* ======= box-alert01__list ======= */

.box-alert01__list {
    display: flex;
    flex-wrap: wrap;
}

.box-alert01__list .box-alert01__listItem {
    width: 33.333%;
    margin-bottom: 20px;
}

.box-alert01__list .box-alert01__listItem:nth-child(1) {
    width: 50%;
    padding-right: 8px;
}

.box-alert01__list .box-alert01__listItem:nth-child(2) {
    width: 50%;
    padding-left: 8px;
}

.box-alert01__list .box-alert01__listItem:nth-child(3) {
    padding-right: 8px;
    margin-bottom: 0;
}

.box-alert01__list .box-alert01__listItem:nth-child(4) {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0;
}

.box-alert01__list .box-alert01__listItem:nth-child(5) {
    padding-left: 8px;
    margin-bottom: 0;
}

.box-alert01__list .box-alert01__listItem .box {
    background-color: #fff3f2;
    text-align: center;
    border-radius: 20px;
    padding: 15px 15px 20px;
}

.box-alert01__list .box-alert01__listItem .box p {
    font-size: 2rem;
    line-height: 1.2;
}

.box-alert01__list .box-alert01__listItem .box p:first-child {
    margin-bottom: 8px;
}

.box-alert01__list .box-alert01__listItem .box p small {
    font-size: 1.6rem;
}

.box-alert01__list .box-alert01__listItem .box p strong {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ff4f42;
    background-color: transparent;
}

.box-alert01__list .box-alert01__listItem:nth-child(2) .box p small {
    font-size: 1.8rem;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-alert01__list {
        flex-direction: column;
    }
    .box-alert01__list .box-alert01__listItem {
        width: 100%;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(1) {
        width: 100%;
        padding-right: 0px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(2) {
        width: 100%;
        padding-left: 0px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) {
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(4) {
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(5) {
        padding-left: 0px;
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem .box {
        border-radius: 10px;
        padding: 15px 15px 20px;
    }
    .box-alert01__list .box-alert01__listItem .box p {
        font-size: 2rem;
        line-height: 1.2;
    }
    .box-alert01__list .box-alert01__listItem .box p:first-child {
        margin-bottom: 8px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) p,
    .box-alert01__list .box-alert01__listItem:nth-child(4) p,
    .box-alert01__list .box-alert01__listItem:nth-child(5) p {
        display: inline-block;
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) p:first-child,
    .box-alert01__list .box-alert01__listItem:nth-child(4) p:first-child,
    .box-alert01__list .box-alert01__listItem:nth-child(5) p:first-child {
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem .box p small {
        font-size: 1.8rem;
    }
    .box-alert01__list .box-alert01__listItem .box p strong {
        font-size: 2rem;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(2) .box p small {
        font-size: 1.8rem;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-alert01__list {
        flex-direction: column;
    }
    .box-alert01__list .box-alert01__listItem {
        width: 100%;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(1) {
        width: 100%;
        padding-right: 0px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(2) {
        width: 100%;
        padding-left: 0px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) {
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(4) {
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 20px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(5) {
        padding-left: 0px;
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem .box {
        border-radius: 10px;
        padding: 15px 15px 20px;
    }
    .box-alert01__list .box-alert01__listItem .box p {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .box-alert01__list .box-alert01__listItem .box p:first-child {
        margin-bottom: 8px;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) p,
    .box-alert01__list .box-alert01__listItem:nth-child(4) p,
    .box-alert01__list .box-alert01__listItem:nth-child(5) p {
        display: inline-block;
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(3) p:first-child,
    .box-alert01__list .box-alert01__listItem:nth-child(4) p:first-child,
    .box-alert01__list .box-alert01__listItem:nth-child(5) p:first-child {
        margin-bottom: 0;
    }
    .box-alert01__list .box-alert01__listItem .box p small {
        font-size: 1.4rem;
    }
    .box-alert01__list .box-alert01__listItem .box p strong {
        font-size: 2rem;
    }
    .box-alert01__list .box-alert01__listItem:nth-child(2) .box p small {
        font-size: 1.4rem;
    }
}


/* -----------------------------------------------
    .box-pagesEnd01
------------------------------------------------*/

.box-pagesEnd01 {
    text-align: center;
    padding-bottom: 64px;
}


/*  sp
---------------------------------------------*/

@media screen and (max-width: 960px) {
    .box-pagesEnd01 {
        padding-bottom: 42px;
    }
}


/*==================================================================
    .box-orange01
===================================================================*/

.box-orange01 {
    background-color: #ffefe8;
    border-radius: 20px;
}

.box-orange01__ttl {
    width: 100%;
    background-color: #ff7f42;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    letter-spacing: 0.075em;
    padding: 25px;
    line-height: 1.1;
}

.box-orange01__ttl small {
    font-size: 2.4rem;
}

.box-orange01__txt {
    padding: 40px 40px;
}

.box-orange01__txt.-half {
    padding: 40px 20px;
}

.box-orange01__txt p {
    margin-bottom: 1em;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
}

.box-orange01__txt p small {
    font-size: 1.8rem;
    font-weight: normal;
}

.box-orange01__item {
    background-color: #fff;
    border-radius: 10px;
    padding: 2.5em 1em;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.box-orange01__item.-last {
    margin-bottom: 0;
}

.box-orange01__item p {
    font-size: 1.8rem;
    font-weight: normal;
}

.box-orange01__item.-ttl {
    padding: 0;
}

.box-orange01__item-step {
    display: block;
    position: absolute;
    color: #fff;
    background-color: #2095fc;
    height: 34px;
    border-radius: 17px;
    width: 80px;
    padding-top: 7px;
    text-align: center;
    top: -10px;
    left: -10px;
}

.box-orange01__item-step img {
    height: 16px;
    transform: translateX(-1px);
}

.box-orange01__item-ttl {
    text-align: center;
    background-color: #2095fc;
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold !important;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 7px 10px;
    margin-bottom: 0 !important;
}

.box-orange01__item-txt {
    padding: 30px 1em 40px;
}

.box-orange01__item-txt p a {
    color: #2095fc;
    text-decoration: underline;
    background-color: transparent;
}

.box-orange01__item-txt li {
    position: relative;
    margin-bottom: 80px;
}

.box-orange01__item-txt li .box-orange01__item-step {
    top: -50px;
}

.box-orange01__item-txt li:first-child {
    margin-top: 40px;
}

.box-orange01__item-txt li:last-child {
    margin-bottom: 0;
}

.box-orange01__item-bdr {
    background-color: #fff;
    border: 5px solid #ff7f42;
    border-radius: 10px;
    padding: 1.5em;
}

.box-orange01__item-bdr p {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: normal;
}

.box-orange01__item-bdr p:last-child {
    margin-bottom: 0;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-orange01 {
        border-radius: 20px;
    }
    .box-orange01__ttl {
        font-size: 2.8rem;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 0.6em;
        line-height: 1.4;
    }
    .box-orange01__ttl small {
        font-size: 1.4rem;
    }
    .box-orange01__txt {
        padding: 40px 30px;
    }
    .box-orange01__txt.-half {
        padding: 40px 30px;
    }
    .box-orange01__txt p {
        margin-bottom: 1em;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.6;
        text-align: center;
    }
    .box-orange01__txt p small {
        font-size: 1.8rem;
    }
    .box-orange01__item {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px 10px;
        text-align: center;
        position: relative;
        margin-bottom: 40px;
    }
    .box-orange01__item.-last {
        margin-bottom: 0;
    }
    .box-orange01__item p {
        font-size: 1.8rem;
        font-weight: normal;
    }
    .box-orange01__item.-ttl {
        padding: 0;
    }
    .box-orange01__item-step {
        display: block;
        position: absolute;
        background-color: #2095fc;
        height: 34px;
        border-radius: 17px;
        width: 80px;
        padding-top: 7px;
        text-align: center;
        top: -13px;
        left: -10px;
    }
    .box-orange01__item-step img {
        height: 16px;
        transform: translateX(0px);
    }
    .box-orange01__item-ttl {
        text-align: center;
        background-color: #2095fc;
        color: #fff;
        font-size: 2.2rem;
        font-weight: bold !important;
        width: 100%;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        padding: 7px 10px;
        margin-bottom: 0 !important;
    }
    .box-orange01__item-txt {
        padding: 30px 1em 40px;
    }
    .box-orange01__item-txt p a {
        color: #2095fc;
        text-decoration: underline;
    }
    .box-orange01__item-txt li {
        position: relative;
        margin-bottom: 80px;
    }
    .box-orange01__item-txt li .box-orange01__item-step {
        top: -50px;
    }
    .box-orange01__item-txt li:first-child {
        margin-top: 40px;
    }
    .box-orange01__item-txt li:last-child {
        margin-bottom: 0;
    }
    .box-orange01__item-bdr {
        border: 2px solid #ff7f42;
        border-radius: 5px;
        padding: 1.5em;
    }
    .box-orange01__item-bdr p {
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.6;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-orange01 {
        border-radius: 10px;
    }
    .box-orange01__ttl {
        font-size: 1.8rem;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        padding: 0.6em;
        line-height: 1.4;
    }
    .box-orange01__ttl small {
        font-size: 1.4rem;
    }
    .box-orange01__txt {
        padding: 20px 15px;
    }
    .box-orange01__txt.-half {
        padding: 20px 15px;
    }
    .box-orange01__txt p {
        margin-bottom: 1em;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.6;
        text-align: center;
    }
    .box-orange01__txt p small {
        font-size: 1.6rem;
    }
    .box-orange01__item {
        background-color: #fff;
        border-radius: 10px;
        padding: 2.5em 1em;
        text-align: center;
        position: relative;
        margin-bottom: 40px;
    }
    .box-orange01__item.-last {
        margin-bottom: 0;
    }
    .box-orange01__item p {
        font-size: 1.8rem;
        font-weight: normal;
    }
    .box-orange01__item.-ttl {
        padding: 0;
    }
    .box-orange01__item-step {
        display: block;
        position: absolute;
        background-color: #2095fc;
        height: 34px;
        border-radius: 17px;
        width: 80px;
        padding-top: 7px;
        text-align: center;
        top: -13px;
        left: -10px;
    }
    .box-orange01__item-step img {
        height: 16px;
        transform: translateX(0px);
    }
    .box-orange01__item-ttl {
        text-align: center;
        background-color: #2095fc;
        color: #fff;
        font-size: 2.2rem;
        font-weight: bold !important;
        width: 100%;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        padding: 7px 10px;
        margin-bottom: 0 !important;
    }
    .box-orange01__item-txt {
        padding: 30px 1em 40px;
    }
    .box-orange01__item-txt p a {
        color: #2095fc;
        text-decoration: underline;
    }
    .box-orange01__item-txt li {
        position: relative;
        margin-bottom: 80px;
    }
    .box-orange01__item-txt li .box-orange01__item-step {
        top: -50px;
    }
    .box-orange01__item-txt li:first-child {
        margin-top: 40px;
    }
    .box-orange01__item-txt li:last-child {
        margin-bottom: 0;
    }
    .box-orange01__item-bdr {
        border: 2px solid #ff7f42;
        border-radius: 5px;
        padding: 1.5em;
    }
    .box-orange01__item-bdr p {
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.6;
    }
}


/*==================================================================
    .box-explanation01
===================================================================*/

.box-explanation01 {
    color: #333;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 111px;
}

.box-explanation01__ttl {
    width: 100%;
    background-color: #2095fc;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    letter-spacing: 0.075em;
    padding: 25px;
    line-height: 1.1;
    position: relative;
}

.box-explanation01.-last .box-explanation01__ttl {
    border-radius: 20px;
}

.box-explanation01__ttl small {
    font-size: 2.4rem;
}

.box-explanation01__ttl .update {
    font-size: 2.4rem;
}

.box-explanation01__txt {
    padding: 40px 40px;
}

.box-explanation01__txt p {
    margin-bottom: 1em;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: left;
}

.box-explanation01__txt p small {
    font-size: 1.8rem;
    font-weight: normal;
}

.box-explanation01__txt p.red {
    color: #ff4f42;
    background-color: transparent;
}

.box-explanation01__txt p a {
    color: #2095fc;
    background-color: transparent;
    text-decoration: underline;
}

.box-explanation01__center {
    padding-top: 20px;
    text-align: center;
}

.box-explanation01__center02 {
    text-align: center;
}

.box-explanation01__center p {
    display: inline-block;
}

.box-explanation01__ttl-step {
    display: block;
    position: absolute;
    color: transparent;
    background-color: #fff;
    height: 44px;
    border-radius: 22px;
    width: 110px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    line-height: 1;
    padding-top: 2px;
}

.box-explanation01__ttl-step img {
    height: 22px;
}

.box-explanation01__ttl.-no-rds-btm {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.box-explanation01__ttl.-rds-btm {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-explanation01 {
        border-radius: 20px;
        margin-bottom: 110px;
    }
    .box-explanation01__ttl {
        font-size: 2.8rem;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 15px;
        line-height: 1.3;
    }
    .box-explanation01.-last .box-explanation01__ttl {
        border-radius: 20px;
    }
    .box-explanation01__ttl small {
        font-size: 1.4rem;
    }
    .box-explanation01__ttl .update {
        font-size: 1.4rem;
    }
    .box-explanation01__txt {
        padding: 40px 30px;
    }
    .box-explanation01__txt p {
        margin-bottom: 1em;
        font-size: 2rem;
        line-height: 1.6;
    }
    .box-explanation01__txt a.link01 {
        font-size: 2rem;
    }
    .box-explanation01__txt p small {
        font-size: 1.4rem;
        font-weight: normal;
    }
    .box-explanation01__center {
        padding-top: 10px;
    }
    .box-explanation01__ttl-step {
        height: 44px;
        border-radius: 22px;
        width: 110px;
        top: -24px;
        transform: translateY(0%);
        left: -10px;
        line-height: 1;
        padding-top: 5px;
    }
    .box-explanation01__ttl-step img {
        height: 25px;
    }
    .box-explanation01__ttl-step.-online {
        position: static;
        margin-bottom: 10px;
    }
    .box-explanation01__ttl.-rds-btm {
        border-bottom-left-radius: 20px !important;
        border-bottom-right-radius: 20px !important;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-explanation01 {
        border-radius: 10px;
        margin-bottom: 75px;
    }
    .box-explanation01__ttl {
        font-size: 1.8rem;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        padding: 15px;
        line-height: 1.4;
    }
    .box-explanation01.-last .box-explanation01__ttl {
        border-radius: 10px;
    }
    .box-explanation01__ttl small {
        font-size: 1.4rem;
    }
    .box-explanation01__ttl .update {
        font-size: 1.4rem;
    }
    .box-explanation01__txt {
        padding: 20px 15px;
    }
    .box-explanation01__txt p {
        margin-bottom: 1em;
        font-size: 1.6rem;
        line-height: 1.6;
    }
    .box-explanation01__txt p small {
        font-size: 1.4rem;
        font-weight: normal;
    }
    .box-explanation01__center {
        padding-top: 10px;
    }
    .box-explanation01__ttl-step {
        height: 34px;
        border-radius: 17px;
        width: 80px;
        top: -24px;
        transform: translateY(0%);
        left: -10px;
        line-height: 1;
        padding-top: 5px;
    }
    .box-explanation01__ttl-step img {
        height: 14px;
    }
    .box-explanation01__ttl-step.-online {
        position: static;
        margin-bottom: 10px;
    }
    .box-explanation01__ttl.-rds-btm {
        border-bottom-left-radius: 10px !important;
        border-bottom-right-radius: 10px !important;
    }
}


/* -----------------------------------------------
    option
------------------------------------------------*/

.box-explanation01.-last {
    margin-bottom: 0;
}

.box-explanation01.-orange {
    background-color: #ffefe8;
}

.box-explanation01.-orange .box-explanation01__ttl {
    background-color: #ff7f42;
}


/* -----------------------------------------------
    flow
------------------------------------------------*/

.box-explanation01__flow {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.box-explanation01__flow-img {
    width: 50%;
}

.box-explanation01__flow-txt {
    width: 50%;
    padding-left: 30px;
}

.box-explanation01__flow-txt li {
    position: relative;
    font-size: 1.8rem;
    padding-left: 60px;
    padding-top: 11px;
    margin-bottom: 50px;
}

.box-explanation01__flow-txt li:last-child {
    margin-bottom: 0;
}

.box-explanation01__flow-txt img {
    position: absolute;
    top: 0;
    left: 0;
}


/* sp */

@media screen and (max-width: 960px) {
    .box-explanation01__flow {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .box-explanation01__flow-img {
        width: 100%;
        order: 1;
    }
    .box-explanation01__flow-img img {
        width: 100%;
    }
    .box-explanation01__flow-txt {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 30px;
    }
    .box-explanation01__flow-txt li {
        font-size: 1.4rem;
        padding-left: 40px;
        padding-top: 8px;
        margin-bottom: 30px;
    }
    .box-explanation01__flow-txt img {
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
    }
}


/* -----------------------------------------------
    supplement
------------------------------------------------*/

.box-explanation01__supplement {
    border: 5px solid #ff7f42;
    color: #333;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 1.5em 1em;
}

.box-explanation01__supplement p {
    display: inline-block;
    text-align: center;
    font-weight: normal;
}

.box-explanation01__supplement p:last-child {
    margin-bottom: 0;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-explanation01__supplement {
        border: 5px solid #ff7f42;
        border-radius: 10px;
        padding: 1.5em 1.2em;
    }
    .box-explanation01__supplement p {
        font-size: 2rem;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-explanation01__supplement {
        border: 3px solid #ff7f42;
        border-radius: 5px;
        padding: 1em 1.2em;
    }
    .box-explanation01__supplement p {
        font-size: 1.6rem;
    }
}


/* -----------------------------------------------
    .item-explanation01__display
------------------------------------------------*/

.item-explanation01__display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.box-explanation01__flow02.-last .item-explanation01__display {
    margin-bottom: 0;
}

.item-explanation01__display-img {
    border-radius: 20px;
    background-color: #fff;
    padding: 35px 20px 30px;
}

.item-explanation01__display-img:first-child {
    width: 500px;
}

.item-explanation01__display-img:last-child {
    width: 370px;
}

.item-explanation01__display-img figcaption {
    text-align: center;
    font-weight: bold;
    color: #2095fc;
    background-color: #fff;
    font-size: 2rem;
    margin-bottom: 0.7em;
    /* transform: translateX(20px); */
    margin-bottom: 35px;
}

.item-explanation01__display-img figcaption span {
    position: relative;
    display: inline-block;
}

.item-explanation01__display-img figcaption span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    background-repeat: no-repeat;
    background-size: contain;
}

.item-explanation01__display-desktop span {
    padding-left: 65px;
}

.item-explanation01__display-smartphone span {
    padding-left: 40px;
}

.item-explanation01__display-desktop span::before {
    width: 48px;
    height: 39px;
    background-image: url("../img/common/icon_desktop.png");
}

.item-explanation01__display-smartphone span::before {
    width: 28px;
    height: 48px;
    background-image: url("../img/common/icon_smartphone.png");
}

.item-explanation01__display-img img {
    margin-bottom: 0 !important;
}


/* ======= option ======= */

.item-explanation01__display.-w100 {
    width: 100%;
}

.item-explanation01__display.-w100 .item-explanation01__display-img {
    width: 100%;
    text-align: center;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .item-explanation01__display {
        display: flex;
        justify-content: inherit;
        flex-direction: column;
        margin-bottom: 0;
    }
    .item-explanation01__display-img {
        border-radius: 20px;
        padding: 25px 15px 20px;
        margin-bottom: 16px;
        width: 100%;
        text-align: center;
    }
    .item-explanation01__display-img:first-child {
        width: 100%;
    }
    .item-explanation01__display-img:last-child {
        width: 100%;
    }
    .item-explanation01__display-img figcaption {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .item-explanation01__display-desktop span {
        padding-left: 60px;
    }
    .item-explanation01__display-smartphone span {
        padding-left: 32px;
    }
    .item-explanation01__display-desktop span::before {
        width: 42px;
        height: 34px;
    }
    .item-explanation01__display-smartphone span::before {
        width: 24px;
        height: 40px;
    }
    /*2画面*/
    .item-explanation01__display.-tab {
        display: flex;
        flex-direction: row;
        margin-bottom: 0;
        justify-content: space-between;
    }
    .item-explanation01__display.-tab .item-explanation01__display-img {
        margin-bottom: 0px;
    }
    .item-explanation01__display.-tab .item-explanation01__display-img:first-child {
        width: 55%;
        margin-right: 10px;
    }
    .item-explanation01__display.-tab .item-explanation01__display-img:last-child {
        width: 45%;
        margin-left: 10px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .item-explanation01__display {
        display: flex;
        justify-content: inherit;
        flex-direction: column;
        margin-bottom: 0;
    }
    .item-explanation01__display-img {
        border-radius: 10px;
        padding: 25px 15px 20px;
        margin-bottom: 16px;
        width: 100%;
        text-align: center;
    }
    .item-explanation01__display-img:first-child {
        width: 100%;
    }
    .item-explanation01__display-img:last-child {
        width: 100%;
    }
    .item-explanation01__display-img figcaption {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    .item-explanation01__display-desktop span {
        padding-left: 65px;
    }
    .item-explanation01__display-smartphone span {
        padding-left: 30px;
    }
    .item-explanation01__display-desktop span::before {
        width: 40px;
        height: 30px;
    }
    .item-explanation01__display-smartphone span::before {
        width: 20px;
        height: 30px;
    }
}


/* -----------------------------------------------
    flow02
------------------------------------------------*/

.box-explanation01__flow02 {
    margin-bottom: 50px;
}

.box-explanation01__flow02.-last {
    margin-bottom: 0;
}

.box-explanation01__flow02-txt {
    width: 100%;
    margin-bottom: 40px !important;
    position: relative;
    font-size: 2rem;
    padding-left: 60px;
    padding-top: 5px;
    font-weight: bold;
}

.box-explanation01__flow02-txt img {
    position: absolute;
    top: 0;
    left: 0;
}

.box-explanation01__flow02-stxt {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-explanation01__flow02 {
        margin-bottom: 30px;
    }
    .box-explanation01__flow02-txt {
        width: 100%;
        margin-bottom: 32px !important;
        font-size: 2rem;
        padding-left: 50px;
        padding-top: 5px;
    }
    .box-explanation01__flow02-txt img {
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
    }
    .box-explanation01__flow02-stxt {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 15px;
        position: relative;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.6;
        text-align: left;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-explanation01__flow02 {
        margin-bottom: 30px;
    }
    .box-explanation01__flow02-txt {
        width: 100%;
        margin-bottom: 30px !important;
        font-size: 1.4rem;
        padding-left: 40px;
        padding-top: 2px;
    }
    .box-explanation01__flow02-txt img {
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
    }
    .box-explanation01__flow02-stxt {
        width: 100%;
        margin-top: 30px;
        margin-bottom: 15px;
        position: relative;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.6;
        text-align: left;
    }
}


/*==================================================================
    .sec-linkList-pdf
===================================================================*/

.sec-linkList-pdf {
    padding-bottom: 64px;
}

.sec-linkList-pdf-txt {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 26px;
}

.sec-linkList-pdf .sec-linkList-pdf__list {
    margin-bottom: 40px;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dotted #2095fc;
    position: relative;
    padding-right: 30px;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-no-dot {
    border-bottom: none;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-thumb a {
    display: block;
    width: 370px;
    margin: 0 auto 24px auto;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item a {
    color: #333;
    background-color: transparent;
    line-height: 1.6;
    font-size: 1.6rem;
    padding-right: 0.5em;
    letter-spacing: 0.08em;
    width: 100%;
    display: inline-block;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 28px;
    height: 32px;
    background-image: url("../img/common/icon_pdf_b.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-no-ico {
    padding-right: 0;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-no-ico::after {
    display: none;
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-pdfR::after {
    width: 36px;
    height: 46px;
    background-image: url("../img/common/icon_pdf_r.svg");
}

.sec-linkList-pdf .sec-linkList-pdf__list-item.-xls::after {
    width: 36px;
    height: 46px;
    background-image: url("../img/common/icon_xls.svg");
}


/* ======= hover ======= */

.pc .sec-linkList-pdf__list-item a:hover {
    text-decoration: underline !important;
    color: #333 !important;
    background-color: transparent;
}


/* tablet */

@media screen and (max-width: 960px) {
    .sec-linkList-pdf {
        padding-bottom: 48px;
    }
    .sec-linkList-pdf-txt {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-no-ico {
        padding-top: 0;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list {
        margin-bottom: 40px;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-thumb a {
        display: block;
        width: 80%;
        margin: 0 auto 0 auto;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item {
        padding-right: 35px;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item::after {
        width: 20px;
        height: 26px;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item a {
        font-size: 1.6rem;
        letter-spacing: 0.08em;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-pdfR::after {
        width: 34px;
        height: 43px;
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-xls::after {
        width: 34px;
        height: 43px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-pdfR::after {
        width: 34px;
        height: 43px;
        background-image: url("../img/common/icon_pdf_r_sp.svg");
    }
    .sec-linkList-pdf .sec-linkList-pdf__list-item.-xls::after {
        width: 34px;
        height: 43px;
        background-image: url("../img/common/icon_xls_sp.svg");
    }
}


/*  ttl02
---------------------------------------------*/

.sec-linkList-pdf .sec-linkList-pdf__ttl02 {
    text-align: center;
    color: #2095fc;
    background-color: transparent;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.4;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .sec-linkList-pdf .sec-linkList-pdf__ttl02 {
        font-size: 2.6rem;
        margin-bottom: 16px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .sec-linkList-pdf .sec-linkList-pdf__ttl02 {
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
}


/*  multiple
---------------------------------------------*/

.sec-linkList-pdf__list-item.-multiple {
    flex-wrap: wrap;
    line-height: 1.6;
}

.sec-linkList-pdf__list-item.-multiple p {
    width: 100%;
    font-size: 1.6rem;
    padding-right: 0.5em;
    color: #333;
    background-color: transparent;
}

.sec-linkList-pdf__list-item.-multiple a {
    width: auto;
}


/* sp */

@media screen and (max-width: 960px) {
    .sec-linkList-pdf__list-item.-multiple {
        flex-direction: row;
    }
    .sec-linkList-pdf__list-item.-multiple p {
        font-size: 1.4rem;
    }
    .sec-linkList-pdf__list-item.-multiple a {
        width: auto;
    }
}


/*  txt
---------------------------------------------*/

.sec-linkList-pdf__txt {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 26px;
}


/* tablet */

@media screen and (max-width: 960px) {
    .sec-linkList-pdf__txt {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .sec-linkList-pdf__txt {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}


/*==================================================================
    box-linkTwoSp
===================================================================*/


/* -----------------------------------------------
    .box-linkTwoSp
------------------------------------------------*/

.box-linkTwoSp {
    display: flex;
    margin-bottom: 48px;
}

.box-linkTwoSp li {
    width: 50%;
}

.box-linkTwoSp li:first-child {
    padding-right: 5px;
}

.box-linkTwoSp li:last-child {
    padding-left: 5px;
}


/*==================================================================
    .box-toggleList
===================================================================*/

.box-toggleList {
    text-align: center;
    margin-bottom: 30px;
}

.box-toggleList__inner {
    text-align: left;
    height: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.box-toggleList__inner-box {
    padding: 2em 0px;
}


/* ======= active ======= */

.box-toggleList.-active .box-toggleList__btn {
    background-color: #ff7f42;
    box-shadow: 0px 5px 0px #e35511;
}

.box-toggleList.-active .btn01.-arwDown::after {
    transform: translateX(-50%) translateY(-50%) rotateZ(-90deg);
}

.box-toggleList.-active .box-toggleList__inner {
    height: inherit;
    visibility: visible;
    opacity: 1;
}


/*  sp
---------------------------------------------*/

@media screen and (max-width: 960px) {
    .box-toggleList {
        margin-bottom: 20px;
    }
    .box-toggleList__inner {
        text-align: left;
        height: 0;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .box-toggleList__inner-box {
        padding: 2em 0 0;
    }
}


/*==================================================================
    arw-flow
===================================================================*/

.arw-flow {
    position: relative;
}

.arw-flow::before {
    content: "";
    display: block;
    position: absolute;
    top: -79px;
    left: 50%;
    transform: translateX(-50%);
    width: 82px;
    height: 47px;
    background-image: url("../img/common/arw_b01.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.arw-flow.-orange::before {
    background-image: url("../img/common/arw_o01.svg");
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .arw-flow::before {
        top: -78px;
        left: 50%;
        transform: translateX(-50%);
        width: 78px;
        height: 45px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .arw-flow::before {
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        width: 61px;
        height: 36px;
    }
}


/*==================================================================
    .sec-related
===================================================================*/

.sec-related {
    padding-top: 40px;
    padding-bottom: 40px;
}

.sec-related__ttl {
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.sec-related__list li {
    margin-bottom: 1.5em;
    padding-left: 30px;
    position: relative;
}

.sec-related__list li:last-child {
    margin-bottom: 0;
}

.sec-related__list li::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("../img/common/btn_circleArw_b.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.sec-related__list li a {
    color: #171717;
    font-size: 1.6rem;
    background-color: transparent;
}


/* ======= hover ======= */

.pc .sec-related__list li a:hover {
    text-decoration: underline;
    color: #2095fc;
    background-color: transparent;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .sec-related {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .sec-related__ttl {
        font-size: 2rem;
        margin-bottom: 32px;
    }
    .sec-related__list li {
        margin-bottom: 1.2em;
        padding-left: 30px;
        position: relative;
    }
    .sec-related__list li::before {
        top: 3px;
        transform: translateY(0);
        left: 0;
        width: 15px;
        height: 15px;
    }
    .sec-related__list li a {
        font-size: 1.6rem;
        line-height: 1.4;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .sec-related {
        padding-top: 23px;
        padding-bottom: 23px;
    }
    .sec-related__ttl {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .sec-related__list li {
        margin-bottom: 1.5em;
        padding-left: 30px;
        position: relative;
    }
    .sec-related__list li::before {
        top: 3px;
        transform: translateY(0);
        left: 0;
        width: 15px;
        height: 15px;
    }
    .sec-related__list li a {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}


/* -----------------------------------------------
    .pagetop
------------------------------------------------*/

.main-container {
    position: relative;
}


/* tablet */

@media screen and (max-width: 960px) {
    .main-container {
        margin-top: 0px;
        padding-bottom: 50px;
    }
}

.pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 50;
}

.pagetop:hover {
    cursor: pointer;
}

.pagetop:hover img {
    opacity: 0.6;
}

.pagetop img {
    width: 60px;
    height: 60px;
}

.pagetop.-absolute {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
}

.pagetop.-active {
    visibility: visible;
    opacity: 1;
}


/*  sp
---------------------------------------------*/

@media screen and (max-width: 960px) {
    .pagetop {
        bottom: 15px;
        right: 15px;
    }
    .pagetop:hover img {
        opacity: 1;
    }
    .pagetop img {
        width: 40px;
        height: 40px;
    }
    .pagetop.-absolute {
        position: absolute;
        bottom: 0;
        transform: translateY(50%);
    }
}


/*==================================================================
    box-alert-r
===================================================================*/

.box-alert-r {
    text-align: center;
    margin-bottom: 40px;
}

.box-alert-r p {
    width: 100%;
    border: 4px solid red;
    color: red;
    font-weight: bold;
    font-size: 1.8rem;
    padding: 1em 1.5em;
    border-radius: 6px;
    background-color: #fff;
}


/* sp */

@media screen and (max-width: 960px) {
    .box-alert-r {
        max-width: 720px;
        margin-bottom: 28px;
    }
    .box-alert-r p {
        border: 3px solid red;
        font-size: 1.4rem;
        padding: 1em 1.5em;
    }
}


/* -----------------------------------------------
    box-alertTxt
------------------------------------------------*/

.box-alertTxt {
    text-align: center;
    margin-bottom: 48px;
}

.box-alertTxt p {
    color: red;
    background-color: transparent;
    font-weight: bold;
    font-size: 2.4rem;
    position: relative;
    padding-left: 50px;
    display: inline-block;
}

.box-alertTxt p span {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: transparent;
    background-color: red;
    padding: 0.25em;
}

.box-alertTxt p span img {
    vertical-align: top;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .box-alertTxt {
        margin-bottom: 32px;
        padding-top: 0px;
    }
    .box-alertTxt p {
        font-size: 1.8rem;
        padding-left: 40px;
        display: inline-block;
        line-height: 1.4;
    }
    .box-alertTxt p span {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .box-alertTxt {
        margin-bottom: 24px;
        padding-top: 30px;
    }
    .box-alertTxt p {
        font-size: 1.8rem;
        padding-left: 0px;
        display: inline-block;
        line-height: 1.4;
    }
    .box-alertTxt p span {
        content: "";
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -40px;
        width: 30px;
        height: 30px;
    }
}


/*==================================================================
  .header-ml
===================================================================*/

@media screen and (min-width: 961px) {
    .header-ml {
        font-weight: 700;
        font-family: Roboto, "Helvetica Neue", "Segoe UI", sans-serif;
    }
    .header-ml__inner {
        max-width: 1010px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
    }
    .header-ml__body {
        position: relative;
        height: 110px;
    }
    .header-ml__logo {
        position: absolute;
        /* top: 50%; */
        top: 54%;
        left: 0;
        /* transform: translateY(-50%); */
    }
    .header-ml__logo a img {
        width: 100%;
    }
    .header-ml__languedge {
        position: absolute;
        top: 12px;
        right: 0;
    }
    .header-ml-lang {
        width: 120px;
    }
    .header-ml-lang__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 120px;
        height: 32px;
        color: #fff;
        background-color: #2095fc;
        border-radius: 99px;
    }
    .pc .header-ml-lang__btn:hover {
        color: #0577dc;
    }
    .header-ml-lang__ico {
        display: block;
        width: 17px;
    }
    .header-ml-lang__ico i {
        display: block;
        width: 17px;
    }
    .header-ml-lang__label {
        display: block;
        margin-top: 1px;
        margin-right: 4px;
        margin-left: 6px;
        font-size: 1.2rem;
        line-height: 1;
        line-height: 12px;
    }
    .header-ml__menu {
        display: none;
    }
    .header-ml__nav {
        position: absolute;
        top: 54px;
        right: 0;
        left: 0;
    }
    .header-ml-nav {
        display: flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .header-ml-nav__list {
        display: flex;
        justify-content: flex-end;
        width: 67.857142857%;
    }
    .header-ml-nav__item {}
    .header-ml-nav__item a {
        position: relative;
        display: inline-block;
        height: 2.37777em;
        color: #333333;
        font-size: 1.6rem;
        line-height: 1.225;
        text-align: center;
    }
    .header-ml-nav__item a::after {
        position: absolute;
        right: 0;
        bottom: -0.75em;
        left: 0;
        display: block;
        display: none;
        height: 8px;
        background-color: #ff7f42;
        content: "";
    }
    #top .header-ml__nav .header-ml-nav__list .header-ml-nav__item:first-child a::before,
    #apply .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(2) a::before,
    #post .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(2) a::before,
    #online .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(3) a::before,
    #application_deadline .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(4) a::before,
    #cities .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(5) a::before,
    #faq .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(6) a::before {
        position: absolute;
        bottom: -0.6em;
        left: 50%;
        display: block;
        width: 100%;
        height: 8px;
        background-color: #ff7f42;
        transform: translateX(-50%);
        content: "";
    }
    .pc .header__nav-list__item a:hover {
        color: #ff7f42;
    }
}

@media screen and (max-width: 960px) {
    .header-ml-nav__list.-pc {
        display: none;
    }
    .header-ml {
        font-weight: 700;
        font-family: Roboto, "Helvetica Neue", "Segoe UI", sans-serif;
    }
    .header-ml__body {
        position: relative;
        height: 70px;
    }
    .header-ml__logo {
        position: absolute;
        top: 50%;
        left: 4%;
        width: calc(300/750*100%);
        transform: translateY(-50%);
    }
    .header-ml__languedge {
        position: absolute;
        top: 10px;
        right: 70px;
    }
    .header-ml-lang {
        width: 50px;
    }
    .header-ml-lang__btn {
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        color: #fff;
        background-color: #2095fc;
        border-radius: 5px;
    }
    .header-ml-lang__ico {
        position: absolute;
        top: 6px;
        right: 0;
        left: 0;
        display: block;
        width: 28px;
        margin: 0 auto;
    }
    .header-ml-lang__ico i {
        display: block;
        width: 28px;
    }
    .header-ml-lang__label {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        text-align: center;
        letter-spacing: normal;
    }
    .header-ml-lang__label span {
        display: inline-block;
        font-size: 10px;
        line-height: 1;
        text-align: center;
        transform: scale(0.78);
    }
    .header-ml__menu {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .header-ml-menu {
        width: 50px;
    }
    .header-ml-menu__btn {
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        color: #fff;
        background-color: #ff7f42;
        border-radius: 5px;
    }
    .js-menu-modal-triger {}
    .header-ml-menu__ico {
        position: absolute;
        top: 11px;
        right: 0;
        left: 0;
        width: 24px;
        height: 19px;
        margin: 0 auto;
    }
    .header-ml-menu__ico i {
        position: absolute;
        left: 0;
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 10px;
    }
    .header-ml-menu__ico i:nth-child(1) {
        top: 0;
    }
    .header-ml-menu__ico i:nth-child(2) {
        top: 8px;
    }
    .header-ml-menu__ico i:nth-child(3) {
        bottom: 0;
    }
    .header-ml-menu__label {
        position: absolute;
        right: 0;
        bottom: 2px;
        left: 0;
        text-align: center;
    }
    .header-ml-menu__label span {
        display: inline-block;
        font-size: 1.0rem;
        line-height: 1;
        text-align: center;
        transform: scale(0.78);
    }
    .header-ml__nav {
        position: absolute;
        bottom: 5%;
        right: 0;
        left: 0;
    }
    .header-ml-nav {
        padding: 0 calc(30/750*100%);
    }
    .header-ml-nav__list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-ml-nav__item:nth-child(3) {
        transform: translateX(-.2em);
    }
    .header-ml-nav__item a {
        position: relative;
        height: 2.37777em;
        color: #333333;
        font-size: 1.4rem;
        line-height: 1.4;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .header-ml-nav__item a::after {
        position: absolute;
        right: 0;
        bottom: -0.75em;
        left: 0;
        display: block;
        display: none;
        height: 8px;
        background-color: #ff7f42;
        content: "";
    }
    #apply .header-ml__nav .header-ml-nav__list .header-ml-nav__item:first-child a::before,
    #online .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(2) a::before,
    #cities .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(3) a::before,
    #faq .header-ml__nav .header-ml-nav__list .header-ml-nav__item:nth-child(4) a::before {
        position: absolute;
        bottom: -.8em;
        left: 50%;
        display: block;
        width: 100%;
        height: .6rem;
        background-color: #ff7f42;
        transform: translateX(-50%);
        content: "";
    }
}


/*==================================================================
  .header-support-nav
===================================================================*/

.header-support-nav__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.header-support-nav__item a {
    display: block;
    color: #2095fc;
}

@media screen and (min-width: 961px) {
    .header-support-nav__list {
        position: absolute;
        top: -32px;
        right: 118px;
        padding: 0 1.8rem;
    }
    .header-support-nav__list .header-support-nav__item {
        margin: 0 1.8rem;
    }
    .header-support-nav__item a:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 960px) {
    .header-support-nav__list {
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 1rem;
    }
    .header-support-nav__item {
        margin: 0 calc(30/690*100%);
    }
    .header-support-nav__item a {
        padding: 1rem 0;
        font-size: 12px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 960px) {
    .header-support-nav__list {
        margin-bottom: 1.8rem;
    }
    .header-support-nav__item {
        margin: 0 calc(60/710*100%);
    }
    .header-support-nav__item a {
        padding: 2rem 0;
        font-size: 20px;
    }
}


/* ==========================================================================
  header modal
========================================================================== */

.header-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -10;
    visibility: hidden;
    transition-duration: 0.2s;
    transition-property: visibility;
}

.header-modal-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: opacity;
}

#header-modal-menu .header-modal-bg {
    background: url(../img/common/bg_stripe_orange01.png) repeat;
}

#header-modal-lang .header-modal-bg {
    background: url(../img/common/bg_stripe_blue01.png) repeat;
}

.header-modal-main {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    transform: translate3d(0, 1.5%, 0);
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: transform;
    -webkit-overflow-scrolling: touch;
}

.header-modal-content {
    opacity: 0;
    transition-timing-function: ease-out;
    transition-duration: 0.2s;
    transition-property: opacity;
}


/* open */

.is-header-menu-modal-opened #header-modal-menu,
.is-header-lang-modal-opened #header-modal-lang {
    z-index: 99;
    visibility: visible;
}

#header-modal-menu.is-menu-opened .header-modal-bg,
#header-modal-lang.is-lang-opened .header-modal-bg {
    opacity: 1;
}

#header-modal-menu.is-menu-opened .header-modal-main,
#header-modal-lang.is-lang-opened .header-modal-main {
    transform: translate3d(0, 0, 0);
}

#header-modal-menu.is-menu-opened .header-modal-content,
#header-modal-lang.is-lang-opened .header-modal-content {
    opacity: 1;
}

html {
    overflow-y: scroll;
}

html.is-header-menu-modal-opened,
html.is-header-lang-modal-opened {
    overflow: hidden;
}

html.is-header-menu-modal-opened .header-modal-main,
html.is-header-lang-modal-opened .header-modal-main {
    overflow-y: scroll;
}

.header-modal-lang__list li a,
.header-modal-menu__list li a {
    color: #000;
    font-weight: bold;
    margin-bottom: 22.5px;
    font-size: 1.4rem;
    display: block;
}

@media all and (min-width: 961px) {
    .header-modal-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 980px;
        margin: 12.5% auto;
        text-align: center;
    }
    .header-modal-close {
        position: absolute;
        top: 0;
        right: 20px;
        width: 50px;
        height: 50px;
        margin-top: -20px;
        transform: translateY(-100%);
    }
    .header-modal-close a {
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 20px;
        padding: 5px;
    }
    .header-modal-close .header-modal-close__ico {
        content: "";
        background-image: url(/asset/img/common/ico_close.svg);
        background-position: center center;
        background-size: contain;
        display: block;
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
    }
    .header-modal-close .header-modal-close__label {
        font-size: 13px;
        color: #2095fc;
        font-weight: bold;
        width: 100%;
        display: block;
        letter-spacing: -0.03em;
    }
    .header-modal-close a span {
        position: absolute;
        right: 0;
        left: 0;
        width: 40px;
        height: 40px;
        transform: rotate(45deg);
    }
    .header-modal-close a span::before {
        position: absolute;
        top: 18px;
        left: 8px;
        display: block;
        width: 24px;
        height: 4px;
        background: #ff7f42;
        border-radius: 2px;
        content: "";
    }
    .header-modal-close a span::after {
        position: absolute;
        top: 8px;
        left: 18px;
        display: block;
        width: 4px;
        height: 24px;
        background: #ff7f42;
        border-radius: 2px;
        content: "";
    }
}

@media all and (max-width: 960px) {
    .header-modal-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95.5%;
        margin: 10px auto;
        text-align: center;
    }
    .header-modal-lang__list {
        padding: 10vw 22vw 0;
    }
    .header-modal-menu__list {
        padding: 24vw 8vw 0;
    }
    .header-modal-lang__list li,
    .header-modal-menu__list li {
        text-align: left;
    }
    .header-modal-menu__list li.-support a {
        color: #2095fc;
    }
    .header-modal-close {
        position: absolute;
        top: 6px;
        right: 10px;
        width: calc(40/750*100%);
        max-width: 20px;
    }
    .header-modal-close a {
        position: relative;
        display: block;
        border-radius: 20px;
    }
    /* .header-modal-close a span {
    position: absolute;
    right: 0;
    left: 0;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
  } */
    .header-modal-close .header-modal-close__ico {
        content: "";
        background-image: url(/asset/img/common/ico_close.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: auto;
        margin: 0 auto 2px;
        padding-top: 100%;
    }
    .header-modal-close .header-modal-close__label {
        font-size: 10px;
        color: #2A77DC;
        font-weight: bold;
        display: block;
        letter-spacing: -0.03em;
        margin: 0 -1em;
    }
    .header-modal-close .header-modal-close__label>span {
        transform: scale(0.8, 0.8);
        display: block;
    }
    .is-header-menu-modal-opened .header-modal-close .header-modal-close__ico {
        background-image: url(/asset/img/common/ico_close_o.svg);
    }
    .is-header-menu-modal-opened .header-modal-close .header-modal-close__label {
        color: #FB7F43;
    }
    /* .header-modal-close a span::before {
    position: absolute;
    top: 13px;
    left: 5px;
    display: block;
    width: 20px;
    height: 4px;
    background: #FB7F43;
    border-radius: 2px;
    content: "";
  }
  .header-modal-close a span::after {
    position: absolute;
    top: 5px;
    left: 13px;
    display: block;
    width: 4px;
    height: 20px;
    background: #FB7F43;
    border-radius: 2px;
    content: "";
  } */
}

@media all and (min-width: 768px) and (max-width: 960px) {
    .header-modal-lang__list li a,
    .header-modal-menu__list li a {
        font-size: 2.0rem;
    }
    .header-modal-menu__list {
        padding: 12vw 8vw 0;
    }
}

@media all and (max-width: 374px) {
    .header-modal-content {
        width: 97%;
        padding: 30px 10px 30px 10px;
    }
}


/*==================================================================
    blockSkip
===================================================================*/

.blockSkip ul {
    margin: 0;
    padding: 0;
}

.blockSkip li {
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: left;
}

.blockSkip a {
    display: inline;
    font-size: 125%;
    font-weight: bold;
    left: -1000em;
    padding: 5px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: 0;
    /* width: 250px; */
    z-index: 99;
    color: #111;
    background-color: #fff;
}

.blockSkip a:focus,
.blockSkip a:active {
    color: #111;
    background: none repeat scroll 0 0 #fff !important;
    border: 2px solid #000;
    left: 230px;
    position: absolute;
    top: 50px;
    width: 250px;
}


/*==================================================================
  sec-attention
===================================================================*/

.sec-attention {
    margin-bottom: 40px;
}

.sec-attention__card {
    padding: 14px 6.2rem;
    border: 3px solid #ff4f42;
    border-radius: 8px;
    width: 100%;
    color: #ff4f42;
}

.sec-attention__card>p {
    font-size: 1.8rem;
}

.sec-attention__lead {
    line-height: 1.555555556;
    font-weight: bold;
}

.sec-attention__txt {
    line-height: 1.555555556;
    font-weight: bold;
    margin-top: 1rem;
}

.sec-attention__txt .txt-strong {
    font-size: 18px;
    line-height: 1.555555556;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #ff4f42;
    padding: .15rem 0 .15rem 1rem;
    border-radius: 6px;
    margin-right: 1rem;
}

.sec-attention__txt .txt-strong>span {
    font-size: 14px;
}


/* tablet */

@media only screen and (min-width: 768px) and (max-width: 960px) {
    .sec-attention {
        text-align: center;
        margin-bottom: 56px;
        margin-top: 56px;
    }
    .sec-attention__card {
        padding: 25px 1rem;
        border: 5px solid #ff4f42;
    }
    .sec-attention__card>p {
        font-size: 2.2rem;
    }
    .sec-attention__lead {
        line-height: 1.6;
    }
    .sec-attention__txt {
        line-height: 1.6;
        margin-top: 1rem;
    }
    .sec-attention__txt .txt-strong {
        display: inline-block;
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 2.2rem;
        padding: .15rem 1rem .15rem 2rem;
    }
    .sec-attention__txt .txt-strong>span {
        font-size: 1.8rem;
    }
}


/* sp */

@media screen and (max-width: 767px) {
    .sec-attention {
        margin-bottom: 28px;
        margin-top: 20px;
        text-align: center;
    }
    .sec-attention__card {
        padding: 12.5px 1rem;
        border: 2.5px solid #ff4f42;
    }
    .sec-attention__card>p {
        font-size: 1.4rem;
    }
    .sec-attention__lead {
        line-height: 1.6;
    }
    .sec-attention__txt {
        line-height: 1.6;
        margin-top: 1rem;
    }
    .sec-attention__txt .txt-strong {
        display: inline-block;
        margin-right: 0;
        margin-bottom: 1rem;
        font-size: 1.4rem;
        padding: .15rem .25rem .15rem 1rem;
    }
    .sec-attention__txt .txt-strong>span {
        font-size: 1.2rem;
    }
}