html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

:is(h2, h3, h4, h5) {
  font-family: var(--serif);
}

p {
  line-height: 1.5;
}

body {
  padding-top: var(--header-height);
  font-family: var(--sans-serif);
  color: #111;
  line-height: 1.5;
}

.container {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.container.w1200 {
  max-width: 1200px;
}
.container.w980 {
  max-width: 980px;
}
.container.w720 {
  max-width: 720px;
}

.ta_center {
  text-align: center !important;
}
.ta_right {
  text-align: right !important;
}

.marker_yellow {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.marker_yellow_vertical {
  background: linear-gradient(to left, transparent 60%, #ff6 60%);
}

.ff_serif {
  font-family: var(--serif);
}
.ff_sans_serif {
  font-family: var(--sans-serif);
}

.hidden {
  display: none;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .main {
  height: var(--header-height);
  border-bottom: 1px solid #ddd;
  background: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .main h1 {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
}
header .main h1 img {
  height: 1.4rem;
  display: block;
}
header .btn_hnav {
  width: 40px;
  height: 40px;
  display: block;
  border: none;
  background: none;
  cursor: pointer;
  position: fixed;
  top: 10px;
  left: 20px;
}
header .btn_hnav span {
  width: 28px;
  height: 2px;
  display: block;
  background: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
header .btn_hnav span::before, header .btn_hnav span::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: #111;
  position: absolute;
  left: 0;
  transition: top 0.2s, transform 0.2s, background 0.2s;
}
header .btn_hnav span::before {
  top: -8px;
}
header .btn_hnav span::after {
  top: 8px;
}
header .btn_hnav.active span {
  background: none;
}
header .btn_hnav.active span::before, header .btn_hnav.active span::after {
  top: 0;
}
header .btn_hnav.active span::before {
  transform: rotate(45deg);
}
header .btn_hnav.active span::after {
  transform: rotate(-45deg);
}
header .btn_hnav:hover span {
  background: #999;
}
header .btn_hnav:hover span::before, header .btn_hnav:hover span::after {
  background: #999;
}
header .btn_hnav.active:hover span {
  background: none;
}
header .hnav {
  width: 320px;
  height: 100svh;
  padding-top: var(--header-height);
  position: fixed;
  z-index: 1;
  background: #fff;
  left: 0;
  top: 0;
  transform: translate(-100%, 0);
  transition: transform 0.4s;
}
header .hnav.active {
  transform: translate(0, 0);
}
header .hnav.active::before {
  opacity: 1;
}
header .hnav::before {
  content: "";
  width: 100%;
  height: 100svh;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
header .hnav nav {
  position: relative;
  z-index: 1;
}
header .hnav nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
header .hnav nav ul li {
  border-bottom: 1px solid #eee;
}
header .hnav nav ul li a {
  padding: 1em;
  padding-right: 30px;
  display: block;
  text-decoration: none;
  color: #111;
  position: relative;
  transition: color 0.2s;
}
header .hnav nav ul li a::after {
  content: "\e5cc";
  font-family: material icons;
  color: var(--blue);
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 5px;
  top: calc(50% - 10px);
  opacity: 0.6;
  transition: right 0.4s, opacity 0.4s;
}
header .hnav nav ul li a span {
  margin-left: 0;
  transition: margin-left 0.4s;
}
header .hnav nav ul li a:hover {
  color: var(--red);
}
header .hnav nav ul li a:hover::after {
  right: 0;
  opacity: 1;
}
header .hnav nav ul li a:hover span {
  margin-left: 5px;
}

footer {
  background: var(--blue);
}
footer .copy {
  padding: 120px 0;
}
footer .copy p {
  text-align: center;
  font-size: 0.875rem;
  color: #fafafa;
}

#type_list ul.type_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1vw;
}
#type_list ul.type_list li {
  position: relative;
}
#type_list ul.type_list li:hover .wrap {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  z-index: 1;
}
#type_list ul.type_list li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#type_list ul.type_list li > a span {
  display: inline-block;
  text-indent: -9999px;
}
#type_list ul.type_list li .wrap {
  padding: 0.5vw;
  background: #fff;
  position: relative;
  will-change: transform, box-shadow;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid #ddd;
}
#type_list ul.type_list li .wrap .img img {
  width: 100%;
  display: block;
}
#type_list ul.type_list li .wrap .txt {
  padding: 12px 0;
  text-align: center;
}
#type_list ul.type_list li .wrap .txt .name {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--sans-serif);
  color: var(--blue);
}
#type_list ul.type_list li .wrap .txt .name.type01 {
  color: var(--type01_01);
}
#type_list ul.type_list li .wrap .txt .name.type02 {
  color: var(--type02_01);
}
#type_list ul.type_list li .wrap .txt .name.type03 {
  color: var(--type03_01);
}
#type_list ul.type_list li .wrap .txt .name.type04 {
  color: var(--type04_01);
}
#type_list ul.type_list li .wrap .txt .sub {
  font-size: 0.75rem;
  font-weight: 600;
}
#type_list ul.type_list li .wrap .txt .sub::before, #type_list ul.type_list li .wrap .txt .sub::after {
  content: "-";
  margin: 0 1em;
}
#type_list ul.type_list li .wrap .txt .description {
  margin-top: 12px;
  font-size: 0.875rem;
  color: #666;
}
#type_list .top {
  padding: 40px 0;
}
#type_list .top h1 {
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--serif);
}
#type_list .main {
  padding: 100px 0;
  background: #fafafa;
}

