@charset "UTF-8";
*,
*::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: #111111;
  font-size: 1.6rem;
  /**font-size: 2.4rem;**/
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: justify;
}
@media (max-width: 599px) {
  body {
    font-size: 1.4rem;
  }
}

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

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: #111;
  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;
  appearance: none;
  -webkit-appearance: none;
}

input[type=text],
input[type=password],
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  appearance: 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;
  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: 20px;
  padding-right: 20px;
  max-width: 1320px;
}
@media (max-width: 979px) {
  .u-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.u-inner {
  max-width: 980px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .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: 599px) {
  ._pc_spNon {
    display: none !important;
  }
}

._sp_pcNon {
  display: none !important;
}
@media (max-width: 599px) {
  ._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: 979px) {
  br._pc {
    display: none !important;
  }
}

br._sp {
  display: none !important;
}
@media (max-width: 979px) {
  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 9px 0 0;
  margin-top: -3px;
  line-height: normal;
  transform: scale(2.2);
}
@media (max-width: 599px) {
  input[type=radio],
input[type=checkbox] {
    transform: scale(1.5);
    margin: 0 1.7vw 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-wrap {
  position: relative;
  display: inline-block;
}
.select-wrap:after {
  content: "";
  display: block;
  background: url(../images/arrow_down_red.svg) center top no-repeat;
  width: 22px;
  height: 13px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 2;
}
@media (max-width: 599px) {
  .select-wrap:after {
    width: 19px;
    height: 11px;
    right: 15px;
  }
}
@media (max-width: 599px) {
  .select-wrap {
    min-width: inherit;
    width: 100% !important;
    display: block;
  }
}

select.form-control {
  display: inline-block;
  width: inherit !important;
  padding-right: 70px;
  min-width: 480px;
  position: relative;
}
@media (max-width: 599px) {
  select.form-control {
    min-width: inherit;
    width: 100% !important;
    display: block;
  }
}

.select-pref select {
  background-size: 16px;
}

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

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

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

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

input::placeholder {
  color: #CCCDD8;
}

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

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

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

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

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

textarea::placeholder {
  color: #CCCDD8;
}

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

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

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

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

.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] {
  appearance: none;
  -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: 599px) {
  .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 #A0A1AE;
  font-weight: 700;
  padding: 13px 20px !important;
  height: inherit !important;
  width: 100% !important;
  color: #111;
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 500 !important;
}
@media (max-width: 599px) {
  .form-control {
    font-size: 1.6rem;
    padding: 13px 10px !important;
  }
}

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

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

/*!
 * jquery-drawer v3.1.0
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */
/*!------------------------------------*    Base
\*!------------------------------------*/
.drawer-hamburger {
  display: none;
  z-index: 99999;
  width: 3.5rem;
  padding-right: 15px;
  padding-top: 20px;
  background: #F6F6F8;
}
.drawer-hamburger .drawer-hamburger-icon, .drawer-hamburger .drawer-hamburger-icon::before, .drawer-hamburger .drawer-hamburger-icon::after {
  background: #E62300;
}
@media (max-width: 979px) {
  .drawer-hamburger {
    display: block;
  }
}
@media (max-width: 657px) {
  .drawer-hamburger {
    width: 26px;
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 15px !important;
    padding-bottom: 23px !important;
  }
}

@media (max-width: 657px) {
  .drawer-hamburger-icon::after {
    top: 8px;
  }
}

@media (max-width: 657px) {
  .drawer-hamburger-icon::before {
    top: -8px !important;
  }
}

@media (max-width: 657px) {
  .drawer-open .drawer-hamburger-icon::before {
    top: inherit !important;
  }
}

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

.drawer--right.drawer-open .drawer-hamburger {
  background: #E62300;
}

.drawer-open .drawer-hamburger-icon::before, .drawer-open .drawer-hamburger-icon::after {
  background: #fff;
}

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

.drawer--right .drawer-nav {
  right: -100%;
}

.drawer-nav {
  width: 100%;
}

.drawer-hamburger {
  padding-right: 15px;
  padding-left: 15px;
}

/*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 {

  margin-top: 159px;
}
@media (max-width: 979px) {
  .l_main {
    margin-top: 62px;
  }
}
@media (max-width: 657px) {
  .l_main {
    margin-top: 50px;
  }
}

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

		header

------------------------------------------------*/
.header {
  width: 100%;
  z-index: 99999;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
}
@media (max-width: 979px) {
  .header {
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.16);
  }
}
.header.active {
  background: rgba(17, 17, 17, 0.9);
}
.header__wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 100px;
}
@media (max-width: 979px) {
  .header__wrap {
    height: 62px;
  }
}
@media (max-width: 657px) {
  .header__wrap {
    height: 50px;
  }
}
.header__logo {
  width: 394px;
}
@media (max-width: 657px) {
  .header__logo {
    width: 197px;
  }
}
.header__right {
  width: calc(100% - 394px);
}
@media (max-width: 979px) {
  .header__right {
    display: none;
  }
}
.header__right .header__nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__right nav {
  width: 248px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__right nav li {
  width: 104px;
}
.header__right nav li a {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 104px;
  height: 40px;
  border: 1px solid #E62300;
  border-radius: 3px;
  color: #E62300;
  position: relative;
}
.header__right nav li a span {
  position: relative;
  z-index: 3;
}
.header__right nav li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #E62300;
  z-index: 1;
  transition: width 0.2s ease;
}
.header__right nav li a:hover {
  color: #fff;
}
.header__right nav li a:hover:before {
  width: 100%;
}
.header__right nav li.regist {
  margin-left: 20px;
}
.header__right nav li.regist a {
  background: #E62300;
  color: #fff;
}
.header__right nav li.regist a span {
  position: relative;
  z-index: 3;
}
.header__right nav li.regist a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #111111;
  z-index: 1;
  transition: width 0.2s ease;
}
.header__right nav li.regist a:hover {
  color: #fff;
  border-color: #111111;
}
.header__right nav li.regist a:hover:before {
  width: 100%;
}
.header .local__nav {
  background: #F6F6F8;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  position: relative;
}
@media (max-width: 979px) {
  .header .local__nav {
    display: none;
  }
}
.header .local__nav > .u-container > ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header .local__nav > .u-container > ul > li {
  display: inline-block;
  margin: 0 25px;
  padding: 13px 0;
}
.header .local__nav > .u-container > ul > li:hover > a {
  color: #E62300;
}
.header .local__nav > .u-container > ul > li.active i {
  transform: rotate(-180deg);
  /* ▲ の形にする */
}
.header .local__nav > .u-container > ul > li > a > i {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #E62300;
  border-bottom: 0;
  margin-left: 5px;
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}
.header .local__nav > .u-container > ul > li.dropdown.active > .dropdown__menu {
  display: block;
  animation: dropdownFadeIn 0s ease forwards;
}
.header .local__nav > .u-container > ul .dropdown__in {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 1280px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.header .local__nav > .u-container > ul .dropdown__menu {
  display: none;
  position: absolute;
  top: 59px;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: opacity 0.3s ease;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__left {
  width: 300px;
  background: #fff;
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 30px 30px;
  background-color: #fff;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__left figure .fig-img {
  text-align: center;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__left figure .fig-img img {
  width: 100px;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__left figure figcaption {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right {
  width: calc(100% - 300px);
  background: #F6F6F8;
  padding: 30px;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul {
  gap: 10px;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a {
  background: #fff;
  padding: 5px 0 5px 23px;
  display: block;
  font-size: 1.4rem;
  border: 1px solid #CCCDD8;
  border-radius: 4px;
  position: relative;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a span {
  position: relative;
  z-index: 3;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #007bff;
  /* 青 */
  z-index: 1;
  transition: width 0.4s ease;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a:hover {
  color: #fff;
  border-color: #007bff;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a:hover:before {
  width: 100%;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li a:hover i {
  background: url(../images/arrow_right_white.svg) left top no-repeat;
  background-size: cover;
}
.header .local__nav > .u-container > ul .dropdown__menu .dropdown__right ul li i {
  background: url(../images/arrow_right_blue.svg) left top no-repeat;
  width: 8px;
  height: 14px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 3;
}

@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.search-container {
  width: 280px;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #111;
  border-radius: 20px;
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 979px) {
  .search-container {
    width: 100%;
  }
}
@media (max-width: 657px) {
  .search-container {
    height: 44px;
  }
}

.search-container input {
  border: none;
  flex: 1;
  height: 100%;
  font-size: 16px;
  outline: none;
  color: #111;
}
@media (max-width: 657px) {
  .search-container input {
    font-size: 14px;
  }
}

.search-container input::placeholder {
  color: #CCCDD8;
}

.search-container button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

#local-nav {
  background: #F6F6F8;
  padding-top: 65px;
}
@media (max-width: 657px) {
  #local-nav {
    padding-top: 50px;
  }
}
#local-nav .u-inner {
  max-width: 355px;
}
@media (max-width: 657px) {
  #local-nav .u-inner {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
#local-nav .regist-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}
#local-nav .regist-area li a {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 40px;
  border: 1px solid #E62300;
  border-radius: 3px;
  color: #E62300;
}
@media (max-width: 657px) {
  #local-nav .regist-area li a {
    font-size: 1.6rem;
  }
}
#local-nav .regist-area li.regist a {
  background: #E62300;
  color: #fff;
}
#local-nav .local-nav-area {
  margin-top: 30px;
  border-top: 1px solid #CCCDD8;
}
#local-nav .local-nav-area li a {
  display: block;
  padding: 20px 30px;
  border-bottom: 1px solid #CCCDD8;
  background: url(../images/arrow_right_red.svg) right 30px center no-repeat;
}
@media (max-width: 657px) {
  #local-nav .local-nav-area li a {
    font-size: 1.6rem;
  }
}

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

		footer

------------------------------------------------*/
.footer {
  background: #111111;
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media (max-width: 979px) {
  .footer {
    padding: 50px 0 30px;
  }
}
.footer__wrap {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 979px) {
  .footer__wrap {
    display: block;
  }
}
.footer__left {
  width: 300px;
}
@media (max-width: 979px) {
  .footer__left {
    width: 100%;
    margin: 0 auto 50px;
  }
}
@media (max-width: 657px) {
  .footer__left img {
    width: 263px;
  }
}
.footer__address {
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 40px 0 0;
}
@media (max-width: 979px) {
  .footer__address {
    margin: 20px 0 0;
  }
}
.footer__right {
  width: calc(100% - 300px);
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 979px) {
  .footer__right {
    width: 100%;
    display: block;
  }
}
.footer__right nav {
  display: inline-block;
  margin-left: 64px;
  padding-left: 20px;
  border-left: 1px solid #FFFFFF;
}
@media (max-width: 979px) {
  .footer__right nav:last-child {
    padding-top: 16px;
  }
}
@media (max-width: 979px) {
  .footer__right nav {
    display: block;
    padding-left: 20px;
    margin-left: 0;
  }
}
.footer__right nav li {
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer__right nav li:last-child {
  margin: 0;
}
.footer__right nav li a {
  font-size: 1.4rem;
  color: #fff;
  line-height: 0;
  transition: 0.2s;
}

.footer__right nav li a:hover{
  text-decoration: underline;
  transition: 0.2s;
}

.footer__right nav li ul {
  margin-top: 16px;
}
.footer__right nav li li {
  padding-left: 15px;
}
@media (max-width: 979px) {
  .footer__right nav li li {
    padding-left: 10px;
  }
}
.footer__right nav li li a {
  color: #CCCDD8;
}
.footer__disclaimer {
  background: #222222;
  margin: 50px 0 0;
  padding: 30px;
}
@media (max-width: 979px) {
  .footer__disclaimer {
    padding: 20px 15px;
  }
}
.footer__disclaimer dl dt {
  font-weight: 700;
  padding-bottom: 7px;
  border-bottom: 1px solid #E62300;
}
@media (max-width: 657px) {
  .footer__disclaimer dl dt {
    font-size: 1.4rem;
  }
}
.footer__disclaimer dl dd {
  color: #CCCDD8;
  font-size: 1.2rem;
  margin-top: 20px;
}
@media (max-width: 657px) {
  .footer__disclaimer dl dd {
    margin-top: 15px;
  }
}
.footer__disclaimer dl dd a {
  color: #4992E5;
  text-decoration: underline;
  transition: 0.2s;
}
.footer__disclaimer dl dd a:hover {
  text-decoration: none;
  color: #E62300;
}
.footer #copyright {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 80px;
}

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

		parts

------------------------------------------------*/
.u-grid--5 {
  display: grid;
  grid-template-columns: repeat(4, 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: 30px;
}

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

@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_ttl-box-lv02 {
  margin: 0 0 30px;
  position: relative;
}
.u_ttl-box-lv02.archive-ttl {
  margin-bottom: 55px;
}
@media (max-width: 979px) {
  .u_ttl-box-lv02.archive-ttl {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 599px) {
  .u_ttl-box-lv02 {
    margin: 0 0 25px;
  }
}
.u_ttl-box-lv02__ttl {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 900;
}
@media (max-width: 599px) {
  .u_ttl-box-lv02__ttl {
    margin: 0 0 0;
    font-size: 3.6rem;
  }
}
.u_ttl-box-lv02__ttl span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 7px;
}
@media (max-width: 599px) {
  .u_ttl-box-lv02__ttl span {
    font-size: 1.4rem;
    margin-top: 4px;
  }
}
@media (max-width: 599px) {
  .u_ttl-box-lv02__ttl .ja {
    margin: 0 0 0;
    font-size: 3.2rem;
  }
}
.u_ttl-box-lv02__ttl--left {
  text-align: left;
}
.u_ttl-box-lv02__ttl--right {
  text-align: right;
}
@media (max-width: 599px) {
  .u_ttl-box-lv02__text {
    font-size: 1.2rem;
  }
}
.u_ttl-box-lv02 .num-text {
  color: #A0A1AE;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 599px) {
  .u_ttl-box-lv02 .num-text {
    font-size: 1.2rem;
  }
}

.u_ttl-box-category {
  margin: 0 0 20px;
}
.u_ttl-box-category__ttl {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-wrap: nowrap;
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 900;
}
@media (max-width: 599px) {
  .u_ttl-box-category__ttl {
    margin: 0 0 0;
    font-size: 3.2rem;
  }
}
.u_ttl-box-category__ttl i {
  width: 100px;
  margin-right: 25px;
}
@media (max-width: 599px) {
  .u_ttl-box-category__ttl i {
    width: 60px;
    margin-right: 10px;
  }
}
.u_ttl-box-category__ttl--left {
  text-align: left;
}
.u_ttl-box-category__ttl--right {
  text-align: right;
}

.u-contact-btn, .u-top-btn {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 70px 0 0;
}
@media (max-width: 599px) {
  .u-contact-btn, .u-top-btn {
    margin: 35px 0 0;
  }
}
.u-contact-btn button, .u-contact-btn a, .u-top-btn button, .u-top-btn a {
  max-width: 260px;
  width: 100%;
  border: 1px solid #e8108b;
  color: #e8108b;
  padding: 5px 5px 7px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 30px;
  font-weight: 500;
  text-align: center;
  display: block;
}
@media (max-width: 599px) {
  .u-contact-btn button, .u-contact-btn a, .u-top-btn button, .u-top-btn a {
    max-width: 140px;
    margin: 0 15px;
  }
}
.u-contact-btn .prev, .u-top-btn .prev {
  max-width: 260px;
  width: 100%;
  border: 1px solid #999;
  color: #999;
  padding: 5px 5px 7px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 30px;
  font-weight: 500;
}
@media (max-width: 599px) {
  .u-contact-btn .prev, .u-top-btn .prev {
    max-width: 140px;
    margin: 0 15px;
  }
}

.u-anker-links {
  gap: 20px;
}
@media (max-width: 599px) {
  .u-anker-links {
    gap: 10px;
  }
}
.u-anker-links li a {
  display: block;
  text-align: center;
  border: 1px solid #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 10px;
  position: relative;
}
@media (max-width: 599px) {
  .u-anker-links li a {
    padding: 7px;
  }
}
.u-anker-links li a i img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 599px) {
  .u-anker-links li a i img {
    right: 10px;
    width: 12px;
  }
}

.u-btn {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 30px 0 0;
}
@media (max-width: 599px) {
  .u-btn {
    margin: 20px 0 0;
  }
}
.u-btn a, .u-btn button {
  color: #E62300;
  border: 1px solid #E62300;
  padding: 9px 20px;
  border-radius: 3px;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
}
.u-btn a span, .u-btn button span {
  position: relative;
  z-index: 2;
}
.u-btn a:before, .u-btn button:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #E62300;
  z-index: 1;
  transition: width 0.2s ease;
}
.u-btn a:hover, .u-btn button:hover {
  color: #fff;
  border-color: #E62300;
}
.u-btn a:hover:before, .u-btn button:hover:before {
  width: 100%;
}
.u-btn.__center {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.u-btn.__center a, .u-btn.__center button {
  display: inline-block;
  max-width: 320px;
  width: 100%;
}
@media (max-width: 979px) {
  .u-btn.__center a, .u-btn.__center button {
    max-width: 295px;
  }
}

.wp-pagination {
  text-align: center;
  margin: 80px 0 0;
}
@media (max-width: 599px) {
  .wp-pagination {
    margin: 40px 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: 599px) {
  .wp-pagination ul {
    margin: 0 0 0;
  }
}

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

.wp-pagination ul li a, .wp-pagination ul li > span {
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  color: #E62300;
  font-weight: 700;
  font-size: 1.6rem;
  background: #F6F6F8;
  border-radius: 100%;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 599px) {
  .wp-pagination ul li a, .wp-pagination ul li > span {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 1.6rem;
  }
}

.wp-pagination ul li > span, .wp-pagination ul li.active a {
  background: #111;
  color: #fff;
}

.wp-pagination ul li a.prev, .wp-pagination ul li.prev a {
  background: none;
  display: inline-block;
  background: url(../images/prev.svg) left top no-repeat;
  width: 50px;
  height: 50px;
}
@media (max-width: 599px) {
  .wp-pagination ul li a.prev, .wp-pagination ul li.prev a {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}
.wp-pagination ul li a.prev:hover, .wp-pagination ul li.prev a:hover {
  background: url(../images/prev_active.svg) left top no-repeat;
}
@media (max-width: 599px) {
  .wp-pagination ul li a.prev:hover, .wp-pagination ul li.prev a:hover {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}

.wp-pagination ul li a.next, .wp-pagination ul li.next a {
  background: none;
  display: inline-block;
  background: url(../images/next.svg) left top no-repeat;
  width: 50px;
  height: 50px;
}
@media (max-width: 599px) {
  .wp-pagination ul li a.next, .wp-pagination ul li.next a {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}
.wp-pagination ul li a.next:hover, .wp-pagination ul li.next a:hover {
  background: url(../images/next_active.svg) left top no-repeat;
}
@media (max-width: 599px) {
  .wp-pagination ul li a.next:hover, .wp-pagination ul li.next a:hover {
    width: 40px;
    height: 40px;
    background-size: cover;
  }
}

.u-column-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media (max-width: 599px) {
  .u-column-list {
    gap: 10px;
  }
}
.u-column-list .item .in {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 30px 60px;
  background: #121212;
  position: relative;
}
@media (max-width: 599px) {
  .u-column-list .item .in {
    padding: 15px 55px 12px 25px;
  }
}
.u-column-list .item .in:after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #e8108b;
  top: 50%;
  transform: translateY(-50%);
  right: 60px;
  position: absolute;
}
@media (max-width: 599px) {
  .u-column-list .item .in:after {
    width: 15px;
    right: 20px;
  }
}
.u-column-list .item .in .time {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-right: 15px;
}
@media (max-width: 599px) {
  .u-column-list .item .in .time {
    font-size: 1.2rem;
    margin-right: 10px;
  }
}
.u-column-list .item .in .cat {
  font-size: 1.2rem;
  padding: 2px 4px;
  background: #999999;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #292929;
  margin-right: 30px;
  text-align: center;
  display: block;
  width: 120px;
}
@media (max-width: 599px) {
  .u-column-list .item .in .cat {
    font-size: 1rem;
    margin-right: 15px;
    width: 80px;
    padding: 2px 2px 4px;
  }
}
.u-column-list .item .in .ttl {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media (max-width: 599px) {
  .u-column-list .item .in .ttl {
    display: block;
    line-height: 1.4;
    margin-top: 10px;
  }
}

#breadcrumb {
  padding: 20px 0 40px;
}
@media (max-width: 979px) {
  #breadcrumb {
    padding: 15px 0 40px;
  }
}
#breadcrumb ul {
  align-items: flex-startr;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#breadcrumb ul li {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 15px 0 0;
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 599px) {
  #breadcrumb ul li {
    font-size: 1.2rem;
  }
}
#breadcrumb ul li a {
  text-transform: uppercase;
  text-decoration: underline;
}
#breadcrumb ul li a i {
  content: "";
  display: inline-block;
  background: url(../images/icon_home.svg) left top no-repeat;
  background-size: cover;
  width: 14px;
  height: 16px;
  margin-right: 5px;
  position: relative;
  top: 2px;
}
#breadcrumb ul li:before {
  content: "/";
  display: block;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  position: absolute;
}
@media (max-width: 979px) {
  #breadcrumb ul li:before {
    font-size: 1.2rem;
    left: -10px;
  }
}
#breadcrumb ul li:first-child:before {
  display: none;
}

