@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: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

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: inherit;
  font: 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;
}

textarea {
  height: auto;
}

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

/* ======= 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: 768px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

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

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 768px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

/* ------------------------------------------------------------------
  border utility
-------------------------------------------------------------------*/
.btNone {
  border-top: none !important;
}

.brNone {
  border-right: none !important;
}

.bbNone {
  border-bottom: none !important;
}

.blNone {
  border-left: none !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

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

.note {
  color: #3b3b3b;
  margin-left: 1.0em;
  text-indent: -1.0em;
}

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

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

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "Roboto", sans-serif !important;
}

.font2 {
  font-family: "Poppins", sans-serif !important;
}

/*  font-size+line-height
---------------------------------------------*/
.fzS {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .fzS {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.fz {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .fz {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.fzM {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .fzM {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.fzL {
  font-size: 1.8rem;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .fzL {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}

/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #3b3b3b;
}

.g2 {
  color: #a3a3a3;
}

.g3 {
  color: #393939;
}

.g4 {
  color: #c6c6c6;
}

.g5 {
  color: #606060;
}

.g6 {
  color: #707070;
}

.c1 {
  color: #3A93D4;
}

.c2 {
  color: #25C100;
}

.c3 {
  color: #677e93;
}

.c4 {
  color: #485969;
}

.c5 {
  color: #33393e;
}

.c6 {
  color: #e0c332;
}

.c-caution {
  color: #e20c0c;
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/* font-size
---------------------------------------------*/
.fz {
  font-size: 1.4rem;
}

.fz--s {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fz--l {
  font-size: 1.8rem;
  line-height: 2.4;
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.4rem;
  color: #000;
  line-height: 1;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
    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: 768px) {
  p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ======= hiwrite ======= */
::selection {
  background: #ededed;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  position: relative;
  z-index: 1;
}
.underHiwrite::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20%;
  background-color: #ff0;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

/* ======= 上付き文字、下付き文字 ======= */
.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;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .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: #3A93D4;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #3A93D4;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1130px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .container {
    max-width: auto;
  }
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

/*==================================================================
    form
===================================================================*/
/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  -webkit-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 {
  border: 1px solid #3A93D4;
  background-color: #fff;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

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

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: 45%;
}

@media screen and (max-width: 768px) {
  input.short,
  select.short,
  textarea.short {
    width: 100%;
  }
}
/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: #e20c0c;
  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: #3A93D4;
  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"] {
  -moz-transform-origin: right bottom;
  -moz-transform: scale(1, 1);
  -webkit-transform-origin: right bottom;
  -webkit-transform: scale(1, 1);
  transform: scale(0);
  cursor: pointer;
  transition: 0s;
}

label.checkbox,
label.radio {
  margin-bottom: 0.5em;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: 0s;
}

label.checkbox input,
label.radio input {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  height: inherit;
  width: 0px;
  display: none;
}

/* ======= checkbox ======= */
label.checkbox::before, label.checkbox::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

label.checkbox::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}

label.checkbox.checked::before {
  background: #004cad;
  border: 1px solid #004cad;
}

label.checkbox.checked::after {
  position: absolute;
  content: '';
  display: block;
  top: 3px;
  left: 5px;
  width: 15px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ======= radio ======= */
label.radio::before,
label.radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0s;
}
@media screen and (max-width: 768px) {
  label.radio::before,
  label.radio::after {
    transition: 0s;
  }
}

label.radio::before {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bcc2ba;
  border-radius: 100%;
}

label.radio::after {
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
}

label.radio.-checked::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  left: 3px;
  width: 12px;
  height: 12px;
  background: #25C100;
  border-radius: 100%;
}

/*  input file
---------------------------------------------*/
/* ======= hover ======= */
.pc label.file:hover {
  background-color: #25C100;
}

/*  select
---------------------------------------------*/
.select {
  width: 100%;
  border: solid 1px #000;
  position: relative;
  overflow: hidden;
}
.select select {
  width: 100%;
  font-size: 1.8rem;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  padding: 0.8em 20px 0.8em 1em;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
}
.select select::-ms-expand {
  display: none;
}
.select::before {
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  background-image: url(../img/common/icon_arrow_03.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
}

/*  datepicker
---------------------------------------------*/
input[type="text"].datepicker {
  width: 45%;
  background-image: url(../img/common/icon_date.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 15px;
}
@media screen and (max-width: 768px) {
  input[type="text"].datepicker {
    width: 100%;
  }
}

/*==================================================================
    .h01
===================================================================*/
.h01 {
  font-size: 3.8rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .h01 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/*==================================================================
    .hover
===================================================================*/
a.hover {
  display: block;
  position: relative;
}
a.hover::before {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 200ms ease;
  z-index: 2;
}
a.hover:hover {
  opacity: 1;
}
a.hover:hover::before {
  width: 100%;
}
a.hover.-hover01::before {
  background-color: rgba(0, 0, 0, 0.2);
}

/*==================================================================
    #news .btn01
===================================================================*/
#news .btn01 {
  display: block;
  width: 100%;
  line-height: 60px;
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  margin: 0px auto;
  border: 2px solid #000;
}
@media screen and (max-width: 768px) {
  #news .btn01 {
    line-height: 50px;
    font-size: 1.4rem;
    max-width: none;
  }
}

/*==================================================================
    #news .btn02
===================================================================*/
#news .btn02 {
  display: block;
  width: 100%;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  border: 2px solid #000;
  background: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news .btn02 {
    line-height: 50px;
    font-size: 1.4rem;
  }
}

/*==================================================================
    #news .btn03
===================================================================*/
#news .btn03 {
  display: block;
  width: 100%;
  line-height: 60px;
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  margin: 0px auto;
  border: 2px solid #000;
  position: relative;
}
#news .btn03::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: '\f104';
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  #news .btn03 {
    line-height: 50px;
    font-size: 1.4rem;
    max-width: none;
  }
}

/*==================================================================
    #line .btn01
===================================================================*/
#line .btn01 {
  display: block;
  width: 80%;
  margin: 0px auto;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  background: #25C100;
  text-align: center;
  margin: 0px auto;
  border: 2px solid #25C100;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  #line .btn01 {
    line-height: 50px;
    font-size: 1.4rem;
    max-width: none;
  }
}