#type_single.type01 .top {
  border-color: var(--type01_01);
}
#type_single.type01 .top::before {
  background-color: var(--type01_02);
}
#type_single.type01 .top .wrap .txt .sub {
  color: var(--type01_01);
}
#type_single.type01 .main article h2 {
  border-color: var(--type01_01);
  background-color: var(--type01_02);
  color: var(--type01_01);
}
#type_single.type01 .main article dl dt h3 {
  color: var(--type01_01);
}
#type_single.type01 .main article dl.result dt .progress .bar {
  background-color: var(--type01_02);
}
#type_single.type01 .main article dl.result dt .progress .bar .point {
  background-color: var(--type01_01);
}
#type_single.type01 .main article .type {
  border-color: var(--type01_01);
}
#type_single.type01 .main article .type h3 {
  color: var(--type01_01);
}
#type_single.type02 .top {
  border-color: var(--type02_01);
}
#type_single.type02 .top::before {
  background-color: var(--type02_02);
}
#type_single.type02 .top .wrap .txt .sub {
  color: var(--type02_01);
}
#type_single.type02 .main article h2 {
  border-color: var(--type02_01);
  background-color: var(--type02_02);
  color: var(--type02_01);
}
#type_single.type02 .main article dl dt h3 {
  color: var(--type02_01);
}
#type_single.type02 .main article dl.result dt .progress .bar {
  background-color: var(--type02_02);
}
#type_single.type02 .main article dl.result dt .progress .bar .point {
  background-color: var(--type02_01);
}
#type_single.type02 .main article .type {
  border-color: var(--type02_01);
}
#type_single.type02 .main article .type h3 {
  color: var(--type02_01);
}
#type_single.type03 .top {
  border-color: var(--type03_01);
}
#type_single.type03 .top::before {
  background-color: var(--type03_02);
}
#type_single.type03 .top .wrap .txt .sub {
  color: var(--type03_01);
}
#type_single.type03 .main article h2 {
  border-color: var(--type03_01);
  background-color: var(--type03_02);
  color: var(--type03_01);
}
#type_single.type03 .main article dl dt h3 {
  color: var(--type03_01);
}
#type_single.type03 .main article dl.result dt .progress .bar {
  background-color: var(--type03_02);
}
#type_single.type03 .main article dl.result dt .progress .bar .point {
  background-color: var(--type03_01);
}
#type_single.type03 .main article .type {
  border-color: var(--type03_01);
}
#type_single.type03 .main article .type h3 {
  color: var(--type03_01);
}
#type_single.type04 .top {
  border-color: var(--type04_01);
}
#type_single.type04 .top::before {
  background-color: var(--type04_02);
}
#type_single.type04 .top .wrap .txt .sub {
  color: var(--type04_01);
}
#type_single.type04 .main article h2 {
  border-color: var(--type04_01);
  background-color: var(--type04_02);
  color: var(--type04_01);
}
#type_single.type04 .main article dl dt h3 {
  color: var(--type04_01);
}
#type_single.type04 .main article dl.result dt .progress .bar {
  background-color: var(--type04_02);
}
#type_single.type04 .main article dl.result dt .progress .bar .point {
  background-color: var(--type04_01);
}
#type_single.type04 .main article .type {
  border-color: var(--type04_01);
}
#type_single.type04 .main article .type h3 {
  color: var(--type04_01);
}
#type_single .top {
  border-top: 8px solid var(--red);
  position: relative;
}
#type_single .top::before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(var(--red-rgb), 0.05);
}
#type_single .top .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
}
#type_single .top .wrap .img {
  width: 40%;
}
#type_single .top .wrap .img img {
  max-width: 100%;
  display: block;
}
#type_single .top .wrap .txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
#type_single .top .wrap .txt .result {
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1.25rem;
}
#type_single .top .wrap .txt .name {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#type_single .top .wrap .txt .sub {
  margin-bottom: 10px;
  padding-top: 20px;
  font-weight: 600;
  font-size: 1.75rem;
}
#type_single .top .wrap .txt .sub::before, #type_single .top .wrap .txt .sub::after {
  content: "-";
}
#type_single .top .wrap .txt .sub::before {
  margin-right: 10px;
}
#type_single .top .wrap .txt .sub::after {
  margin-left: 10px;
}
#type_single .top .wrap .txt .description {
  padding-bottom: 20px;
  color: #666;
  font-size: 1.25rem;
}
#type_single .top .wrap .txt .status ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#type_single .top .wrap .txt .status ul li .cat {
  padding: 0 1em;
  line-height: 2em;
  border-radius: 1em;
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}
#type_single .nav {
  height: var(--header-height);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 100;
}
#type_single .nav .wrap {
  position: relative;
  background: #fff;
}
#type_single .nav .wrap::before {
  content: "\e5c5";
  font-family: material icons;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 10px);
}
#type_single .nav .wrap select.nav_select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.5em 1em;
  color: #111;
  background: none;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