.u-contact-area {
  background: #191919;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.u-contact-area__wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.u-contact-area__left {
  width: 50%;
}
.u-contact-area__left img {
  width: 100%;
}
.u-contact-area__right {
  width: 50%;
}
@media (max-width: 599px) {
  .u-contact-area__right {
    width: 150px;
  }
}
.u-contact-area__right .contact-btn {
  width: 335px;
  margin-left: auto;
}
@media (max-width: 599px) {
  .u-contact-area__right .contact-btn {
    width: 100%;
  }
}
.u-contact-area__right .contact-btn a {
  display: block;
  position: relative;
  text-align: right;
}
.u-contact-area__right .contact-btn a .icon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 599px) {
  .u-contact-area__right .contact-btn a .icon {
    width: 40px;
    height: 40px;
  }
}
.u-contact-area__right .contact-btn a i {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: block;
  position: relative;
  background: transparent;
}
@media (max-width: 599px) {
  .u-contact-area__right .contact-btn a i {
    width: 40px;
    height: 40px;
  }
}
.u-contact-area__right .contact-btn a i:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.u-contact-area__right .contact-btn a i img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.u-contact-area__right .contact-btn.show a i:before {
  border: 1px solid white;
  clip-path: polygon(50% 50%, 50% 0, 100% 0, 100% 100%, 0 100%, 0 0, 50% 0);
  transform: rotate(0deg);
  animation: drawCircle 1s linear forwards;
}
.u-contact-area__right .contact-btn.show a:hover i:before {
  border: 1px solid white;
  clip-path: polygon(50% 50%, 50% 0, 0 0, 0 100%, 100% 100%, 100% 0, 50% 0);
  transform: rotate(0deg);
  animation: drawCircleReverseReverse 1s linear forwards;
}