/*==================================================================
    #line .btn02
===================================================================*/
#line .btn02 {
  display: block;
  width: 100%;
  line-height: 60px;
  font-size: 1.5rem;
  color: #fff;
  border: 2px solid #25C100;
  background: #25C100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #line .btn02 {
    line-height: 50px;
    font-size: 1.4rem;
    width: 80%;
    margin: 0px auto;
  }
}

/*==================================================================
    #line .btn03
===================================================================*/
#line .btn03 {
  display: block;
  width: 100%;
  line-height: 60px;
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  margin: 0px auto;
  border: 2px solid #c9c4c4;
  background: #c9c4c4;
  position: relative;
}
#line .btn03::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: '\f104';
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  #line .btn03 {
    line-height: 50px;
    font-size: 1.4rem;
    width: 80%;
    margin: 0px auto;
  }
}

/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    .tbl02
===================================================================*/
/*==================================================================
    .li01
===================================================================*/
/*==================================================================
    .pankuz
===================================================================*/
.pankuz {
  padding: 50px 0 35px;
}
@media screen and (max-width: 768px) {
  .pankuz {
    display: none;
  }
}
.pankuz_inner ul {
  display: flex;
  flex-flow: row nowrap;
  font-size: 1.2rem;
  line-height: 1.5;
}
.pankuz_inner ul li {
  padding-right: 20px;
  margin-right: 10px;
  position: relative;
}
.pankuz_inner ul li::before, .pankuz_inner ul li::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.pankuz_inner ul li::after {
  content: "／";
  right: 0;
}
.pankuz_inner ul li:first-child {
  padding-left: 20px;
}
.pankuz_inner ul li:first-child::before {
  content: "";
  width: 16px;
  height: 12px;
  background-image: url(../img/common/icon_home.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  left: 0;
}
.pankuz_inner ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.pankuz_inner ul li:last-child::after {
  display: none;
}
.pankuz_inner ul li a {
  color: #000;
}

/*==================================================================
    .pagenation
===================================================================*/
.pagenation {
  padding-top: 50px;
  text-align: center;
}
.pagenation__inner {
  display: inline-block;
}
.pagenation__inner a,
.pagenation__inner span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 1.8rem;
  border-radius: 19px;
  border: solid 1px #3A93D4;
  color: #3A93D4;
  background-color: #fff;
  margin: 0 2px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.pagenation__inner a.prev, .pagenation__inner a.next {
  background: #3A93D4;
  border: solid 1px #3A93D4;
  color: #fff;
  position: relative;
}
.pagenation__inner a.prev::before, .pagenation__inner a.prev::after, .pagenation__inner a.next::before, .pagenation__inner a.next::after {
  display: block;
  content: "";
  width: 7px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: 7px 10px;
  background-position: 0 0;
  position: absolute;
  top: 15px;
}
.pagenation__inner a:hover {
  opacity: 0.6;
}
.pagenation__inner span.current {
  border: solid 1px #3b3b3b;
  color: #fff;
  background-color: #3b3b3b;
}
.pagenation__inner span.dots {
  background: none;
  border: none;
  color: #3A93D4;
  margin: 0;
  width: 1em;
  vertical-align: top;
}

.pageLink {
  padding: 30px 0;
}
.pageLink .links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 320px) {
  .pageLink .links {
    justify-content: space-around;
  }
}
.pageLink .links__prev, .pageLink .links__next {
  width: 38%;
  text-align: center;
}
.pageLink .links__prev a, .pageLink .links__next a {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  color: #3A93D4;
}
@media screen and (max-width: 320px) {
  .pageLink .links__prev a, .pageLink .links__next a {
    font-size: 1.2rem;
  }
}
.pageLink .links__prev a:hover, .pageLink .links__next a:hover {
  opacity: 0.6;
}
.pageLink .links__list {
  width: 24%;
}
@media screen and (max-width: 320px) {
  .pageLink .links__list {
    padding: 0 0.5em;
  }
}
.pageLink .links__list a {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #3A93D4;
  text-align: center;
  position: relative;
}
.pageLink .links__list a:hover {
  opacity: 0.6;
}