#type_single .email {
  margin: 40px 0;
  text-align: center;
}
#type_single .email button {
  width: 100%;
  max-width: 480px;
  height: 60px;
  margin: 0 auto;
  border: 2px solid var(--blue);
  border-radius: 30px;
  background: none;
  color: var(--blue);
  cursor: pointer;
  font-weight: 300;
  transition: background 0.2s, color 0.2s;
}
#type_single .email button:hover {
  background: var(--blue);
  color: #fff;
}
#type_single .email button span {
  font-weight: 600;
  font-size: 1.25rem;
  position: relative;
}
#type_single .email button span::before {
  content: "\e158";
  font-family: "material icons";
  font-weight: 300;
  margin-right: 1em;
}
#type_single .main {
  padding: 100px 0;
  /*background: #fafafa;*/
}
#type_single .main article > *:last-child {
  margin-bottom: 0;
}
#type_single .main article h2 {
  margin: 0 0 2em;
  padding: 0.25em 20px;
  padding-left: 22px;
  border-left: 8px solid var(--type01_01);
  background: var(--type01_02);
  font-size: 2em;
  font-family: var(--sans-serif);
  color: var(--type01_01);
}
#type_single .main article p {
  text-align: justify;
  line-height: 1.8;
}
#type_single .main article .type {
  margin: 40px 0;
  padding: 16px 20px;
  padding-left: 26px;
  border: 1px solid #ddd;
}
#type_single .main article .type > * {
  margin: 0;
}
#type_single .main article .type h3 {
  font-size: 1.5rem;
  font-family: var(--sans-serif);
  text-align: center;
}
#type_single .main article .type p.sub {
  margin: 0;
  font-weight: 600;
  text-align: center;
}
#type_single .main article .type p.sub::before, #type_single .main article .type p.sub::after {
  content: "-";
}
#type_single .main article .type p.sub::before {
  margin-right: 10px;
}
#type_single .main article .type p.sub::after {
  margin-left: 10px;
}
#type_single .main article .type p.description {
  margin-top: 0.5em;
  color: #666;
  text-align: center;
}
#type_single .main article dl {
  margin: 0 0 100px;
  padding: 0;
}
#type_single .main article dl dt, #type_single .main article dl dd {
  margin: 0;
  padding: 0;
}
#type_single .main article dl dt {
  margin-top: 40px;
}
#type_single .main article dl dt h3 {
  width: auto;
  margin: 0 0 0.5em;
  font-size: 1.5rem;
  font-family: var(--sans-serif);
  display: inline-block;
  letter-spacing: 0.1em;
}
#type_single .main article dl dd {
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: #fff;
}
#type_single .main article dl dd > *:first-child {
  margin-top: 0;
}
#type_single .main article dl dd > *:last-child {
  margin-bottom: 0;
}
#type_single .main article dl dd p {
  font-size: 1.125rem;
}
#type_single .main article dl.result {
  border: 1px solid #eee;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: #fff;
}
#type_single .main article dl.result dt {
  margin: 0;
  padding: 20px;
  position: relative;
  border-top: 1px solid #ddd;
}
#type_single .main article dl.result dt:first-child {
  border-top: none;
}
#type_single .main article dl.result dt .progress {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}
#type_single .main article dl.result dt .progress .bar {
  width: 100%;
  height: 8px;
  border-radius: 10px;
  position: relative;
  background: rgba(var(--blue02-rgb), 0.5);
}
#type_single .main article dl.result dt .progress .bar .point {
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  background: var(--blue02);
  border: 2px solid #fff;
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
}
#type_single .main article dl.result dt .progress .bar .point::before {
  content: attr(data-num);
  width: 60px;
  height: 40px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  display: block;
  position: absolute;
  bottom: -50px;
  left: calc(50% - 30px);
}
#type_single .main article dl.result dt .progress .bar .point::after {
  content: "";
  display: block;
  height: 8.6602540378px;
  width: 20px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -12px;
  left: calc(50% - 10px);
  background: #fff;
}
#type_single .main article dl.result dt .progress .label {
  margin-top: 4px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#type_single .main article dl.result dt .progress .label span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  display: inline-block;
}
#type_single .main article dl.result dt button {
  height: 32px;
  padding: 0 1em;
  position: absolute;
  right: 20px;
  color: #333;
  border: 1px solid #999;
  border-radius: 8px;
  background: #fff;
  font-size: 0.75rem;
  cursor: pointer;
}
#type_single .main article dl.result dt button:hover {
  border-color: #666;
  background: #f5f5f5;
}
#type_single .main article dl.result dt button.active {
  border-color: #666;
  background: #f5f5f5;
}
#type_single .main article dl.result dt h3 {
  letter-spacing: 0;
  font-weight: 600;
  font-size: 1.25rem;
}
#type_single .main article dl.result dd {
  display: none;
  margin: 0 20px 40px;
  background: none;
  box-shadow: none;
  border: none;
  background: #fafafa;
}
#type_single .main article dl.result dd p {
  font-size: 1rem;
}
#type_single .bottom {
  background: #fafafa;
}
#type_single .bottom ul.type_list {
  height: auto;
  margin: 0;
  padding: 40px 0;
  list-style: none;
}
#type_single .bottom ul.type_list li {
  width: 300px;
  position: relative;
}
#type_single .bottom ul.type_list li > a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#type_single .bottom ul.type_list li > a span {
  display: none;
}
#type_single .bottom ul.type_list li .wrap {
  background: #fff;
  transition: transform 0.4s, box-shadow 0.4s;
}
#type_single .bottom ul.type_list li .wrap .img img {
  width: 100%;
  display: block;
}
#type_single .bottom ul.type_list li .wrap .txt {
  padding: 16px 16px;
  text-align: center;
}
#type_single .bottom ul.type_list li .wrap .txt .name {
  font-size: 1.25rem;
  font-family: var(--sans-serif);
  font-weight: 600;
  color: #111;
}
#type_single .bottom ul.type_list li .wrap .txt .name.type01 {
  color: var(--type01_01);
}
#type_single .bottom ul.type_list li .wrap .txt .name.type02 {
  color: var(--type02_01);
}
#type_single .bottom ul.type_list li .wrap .txt .name.type03 {
  color: var(--type03_01);
}
#type_single .bottom ul.type_list li .wrap .txt .name.type04 {
  color: var(--type04_01);
}
#type_single .bottom ul.type_list li .wrap .txt .sub {
  font-size: 0.75rem;
  font-weight: 600;
}
#type_single .bottom ul.type_list li .wrap .txt .sub::before, #type_single .bottom ul.type_list li .wrap .txt .sub::after {
  content: "-";
  margin: 0 0.5em;
}
#type_single .bottom ul.type_list li .wrap .txt .description {
  margin-top: 1em;
  font-size: 0.875rem;
  color: #999;
}
#type_single .bottom ul.type_list li:hover .wrap {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#type_single .bottom .swiper .swiper-button-prev, #type_single .bottom .swiper .swiper-button-next {
  width: 100px;
  height: 100%;
  margin-top: 0;
  top: 0;
}
#type_single .bottom .swiper .swiper-button-prev {
  left: 0;
  background: linear-gradient(to right, rgb(250, 250, 250), rgba(250, 250, 250, 0.8) 40%, rgba(250, 250, 250, 0));
}
#type_single .bottom .swiper .swiper-button-next {
  right: 0;
  background: linear-gradient(to left, rgb(250, 250, 250), rgba(250, 250, 250, 0.8) 40%, rgba(250, 250, 250, 0));
}
#type_single .bottom .swiper .swiper-button-prev::after, #type_single .bottom .swiper .swiper-button-next::after {
  font-size: 2rem;
}
#type_single .bottom .result {
  padding: 100px 0;
  background: #fafafa;
}
#type_single .bottom .result h3 {
  margin: 100px 0 60px;
  color: var(--blue);
  font-size: 2rem;
  text-align: center;
  font-family: var(--sans-serif);
}
#type_single .bottom .result h3 span {
  margin-bottom: 10px;
  padding: 0 0.5em;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-size: 1.25rem;
}
#type_single .bottom .result p {
  text-align: center;
}
#type_single .bottom .result .link {
  margin: 40px 0 0;
  text-align: center;
}
#type_single .bottom .result .link a {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1.5em;
  font-size: 1.25rem;
  line-height: 60px;
  color: #fff;
  background: var(--red);
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.4s;
  display: block;
  position: relative;
}
#type_single .bottom .result .link a::after {
  content: "\e5c8";
  font-family: "material icons";
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: calc(50% - 15px);
  right: 20px;
  transition: right 0.4s;
}
#type_single .bottom .result .link a:hover {
  background: var(--red02);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}