@media (max-width: 979px) {
  .lower-page {
    padding-top: 70px;
  }
}
.lower-page .lower-mv {
  position: relative;
  height: 30vw;
}
@media (max-width: 979px) {
  .lower-page .lower-mv {
    height: 40vw;
    overflow: hidden;
  }
}
.lower-page .lower-mv__image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
  height: 30vw;
}
@media (max-width: 979px) {
  .lower-page .lower-mv__image picture {
    height: 40vw;
  }
}
.lower-page .lower-mv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.lower-page .lower-mv .lower-mv__ttl-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.lower-page .lower-mv .lower-mv__ttl-box .lower-mv__ttl {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .lower-page .lower-mv .lower-mv__ttl-box .lower-mv__ttl {
    font-size: 2.4rem;
  }
}
.lower-page .lower-mv .lower-mv__ttl-box .lower-mv__ttl span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-size: 1.8rem;
  color: #e8108b;
  font-weight: 700;
}
@media (max-width: 599px) {
  .lower-page .lower-mv .lower-mv__ttl-box .lower-mv__ttl span {
    font-size: 1.2rem;
  }
}
.lower-page .lower-mv .lower-mv__text-wrap {
  position: absolute;
  bottom: 0;
  max-width: 1160px;
  width: 100%;
  padding-right: 80px;
}
@media (max-width: 979px) {
  .lower-page .lower-mv .lower-mv__text-wrap {
    width: calc(100% - 40px);
    padding-right: 0;
  }
}
@media (max-width: 599px) {
  .lower-page .lower-mv .lower-mv__text-wrap {
    width: calc(100% - 15px);
  }
}
.lower-page .lower-mv .lower-mv__text {
  font-weight: 600;
  /* Semibold */
  font-size: 160px;
  letter-spacing: 0.05em;
  color: white;
  mix-blend-mode: lighten;
  /* Photoshopの覆い焼きに近い */
  opacity: 0.2;
  text-align: right;
  line-height: 0.9;
}
@media (max-width: 979px) {
  .lower-page .lower-mv .lower-mv__text {
    font-size: 60px;
    padding-right: 40px;
  }
}
@media (max-width: 599px) {
  .lower-page .lower-mv .lower-mv__text {
    padding-right: 15px;
  }
}
.lower-page .lower-mv .lower-mv__text.pt02 {
  font-size: 105px;
}
@media (max-width: 979px) {
  .lower-page .lower-mv .lower-mv__text.pt02 {
    font-size: 40px;
  }
}
@media (max-width: 599px) {
  .lower-page .lower-mv .lower-mv__text.pt02 {
    font-size: 20px;
  }
}

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