/*==================================================================
    html
===================================================================*/
html.open {
  overflow: hidden;
}
html.open body {
  overflow: hidden;
}

/*==================================================================
    .header
===================================================================*/
#news .header {
  width: 100%;
  height: 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #news .header {
    height: 50px;
  }
}
#news .header + .lines {
  display: flex;
  flex-flow: row wrap;
}
#news .header + .lines li {
  width: 20%;
  height: 20px;
}
#news .header + .lines li:nth-child(1) {
  background: #FF6E6E;
}
#news .header + .lines li:nth-child(2) {
  background: #F5B155;
}
#news .header + .lines li:nth-child(3) {
  background: #A0DE3D;
}
#news .header + .lines li:nth-child(4) {
  background: #3D9ADE;
}
#news .header + .lines li:nth-child(5) {
  background: #A65DEF;
}

#line .header {
  width: 100%;
  height: 80px;
  background-color: #EAEAEA;
}
@media screen and (max-width: 768px) {
  #line .header {
    height: 50px;
  }
}

/*==================================================================
    .menu-trigger
===================================================================*/
#news .trigger, #line .trigger {
  display: none;
}
@media screen and (max-width: 768px) {
  #news .trigger, #line .trigger {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    transition: all 200ms ease;
  }
  #news .trigger.active, #line .trigger.active {
    background-color: inherit;
  }
  #news .trigger .menu-trigger,
  #news .trigger .menu-trigger span, #line .trigger .menu-trigger,
  #line .trigger .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  #news .trigger .menu-trigger, #line .trigger .menu-trigger {
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 11px;
  }
  #news .trigger .menu-trigger span, #line .trigger .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c6c6c6;
  }
  #news .trigger .menu-trigger span:nth-of-type(1), #line .trigger .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  #news .trigger .menu-trigger span:nth-of-type(2), #line .trigger .menu-trigger span:nth-of-type(2) {
    top: 9px;
  }
  #news .trigger .menu-trigger span:nth-of-type(3), #line .trigger .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #news .trigger .menu-trigger.active span, #line .trigger .menu-trigger.active span {
    background-color: #fff;
  }
  #news .trigger .menu-trigger.active span:nth-of-type(1), #line .trigger .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-315deg);
    transform: translateY(9px) rotate(-315deg);
  }
  #news .trigger .menu-trigger.active span:nth-of-type(2), #line .trigger .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #news .trigger .menu-trigger.active span:nth-of-type(3), #line .trigger .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(315deg);
    transform: translateY(-9px) rotate(315deg);
  }
  #news .trigger em, #line .trigger em {
    display: inline-block;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

#line .trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
}

/*==================================================================
    .pagetop
===================================================================*/
.pagetop {
  display: block;
  width: 120px;
  height: 80px;
  text-align: center;
  background-color: #a3a3a3;
  position: fixed;
  right: 4vw;
  bottom: 60px;
  z-index: 99;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 100px;
    height: 50px;
    right: 2vw;
    bottom: 10px;
  }
}
.pagetop span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.1;
  color: #fff;
  font-weight: bold;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pagetop span {
    font-size: 1.1rem;
    padding-top: 30px;
  }
}
.pagetop span::before {
  display: block;
  content: "";
  width: 1px;
  height: 24px;
  background-color: #fff;
  position: absolute;
  top: 13px;
  left: 50%;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .pagetop span::before {
    height: 16px;
    top: 8px;
  }
}
.pagetop:hover span::before {
  top: 8px;
}

/*==================================================================
    .footer
===================================================================*/
#news .footer {
  width: 100%;
  padding: 15px;
  border-top: 1px solid #000;
}
#news .footer small {
  font-size: 1.2rem;
  text-align: center;
  color: #000;
  display: block;
}
@media screen and (max-width: 768px) {
  #news .footer small {
    font-size: 1.1rem;
  }
}

#line .footer {
  width: 100%;
  padding: 15px;
  background-color: #EAEAEA;
}
#line .footer small {
  font-size: 1.2rem;
  text-align: center;
  color: #3b3b3b;
  display: block;
}
@media screen and (max-width: 768px) {
  #line .footer small {
    font-size: 1.1rem;
  }
}

#root .footer {
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 50px;
}