#type_single .bottom .result .link a:hover::after {
  right: 10px;
}
#type_single .bottom .result .greeting {
  margin: 60px 0;
}
#type_single .bottom .result .greeting h2 {
  text-align: center;
  color: var(--red);
  font-size: 2.5rem;
  font-family: var(--sans-serif);
}
#type_single .bottom .result ul.img {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 4vw;
}
#type_single .bottom .result ul.img li {
  flex: 1;
}
#type_single .bottom .result ul.img li img {
  max-width: 100%;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#type_single .form_email {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
}
#type_single .form_email .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(250, 250, 250, 0.95);
}
#type_single .form_email .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#type_single .form_email .wrap .set {
  width: calc(100% - 8vw);
  max-width: 480px;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
#type_single .form_email .wrap .set button {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}
#type_single .form_email .wrap .set button::before {
  content: "\e5cd";
  font-family: material icons;
  font-size: 40px;
}
#type_single .form_email .wrap .set button:hover {
  color: var(--blue02);
}
#type_single .form_email .wrap .set .inner {
  display: flex;
  flex-direction: column;
}
#type_single .form_email .wrap .set .inner h2 {
  text-align: center;
  margin: 0;
}
#type_single .form_email .wrap .set .inner p {
  text-align: center;
  margin: 10px 0 40px;
  color: #666;
}
#type_single .form_email .wrap .set .inner input[type=email] {
  width: 100%;
  padding: 0.5em 1em;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #999;
}
#type_single .form_email .wrap .set .inner input[type=submit] {
  width: 100%;
  margin-top: 20px;
  background: var(--red);
  color: #fff;
  border: none;
  height: 40px;
  border-radius: 20px;
  transition: background 0.2s;
  cursor: pointer;
}
#type_single .form_email .wrap .set .inner input[type=submit]:hover {
  background: var(--red02);
}
#type_single .form_email .wrap .set .inner .wpcf7 {
  position: relative;
}
#type_single .form_email .wrap .set .inner .wpcf7 .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0);
}

