@charset "UTF-8";
/**
 * ================= styles for icon-font =================
 */
.g-i {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  font-family: "icon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: none;
  pointer-events: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.g-i-arrow-d::before {
  content: "\ea01";
}

.g-i-arrow-l::before {
  content: "\ea02";
}

.g-i-arrow-r::before {
  content: "\ea03";
}

.g-i-arrow-u::before {
  content: "\ea04";
}

.g-i-back-to-top::before {
  content: "\ea05";
}

.g-i-blank::before {
  content: "\ea06";
}

.g-i-checked::before {
  content: "\ea07";
}

.g-i-close::before {
  content: "\ea08";
}

.g-i-close2::before {
  content: "\ea09";
}

.g-i-dropdown::before {
  content: "\ea0a";
}

.g-i-facebook::before {
  content: "\ea0b";
}

.g-i-grid::before {
  content: "\ea0c";
}

.g-i-line::before {
  content: "\ea0d";
}

.g-i-list::before {
  content: "\ea0e";
}

.g-i-search::before {
  content: "\ea0f";
}

.g-i-twitter::before {
  content: "\ea10";
}

.g-i-zoom::before {
  content: "\ea11";
}

@font-face {
  font-family: "icon";
  src: url("../icon/icon.woff2?1726142246787") format("woff2"), url("../icon/icon.woff?1726142246787") format("woff");
  font-weight: normal;
  font-style: normal;
}
.g-i::before {
  float: left;
}

/**
 * ================= styles for svg-icon =================
 */
.g-s {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  background: url("../icon/icon.svg?1726142246837") no-repeat;
  background-size: 1em 1em;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  speak: none;
}

.g-s-favorite {
  background-position: 0em 0em;
}

/**
 * ================= reset of styles =================
 */
* {
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
*::before, *::after {
  box-sizing: inherit;
}

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

body,
p,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dd,
input,
textarea,
select,
button {
  margin: 0;
}

html {
  height: 100%;
  font-size: 10px;
}

body {
  height: 100%;
  overflow-x: hidden;
}

em {
  font-style: normal;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

input::-ms-clear, input::-ms-reveal {
  visibility: hidden;
}

small {
  font-size: 0.75em;
}

[hidden] {
  display: none !important;
}

::placeholder {
  color: #323232;
  opacity: 1;
}

/**
 * ================= basic styles =================
 */
body {
  background-color: #fff;
  color: #333;
  font-family: sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

a {
  color: #6a6a6a;
  text-decoration: none;
}
html[data-states~=no-touch] a:hover {
  text-decoration: underline;
}
html[data-states~=no-touch] a:hover img {
  opacity: 0.7;
}
a img {
  transition: opacity 0.2s;
}

[role=region][aria-hidden=true],
[role=dialog][aria-hidden=true],
[role=tabpanel][aria-hidden=true] {
  overflow: hidden;
  height: 0;
  perspective: 0;
}

[role=region][data-accordion-panel] {
  overflow: hidden;
  transition: height 0.2s;
}

/**
 * ================= styles for this project =================
 */

.g-accordionBtn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border: 1px solid #dcdcdc;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  color: #323232;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.g-accordionBtn:disabled, .g-accordionBtn[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
html[data-states~=no-touch] .g-accordionBtn:hover {
  border-color: #e81b45;
  background-color: #e81b45;
  color: #fff;
}
html[data-states~=no-touch] .g-accordionBtn:hover .g-accordionBtn_i::before, html[data-states~=no-touch] .g-accordionBtn:hover .g-accordionBtn_i::after {
  background-color: #fff;
}
.g-accordionBtn .g-accordionBtn_i {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-left: 0.5em;
}
.g-accordionBtn .g-accordionBtn_i::before, .g-accordionBtn .g-accordionBtn_i::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #e81b45;
  content: "";
  transition: transform 0.2s;
}
.g-accordionBtn .g-accordionBtn_i::after {
  transform: rotate(90deg);
}
.g-accordionBtn .g-accordionBtn_icon {
  flex-shrink: 0;
  margin-left: 1em;
  font-size: 0.8em;
  transition: transform 0.2s;
}
.g-accordionBtn[aria-expanded=true] .g-accordionBtn_label::before, .g-accordionBtn[data-clamped=false] .g-accordionBtn_label::before {
  content: attr(data-expanded);
}
.g-accordionBtn[aria-expanded=true] .g-accordionBtn_i::after, .g-accordionBtn[data-clamped=false] .g-accordionBtn_i::after {
  transform: rotate(0deg);
}
.g-accordionBtn[aria-expanded=true] .g-accordionBtn_icon, .g-accordionBtn[data-clamped=false] .g-accordionBtn_icon {
  transform: rotate(180deg);
}
.g-accordionBtn[aria-expanded=false] .g-accordionBtn_label::before, .g-accordionBtn[data-clamped=true] .g-accordionBtn_label::before {
  content: attr(data-collapsed);
}
.g-accordionBtn[data-clamped]:disabled, .g-accordionBtn[data-clamped][aria-disabled=true] {
  visibility: hidden;
}


.g-align-l {
  justify-content: flex-start !important;
  text-align: left !important;
}
.g-align-c {
  justify-content: center !important;
  text-align: center !important;
}
.g-align-r {
  justify-content: flex-end !important;
  text-align: right !important;
}
.g-align-t {
  align-items: stretch !important;
  vertical-align: top !important;
}
.g-align-m {
  align-items: center !important;
  vertical-align: middle !important;
}
.g-align-b {
  align-items: flex-end !important;
  vertical-align: bottom !important;
}
.g-align-l-self {
  justify-self: flex-start !important;
}
.g-align-c-self {
  justify-self: center !important;
}
.g-align-r-self {
  justify-self: flex-end !important;
}
.g-align-t-self {
  align-self: stretch !important;
}
.g-align-m-self {
  align-self: center !important;
}
.g-align-b-self {
  align-self: flex-end !important;
}


.g-avatar {
  overflow: hidden;
  width: 100px;
  height: 100px;
}
.g-avatar img {
  width: 100%;
  height: auto;
}
.g-avatar-sm {
  width: 50px;
  height: 50px;
}
.g-avatar-circle {
  border-radius: 100%;
}
.g-avatar-square {
  border-radius: 5px;
}


.g-back-to-top {
  position: fixed;
  z-index: 11;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
html[data-states~=modal] .g-back-to-top {
  visibility: hidden;
}
html[data-states~=enough-down][data-states~=scroll-up] .g-back-to-top {
  opacity: 1;
  pointer-events: all;
}
.g-back-to-top a {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 4px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  transition: background-color 0.2s;
}
html[data-states~=no-touch] .g-back-to-top a:hover {
  opacity: 0.8;
}
.g-back-to-top i {
  transform: translateY(-2px);
}


.g-badge {
  position: relative;
}
.g-badge_el {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 4px;
  background-color: #e81b45;
  border-radius: 100px;
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}
.g-badge_el:empty {
  display: none;
}


.g-bg {
  padding-top: 20px;
  padding-bottom: 20px;
}
.g-bg-sm {
  padding-top: 10px;
  padding-bottom: 10px;
}
.g-bg-gray {
  background-color: #f5f5f5;
}


.g-blockMenu {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.g-blockMenu .g-blockMenu_el {
  position: relative;
}
.g-blockMenu .g-blockMenu_smEl::before {
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  content: "";
}
.g-blockMenu .g-blockMenu_smEl .g-blockMenu_box {
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
}
.g-blockMenu .g-blockMenu_box {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  border: 1px solid #dcdcdc;
  background-color: #f5f5f5;
  color: #fff;
}
.g-blockMenu .g-blockMenu_box[href] {
  color: #e81b45;
  transition: background-color 0.2s;
}
html[data-states~=no-touch] .g-blockMenu .g-blockMenu_box[href]:hover {
  background-color: rgba(245, 245, 245, 0.2);
  text-decoration: none;
}
.g-blockMenu .g-blockMenu_img {
  width: 50%;
}
.g-blockMenu .g-blockMenu_data {
  display: block;
  flex: 1;
  padding: 10px;
  text-align: center;
}
.g-blockMenu .g-blockMenu_el {
  width: 100%;
  margin: 5px;
}
.g-blockMenu .g-blockMenu_smEl {
  width: calc((100% - 20px) / 2);
}
.g-blockMenu .g-blockMenu_img {
  max-width: 158px;
}


.g-bold {
  font-weight: 600 !important;
}
.g-bold-not {
  font-weight: normal !important;
}


.g-box {
  min-width: 100%;
  padding-right: 24px;
  padding-left: 24px;
}
.g-box-neg {
  margin-right: -24px;
  margin-left: -24px;
}


.g-breadcrumb {
  margin: 10px 0 40px;
  color: #999;
  font-size: 1.1rem;
  white-space: nowrap;
}
.g-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}
.g-breadcrumb li {
  margin: 0.15em 0;
}
.g-breadcrumb li:nth-child(n+2)::before {
  display: inline-block;
  margin: 0 0.5em;
  content: "＞";
  transform: scale(0.8);
}
.g-breadcrumb a {
  color: inherit;
}


.g-btnGroup {
  margin-top: 40px;
}
.g-btnGroup .g-btnGroup_inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-btnGroup-sm {
  margin-top: 20px;
}
.g-btnGroup-h .g-btnGroup_inner {
  position: relative;
  margin: -10px;
}
.g-btnGroup-h .g-btnGroup_inner > * {
  margin: 10px;
}
.g-btnGroup-h .g-btnGroup_l,
.g-btnGroup-h .g-btnGroup_r {
  position: absolute;
  top: 10px;
  margin: 0;
}
.g-btnGroup-h .g-btnGroup_l {
  left: 10px;
}
.g-btnGroup-h .g-btnGroup_r {
  right: 10px;
}
.g-btnGroup-v .g-btnGroup_inner {
  flex-direction: column;
  margin: -10px 0;
}
.g-btnGroup-v .g-btnGroup_inner > * {
  width: 100%;
  margin: 10px 0;
}
.g-btnGroup-v .g-btnGroup_l {
  order: -1;
}
.g-btnGroup-v .g-btnGroup_r {
  order: 1;
}
.g-btnGroup-rv.g-btnGroup-h .g-btnGroup_inner {
  flex-direction: row-reverse;
}
.g-btnGroup-rv.g-btnGroup-h .g-btnGroup_l {
  right: 10px;
  left: auto;
}
.g-btnGroup-rv.g-btnGroup-h .g-btnGroup_r {
  right: auto;
  left: 10px;
}
.g-btnGroup-rv.g-btnGroup-v .g-btnGroup_inner {
  flex-direction: column-reverse;
}


.g-btn {
  display: inline-block;
  padding: 0;
  border: 1px solid transparent;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  min-width: 100%;
}
.g-btn:disabled, .g-btn[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
html[data-states~=no-touch] .g-btn:hover {
  text-decoration: none;
}
.g-btn .g-btn_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  color: inherit;
  text-decoration: none !important;
}
.g-btn .g-btn_i:first-child {
  margin-right: 0.5em;
}
.g-btn .g-btn_i:last-child {
  margin-left: 0.5em;
}
.g-btn .g-btn_inner {
  min-height: 35px;
}
.g-btn-def {
  border-color: #aaa;
  background-color: #aaa;
  color: #fff;
  font-size: 1.4rem;
}
html[data-states~=no-touch] .g-btn-def:hover {
  border-color: transparent;
  background-color: rgba(170, 170, 170, 0.7);
}
.g-btn-primary {
  border-color: #e81b45;
  background-color: #e81b45;
  color: #fff;
  font-size: 1.4rem;
}
html[data-states~=no-touch] .g-btn-primary:hover {
  border-color: transparent;
  background-color: rgba(232, 27, 69, 0.7);
}
.g-btn-lg {
  font-size: 1.6rem;
}
.g-btn-lg .g-btn_inner {
  min-height: 35px;
}


.g-butterfly {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}
.g-butterfly > * {
  margin: 10px;
}
.g-butterfly > *:nth-child(2) {
  margin-left: auto;
}
.g-butterfly-nowrap {
  flex-wrap: nowrap;
}


.g-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  background-color: #fff;
  padding: 7px 7px 10px;
}
.g-card .g-card_head {
  position: relative;
}
.g-card .g-card_head a {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
  background-color: #333;
}
.g-card .g-card_head img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-card .g-card_body {
  flex: 1;
  font-weight: 600;
}
.g-card .g-card_body {
  margin: 0.3em 0;
  font-size: 1.3rem;
  text-align: center;
}
.g-card .g-card_foot {
  font-size: 1.2rem;
  text-align: center;
}


.g-carousel {
  position: relative;
}
.g-carousel_wrapper {
  display: flex;
}
.g-carousel_slide {
  height: auto;
}
.g-carousel_prev, .g-carousel_next {
  z-index: 1;
  top: 0;
  right: auto;
  bottom: 0;
  left: auto;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  margin: auto;
  -webkit-appearance: none;
          appearance: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  color: #000;
  font-size: 1rem;
}
.g-carousel_prev[aria-disabled=true], .g-carousel_next[aria-disabled=true] {
  pointer-events: all;
}
.g-carousel_prev::before, .g-carousel_prev::after, .g-carousel_next::before, .g-carousel_next::after {
  content: none;
}
.g-carousel_prev i, .g-carousel_next i {
  pointer-events: none;
}
.g-carousel_prev {
  left: 10px;
}
.g-carousel_prev i {
  margin-right: 2px;
}
.g-carousel_next {
  right: 10px;
}
.g-carousel_next i {
  margin-left: 2px;
}
.g-carousel_pagination {
  position: absolute;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.g-carousel .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(204, 204, 204, 0.7);
  opacity: 1;
}
.g-carousel .swiper-pagination-bullet-active {
  background: #fff;
}


.g-checkableDropdown {
  position: relative;
  display: block;
}
.g-checkableDropdown_label {
  display: flex;
  overflow: hidden;
  width: 100%;
  min-height: 35px;
  align-items: center;
  padding: 2px 32px 2px 10px;
  border: 1px solid #dcdcdc;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 5px;
  color: #333;
  cursor: pointer;
  font-size: 1.4rem;
  text-align: left;
}
.g-checkableDropdown_label span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
}
.g-checkableDropdown_label .g-i-dropdown {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  font-size: 1.4rem;
  pointer-events: none;
  transition: transform 0.2s;
}
.g-checkableDropdown_label[aria-expanded=true] i {
  transform: rotate(180deg);
}
.g-checkableDropdown_menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  margin-top: 4px;
  color: #333;
}
.g-checkableDropdown_menu ul {
  padding: 10px;
}
.g-checkableDropdown_inner {
  overflow: auto;
  max-height: 165px;
  border: 1px solid #dcdcdc;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
}
.g-checkableDropdown .g-checkable {
  display: flex;
}
.g-checkableDropdown .g-checkable_el:checked ~ .g-checkable_label {
  font-weight: 600;
}
.g-checkableDropdown-selected .g-checkableDropdown_label {
  background-color: #fff;
}


.g-checkable {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  vertical-align: middle;
}
.g-checkable_el {
  position: relative;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid #666;
  margin-right: 0.3em;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 3px;
  cursor: inherit;
}
.g-checkable_el[aria-invalid=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.g-checkable_el:disabled, .g-checkable_el[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
.g-checkable_el:checked ~ .g-checkable_i {
  visibility: visible;
}
.g-checkable_i {
  visibility: hidden;
}
.g-checkable [type=checkbox] {
  width: 15px;
  height: 15px;
}
.g-checkable [type=checkbox]:checked {
  border-color: #333;
  background-color: #333;
}
.g-checkable [type=checkbox] ~ .g-checkable_i {
  position: absolute;
  top: 6px;
  left: 3px;
  color: #fff;
  font-size: 1rem;
}
.g-checkable [type=radio] {
  width: 26px;
  height: 26px;
  border-radius: 100%;
}
.g-checkable [type=radio] ~ .g-checkable_i {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 8px;
  width: 10px;
  height: 10px;
  background-color: #e81b45;
  border-radius: 100%;
}


.g-clamp[data-clamping=true] {
  /* stylelint-disable */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /* stylelint-enable */
}


.g-clearfix::before, .g-clearfix::after {
  display: table;
  content: "";
}
.g-clearfix::after {
  clear: both;
}


.g-clip {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  white-space: nowrap !important;
}


.g-color-primary {
  color: #323232 !important;
}
.g-color-secondary {
  color: #999 !important;
}
.g-color-link {
  color: #6a6a6a !important;
}
.g-color-alert {
  color: transparent !important;
}
.g-color-disabled {
  color: transparent !important;
}
.g-color-em {
  display: inline-block;
  background: linear-gradient(to bottom, transparent 0.9em, #e81b45 0.9em) !important;
}
.g-color-inherit {
  color: inherit !important;
}


.g-column {
  padding: 20px 10px;
  border: 1px solid #dcdcdc;
  background-color: #f5f5f5;
}
.g-column-sm {
  padding: 10px;
}
.g-column-alert {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}


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


.g-display-f {
  display: flex !important;
}
.g-display-b {
  display: block !important;
}
.g-display-ib {
  display: inline-block !important;
}
.g-display-i {
  display: inline !important;
}
.g-display-h {
  visibility: hidden !important;
}
.g-display-v {
  visibility: visible !important;
}
.g-display-n {
  display: none !important;
}


.g-dl-h {
  display: grid;
  grid-template-columns: auto 1fr;
}
.g-dl-h .g-dl_h {
  padding-right: 20px;
  color: #7d7d7d;
  grid-column: 1/2;
  white-space: nowrap;
}
.g-dl-h .g-dl_body {
  grid-column: 2/3;
}
.g-dl-h .g-dl_data {
  display: block;
  padding: 5px 0;
}
.g-dl-v .g-dl_h {
  color: #7d7d7d;
}
.g-dl-v .g-dl_body + .g-dl_h {
  margin-top: 20px;
}
.g-dl-v .g-dl_data {
  display: block;
}
.g-dl-line.g-dl-h {
  border-bottom: 1px solid #dcdcdc;
}
.g-dl-line.g-dl-h .g-dl_h,
.g-dl-line.g-dl-h .g-dl_body {
  border-top: 1px solid #dcdcdc;
}
.g-dl-line.g-dl-h .g-dl_data {
  padding: 20px 0;
}
.g-dl-line.g-dl-v {
  border-bottom: 1px solid #dcdcdc;
}
.g-dl-line.g-dl-v .g-dl_h {
  padding-top: 18px;
  border-top: 1px solid #dcdcdc;
}
.g-dl-line.g-dl-v .g-dl_body + .g-dl_h {
  margin-top: 0;
}
.g-dl-line.g-dl-v .g-dl_body {
  padding-bottom: 18px;
}
.g-dl-line.g-dl-v .g-dl_data {
  padding: 0;
}
.g-dl-noTopLine.g-dl-h .g-dl_h:first-child,
.g-dl-noTopLine.g-dl-h .g-dl_h:first-child + .g-dl_body {
  border-top-color: transparent;
}
.g-dl-noTopLine.g-dl-v .g-dl_h:first-child {
  border-top-color: transparent;
}
.g-dl-news.g-dl-h .g-dl_h {
  display: flex;
  align-items: flex-start;
  padding-right: 35px;
}
.g-dl-news.g-dl-h .g-dl_h .g-label {
  width: 95px;
  margin: 0 20px 0 0;
  text-align: center;
}
.g-dl-news.g-dl-h .g-dl_data {
  display: flex;
  align-items: center;
}
.g-dl-news.g-dl-v .g-dl_h {
  padding-bottom: 5px;
}
.g-dl-news.g-dl-v .g-dl_h .g-label {
  width: 95px;
  margin: 0 10px 0 0;
  text-align: center;
}
.g-dl-plain .g-dl_h {
  padding-top: 5px;
  clear: left;
  float: left;
  font-weight: 600;
}
.g-dl-plain .g-dl_body {
  padding-top: 5px;
}


.g-dropdown {
  position: relative;
  display: block;
}
.g-dropdown_el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  opacity: 0;
}
.g-dropdown_el[disabled] {
  cursor: default;
}
.g-dropdown_el[data-input-value]:not([data-input-value=""]) ~ .g-dropdown_label {
  background-color: #fff;
}
.g-dropdown_i {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  color: #666;
  font-size: 1.4rem;
  pointer-events: none;
}
.g-dropdown_label {
  display: flex;
  min-width: 100px;
  min-height: 40px;
  align-items: center;
  padding: 2px 30px 2px 12px;
  border: 1px solid #666;
  background-color: #fff;
  border-radius: 5px;
  color: #333;
  font-size: 1.4rem;
  pointer-events: none;
  white-space: nowrap;
}
.g-dropdown_el:focus ~ .g-dropdown_i {
  color: #e81b45;
}
.g-dropdown_el[aria-invalid=true] ~ .g-dropdown_label {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.g-dropdown_el[aria-invalid=true] ~ .g-dropdown_i {
  color: transparent;
}
.g-dropdown_el[disabled] ~ .g-dropdown_label {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
.g-dropdown_el[disabled] ~ .g-dropdown_i {
  color: transparent;
}


.g-float-l {
  float: left !important;
}
.g-float-r {
  float: right !important;
}
.g-float-n {
  float: none !important;
}


.g-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -2px -7px;
}
.g-flow > * {
  margin: 2px 7px;
}
.g-flow-xs {
  margin: -1px -2px;
}
.g-flow-xs > * {
  margin: 1px 2px;
}
.g-flow-sm {
  margin: -2px -4px;
}
.g-flow-sm > * {
  margin: 2px 4px;
}
.g-flow-lg {
  margin: -5px -10px;
}
.g-flow-lg > * {
  margin: 5px 10px;
}
.g-flow-xl {
  margin: -5px -20px;
}
.g-flow-xl > * {
  margin: 5px 20px;
}
.g-flow-nowrap {
  flex-wrap: nowrap;
}


.g-font-xs {
  font-size: 1rem;
}
.g-font-sm {
  font-size: 1.2rem;
}
.g-font-md {
  font-size: 1.4rem;
}
.g-font-lg {
  font-size: 1.6rem;
}
.g-font-xl {
  font-size: 1.8rem;
}


.g-foot {
  margin-top: 15px;
}
.g-foot-xs {
  margin-top: 5px;
}
.g-foot-sm {
  margin-top: 10px;
}
.g-foot-lg {
  margin-top: 20px;
}
.g-foot-xl {
  margin-top: 30px;
}


.g-full {
  position: relative;
  right: 50%;
  left: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
}


.g-fw {
  width: 100% !important;
}


.g-grid {
  margin: -10px -10px;
  display: flex;
  align-items: center;
}
.g-grid > * {
  padding: 10px 10px;
}
.g-grid > * {
  flex: 1;
  background-clip: content-box;
}
.g-grid-1 {
  flex-wrap: wrap;
}
.g-grid-1 > * {
  width: 100%;
  flex: 0 auto;
}
.g-grid-2 {
  flex-wrap: wrap;
}
.g-grid-2 > * {
  width: 50%;
  flex: 0 auto;
}
.g-grid-3 {
  flex-wrap: wrap;
}
.g-grid-3 > * {
  width: 33.3333333333%;
  flex: 0 auto;
}
.g-grid-4 {
  flex-wrap: wrap;
}
.g-grid-4 > * {
  width: 25%;
  flex: 0 auto;
}
.g-grid-5 {
  flex-wrap: wrap;
}
.g-grid-5 > * {
  width: 20%;
  flex: 0 auto;
}
.g-grid-6 {
  flex-wrap: wrap;
}
.g-grid-6 > * {
  width: 16.6666666667%;
  flex: 0 auto;
}


.g-h {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.g-h_el {
  font-weight: 600;
}
.g-h_extra {
  margin-left: auto;
  font-size: 1.4rem;
}
.g-h-visual {
  position: relative;
  display: flex;
  height: 180px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}
.g-h-visual .g-container {
  position: absolute;
  height: 100%;
}
.g-h-visual .g-h_el {
  z-index: 1;
}
.g-h-visual p {
  z-index: 1;
  font-size: 1.4rem;
}
.g-h_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-h_author {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 12px;
  font-size: 1.1rem;
}
.g-h-1, .g-h-1b {
  flex-direction: column;
  justify-content: center;
  padding: 1.8em 0;
  margin-bottom: 0.5em;
  background-color: #f0f0f0;
  color: #333;
  font-size: 2.2rem;
}
.g-h-1 p, .g-h-1b p {
  font-size: 1.4rem;
}
.g-h-1b {
  padding: 0;
  margin-bottom: 20px;
  background-color: transparent;
}
.g-h-2 {
  position: relative;
  justify-content: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #c3c5c8;
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: center;
}
.g-h-2 .g-h_extra {
  position: absolute;
  right: 0;
  bottom: 6px;
}
.g-h-2 .g-accordionBtn {
  width: 25px;
  height: 25px;
  min-height: 25px;
  padding: 0;
  border: 0;
  color: #666;
}
.g-h-2 .g-accordionBtn_icon {
  margin-left: 0;
}
html[data-states~=no-touch] .g-h-2 .g-accordionBtn:hover {
  border-color: transparent;
  background-color: transparent;
  color: #666;
}
.g-h-2b {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 15px;
}
.g-h-home {
  margin-bottom: 17px;
  font-size: 1.9rem;
}
.g-h-home b {
  color: #e60033;
}
.g-h-home .g-h_el span {
  display: block;
  font-size: 1.2rem;
}


.g-head {
  margin-bottom: 15px;
}
.g-head-xs {
  margin-bottom: 5px;
}
.g-head-sm {
  margin-bottom: 10px;
}
.g-head-lg {
  margin-bottom: 20px;
}
.g-head-xl {
  margin-bottom: 30px;
}


.g-hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: #dcdcdc;
  margin: 15px 0;
}
.g-hr-sm {
  margin: 5px 0;
}
.g-hr-thick {
  height: 2px;
}


.g-iconBtn {
  display: inline-block;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 5px;
  color: inherit;
  font-size: 1.2rem;
  transition: background-color 0.2s, border-color 0.2s;
}
html[data-states~=no-touch] .g-iconBtn:hover {
  border-color: #e81b45;
  background-color: #e81b45;
  color: #fff;
}
.g-iconBtn .g-iconBtn_inner {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none !important;
}
.g-iconBtn:disabled, .g-iconBtn[aria-disabled=true] {
  cursor: default;
  opacity: 0.3;
  pointer-events: none;
}


.g-input {
  display: inline-block;
  width: 100%;
  min-height: 40px;
  padding: 6px 10px;
  border: 1px solid #666;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 5px;
  color: #333;
  text-align: left;
}
.g-input:disabled, .g-input[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
.g-input[aria-invalid=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.g-input[data-input-value]:not([data-input-value=""]) {
  background-color: #fff;
}
.g-input[size="1"] {
  max-width: calc(1.3em * 1);
}
.g-input[size="2"] {
  max-width: calc(1.3em * 2);
}
.g-input[size="3"] {
  max-width: calc(1.3em * 3);
}
.g-input[size="4"] {
  max-width: calc(1.3em * 4);
}
.g-input[size="5"] {
  max-width: calc(1.3em * 5);
}
.g-input[size="6"] {
  max-width: calc(1.3em * 6);
}
.g-input[size="7"] {
  max-width: calc(1.3em * 7);
}
.g-input[size="8"] {
  max-width: calc(1.3em * 8);
}
.g-input[size="9"] {
  max-width: calc(1.3em * 9);
}
.g-input[size="10"] {
  max-width: calc(1.3em * 10);
}
.g-input[size="11"] {
  max-width: calc(1.3em * 11);
}
.g-input[size="12"] {
  max-width: calc(1.3em * 12);
}
.g-input[size="13"] {
  max-width: calc(1.3em * 13);
}
.g-input[size="14"] {
  max-width: calc(1.3em * 14);
}
.g-input[size="15"] {
  max-width: calc(1.3em * 15);
}
.g-input[size="16"] {
  max-width: calc(1.3em * 16);
}
.g-input[size="17"] {
  max-width: calc(1.3em * 17);
}
.g-input[size="18"] {
  max-width: calc(1.3em * 18);
}
.g-input[size="19"] {
  max-width: calc(1.3em * 19);
}
.g-input[size="20"] {
  max-width: calc(1.3em * 20);
}
.g-input[size="21"] {
  max-width: calc(1.3em * 21);
}
.g-input[size="22"] {
  max-width: calc(1.3em * 22);
}
.g-input[size="23"] {
  max-width: calc(1.3em * 23);
}
.g-input[size="24"] {
  max-width: calc(1.3em * 24);
}
.g-input[size="25"] {
  max-width: calc(1.3em * 25);
}
.g-input[size="26"] {
  max-width: calc(1.3em * 26);
}
.g-input[size="27"] {
  max-width: calc(1.3em * 27);
}
.g-input[size="28"] {
  max-width: calc(1.3em * 28);
}
.g-input[size="29"] {
  max-width: calc(1.3em * 29);
}
.g-input[size="30"] {
  max-width: calc(1.3em * 30);
}


.g-label {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 5px;
  color: #fff;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}
.g-label-lg {
  min-width: 100px;
  font-size: 1.4rem;
  text-align: center;
}
.g-label-req {
  background-color: #e81b45;
}
.g-label-opt {
  background-color: #f5f5f5;
}
.g-label-1 {
  background-color: #e6683c;
}
.g-label-2 {
  background-color: #33ab3e;
}
.g-label-3 {
  background-color: #6b8acf;
}
.g-label-4 {
  background-color: #ba9a62;
}
.g-label-5 {
  background-color: #ae85be;
}
.g-label-6 {
  background-color: #2e6bd0;
}
.g-label-7 {
  background-color: #f65a98;
}


.g-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  color: #e81b45;
}
.g-link .g-i {
  font-size: 0.9em;
}
.g-link .g-i:first-child {
  margin-right: 0.5em;
}
.g-link .g-i:last-child {
  margin-left: 0.5em;
}
.g-link .g-i-arrow-r {
  font-size: 0.8em;
  transform: translateY(0.1em);
}
.g-link .g-i-blank {
  font-size: 0.7em;
  transform: translateY(0.1em);
}
.g-link-u {
  text-decoration: underline;
}
html[data-states~=no-touch] .g-link-u:hover {
  text-decoration: none;
}


.g-list {
  counter-reset: g-list;
}
.g-list > * {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.g-list > *::before {
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
  counter-increment: g-list;
  text-indent: 0;
  white-space: nowrap;
}
.g-list > * * {
  text-indent: 0;
}
.g-list-note {
  color: #999;
  font-size: 1.2rem;
}
.g-list-note > * {
  margin-top: 0.5em;
}
.g-list-note > *:first-child {
  margin-top: 0;
}
.g-list-note > *::before {
  content: "※";
}
.g-list-ref {
  color: #999;
  font-size: 1.2rem;
}
.g-list-ref > * {
  padding-left: 2.5em;
  margin-top: 0.5em;
  text-indent: -2.5em;
}
.g-list-ref > *:first-child {
  margin-top: 0;
}
.g-list-ref > *::before {
  width: 2em;
  content: "※" counter(g-list, decimal);
}
.g-list-ref > *:nth-last-child(n+10), .g-list-ref > *:nth-last-child(n+10) ~ * {
  padding-left: 3em;
  text-indent: -3em;
}
.g-list-ref > *:nth-last-child(n+10)::before, .g-list-ref > *:nth-last-child(n+10) ~ *::before {
  width: 2.5em;
}
.g-list-ref > *:nth-last-child(n+100), .g-list-ref > *:nth-last-child(n+100) ~ * {
  padding-left: 4em;
  text-indent: -4em;
}
.g-list-ref > *:nth-last-child(n+100)::before, .g-list-ref > *:nth-last-child(n+100) ~ *::before {
  width: 3.5em;
}
.g-list-disc > *::before {
  background: radial-gradient(circle at 0.5em 0.7em, currentColor 3px, transparent 3px);
  content: "​";
}
.g-list-decimal > *::before {
  content: counter(g-list, decimal) ".";
  text-align: right;
}
.g-list-decimal > *:nth-last-child(n+10), .g-list-decimal > *:nth-last-child(n+10) ~ * {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
.g-list-decimal > *:nth-last-child(n+10)::before, .g-list-decimal > *:nth-last-child(n+10) ~ *::before {
  width: 2em;
}
.g-list-decimal > *:nth-last-child(n+100), .g-list-decimal > *:nth-last-child(n+100) ~ * {
  padding-left: 3em;
  text-indent: -3em;
}
.g-list-decimal > *:nth-last-child(n+100)::before, .g-list-decimal > *:nth-last-child(n+100) ~ *::before {
  width: 2.5em;
}
.g-list-none > * {
  padding-left: 0;
  margin-top: 0.4em;
  text-indent: 0;
}
.g-list-none > *:first-child {
  margin-top: 0;
}
.g-list-loose > *:nth-of-type(n+2) {
  margin-top: 1.5em;
}


.g-loading {
  position: fixed;
  z-index: 14;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.2s;
  visibility: hidden;
}
html[data-states~=loading] .g-loading {
  opacity: 1;
  visibility: visible;
}
.g-loading_el {
  position: relative;
  margin-top: -2em;
  animation-delay: -0.16s;
  color: #fff;
  font-size: 10px;
  text-indent: -9999em;
  transform: translateZ(0);
}
.g-loading_el, .g-loading_el::before, .g-loading_el::after {
  width: 2em;
  height: 2em;
  animation: g-loading 1.8s infinite ease-in-out;
  animation-fill-mode: both;
  border-radius: 50%;
}
.g-loading_el::before, .g-loading_el::after {
  position: absolute;
  top: 0;
  content: "";
}
.g-loading_el::before {
  left: -3em;
  animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.g-loading_el::after {
  left: 3em;
}
@keyframes g-loading {
  0%, 80%, 100% {
    box-shadow: 0 2em 0 -1em;
  }
  40% {
    box-shadow: 0 2em 0 0;
  }
}


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

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

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

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

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

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

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

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

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

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

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


.g-media {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
}
.g-media .g-media_head {
  padding-right: 50px;
  grid-column: 1/2;
  grid-row: 1/3;
}
.g-media .g-media_head a {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 100%;
}
.g-media .g-media_head img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-media .g-media_body {
  grid-column: 2/3;
  grid-row: 1/2;
}
.g-media .g-media_foot {
  padding-top: 10px;
  grid-column: 2/3;
  grid-row: 2/3;
}
.g-media .g-media_h {
  margin-bottom: 0.5em;
  font-size: 1.6rem;
  font-weight: 600;
}
.g-media .g-media_head {
  width: 230px;
}
.g-media-sm .g-media_head {
  width: 120px;
}
.g-media-lg .g-media_head {
  width: 220px;
}
.g-media-row {
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
}
.g-media-row .g-media_head {
  grid-row: 1/2;
}
.g-media-row .g-media_foot {
  padding-top: 0;
  padding-left: 20px;
  grid-column: 3/4;
  grid-row: 1/2;
}


.g-menuBtn {
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
}
.g-menuBtn[aria-expanded=true] .g-menuBtn_i::before {
  bottom: 0;
  transform: rotate(135deg);
}
.g-menuBtn[aria-expanded=true] .g-menuBtn_i::after {
  top: 0;
  transform: rotate(-135deg);
}
.g-menuBtn[aria-expanded=true] .g-menuBtn_i span {
  opacity: 0;
}
.g-menuBtn .g-menuBtn_i {
  position: relative;
  display: block;
  width: 32px;
  height: 20px;
  margin: 5px 0;
}
.g-menuBtn .g-menuBtn_i::before, .g-menuBtn .g-menuBtn_i::after,
.g-menuBtn .g-menuBtn_i span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  margin: auto;
  background-color: #323232;
  content: "";
  transition: transform 0.2s, opacity 0.2s;
}
.g-menuBtn .g-menuBtn_i::before {
  top: 0;
}
.g-menuBtn .g-menuBtn_i::after {
  bottom: 0;
}
.g-menuBtn .g-menuBtn_i span {
  top: 0;
  bottom: 0;
}


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

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

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

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

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

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

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

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

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

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

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


.g-modal {
  position: fixed;
  z-index: 12;
  top: 0;
  left: 0;
  display: flex;
  overflow: auto;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.g-modal[aria-hidden=true] {
  visibility: hidden;
}
.g-modal_backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.2s;
}
.g-modal[aria-hidden=true] .g-modal_backdrop {
  opacity: 0;
}
.g-modal_close {
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
}
.g-modal_closeInside {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  width: 30px;
  height: 30px;
  background: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.g-modal_closeOutside {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  display: none;
  width: 70px;
  height: 55px;
  flex-direction: column;
  background: #fff;
}
.g-modal_closeOutside::before, .g-modal_closeOutside::after {
  display: block;
  width: 40px;
  height: 1px;
  margin: 0;
  background-color: #333;
  content: "";
  transition: transform 0.2s;
}
.g-modal_closeOutside::before {
  transform: rotate(30deg);
}
.g-modal_closeOutside::after {
  transform: translateY(-1px) rotate(-30deg);
}
.g-modal_spacer {
  flex-grow: 1;
}
.g-modal_content {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding: 15px;
  background-color: #fff;
  box-shadow: none;
  transition: opacity 0.2s, margin-top 0.2s;
}
.g-modal[aria-hidden=true] .g-modal_content {
  margin-top: -50px;
  opacity: 0;
}
html[data-states~=no-close] .g-modal_close {
  display: none;
}
html[data-states~=cover] .g-modal {
  padding: 0;
}
html[data-states~=cover] .g-modal_backdrop, html[data-states~=cover] .g-modal_spacer {
  display: none;
}
html[data-states~=cover] .g-modal_closeInside {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #333;
}
html[data-states~=cover] .g-modal_content {
  max-width: none;
  height: 100%;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
html[data-states~=cover] .g-modal [role=dialog] {
  min-height: 100%;
  padding: 15px;
}


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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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


.g-nowrap {
  white-space: nowrap !important;
}
.g-nowrap-not {
  white-space: normal !important;
}


.g-overflow-h {
  overflow: hidden !important;
}


.g-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.g-pagination li {
  margin: 0 3px;
}
.g-pagination a,
.g-pagination span {
  display: flex;
  width: 34px;
  height: 34px;
  box-sizing: content-box;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid #e5e5e5;
  color: inherit;
  font-size: 1.4rem;
  text-decoration: none !important;
}
.g-pagination a[aria-current=page],
.g-pagination span[aria-current=page] {
  border-bottom-color: #333;
  font-weight: 600;
}
.g-pagination span {
  background-color: transparent;
}
.g-pagination_prev a, .g-pagination_next a {
  border-bottom-color: transparent;
  font-size: 1.2rem;
}


.g-searchInput {
  position: relative;
}
.g-searchInput_input {
  padding-right: 55px;
}
.g-searchInput_input[data-input-value=""] ~ .g-searchInput_reset {
  display: none;
}
.g-searchInput_input[data-input-value]:not([data-input-value=""]) {
  background-color: #fff;
}
.g-searchInput_submit, .g-searchInput_reset {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  color: #999;
  cursor: pointer;
}
.g-searchInput_submit {
  right: 0;
  width: 34px;
  font-size: 2rem;
}
.g-searchInput_reset {
  right: 30px;
  width: 22px;
  font-size: 1.2rem;
}


.g-section {
  margin-top: 35px;
}
.g-section-border {
  border-top: 1px solid #dcdcdc;
}


.g-select {
  position: relative;
  z-index: 1;
  width: 200px;
}
.g-select_btn {
  position: relative;
  width: 100%;
  padding: 10px 20px;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: #e81b45;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.g-select_btn[aria-expanded=true] .g-select_i {
  transform: rotate(180deg);
}
.g-select_i {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  transition: transform 0.2s;
}
.g-select_region {
  position: relative;
}
.g-select_region[aria-hidden=false] .g-select_menu {
  position: absolute;
}
.g-select_menu {
  width: 100%;
  background-color: #fff;
}
.g-select_menu li {
  border: 1px solid #dcdcdc;
  margin-bottom: -1px;
}
.g-select_menu a {
  display: block;
  padding: 5px 15px;
}


.g-similar {
  position: relative;
  z-index: 0;
  height: 0;
  padding-bottom: 56.25%;
  /*
  &-sample {
    padding-bottom: 80.357142857%;
  }
  */
}
.g-similar_el {
  position: absolute;
  width: 100%;
  height: 100%;
}


.g-slider {
  display: flex;
  align-items: center;
}
.g-slider span {
  width: 42px;
  flex-shrink: 0;
  white-space: nowrap;
}
.g-slider span:first-child {
  text-align: right;
}
.g-slider_input {
  position: relative;
  height: 17px;
  flex: 1;
  margin: 0 5px;
}
.g-slider_input::before, .g-slider_input::after {
  position: absolute;
  top: 6px;
  display: block;
  height: 5px;
  background-color: #f5f5f5;
  border-radius: 5px;
  content: "";
}
.g-slider_input::before {
  left: 0;
  width: 25px;
}
.g-slider_input::after {
  right: 0;
  width: calc(100% - 30px);
}
.g-slider_input input {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 17px;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  cursor: pointer;
  outline: none;
}
.g-slider_input input:focus {
  outline: none;
}
.g-slider_input input::-webkit-slider-thumb {
  width: 25px;
  height: 17px;
  -webkit-appearance: none;
          appearance: none;
  background: #e81b45;
  border-radius: 17px;
}
.g-slider_input input::-moz-range-thumb {
  width: 25px;
  height: 17px;
  border: 0;
  background-color: #e81b45;
  border-radius: 17px;
}
.g-slider_input input::-moz-focus-outer {
  border: 0;
}


.g-sns {
  display: flex;
  justify-content: center;
}
.g-sns_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}
html[data-states~=no-touch] .g-sns_btn:hover {
  text-decoration: none;
}
.g-sns_twitter {
  background-color: #1da1f2;
}
html[data-states~=no-touch] .g-sns_twitter:hover {
  background-color: rgba(29, 161, 242, 0.7);
}
.g-sns_facebook {
  background-color: #1877f2;
}
html[data-states~=no-touch] .g-sns_facebook:hover {
  background-color: rgba(24, 119, 242, 0.7);
}
.g-sns_line {
  background-color: #00b900;
}
html[data-states~=no-touch] .g-sns_line:hover {
  background-color: rgba(0, 185, 0, 0.7);
}
.g-sns-circle .g-sns_btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.g-sns-circle li:nth-child(n+2) {
  margin-left: 30px;
}
.g-sns-circle .g-i-twitter {
  font-size: 2.3rem;
}
.g-sns-circle .g-i-facebook {
  font-size: 3.2rem;
  transform: translateY(4px);
}
.g-sns-circle .g-i-line {
  font-size: 2.5rem;
}
.g-sns-square .g-sns_btn {
  width: 100%;
  height: 30px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.33;
  text-align: left;
}
.g-sns-square li:nth-child(n+2) {
  margin-left: 10px;
}
.g-sns-square .g-i {
  margin-right: 10px;
}
.g-sns-square .g-i-twitter {
  font-size: 1.5rem;
}
.g-sns-square .g-i-facebook {
  font-size: 1.4rem;
}
.g-sns-square .g-i-line {
  font-size: 2rem;
}


.g-stack {
  margin-top: -15px;
}
.g-stack > * {
  margin-top: 15px !important;
}
.g-stack-xs {
  margin-top: -5px;
}
.g-stack-xs > * {
  margin-top: 5px !important;
}
.g-stack-sm {
  margin-top: -10px;
}
.g-stack-sm > * {
  margin-top: 10px !important;
}
.g-stack-lg {
  margin-top: -20px;
}
.g-stack-lg > * {
  margin-top: 20px !important;
}
.g-stack-xl {
  margin-top: -30px;
}
.g-stack-xl > * {
  margin-top: 30px !important;
}


.g-steps {
  counter-reset: steps;
}
.g-steps_el {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.g-steps_item {
  position: relative;
  display: flex;
  height: 3em;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 15px;
  margin: 5px 0;
  background-color: #333;
  color: #fff;
}
.g-steps_item:nth-child(n+2) {
  margin-left: 20px;
}
.g-steps_item::before {
  margin-right: 10px;
  content: "STEP\a" counter(steps);
  counter-increment: steps;
  line-height: 1.2;
  text-align: center;
  white-space: pre;
}
.g-steps_item::after {
  position: absolute;
  right: -15px;
  width: 0;
  height: 0;
  border-width: 1.5em 0 1.5em 15px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
  content: "";
}
.g-steps_item[aria-current=true] {
  background-color: #e81b45;
  color: #fff;
}
.g-steps_item[aria-current=true]::after {
  border-color: transparent transparent transparent #e81b45;
}
.g-steps_item[aria-current=true] ~ li {
  background-color: #ddd;
  color: inherit;
}
.g-steps_item[aria-current=true] ~ li::after {
  border-color: transparent transparent transparent #ddd;
}
.g-steps_item:last-child {
  padding: 0 15px;
}
.g-steps_item:last-child::after {
  content: none;
}


.g-table .g-table_el {
  width: 100%;
  border-bottom: 2px solid #dcdcdc;
  border-left: 2px solid #dcdcdc;
  border-spacing: 0;
}
.g-table .g-table_th,
.g-table .g-table_td {
  padding: 15px 20px;
}
.g-table .g-table_th {
  border-right: 2px solid #fff;
  background-color: #999;
}
.g-table .g-table_th:last-child {
  border-right-color: #dcdcdc;
}
.g-table .g-table_td {
  border-right: 2px solid #dcdcdc;
  background-color: #fff;
}
.g-table .g-table_tr:nth-child(odd) .g-table_td {
  background-color: #ccc;
}
.g-table-scroll {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}
.g-table-scroll .g-table_wrapper {
  float: left;
}
.g-table-scroll .g-table_el {
  white-space: nowrap;
}

.g-textBlock {
  line-height: 1.7;
}
.g-textBlock + .g-textBlock {
  margin-top: 1.5em;
}


.g-textBtn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  cursor: pointer;
}
.g-textBtn:disabled, .g-textBtn[aria-disabled=true] {
  color: transparent;
  pointer-events: none;
}
html[data-states~=no-touch] .g-textBtn:hover {
  text-decoration: underline;
}
.g-textBtn .g-textBtn_i:first-child {
  margin-right: 0.5em;
}
.g-textBtn .g-textBtn_i:last-child {
  margin-left: 0.5em;
}


.g-textarea {
  display: block;
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #dcdcdc;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 5px;
  color: #333;
  resize: vertical;
  text-align: left;
}
.g-textarea:disabled, .g-textarea[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
.g-textarea[aria-invalid=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
}
.g-textarea[data-input-value]:not([data-input-value=""]) {
  background-color: #fff;
}
.g-textarea[cols="1"] {
  max-width: calc(1.3em * 1);
}
.g-textarea[cols="2"] {
  max-width: calc(1.3em * 2);
}
.g-textarea[cols="3"] {
  max-width: calc(1.3em * 3);
}
.g-textarea[cols="4"] {
  max-width: calc(1.3em * 4);
}
.g-textarea[cols="5"] {
  max-width: calc(1.3em * 5);
}
.g-textarea[cols="6"] {
  max-width: calc(1.3em * 6);
}
.g-textarea[cols="7"] {
  max-width: calc(1.3em * 7);
}
.g-textarea[cols="8"] {
  max-width: calc(1.3em * 8);
}
.g-textarea[cols="9"] {
  max-width: calc(1.3em * 9);
}
.g-textarea[cols="10"] {
  max-width: calc(1.3em * 10);
}
.g-textarea[cols="11"] {
  max-width: calc(1.3em * 11);
}
.g-textarea[cols="12"] {
  max-width: calc(1.3em * 12);
}
.g-textarea[cols="13"] {
  max-width: calc(1.3em * 13);
}
.g-textarea[cols="14"] {
  max-width: calc(1.3em * 14);
}
.g-textarea[cols="15"] {
  max-width: calc(1.3em * 15);
}
.g-textarea[cols="16"] {
  max-width: calc(1.3em * 16);
}
.g-textarea[cols="17"] {
  max-width: calc(1.3em * 17);
}
.g-textarea[cols="18"] {
  max-width: calc(1.3em * 18);
}
.g-textarea[cols="19"] {
  max-width: calc(1.3em * 19);
}
.g-textarea[cols="20"] {
  max-width: calc(1.3em * 20);
}
.g-textarea[cols="21"] {
  max-width: calc(1.3em * 21);
}
.g-textarea[cols="22"] {
  max-width: calc(1.3em * 22);
}
.g-textarea[cols="23"] {
  max-width: calc(1.3em * 23);
}
.g-textarea[cols="24"] {
  max-width: calc(1.3em * 24);
}
.g-textarea[cols="25"] {
  max-width: calc(1.3em * 25);
}
.g-textarea[cols="26"] {
  max-width: calc(1.3em * 26);
}
.g-textarea[cols="27"] {
  max-width: calc(1.3em * 27);
}
.g-textarea[cols="28"] {
  max-width: calc(1.3em * 28);
}
.g-textarea[cols="29"] {
  max-width: calc(1.3em * 29);
}
.g-textarea[cols="30"] {
  max-width: calc(1.3em * 30);
}


.g-toggleGroup {
  display: flex;
}
.g-toggleGroup .g-toggleGroup_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  margin: 0 2.5px;
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 5px;
  color: #e81b45;
  cursor: pointer;
}
.g-toggleGroup .g-toggleGroup_btn:disabled, .g-toggleGroup .g-toggleGroup_btn[aria-disabled=true] {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.5);
  color: transparent;
  pointer-events: none;
}
.g-toggleGroup .g-toggleGroup_btn[aria-pressed=true] {
  background-color: #e81b45;
  color: #fff;
}
.g-toggleGroup .g-toggleGroup_btn {
  width: 35px;
  height: 35px;
}
.g-toggleGroup .g-i {
  font-size: 2.1rem;
}


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


.g-zoomBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  cursor: pointer;
}
.g-zoomBtn .g-zoomBtn_img {
  transition: opacity 0.2s;
}
html[data-states~=no-touch] .g-zoomBtn .g-zoomBtn_img:hover {
  opacity: 0.7;
}
.g-zoomBtn .g-zoomBtn_i {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  font-size: 2rem;
  pointer-events: none;
}

.g-copyright {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: center;
}

.g-footer {
  padding: 48px 0;
  border-top: 1px solid rgb(221, 221, 221);
  margin-top: 48px;
  background-color: rgb(247, 247, 247);
}
.g-footer_link {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
}
.g-footer_link li::after {
  margin: 0 0.7em;
  color: #ccc;
  content: "|";
}
.g-footer_link li:last-child::after {
  content: none;
}
.g-footer_link a {
  color: #000;
}

.h1 {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 2.6rem;
}
.h1 img {
  position: absolute;
  bottom: 0;
  width: 2560px;
  max-width: none;
  height: 60px;
  transform: translateX(-180px);
}

.gNav {
  position: sticky;
  z-index: 10;
  top: -1px;
  padding-bottom: 1px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.gNav ul {
  display: flex;
  justify-content: center;
}
.gNav li {
  margin: 10px 10px 0;
}
.gNav i {
  font-size: 2.6rem;
}
.gNav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  text-decoration: none !important;
}
.gNav a[aria-current=page] {
  border-bottom: 2px solid #000;
  color: #000;
}
html[data-states~=no-touch] .gNav a:hover {
  color: #000;
}
.gNav span {
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

.heading {
  margin: 48px 0 20px;
  font-size: 3.2rem;
  line-height: 1.2;
}

@media (min-width: 769px) {
  /**/
  .g-accordionBtn--md {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border: 1px solid #dcdcdc;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    color: #323232;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-accordionBtn--md:disabled, .g-accordionBtn--md[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-accordionBtn--md:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-accordionBtn--md:hover .g-accordionBtn_i::before, html[data-states~=no-touch] .g-accordionBtn--md:hover .g-accordionBtn_i::after {
    background-color: #fff;
  }
  .g-accordionBtn--md .g-accordionBtn_i {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-left: 0.5em;
  }
  .g-accordionBtn--md .g-accordionBtn_i::before, .g-accordionBtn--md .g-accordionBtn_i::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #e81b45;
    content: "";
    transition: transform 0.2s;
  }
  .g-accordionBtn--md .g-accordionBtn_i::after {
    transform: rotate(90deg);
  }
  .g-accordionBtn--md .g-accordionBtn_icon {
    flex-shrink: 0;
    margin-left: 1em;
    font-size: 0.8em;
    transition: transform 0.2s;
  }
  .g-accordionBtn--md[aria-expanded=true] .g-accordionBtn_label::before, .g-accordionBtn--md[data-clamped=false] .g-accordionBtn_label::before {
    content: attr(data-expanded);
  }
  .g-accordionBtn--md[aria-expanded=true] .g-accordionBtn_i::after, .g-accordionBtn--md[data-clamped=false] .g-accordionBtn_i::after {
    transform: rotate(0deg);
  }
  .g-accordionBtn--md[aria-expanded=true] .g-accordionBtn_icon, .g-accordionBtn--md[data-clamped=false] .g-accordionBtn_icon {
    transform: rotate(180deg);
  }
  .g-accordionBtn--md[aria-expanded=false] .g-accordionBtn_label::before, .g-accordionBtn--md[data-clamped=true] .g-accordionBtn_label::before {
    content: attr(data-collapsed);
  }
  .g-accordionBtn--md[data-clamped]:disabled, .g-accordionBtn--md[data-clamped][aria-disabled=true] {
    visibility: hidden;
  }
  .g-align-l--md {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .g-align-c--md {
    justify-content: center !important;
    text-align: center !important;
  }
  .g-align-r--md {
    justify-content: flex-end !important;
    text-align: right !important;
  }
  .g-align-t--md {
    align-items: stretch !important;
    vertical-align: top !important;
  }
  .g-align-m--md {
    align-items: center !important;
    vertical-align: middle !important;
  }
  .g-align-b--md {
    align-items: flex-end !important;
    vertical-align: bottom !important;
  }
  .g-align-l-self--md {
    justify-self: flex-start !important;
  }
  .g-align-c-self--md {
    justify-self: center !important;
  }
  .g-align-r-self--md {
    justify-self: flex-end !important;
  }
  .g-align-t-self--md {
    align-self: stretch !important;
  }
  .g-align-m-self--md {
    align-self: center !important;
  }
  .g-align-b-self--md {
    align-self: flex-end !important;
  }
  .g-avatar--md {
    overflow: hidden;
    width: 100px;
    height: 100px;
  }
  .g-avatar--md img {
    width: 100%;
    height: auto;
  }
  .g-avatar-sm--md {
    width: 50px;
    height: 50px;
  }
  .g-avatar-circle--md {
    border-radius: 100%;
  }
  .g-avatar-square--md {
    border-radius: 5px;
  }
  .g-back-to-top {
    right: 30px;
    bottom: 30px;
  }
  .g-back-to-top a {
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .g-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .g-bg--md {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .g-bg-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .g-bg-sm--md {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .g-bg-gray--md {
    background-color: #f5f5f5;
  }
  .g-blockMenu--md {
    display: flex;
    flex-wrap: wrap;
  }
  .g-blockMenu--md .g-blockMenu_el {
    position: relative;
  }
  .g-blockMenu--md .g-blockMenu_smEl::before {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    content: "";
  }
  .g-blockMenu--md .g-blockMenu_smEl .g-blockMenu_box {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
  }
  .g-blockMenu--md .g-blockMenu_box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
    color: #fff;
  }
  .g-blockMenu--md .g-blockMenu_box[href] {
    color: #e81b45;
    transition: background-color 0.2s;
  }
  html[data-states~=no-touch] .g-blockMenu--md .g-blockMenu_box[href]:hover {
    background-color: rgba(245, 245, 245, 0.2);
    text-decoration: none;
  }
  .g-blockMenu--md .g-blockMenu_img {
    width: 50%;
  }
  .g-blockMenu--md .g-blockMenu_data {
    display: block;
    flex: 1;
    padding: 10px;
    text-align: center;
  }
  .g-blockMenu {
    margin: -10px;
  }
  .g-blockMenu .g-blockMenu_el {
    width: calc((100% - 40px) / 2);
    margin: 10px;
  }
  .g-blockMenu .g-blockMenu_smEl {
    width: calc((100% - 80px) / 4);
  }
  .g-blockMenu .g-blockMenu_box {
    font-size: 1.8rem;
  }
  .g-blockMenu .g-blockMenu_img {
    max-width: 240px;
  }
  .g-blockMenu--md {
    margin: -10px;
  }
  .g-blockMenu--md .g-blockMenu_el {
    width: calc((100% - 40px) / 2);
    margin: 10px;
  }
  .g-blockMenu--md .g-blockMenu_smEl {
    width: calc((100% - 80px) / 4);
  }
  .g-blockMenu--md .g-blockMenu_box {
    font-size: 1.8rem;
  }
  .g-blockMenu--md .g-blockMenu_img {
    max-width: 240px;
  }
  .g-bold--md {
    font-weight: 600 !important;
  }
  .g-bold-not--md {
    font-weight: normal !important;
  }
  .g-box {
    min-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }
  .g-box--md {
    min-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }
  .g-box-neg {
    margin-right: -50px;
    margin-left: -50px;
  }
  .g-box-neg--md {
    margin-right: -50px;
    margin-left: -50px;
  }
  .g-breadcrumb {
    margin: 10px 0 50px;
    font-size: 1.2rem;
  }
  .g-breadcrumb [aria-current=page] {
    white-space: normal;
  }
  .g-btnGroup--md {
    margin-top: 40px;
  }
  .g-btnGroup--md .g-btnGroup_inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .g-btnGroup-sm--md {
    margin-top: 20px;
  }
  .g-btnGroup-h--md .g-btnGroup_inner {
    position: relative;
    margin: -10px;
  }
  .g-btnGroup-h--md .g-btnGroup_inner > * {
    margin: 10px;
  }
  .g-btnGroup-h--md .g-btnGroup_l,
.g-btnGroup-h--md .g-btnGroup_r {
    position: absolute;
    top: 10px;
    margin: 0;
  }
  .g-btnGroup-h--md .g-btnGroup_l {
    left: 10px;
  }
  .g-btnGroup-h--md .g-btnGroup_r {
    right: 10px;
  }
  .g-btnGroup-h .g-btnGroup_inner > * {
    width: 100%;
    max-width: 340px;
  }
  .g-btnGroup-h--md .g-btnGroup_inner > * {
    width: 100%;
    max-width: 340px;
  }
  .g-btnGroup-v--md .g-btnGroup_inner {
    flex-direction: column;
    margin: -10px 0;
  }
  .g-btnGroup-v--md .g-btnGroup_inner > * {
    width: 100%;
    margin: 10px 0;
  }
  .g-btnGroup-v--md .g-btnGroup_l {
    order: -1;
  }
  .g-btnGroup-v--md .g-btnGroup_r {
    order: 1;
  }
  .g-btnGroup-rv--md.g-btnGroup-h--md .g-btnGroup_inner, .g-btnGroup-rv--md.g-btnGroup-h .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-h--md .g-btnGroup_inner {
    flex-direction: row-reverse;
  }
  .g-btnGroup-rv--md.g-btnGroup-h--md .g-btnGroup_l, .g-btnGroup-rv--md.g-btnGroup-h .g-btnGroup_l, .g-btnGroup-rv.g-btnGroup-h--md .g-btnGroup_l {
    right: 10px;
    left: auto;
  }
  .g-btnGroup-rv--md.g-btnGroup-h--md .g-btnGroup_r, .g-btnGroup-rv--md.g-btnGroup-h .g-btnGroup_r, .g-btnGroup-rv.g-btnGroup-h--md .g-btnGroup_r {
    right: auto;
    left: 10px;
  }
  .g-btnGroup-rv--md.g-btnGroup-v--md .g-btnGroup_inner, .g-btnGroup-rv--md.g-btnGroup-v .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-v--md .g-btnGroup_inner {
    flex-direction: column-reverse;
  }
  .g-btn--md {
    display: inline-block;
    padding: 0;
    border: 1px solid transparent;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-btn--md:disabled, .g-btn--md[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-btn--md:hover {
    text-decoration: none;
  }
  .g-btn--md .g-btn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: inherit;
    text-decoration: none !important;
  }
  .g-btn--md .g-btn_i:first-child {
    margin-right: 0.5em;
  }
  .g-btn--md .g-btn_i:last-child {
    margin-left: 0.5em;
  }
  .g-btn {
    width: 100%;
    max-width: 270px;
  }
  .g-btn--md {
    width: 100%;
    max-width: 270px;
  }
  .g-btn-def--md {
    border-color: #aaa;
    background-color: #aaa;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-def--md:hover {
    border-color: transparent;
    background-color: rgba(170, 170, 170, 0.7);
  }
  .g-btn-def {
    font-size: 1.6rem;
  }
  .g-btn-def--md {
    font-size: 1.6rem;
  }
  .g-btn-primary--md {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-primary--md:hover {
    border-color: transparent;
    background-color: rgba(232, 27, 69, 0.7);
  }
  .g-btn-primary {
    font-size: 1.6rem;
  }
  .g-btn-primary--md {
    font-size: 1.6rem;
  }
  .g-btn-lg {
    font-size: 2rem;
  }
  .g-btn-lg .g-btn_inner {
    min-height: 50px;
  }
  .g-btn-lg--md {
    font-size: 2rem;
  }
  .g-btn-lg--md .g-btn_inner {
    min-height: 50px;
  }
  .g-butterfly--md {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
  }
  .g-butterfly--md > * {
    margin: 10px;
  }
  .g-butterfly--md > *:nth-child(2) {
    margin-left: auto;
  }
  .g-butterfly-nowrap--md {
    flex-wrap: nowrap;
  }
  .g-card--md {
    display: flex;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
  }
  .g-card--md .g-card_head {
    position: relative;
  }
  .g-card--md .g-card_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
    background-color: #333;
  }
  .g-card--md .g-card_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-card--md .g-card_body {
    flex: 1;
    font-weight: 600;
  }
  .g-card {
    padding: 10px 10px 15px;
  }
  .g-card .g-card_body {
    margin: 0.5em 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .g-card .g-card_foot {
    font-size: 1.4rem;
  }
  .g-card--md {
    padding: 10px 10px 15px;
  }
  .g-card--md .g-card_body {
    margin: 0.5em 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .g-card--md .g-card_foot {
    font-size: 1.4rem;
  }
  .g-checkable_el {
    margin-right: 0.4em;
  }
  .g-checkable [type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .g-checkable [type=checkbox] ~ .g-checkable_i {
    top: 6px;
    left: 4px;
    font-size: 1.2rem;
  }
  .g-clamp--md[data-clamping=true] {
    /* stylelint-disable */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* stylelint-enable */
  }
  .g-clearfix--md::before, .g-clearfix--md::after {
    display: table;
    content: "";
  }
  .g-clearfix--md::after {
    clear: both;
  }
  .g-clip--md {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
            clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }
  .g-column {
    padding: 20px 15px;
  }
  .g-column--md {
    padding: 20px 15px;
  }
  .g-column--md {
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
  }
  .g-column-sm {
    padding: 10px;
  }
  .g-column-sm--md {
    padding: 10px;
  }
  .g-column-alert--md {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
  }
  .g-container {
    width: 100%;
    max-width: 1100px;
    padding-right: 50px;
    padding-left: 50px;
    margin: auto;
  }
  .g-container--md {
    width: 100%;
    max-width: 1100px;
    padding-right: 50px;
    padding-left: 50px;
    margin: auto;
  }
  .g-display-f--md {
    display: flex !important;
  }
  .g-display-b--md {
    display: block !important;
  }
  .g-display-ib--md {
    display: inline-block !important;
  }
  .g-display-i--md {
    display: inline !important;
  }
  .g-display-h--md {
    visibility: hidden !important;
  }
  .g-display-v--md {
    visibility: visible !important;
  }
  .g-display-n--md {
    display: none !important;
  }
  .g-dl-h--md {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .g-dl-h--md .g-dl_h {
    padding-right: 20px;
    color: #7d7d7d;
    grid-column: 1/2;
    white-space: nowrap;
  }
  .g-dl-h--md .g-dl_body {
    grid-column: 2/3;
  }
  .g-dl-h--md .g-dl_data {
    display: block;
    padding: 5px 0;
  }
  .g-dl-h .g-dl_h {
    padding-right: 90px;
    font-size: 1.4rem;
  }
  .g-dl-h--md .g-dl_h {
    padding-right: 90px;
    font-size: 1.4rem;
  }
  .g-dl-v--md .g-dl_h {
    color: #7d7d7d;
  }
  .g-dl-v--md .g-dl_body + .g-dl_h {
    margin-top: 20px;
  }
  .g-dl-v--md .g-dl_data {
    display: block;
  }
  .g-dl-line--md.g-dl-h--md, .g-dl-line--md.g-dl-h, .g-dl-line.g-dl-h--md {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--md.g-dl-h--md .g-dl_h,
.g-dl-line--md.g-dl-h--md .g-dl_body, .g-dl-line--md.g-dl-h .g-dl_h,
.g-dl-line--md.g-dl-h .g-dl_body, .g-dl-line.g-dl-h--md .g-dl_h,
.g-dl-line.g-dl-h--md .g-dl_body {
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--md.g-dl-h--md .g-dl_data, .g-dl-line--md.g-dl-h .g-dl_data, .g-dl-line.g-dl-h--md .g-dl_data {
    padding: 20px 0;
  }
  .g-dl-line--md.g-dl-v--md, .g-dl-line--md.g-dl-v, .g-dl-line.g-dl-v--md {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--md.g-dl-v--md .g-dl_h, .g-dl-line--md.g-dl-v .g-dl_h, .g-dl-line.g-dl-v--md .g-dl_h {
    padding-top: 18px;
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--md.g-dl-v--md .g-dl_body + .g-dl_h, .g-dl-line--md.g-dl-v .g-dl_body + .g-dl_h, .g-dl-line.g-dl-v--md .g-dl_body + .g-dl_h {
    margin-top: 0;
  }
  .g-dl-line--md.g-dl-v--md .g-dl_body, .g-dl-line--md.g-dl-v .g-dl_body, .g-dl-line.g-dl-v--md .g-dl_body {
    padding-bottom: 18px;
  }
  .g-dl-line--md.g-dl-v--md .g-dl_data, .g-dl-line--md.g-dl-v .g-dl_data, .g-dl-line.g-dl-v--md .g-dl_data {
    padding: 0;
  }
  .g-dl-noTopLine--md.g-dl-h--md .g-dl_h:first-child,
.g-dl-noTopLine--md.g-dl-h--md .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine--md.g-dl-h .g-dl_h:first-child,
.g-dl-noTopLine--md.g-dl-h .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine.g-dl-h--md .g-dl_h:first-child,
.g-dl-noTopLine.g-dl-h--md .g-dl_h:first-child + .g-dl_body {
    border-top-color: transparent;
  }
  .g-dl-noTopLine--md.g-dl-v--md .g-dl_h:first-child, .g-dl-noTopLine--md.g-dl-v .g-dl_h:first-child, .g-dl-noTopLine.g-dl-v--md .g-dl_h:first-child {
    border-top-color: transparent;
  }
  .g-dl-news--md.g-dl-h--md .g-dl_h, .g-dl-news--md.g-dl-h .g-dl_h, .g-dl-news.g-dl-h--md .g-dl_h {
    display: flex;
    align-items: flex-start;
    padding-right: 35px;
  }
  .g-dl-news--md.g-dl-h--md .g-dl_h .g-label, .g-dl-news--md.g-dl-h .g-dl_h .g-label, .g-dl-news.g-dl-h--md .g-dl_h .g-label {
    width: 95px;
    margin: 0 20px 0 0;
    text-align: center;
  }
  .g-dl-news--md.g-dl-h--md .g-dl_data, .g-dl-news--md.g-dl-h .g-dl_data, .g-dl-news.g-dl-h--md .g-dl_data {
    display: flex;
    align-items: center;
  }
  .g-dl-news--md.g-dl-v--md .g-dl_h, .g-dl-news--md.g-dl-v .g-dl_h, .g-dl-news.g-dl-v--md .g-dl_h {
    padding-bottom: 5px;
  }
  .g-dl-news--md.g-dl-v--md .g-dl_h .g-label, .g-dl-news--md.g-dl-v .g-dl_h .g-label, .g-dl-news.g-dl-v--md .g-dl_h .g-label {
    width: 95px;
    margin: 0 10px 0 0;
    text-align: center;
  }
  .g-dl-plain--md .g-dl_h {
    padding-top: 5px;
    clear: left;
    float: left;
    font-weight: 600;
  }
  .g-dl-plain--md .g-dl_body {
    padding-top: 5px;
  }
  .g-float-l--md {
    float: left !important;
  }
  .g-float-r--md {
    float: right !important;
  }
  .g-float-n--md {
    float: none !important;
  }
  .g-flow--md {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -2px -7px;
  }
  .g-flow--md > * {
    margin: 2px 7px;
  }
  .g-flow-xs--md {
    margin: -1px -2px;
  }
  .g-flow-xs--md > * {
    margin: 1px 2px;
  }
  .g-flow-sm--md {
    margin: -2px -4px;
  }
  .g-flow-sm--md > * {
    margin: 2px 4px;
  }
  .g-flow-lg--md {
    margin: -5px -10px;
  }
  .g-flow-lg--md > * {
    margin: 5px 10px;
  }
  .g-flow-xl--md {
    margin: -5px -20px;
  }
  .g-flow-xl--md > * {
    margin: 5px 20px;
  }
  .g-flow-nowrap--md {
    flex-wrap: nowrap;
  }
  .g-font-xs--md {
    font-size: 1rem;
  }
  .g-font-sm--md {
    font-size: 1.2rem;
  }
  .g-font-md--md {
    font-size: 1.4rem;
  }
  .g-font-lg--md {
    font-size: 1.6rem;
  }
  .g-font-xl--md {
    font-size: 1.8rem;
  }
  .g-foot--md {
    margin-top: 15px;
  }
  .g-foot-xs--md {
    margin-top: 5px;
  }
  .g-foot-sm--md {
    margin-top: 10px;
  }
  .g-foot-lg--md {
    margin-top: 20px;
  }
  .g-foot-xl--md {
    margin-top: 30px;
  }
  .g-full--md {
    position: relative;
    right: 50%;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
  }
  .g-fw--md {
    width: 100% !important;
  }
  .g-grid {
    margin: -5px -5px;
  }
  .g-grid > * {
    padding: 5px 5px;
  }
  .g-grid--md {
    margin: -5px -5px;
  }
  .g-grid--md > * {
    padding: 5px 5px;
  }
  .g-grid--md {
    display: flex;
    align-items: center;
  }
  .g-grid--md > * {
    flex: 1;
    background-clip: content-box;
  }
  .g-grid-1--md {
    flex-wrap: wrap;
  }
  .g-grid-1--md > * {
    width: 100%;
    flex: 0 auto;
  }
  .g-grid-2--md {
    flex-wrap: wrap;
  }
  .g-grid-2--md > * {
    width: 50%;
    flex: 0 auto;
  }
  .g-grid-3--md {
    flex-wrap: wrap;
  }
  .g-grid-3--md > * {
    width: 33.3333333333%;
    flex: 0 auto;
  }
  .g-grid-4--md {
    flex-wrap: wrap;
  }
  .g-grid-4--md > * {
    width: 25%;
    flex: 0 auto;
  }
  .g-grid-5--md {
    flex-wrap: wrap;
  }
  .g-grid-5--md > * {
    width: 20%;
    flex: 0 auto;
  }
  .g-grid-6--md {
    flex-wrap: wrap;
  }
  .g-grid-6--md > * {
    width: 16.6666666667%;
    flex: 0 auto;
  }
  .g-h-visual {
    height: 275px;
    font-size: 3.4rem;
  }
  .g-h-visual p {
    font-size: 1.6rem;
  }
  .g-h_author {
    right: 50px;
    bottom: 15px;
    font-size: 1.2rem;
  }
  .g-h-1, .g-h-1b {
    font-size: 3.2rem;
  }
  .g-h-1 p, .g-h-1b p {
    font-size: 1.6rem;
  }
  .g-h-1b {
    margin-bottom: 80px;
  }
  .g-h-2 {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .g-h-2 .g-h_extra {
    bottom: 6px;
  }
  .g-h-2 .g-accordionBtn {
    width: 34px;
    height: 34px;
    min-height: 34px;
    font-size: 2.5rem;
  }
  .g-h-2b {
    margin-bottom: 25px;
  }
  .g-h-2b .g-h_extra {
    right: 60px;
    bottom: 0;
  }
  .g-h-home {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
  .g-h-home .g-h_el span {
    margin-top: 10px;
  }
  .g-head--md {
    margin-bottom: 15px;
  }
  .g-head-xs--md {
    margin-bottom: 5px;
  }
  .g-head-sm--md {
    margin-bottom: 10px;
  }
  .g-head-lg--md {
    margin-bottom: 20px;
  }
  .g-head-xl--md {
    margin-bottom: 30px;
  }
  .g-hr--md {
    display: block;
    height: 1px;
    border: 0;
    background-color: #dcdcdc;
  }
  .g-hr {
    margin: 30px 0;
  }
  .g-hr--md {
    margin: 30px 0;
  }
  .g-hr-sm {
    margin: 15px 0;
  }
  .g-hr-sm--md {
    margin: 15px 0;
  }
  .g-hr-thick--md {
    height: 2px;
  }
  .g-iconBtn--md {
    display: inline-block;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: inherit;
    font-size: 1.2rem;
    transition: background-color 0.2s, border-color 0.2s;
  }
  html[data-states~=no-touch] .g-iconBtn--md:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  .g-iconBtn--md .g-iconBtn_inner {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none !important;
  }
  .g-iconBtn--md:disabled, .g-iconBtn--md[aria-disabled=true] {
    cursor: default;
    opacity: 0.3;
    pointer-events: none;
  }
  .g-input {
    min-height: 48px;
    padding: 6px 20px;
  }
  .g-link--md {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    color: #e81b45;
  }
  .g-link--md .g-i {
    font-size: 0.9em;
  }
  .g-link--md .g-i:first-child {
    margin-right: 0.5em;
  }
  .g-link--md .g-i:last-child {
    margin-left: 0.5em;
  }
  .g-link--md .g-i-arrow-r {
    font-size: 0.8em;
    transform: translateY(0.1em);
  }
  .g-link--md .g-i-blank {
    font-size: 0.7em;
    transform: translateY(0.1em);
  }
  .g-link-u--md {
    text-decoration: underline;
  }
  html[data-states~=no-touch] .g-link-u--md:hover {
    text-decoration: none;
  }
  .g-list--md {
    counter-reset: g-list;
  }
  .g-list--md > * {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .g-list--md > *::before {
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    counter-increment: g-list;
    text-indent: 0;
    white-space: nowrap;
  }
  .g-list--md > * * {
    text-indent: 0;
  }
  .g-list-note--md {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-note--md > * {
    margin-top: 0.5em;
  }
  .g-list-note--md > *:first-child {
    margin-top: 0;
  }
  .g-list-note--md > *::before {
    content: "※";
  }
  .g-list-ref--md {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-ref--md > * {
    padding-left: 2.5em;
    margin-top: 0.5em;
    text-indent: -2.5em;
  }
  .g-list-ref--md > *:first-child {
    margin-top: 0;
  }
  .g-list-ref--md > *::before {
    width: 2em;
    content: "※" counter(g-list, decimal);
  }
  .g-list-ref--md > *:nth-last-child(n+10), .g-list-ref--md > *:nth-last-child(n+10) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-ref--md > *:nth-last-child(n+10)::before, .g-list-ref--md > *:nth-last-child(n+10) ~ *::before {
    width: 2.5em;
  }
  .g-list-ref--md > *:nth-last-child(n+100), .g-list-ref--md > *:nth-last-child(n+100) ~ * {
    padding-left: 4em;
    text-indent: -4em;
  }
  .g-list-ref--md > *:nth-last-child(n+100)::before, .g-list-ref--md > *:nth-last-child(n+100) ~ *::before {
    width: 3.5em;
  }
  .g-list-disc--md > *::before {
    background: radial-gradient(circle at 0.5em 0.7em, currentColor 3px, transparent 3px);
    content: "​";
  }
  .g-list-decimal--md > *::before {
    content: counter(g-list, decimal) ".";
    text-align: right;
  }
  .g-list-decimal--md > *:nth-last-child(n+10), .g-list-decimal--md > *:nth-last-child(n+10) ~ * {
    padding-left: 2.5em;
    text-indent: -2.5em;
  }
  .g-list-decimal--md > *:nth-last-child(n+10)::before, .g-list-decimal--md > *:nth-last-child(n+10) ~ *::before {
    width: 2em;
  }
  .g-list-decimal--md > *:nth-last-child(n+100), .g-list-decimal--md > *:nth-last-child(n+100) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-decimal--md > *:nth-last-child(n+100)::before, .g-list-decimal--md > *:nth-last-child(n+100) ~ *::before {
    width: 2.5em;
  }
  .g-list-none--md > * {
    padding-left: 0;
    margin-top: 0.4em;
    text-indent: 0;
  }
  .g-list-none--md > *:first-child {
    margin-top: 0;
  }
  .g-list-loose--md > *:nth-of-type(n+2) {
    margin-top: 1.5em;
  }
  .g-mb-0--md {
    margin-bottom: 0px !important;
  }
  .g-mb-5--md {
    margin-bottom: 5px !important;
  }
  .g-mb-10--md {
    margin-bottom: 10px !important;
  }
  .g-mb-15--md {
    margin-bottom: 15px !important;
  }
  .g-mb-20--md {
    margin-bottom: 20px !important;
  }
  .g-mb-25--md {
    margin-bottom: 25px !important;
  }
  .g-mb-30--md {
    margin-bottom: 30px !important;
  }
  .g-mb-35--md {
    margin-bottom: 35px !important;
  }
  .g-mb-40--md {
    margin-bottom: 40px !important;
  }
  .g-mb-45--md {
    margin-bottom: 45px !important;
  }
  .g-mb-50--md {
    margin-bottom: 50px !important;
  }
  .g-media--md {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
  }
  .g-media--md .g-media_head {
    padding-right: 50px;
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .g-media--md .g-media_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
  }
  .g-media--md .g-media_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-media--md .g-media_body {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .g-media--md .g-media_foot {
    padding-top: 10px;
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .g-media--md .g-media_h {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .g-media .g-media_head {
    width: 230px;
  }
  .g-media--md .g-media_head {
    width: 230px;
  }
  .g-media-sm .g-media_head {
    width: 170px;
  }
  .g-media-sm--md .g-media_head {
    width: 170px;
  }
  .g-media-lg .g-media_head {
    width: 320px;
  }
  .g-media-lg--md .g-media_head {
    width: 320px;
  }
  .g-media-row--md {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
  }
  .g-media-row--md .g-media_head {
    grid-row: 1/2;
  }
  .g-media-row--md .g-media_foot {
    padding-top: 0;
    padding-left: 20px;
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .g-menuBtn--md {
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
  }
  .g-menuBtn--md[aria-expanded=true] .g-menuBtn_i::before {
    bottom: 0;
    transform: rotate(135deg);
  }
  .g-menuBtn--md[aria-expanded=true] .g-menuBtn_i::after {
    top: 0;
    transform: rotate(-135deg);
  }
  .g-menuBtn--md[aria-expanded=true] .g-menuBtn_i span {
    opacity: 0;
  }
  .g-menuBtn--md .g-menuBtn_i {
    position: relative;
    display: block;
    width: 32px;
    height: 20px;
    margin: 5px 0;
  }
  .g-menuBtn--md .g-menuBtn_i::before, .g-menuBtn--md .g-menuBtn_i::after,
.g-menuBtn--md .g-menuBtn_i span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: #323232;
    content: "";
    transition: transform 0.2s, opacity 0.2s;
  }
  .g-menuBtn--md .g-menuBtn_i::before {
    top: 0;
  }
  .g-menuBtn--md .g-menuBtn_i::after {
    bottom: 0;
  }
  .g-menuBtn--md .g-menuBtn_i span {
    top: 0;
    bottom: 0;
  }
  .g-ml-0--md {
    margin-left: 0px !important;
  }
  .g-ml-5--md {
    margin-left: 5px !important;
  }
  .g-ml-10--md {
    margin-left: 10px !important;
  }
  .g-ml-15--md {
    margin-left: 15px !important;
  }
  .g-ml-20--md {
    margin-left: 20px !important;
  }
  .g-ml-25--md {
    margin-left: 25px !important;
  }
  .g-ml-30--md {
    margin-left: 30px !important;
  }
  .g-ml-35--md {
    margin-left: 35px !important;
  }
  .g-ml-40--md {
    margin-left: 40px !important;
  }
  .g-ml-45--md {
    margin-left: 45px !important;
  }
  .g-ml-50--md {
    margin-left: 50px !important;
  }
  .g-modal {
    padding: 40px 80px;
  }
  .g-modal_closeInside {
    top: -50px;
    width: 40px;
    height: 40px;
    font-size: 3rem;
  }
  .g-modal_content {
    max-width: 1280px;
    padding: 20px;
  }
  .g-mr-0--md {
    margin-right: 0px !important;
  }
  .g-mr-5--md {
    margin-right: 5px !important;
  }
  .g-mr-10--md {
    margin-right: 10px !important;
  }
  .g-mr-15--md {
    margin-right: 15px !important;
  }
  .g-mr-20--md {
    margin-right: 20px !important;
  }
  .g-mr-25--md {
    margin-right: 25px !important;
  }
  .g-mr-30--md {
    margin-right: 30px !important;
  }
  .g-mr-35--md {
    margin-right: 35px !important;
  }
  .g-mr-40--md {
    margin-right: 40px !important;
  }
  .g-mr-45--md {
    margin-right: 45px !important;
  }
  .g-mr-50--md {
    margin-right: 50px !important;
  }
  .g-mt-0--md {
    margin-top: 0px !important;
  }
  .g-mt-5--md {
    margin-top: 5px !important;
  }
  .g-mt-10--md {
    margin-top: 10px !important;
  }
  .g-mt-15--md {
    margin-top: 15px !important;
  }
  .g-mt-20--md {
    margin-top: 20px !important;
  }
  .g-mt-25--md {
    margin-top: 25px !important;
  }
  .g-mt-30--md {
    margin-top: 30px !important;
  }
  .g-mt-35--md {
    margin-top: 35px !important;
  }
  .g-mt-40--md {
    margin-top: 40px !important;
  }
  .g-mt-45--md {
    margin-top: 45px !important;
  }
  .g-mt-50--md {
    margin-top: 50px !important;
  }
  .g-nowrap--md {
    white-space: nowrap !important;
  }
  .g-nowrap-not--md {
    white-space: normal !important;
  }
  .g-overflow-h--md {
    overflow: hidden !important;
  }
  .g-pagination {
    margin-top: 0;
  }
  .g-pagination a,
.g-pagination span {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }
  .g-pagination_prev a, .g-pagination_next a {
    font-size: 1.2rem;
  }
  .g-section {
    margin-top: 75px;
  }
  .g-section--md {
    margin-top: 75px;
  }
  .g-slider {
    flex: 1;
  }
  .g-slider_input {
    margin: 0 15px;
  }
  .g-slider_input::before {
    width: 30px;
  }
  .g-slider_input::after {
    width: calc(100% - 35px);
  }
  .g-slider_input input::-webkit-slider-thumb {
    width: 30px;
  }
  .g-slider span {
    width: 50px;
  }
  .g-sns-square .g-sns_btn {
    width: 100px;
  }
  .g-sns-square li:nth-child(n+2) {
    margin-left: 10px;
  }
  .g-stack--md {
    margin-top: -15px;
  }
  .g-stack--md > * {
    margin-top: 15px !important;
  }
  .g-stack-xs--md {
    margin-top: -5px;
  }
  .g-stack-xs--md > * {
    margin-top: 5px !important;
  }
  .g-stack-sm--md {
    margin-top: -10px;
  }
  .g-stack-sm--md > * {
    margin-top: 10px !important;
  }
  .g-stack-lg--md {
    margin-top: -20px;
  }
  .g-stack-lg--md > * {
    margin-top: 20px !important;
  }
  .g-stack-xl--md {
    margin-top: -30px;
  }
  .g-stack-xl--md > * {
    margin-top: 30px !important;
  }
  .g-table--md .g-table_el {
    width: 100%;
    border-bottom: 2px solid #dcdcdc;
    border-left: 2px solid #dcdcdc;
    border-spacing: 0;
  }
  .g-table--md .g-table_th,
.g-table--md .g-table_td {
    padding: 15px 20px;
  }
  .g-table--md .g-table_th {
    border-right: 2px solid #fff;
    background-color: #999;
  }
  .g-table--md .g-table_th:last-child {
    border-right-color: #dcdcdc;
  }
  .g-table--md .g-table_td {
    border-right: 2px solid #dcdcdc;
    background-color: #fff;
  }
  .g-table--md .g-table_tr:nth-child(odd) .g-table_td {
    background-color: #ccc;
  }
  .g-table-scroll--md {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
  .g-table-scroll--md .g-table_wrapper {
    float: left;
  }
  .g-table-scroll--md .g-table_el {
    white-space: nowrap;
  }
  .g-textBlock {
    font-size: 1.6rem;
    line-height: 1.7;
  }
  .g-textBlock_imgL {
    margin: 0 30px 30px 0;
    float: left;
  }
  .g-textBlock_imgR {
    margin: 0 0 30px 30px;
    float: right;
  }
  .g-textBtn--md {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-textBtn--md:disabled, .g-textBtn--md[aria-disabled=true] {
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-textBtn--md:hover {
    text-decoration: underline;
  }
  .g-textBtn--md .g-textBtn_i:first-child {
    margin-right: 0.5em;
  }
  .g-textBtn--md .g-textBtn_i:last-child {
    margin-left: 0.5em;
  }
  .g-textarea {
    padding: 9px 20px;
  }
  .g-toggleGroup--md {
    display: flex;
  }
  .g-toggleGroup--md .g-toggleGroup_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    margin: 0 2.5px;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: #e81b45;
    cursor: pointer;
  }
  .g-toggleGroup--md .g-toggleGroup_btn:disabled, .g-toggleGroup--md .g-toggleGroup_btn[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  .g-toggleGroup--md .g-toggleGroup_btn[aria-pressed=true] {
    background-color: #e81b45;
    color: #fff;
  }
  .g-toggleGroup .g-toggleGroup_btn {
    width: 40px;
    height: 40px;
  }
  .g-toggleGroup .g-i {
    font-size: 2.3rem;
  }
  .g-toggleGroup--md .g-toggleGroup_btn {
    width: 40px;
    height: 40px;
  }
  .g-toggleGroup--md .g-i {
    font-size: 2.3rem;
  }
  .g-u--md {
    text-decoration: underline !important;
  }
  .g-zoomBtn--md {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-zoomBtn--md .g-zoomBtn_img {
    transition: opacity 0.2s;
  }
  html[data-states~=no-touch] .g-zoomBtn--md .g-zoomBtn_img:hover {
    opacity: 0.7;
  }
  .g-zoomBtn--md .g-zoomBtn_i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    font-size: 2rem;
    pointer-events: none;
  }
  .heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 1000px) {
  /**/
  .g-accordionBtn--lg {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border: 1px solid #dcdcdc;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    color: #323232;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-accordionBtn--lg:disabled, .g-accordionBtn--lg[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-accordionBtn--lg:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-accordionBtn--lg:hover .g-accordionBtn_i::before, html[data-states~=no-touch] .g-accordionBtn--lg:hover .g-accordionBtn_i::after {
    background-color: #fff;
  }
  .g-accordionBtn--lg .g-accordionBtn_i {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-left: 0.5em;
  }
  .g-accordionBtn--lg .g-accordionBtn_i::before, .g-accordionBtn--lg .g-accordionBtn_i::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #e81b45;
    content: "";
    transition: transform 0.2s;
  }
  .g-accordionBtn--lg .g-accordionBtn_i::after {
    transform: rotate(90deg);
  }
  .g-accordionBtn--lg .g-accordionBtn_icon {
    flex-shrink: 0;
    margin-left: 1em;
    font-size: 0.8em;
    transition: transform 0.2s;
  }
  .g-accordionBtn--lg[aria-expanded=true] .g-accordionBtn_label::before, .g-accordionBtn--lg[data-clamped=false] .g-accordionBtn_label::before {
    content: attr(data-expanded);
  }
  .g-accordionBtn--lg[aria-expanded=true] .g-accordionBtn_i::after, .g-accordionBtn--lg[data-clamped=false] .g-accordionBtn_i::after {
    transform: rotate(0deg);
  }
  .g-accordionBtn--lg[aria-expanded=true] .g-accordionBtn_icon, .g-accordionBtn--lg[data-clamped=false] .g-accordionBtn_icon {
    transform: rotate(180deg);
  }
  .g-accordionBtn--lg[aria-expanded=false] .g-accordionBtn_label::before, .g-accordionBtn--lg[data-clamped=true] .g-accordionBtn_label::before {
    content: attr(data-collapsed);
  }
  .g-accordionBtn--lg[data-clamped]:disabled, .g-accordionBtn--lg[data-clamped][aria-disabled=true] {
    visibility: hidden;
  }
  .g-align-l--lg {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .g-align-c--lg {
    justify-content: center !important;
    text-align: center !important;
  }
  .g-align-r--lg {
    justify-content: flex-end !important;
    text-align: right !important;
  }
  .g-align-t--lg {
    align-items: stretch !important;
    vertical-align: top !important;
  }
  .g-align-m--lg {
    align-items: center !important;
    vertical-align: middle !important;
  }
  .g-align-b--lg {
    align-items: flex-end !important;
    vertical-align: bottom !important;
  }
  .g-align-l-self--lg {
    justify-self: flex-start !important;
  }
  .g-align-c-self--lg {
    justify-self: center !important;
  }
  .g-align-r-self--lg {
    justify-self: flex-end !important;
  }
  .g-align-t-self--lg {
    align-self: stretch !important;
  }
  .g-align-m-self--lg {
    align-self: center !important;
  }
  .g-align-b-self--lg {
    align-self: flex-end !important;
  }
  .g-avatar--lg {
    overflow: hidden;
    width: 100px;
    height: 100px;
  }
  .g-avatar--lg img {
    width: 100%;
    height: auto;
  }
  .g-avatar-sm--lg {
    width: 50px;
    height: 50px;
  }
  .g-avatar-circle--lg {
    border-radius: 100%;
  }
  .g-avatar-square--lg {
    border-radius: 5px;
  }
  .g-bg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .g-bg--lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .g-bg-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .g-bg-sm--lg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .g-bg-gray--lg {
    background-color: #f5f5f5;
  }
  .g-blockMenu--lg {
    display: flex;
    flex-wrap: wrap;
  }
  .g-blockMenu--lg .g-blockMenu_el {
    position: relative;
  }
  .g-blockMenu--lg .g-blockMenu_smEl::before {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    content: "";
  }
  .g-blockMenu--lg .g-blockMenu_smEl .g-blockMenu_box {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
  }
  .g-blockMenu--lg .g-blockMenu_box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
    color: #fff;
  }
  .g-blockMenu--lg .g-blockMenu_box[href] {
    color: #e81b45;
    transition: background-color 0.2s;
  }
  html[data-states~=no-touch] .g-blockMenu--lg .g-blockMenu_box[href]:hover {
    background-color: rgba(245, 245, 245, 0.2);
    text-decoration: none;
  }
  .g-blockMenu--lg .g-blockMenu_img {
    width: 50%;
  }
  .g-blockMenu--lg .g-blockMenu_data {
    display: block;
    flex: 1;
    padding: 10px;
    text-align: center;
  }
  .g-blockMenu {
    margin: -10px;
  }
  .g-blockMenu .g-blockMenu_el {
    width: calc((100% - 40px) / 2);
    margin: 10px;
  }
  .g-blockMenu .g-blockMenu_smEl {
    width: calc((100% - 80px) / 4);
  }
  .g-blockMenu .g-blockMenu_box {
    font-size: 1.8rem;
  }
  .g-blockMenu .g-blockMenu_img {
    max-width: 240px;
  }
  .g-blockMenu--lg {
    margin: -10px;
  }
  .g-blockMenu--lg .g-blockMenu_el {
    width: calc((100% - 40px) / 2);
    margin: 10px;
  }
  .g-blockMenu--lg .g-blockMenu_smEl {
    width: calc((100% - 80px) / 4);
  }
  .g-blockMenu--lg .g-blockMenu_box {
    font-size: 1.8rem;
  }
  .g-blockMenu--lg .g-blockMenu_img {
    max-width: 240px;
  }
  .g-bold--lg {
    font-weight: 600 !important;
  }
  .g-bold-not--lg {
    font-weight: normal !important;
  }
  .g-box {
    min-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }
  .g-box--lg {
    min-width: 100%;
    padding-right: 50px;
    padding-left: 50px;
  }
  .g-box-neg {
    margin-right: -50px;
    margin-left: -50px;
  }
  .g-box-neg--lg {
    margin-right: -50px;
    margin-left: -50px;
  }
  .g-btnGroup--lg {
    margin-top: 40px;
  }
  .g-btnGroup--lg .g-btnGroup_inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .g-btnGroup-sm--lg {
    margin-top: 20px;
  }
  .g-btnGroup-h--lg .g-btnGroup_inner {
    position: relative;
    margin: -10px;
  }
  .g-btnGroup-h--lg .g-btnGroup_inner > * {
    margin: 10px;
  }
  .g-btnGroup-h--lg .g-btnGroup_l,
.g-btnGroup-h--lg .g-btnGroup_r {
    position: absolute;
    top: 10px;
    margin: 0;
  }
  .g-btnGroup-h--lg .g-btnGroup_l {
    left: 10px;
  }
  .g-btnGroup-h--lg .g-btnGroup_r {
    right: 10px;
  }
  .g-btnGroup-h .g-btnGroup_inner > * {
    width: 100%;
    max-width: 340px;
  }
  .g-btnGroup-h--lg .g-btnGroup_inner > * {
    width: 100%;
    max-width: 340px;
  }
  .g-btnGroup-v--lg .g-btnGroup_inner {
    flex-direction: column;
    margin: -10px 0;
  }
  .g-btnGroup-v--lg .g-btnGroup_inner > * {
    width: 100%;
    margin: 10px 0;
  }
  .g-btnGroup-v--lg .g-btnGroup_l {
    order: -1;
  }
  .g-btnGroup-v--lg .g-btnGroup_r {
    order: 1;
  }
  .g-btnGroup-rv--lg.g-btnGroup-h--lg .g-btnGroup_inner, .g-btnGroup-rv--lg.g-btnGroup-h .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-h--lg .g-btnGroup_inner {
    flex-direction: row-reverse;
  }
  .g-btnGroup-rv--lg.g-btnGroup-h--lg .g-btnGroup_l, .g-btnGroup-rv--lg.g-btnGroup-h .g-btnGroup_l, .g-btnGroup-rv.g-btnGroup-h--lg .g-btnGroup_l {
    right: 10px;
    left: auto;
  }
  .g-btnGroup-rv--lg.g-btnGroup-h--lg .g-btnGroup_r, .g-btnGroup-rv--lg.g-btnGroup-h .g-btnGroup_r, .g-btnGroup-rv.g-btnGroup-h--lg .g-btnGroup_r {
    right: auto;
    left: 10px;
  }
  .g-btnGroup-rv--lg.g-btnGroup-v--lg .g-btnGroup_inner, .g-btnGroup-rv--lg.g-btnGroup-v .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-v--lg .g-btnGroup_inner {
    flex-direction: column-reverse;
  }
  .g-btn--lg {
    display: inline-block;
    padding: 0;
    border: 1px solid transparent;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-btn--lg:disabled, .g-btn--lg[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-btn--lg:hover {
    text-decoration: none;
  }
  .g-btn--lg .g-btn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: inherit;
    text-decoration: none !important;
  }
  .g-btn--lg .g-btn_i:first-child {
    margin-right: 0.5em;
  }
  .g-btn--lg .g-btn_i:last-child {
    margin-left: 0.5em;
  }
  .g-btn {
    width: 100%;
    max-width: 270px;
  }
  .g-btn--lg {
    width: 100%;
    max-width: 270px;
  }
  .g-btn-def--lg {
    border-color: #aaa;
    background-color: #aaa;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-def--lg:hover {
    border-color: transparent;
    background-color: rgba(170, 170, 170, 0.7);
  }
  .g-btn-def {
    font-size: 1.6rem;
  }
  .g-btn-def--lg {
    font-size: 1.6rem;
  }
  .g-btn-primary--lg {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-primary--lg:hover {
    border-color: transparent;
    background-color: rgba(232, 27, 69, 0.7);
  }
  .g-btn-primary {
    font-size: 1.6rem;
  }
  .g-btn-primary--lg {
    font-size: 1.6rem;
  }
  .g-btn-lg {
    font-size: 2rem;
  }
  .g-btn-lg .g-btn_inner {
    min-height: 50px;
  }
  .g-btn-lg--lg {
    font-size: 2rem;
  }
  .g-btn-lg--lg .g-btn_inner {
    min-height: 50px;
  }
  .g-butterfly--lg {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
  }
  .g-butterfly--lg > * {
    margin: 10px;
  }
  .g-butterfly--lg > *:nth-child(2) {
    margin-left: auto;
  }
  .g-butterfly-nowrap--lg {
    flex-wrap: nowrap;
  }
  .g-card--lg {
    display: flex;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
  }
  .g-card--lg .g-card_head {
    position: relative;
  }
  .g-card--lg .g-card_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
    background-color: #333;
  }
  .g-card--lg .g-card_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-card--lg .g-card_body {
    flex: 1;
    font-weight: 600;
  }
  .g-card {
    padding: 10px 10px 15px;
  }
  .g-card .g-card_body {
    margin: 0.5em 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .g-card .g-card_foot {
    font-size: 1.4rem;
  }
  .g-card--lg {
    padding: 10px 10px 15px;
  }
  .g-card--lg .g-card_body {
    margin: 0.5em 0;
    font-size: 1.4rem;
    text-align: left;
  }
  .g-card--lg .g-card_foot {
    font-size: 1.4rem;
  }
  .g-clamp--lg[data-clamping=true] {
    /* stylelint-disable */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* stylelint-enable */
  }
  .g-clearfix--lg::before, .g-clearfix--lg::after {
    display: table;
    content: "";
  }
  .g-clearfix--lg::after {
    clear: both;
  }
  .g-clip--lg {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
            clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }
  .g-column {
    padding: 20px 15px;
  }
  .g-column--lg {
    padding: 20px 15px;
  }
  .g-column--lg {
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
  }
  .g-column-sm {
    padding: 10px;
  }
  .g-column-sm--lg {
    padding: 10px;
  }
  .g-column-alert--lg {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
  }
  .g-container {
    width: 100%;
    max-width: 1100px;
    padding-right: 50px;
    padding-left: 50px;
    margin: auto;
  }
  .g-container--lg {
    width: 100%;
    max-width: 1100px;
    padding-right: 50px;
    padding-left: 50px;
    margin: auto;
  }
  .g-display-f--lg {
    display: flex !important;
  }
  .g-display-b--lg {
    display: block !important;
  }
  .g-display-ib--lg {
    display: inline-block !important;
  }
  .g-display-i--lg {
    display: inline !important;
  }
  .g-display-h--lg {
    visibility: hidden !important;
  }
  .g-display-v--lg {
    visibility: visible !important;
  }
  .g-display-n--lg {
    display: none !important;
  }
  .g-dl-h--lg {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .g-dl-h--lg .g-dl_h {
    padding-right: 20px;
    color: #7d7d7d;
    grid-column: 1/2;
    white-space: nowrap;
  }
  .g-dl-h--lg .g-dl_body {
    grid-column: 2/3;
  }
  .g-dl-h--lg .g-dl_data {
    display: block;
    padding: 5px 0;
  }
  .g-dl-h .g-dl_h {
    padding-right: 90px;
    font-size: 1.4rem;
  }
  .g-dl-h--lg .g-dl_h {
    padding-right: 90px;
    font-size: 1.4rem;
  }
  .g-dl-v--lg .g-dl_h {
    color: #7d7d7d;
  }
  .g-dl-v--lg .g-dl_body + .g-dl_h {
    margin-top: 20px;
  }
  .g-dl-v--lg .g-dl_data {
    display: block;
  }
  .g-dl-line--lg.g-dl-h--lg, .g-dl-line--lg.g-dl-h, .g-dl-line.g-dl-h--lg {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--lg.g-dl-h--lg .g-dl_h,
.g-dl-line--lg.g-dl-h--lg .g-dl_body, .g-dl-line--lg.g-dl-h .g-dl_h,
.g-dl-line--lg.g-dl-h .g-dl_body, .g-dl-line.g-dl-h--lg .g-dl_h,
.g-dl-line.g-dl-h--lg .g-dl_body {
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--lg.g-dl-h--lg .g-dl_data, .g-dl-line--lg.g-dl-h .g-dl_data, .g-dl-line.g-dl-h--lg .g-dl_data {
    padding: 20px 0;
  }
  .g-dl-line--lg.g-dl-v--lg, .g-dl-line--lg.g-dl-v, .g-dl-line.g-dl-v--lg {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--lg.g-dl-v--lg .g-dl_h, .g-dl-line--lg.g-dl-v .g-dl_h, .g-dl-line.g-dl-v--lg .g-dl_h {
    padding-top: 18px;
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--lg.g-dl-v--lg .g-dl_body + .g-dl_h, .g-dl-line--lg.g-dl-v .g-dl_body + .g-dl_h, .g-dl-line.g-dl-v--lg .g-dl_body + .g-dl_h {
    margin-top: 0;
  }
  .g-dl-line--lg.g-dl-v--lg .g-dl_body, .g-dl-line--lg.g-dl-v .g-dl_body, .g-dl-line.g-dl-v--lg .g-dl_body {
    padding-bottom: 18px;
  }
  .g-dl-line--lg.g-dl-v--lg .g-dl_data, .g-dl-line--lg.g-dl-v .g-dl_data, .g-dl-line.g-dl-v--lg .g-dl_data {
    padding: 0;
  }
  .g-dl-noTopLine--lg.g-dl-h--lg .g-dl_h:first-child,
.g-dl-noTopLine--lg.g-dl-h--lg .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine--lg.g-dl-h .g-dl_h:first-child,
.g-dl-noTopLine--lg.g-dl-h .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine.g-dl-h--lg .g-dl_h:first-child,
.g-dl-noTopLine.g-dl-h--lg .g-dl_h:first-child + .g-dl_body {
    border-top-color: transparent;
  }
  .g-dl-noTopLine--lg.g-dl-v--lg .g-dl_h:first-child, .g-dl-noTopLine--lg.g-dl-v .g-dl_h:first-child, .g-dl-noTopLine.g-dl-v--lg .g-dl_h:first-child {
    border-top-color: transparent;
  }
  .g-dl-news--lg.g-dl-h--lg .g-dl_h, .g-dl-news--lg.g-dl-h .g-dl_h, .g-dl-news.g-dl-h--lg .g-dl_h {
    display: flex;
    align-items: flex-start;
    padding-right: 35px;
  }
  .g-dl-news--lg.g-dl-h--lg .g-dl_h .g-label, .g-dl-news--lg.g-dl-h .g-dl_h .g-label, .g-dl-news.g-dl-h--lg .g-dl_h .g-label {
    width: 95px;
    margin: 0 20px 0 0;
    text-align: center;
  }
  .g-dl-news--lg.g-dl-h--lg .g-dl_data, .g-dl-news--lg.g-dl-h .g-dl_data, .g-dl-news.g-dl-h--lg .g-dl_data {
    display: flex;
    align-items: center;
  }
  .g-dl-news--lg.g-dl-v--lg .g-dl_h, .g-dl-news--lg.g-dl-v .g-dl_h, .g-dl-news.g-dl-v--lg .g-dl_h {
    padding-bottom: 5px;
  }
  .g-dl-news--lg.g-dl-v--lg .g-dl_h .g-label, .g-dl-news--lg.g-dl-v .g-dl_h .g-label, .g-dl-news.g-dl-v--lg .g-dl_h .g-label {
    width: 95px;
    margin: 0 10px 0 0;
    text-align: center;
  }
  .g-dl-plain--lg .g-dl_h {
    padding-top: 5px;
    clear: left;
    float: left;
    font-weight: 600;
  }
  .g-dl-plain--lg .g-dl_body {
    padding-top: 5px;
  }
  .g-float-l--lg {
    float: left !important;
  }
  .g-float-r--lg {
    float: right !important;
  }
  .g-float-n--lg {
    float: none !important;
  }
  .g-flow--lg {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -2px -7px;
  }
  .g-flow--lg > * {
    margin: 2px 7px;
  }
  .g-flow-xs--lg {
    margin: -1px -2px;
  }
  .g-flow-xs--lg > * {
    margin: 1px 2px;
  }
  .g-flow-sm--lg {
    margin: -2px -4px;
  }
  .g-flow-sm--lg > * {
    margin: 2px 4px;
  }
  .g-flow-lg--lg {
    margin: -5px -10px;
  }
  .g-flow-lg--lg > * {
    margin: 5px 10px;
  }
  .g-flow-xl--lg {
    margin: -5px -20px;
  }
  .g-flow-xl--lg > * {
    margin: 5px 20px;
  }
  .g-flow-nowrap--lg {
    flex-wrap: nowrap;
  }
  .g-font-xs--lg {
    font-size: 1rem;
  }
  .g-font-sm--lg {
    font-size: 1.2rem;
  }
  .g-font-md--lg {
    font-size: 1.4rem;
  }
  .g-font-lg--lg {
    font-size: 1.6rem;
  }
  .g-font-xl--lg {
    font-size: 1.8rem;
  }
  .g-foot--lg {
    margin-top: 15px;
  }
  .g-foot-xs--lg {
    margin-top: 5px;
  }
  .g-foot-sm--lg {
    margin-top: 10px;
  }
  .g-foot-lg--lg {
    margin-top: 20px;
  }
  .g-foot-xl--lg {
    margin-top: 30px;
  }
  .g-full--lg {
    position: relative;
    right: 50%;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
  }
  .g-fw--lg {
    width: 100% !important;
  }
  .g-grid {
    margin: -5px -5px;
  }
  .g-grid > * {
    padding: 5px 5px;
  }
  .g-grid--lg {
    margin: -5px -5px;
  }
  .g-grid--lg > * {
    padding: 5px 5px;
  }
  .g-grid--lg {
    display: flex;
    align-items: center;
  }
  .g-grid--lg > * {
    flex: 1;
    background-clip: content-box;
  }
  .g-grid-1--lg {
    flex-wrap: wrap;
  }
  .g-grid-1--lg > * {
    width: 100%;
    flex: 0 auto;
  }
  .g-grid-2--lg {
    flex-wrap: wrap;
  }
  .g-grid-2--lg > * {
    width: 50%;
    flex: 0 auto;
  }
  .g-grid-3--lg {
    flex-wrap: wrap;
  }
  .g-grid-3--lg > * {
    width: 33.3333333333%;
    flex: 0 auto;
  }
  .g-grid-4--lg {
    flex-wrap: wrap;
  }
  .g-grid-4--lg > * {
    width: 25%;
    flex: 0 auto;
  }
  .g-grid-5--lg {
    flex-wrap: wrap;
  }
  .g-grid-5--lg > * {
    width: 20%;
    flex: 0 auto;
  }
  .g-grid-6--lg {
    flex-wrap: wrap;
  }
  .g-grid-6--lg > * {
    width: 16.6666666667%;
    flex: 0 auto;
  }
  .g-head--lg {
    margin-bottom: 15px;
  }
  .g-head-xs--lg {
    margin-bottom: 5px;
  }
  .g-head-sm--lg {
    margin-bottom: 10px;
  }
  .g-head-lg--lg {
    margin-bottom: 20px;
  }
  .g-head-xl--lg {
    margin-bottom: 30px;
  }
  .g-hr--lg {
    display: block;
    height: 1px;
    border: 0;
    background-color: #dcdcdc;
  }
  .g-hr {
    margin: 30px 0;
  }
  .g-hr--lg {
    margin: 30px 0;
  }
  .g-hr-sm {
    margin: 15px 0;
  }
  .g-hr-sm--lg {
    margin: 15px 0;
  }
  .g-hr-thick--lg {
    height: 2px;
  }
  .g-iconBtn--lg {
    display: inline-block;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: inherit;
    font-size: 1.2rem;
    transition: background-color 0.2s, border-color 0.2s;
  }
  html[data-states~=no-touch] .g-iconBtn--lg:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  .g-iconBtn--lg .g-iconBtn_inner {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none !important;
  }
  .g-iconBtn--lg:disabled, .g-iconBtn--lg[aria-disabled=true] {
    cursor: default;
    opacity: 0.3;
    pointer-events: none;
  }
  .g-link--lg {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    color: #e81b45;
  }
  .g-link--lg .g-i {
    font-size: 0.9em;
  }
  .g-link--lg .g-i:first-child {
    margin-right: 0.5em;
  }
  .g-link--lg .g-i:last-child {
    margin-left: 0.5em;
  }
  .g-link--lg .g-i-arrow-r {
    font-size: 0.8em;
    transform: translateY(0.1em);
  }
  .g-link--lg .g-i-blank {
    font-size: 0.7em;
    transform: translateY(0.1em);
  }
  .g-link-u--lg {
    text-decoration: underline;
  }
  html[data-states~=no-touch] .g-link-u--lg:hover {
    text-decoration: none;
  }
  .g-list--lg {
    counter-reset: g-list;
  }
  .g-list--lg > * {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .g-list--lg > *::before {
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    counter-increment: g-list;
    text-indent: 0;
    white-space: nowrap;
  }
  .g-list--lg > * * {
    text-indent: 0;
  }
  .g-list-note--lg {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-note--lg > * {
    margin-top: 0.5em;
  }
  .g-list-note--lg > *:first-child {
    margin-top: 0;
  }
  .g-list-note--lg > *::before {
    content: "※";
  }
  .g-list-ref--lg {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-ref--lg > * {
    padding-left: 2.5em;
    margin-top: 0.5em;
    text-indent: -2.5em;
  }
  .g-list-ref--lg > *:first-child {
    margin-top: 0;
  }
  .g-list-ref--lg > *::before {
    width: 2em;
    content: "※" counter(g-list, decimal);
  }
  .g-list-ref--lg > *:nth-last-child(n+10), .g-list-ref--lg > *:nth-last-child(n+10) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-ref--lg > *:nth-last-child(n+10)::before, .g-list-ref--lg > *:nth-last-child(n+10) ~ *::before {
    width: 2.5em;
  }
  .g-list-ref--lg > *:nth-last-child(n+100), .g-list-ref--lg > *:nth-last-child(n+100) ~ * {
    padding-left: 4em;
    text-indent: -4em;
  }
  .g-list-ref--lg > *:nth-last-child(n+100)::before, .g-list-ref--lg > *:nth-last-child(n+100) ~ *::before {
    width: 3.5em;
  }
  .g-list-disc--lg > *::before {
    background: radial-gradient(circle at 0.5em 0.7em, currentColor 3px, transparent 3px);
    content: "​";
  }
  .g-list-decimal--lg > *::before {
    content: counter(g-list, decimal) ".";
    text-align: right;
  }
  .g-list-decimal--lg > *:nth-last-child(n+10), .g-list-decimal--lg > *:nth-last-child(n+10) ~ * {
    padding-left: 2.5em;
    text-indent: -2.5em;
  }
  .g-list-decimal--lg > *:nth-last-child(n+10)::before, .g-list-decimal--lg > *:nth-last-child(n+10) ~ *::before {
    width: 2em;
  }
  .g-list-decimal--lg > *:nth-last-child(n+100), .g-list-decimal--lg > *:nth-last-child(n+100) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-decimal--lg > *:nth-last-child(n+100)::before, .g-list-decimal--lg > *:nth-last-child(n+100) ~ *::before {
    width: 2.5em;
  }
  .g-list-none--lg > * {
    padding-left: 0;
    margin-top: 0.4em;
    text-indent: 0;
  }
  .g-list-none--lg > *:first-child {
    margin-top: 0;
  }
  .g-list-loose--lg > *:nth-of-type(n+2) {
    margin-top: 1.5em;
  }
  .g-mb-0--lg {
    margin-bottom: 0px !important;
  }
  .g-mb-5--lg {
    margin-bottom: 5px !important;
  }
  .g-mb-10--lg {
    margin-bottom: 10px !important;
  }
  .g-mb-15--lg {
    margin-bottom: 15px !important;
  }
  .g-mb-20--lg {
    margin-bottom: 20px !important;
  }
  .g-mb-25--lg {
    margin-bottom: 25px !important;
  }
  .g-mb-30--lg {
    margin-bottom: 30px !important;
  }
  .g-mb-35--lg {
    margin-bottom: 35px !important;
  }
  .g-mb-40--lg {
    margin-bottom: 40px !important;
  }
  .g-mb-45--lg {
    margin-bottom: 45px !important;
  }
  .g-mb-50--lg {
    margin-bottom: 50px !important;
  }
  .g-media--lg {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
  }
  .g-media--lg .g-media_head {
    padding-right: 50px;
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .g-media--lg .g-media_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
  }
  .g-media--lg .g-media_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-media--lg .g-media_body {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .g-media--lg .g-media_foot {
    padding-top: 10px;
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .g-media--lg .g-media_h {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .g-media .g-media_head {
    width: 230px;
  }
  .g-media--lg .g-media_head {
    width: 230px;
  }
  .g-media-sm .g-media_head {
    width: 170px;
  }
  .g-media-sm--lg .g-media_head {
    width: 170px;
  }
  .g-media-lg .g-media_head {
    width: 320px;
  }
  .g-media-lg--lg .g-media_head {
    width: 320px;
  }
  .g-media-row--lg {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
  }
  .g-media-row--lg .g-media_head {
    grid-row: 1/2;
  }
  .g-media-row--lg .g-media_foot {
    padding-top: 0;
    padding-left: 20px;
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .g-menuBtn--lg {
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
  }
  .g-menuBtn--lg[aria-expanded=true] .g-menuBtn_i::before {
    bottom: 0;
    transform: rotate(135deg);
  }
  .g-menuBtn--lg[aria-expanded=true] .g-menuBtn_i::after {
    top: 0;
    transform: rotate(-135deg);
  }
  .g-menuBtn--lg[aria-expanded=true] .g-menuBtn_i span {
    opacity: 0;
  }
  .g-menuBtn--lg .g-menuBtn_i {
    position: relative;
    display: block;
    width: 32px;
    height: 20px;
    margin: 5px 0;
  }
  .g-menuBtn--lg .g-menuBtn_i::before, .g-menuBtn--lg .g-menuBtn_i::after,
.g-menuBtn--lg .g-menuBtn_i span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: #323232;
    content: "";
    transition: transform 0.2s, opacity 0.2s;
  }
  .g-menuBtn--lg .g-menuBtn_i::before {
    top: 0;
  }
  .g-menuBtn--lg .g-menuBtn_i::after {
    bottom: 0;
  }
  .g-menuBtn--lg .g-menuBtn_i span {
    top: 0;
    bottom: 0;
  }
  .g-ml-0--lg {
    margin-left: 0px !important;
  }
  .g-ml-5--lg {
    margin-left: 5px !important;
  }
  .g-ml-10--lg {
    margin-left: 10px !important;
  }
  .g-ml-15--lg {
    margin-left: 15px !important;
  }
  .g-ml-20--lg {
    margin-left: 20px !important;
  }
  .g-ml-25--lg {
    margin-left: 25px !important;
  }
  .g-ml-30--lg {
    margin-left: 30px !important;
  }
  .g-ml-35--lg {
    margin-left: 35px !important;
  }
  .g-ml-40--lg {
    margin-left: 40px !important;
  }
  .g-ml-45--lg {
    margin-left: 45px !important;
  }
  .g-ml-50--lg {
    margin-left: 50px !important;
  }
  .g-mr-0--lg {
    margin-right: 0px !important;
  }
  .g-mr-5--lg {
    margin-right: 5px !important;
  }
  .g-mr-10--lg {
    margin-right: 10px !important;
  }
  .g-mr-15--lg {
    margin-right: 15px !important;
  }
  .g-mr-20--lg {
    margin-right: 20px !important;
  }
  .g-mr-25--lg {
    margin-right: 25px !important;
  }
  .g-mr-30--lg {
    margin-right: 30px !important;
  }
  .g-mr-35--lg {
    margin-right: 35px !important;
  }
  .g-mr-40--lg {
    margin-right: 40px !important;
  }
  .g-mr-45--lg {
    margin-right: 45px !important;
  }
  .g-mr-50--lg {
    margin-right: 50px !important;
  }
  .g-mt-0--lg {
    margin-top: 0px !important;
  }
  .g-mt-5--lg {
    margin-top: 5px !important;
  }
  .g-mt-10--lg {
    margin-top: 10px !important;
  }
  .g-mt-15--lg {
    margin-top: 15px !important;
  }
  .g-mt-20--lg {
    margin-top: 20px !important;
  }
  .g-mt-25--lg {
    margin-top: 25px !important;
  }
  .g-mt-30--lg {
    margin-top: 30px !important;
  }
  .g-mt-35--lg {
    margin-top: 35px !important;
  }
  .g-mt-40--lg {
    margin-top: 40px !important;
  }
  .g-mt-45--lg {
    margin-top: 45px !important;
  }
  .g-mt-50--lg {
    margin-top: 50px !important;
  }
  .g-nowrap--lg {
    white-space: nowrap !important;
  }
  .g-nowrap-not--lg {
    white-space: normal !important;
  }
  .g-overflow-h--lg {
    overflow: hidden !important;
  }
  .g-section {
    margin-top: 75px;
  }
  .g-section--lg {
    margin-top: 75px;
  }
  .g-stack--lg {
    margin-top: -15px;
  }
  .g-stack--lg > * {
    margin-top: 15px !important;
  }
  .g-stack-xs--lg {
    margin-top: -5px;
  }
  .g-stack-xs--lg > * {
    margin-top: 5px !important;
  }
  .g-stack-sm--lg {
    margin-top: -10px;
  }
  .g-stack-sm--lg > * {
    margin-top: 10px !important;
  }
  .g-stack-lg--lg {
    margin-top: -20px;
  }
  .g-stack-lg--lg > * {
    margin-top: 20px !important;
  }
  .g-stack-xl--lg {
    margin-top: -30px;
  }
  .g-stack-xl--lg > * {
    margin-top: 30px !important;
  }
  .g-table--lg .g-table_el {
    width: 100%;
    border-bottom: 2px solid #dcdcdc;
    border-left: 2px solid #dcdcdc;
    border-spacing: 0;
  }
  .g-table--lg .g-table_th,
.g-table--lg .g-table_td {
    padding: 15px 20px;
  }
  .g-table--lg .g-table_th {
    border-right: 2px solid #fff;
    background-color: #999;
  }
  .g-table--lg .g-table_th:last-child {
    border-right-color: #dcdcdc;
  }
  .g-table--lg .g-table_td {
    border-right: 2px solid #dcdcdc;
    background-color: #fff;
  }
  .g-table--lg .g-table_tr:nth-child(odd) .g-table_td {
    background-color: #ccc;
  }
  .g-table-scroll--lg {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
  .g-table-scroll--lg .g-table_wrapper {
    float: left;
  }
  .g-table-scroll--lg .g-table_el {
    white-space: nowrap;
  }
  .g-textBtn--lg {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-textBtn--lg:disabled, .g-textBtn--lg[aria-disabled=true] {
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-textBtn--lg:hover {
    text-decoration: underline;
  }
  .g-textBtn--lg .g-textBtn_i:first-child {
    margin-right: 0.5em;
  }
  .g-textBtn--lg .g-textBtn_i:last-child {
    margin-left: 0.5em;
  }
  .g-toggleGroup--lg {
    display: flex;
  }
  .g-toggleGroup--lg .g-toggleGroup_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    margin: 0 2.5px;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: #e81b45;
    cursor: pointer;
  }
  .g-toggleGroup--lg .g-toggleGroup_btn:disabled, .g-toggleGroup--lg .g-toggleGroup_btn[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  .g-toggleGroup--lg .g-toggleGroup_btn[aria-pressed=true] {
    background-color: #e81b45;
    color: #fff;
  }
  .g-toggleGroup .g-toggleGroup_btn {
    width: 40px;
    height: 40px;
  }
  .g-toggleGroup .g-i {
    font-size: 2.3rem;
  }
  .g-toggleGroup--lg .g-toggleGroup_btn {
    width: 40px;
    height: 40px;
  }
  .g-toggleGroup--lg .g-i {
    font-size: 2.3rem;
  }
  .g-u--lg {
    text-decoration: underline !important;
  }
  .g-zoomBtn--lg {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-zoomBtn--lg .g-zoomBtn_img {
    transition: opacity 0.2s;
  }
  html[data-states~=no-touch] .g-zoomBtn--lg .g-zoomBtn_img:hover {
    opacity: 0.7;
  }
  .g-zoomBtn--lg .g-zoomBtn_i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    font-size: 2rem;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  /**/
  .g-accordionBtn--smo {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border: 1px solid #dcdcdc;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    color: #323232;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-accordionBtn--smo:disabled, .g-accordionBtn--smo[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-accordionBtn--smo:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-accordionBtn--smo:hover .g-accordionBtn_i::before, html[data-states~=no-touch] .g-accordionBtn--smo:hover .g-accordionBtn_i::after {
    background-color: #fff;
  }
  .g-accordionBtn--smo .g-accordionBtn_i {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-left: 0.5em;
  }
  .g-accordionBtn--smo .g-accordionBtn_i::before, .g-accordionBtn--smo .g-accordionBtn_i::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 2px;
    background-color: #e81b45;
    content: "";
    transition: transform 0.2s;
  }
  .g-accordionBtn--smo .g-accordionBtn_i::after {
    transform: rotate(90deg);
  }
  .g-accordionBtn--smo .g-accordionBtn_icon {
    flex-shrink: 0;
    margin-left: 1em;
    font-size: 0.8em;
    transition: transform 0.2s;
  }
  .g-accordionBtn--smo[aria-expanded=true] .g-accordionBtn_label::before, .g-accordionBtn--smo[data-clamped=false] .g-accordionBtn_label::before {
    content: attr(data-expanded);
  }
  .g-accordionBtn--smo[aria-expanded=true] .g-accordionBtn_i::after, .g-accordionBtn--smo[data-clamped=false] .g-accordionBtn_i::after {
    transform: rotate(0deg);
  }
  .g-accordionBtn--smo[aria-expanded=true] .g-accordionBtn_icon, .g-accordionBtn--smo[data-clamped=false] .g-accordionBtn_icon {
    transform: rotate(180deg);
  }
  .g-accordionBtn--smo[aria-expanded=false] .g-accordionBtn_label::before, .g-accordionBtn--smo[data-clamped=true] .g-accordionBtn_label::before {
    content: attr(data-collapsed);
  }
  .g-accordionBtn--smo[data-clamped]:disabled, .g-accordionBtn--smo[data-clamped][aria-disabled=true] {
    visibility: hidden;
  }
  .g-align-l--smo {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .g-align-c--smo {
    justify-content: center !important;
    text-align: center !important;
  }
  .g-align-r--smo {
    justify-content: flex-end !important;
    text-align: right !important;
  }
  .g-align-t--smo {
    align-items: stretch !important;
    vertical-align: top !important;
  }
  .g-align-m--smo {
    align-items: center !important;
    vertical-align: middle !important;
  }
  .g-align-b--smo {
    align-items: flex-end !important;
    vertical-align: bottom !important;
  }
  .g-align-l-self--smo {
    justify-self: flex-start !important;
  }
  .g-align-c-self--smo {
    justify-self: center !important;
  }
  .g-align-r-self--smo {
    justify-self: flex-end !important;
  }
  .g-align-t-self--smo {
    align-self: stretch !important;
  }
  .g-align-m-self--smo {
    align-self: center !important;
  }
  .g-align-b-self--smo {
    align-self: flex-end !important;
  }
  .g-avatar--smo {
    overflow: hidden;
    width: 100px;
    height: 100px;
  }
  .g-avatar--smo img {
    width: 100%;
    height: auto;
  }
  .g-avatar-sm--smo {
    width: 50px;
    height: 50px;
  }
  .g-avatar-circle--smo {
    border-radius: 100%;
  }
  .g-avatar-square--smo {
    border-radius: 5px;
  }
  .g-bg--smo {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .g-bg-sm--smo {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .g-bg-gray--smo {
    background-color: #f5f5f5;
  }
  .g-blockMenu--smo {
    display: flex;
    flex-wrap: wrap;
  }
  .g-blockMenu--smo .g-blockMenu_el {
    position: relative;
  }
  .g-blockMenu--smo .g-blockMenu_smEl::before {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    content: "";
  }
  .g-blockMenu--smo .g-blockMenu_smEl .g-blockMenu_box {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
  }
  .g-blockMenu--smo .g-blockMenu_box {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
    color: #fff;
  }
  .g-blockMenu--smo .g-blockMenu_box[href] {
    color: #e81b45;
    transition: background-color 0.2s;
  }
  html[data-states~=no-touch] .g-blockMenu--smo .g-blockMenu_box[href]:hover {
    background-color: rgba(245, 245, 245, 0.2);
    text-decoration: none;
  }
  .g-blockMenu--smo .g-blockMenu_img {
    width: 50%;
  }
  .g-blockMenu--smo .g-blockMenu_data {
    display: block;
    flex: 1;
    padding: 10px;
    text-align: center;
  }
  .g-blockMenu--smo {
    margin: -5px;
  }
  .g-blockMenu--smo .g-blockMenu_el {
    width: 100%;
    margin: 5px;
  }
  .g-blockMenu--smo .g-blockMenu_smEl {
    width: calc((100% - 20px) / 2);
  }
  .g-blockMenu--smo .g-blockMenu_img {
    max-width: 158px;
  }
  .g-bold--smo {
    font-weight: 600 !important;
  }
  .g-bold-not--smo {
    font-weight: normal !important;
  }
  .g-box--smo {
    min-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }
  .g-box-neg--smo {
    margin-right: -24px;
    margin-left: -24px;
  }
  .g-btnGroup--smo {
    margin-top: 40px;
  }
  .g-btnGroup--smo .g-btnGroup_inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .g-btnGroup-sm--smo {
    margin-top: 20px;
  }
  .g-btnGroup-h--smo .g-btnGroup_inner {
    position: relative;
    margin: -10px;
  }
  .g-btnGroup-h--smo .g-btnGroup_inner > * {
    margin: 10px;
  }
  .g-btnGroup-h--smo .g-btnGroup_l,
.g-btnGroup-h--smo .g-btnGroup_r {
    position: absolute;
    top: 10px;
    margin: 0;
  }
  .g-btnGroup-h--smo .g-btnGroup_l {
    left: 10px;
  }
  .g-btnGroup-h--smo .g-btnGroup_r {
    right: 10px;
  }
  .g-btnGroup-v--smo .g-btnGroup_inner {
    flex-direction: column;
    margin: -10px 0;
  }
  .g-btnGroup-v--smo .g-btnGroup_inner > * {
    width: 100%;
    margin: 10px 0;
  }
  .g-btnGroup-v--smo .g-btnGroup_l {
    order: -1;
  }
  .g-btnGroup-v--smo .g-btnGroup_r {
    order: 1;
  }
  .g-btnGroup-rv--smo.g-btnGroup-h--smo .g-btnGroup_inner, .g-btnGroup-rv--smo.g-btnGroup-h .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-h--smo .g-btnGroup_inner {
    flex-direction: row-reverse;
  }
  .g-btnGroup-rv--smo.g-btnGroup-h--smo .g-btnGroup_l, .g-btnGroup-rv--smo.g-btnGroup-h .g-btnGroup_l, .g-btnGroup-rv.g-btnGroup-h--smo .g-btnGroup_l {
    right: 10px;
    left: auto;
  }
  .g-btnGroup-rv--smo.g-btnGroup-h--smo .g-btnGroup_r, .g-btnGroup-rv--smo.g-btnGroup-h .g-btnGroup_r, .g-btnGroup-rv.g-btnGroup-h--smo .g-btnGroup_r {
    right: auto;
    left: 10px;
  }
  .g-btnGroup-rv--smo.g-btnGroup-v--smo .g-btnGroup_inner, .g-btnGroup-rv--smo.g-btnGroup-v .g-btnGroup_inner, .g-btnGroup-rv.g-btnGroup-v--smo .g-btnGroup_inner {
    flex-direction: column-reverse;
  }
  .g-btn--smo {
    display: inline-block;
    padding: 0;
    border: 1px solid transparent;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
  }
  .g-btn--smo:disabled, .g-btn--smo[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-btn--smo:hover {
    text-decoration: none;
  }
  .g-btn--smo .g-btn_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    color: inherit;
    text-decoration: none !important;
  }
  .g-btn--smo .g-btn_i:first-child {
    margin-right: 0.5em;
  }
  .g-btn--smo .g-btn_i:last-child {
    margin-left: 0.5em;
  }
  .g-btn--smo {
    min-width: 100%;
  }
  .g-btn--smo .g-btn_inner {
    min-height: 35px;
  }
  .g-btn-def--smo {
    border-color: #aaa;
    background-color: #aaa;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-def--smo:hover {
    border-color: transparent;
    background-color: rgba(170, 170, 170, 0.7);
  }
  .g-btn-def--smo {
    font-size: 1.4rem;
  }
  .g-btn-primary--smo {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  html[data-states~=no-touch] .g-btn-primary--smo:hover {
    border-color: transparent;
    background-color: rgba(232, 27, 69, 0.7);
  }
  .g-btn-primary--smo {
    font-size: 1.4rem;
  }
  .g-btn-lg--smo {
    font-size: 1.6rem;
  }
  .g-btn-lg--smo .g-btn_inner {
    min-height: 35px;
  }
  .g-butterfly--smo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -10px;
  }
  .g-butterfly--smo > * {
    margin: 10px;
  }
  .g-butterfly--smo > *:nth-child(2) {
    margin-left: auto;
  }
  .g-butterfly-nowrap--smo {
    flex-wrap: nowrap;
  }
  .g-card--smo {
    display: flex;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
  }
  .g-card--smo .g-card_head {
    position: relative;
  }
  .g-card--smo .g-card_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
    background-color: #333;
  }
  .g-card--smo .g-card_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-card--smo .g-card_body {
    flex: 1;
    font-weight: 600;
  }
  .g-card--smo {
    padding: 7px 7px 10px;
  }
  .g-card--smo .g-card_body {
    margin: 0.3em 0;
    font-size: 1.3rem;
    text-align: center;
  }
  .g-card--smo .g-card_foot {
    font-size: 1.2rem;
    text-align: center;
  }
  .g-carousel-def .g-carousel_prev,
.g-carousel-def .g-carousel_next {
    display: none;
  }
  .g-clamp--smo[data-clamping=true] {
    /* stylelint-disable */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    /* stylelint-enable */
  }
  .g-clearfix--smo::before, .g-clearfix--smo::after {
    display: table;
    content: "";
  }
  .g-clearfix--smo::after {
    clear: both;
  }
  .g-clip--smo {
    position: absolute !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
            clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }
  .g-column--smo {
    padding: 20px 10px;
  }
  .g-column--smo {
    border: 1px solid #dcdcdc;
    background-color: #f5f5f5;
  }
  .g-column-sm--smo {
    padding: 10px;
  }
  .g-column-alert--smo {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
  }
  .g-container--smo {
    width: 100%;
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    margin: auto;
  }
  .g-display-f--smo {
    display: flex !important;
  }
  .g-display-b--smo {
    display: block !important;
  }
  .g-display-ib--smo {
    display: inline-block !important;
  }
  .g-display-i--smo {
    display: inline !important;
  }
  .g-display-h--smo {
    visibility: hidden !important;
  }
  .g-display-v--smo {
    visibility: visible !important;
  }
  .g-display-n--smo {
    display: none !important;
  }
  .g-dl-h--smo {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .g-dl-h--smo .g-dl_h {
    padding-right: 20px;
    color: #7d7d7d;
    grid-column: 1/2;
    white-space: nowrap;
  }
  .g-dl-h--smo .g-dl_body {
    grid-column: 2/3;
  }
  .g-dl-h--smo .g-dl_data {
    display: block;
    padding: 5px 0;
  }
  .g-dl-v--smo .g-dl_h {
    color: #7d7d7d;
  }
  .g-dl-v--smo .g-dl_body + .g-dl_h {
    margin-top: 20px;
  }
  .g-dl-v--smo .g-dl_data {
    display: block;
  }
  .g-dl-line--smo.g-dl-h--smo, .g-dl-line--smo.g-dl-h, .g-dl-line.g-dl-h--smo {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--smo.g-dl-h--smo .g-dl_h,
.g-dl-line--smo.g-dl-h--smo .g-dl_body, .g-dl-line--smo.g-dl-h .g-dl_h,
.g-dl-line--smo.g-dl-h .g-dl_body, .g-dl-line.g-dl-h--smo .g-dl_h,
.g-dl-line.g-dl-h--smo .g-dl_body {
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--smo.g-dl-h--smo .g-dl_data, .g-dl-line--smo.g-dl-h .g-dl_data, .g-dl-line.g-dl-h--smo .g-dl_data {
    padding: 20px 0;
  }
  .g-dl-line--smo.g-dl-v--smo, .g-dl-line--smo.g-dl-v, .g-dl-line.g-dl-v--smo {
    border-bottom: 1px solid #dcdcdc;
  }
  .g-dl-line--smo.g-dl-v--smo .g-dl_h, .g-dl-line--smo.g-dl-v .g-dl_h, .g-dl-line.g-dl-v--smo .g-dl_h {
    padding-top: 18px;
    border-top: 1px solid #dcdcdc;
  }
  .g-dl-line--smo.g-dl-v--smo .g-dl_body + .g-dl_h, .g-dl-line--smo.g-dl-v .g-dl_body + .g-dl_h, .g-dl-line.g-dl-v--smo .g-dl_body + .g-dl_h {
    margin-top: 0;
  }
  .g-dl-line--smo.g-dl-v--smo .g-dl_body, .g-dl-line--smo.g-dl-v .g-dl_body, .g-dl-line.g-dl-v--smo .g-dl_body {
    padding-bottom: 18px;
  }
  .g-dl-line--smo.g-dl-v--smo .g-dl_data, .g-dl-line--smo.g-dl-v .g-dl_data, .g-dl-line.g-dl-v--smo .g-dl_data {
    padding: 0;
  }
  .g-dl-noTopLine--smo.g-dl-h--smo .g-dl_h:first-child,
.g-dl-noTopLine--smo.g-dl-h--smo .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine--smo.g-dl-h .g-dl_h:first-child,
.g-dl-noTopLine--smo.g-dl-h .g-dl_h:first-child + .g-dl_body, .g-dl-noTopLine.g-dl-h--smo .g-dl_h:first-child,
.g-dl-noTopLine.g-dl-h--smo .g-dl_h:first-child + .g-dl_body {
    border-top-color: transparent;
  }
  .g-dl-noTopLine--smo.g-dl-v--smo .g-dl_h:first-child, .g-dl-noTopLine--smo.g-dl-v .g-dl_h:first-child, .g-dl-noTopLine.g-dl-v--smo .g-dl_h:first-child {
    border-top-color: transparent;
  }
  .g-dl-news--smo.g-dl-h--smo .g-dl_h, .g-dl-news--smo.g-dl-h .g-dl_h, .g-dl-news.g-dl-h--smo .g-dl_h {
    display: flex;
    align-items: flex-start;
    padding-right: 35px;
  }
  .g-dl-news--smo.g-dl-h--smo .g-dl_h .g-label, .g-dl-news--smo.g-dl-h .g-dl_h .g-label, .g-dl-news.g-dl-h--smo .g-dl_h .g-label {
    width: 95px;
    margin: 0 20px 0 0;
    text-align: center;
  }
  .g-dl-news--smo.g-dl-h--smo .g-dl_data, .g-dl-news--smo.g-dl-h .g-dl_data, .g-dl-news.g-dl-h--smo .g-dl_data {
    display: flex;
    align-items: center;
  }
  .g-dl-news--smo.g-dl-v--smo .g-dl_h, .g-dl-news--smo.g-dl-v .g-dl_h, .g-dl-news.g-dl-v--smo .g-dl_h {
    padding-bottom: 5px;
  }
  .g-dl-news--smo.g-dl-v--smo .g-dl_h .g-label, .g-dl-news--smo.g-dl-v .g-dl_h .g-label, .g-dl-news.g-dl-v--smo .g-dl_h .g-label {
    width: 95px;
    margin: 0 10px 0 0;
    text-align: center;
  }
  .g-dl-plain--smo .g-dl_h {
    padding-top: 5px;
    clear: left;
    float: left;
    font-weight: 600;
  }
  .g-dl-plain--smo .g-dl_body {
    padding-top: 5px;
  }
  .g-float-l--smo {
    float: left !important;
  }
  .g-float-r--smo {
    float: right !important;
  }
  .g-float-n--smo {
    float: none !important;
  }
  .g-flow--smo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -2px -7px;
  }
  .g-flow--smo > * {
    margin: 2px 7px;
  }
  .g-flow-xs--smo {
    margin: -1px -2px;
  }
  .g-flow-xs--smo > * {
    margin: 1px 2px;
  }
  .g-flow-sm--smo {
    margin: -2px -4px;
  }
  .g-flow-sm--smo > * {
    margin: 2px 4px;
  }
  .g-flow-lg--smo {
    margin: -5px -10px;
  }
  .g-flow-lg--smo > * {
    margin: 5px 10px;
  }
  .g-flow-xl--smo {
    margin: -5px -20px;
  }
  .g-flow-xl--smo > * {
    margin: 5px 20px;
  }
  .g-flow-nowrap--smo {
    flex-wrap: nowrap;
  }
  .g-font-xs--smo {
    font-size: 1rem;
  }
  .g-font-sm--smo {
    font-size: 1.2rem;
  }
  .g-font-md--smo {
    font-size: 1.4rem;
  }
  .g-font-lg--smo {
    font-size: 1.6rem;
  }
  .g-font-xl--smo {
    font-size: 1.8rem;
  }
  .g-foot--smo {
    margin-top: 15px;
  }
  .g-foot-xs--smo {
    margin-top: 5px;
  }
  .g-foot-sm--smo {
    margin-top: 10px;
  }
  .g-foot-lg--smo {
    margin-top: 20px;
  }
  .g-foot-xl--smo {
    margin-top: 30px;
  }
  .g-full--smo {
    position: relative;
    right: 50%;
    left: 50%;
    width: 100vw;
    margin-right: -50vw;
    margin-left: -50vw;
  }
  .g-fw--smo {
    width: 100% !important;
  }
  .g-grid--smo {
    margin: -10px -10px;
  }
  .g-grid--smo > * {
    padding: 10px 10px;
  }
  .g-grid--smo {
    display: flex;
    align-items: center;
  }
  .g-grid--smo > * {
    flex: 1;
    background-clip: content-box;
  }
  .g-grid-1--smo {
    flex-wrap: wrap;
  }
  .g-grid-1--smo > * {
    width: 100%;
    flex: 0 auto;
  }
  .g-grid-2--smo {
    flex-wrap: wrap;
  }
  .g-grid-2--smo > * {
    width: 50%;
    flex: 0 auto;
  }
  .g-grid-3--smo {
    flex-wrap: wrap;
  }
  .g-grid-3--smo > * {
    width: 33.3333333333%;
    flex: 0 auto;
  }
  .g-grid-4--smo {
    flex-wrap: wrap;
  }
  .g-grid-4--smo > * {
    width: 25%;
    flex: 0 auto;
  }
  .g-grid-5--smo {
    flex-wrap: wrap;
  }
  .g-grid-5--smo > * {
    width: 20%;
    flex: 0 auto;
  }
  .g-grid-6--smo {
    flex-wrap: wrap;
  }
  .g-grid-6--smo > * {
    width: 16.6666666667%;
    flex: 0 auto;
  }
  .g-head--smo {
    margin-bottom: 15px;
  }
  .g-head-xs--smo {
    margin-bottom: 5px;
  }
  .g-head-sm--smo {
    margin-bottom: 10px;
  }
  .g-head-lg--smo {
    margin-bottom: 20px;
  }
  .g-head-xl--smo {
    margin-bottom: 30px;
  }
  .g-hr--smo {
    display: block;
    height: 1px;
    border: 0;
    background-color: #dcdcdc;
  }
  .g-hr--smo {
    margin: 15px 0;
  }
  .g-hr-sm--smo {
    margin: 5px 0;
  }
  .g-hr-thick--smo {
    height: 2px;
  }
  .g-iconBtn--smo {
    display: inline-block;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: inherit;
    font-size: 1.2rem;
    transition: background-color 0.2s, border-color 0.2s;
  }
  html[data-states~=no-touch] .g-iconBtn--smo:hover {
    border-color: #e81b45;
    background-color: #e81b45;
    color: #fff;
  }
  .g-iconBtn--smo .g-iconBtn_inner {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none !important;
  }
  .g-iconBtn--smo:disabled, .g-iconBtn--smo[aria-disabled=true] {
    cursor: default;
    opacity: 0.3;
    pointer-events: none;
  }
  .g-link--smo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    color: #e81b45;
  }
  .g-link--smo .g-i {
    font-size: 0.9em;
  }
  .g-link--smo .g-i:first-child {
    margin-right: 0.5em;
  }
  .g-link--smo .g-i:last-child {
    margin-left: 0.5em;
  }
  .g-link--smo .g-i-arrow-r {
    font-size: 0.8em;
    transform: translateY(0.1em);
  }
  .g-link--smo .g-i-blank {
    font-size: 0.7em;
    transform: translateY(0.1em);
  }
  .g-link-u--smo {
    text-decoration: underline;
  }
  html[data-states~=no-touch] .g-link-u--smo:hover {
    text-decoration: none;
  }
  .g-list--smo {
    counter-reset: g-list;
  }
  .g-list--smo > * {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .g-list--smo > *::before {
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
    counter-increment: g-list;
    text-indent: 0;
    white-space: nowrap;
  }
  .g-list--smo > * * {
    text-indent: 0;
  }
  .g-list-note--smo {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-note--smo > * {
    margin-top: 0.5em;
  }
  .g-list-note--smo > *:first-child {
    margin-top: 0;
  }
  .g-list-note--smo > *::before {
    content: "※";
  }
  .g-list-ref--smo {
    color: #999;
    font-size: 1.2rem;
  }
  .g-list-ref--smo > * {
    padding-left: 2.5em;
    margin-top: 0.5em;
    text-indent: -2.5em;
  }
  .g-list-ref--smo > *:first-child {
    margin-top: 0;
  }
  .g-list-ref--smo > *::before {
    width: 2em;
    content: "※" counter(g-list, decimal);
  }
  .g-list-ref--smo > *:nth-last-child(n+10), .g-list-ref--smo > *:nth-last-child(n+10) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-ref--smo > *:nth-last-child(n+10)::before, .g-list-ref--smo > *:nth-last-child(n+10) ~ *::before {
    width: 2.5em;
  }
  .g-list-ref--smo > *:nth-last-child(n+100), .g-list-ref--smo > *:nth-last-child(n+100) ~ * {
    padding-left: 4em;
    text-indent: -4em;
  }
  .g-list-ref--smo > *:nth-last-child(n+100)::before, .g-list-ref--smo > *:nth-last-child(n+100) ~ *::before {
    width: 3.5em;
  }
  .g-list-disc--smo > *::before {
    background: radial-gradient(circle at 0.5em 0.7em, currentColor 3px, transparent 3px);
    content: "​";
  }
  .g-list-decimal--smo > *::before {
    content: counter(g-list, decimal) ".";
    text-align: right;
  }
  .g-list-decimal--smo > *:nth-last-child(n+10), .g-list-decimal--smo > *:nth-last-child(n+10) ~ * {
    padding-left: 2.5em;
    text-indent: -2.5em;
  }
  .g-list-decimal--smo > *:nth-last-child(n+10)::before, .g-list-decimal--smo > *:nth-last-child(n+10) ~ *::before {
    width: 2em;
  }
  .g-list-decimal--smo > *:nth-last-child(n+100), .g-list-decimal--smo > *:nth-last-child(n+100) ~ * {
    padding-left: 3em;
    text-indent: -3em;
  }
  .g-list-decimal--smo > *:nth-last-child(n+100)::before, .g-list-decimal--smo > *:nth-last-child(n+100) ~ *::before {
    width: 2.5em;
  }
  .g-list-none--smo > * {
    padding-left: 0;
    margin-top: 0.4em;
    text-indent: 0;
  }
  .g-list-none--smo > *:first-child {
    margin-top: 0;
  }
  .g-list-loose--smo > *:nth-of-type(n+2) {
    margin-top: 1.5em;
  }
  .g-mb-0--smo {
    margin-bottom: 0px !important;
  }
  .g-mb-5--smo {
    margin-bottom: 5px !important;
  }
  .g-mb-10--smo {
    margin-bottom: 10px !important;
  }
  .g-mb-15--smo {
    margin-bottom: 15px !important;
  }
  .g-mb-20--smo {
    margin-bottom: 20px !important;
  }
  .g-mb-25--smo {
    margin-bottom: 25px !important;
  }
  .g-mb-30--smo {
    margin-bottom: 30px !important;
  }
  .g-mb-35--smo {
    margin-bottom: 35px !important;
  }
  .g-mb-40--smo {
    margin-bottom: 40px !important;
  }
  .g-mb-45--smo {
    margin-bottom: 45px !important;
  }
  .g-mb-50--smo {
    margin-bottom: 50px !important;
  }
  .g-media--smo {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
  }
  .g-media--smo .g-media_head {
    padding-right: 50px;
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .g-media--smo .g-media_head a {
    position: relative;
    display: block;
    height: 0;
    padding-bottom: 100%;
  }
  .g-media--smo .g-media_head img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .g-media--smo .g-media_body {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .g-media--smo .g-media_foot {
    padding-top: 10px;
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .g-media--smo .g-media_h {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    font-weight: 600;
  }
  .g-media--smo .g-media_head {
    width: 230px;
  }
  .g-media-sm--smo .g-media_head {
    width: 120px;
  }
  .g-media-lg--smo .g-media_head {
    width: 220px;
  }
  .g-media-row--smo {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
  }
  .g-media-row--smo .g-media_head {
    grid-row: 1/2;
  }
  .g-media-row--smo .g-media_foot {
    padding-top: 0;
    padding-left: 20px;
    grid-column: 3/4;
    grid-row: 1/2;
  }
  .g-menuBtn--smo {
    display: flex;
    width: 120px;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
  }
  .g-menuBtn--smo[aria-expanded=true] .g-menuBtn_i::before {
    bottom: 0;
    transform: rotate(135deg);
  }
  .g-menuBtn--smo[aria-expanded=true] .g-menuBtn_i::after {
    top: 0;
    transform: rotate(-135deg);
  }
  .g-menuBtn--smo[aria-expanded=true] .g-menuBtn_i span {
    opacity: 0;
  }
  .g-menuBtn--smo .g-menuBtn_i {
    position: relative;
    display: block;
    width: 32px;
    height: 20px;
    margin: 5px 0;
  }
  .g-menuBtn--smo .g-menuBtn_i::before, .g-menuBtn--smo .g-menuBtn_i::after,
.g-menuBtn--smo .g-menuBtn_i span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    margin: auto;
    background-color: #323232;
    content: "";
    transition: transform 0.2s, opacity 0.2s;
  }
  .g-menuBtn--smo .g-menuBtn_i::before {
    top: 0;
  }
  .g-menuBtn--smo .g-menuBtn_i::after {
    bottom: 0;
  }
  .g-menuBtn--smo .g-menuBtn_i span {
    top: 0;
    bottom: 0;
  }
  .g-ml-0--smo {
    margin-left: 0px !important;
  }
  .g-ml-5--smo {
    margin-left: 5px !important;
  }
  .g-ml-10--smo {
    margin-left: 10px !important;
  }
  .g-ml-15--smo {
    margin-left: 15px !important;
  }
  .g-ml-20--smo {
    margin-left: 20px !important;
  }
  .g-ml-25--smo {
    margin-left: 25px !important;
  }
  .g-ml-30--smo {
    margin-left: 30px !important;
  }
  .g-ml-35--smo {
    margin-left: 35px !important;
  }
  .g-ml-40--smo {
    margin-left: 40px !important;
  }
  .g-ml-45--smo {
    margin-left: 45px !important;
  }
  .g-ml-50--smo {
    margin-left: 50px !important;
  }
  .g-mr-0--smo {
    margin-right: 0px !important;
  }
  .g-mr-5--smo {
    margin-right: 5px !important;
  }
  .g-mr-10--smo {
    margin-right: 10px !important;
  }
  .g-mr-15--smo {
    margin-right: 15px !important;
  }
  .g-mr-20--smo {
    margin-right: 20px !important;
  }
  .g-mr-25--smo {
    margin-right: 25px !important;
  }
  .g-mr-30--smo {
    margin-right: 30px !important;
  }
  .g-mr-35--smo {
    margin-right: 35px !important;
  }
  .g-mr-40--smo {
    margin-right: 40px !important;
  }
  .g-mr-45--smo {
    margin-right: 45px !important;
  }
  .g-mr-50--smo {
    margin-right: 50px !important;
  }
  .g-mt-0--smo {
    margin-top: 0px !important;
  }
  .g-mt-5--smo {
    margin-top: 5px !important;
  }
  .g-mt-10--smo {
    margin-top: 10px !important;
  }
  .g-mt-15--smo {
    margin-top: 15px !important;
  }
  .g-mt-20--smo {
    margin-top: 20px !important;
  }
  .g-mt-25--smo {
    margin-top: 25px !important;
  }
  .g-mt-30--smo {
    margin-top: 30px !important;
  }
  .g-mt-35--smo {
    margin-top: 35px !important;
  }
  .g-mt-40--smo {
    margin-top: 40px !important;
  }
  .g-mt-45--smo {
    margin-top: 45px !important;
  }
  .g-mt-50--smo {
    margin-top: 50px !important;
  }
  .g-nowrap--smo {
    white-space: nowrap !important;
  }
  .g-nowrap-not--smo {
    white-space: normal !important;
  }
  .g-overflow-h--smo {
    overflow: hidden !important;
  }
  .g-section--smo {
    margin-top: 35px;
  }
  .g-sns-square li {
    max-width: 90px;
    flex-grow: 1;
  }
  .g-stack--smo {
    margin-top: -15px;
  }
  .g-stack--smo > * {
    margin-top: 15px !important;
  }
  .g-stack-xs--smo {
    margin-top: -5px;
  }
  .g-stack-xs--smo > * {
    margin-top: 5px !important;
  }
  .g-stack-sm--smo {
    margin-top: -10px;
  }
  .g-stack-sm--smo > * {
    margin-top: 10px !important;
  }
  .g-stack-lg--smo {
    margin-top: -20px;
  }
  .g-stack-lg--smo > * {
    margin-top: 20px !important;
  }
  .g-stack-xl--smo {
    margin-top: -30px;
  }
  .g-stack-xl--smo > * {
    margin-top: 30px !important;
  }
  .g-table--smo .g-table_el {
    width: 100%;
    border-bottom: 2px solid #dcdcdc;
    border-left: 2px solid #dcdcdc;
    border-spacing: 0;
  }
  .g-table--smo .g-table_th,
.g-table--smo .g-table_td {
    padding: 15px 20px;
  }
  .g-table--smo .g-table_th {
    border-right: 2px solid #fff;
    background-color: #999;
  }
  .g-table--smo .g-table_th:last-child {
    border-right-color: #dcdcdc;
  }
  .g-table--smo .g-table_td {
    border-right: 2px solid #dcdcdc;
    background-color: #fff;
  }
  .g-table--smo .g-table_tr:nth-child(odd) .g-table_td {
    background-color: #ccc;
  }
  .g-table-scroll--smo {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
  .g-table-scroll--smo .g-table_wrapper {
    float: left;
  }
  .g-table-scroll--smo .g-table_el {
    white-space: nowrap;
  }
  .g-textBlock_imgL, .g-textBlock_imgR {
    display: block;
    width: 100%;
    max-width: 341px;
    margin: 0 auto 15px;
  }
  .g-textBtn--smo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-textBtn--smo:disabled, .g-textBtn--smo[aria-disabled=true] {
    color: transparent;
    pointer-events: none;
  }
  html[data-states~=no-touch] .g-textBtn--smo:hover {
    text-decoration: underline;
  }
  .g-textBtn--smo .g-textBtn_i:first-child {
    margin-right: 0.5em;
  }
  .g-textBtn--smo .g-textBtn_i:last-child {
    margin-left: 0.5em;
  }
  .g-toggleGroup--smo {
    display: flex;
  }
  .g-toggleGroup--smo .g-toggleGroup_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    margin: 0 2.5px;
    -webkit-appearance: none;
            appearance: none;
    background: #fff;
    border-radius: 5px;
    color: #e81b45;
    cursor: pointer;
  }
  .g-toggleGroup--smo .g-toggleGroup_btn:disabled, .g-toggleGroup--smo .g-toggleGroup_btn[aria-disabled=true] {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.5);
    color: transparent;
    pointer-events: none;
  }
  .g-toggleGroup--smo .g-toggleGroup_btn[aria-pressed=true] {
    background-color: #e81b45;
    color: #fff;
  }
  .g-toggleGroup--smo .g-toggleGroup_btn {
    width: 35px;
    height: 35px;
  }
  .g-toggleGroup--smo .g-i {
    font-size: 2.1rem;
  }
  .g-u--smo {
    text-decoration: underline !important;
  }
  .g-zoomBtn--smo {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
            appearance: none;
    background: none;
    cursor: pointer;
  }
  .g-zoomBtn--smo .g-zoomBtn_img {
    transition: opacity 0.2s;
  }
  html[data-states~=no-touch] .g-zoomBtn--smo .g-zoomBtn_img:hover {
    opacity: 0.7;
  }
  .g-zoomBtn--smo .g-zoomBtn_i {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    font-size: 2rem;
    pointer-events: none;
  }
  .h1 {
    overflow: hidden;
    padding-left: 70px;
    font-size: 2rem;
    line-height: 1.35;
  }
  .h1 img {
    transform: translateX(-80px);
  }
  .gNav li {
    margin: 10px 2px 0;
    white-space: nowrap;
  }
}

@media (min-width: 769px) and (max-width: 999px) {
  /**/
}