/*==================================================================
    .mainView
===================================================================*/
.mainView {
  width: 100%;
  padding-top: calc(90px + 2.3vw);
  padding-bottom: 8.5vw;
  background-color: #f8f8f8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainView {
    padding-top: 50px;
    padding-bottom: 0px;
  }
}
.mainView_inner {
  width: 100%;
  max-width: 1920px;
  padding: 0 3vw;
}
@media screen and (max-width: 768px) {
  .mainView_inner {
    max-width: 100%;
    padding: 0px;
  }
}
.mainView_main {
  width: 72.6vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mainView_main {
    width: 100vw;
  }
}
.mainView_main img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainView_main img {
    height: 100%;
  }
}
.mainView_sub {
  width: 100%;
  height: calc(100% - 5.5vw);
}
.mainView_sub span {
  display: block;
  height: 30vw;
  position: absolute;
  bottom: 5.5vw;
  right: 0;
}
.mainView_sub span:nth-of-type(1) {
  width: 16.3vw;
  background-color: #393939;
}
@media screen and (max-width: 768px) {
  .mainView_sub span:nth-of-type(1) {
    width: 6.3vw;
  }
}
.mainView_sub span:nth-of-type(2) {
  width: 70.3vw;
  background-color: #c6c6c6;
  right: 16.3vw;
}
@media screen and (max-width: 768px) {
  .mainView_sub span:nth-of-type(2) {
    width: 80.3vw;
    right: 6.3vw;
  }
}
.mainView_catch {
  position: absolute;
  right: 9.7vw;
  bottom: 18vw;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .mainView_catch {
    text-align: center;
    right: 0;
    top: 90px;
    padding: 0 8vw;
  }
}
@media screen and (max-width: 991px) {
  .mainView_catch img {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .mainView_catch img {
    max-width: 45vw;
  }
}

/*==================================================================
    .subnav
===================================================================*/
.subnav {
  padding: 0 0 45px;
}
@media screen and (max-width: 768px) {
  .subnav {
    padding: 0 8vw 40px;
  }
}
.subnav_list {
  display: flex;
  flex-flow: row nowrap;
}
@media screen and (max-width: 768px) {
  .subnav_list {
    display: block;
  }
}
.subnav_list:hover li a {
  opacity: 0.2;
}
@media screen and (max-width: 768px) {
  .subnav_list:hover li a {
    opacity: 1;
  }
}
.subnav_item {
  width: calc(100% / 3);
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .subnav_item {
    width: 100%;
    margin-bottom: 15px;
  }
  .subnav_item:last-child {
    margin-bottom: 0;
  }
}
.subnav_item a {
  display: block;
  color: #000;
  text-align: center;
}
.subnav_item a dt {
  margin-bottom: 15px;
  position: relative;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .subnav_item a dt {
    margin-bottom: 10px;
  }
}
.subnav_item a dt img {
  width: 100%;
}
.subnav_item a dd {
  font-size: 1.5rem;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
  padding-top: 20px;
  position: relative;
  transition: all 200ms ease;
}
.subnav_item a dd::before {
  display: block;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #707070;
  position: absolute;
  top: 0;
  left: 50%;
  transition: all 200ms ease;
}
.subnav_item a:hover {
  opacity: 1 !important;
}
.subnav_item a:hover dt {
  transform: scale(1.05);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .subnav_item a:hover dt {
    transform: scale(1);
  }
}
.subnav_item a:hover dd {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .subnav_item a:hover dd {
    transform: scale(1);
  }
}
.subnav_item a:hover dd::before {
  top: -5px;
}

/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: all 200ms ease;
  animation-duration: 200ms;
  animation-fill-mode: both;
}

.animate.animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.aD0 {
  animation-delay: 0s;
}

.aD1 {
  animation-delay: 0.1s;
}

.aD2 {
  animation-delay: 0.2s;
}

.aD3 {
  animation-delay: 0.3s;
}

.aD4 {
  animation-delay: 0.4s;
}

.aD5 {
  animation-delay: 0.5s;
}

.aD6 {
  animation-delay: 0.6s;
}

.aD7 {
  animation-delay: 0.7s;
}

.aD8 {
  animation-delay: 0.8s;
}

.aD9 {
  animation-delay: 0.9s;
}

.aD10 {
  animation-delay: 1s;
}

.aD11 {
  animation-delay: 1.1s;
}

.aD12 {
  animation-delay: 1.2s;
}

.aD13 {
  animation-delay: 1.3s;
}

.aD14 {
  animation-delay: 1.4s;
}

.aD15 {
  animation-delay: 1.5s;
}

.aD16 {
  animation-delay: 1.6s;
}

.aD17 {
  animation-delay: 1.7s;
}

.aD18 {
  animation-delay: 1.8s;
}

.aD19 {
  animation-delay: 1.9s;
}

.aD20 {
  animation-delay: 2s;
}

.aD21 {
  animation-delay: 2.1s;
}

.aD22 {
  animation-delay: 2.2s;
}

.aD23 {
  animation-delay: 2.3s;
}

.aD24 {
  animation-delay: 2.4s;
}

.aD25 {
  animation-delay: 2.5s;
}

.aD26 {
  animation-delay: 2.6s;
}

.aD27 {
  animation-delay: 2.7s;
}

.aD28 {
  animation-delay: 2.8s;
}

.aD29 {
  animation-delay: 2.9s;
}

.aD30 {
  animation-delay: 3s;
}

.aD31 {
  animation-delay: 3.1s;
}

.aD32 {
  animation-delay: 3.2s;
}

.aD33 {
  animation-delay: 3.3s;
}

.aD34 {
  animation-delay: 3.4s;
}

.aD35 {
  animation-delay: 3.5s;
}

.aD36 {
  animation-delay: 3.6s;
}

.aD37 {
  animation-delay: 3.7s;
}

.aD38 {
  animation-delay: 3.8s;
}

.aD39 {
  animation-delay: 3.9s;
}

.aD40 {
  animation-delay: 4s;
}

.aD41 {
  animation-delay: 4.1s;
}