#home {
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
}
#home .greeting {
  width: 100%;
}
#home .greeting article h2 {
  font-size: 2.5rem;
  text-align: center;
}
#home .greeting article p {
  text-align: center;
  color: #666;
}
#home .greeting .link {
  margin: 100px 0 0;
}
#home .greeting .link a {
  max-width: 480px;
  margin: 0 auto;
  display: block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.25rem;
  line-height: 60px;
  border-radius: 30px;
  position: relative;
  transition: background 0.2s;
}
#home .greeting .link a:hover {
  background: var(--red02);
}

#diagnose .progress {
  width: 200px;
  height: var(--header-height);
  padding: 0 20px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
}
#diagnose .progress label {
  text-align: right;
  font-size: 0.75rem;
  color: #666;
}
#diagnose .top {
  padding: 40px 0;
}
#diagnose .top h1 {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 2.5rem;
}
#diagnose .top h1 + p {
  text-align: center;
}
#diagnose .main {
  padding: 60px 0 0;
  background: #fafafa;
}
#diagnose ul.diagnose_list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  border-radius: 8px;
}
#diagnose ul.diagnose_list li {
  margin-top: -1px;
  padding: 40px 20px 0;
  display: none;
  border-top: 1px solid #eee;
}
#diagnose ul.diagnose_list li > * {
  opacity: 0.2;
  transition: opacity 0.2s;
}
#diagnose ul.diagnose_list li.active > * {
  opacity: 1;
}
#diagnose ul.diagnose_list li .ttl {
  width: 100%;
}
#diagnose ul.diagnose_list li .ttl label {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: var(--serif);
  text-align: center;
}
#diagnose ul.diagnose_list li .input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#diagnose ul.diagnose_list li .input .label span {
  font-weight: 600;
}
#diagnose ul.diagnose_list li .input .label:first-child {
  color: var(--red);
}
#diagnose ul.diagnose_list li .input .label:last-child {
  color: var(--blue);
}
#diagnose ul.diagnose_list li .input .radio {
  margin: 40px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
}
#diagnose ul.diagnose_list li .input .radio label {
  padding: 4px;
  display: block;
  position: relative;
  cursor: pointer;
}
#diagnose ul.diagnose_list li .input .radio label input[type=radio] {
  position: absolute;
  opacity: 0;
}
#diagnose ul.diagnose_list li .input .radio label input[type=radio] + span {
  width: 40px;
  height: 40px;
  border: 2px solid #666;
  border-radius: 50%;
  display: block;
  transition: background 0.2s;
}
#diagnose ul.diagnose_list li .input .radio label input[type=radio] + span:hover {
  background: #666;
}
#diagnose ul.diagnose_list li .input .radio label input[type=radio]:checked + span {
  background: #666;
}
#diagnose ul.diagnose_list li .input .radio label:first-child input[type=radio] + span, #diagnose ul.diagnose_list li .input .radio label:last-child input[type=radio] + span {
  width: 60px;
  height: 60px;
}
#diagnose ul.diagnose_list li .input .radio label:nth-child(3) input[type=radio] + span, #diagnose ul.diagnose_list li .input .radio label:nth-child(4) input[type=radio] + span {
  width: 30px;
  height: 30px;
}
#diagnose ul.diagnose_list li .input .radio label:first-child input[type=radio] + span {
  border-color: var(--red);
}
#diagnose ul.diagnose_list li .input .radio label:first-child input[type=radio] + span:hover {
  background: var(--red);
}
#diagnose ul.diagnose_list li .input .radio label:first-child input[type=radio]:checked + span {
  background: var(--red);
}
#diagnose ul.diagnose_list li .input .radio label:last-child input[type=radio] + span {
  border-color: var(--blue);
}
#diagnose ul.diagnose_list li .input .radio label:last-child input[type=radio] + span:hover {
  background: var(--blue);
}
#diagnose ul.diagnose_list li .input .radio label:last-child input[type=radio]:checked + span {
  background: var(--blue);
}
#diagnose ul.diagnose_list li:nth-child(-n+5) {
  display: block;
}
#diagnose .btn_set {
  padding: 60px 0 100px;
  text-align: center;
}
#diagnose .btn_set button {
  width: 100%;
  max-width: 480px;
  height: 60px;
  margin: 0 auto;
  display: block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.25rem;
  line-height: 60px;
  border-radius: 30px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