.u-pickup-list .item a {
  display: block;
}
.u-pickup-list .item a:hover .in .img-area img {
  opacity: 0.8;
}
.u-pickup-list .item a .in .img-area {
  width: 100%;
  aspect-ratio: 100/56.7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #111;
}
@media (max-width: 599px) {
  .u-pickup-list .item a .in .img-area {
    aspect-ratio: 100/56.7;
  }
}
.u-pickup-list .item a .in .img-area > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease;
}
.u-pickup-list .item a .cat {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
}
.u-pickup-list .item a .cat span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #4992E5;
  margin: 0 10px 10px 0;
}
@media (max-width: 657px) {
  .u-pickup-list .item a .cat span {
    font-size: 1.2rem;
    padding: 1px 4px 3px;
  }
}
.u-pickup-list .item a .pick {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
}
.u-pickup-list .item a .pick span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #E62300;
}
@media (max-width: 657px) {
  .u-pickup-list .item a .pick span {
    font-size: 1.2rem;
    padding: 1px 4px 3px;
  }
}
.u-pickup-list .item a .text-area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));;
  background-size: 100%;
  padding: 20px;
}
@media (max-width: 599px) {
  .u-pickup-list .item a .text-area {
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    background-size: 100%;
  }
}
.u-pickup-list .item a .text-area .time {
  color: #CCCDD8;
  font-size: 1.4rem;
}
@media (max-width: 657px) {
  .u-pickup-list .item a .text-area .time {
    font-size: 1.2rem;
  }
}
.u-pickup-list .item a .text-area .ttl {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 表示する最大行数 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 657px) {
  .u-pickup-list .item a .text-area .ttl {
    font-size: 1.4rem;
  }
}