.aD42 {
  animation-delay: 4.2s;
}

.aD43 {
  animation-delay: 4.3s;
}

.aD44 {
  animation-delay: 4.4s;
}

.aD45 {
  animation-delay: 4.5s;
}

.aD46 {
  animation-delay: 4.6s;
}

.aD47 {
  animation-delay: 4.7s;
}

.aD48 {
  animation-delay: 4.8s;
}

.aD49 {
  animation-delay: 4.9s;
}

.aD50 {
  animation-delay: 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*==================================================================
    .effect01
===================================================================*/
.effect01 {
  transition: all 200ms ease;
  position: relative;
  overflow: hidden;
}
.effect01 span {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
.effect01 span:nth-of-type(1) {
  background-color: white;
  z-index: 3;
  animation-name: effect-a;
}
.effect01 span:nth-of-type(2) {
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation-name: effect-b;
}

@keyframes effect-a {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes effect-b {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/*==================================================================
    .puyon
===================================================================*/
.puyon {
  animation: puyon 2s linear 0s infinite;
}

@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  20% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/*==================================================================
    .headline01
===================================================================*/
.headline01 {
  animation: line 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s 1 alternate forwards running;
}
.headline01::before {
  transform-origin: 0 0;
  animation: line 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s 1 alternate forwards running;
}

@keyframes line {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
#news .leadBlock {
  padding-bottom: 30px;
}
#news .leadBlock h1 {
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 20px 0px;
  color: #3A93D4;
}
#news .leadBlock span {
  text-align: left;
  margin-bottom: 20px;
  display: block;
}
#news .leadBlock p em {
  color: #d40000;
}
#news .leadBlock p a {
  text-decoration: underline;
  color: #006eb8;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100%;
}
.modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 90vw;
}
.modal_content_inner {
  position: relative;
  padding: 24px;
  text-align: center;
  line-height: 1.6;
}
.modal_content_inner p {
  margin-bottom: 20px;
}

main {
  padding-bottom: 80px;
}

#news .action_list {
  text-align: center;
}
#news .action_item {
  width: 100%;
  max-width: 320px;
  margin: 0px auto 10px;
}
#news .action_item:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #news .action_item {
    max-width: none;
  }
}

