﻿html,
body,
#app {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
:root {
  --color-main: #de2c3b;
  --color-main-rgb: 222, 44, 59;
  --color-main-thin: #ef5763;
  --color-sub: #3867be;
  --color-base: #f9f7f7;
  --text-color-default: #191919;
  --text-color-default-rgb: 25, 25, 25;
  --text-color-gray-dark: #878787;
  --text-color-gray-light: #c2c2c2;
  --text-color-placeholder: var(--text-color-gray-light);
  --input-color: #fff;
  --input-border-color: #ededed;
  --background-color: #fff;
  --font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,
    sans-serif;
}

/*ページ全体の構成*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl,
dd,
dt,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
html {
  font-size: 62.5%;
}

body {
  color: var(--text-color-default);
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  letter-spacing: 0;
}

input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='number'],
textarea,
select {
  padding: 9px 8px;
  background-color: var(--input-color);
  border: 1px solid var(--input-border-color);
  color: var(--text-color-default);
  border-radius: 5px;
  font-size: 1.6rem;
  line-height: 1.2;
}

textarea {
  line-height: 1.6;
  width: 100%;
}

::placeholder {
  color: var(--text-color-placeholder);
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%228%22%20height%3D%226%22%20viewBox%3D%220%200%208%206%22%3E%20%3Cpath%20id%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2_22%22%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%2022%22%20d%3D%22M4%2C0%2C8%2C6H0Z%22%20transform%3D%22translate(8%206)%20rotate(180)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: right 7px center;
  padding-right: 25px;
  cursor: pointer;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  border-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@media (max-width: 768px) {
  html {
    line-height: 2;
  }
}

/* リンク */
a {
  overflow: visible;
}
a,
a:link,
a:visited {
  color: #0d6cbe;
  text-decoration: none;
}
a:hover,
a:active {
  color: #0b5ca3;
  text-decoration: underline;
}

a.link_underline,
a.link_underline:link,
a.link_underline:visited {
  text-decoration: underline;
}
a.link_underline:hover,
a.link_underline:active {
  text-decoration: none;
}
.m_top8 {
  margin-top: 8px;
}
.m_top10 {
  margin-top: 10px;
}
.m_top15 {
  margin-top: 15px;
}
.m_top20 {
  margin-top: 20px;
}
.m_top30 {
  margin-top: 30px;
}
.m_top40 {
  margin-top: 40px;
}
.m_btm10 {
  margin-bottom: 10px;
}
.m_btm15 {
  margin-bottom: 15px;
}
.m_btm20 {
  margin-bottom: 20px;
}
.m_btm30 {
  margin-bottom: 30px;
}
.m_btm40 {
  margin-bottom: 40px;
}

.sp_display {
  display: none;
}

.pc_display {
  display: block;
}

.align_r {
  text-align: right;
}
a.color_red,
.color_red {
  color: var(--color-main);
}
a.link_underline,
.link_underline {
  text-decoration: underline;
}
a.link_underline:hover,
.link_underline:hover {
  text-decoration: none;
}

.set_max_width {
  margin: 0 auto;
  width: calc(100% - 30px);
  max-width: 1280px;
}
.default_max_width {
  margin: 0 auto;
  width: calc(100% - 32px);
  max-width: 1280px;
}
.icon_blank,
.icon_blank span {
  display: inline-flex;

  justify-content: flex-end;
}

.icon_blank {
  width: 10px;
  height: 10px;
  border-left: 1px solid;
  border-bottom: 1px solid;
}

.icon_blank span {
  width: 5px;
  height: 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: -2px;
  right: -2px;
  position: relative;
}
.icon_blank::before,
.icon_blank::after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
}
.icon_blank::before {
  border-top: 1px solid;
  top: 0;
  left: 0;
}
.icon_blank::after {
  border-right: 1px solid;
  bottom: 0;
  right: 0;
}

.icon_blank span::after {
  content: '';
  display: block;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: translate(0.5px, 0) rotate(-45deg);
  transform-origin: right center;
  position: absolute;
  top: -1px;
  right: 0;
}
.icon_close {
  width: 11px;
  height: 11px;
  display: inline-block;
  position: relative;
}
.icon_close::before,
.icon_close::after {
  content: '';
  display: block;
  width: 11px;
  height: 2px;
  background-color: var(--text-color-default);
  position: absolute;
  top: 4.5px;
  left: 0;
  transform: rotate(45deg);
}
.icon_close::after {
  transform: rotate(-45deg);
}

.icon_filter {
  position: relative;
  width: 12px;
  height: 11px;
  display: inline-block;
}
.icon_filter span {
  position: relative;
  width: 12px;
  height: 11px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.icon_filter::before,
.icon_filter span::before {
  content: '';
  display: block;
  width: 7px;
  height: 1px;
  background-color: #545454;
  position: absolute;
  top: 2px;
  right: 0;
  box-sizing: content-box;
}
.icon_filter::after,
.icon_filter span::after {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border: 1px solid #545454;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: content-box;
}

.icon_filter span::before {
  top: auto;
  right: auto;
  bottom: 2px;
  left: 0px;
}
.icon_filter span::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
.note_text {
  color: #949494;
  font-size: 1.1rem;
  font-weight: normal;
}

.default_table {
  line-height: 1.4;
}
.default_table.thead_sticky_table {
  border-collapse: separate;
}
.default_table td,
.default_table th {
  padding: 0.9em 0.63em;
  border-bottom: 1px solid #dbdbdb;
}
.default_table th {
  background-color: #f9f7f7;
  font-weight: bold;
}
.default_table.left_border thead th,
.default_table.first_thead_th_clear thead th {
  border-left: 1px solid #dbdbdb;
  border-top: 1px solid #dbdbdb;
}
.default_table.left_border tbody th,
.default_table.left_border tbody td,
.default_table.first_thead_th_clear tbody th,
.default_table.first_thead_th_clear tbody td {
  border-left: 1px solid #dbdbdb;
}
.default_table.left_border thead th:last-child,
.default_table.left_border tbody td:last-child,
.default_table.first_thead_th_clear thead th:last-child,
.default_table.first_thead_th_clear tbody td:last-child {
  border-right: 1px solid #dbdbdb;
}

.default_table td {
  background-color: var(--background-color);
}
.default_table.first_thead_th_clear thead th:first-child {
  background-color: transparent;
  border-left: none;
  border-top: none;
  border-right: none;
}
.thead_sticky_table thead th {
  position: sticky;
  top: 96px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .thead_sticky_table thead th {
    top: 90px;
  }
}
@media (max-width: 768px) {
  .thead_sticky_table thead th {
    top: 99px;
  }
}
.align_left {
  text-align: left;
}
@media (max-width: 768px) {
  .sp_display {
    display: block;
  }

  .pc_display {
    display: none;
  }
}
div#ad_banner468x60 {
  right: 10px;
}
@media (max-width: 1024px) {
  div#ad_banner468x60 {
    display: none;
  }
}

.container {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
main {
  padding-bottom: 100px;
}
header,
.index_menu,
#sp_drawermenu{
    font-feature-settings: "palt" 1;
}