.u-archive__column {
 
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 979px) {
  .u-archive__column {
    display: block;
  }
}
.u-archive__left {
  width: calc(100% - 300px);
  padding-right: 80px;
}
@media (max-width: 979px) {
  .u-archive__left {
    display: block;
    width: 100%;
    padding-right: 0;
  }
}
.u-archive__left .u-btn {
  margin-top: 40px;
}
.u-archive__right {
  width: 300px;
}
@media (max-width: 979px) {
  .u-archive__right {
    display: block;
    width: 100%;
    margin-top: 80px;
  }
}
.u-archive__right__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #E62300;
  margin: 0 0 20px;
  line-height: 1.5;
}
.u-archive__right__categoryList {
  margin-bottom: 40px;
}
.u-archive__right__categoryList .item {
  background: #F6F6F8;
  border-radius: 5px;
  margin: 0 0 20px;
  padding: 20px;
}
.u-archive__right__categoryList .item:last-child {
  margin: 0;
}
.u-archive__right__categoryList .item dl dt {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCDD8;
  margin: 0 0 20px;
}
.u-archive__right__categoryList .item dl dt i {
  width: 60px;
  margin-right: 10px;
}
.u-archive__right__categoryList .item dl dt.icon-file i {
  width: 32px;
}
.u-archive__right__categoryList .item dl dd {
  margin: 0 0 20px;
}
@media (max-width: 599px) {
  .u-archive__right__categoryList .item dl dd {
    margin: 0 0 15px;
  }
}
.u-archive__right__categoryList .item dl dd a {
  display: inline-block;
  font-weight: 500;
  padding-left: 21px;
  position: relative;
}
.u-archive__right__categoryList .item dl dd a:hover {
  color: #4992E5;
}
.u-archive__right__categoryList .item dl dd a i {
  background: url(../images/arrow_right_blue.svg) left top no-repeat;
  width: 11px;
  height: 20px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 5px;
  transition: 0.2s;
}
@media (max-width: 599px) {
  .u-archive__right__categoryList .item dl dd a i {
    width: 9px;
    height: 15px;
  }
}
.u-archive__right__categoryList .item dl dd a:hover i {
  left: 5px;
}