/*==================================================================
    .news01
===================================================================*/
.news01 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .news01 .content {
    padding: 0 0 30px;
  }
}
.news01 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
}
.news01 .content p {
  margin-bottom: 15px;
}
.news01 .content dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.news01 .content dd {
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: justify;
}
.news01 .content ul {
  margin-bottom: 15px;
}
.news01 .content ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .news02
===================================================================*/
.news02 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .news02 .content {
    padding: 0 0 30px;
  }
}
.news02 .content .toggle_box {
  margin-bottom: 15px;
}
.news02 .content .toggle_box:last-child {
  margin-bottom: 0px;
}
.news02 .content .toggle_ttl {
  border: 1px solid #000;
  border-radius: 2px;
  position: relative;
  border: 1px solid #000;
  border-radius: 2px;
  padding-left: 10px;
}
.news02 .content .toggle_ttl::after {
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/common/icon_faq_plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 1em;
  right: 15px;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .news02 .content .toggle_ttl::after {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.news02 .content .toggle_ttl.active {
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-bottom: 0px;
}
.news02 .content .toggle_ttl:hover::after {
  transform: rotate(360deg);
}
@media screen and (max-width: 768px) {
  .news02 .content .toggle_ttl:hover::after {
    transform: translate(0, -50%);
  }
}
.news02 .content .toggle_ttl.active::after {
  background-image: url(../img/common/icon_faq_minus_active.svg);
}
.news02 .content .toggle_ttl h2 {
  display: block;
  line-height: 44px;
}
.news02 .content .toggle_child {
  display: none;
  font-size: 1.6rem;
  padding: 1em;
  line-height: 2;
  color: #000;
  background-color: #f3f3f3;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 768px) {
  .news02 .content .toggle_child {
    line-height: 1.6;
    font-size: 1.3rem;
  }
}
.news02 .content .toggle_child p {
  margin-bottom: 15px;
}
.news02 .content .toggle_child p:last-child {
  margin-bottom: 0px;
}
.news02 .content .toggle_child dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.news02 .content .toggle_child dd {
  margin-bottom: 1.5em;
  text-align: justify;
}
.news02 .content .toggle_child dd:last-of-type {
  margin-bottom: 0px;
}
.news02 .content .toggle_child ul {
  margin-bottom: 15px;
}
.news02 .content .toggle_child ul:last-child {
  margin-bottom: 0px;
}
.news02 .content .toggle_child ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .news03
===================================================================*/
.news03 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .news03 .content {
    padding: 0 0 30px;
  }
}
.news03 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
}
.news03 .content p {
  margin-bottom: 15px;
}
.news03 .content dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.news03 .content dd {
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: justify;
}
.news03 .content ul {
  margin-bottom: 15px;
}
.news03 .content ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .news04
===================================================================*/
.news04 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .news04 .content {
    padding: 0 0 30px;
  }
}
.news04 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.news04 .content .group_box {
  border: 1px solid #000;
  padding: 15px;
  margin-bottom: 40px;
}
.news04 .content .group_box:last-child {
  margin-bottom: 0px;
}
.news04 .content .group_box .checkList {
  margin-bottom: 30px;
}
.news04 .content .group_box p {
  padding-left: 30px;
  margin-bottom: 15px;
}
.news04 .content .group_box dl {
  padding-left: 30px;
}
.news04 .content .group_box dl dt {
  display: block;
  line-height: 36px;
  border-bottom: 1px solid #000;
  position: relative;
  padding-left: 20px;
  font-size: 1.7rem;
}
.news04 .content .group_box dl dt::before {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '\f152';
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
.news04 .content .group_box dl dt.active::before {
  content: '\f150';
}
.news04 .content .group_box dl dd {
  display: none;
  padding: 15px 0px 0px;
}
.news04 .content .group_box dl dd label {
  width: 100%;
  margin-right: 0px;
  display: block;
  line-height: 25px;
  margin-bottom: 10px;
}
.news04 .content .label_parent, .news04 .content .label_child {
  padding-left: 30px;
  line-height: 25px;
}
.news04 .content .label_parent {
  font-size: 18px;
}
.news04 .content label.checkbox::after {
  top: 7px;
}
.news04 .content label.checkbox::before {
  top: 0px;
  transform: none;
}
.news04 .content label.checkbox.checked::after {
  top: 7px;
}
.news04 .content label.checkbox.checked::before {
  background: #3D9ADE;
  border: 1px solid #3D9ADE;
  top: 0px;
  transform: none;
}

/*==================================================================
    .news05
===================================================================*/
.news05 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .news05 .content {
    padding: 0 0 30px;
  }
}
.news05 .content .access_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news05 .content .access_list {
    flex-flow: column;
  }
}
.news05 .content .access_item {
  padding: 15px 10px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .news05 .content .access_item {
    width: 100%;
    padding: 10px 10px;
  }
}
.news05 .content .access_btn {
  border: 1px solid #000;
  border-radius: 2px;
  line-height: 60px;
  padding: 0px 15px;
  font-size: 1.8rem;
  display: block;
  position: relative;
  color: #000;
}
.news05 .content .access_btn::before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: '\f105';
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  .news05 .content .access_btn {
    line-height: 50px;
    font-size: 1.6rem;
    max-width: none;
  }
}
.news05 .content dl {
  border-radius: 4px;
  border: 1px solid #000;
  margin-bottom: 30px;
}
.news05 .content dl:last-child {
  margin-bottom: 0px;
}
.news05 .content dl dt {
  display: block;
  position: relative;
  border-bottom: 1px solid #000;
  line-height: 50px;
  padding: 0px 20px;
  font-size: 1.6rem;
}
.news05 .content dl dt .switchery {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.news05 .content dl dt .switchery small {
  background-color: #fff !important;
}
.news05 .content dl dd {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
  background: #dadada;
  color: #b7b7b7;
}
.news05 .content dl dd label {
  font-size: 18px;
  padding-left: 30px;
  line-height: 25px;
  display: block;
  margin-bottom: 20px;
  pointer-events: none;
}
.news05 .content dl dd label:last-child {
  margin-bottom: 0px;
}
.news05 .content dl dd label em {
  font-size: 1.2rem;
}
.news05 .content dl dd label.checkbox::after {
  top: 7px;
}
.news05 .content dl dd label.checkbox::before {
  top: 0px;
  transform: none;
  background: #e4e4e4;
  border: 1px solid #b7b7b7;
}
.news05 .content dl dd label.checkbox.checked::after {
  top: 7px;
}
.news05 .content dl dd label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}
.news05 .content dl dd.active {
  background: #fff;
  color: #000;
}
.news05 .content dl dd.active label {
  pointer-events: auto;
}
.news05 .content dl dd.active label.checkbox::before {
  top: 0px;
  transform: none;
  background: #fff;
  border: 1px solid #d9d9d9;
}
.news05 .content dl dd.active label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}

/*==================================================================
    .news05
===================================================================*/
/*.news05 .content {
    padding: 0px 0 80px;
    @include mq() {
        padding: 0 0 30px;
    }
    .access {
        &_list {
            display: flex;
            flex-flow: row wrap;
            margin: 0px -10px;
            justify-content: center;
            @include mq(){
                flex-flow: column;
            }
        }
        &_item {
            padding: 15px 10px;
            width: 50%;
            @include mq(){
                width:100%;
                padding: 10px 10px;
            }
        }
        &_btn {
            border: 1px solid $k;
            border-radius: 2px;
            line-height: 60px;
            padding: 0px 15px;
            font-size: 1.8rem;
            display: block;
            position: relative;
            color: $k;
            &::before {
                position: absolute;
                right: 10px;
                top: 50%;
                transform: translateY(-50%);
                content: '\f105';
                font-weight: 700;
                font-family: "Font Awesome 5 Free";
            }
            @include mq() {
                line-height: 50px;
                font-size: 1.6rem;
                max-width: none;
            }
        }
    }
    dl {
        border-radius: 4px;
        border: 1px solid $k;
        margin-bottom: 30px;
        &:last-child {
            margin-bottom: 0px;
        }
        dt {
            display: block;
            position: relative;
            border-bottom: 1px solid $k;
            line-height: 50px;
            padding: 0px 20px;
            font-size: 1.6rem;
            .switchery {
                position: absolute;
                top: 50%;
                right: 20px;
                transform: translateY(-50%);
                small {
                    background-color: $w !important;
                }
            }
        }
        dd {
            padding: 20px;
            font-size: 1.4rem;
            line-height: 1.5;
            input[type=checkbox] {
                display: block;
                transform: scale(1);
            }
        }
    }
}*/
#line .leadBlock {
  padding-bottom: 30px;
}
#line .leadBlock h1 {
  display: block;
  text-align: center;
  line-height: 40px;
  margin: 20px 0px;
  color: #25C100;
}
#line .leadBlock h1.-red {
  color: #d40000;
}
#line .leadBlock span {
  text-align: left;
  margin-bottom: 20px;
  display: block;
}
#line .leadBlock p em {
  color: #d40000;
}
#line .leadBlock p a {
  text-decoration: underline;
  color: #006eb8;
}

