@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 100;
  src: url("/font/NotoSansJP-Thin.woff2") format('woff2'), url("/font/NotoSansJP-Thin.woff") format('woff'), url("/font/NotoSansJP-Thin.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 200;
  src: url("/font/NotoSansJP-Light.woff2") format('woff2'), url("/font/NotoSansJP-Light.woff") format('woff'), url("/font/NotoSansJP-Light.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  src: url("/font/NotoSansJP-DemiLight.woff2") format('woff2'), url("/font/NotoSansJP-DemiLight.woff") format('woff'), url("/font/NotoSansJP-DemiLight.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url("/font/NotoSansJP-Regular.woff2") format('woff2'), url("/font/NotoSansJP-Regular.woff") format('woff'), url("/font/NotoSansJP-Regular.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url("/font/NotoSansJP-Medium.woff2") format('woff2'), url("/font/NotoSansJP-Medium.woff") format('woff'), url("/font/NotoSansJP-Medium.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url("/font/NotoSansJP-Bold.woff2") format('woff2'), url("/font/NotoSansJP-Bold.woff") format('woff'), url("/font/NotoSansJP-Bold.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 900;
  src: url("/font/NotoSansJP-Black.woff2") format('woff2'), url("/font/NotoSansJP-Black.woff") format('woff'), url("/font/NotoSansJP-Black.otf") format('opentype');
}
html {
  font-size: 62.5%;
}
@media screen and (max-width: 640px) {
  html {
    font-size: 2.5vw;
  }
}
body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
  color: #333;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}
* {
  margin: 0;
  padding: 0;
}
img {
  max-width: inherit;
}
@media screen and (max-width: 640px) {
  img {
    height: auto;
  }
}
picture img {
  max-width: inherit;
}
@media screen and (max-width: 780px) {
  picture img {
    max-width: 100%;
    height: auto;
  }
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 640px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
button {
  outline: 0;
  border: 0;
}
img {
  flex-shrink: 0;
}
html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
time,
mark,
audio,
video,
details,
summary {
  font-weight: inherit;
  line-height: 1.6em;
}
.wrapper {
  width: 100%;
  overflow: hidden;
}
.bg-white {
  background: #fff;
}
.bg-gray {
  background: #f2f2f2;
}
.bg-lightblue {
  background: #008dd0;
}
.button-white,
.button-green,
.button-blue {
  display: block;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.25);
  line-height: 40px;
  font-weight: normal;
  text-align: center;
  font-size: 1.6rem;
  font-family: inherit;
  transition: box-shadow 300ms;
}
@media screen and (max-width: 425px) {
  .button-white,
  .button-green,
  .button-blue {
    line-height: 30px;
  }
}
.button-white:before,
.button-green:before,
.button-blue:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  opacity: 0;
  z-index: 0;
  transition: opacity 300ms;
}
.button-white:hover,
.button-green:hover,
.button-blue:hover {
  box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.25);
}
.button-white:hover::before,
.button-green:hover::before,
.button-blue:hover::before {
  opacity: 1;
}
.button-white >*,
.button-green >*,
.button-blue >* {
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.button-white >*:hover,
.button-green >*:hover,
.button-blue >*:hover {
  text-decoration: none;
}
.button-white .note,
.button-green .note,
.button-blue .note {
  margin-bottom: 0.5em;
  display: block;
  font-size: 1.5rem;
}
.button-arrow::after {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}
.button-arrow >* {
  padding: 0 18px;
}
@media screen and (max-width: 768px) {
  .button-arrow >* {
    padding: 0 18px;
  }
}
.button-white {
  background: #fff;
  background: linear-gradient(135deg, #fff 0%, #e6ebf4 100%);
  box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
}
.button-white::before {
  background: #dff2f8;
  background: linear-gradient(135deg, #dff2f8 0%, #fff 100%);
}
.button-white >* {
  color: #006eb5;
}
.button-white:hover {
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.32);
}
.button-white.button-arrow::after {
  border-color: #006eb5;
}
.button-green {
  background: #60d000;
  background: linear-gradient(135deg, #60d000 50%, #46c328 100%);
}
.button-green::before {
  background: #9ce512;
  background-image: linear-gradient(135deg, #9ce512 50%, #9ce512 50%, #49b72e 100%);
}
.button-green:hover {
  box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.25);
}
.button-blue {
  background: #006eb6;
  background: linear-gradient(135deg, #006eb6 1%, #003f95 100%);
}
.button-blue::before {
  background: #019cd7;
  background: linear-gradient(135deg, #019cd7 1%, #006eb5 100%);
}
.button-blue:hover {
  box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.32);
}
.button-width289 {
  width: 289px;
}
.button-width240 {
  width: 240px;
}
@media screen and (max-width: 425px) {
  .button-width240 {
    width: 50vw;
  }
}
.button-width189 {
  width: 189px;
}
@media screen and (max-width: 425px) {
  .button-width189 {
    width: 38vw;
  }
}
.button-width125 {
  width: 125px;
  text-align: center;
}
@media screen and (max-width: 425px) {
  .button-width125 {
    width: 75px;
    font-size: 1.4rem;
  }
}
.button-width100 {
  width: 100px;
  text-align: center;
}
.button-totop {
  $size: 74px;
  width: $size;
  height: $size;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: rgba(0,110,181,0.6);
  text-indent: -9999px;
  cursor: pointer;
  transform: translateY(100px);
  transition: transform 250ms;
}
.button-totop::after {
  content: '';
  width: 13px;
  height: 13px;
  display: block;
  border-top: solid 2px $color-white;
  border-right: solid 2px $color-white;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .button-totop {
    $size_sp: 50px;
    width: $size_sp;
    height: $size_sp;
    right: 10px;
    bottom: 10px;
  }
}
ul,
ol,
li,
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list > li > :last-child {
  margin-bottom: 0;
}
.list ul,
.list ol {
  counter-reset: cnt;
}
.list > li:nth-child(n+2),
.list > li > ul {
  margin-top: 5px;
}
.list-divider > li {
  padding: 10px;
}
.list-divider > li:nth-child(n+2) {
  margin-top: 0;
  border-top: 1px solid $color-gray;
}
.list-striped > li {
  padding: 10px;
}
.list-striped > li:nth-of-type(odd) {
  background: #f8f8f8;
}
.list-striped > li:nth-child(n+2) {
  margin-top: 0;
}
.list-bullet > li,
.list-asterisk > li,
.list-asterisk-num > li,
.list-parentheses > li,
.list-circled > li,
.list-circled-white > li {
  position: relative;
  padding-left: 1.5em;
  counter-increment: cnt;
}
.list-bullet > li::before,
.list-asterisk > li::before,
.list-asterisk-num > li::before,
.list-parentheses > li::before,
.list-circled > li::before,
.list-circled-white > li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.3em;
  height: 1.3em;
}
.list-parentheses > li {
  padding-left: 1.6em;
}
.list-bullet > li {
  padding-left: 1.3em;
}
.list-bullet > li::before {
  content: "・";
}
.list-asterisk > li {
  padding-left: 1.3em;
}
.list-asterisk > li::before {
  content: "※";
}
.list-asterisk-num > li {
  padding-left: 2em;
}
.list-asterisk-num > li::before {
  content: "※" counter(cnt);
}
.list-parentheses > li {
  padding-left: 2.5em;
}
.list-parentheses > li::before {
  content: "（" counter(cnt) "） ";
}
.list-circled > li::before {
  content: counter(cnt);
  background: #333;
  border-radius: 1em;
  color: #fff;
  text-align: center;
  line-height: 1.3em;
}
.list-circled-white > li::before {
  content: counter(cnt);
  border: 1px solid #333;
  border-radius: 1em;
  color: #333;
  text-align: center;
  line-height: 1.3em;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
.text-bold {
  font-weight: bolder !important;
}
.text-normal {
  font-weight: normal !important;
}
.text-black {
  color: #333 !important;
}
.text-white {
  color: #fff !important;
}
.text-blue {
  color: #005ca9 !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-link {
  text-decoration: underline;
}
.release-note {
  font-size: 1.6rem;
  margin-top: 0.5em;
}
.mgn-5 {
  margin: 5px !important;
}
.mgn_top5 {
  margin-top: 5px !important;
}
.mgn_bottom5 {
  margin-bottom: 5px !important;
}
.mgn_left5 {
  margin-left: 5px !important;
}
.mgn_right5 {
  margin-right: 5px !important;
}
.mgn-10 {
  margin: 10px !important;
}
.mgn_top10 {
  margin-top: 10px !important;
}
.mgn_bottom10 {
  margin-bottom: 10px !important;
}
.mgn_left10 {
  margin-left: 10px !important;
}
.mgn_right10 {
  margin-right: 10px !important;
}
.mgn-15 {
  margin: 15px !important;
}
.mgn_top15 {
  margin-top: 15px !important;
}
.mgn_bottom15 {
  margin-bottom: 15px !important;
}
.mgn_left15 {
  margin-left: 15px !important;
}
.mgn_right15 {
  margin-right: 15px !important;
}
.mgn-20 {
  margin: 20px !important;
}
.mgn_top20 {
  margin-top: 20px !important;
}
.mgn_bottom20 {
  margin-bottom: 20px !important;
}
.mgn_left20 {
  margin-left: 20px !important;
}
.mgn_right20 {
  margin-right: 20px !important;
}
.mgn-25 {
  margin: 25px !important;
}
.mgn_top25 {
  margin-top: 25px !important;
}
.mgn_bottom25 {
  margin-bottom: 25px !important;
}
.mgn_left25 {
  margin-left: 25px !important;
}
.mgn_right25 {
  margin-right: 25px !important;
}
.mgn-30 {
  margin: 30px !important;
}
.mgn_top30 {
  margin-top: 30px !important;
}
.mgn_bottom30 {
  margin-bottom: 30px !important;
}
.mgn_left30 {
  margin-left: 30px !important;
}
.mgn_right30 {
  margin-right: 30px !important;
}
.mgn-35 {
  margin: 35px !important;
}
.mgn_top35 {
  margin-top: 35px !important;
}
.mgn_bottom35 {
  margin-bottom: 35px !important;
}
.mgn_left35 {
  margin-left: 35px !important;
}
.mgn_right35 {
  margin-right: 35px !important;
}
.mgn-40 {
  margin: 40px !important;
}
.mgn_top40 {
  margin-top: 40px !important;
}
.mgn_bottom40 {
  margin-bottom: 40px !important;
}
.mgn_left40 {
  margin-left: 40px !important;
}
.mgn_right40 {
  margin-right: 40px !important;
}
.mgn-45 {
  margin: 45px !important;
}
.mgn_top45 {
  margin-top: 45px !important;
}
.mgn_bottom45 {
  margin-bottom: 45px !important;
}
.mgn_left45 {
  margin-left: 45px !important;
}
.mgn_right45 {
  margin-right: 45px !important;
}
.mgn-50 {
  margin: 50px !important;
}
.mgn_top50 {
  margin-top: 50px !important;
}
.mgn_bottom50 {
  margin-bottom: 50px !important;
}
.mgn_left50 {
  margin-left: 50px !important;
}
.mgn_right50 {
  margin-right: 50px !important;
}
.mgn-55 {
  margin: 55px !important;
}
.mgn_top55 {
  margin-top: 55px !important;
}
.mgn_bottom55 {
  margin-bottom: 55px !important;
}
.mgn_left55 {
  margin-left: 55px !important;
}
.mgn_right55 {
  margin-right: 55px !important;
}
.mgn-60 {
  margin: 60px !important;
}
.mgn_top60 {
  margin-top: 60px !important;
}
.mgn_bottom60 {
  margin-bottom: 60px !important;
}
.mgn_left60 {
  margin-left: 60px !important;
}
.mgn_right60 {
  margin-right: 60px !important;
}
.mgn-65 {
  margin: 65px !important;
}
.mgn_top65 {
  margin-top: 65px !important;
}
.mgn_bottom65 {
  margin-bottom: 65px !important;
}
.mgn_left65 {
  margin-left: 65px !important;
}
.mgn_right65 {
  margin-right: 65px !important;
}
.mgn-70 {
  margin: 70px !important;
}
.mgn_top70 {
  margin-top: 70px !important;
}
.mgn_bottom70 {
  margin-bottom: 70px !important;
}
.mgn_left70 {
  margin-left: 70px !important;
}
.mgn_right70 {
  margin-right: 70px !important;
}
.mgn-75 {
  margin: 75px !important;
}
.mgn_top75 {
  margin-top: 75px !important;
}
.mgn_bottom75 {
  margin-bottom: 75px !important;
}
.mgn_left75 {
  margin-left: 75px !important;
}
.mgn_right75 {
  margin-right: 75px !important;
}
.mgn-80 {
  margin: 80px !important;
}
.mgn_top80 {
  margin-top: 80px !important;
}
.mgn_bottom80 {
  margin-bottom: 80px !important;
}
.mgn_left80 {
  margin-left: 80px !important;
}
.mgn_right80 {
  margin-right: 80px !important;
}
.mgn-85 {
  margin: 85px !important;
}
.mgn_top85 {
  margin-top: 85px !important;
}
.mgn_bottom85 {
  margin-bottom: 85px !important;
}
.mgn_left85 {
  margin-left: 85px !important;
}
.mgn_right85 {
  margin-right: 85px !important;
}
.mgn-90 {
  margin: 90px !important;
}
.mgn_top90 {
  margin-top: 90px !important;
}
.mgn_bottom90 {
  margin-bottom: 90px !important;
}
.mgn_left90 {
  margin-left: 90px !important;
}
.mgn_right90 {
  margin-right: 90px !important;
}
.mgn-95 {
  margin: 95px !important;
}
.mgn_top95 {
  margin-top: 95px !important;
}
.mgn_bottom95 {
  margin-bottom: 95px !important;
}
.mgn_left95 {
  margin-left: 95px !important;
}
.mgn_right95 {
  margin-right: 95px !important;
}
.mgn-100 {
  margin: 100px !important;
}
.mgn_top100 {
  margin-top: 100px !important;
}
.mgn_bottom100 {
  margin-bottom: 100px !important;
}
.mgn_left100 {
  margin-left: 100px !important;
}
.mgn_right100 {
  margin-right: 100px !important;
}
.pdn-5 {
  padding: 5px !important;
}
.pdn_top5 {
  padding-top: 5px !important;
}
.pdn_bottom5 {
  padding-bottom: 5px !important;
}
.pdn_left5 {
  padding-left: 5px !important;
}
.pdn_right5 {
  padding-right: 5px !important;
}
.pdn-10 {
  padding: 10px !important;
}
.pdn_top10 {
  padding-top: 10px !important;
}
.pdn_bottom10 {
  padding-bottom: 10px !important;
}
.pdn_left10 {
  padding-left: 10px !important;
}
.pdn_right10 {
  padding-right: 10px !important;
}
.pdn-15 {
  padding: 15px !important;
}
.pdn_top15 {
  padding-top: 15px !important;
}
.pdn_bottom15 {
  padding-bottom: 15px !important;
}
.pdn_left15 {
  padding-left: 15px !important;
}
.pdn_right15 {
  padding-right: 15px !important;
}
.pdn-20 {
  padding: 20px !important;
}
.pdn_top20 {
  padding-top: 20px !important;
}
.pdn_bottom20 {
  padding-bottom: 20px !important;
}
.pdn_left20 {
  padding-left: 20px !important;
}
.pdn_right20 {
  padding-right: 20px !important;
}
.pdn-25 {
  padding: 25px !important;
}
.pdn_top25 {
  padding-top: 25px !important;
}
.pdn_bottom25 {
  padding-bottom: 25px !important;
}
.pdn_left25 {
  padding-left: 25px !important;
}
.pdn_right25 {
  padding-right: 25px !important;
}
.pdn-30 {
  padding: 30px !important;
}
.pdn_top30 {
  padding-top: 30px !important;
}
.pdn_bottom30 {
  padding-bottom: 30px !important;
}
.pdn_left30 {
  padding-left: 30px !important;
}
.pdn_right30 {
  padding-right: 30px !important;
}
.pdn-35 {
  padding: 35px !important;
}
.pdn_top35 {
  padding-top: 35px !important;
}
.pdn_bottom35 {
  padding-bottom: 35px !important;
}
.pdn_left35 {
  padding-left: 35px !important;
}
.pdn_right35 {
  padding-right: 35px !important;
}
.pdn-40 {
  padding: 40px !important;
}
.pdn_top40 {
  padding-top: 40px !important;
}
.pdn_bottom40 {
  padding-bottom: 40px !important;
}
.pdn_left40 {
  padding-left: 40px !important;
}
.pdn_right40 {
  padding-right: 40px !important;
}
.pdn-45 {
  padding: 45px !important;
}
.pdn_top45 {
  padding-top: 45px !important;
}
.pdn_bottom45 {
  padding-bottom: 45px !important;
}
.pdn_left45 {
  padding-left: 45px !important;
}
.pdn_right45 {
  padding-right: 45px !important;
}
.pdn-50 {
  padding: 50px !important;
}
.pdn_top50 {
  padding-top: 50px !important;
}
.pdn_bottom50 {
  padding-bottom: 50px !important;
}
.pdn_left50 {
  padding-left: 50px !important;
}
.pdn_right50 {
  padding-right: 50px !important;
}
.pdn-55 {
  padding: 55px !important;
}
.pdn_top55 {
  padding-top: 55px !important;
}
.pdn_bottom55 {
  padding-bottom: 55px !important;
}
.pdn_left55 {
  padding-left: 55px !important;
}
.pdn_right55 {
  padding-right: 55px !important;
}
.pdn-60 {
  padding: 60px !important;
}
.pdn_top60 {
  padding-top: 60px !important;
}
.pdn_bottom60 {
  padding-bottom: 60px !important;
}
.pdn_left60 {
  padding-left: 60px !important;
}
.pdn_right60 {
  padding-right: 60px !important;
}
.pdn-65 {
  padding: 65px !important;
}
.pdn_top65 {
  padding-top: 65px !important;
}
.pdn_bottom65 {
  padding-bottom: 65px !important;
}
.pdn_left65 {
  padding-left: 65px !important;
}
.pdn_right65 {
  padding-right: 65px !important;
}
.pdn-70 {
  padding: 70px !important;
}
.pdn_top70 {
  padding-top: 70px !important;
}
.pdn_bottom70 {
  padding-bottom: 70px !important;
}
.pdn_left70 {
  padding-left: 70px !important;
}
.pdn_right70 {
  padding-right: 70px !important;
}
.pdn-75 {
  padding: 75px !important;
}
.pdn_top75 {
  padding-top: 75px !important;
}
.pdn_bottom75 {
  padding-bottom: 75px !important;
}
.pdn_left75 {
  padding-left: 75px !important;
}
.pdn_right75 {
  padding-right: 75px !important;
}
.pdn-80 {
  padding: 80px !important;
}
.pdn_top80 {
  padding-top: 80px !important;
}
.pdn_bottom80 {
  padding-bottom: 80px !important;
}
.pdn_left80 {
  padding-left: 80px !important;
}
.pdn_right80 {
  padding-right: 80px !important;
}
.pdn-85 {
  padding: 85px !important;
}
.pdn_top85 {
  padding-top: 85px !important;
}
.pdn_bottom85 {
  padding-bottom: 85px !important;
}
.pdn_left85 {
  padding-left: 85px !important;
}
.pdn_right85 {
  padding-right: 85px !important;
}
.pdn-90 {
  padding: 90px !important;
}
.pdn_top90 {
  padding-top: 90px !important;
}
.pdn_bottom90 {
  padding-bottom: 90px !important;
}
.pdn_left90 {
  padding-left: 90px !important;
}
.pdn_right90 {
  padding-right: 90px !important;
}
.pdn-95 {
  padding: 95px !important;
}
.pdn_top95 {
  padding-top: 95px !important;
}
.pdn_bottom95 {
  padding-bottom: 95px !important;
}
.pdn_left95 {
  padding-left: 95px !important;
}
.pdn_right95 {
  padding-right: 95px !important;
}
.pdn-100 {
  padding: 100px !important;
}
.pdn_top100 {
  padding-top: 100px !important;
}
.pdn_bottom100 {
  padding-bottom: 100px !important;
}
.pdn_left100 {
  padding-left: 100px !important;
}
.pdn_right100 {
  padding-right: 100px !important;
}
.clearfix::before {
  content: "";
  display: table-cell;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.show-pc {
  display: inherit !important;
}
@media screen and (max-width: 768px) {
  .show-pc {
    display: none !important;
  }
}
.show-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .show-sp {
    display: inherit !important;
  }
}
.ua-pc,
.ua-tab,
.ua-sp {
  display: none;
}
.IS_PC .ua-pc,
.IS_TABLET .ua-tab,
.IS_SP .ua-sp {
  display: inherit;
}
.footer {
  position: relative;
  background: #000;
}
.footer > * {
  color: #fff;
}
.footer > * a {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .footer-inner {
    padding: 40px;
    min-width: 845px;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 50px 15px 0;
  }
}
.footer-head {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-head {
    align-items: baseline;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin-left: 5px;
  }
  .footer-logo a {
    display: block;
  }
  .footer-logo img {
    width: 81px;
    height: 28px;
  }
}
.footer-sns {
  line-height: 0;
}
.footer-sns a {
  display: flex;
  color: #fff;
  align-items: center;
  font-size: 1.5rem;
}
.footer-sns a img {
  width: 40px;
  margin: 0 10px 0 0;
}
.footer-category {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .footer-category {
    display: none;
  }
}
.footer-category-title {
  text-align: right;
  font-size: 12px;
  color: #fff;
  margin-bottom: 5px;
}
.footer-category-lists {
  display: flex;
  justify-content: flex-end;
}
.footer-category-link {
  margin-left: 30px;
}
.footer-category-link a {
  color: #ccc;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .footer-contents {
    display: flex;
  }
}
@media screen and (min-width: 769px) {
  .footer-nav {
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav {
    margin-top: 25px;
  }
}
@media screen and (min-width: 769px) {
  .footer-nav-list {
    font-size: 12px;
  }
  .footer-nav-list a {
    display: block;
    margin-bottom: 10px;
  }
  .footer-nav-list.nav-1,
  .footer-nav-list.nav-2,
  .footer-nav-list.nav-4 {
    margin-bottom: 45px;
  }
  .footer-nav-list.nav-group {
    margin-top: 45px;
    padding-top: 45px;
    padding-right: 10px;
    border-top: 1px solid #707070;
  }
  .footer-nav-list.nav-group .footer-nav-inner-link {
    margin-left: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-list a {
    color: #ccc;
    font-size: 12px;
  }
  .footer-nav-list >a,
  .footer-nav-list >span {
    display: block;
    color: #ccc;
  }
  .footer-nav-list-header {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 12px;
    position: relative;
  }
  .footer-nav-list-header.js-footer-toggle::before,
  .footer-nav-list-header.js-footer-toggle::after {
    display: block;
    content: "";
    width: 8px;
    height: 1px;
    background: #4b617f;
    position: absolute;
    top: 25px;
    right: 20px;
  }
  .footer-nav-list-header.js-footer-toggle::before {
    transform: rotate(90deg);
    transition: transform 300ms;
  }
}
.footer-nav-list.is_open .footer-nav-list-header::before {
  transform: rotate(0deg);
}
.footer-nav-list:nth-child(1).is_open .footer-nav-inner {
  max-height: 300px;
}
.footer-nav-list:nth-child(2).is_open .footer-nav-inner {
  max-height: 3000px;
}
.footer-nav-list:nth-child(7).is_open .footer-nav-inner {
  max-height: 300px;
}
@media screen and (max-width: 768px) {
  .footer-nav-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 500ms;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-list {
    margin-bottom: 10px;
  }
}
.footer-nav-inner-title {
  color: #fff;
}
@media screen and (min-width: 769px) {
  .footer-nav-inner-title {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-title {
    line-height: 1em;
    font-size: 12px;
    padding: 0 20px;
  }
}
.footer-nav-inner-link a {
  display: block;
}
@media screen and (min-width: 769px) {
  .footer-nav-inner-link a {
    font-size: 12px;
    white-space: nowrap;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-link a {
    padding: 7px 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-box:last-child {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-group.is_open .footer-nav-inner-body {
    max-height: 500px;
  }
  .footer-nav-inner-group.is_open .icon-toggle::before {
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 769px) {
  .footer-nav-inner-head {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-head {
    padding: 10px 20px 0;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  .footer-nav-inner-head-text {
    display: block;
    padding: 5px 20px;
    font-size: 12px;
    color: #ccc;
  }
  .footer-nav-inner-head:last-child {
    padding-bottom: 10px;
  }
  .footer-nav-inner-head .icon-toggle {
    position: relative;
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-top: 5px;
    margin-left: 10px;
  }
  .footer-nav-inner-head .icon-toggle::before,
  .footer-nav-inner-head .icon-toggle::after {
    display: inline-block;
    content: "";
    width: 8px;
    height: 1px;
    background: #4b617f;
    position: absolute;
    top: 3px;
    right: 0;
  }
  .footer-nav-inner-head .icon-toggle::before {
    transform: rotate(90deg);
    transition: transform 300ms;
  }
}
@media screen and (min-width: 769px) {
  .footer-nav-inner-body {
    margin-left: 1em;
  }
  .footer-nav-inner-body p {
    margin-bottom: 3px;
  }
  .footer-nav-inner-body >* {
    font-size: 12px;
    font-weight: normal;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-inner-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 500ms;
  }
  .footer-nav-inner-body a,
  .footer-nav-inner-body span {
    display: block;
    padding: 5px 20px 5px 50px;
    font-size: 12px;
  }
}
.footer-service {
  transform: translateY(-2.2rem);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-service {
    display: none;
  }
}
.footer-service-title {
  font-size: 12px;
  color: #ccc;
  font-weight: bold;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
}
.footer-service-table {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.footer-service-table .footer-nav-inner-group {
  margin-bottom: 30px;
}
.footer-service-table .footer-nav-inner-head a {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .footer-utility {
    padding: 20px 0 0;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer-utility {
    padding: 15px 0;
    margin: 0 15px;
    font-size: 1rem;
    border-top: 1px solid rgba(248,248,248,0.3);
  }
  .footer-utility a {
    color: rgba(204,204,204,0.7);
  }
}
.footer-utility-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .footer-utility-list {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 769px) {
  .footer-utility-link {
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
    line-height: 1em;
  }
  .footer-utility-link:last-child {
    margin: 0;
    padding: 0;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-utility-link {
    margin-right: 10px;
    margin-bottom: 5px;
  }
}
.footer-copy {
  color: #fff;
  font-size: 11px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer-copy {
    padding: 15px 0;
    font-size: 1rem;
  }
}
.footer-copy-text {
  text-align: center;
  color: #606060;
}
/* ========================================================================
   Component: header
========================================================================== */
.header-corp {
  z-index: 4;
}
.header {
  height: 60px;
  z-index: 3;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .header:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: 15px;
  line-height: 1.2;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .header-text {
    margin-left: 10px;
    font-size: 1.4rem;
    text-align: left;
  }
}
.header-text span {
  display: block;
  font-size: 1.4rem;
}
.header-button {
  display: block;
  padding: 0 20px;
  line-height: 50px;
  background: transparent linear-gradient(115deg, #d0010d 0%, #ed545d 100%);
  color: #fff;
  outline: 2px solid #fff;
  outline-offset: -6px;
  z-index: 1;
  transition: opacity, 400ms;
}
@media screen and (min-width: 1025px) {
  .header-button {
    padding: 0 40px;
    height: 60px;
    line-height: 60px;
  }
}
.header-button span {
  padding-right: 1em;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .header-button span {
    font-size: 1.2rem;
  }
}
.header-button span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-button:hover {
  outline: 2px solid transparent;
  opacity: 0.7;
}
.header-navi {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header-nav {
    margin: 0;
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    transform: translateY(-100%);
    transition: transform, 400ms;
    z-index: 0;
  }
}
.header-nav-button {
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .header-nav-button {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list {
    width: 100%;
    padding: 40px 20px;
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li {
    margin-bottom: 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li button,
  .header-nav-list > li a {
    display: inline-block;
    padding: 0 25px;
  }
}
.header-nav-list > li:first-child button {
  color: #3f84a7;
  padding: 0 25px 0 50px;
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li:last-child {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child {
    margin-top: 30px;
    text-align: center;
    border-bottom: none;
    text-align: center;
  }
}
.header-nav-list > li:last-child button {
  position: relative;
  padding-left: 1.8em;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child button {
    text-align: center;
    color: color-marine;
  }
}
.header-nav-list > li:last-child button span {
  position: relative;
  padding: 0 1.5em;
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li:last-child button span:before {
    content: "✖";
    font-size: 2rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li.only-sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li a,
  .header-nav-list > li button {
    width: 100%;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li > a {
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li > a:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid color-marine;
    border-right: 2px solid color-marine;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list > li.is-active .header-nav-list-pulldown {
    visibility: visible;
    opacity: 1;
    transition-duration: 500ms;
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list > li.is-active .header-nav-list-pulldown {
    max-height: 500px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-menu.is_current a {
    color: color-marine;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-menu button {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-pulldown {
    width: 100%;
    position: absolute;
    top: 110px;
    left: 0;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity, 200ms;
    z-index: 2;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-pulldown {
    overflow: hidden;
    max-height: 0;
    transition: max-height, 500ms;
  }
}
.header-nav-list-sub {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub {
    padding: 10px;
  }
}
.header-nav-list-sub li {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub li {
    padding: 20px 50px;
    border-right: 1px solid #dbdbdb;
  }
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub li {
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 1025px) {
  .header-nav-list-sub-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header-nav-list-sub-img {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub-img {
    display: none;
  }
}
.header-nav-list-sub-copy {
  font-size: 1.1rem;
  color: #777;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-sub-copy {
    display: none;
  }
}
.header-nav-list-sub-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5s;
}
.header-nav-list-sub-link:hover {
  opacity: 0.5;
  background: #fff;
}
.header-nav-list-service,
.header-nav-list-service-text {
  display: block;
}
.header-nav-list-service br,
.header-nav-list-service-text br {
  display: inherit;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-service br,
  .header-nav-list-service-text br {
    display: none;
  }
}
.header-nav-list-service {
  font-size: 2rem;
  font-weight: bold;
  color: color-marine;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .header-nav-list-service {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .header-nav-list-service {
    font-size: 1.6rem;
  }
}
.hamburger {
  position: relative;
  padding: 15px 18px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger-box {
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  top: 3px;
}
.hamburger-inner:before,
.hamburger-inner:after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger-inner:before {
  top: 8px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger-inner:after {
  top: 16px;
}
.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after {
  background-color: #41464c;
  height: 2px;
  width: 20px;
  background-color: color-marine;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg);
}
.is-active .hamburger-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}
.is-active .hamburger-inner:after {
  transform: translate3d(0, -16px, 0) rotate(-90deg);
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .header.is-fixed .header-nav-list-pulldown {
    top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .header.is-active .header-nav {
    transform: translateY(0vh);
  }
}
.js-pulldownmenu {
  cursor: pointer;
}
.js-pulldownmenu button {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:before,
  .js-pulldownmenu button:after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: color-marine;
    position: absolute;
    top: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:before {
    transform: rotate(90deg);
    transition: transform 0.3s;
    right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu button:after {
    transform: rotate(0deg);
    right: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .js-pulldownmenu.is-active button:before {
    transform: rotate(180deg);
  }
}