.u-archive-list {
  gap: 40px 20px;
}
@media (max-width: 979px) {
  .u-archive-list {
    gap: 20px 15px;
  }
}
.u-archive-list.u-grid--2 {
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 979px) {
  .u-archive-list.u-grid--2 {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.u-archive-list.u-grid--2 .u-archive-list__text .time {
  color: #A0A1AE;
  font-size: 1.4rem;
  line-height: 2;
}
.u-archive-list.u-grid--2 .u-archive-list__text .ttl {
  font-size: 2rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.2s;
}
@media (max-width: 599px) {
  .u-archive-list.u-grid--2 .u-archive-list__text .ttl {
    font-size: 1.6rem;
  }
}
.u-archive-list__item a {
  display: block;
}
.u-archive-list a:hover .u-archive-list__text .ttl {
  color: #4992E5;
}
.u-archive-list a:hover .u-archive-list__img img {
  opacity: 0.8;
  transform: scale(1.1);
}
.u-archive-list__img {
  background: #111;
}
.u-archive-list__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.2s;
}
.u-archive-list figure {
  width: 100%;
  aspect-ratio: 100/54.7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}
.u-archive-list figure figcaption .cat {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
}
.u-archive-list figure figcaption .cat span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #4992E5;
  margin: 0 10px 10px 0;
  border-radius: 3px;
}
@media (max-width: 599px) {
  .u-archive-list figure figcaption .cat span {
    font-size: 1.2rem;
    padding: 1px 4px 3px;
  }
}
.u-archive-list figure figcaption .new {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
}
.u-archive-list figure figcaption .new span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #111111;
  font-weight: 700;
}
@media (max-width: 599px) {
  .u-archive-list figure figcaption .new span {
    font-size: 1.2rem;
    padding: 1px 4px 3px;
  }
}
.u-archive-list__text .time {
  color: #A0A1AE;
  font-size: 1.2rem;
  line-height: 1.5;
}
.u-archive-list__text .ttl {
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 979px) {
  .u-archive-list__text .ttl {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 599px) {
  .u-archive-list__text .ttl {
    font-size: 1.4rem;
  }
}

.u-archive__rankingList .item {
  margin-bottom: 20px;
  counter-increment: rank;
  position: relative;
}
.u-archive__rankingList .item:before {
  content: counter(rank);
  position: absolute;
  left: 0;
  top: 0;
  background: #111111;
  /* 色は自由に */
  color: white;
  font-weight: bold;
  width: 20px;
  height: 20px;
  font-size: 1.4rem;
  z-index: 4;
  line-height: 1;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.u-archive__rankingList .item:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 10px 0 10px;
  border-color: #111 transparent transparent transparent;
}
.u-archive__rankingList .item a {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.u-archive__rankingList .item a figure {
  width: 100px;
  aspect-ratio: 100/54.7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}
@media (max-width: 979px) {
  .u-archive__rankingList .item a figure {
    width: 120px;
  }
}
.u-archive__rankingList .item a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.u-archive__rankingList .item a .text-area {
  width: calc(100% - 100px);
  padding-left: 10px;
}
@media (max-width: 979px) {
  .u-archive__rankingList .item a .text-area {
    width: calc(100% - 120px);
  }
}
.u-archive__rankingList .item a .text-area .ttl {
  font-size: 1.4rem;
  line-height: 1.71;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.u-archive__rankingList .item a:hover .text-area .ttl {
  color: #4992E5;
}
@media (max-width: 979px) {
  .u-archive__rankingList .item:first-child {
    margin-bottom: 30px;
  }
}
.u-archive__rankingList .item:first-child:before {
  background-color: #C18B35;
  width: 30px;
  height: 30px;
}
@media (max-width: 979px) {
  .u-archive__rankingList .item:first-child:before {
    font-size: 1.6rem;
  }
}
.u-archive__rankingList .item:first-child:after {
  top: 30px;
  border-width: 10px 15px 0 15px;
  border-color: #C18B35 transparent transparent transparent;
}
.u-archive__rankingList .item:first-child a {
  display: block;
}
.u-archive__rankingList .item:first-child a figure {
  width: 100%;
  border-radius: 5px;
}
.u-archive__rankingList .item:first-child a .text-area {
  width: 100%;
  padding: 0;
}
.u-archive__rankingList .item:first-child a .text-area .ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .u-archive__rankingList .item:first-child a .text-area .ttl {
    font-size: 1.6rem;
  }
}
.u-archive__rankingList .item:nth-of-type(2):before {
  background-color: #CCCDD8;
}
.u-archive__rankingList .item:nth-of-type(2):after {
  border-color: #CCCDD8 transparent transparent transparent;
}
.u-archive__rankingList .item:nth-of-type(3):before {
  background-color: #A25C31;
}
.u-archive__rankingList .item:nth-of-type(3):after {
  border-color: #A25C31 transparent transparent transparent;
}
.u-archive__rankingList .item:last-child {
  margin-bottom: 0;
}

.u-archive__newList .item {
  margin-bottom: 20px;
  position: relative;
}
.u-archive__newList .item a {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.u-archive__newList .item a figure {
  width: 100px;
  aspect-ratio: 100/54.7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}
@media (max-width: 979px) {
  .u-archive__newList .item a figure {
    width: 120px;
  }
}
.u-archive__newList .item a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.u-archive__newList .item a .text-area {
  width: calc(100% - 100px);
  padding-left: 10px;
}
@media (max-width: 979px) {
  .u-archive__newList .item a .text-area {
    width: calc(100% - 120px);
  }
}
.u-archive__newList .item a .text-area .ttl {
  font-size: 1.4rem;
  line-height: 1.71;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.u-archive__newList .item a:hover .text-area .ttl {
  color: #4992E5;
}
.u-archive__newList .item:last-child {
  margin-bottom: 0;
}

.u-offerings-item figure {
  width: 100%;
  aspect-ratio: 100/55.8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
}
.u-offerings-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.2s;
}
.u-offerings-item figure .cat {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
}
.u-offerings-item figure .cat span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #E62300;
  border-radius: 5px;
}
@media (max-width: 599px) {
  .u-offerings-item figure .cat span {
    font-size: 1.2rem;
    padding: 1px 4px 3px;
    border-radius: 3px;
  }
}
.u-offerings-item .text-area {
  padding-bottom: 20px;
  border-bottom: 1px solid #111;
}
@media (max-width: 599px) {
  .u-offerings-item .text-area {
    padding-bottom: 10px;
  }
}
.u-offerings-item .text-area .ttl {
  line-height: 1.75;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .u-offerings-item .text-area .ttl {
    font-weight: 500;
  }
}
.u-offerings-item .text-area .text {
  line-height: 1.75;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .u-offerings-item .text-area .text {
    margin-top: 10px;
    -webkit-line-clamp: 4;
  }
}
.u-offerings-item.pick .text-area {
  padding-bottom: 0;
  border: none;
}
.u-offerings-item.pick .text-area .ttl {
  font-size: 2.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-bottom: 10px;
  border-bottom: 1px solid #111;
}
@media (max-width: 599px) {
  .u-offerings-item.pick .text-area .ttl {
    font-size: 1.6rem;
    padding-bottom: 0;
    border: none;
  }
}
@media (max-width: 979px) {
  .u-offerings-item.pick .text-area .text {
    border-top: 1px solid #111;
    margin-top: 10px;
    padding-top: 10px;
  }
}
.u-offerings-item a:hover figure {
  background: #111;
}
.u-offerings-item a:hover figure img {
  opacity: 0.8;
  transform: scale(1.1);
}
.u-offerings-item a:hover .text-area .ttl {
  color: #4992E5;
}

.lowerPage {
  padding-bottom: 200px;
}
@media (max-width: 599px) {
  .lowerPage {
    padding-bottom: 80px;
  }
}

.u-category-nav {
  gap: 20px;
  margin: 160px 0 0;
}
@media (max-width: 979px) {
  .u-category-nav {
    display: none;
  }
}
.u-category-nav li a {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px;
  background: url(../images/arrow_right_red.svg) right 20px center no-repeat #F6F6F8;
  font-size: 2.4rem;
  font-weight: 700;
  background-size: 11px 19px;
  border-radius: 4px;
}
.u-category-nav li a:hover {
  background: url(../images/arrow_right_white.svg) right 20px center no-repeat #A0A1AE;
  background-size: 11px 19px;
  color: #fff;
}
.u-category-nav li a i {
  display: inline-block;
  background: url(../images/icon_cat01.png) left top no-repeat;
  background-size: cover;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
.u-category-nav li a i.cat02 {
  background: url(../images/icon_cat02.png) left top no-repeat;
  background-size: cover;
}
.u-category-nav li a i.cat03 {
  background: url(../images/icon_cat03.png) left top no-repeat;
  background-size: cover;
}

.u-category-list {
  gap: 20px;
}
.u-category-list li a {
  background: #fff;
  padding: 14px 0 14px 41px;
  display: block;
  font-size: 1.6rem;
  border: 1px solid #CCCDD8;
  border-radius: 4px;
  position: relative;
}
@media (max-width: 599px) {
  .u-category-list li a {
    font-size: 1.4rem;
    padding: 10px 0 10px 24px;
  }
}
.u-category-list li a span {
  position: relative;
  z-index: 3;
}
.u-category-list li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: #007bff;
  /* 青 */
  z-index: 1;
  transition: width 0.4s ease;
}
.u-category-list li a:hover {
  color: #fff;
  border-color: #007bff;
}
.u-category-list li a:hover:before {
  width: 100%;
}
.u-category-list li a:hover i {
  background: url(../images/arrow_right_white.svg) left top no-repeat;
  background-size: cover;
}
.u-category-list li i {
  background: url(../images/arrow_right_blue.svg) left top no-repeat;
  width: 11px;
  height: 19px;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 3;
}
@media (max-width: 599px) {
  .u-category-list li i {
    left: 11px;
    width: 8px;
    height: 14px;
  }
}

.u-business-list .item:first-child a {
  padding-top: 0;
}
.u-business-list .item a {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #CCCDD8;
}
@media (max-width: 599px) {
  .u-business-list .item a {
    padding: 20px 0;
    display: block;
  }
}
.u-business-list .item a figure {
  width: 300px;
  aspect-ratio: 25/14;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 0 0 10px;
  background: #111;
}
@media (max-width: 599px) {
  .u-business-list .item a figure {
    width: 100%;
  }
}
.u-business-list .item a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.2s;
}
.u-business-list .item a:hover figure img {
  opacity: 0.8;
  transform: scale(1.1);
}
.u-business-list .item a .text-box {
  width: calc(100% - 300px);
  padding-left: 40px;
}
@media (max-width: 599px) {
  .u-business-list .item a .text-box {
    width: 100%;
    padding: 0;
  }
}
.u-business-list .item a .text-box .time {
  color: #CCCDD8;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
@media (max-width: 657px) {
  .u-business-list .item a .text-box .time {
    font-size: 1.2rem;
  }
}
.u-business-list .item a .text-box .ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .u-business-list .item a .text-box .ttl {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.u-business-list .item a .text-box .check-list {
  margin: 20px 0 0;
}
@media (max-width: 599px) {
  .u-business-list .item a .text-box .check-list {
    margin: 10px 0 0;
  }
}
.u-business-list .item a .text-box .check-list li {
  margin: 0 0 6px;
  padding: 0 0 0 30px;
  background: url(../images/icon_check.svg) left top 4px no-repeat;
  font-size: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 599px) {
  .u-business-list .item a .text-box .check-list li {
    -webkit-line-clamp: 2;
    background: url(../images/icon_check.svg) left center no-repeat;
  }
}
.u-business-list .item a .text-box .cat {
  margin-top: 10px;
}
.u-business-list .item a .text-box .cat span {
  font-size: 1.4rem;
  padding: 1px 10px 3px;
  display: inline-block;
  color: #fff;
  background: #E62300;
  border-radius: 3px;
}
@media (max-width: 657px) {
  .u-business-list .item a .text-box .cat span {
    font-size: 1.2rem;
    padding: 1px 4px 2px;
  }
}
.u-business-list .item a:hover .text-box .ttl {
  color: #4992E5;
}