#line .action_list {
  text-align: center;
}
#line .action_item {
  width: 100%;
  max-width: 320px;
  margin: 0px auto 10px;
}
#line .action_item:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #line .action_item {
    max-width: none;
  }
}

/*==================================================================
    .line01
===================================================================*/
.line01 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .line01 .content {
    padding: 0 0 30px;
  }
}
.line01 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
  color: #25C100;
}
.line01 .content p {
  margin-bottom: 15px;
}
.line01 .content dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.line01 .content dd {
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: justify;
}
.line01 .content ul {
  margin-bottom: 15px;
}
.line01 .content ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .line02
===================================================================*/
.line02 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .line02 .content {
    padding: 0 0 60px;
  }
}
.line02 .content .toggle_box {
  margin-bottom: 15px;
}
.line02 .content .toggle_box:last-child {
  margin-bottom: 0px;
}
.line02 .content .toggle_ttl {
  position: relative;
  border: 1px solid #25C100;
  border-radius: 2px;
  padding-left: 10px;
  background: #25C100;
  color: #fff;
}
.line02 .content .toggle_ttl::after {
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(../img/common/icon_line_plus.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 1em;
  right: 15px;
  transition: all 200ms ease;
}
@media screen and (max-width: 768px) {
  .line02 .content .toggle_ttl::after {
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
.line02 .content .toggle_ttl.active {
  color: #fff;
  cursor: pointer;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  margin-bottom: 0px;
}
.line02 .content .toggle_ttl:hover::after {
  transform: rotate(360deg);
}
@media screen and (max-width: 768px) {
  .line02 .content .toggle_ttl:hover::after {
    transform: translate(0, -50%);
  }
}
.line02 .content .toggle_ttl.active::after {
  background-image: url(../img/common/icon_faq_minus_active.svg);
}
.line02 .content .toggle_ttl h2 {
  display: block;
  line-height: 44px;
}
.line02 .content .toggle_child {
  display: none;
  font-size: 1.6rem;
  padding: 1em;
  line-height: 2;
  color: #000;
  background-color: #f3f3f3;
}
@media screen and (max-width: 768px) {
  .line02 .content .toggle_child {
    line-height: 1.6;
    font-size: 1.3rem;
  }
}
.line02 .content .toggle_child p {
  margin-bottom: 15px;
}
.line02 .content .toggle_child p:last-child {
  margin-bottom: 0px;
}
.line02 .content .toggle_child dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.line02 .content .toggle_child dd {
  margin-bottom: 1.5em;
  text-align: justify;
}
.line02 .content .toggle_child dd:last-of-type {
  margin-bottom: 0px;
}
.line02 .content .toggle_child ul {
  margin-bottom: 15px;
}
.line02 .content .toggle_child ul:last-child {
  margin-bottom: 0px;
}
.line02 .content .toggle_child ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .line03
===================================================================*/
.line03 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .line03 .content {
    padding: 0 0 30px;
  }
}
.line03 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
  color: #25C100;
}
.line03 .content p {
  margin-bottom: 15px;
}
.line03 .content dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 5px;
}
.line03 .content dd {
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: justify;
}
.line03 .content ul {
  margin-bottom: 15px;
}
.line03 .content ul li {
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
}

