/* responsive setting */
/* color setting */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
div,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
figure,
form,
fieldset,
input,
textarea,
p,
blockquote,
tbody,
th,
tr,
td,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 200;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: justify;
  letter-spacing: 0;
}
@media (max-width: 979px) {
  body {
    font-size: 1.6rem;
  }
}

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

em,
i {
  font-size: 100%;
  font-weight: 500;
  font-style: normal;
}

ul {
  list-style: none;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}

li {
  list-style: none;
}

table,
tbody,
tr,
th,
td {
  border-collapse: collapse;
}

mark {
  background: none;
}

fieldset,
img {
  border: 0 none;
  max-width: 100%;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

img[src$=".svg"] {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

main,
article,
aside,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

caption,
th {
  text-align: left;
}

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

abbr,
acronym,
tbody,
tr {
  border: 0 none;
}

select option {
  padding: 0 0.5em;
  color: #333;
}

form label {
  cursor: pointer;
}

hr {
  clear: both;
  margin: 0;
  padding: 0;
  visibility: hidden;
}

a {
  color: #000;
  border: 0 none;
  outline: medium none;
  text-decoration: none;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
}

a:focus,
a:hover,
button:focus,
button:hover {
  outline: medium none;
  text-decoration: none;
}

input,
select,
button {
  background: transparent;
  border: 0;
  vertical-align: middle;
  border-radius: 0;
}

button {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

select {
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

button {
  cursor: pointer;
  display: block;
  letter-spacing: inherit;
  padding: 0;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
}

textarea {
  font-size: 1.6rem;
  border-radius: 0;
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}

*:focus {
  outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

iframe {
  border: none;
  display: block;
}

/*------------------------------------------------

		md_select_wrap

------------------------------------------------*/
.md_select_wrap {
  position: relative;
}

.md_select_wrap::after {
  /*  background: url(../img/icn_select_arrow.svg) center center/19px 17px no-repeat; */
  content: "";
  display: block;
  width: 19px;
  height: 17px;
  position: absolute;
  top: 16px;
  right: 20px;
}

@media (max-width: 750px) {
  .md_select_wrap::after {
    top: 8px;
    /*    background: url(../img/icn_select_arrow.svg) center center/9.5px 8.5px no-repeat; */
    width: 9.5px;
    height: 8.5px;
    right: 10px;
  }
}
.md_select_wrap select {
  padding-right: 40px;
}

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

/*------------------------------------------------

		modal fade

------------------------------------------------*/
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap.mfp-content {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: all 0.2s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.mfp-fade.mfp-wrap.mfp-ready.mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing.mfp-content {
  opacity: 0;
}

.u-container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1280px;
}
@media (max-width: 850px) {
  .u-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.u-inner {
  max-width: 1140px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media (max-width: 850px) {
  .u-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.w1200 {
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 750px) {
  .w1200 {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.w800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

._pc_tabNon {
  display: block !important;
}
@media (max-width: 979px) {
  ._pc_tabNon {
    display: none !important;
  }
}

._pc_spNon {
  display: block !important;
}
@media (max-width: 850px) {
  ._pc_spNon {
    display: none !important;
  }
}

._sp_pcNon {
  display: none !important;
}
@media (max-width: 850px) {
  ._sp_pcNon {
    display: block !important;
  }
}

._sp_tabNon {
  display: none !important;
}
@media (max-width: 979px) {
  ._sp_tabNon {
    display: block !important;
  }
}

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

._sp__inline-block {
  display: none !important;
}

._tab {
  display: none !important;
}
@media (max-width: 979px) {
  ._tab {
    display: block !important;
  }
}

br._pc {
  display: block !important;
}
@media (max-width: 850px) {
  br._pc {
    display: none !important;
  }
}

br._sp {
  display: none !important;
}
@media (max-width: 850px) {
  br._sp {
    display: block !important;
  }
}

/*form*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 400;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=radio],
input[type=checkbox] {
  margin: 0 20px 0 0;
  margin-top: -3px;
  line-height: normal;
  transform: scale(1.8);
}
@media (max-width: 850px) {
  input[type=radio],
input[type=checkbox] {
    transform: scale(1.5);
    margin: -5px 10px 0 0;
  }
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}

select.form-control {
  display: inline-block;
  width: inherit !important;
  padding: 10px 30px 10px 30px;
  color: #333 !important;
}

@media (max-width: 750px) {
  select.form-control {
    font-size: 12px;
    padding: 0 15px 0 15px;
  }
}
.select-pref select {
  background-size: 16px;
}

input::-moz-placeholder {
  color: #EAEAEA;
}

input::-webkit-input-placeholder {
  color: #EAEAEA;
}

input:-ms-input-placeholder {
  color: #EAEAEA;
}

input::-ms-input-placeholder {
  color: #EAEAEA;
}

input::placeholder {
  color: #EAEAEA;
}

/* IE */
input:-ms-input-placeholder {
  color: #EAEAEA;
}

/* Edge */
textarea::-moz-placeholder {
  color: #EAEAEA;
}

textarea::-webkit-input-placeholder {
  color: #EAEAEA;
}

textarea:-ms-input-placeholder {
  color: #EAEAEA;
}

textarea::-ms-input-placeholder {
  color: #EAEAEA;
}

textarea::placeholder {
  color: #EAEAEA;
}

/* IE */
textarea:-ms-input-placeholder {
  color: #EAEAEA;
}

/* Edge */
textarea::-ms-input-placeholder {
  color: #EAEAEA;
}

/*
input[type=text],input[type=tel],input[type=email],textarea{
  background: #F8F8F8;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 400;
  width: 100%;
  border: 1px solid #F8F8F8;
  padding: 15px 15px;
}
  */
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  outline: 0;
}

input[type=text]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #EAEAEA;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input[type=text]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #EAEAEA;
}

input[type=text]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #EAEAEA;
}

.form-control::-ms-expand {
  border: 0;
  background-color: transparent;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
    line-height: 34px;
  }

  input[type=date].input-sm,
input[type=time].input-sm,
input[type=datetime-local].input-sm,
input[type=month].input-sm,
.input-group-sm input[type=date],
.input-group-sm input[type=time],
.input-group-sm input[type=datetime-local],
.input-group-sm input[type=month] {
    line-height: 30px;
  }

  input[type=date].input-lg,
input[type=time].input-lg,
input[type=datetime-local].input-lg,
input[type=month].input-lg,
.input-group-lg input[type=date],
.input-group-lg input[type=time],
.input-group-lg input[type=datetime-local],
.input-group-lg input[type=month] {
    line-height: 46px;
  }
}
.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox, .aform-checkbox-ul {
  position: relative;
  display: block;
  padding-left: 6px;
}
@media (max-width: 850px) {
  .radio,
.checkbox, .aform-checkbox-ul {
    padding-left: 6px;
  }
}

.radio label,
.checkbox label {
  min-height: 18px;
  margin-right: 18px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.form-control {
  border-radius: 0;
  background: #fff !important;
  border: 1px solid #97979B;
  font-weight: 500;
  padding: 13px 24px !important;
  height: inherit !important;
  width: 100% !important;
  font-size: 2rem;
}
@media (max-width: 850px) {
  .form-control {
    border-radius: 4px;
    font-size: 1.6rem;
    padding: 13px 10px !important;
    border: 1px solid #BCBCC1;
  }
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.aform-checkbox-ul input[type=checkbox] {
  position: relative;
  margin-top: -4px;
  height: 18px;
  width: 18px;
  margin-right: 5px;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 30px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 768px) {
  .btn {
    padding: 15px;
    font-size: 1.4rem;
  }
}
.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.input-group-btn > .btn {
  position: relative;
}

.input-group-btn > .btn + .btn {
  margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/*column*/
.c-flex-justify {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-flex-justify.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.mt-0 {
  margin-top: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mr-85 {
  margin-right: 85px !important;
}

.ml-85 {
  margin-left: 85px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mr-90 {
  margin-right: 90px !important;
}

.ml-90 {
  margin-left: 90px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.mr-95 {
  margin-right: 95px !important;
}

.ml-95 {
  margin-left: 95px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mr-100 {
  margin-right: 100px !important;
}

.ml-100 {
  margin-left: 100px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

.c-center {
  text-align: center;
}

.c-right {
  text-align: right;
}

.text-blue {
  color: #3faade;
}

@media only screen and (max-width: 979px) {
  .c-left-sp {
    text-align: left !important;
  }

  .sp-mt-0 {
    margin-top: 0px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .sp-mt-80 {
    margin-top: 80px !important;
  }

  .sp-mb-80 {
    margin-bottom: 80px !important;
  }

  .sp-mr-80 {
    margin-right: 80px !important;
  }

  .sp-ml-80 {
    margin-left: 80px !important;
  }

  .sp-pt-80 {
    padding-top: 80px !important;
  }

  .sp-pb-80 {
    padding-bottom: 80px !important;
  }

  .sp-pl-80 {
    padding-left: 80px !important;
  }

  .sp-pr-80 {
    padding-right: 80px !important;
  }

  .sp-mt-85 {
    margin-top: 85px !important;
  }

  .sp-mb-85 {
    margin-bottom: 85px !important;
  }

  .sp-mr-85 {
    margin-right: 85px !important;
  }

  .sp-ml-85 {
    margin-left: 85px !important;
  }

  .sp-pt-85 {
    padding-top: 85px !important;
  }

  .sp-pb-85 {
    padding-bottom: 85px !important;
  }

  .sp-pl-85 {
    padding-left: 85px !important;
  }

  .sp-pr-85 {
    padding-right: 85px !important;
  }

  .sp-mt-90 {
    margin-top: 90px !important;
  }

  .sp-mb-90 {
    margin-bottom: 90px !important;
  }

  .sp-mr-90 {
    margin-right: 90px !important;
  }

  .sp-ml-90 {
    margin-left: 90px !important;
  }

  .sp-pt-90 {
    padding-top: 90px !important;
  }

  .sp-pb-90 {
    padding-bottom: 90px !important;
  }

  .sp-pl-90 {
    padding-left: 90px !important;
  }

  .sp-pr-90 {
    padding-right: 90px !important;
  }

  .sp-mt-95 {
    margin-top: 95px !important;
  }

  .sp-mb-95 {
    margin-bottom: 95px !important;
  }

  .sp-mr-95 {
    margin-right: 95px !important;
  }

  .sp-ml-95 {
    margin-left: 95px !important;
  }

  .sp-pt-95 {
    padding-top: 95px !important;
  }

  .sp-pb-95 {
    padding-bottom: 95px !important;
  }

  .sp-pl-95 {
    padding-left: 95px !important;
  }

  .sp-pr-95 {
    padding-right: 95px !important;
  }

  .sp-mt-100 {
    margin-top: 100px !important;
  }

  .sp-mb-100 {
    margin-bottom: 100px !important;
  }

  .sp-mr-100 {
    margin-right: 100px !important;
  }

  .sp-ml-100 {
    margin-left: 100px !important;
  }

  .sp-pt-100 {
    padding-top: 100px !important;
  }

  .sp-pb-100 {
    padding-bottom: 100px !important;
  }

  .sp-pl-100 {
    padding-left: 100px !important;
  }

  .sp-pr-100 {
    padding-right: 100px !important;
  }
}
.mt-1em {
  margin-top: 1em;
}

.mb-1em {
  margin-bottom: 1em;
}

/*column-set*/
.col.col-2 > * {
  width: 50%;
  padding: 10px;
}

.col.col-3 > * {
  width: 33.333%;
  padding: 10px;
}

.col.col-4 > * {
  width: 25%;
  padding: 10px;
}

.col.col-5 > * {
  width: 20%;
  padding: 10px;
}

.col.col-6 > * {
  width: 16.6666%;
  padding: 10px;
}

.col.col-7 > * {
  width: 14.285714%;
  padding: 10px;
}

.col {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
  margin-bottom: 0px;
}

.col.dis20 {
  margin: 0 -10px;
}

.col.dis20 > * {
  padding-left: 10px;
  padding-right: 10px;
}

.col.dis25 {
  margin: 0 -12.5px;
}

.col.dis25 > * {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.col.dis35 > * {
  padding-left: 17.5px;
  padding-right: 17.5px;
}

.col.dis45 {
  margin: 0 -22.5px;
}

.col.dis45 > * {
  padding-left: 22.5px;
  padding-right: 22.5px;
}

.col.dis0 {
  margin: 0 0;
}

.col.dis0 > * {
  padding-left: 0;
  padding-right: 0;
}

.col.dis10 {
  margin: 0 -5px;
}

.col.dis10 > * {
  padding-left: 5px;
  padding-right: 5px;
}

.col.dis15 {
  margin: 0 -7.5px;
}

.col.dis15 > * {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.col.dis4 {
  margin: 0 -2px;
}

.col.dis4 > * {
  padding-left: 2px;
  padding-right: 2px;
}

.col.dis5 {
  margin: 0 -2.5px;
}

.col.dis5 > * {
  padding-left: 2.5px;
  padding-right: 2.5px;
}

.col.dis30 {
  margin: 0 -15px;
}

.col.dis30 > * {
  padding-left: 15px;
  padding-right: 15px;
}

.col.dis25 {
  margin: 0 -12.5px;
}

.col.dis25 > * {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.col.dis40 {
  margin: 0 -20px;
}

.col.dis40 > * {
  padding-left: 20px;
  padding-right: 20px;
}

.col.dis45 > * {
  padding-left: 22.5px;
  padding-right: 22.5px;
}

.col.dis45 {
  margin: 0 -22.5px;
}

.col.dis50 {
  margin: 0 -25px;
}

.col.dis50 > * {
  padding-left: 25px;
  padding-right: 25px;
}

.col.dis55 {
  margin: 0 -27.5px;
}

.col.dis50 > * {
  padding-left: 27.5px;
  padding-right: 27.5px;
}

.col.dis60 {
  margin: 0 -30px;
}

.col.dis60 > * {
  padding-left: 30px;
  padding-right: 30px;
}

.col.dis70 {
  margin: 0 -35px;
}

.col.dis70 > * {
  padding-left: 35px;
  padding-right: 35px;
}

.col.dis80 {
  margin: 0 -40px;
}

.col.dis80 > * {
  padding-left: 40px;
  padding-right: 40px;
}

.col.dis90 {
  margin: 0 -45px;
}

.col.dis90 > * {
  padding-left: 45px;
  padding-right: 45px;
}

.col.dis100 {
  margin: 0 -50px;
}

.col.dis100 > * {
  padding-left: 50px;
  padding-right: 50px;
}

.col.dis150 {
  margin: 0 -75px;
}

.col.dis150 > * {
  padding-left: 75px;
  padding-right: 75px;
}

.col.dis250 {
  margin: 0 -125px;
}

.col.dis250 > * {
  padding-left: 125px;
  padding-right: 125px;
}

@media only screen and (max-width: 750px) {
  .col.col-1-sp > * {
    width: 100% !important;
  }

  .col.col-2-sp > * {
    width: 50% !important;
    padding: 5px;
  }

  .col.col-3-sp > * {
    width: 33.33333% !important;
    padding: 5px;
  }

  .col.col-4-sp > * {
    width: 25% !important;
    padding: 5px;
  }

  .col.dis30-sp {
    margin: 0 -15px;
  }

  .col.dis30-sp > * {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col.dis8-sp {
    margin: 0 -4px;
  }

  .col.dis8-sp > * {
    padding-left: 4px;
    padding-right: 4px;
  }

  .col.dis15-sp {
    margin: 0 -7.5px;
  }

  .col.dis15-sp > * {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }

  .col.dis5-sp {
    margin: 0 -2.5px;
  }

  .col.dis5-sp > * {
    padding-left: 2.5px;
    padding-right: 2.5px;
    padding-bottom: 2.5px;
    padding-top: 2.5px;
  }

  .col.dis10-sp {
    margin: 0 -5px;
  }

  .col.dis10-sp > * {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
  }

  .col.dis20-sp {
    margin: 0 -10px;
  }

  .col.dis20-sp > * {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .col.dis25-sp {
    margin: 0 -12.5px;
  }

  .col.dis25-sp > * {
    padding-left: 12.5px;
    padding-right: 12.5px;
    padding-bottom: 12.5px;
    padding-top: 12.5px;
  }

  .col.dis5-sp {
    margin: 0 -2.5px;
  }

  .col.dis5-sp > * {
    padding-left: 2.5px;
    padding-right: 2.5px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .col.dis0-sp {
    margin: 0 0;
  }

  .col.dis0-sp > * {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}
._center {
  text-align: center !important;
}

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

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

@media only screen and (max-width: 750px) {
  ._center_sp {
    text-align: center !important;
  }

  ._left_sp {
    text-align: left !important;
  }
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*animation*/
.sa {
  opacity: 0;
}

.sa-firstview {
  opacity: 0;
  position: relative;
  animation: sa-firstview 0.8s ease forwards;
}

@keyframes sa-firstview {
  0% {
    opacity: 0;
    transform: translate(0, 100px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.sa.show {
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes slideIn {
  0% {
    transform: translateY(120px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.sa--lr {
  -webkit-transform: translate(-100px, 0);
  transform: translate(-100px, 0);
}

.sa--rl {
  -webkit-transform: translate(100px, 0);
  transform: translate(100px, 0);
}

.sa--up {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
}

.sa--down {
  -webkit-transform: translate(0, -100px);
  transform: translate(0, -100px);
}

.sa--scaleUp {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 1;
}

.sa--scaleDown {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.sa--rotateL {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sa--rotateR {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.nav-active #wrap {
  left: 0;
  overflow: auto !important;
}

.l_main {
  overflow: hidden;
}

.drawer-hamburger {
  height: 80px;
  width: 80px;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
  top: 20px;
  right: 40px !important;
}
@media (max-width: 657px) {
  .drawer-hamburger {
    display: block;
    right: 6px !important;
    top: 6px;
    height: 60px;
    width: 29px;
    box-sizing: border-box;
    padding: 0;
  }
}
.drawer-hamburger .drawer-hamburger-icon, .drawer-hamburger .drawer-hamburger-icon::before, .drawer-hamburger .drawer-hamburger-icon::after {
  background: #fff;
  height: 2px;
}
.drawer-hamburger .drawer-hamburger-img {
  background: url(../images/menu.png);
  background-size: 100%;
  width: 50px;
  height: 70px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 657px) {
  .drawer-hamburger .drawer-hamburger-img {
    width: 29px;
    height: 40px;
    font-size: 0;
  }
}
.drawer-hamburger .drawer-hamburger-text {
  margin: 0 0 5px;
  display: block;
  font-size: 0;
}
.drawer-hamburger .drawer-hamburger-icon {
  margin-top: 4px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent !important;
}

.drawer--right .drawer-nav {
  right: -1100px;
}

.drawer-open .drawer-hamburger .drawer-hamburger-img {
  background: url(../images/menu_active.png);
  background-size: 100%;
}

.drawer-nav {
  width: 928px;
}
@media (max-width: 979px) {
  .drawer-nav {
    width: 100%;
  }
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

body {
  overflow-x: hidden !important;
}

#wrap {
  background: #fff;
  overflow: hidden;
}

.drawer-overlay {
  background: #000;
}

#local-nav {
  margin-top: 0;
  background: url(../images/localnav_bg.png) left top no-repeat;
}
@media (max-width: 979px) {
  #local-nav {
    background-size: 200vw;
    background-position: left -85vw top 0;
  }
}
#local-nav > div {
  padding-top: 116px;
  padding-right: 112px;
}
@media (max-width: 657px) {
  #local-nav > div {
    padding-top: 66px;
    padding-right: 8.5px;
    padding-left: 8.5px;
  }
}
#local-nav li {
  width: 360px;
  margin-left: auto;
  margin-bottom: 15px;
}
@media (max-width: 657px) {
  #local-nav li {
    width: 100%;
    margin-bottom: 30px;
  }
}
#local-nav li a {
  font-size: 3rem;
  font-weight: 100;
  display: block;
  text-align: left;
  line-height: 1.5;
  color: #656565;
}
#local-nav li a i {
  width: 40px;
  height: 43px;
  background: url(../images/icon_light_gray.png) left top no-repeat;
  display: inline-block;
  margin-right: 15px;
}
#local-nav li a:hover i {
  background: url(../images/icon_light_gray_active.png) left top no-repeat;
}

/*------------------------------------------------

		header

------------------------------------------------*/
.header h1 {
  width: 220px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 1620px) {
  .header h1 {
    width: 100px;
  }
}
@media (max-width: 657px) {
  .header h1 {
    width: 40px;
  }
}

/*------------------------------------------------

		footer

------------------------------------------------*/
.footer {
  position: relative;
  background-color: #5E5858;
  padding: 50px 20px 86px;
  color: white;
  overflow: hidden;
}
@media (max-width: 657px) {
  .footer {
    padding: 100px 20px 30px;
  }
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #fff;
  transform: skewY(-25deg);
  transform-origin: top left;
}
@media (max-width: 657px) {
  .footer:before {
    height: 30vw;
    transform: skewY(-15deg);
  }
}
.footer:after {
  content: "";
  display: block;
  background: url(../images/top_bg_power04.png) left top no-repeat;
  width: 1416px;
  height: 333px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-left: 107px;
  margin-top: -290px;
  /*
  @include g.spMin{
    display: block;
    background: url(../images/top_bg_power04_sp.png) left top no-repeat;
    width: 376px;
    height: 600px;
    position: absolute;
    left: 50%;
    transform: translateX(0);
    z-index: 2;
    left: 6px;
    margin-top: 0;
    bottom: 10px;
    margin-left: 0;
    display: block;
  }
  */
}
@media (max-width: 1180px) {
  .footer:after {
    display: none;
  }
}
.footer .u-container {
  position: relative;
}
.footer #pagetop a {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  position: absolute;
  z-index: 3;
  top: 70px;
  right: -176px;
}
.footer .footer-logo {
  width: 162px;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 657px) {
  .footer .footer-logo {
    width: 100px;
    left: 10px;
  }
}
.footer .footer-corp-name {
  text-align: center;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 100;
  margin: 0 0 30px;
}
@media (max-width: 657px) {
  .footer .footer-corp-name {
    margin: 0 0 70px;
  }
}
.footer .footer-corp-name span {
  font-size: 1.2rem;
  font-weight: 200;
  display: block;
  margin-bottom: 10px;
}
.footer .footer-nav {
  position: relative;
  z-index: 3;
}
.footer .footer-nav ul {
  text-align: center;
}
.footer .footer-nav ul li {
  display: inline-block;
  margin: 0 20px;
}
@media (max-width: 657px) {
  .footer .footer-nav ul li {
    display: block;
    margin: 0 0 30px;
  }
}
.footer .footer-nav ul li a {
  font-size: 1.9rem;
  color: #fff;
  font-weight: 200;
}
@media (max-width: 657px) {
  .footer .footer-nav ul li a {
    font-size: 1.4rem;
  }
}
.footer #copyright {
  margin-top: 100px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 200;
}
@media (max-width: 850px) {
  .footer #copyright {
    margin-top: 50px;
    font-size: 1.2rem;
  }
}

/*------------------------------------------------

		parts

------------------------------------------------*/
@font-face {
  font-family: title;
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/title.woff2) format("woff2"), url(../fonts/title.woff) format("woff"), url(../fonts/title.otf) format("opentype");
  font-display: swap;
}
.u-grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.u-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.u-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.u-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 979px) {
  .u-grid--2--sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 979px) {
  .u-grid--1--sp {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

.u-border {
  background-image: linear-gradient(to right, #000 8px, transparent 6px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (max-width: 979px) {
  .u-border {
    padding-bottom: 9px;
    background-image: linear-gradient(to right, #000 4px, transparent 3px);
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 5px 1px;
  }
}

.u_ttl-box-lv02 {
  margin: 0 0 70px;
  background: url(../images/ttl_bg.png) center top no-repeat;
  background-size: 154px 154px;
  padding: 44px 0 50px;
}
@media (max-width: 850px) {
  .u_ttl-box-lv02 {
    background-size: 101px 101px;
    padding: 18px 0 42px;
    margin: 0 0 30px;
  }
}
.u_ttl-box-lv02__ttl {
  font-size: 2.8rem;
  font-weight: 100;
  color: #000;
  text-align: center;
  letter-spacing: 5%;
}
@media (max-width: 657px) {
  .u_ttl-box-lv02__ttl {
    font-size: 1.8rem;
  }
}
.u_ttl-box-lv02__ttl__en {
  font-size: 1.4rem;
  display: block;
  text-align: center;
  font-weight: 100;
  margin-top: 10px;
}
@media (max-width: 657px) {
  .u_ttl-box-lv02__ttl__en {
    font-size: 0.9rem;
    margin-top: 5px;
  }
}

.u_ttl-box-lv03 {
  margin: 0 0 50px;
}
@media (max-width: 850px) {
  .u_ttl-box-lv03 {
    margin: 0 0 18px;
  }
}
.u_ttl-box-lv03__ttl {
  margin: 0 0 12px;
  font-family: "marvin", sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 979px) {
  .u_ttl-box-lv03__ttl {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .u_ttl-box-lv03__ttl {
    font-size: 3rem;
    margin: 0 0 6px;
    text-align: center;
  }
}
.u_ttl-box-lv03__ttl--right {
  text-align: right;
}
@media (max-width: 979px) {
  .u_ttl-box-lv03__ttl--right {
    text-align: center;
  }
}
.u_ttl-box-lv03__ttl--center {
  text-align: center;
}
.u_ttl-box-lv03__text {
  font-size: 2rem;
}
@media (max-width: 979px) {
  .u_ttl-box-lv03__text {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .u_ttl-box-lv03__text {
    font-size: 1.6rem;
  }
}
.u_ttl-box-lv03__text i {
  margin-right: 9px;
}
@media (max-width: 850px) {
  .u_ttl-box-lv03__text i {
    margin-right: 5px;
  }
}
.u_ttl-box-lv03__text i img {
  width: 35px;
  top: -2px;
}
@media (max-width: 850px) {
  .u_ttl-box-lv03__text i img {
    width: 27px;
  }
}
.u_ttl-box-lv03__text--right {
  text-align: right;
}
@media (max-width: 979px) {
  .u_ttl-box-lv03__text--right {
    text-align: center;
  }
}
.u_ttl-box-lv03__text--center {
  text-align: center;
}
.u_ttl-box-lv03__sub-text {
  text-align: left;
  font-size: 1.8rem;
}
@media (max-width: 850px) {
  .u_ttl-box-lv03__sub-text {
    font-size: 1.2rem;
  }
}

.u-button {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.u-button a, .u-button button, .u-button input[type=submit] {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #AB0600;
  font-size: 3.2rem;
  font-weight: 700;
  border-radius: 100px;
  width: 480px;
  height: 100px;
  color: #fff;
  position: relative;
  z-index: 3;
}
@media (max-width: 850px) {
  .u-button a, .u-button button, .u-button input[type=submit] {
    height: 80px;
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
    font-size: 1.8rem;
  }
}

.wp-pagination {
  text-align: center;
  margin: 130px 0 0;
}
@media (max-width: 850px) {
  .wp-pagination {
    margin: 10.93vw 0 0;
  }
}

.wp-pagination ul {
  text-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0;
  margin: 0 0 0;
}
@media (max-width: 850px) {
  .wp-pagination ul {
    margin: 0 0 0;
  }
}

.wp-pagination ul li {
  display: inline-block;
  margin: 0 10px;
}
@media (max-width: 850px) {
  .wp-pagination ul li {
    margin: 0 5px;
  }
}

.wp-pagination ul li a, .wp-pagination ul li > span {
  display: block;
  text-align: center;
  width: 61.84px;
  height: 61.84px;
  background: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  border-radius: 100%;
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 850px) {
  .wp-pagination ul li a, .wp-pagination ul li > span {
    width: 9.65vw;
    height: 9.65vw;
    text-align: center;
    font-size: 3.25vw;
    line-height: 9.65vw;
  }
}

.wp-pagination ul li.active {
  width: 80px;
}
@media (max-width: 850px) {
  .wp-pagination ul li.active {
    width: 9.3vw;
  }
}

.wp-pagination ul li > span, .wp-pagination ul li.active a {
  color: #000;
  background: #fdc426;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media (max-width: 850px) {
  .wp-pagination ul li > span, .wp-pagination ul li.active a {
    width: 9.3vw;
  }
}

.wp-pagination ul li a.prev {
  background: none;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}
.wp-pagination ul li a.prev a, .wp-pagination ul li a.prev span {
  background: none;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  width: 30px;
}

.wp-pagination ul li a.next {
  background: none;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}
.wp-pagination ul li a.next a, .wp-pagination ul li a.next span {
  background: none;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  width: 30px;
}

.wp-pagination ul li a.prev {
  margin: 0 0 0 0;
  text-decoration: underline;
  width: inherit;
  width: inherit;
}
.wp-pagination ul li a.prev img {
  height: 25px;
}
@media (max-width: 850px) {
  .wp-pagination ul li a.prev img {
    height: 2.9vw;
  }
}
@media (max-width: 850px) {
  .wp-pagination ul li a.prev {
    margin: 0 0 0 0;
  }
}
.wp-pagination ul li a.prev a {
  width: inherit;
}
.wp-pagination ul li a.prev a {
  text-decoration: underline;
}
.wp-pagination ul li a.next {
  margin: 0 0 0 0;
  width: inherit;
  text-decoration: underline;
}
.wp-pagination ul li a.next img {
  height: 25px;
}
@media (max-width: 850px) {
  .wp-pagination ul li a.next img {
    height: 2.9vw;
  }
}
@media (max-width: 850px) {
  .wp-pagination ul li a.next {
    margin: 0 0 0 0;
  }
}
.wp-pagination ul li a.next a {
  width: inherit;
  text-decoration: underline;
}
#breadcrumb {
  background: #E5E5E5;
  padding: 20px 0;
  margin-bottom: 80px;
}
@media (max-width: 657px) {
  #breadcrumb {
    padding: 7.5px 0;
    margin-bottom: 30px;
  }
}
#breadcrumb ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#breadcrumb ul li {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 100;
  margin: 0 30px 0 0;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 657px) {
  #breadcrumb ul li {
    font-size: 1.3rem;
    font-weight: 200;
  }
}
#breadcrumb ul li a {
  text-transform: uppercase;
}
#breadcrumb ul li:after {
  content: ">";
  display: block;
  font-size: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  font-weight: 100;
  position: absolute;
}
@media (max-width: 657px) {
  #breadcrumb ul li:after {
    font-size: 1.3rem;
    left: -18px;
    font-weight: 200;
  }
}
#breadcrumb ul li:first-child:after {
  display: none;
}

.lower-mv {
  height: 360px;
  overflow: hidden;
  background: #fff;
  position: relative;
}
@media (max-width: 657px) {
  .lower-mv {
    height: 200px;
  }
}
.lower-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.lower-mv img.company {
  position: absolute;
  left: 0;
  bottom: -60px;
  height: inherit;
  opacity: 1;
}
@media (max-width: 657px) {
  .lower-mv img.company {
    bottom: 0;
  }
}
.lower-mv h2 {
  color: #2F2F2F;
  font-size: 6rem;
  font-weight: 100;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.2;
  margin-bottom: 0;
}
@media (max-width: 657px) {
  .lower-mv h2 {
    font-size: 3rem;
  }
}
.lower-mv h2 span {
  display: block;
  color: #888888;
  font-size: 0.5em;
  text-align: left;
}

.sa.active {
  opacity: 1 !important;
  transition: inherit !important;
}