#diagnose .btn_set button:disabled {
  opacity: 0.5;
  cursor: default;
}
#diagnose .btn_set button.btn_next {
  background: var(--blue);
}
#diagnose .btn_set button.btn_next:hover {
  background: var(--blue02);
}
#diagnose .btn_set button.btn_next:disabled:hover {
  background: var(--blue);
}
#diagnose .btn_set button.btn_submit {
  display: none;
  background: var(--red);
}
#diagnose .btn_set button.btn_submit:hover {
  background: var(--red02);
}
#diagnose .btn_set button.btn_submit:hover:disabled:hover {
  background: var(--red);
}

@media screen and (max-width: 1199.98px) {
  header .main h1 {
    font-size: 1.25rem;
    gap: 0.25rem;
  }
  header .main h1 img {
    height: 1.25rem;
  }
  #type_single .top .wrap .txt .name {
    font-size: 2.5rem;
  }
  #type_list ul.type_list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #type_list ul.type_list li .wrap .txt .name {
    font-size: 1.175rem;
  }
  #diagnose ul.diagnose_list li .ttl label {
    font-size: 1.25rem;
  }
  #diagnose ul.diagnose_list li .input .radio {
    gap: 1.75vw;
  }
  #diagnose ul.diagnose_list li .input .radio label input[type=radio] + span {
    width: 36px;
    height: 36px;
  }
  #diagnose ul.diagnose_list li .input .radio label:first-child input[type=radio] + span, #diagnose ul.diagnose_list li .input .radio label:last-child input[type=radio] + span {
    width: 52px;
    height: 52px;
  }
}
@media screen and (min-width: 768px) {
  .onlySP {
    display: none;
  }
}
@media screen and (max-width: 767.98px) {
  header .btn_hnav {
    left: 10px;
  }
  .onlyPC {
    display: none;
  }
  footer .copy {
    padding: 40px 0;
  }
  footer .copy p {
    font-size: 0.75rem;
  }
  #type_list ul.type_list {
    grid-template-columns: 1fr 1fr;
  }
  #type_list ul.type_list li .wrap .txt .name {
    font-size: 1.25rem;
  }
  #type_single .top .wrap {
    flex-direction: column;
  }
  #type_single .top .wrap .img {
    width: 100%;
  }
  #type_single .top .wrap .img img {
    max-width: 100%;
    display: block;
  }
  #type_single .top .wrap .txt {
    padding: 40px 0;
    text-align: center;
  }
  #type_single .top .wrap .txt .name {
    height: auto;
    font-size: 2rem;
  }
  #type_single .top .wrap .txt .sub {
    font-size: 1.25rem;
    position: relative;
  }
  #type_single .top .wrap .txt .sub::before, #type_single .top .wrap .txt .sub::after {
    content: "-";
    margin: 0 0.5em;
  }
  #type_single .top .wrap .txt .description {
    padding: 40px 0 0;
  }
  #type_single .nav {
    width: 100%;
    height: auto;
    justify-content: center;
    position: sticky;
    top: var(--header-height);
    right: inherit;
    z-index: 1;
  }
  #type_single .nav::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    z-index: -1;
  }
  #type_single .nav .wrap {
    width: 100%;
    padding: 12px 20px;
    background: #fff;
  }
  #type_single .nav .wrap::before {
    right: 20px;
  }
  #type_single .nav .wrap select.nav_select {
    width: 100%;
    text-align: center;
    border-color: #999;
  }
  #type_single .main {
    padding: 60px 0 20px;
  }
  #type_single .main article h2 {
    font-size: 1.75rem;
  }
  #type_single .main article .type {
    margin: 30px 0;
    padding: 16px 20px;
  }
  #type_single .main article .type > * {
    margin: 0;
    text-align: center;
  }
  #type_single .main article .type h3 {
    font-size: 1.5rem;
  }
  #type_single .main article .type p.sub {
    font-size: 0.875rem;
    position: relative;
  }
  #type_single .main article .type p.sub::before, #type_single .main article .type p.sub::after {
    content: "-";
    margin: 0 0.5em;
  }
  #type_single .main article dl {
    margin: 0 0 60px;
  }
  #type_single .main article dl dt {
    margin-top: 20px;
  }
  #type_single .main article dl dt h3 {
    font-size: 1.25rem;
  }
  #type_single .main article dl dd {
    padding: 16px;
  }
  #type_single .main article dl dd p {
    font-size: 1rem;
  }
  #type_single .main article dl.result dt button {
    padding: 0 0.5em;
    right: 10px;
  }
  #type_single .bottom ul.type_list {
    padding: 20px 0;
  }
  #type_single .bottom ul.type_list li .wrap {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  #type_single .bottom ul.type_list li .wrap .txt {
    padding: 16px 12px;
  }
  #type_single .bottom .swiper .swiper-button-prev, #type_single .bottom .swiper .swiper-button-next {
    width: 40px;
  }
  #type_single .bottom .swiper .swiper-button-prev::after, #type_single .bottom .swiper .swiper-button-next::after {
    font-size: 1rem;
  }
  #type_single .bottom .result {
    padding: 60px 0 100px;
  }
  #type_single .bottom .result h3 {
    margin: 60px 0 40px;
    font-size: 1.5rem;
  }
  #type_single .bottom .result h3 span {
    font-size: 1rem;
  }
  #type_single .bottom .result p {
    font-size: 0.875rem;
  }
  #type_single .bottom .result .link {
    margin-top: 30px;
  }
  #type_single .bottom .result .link a {
    width: calc(100% - 40px);
    max-width: 320px;
    font-size: 1rem;
    line-height: 50px;
    border-radius: 25px;
  }
  #type_single .bottom .result .link a::after {
    right: 15px;
  }
  #type_single .bottom .result .link a:hover::after {
    right: 10px;
  }
  #type_single .bottom .result .greeting {
    margin: 60px 0;
  }
  #type_single .bottom .result .greeting h2 {
    font-size: 1.5rem;
  }
  #home .greeting article h2 {
    margin: 0;
    font-size: 2.25rem;
  }
  #home .greeting .link {
    margin: 60px 0 0;
  }
  #home .greeting .link a {
    width: calc(100% - 40px);
  }
  #diagnose .progress {
    width: 100%;
    height: auto;
    padding: 10px 10px;
    background: #fff;
    border-top: 1px solid #ddd;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    top: auto;
    bottom: 0;
    z-index: 1001;
  }
  #diagnose .progress label {
    width: 100px;
    line-height: 1;
    font-size: 0.75rem;
    text-align: center;
  }
  #diagnose .progress progress {
    flex: 1;
    width: 100%;
    height: 20px;
  }
  #diagnose .top {
    padding: 40px 0;
  }
  #diagnose .top h1 {
    margin: 0;
    text-align: center;
    font-family: var(--serif);
    font-size: 2.5rem;
  }
  #diagnose .top h1 + p {
    text-align: center;
  }
  #diagnose .main {
    padding: 40px 0 0;
  }
  #diagnose ul.diagnose_list li .ttl label {
    font-size: 1.25rem;
  }
  #diagnose ul.diagnose_list li .input {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  #diagnose ul.diagnose_list li .input .label {
    width: 50%;
  }
  #diagnose ul.diagnose_list li .input .label span {
    font-size: 0.75rem;
  }
  #diagnose ul.diagnose_list li .input .label:first-child {
    order: 2;
    text-align: left;
  }
  #diagnose ul.diagnose_list li .input .label:last-child {
    order: 3;
    text-align: right;
  }
  #diagnose ul.diagnose_list li .input .radio {
    order: 1;
    margin: 0;
    justify-content: space-between;
    gap: 0;
  }
  #diagnose ul.diagnose_list li .input .radio label {
    padding: 8px;
  }
  #diagnose .btn_set {
    padding: 60px 0 100px;
  }
  #diagnose .btn_set button {
    width: calc(100% - 40px);
    max-width: 320px;
    height: 50px;
    font-size: 1rem;
    line-height: 50px;
    border-radius: 25px;
  }
}
@media screen and (max-width: 575.98px) {
  .onlyPC {
    display: none;
  }
  #type_list ul.type_list {
    grid-template-columns: 1fr;
  }
  #type_single .top .wrap .txt {
    padding: 20px 0 40px;
  }
  #type_single .top .wrap .txt .name {
    font-size: 1.5rem;
  }
  #type_single .top .wrap .txt .sub {
    font-size: 1rem;
  }
  #type_single .bottom .result .greeting h2 {
    font-size: 1.25rem;
  }
  #home .greeting article h2 {
    font-size: 2rem;
  }
  #home .greeting .link {
    margin: 60px 0 0;
  }
}
* {
  box-sizing: border-box;
}

:root {
  --sans-serif: sans-serif;
  --serif: serif;
  --blue: #0f3668;
  --blue-rgb: 15,54,104;
  --blue02: #297aa9;
  --blue02-rgb: 41,122,169;
  --blue03: #1967d2;
  --blue04: #195ab4;
  --red: #af1e2b;
  --red-rgb: 175,30,43;
  --red02: #d85026;
  --header-height: 60px;
  --type01_01: #ae1e2b;
  --type01_02: #f5dbdd;
  --type02_01: #0f3668;
  --type02_02: #dbe1e8;
  --type03_01: #009400;
  --type03_02: #d9efd9;
  --type04_01: #ff7400;
  --type04_02: #ffead9;
}/*# sourceMappingURL=style.css.map */