/*==================================================================
    .line04
===================================================================*/
.line04 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .line04 .content {
    padding: 0 0 30px;
  }
}
.line04 .content h2 {
  display: block;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.line04 .content dl {
  border-radius: 4px;
  border: 1px solid #000;
  margin-bottom: 30px;
}
.line04 .content dl:last-child {
  margin-bottom: 0px;
}
.line04 .content dl dt {
  display: block;
  position: relative;
  border-bottom: 1px solid #000;
  line-height: 50px;
  padding: 0px 20px;
  font-size: 1.6rem;
}
.line04 .content dl dt .switchery {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.line04 .content dl dt .switchery small {
  background-color: #fff !important;
}
.line04 .content dl dd {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
  background: #dadada;
  color: #b7b7b7;
}
.line04 .content dl dd label {
  font-size: 18px;
  padding-left: 30px;
  line-height: 25px;
  display: block;
  margin-bottom: 20px;
  pointer-events: none;
}
.line04 .content dl dd label:last-child {
  margin-bottom: 0px;
}
.line04 .content dl dd label.checkbox::after {
  top: 7px;
}
.line04 .content dl dd label.checkbox::before {
  top: 0px;
  transform: none;
  background: #e4e4e4;
  border: 1px solid #b7b7b7;
}
.line04 .content dl dd label.checkbox.checked::after {
  top: 7px;
}
.line04 .content dl dd label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}
.line04 .content dl dd.active {
  background: #fff;
  color: #000;
}
.line04 .content dl dd.active label {
  pointer-events: auto;
}
.line04 .content dl dd.active label.checkbox::before {
  top: 0px;
  transform: none;
  background: #fff;
  border: 1px solid #d9d9d9;
}
.line04 .content dl dd.active label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}

/*==================================================================
    .line05
===================================================================*/
.line05 .content {
  padding: 0px 0 80px;
}
@media screen and (max-width: 768px) {
  .line05 .content {
    padding: 0 0 30px;
  }
}
.line05 .content .access_list {
  display: flex;
  flex-flow: row wrap;
  margin: 0px -10px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .line05 .content .access_list {
    flex-flow: column;
  }
}
.line05 .content .access_item {
  padding: 15px 10px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .line05 .content .access_item {
    width: 100%;
    padding: 10px 10px;
  }
}
.line05 .content .access_btn {
  border: 1px solid #25C100;
  background: #25C100;
  border-radius: 2px;
  line-height: 60px;
  padding: 0px 15px;
  font-size: 1.8rem;
  display: block;
  position: relative;
  color: #fff;
}
.line05 .content .access_btn::before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: '\f105';
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  .line05 .content .access_btn {
    line-height: 50px;
    font-size: 1.6rem;
    max-width: none;
  }
}
.line05 .content dl {
  border-radius: 4px;
  border: 1px solid #000;
  margin-bottom: 30px;
}
.line05 .content dl:last-child {
  margin-bottom: 0px;
}
.line05 .content dl dt {
  display: block;
  position: relative;
  border-bottom: 1px solid #000;
  line-height: 50px;
  padding: 0px 20px;
  font-size: 1.6rem;
}
.line05 .content dl dt .switchery {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.line05 .content dl dt .switchery small {
  background-color: #fff !important;
}
.line05 .content dl dd {
  padding: 20px;
  font-size: 1.4rem;
  line-height: 1.5;
  background: #dadada;
  color: #b7b7b7;
}
.line05 .content dl dd label {
  font-size: 18px;
  padding-left: 30px;
  line-height: 25px;
  display: block;
  margin-bottom: 20px;
  pointer-events: none;
}
.line05 .content dl dd label:last-child {
  margin-bottom: 0px;
}
.line05 .content dl dd label em {
  font-size: 1.2rem;
}
.line05 .content dl dd label.checkbox::after {
  top: 7px;
}
.line05 .content dl dd label.checkbox::before {
  top: 0px;
  transform: none;
  background: #e4e4e4;
  border: 1px solid #b7b7b7;
}
.line05 .content dl dd label.checkbox.checked::after {
  top: 7px;
}
.line05 .content dl dd label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}
.line05 .content dl dd.active {
  background: #fff;
  color: #000;
}
.line05 .content dl dd.active label {
  pointer-events: auto;
}
.line05 .content dl dd.active label.checkbox::before {
  top: 0px;
  transform: none;
  background: #fff;
  border: 1px solid #d9d9d9;
}
.line05 .content dl dd.active label.checkbox.checked::before {
  background: #25C100;
  border: 1px solid #25C100;
  top: 0px;
  transform: none;
}

#root {
  background: #77bae1;
  position: relative;
  height: 100vh;
}

#root main {
  padding: 80px 0px;
}

/*==================================================================
    #root
===================================================================*/
#root .landing h1 {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 10rem;
  text-align: center;
  margin-bottom: 0.25em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #root .landing h1 {
    font-size: 4rem;
    margin-bottom: 40px;
    display: block;
  }
}
#root .landing h1 + p {
  margin-bottom: 80px;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #root .landing h1 + p {
    font-size: 1.4rem;
    display: none;
  }
}
#root .landing h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #root .landing h2 {
    font-size: 2.2rem;
  }
}
#root .landing .list {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 70px;
}
#root .landing .item {
  width: 20%;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  #root .landing .item {
    width: 50%;
    padding: 0px 5px 10px;
  }
}
#root .landing dl {
  background: #fff;
  border-radius: 4px;
  padding: 0px;
}
#root .landing dl a:hover {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
#root .landing dt {
  text-align: center;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  #root .landing dt {
    display: none;
  }
}
#root .landing dt img {
  width: 100%;
}
#root .landing dd {
  display: block;
  line-height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed",sans-serif;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #root .landing dd {
    border-radius: 4px;
    line-height: 50px;
    background: #fff;
    color: #000;
    border: 1px solid #56a5d4;
  }
}
@media screen and (max-width: 768px) {
  #root .landing dd.-sn {
    background: #000;
    color: #fff;
  }
}
