@charset "UTF-8";
/* Responsive
============================================================= */
/* px(spacer用) */
/* Exclude
============================================================= */
/* map-get
============================================================= */
/*
	color
	$clr: ( main: #000 );
*/
/*
	font
	$font: ( l: 'FONTNAME L' );
*/
/* 文字列を数値化
========================================================================== */
/* INITIAL SET
============================================================= */
/*
  mediaquery
*/
/*
  clearfix
*/
/*
  contents
*/
/*
  個数に応じたスタイル
*/
/*
  clamp
  @include clamp($min: 10, $base: 26, $max: 30);
*/
/*
  textCrop
  @include textCrop($line-height:1.2);
*/
/*
  Smooth corner effect
  @include smoothCorner($cornerVal: 90%);

  ## html
  <div class="smoothCorner">
    <!-- <i></i> -->
  </div>

  ## css
  .smoothCorner {
    position: relative;
    background: #fff;
    @include smoothCorner(65%);
    margin: rem(50) auto;
    @include mq-pc {
      width: rem(100);
      height: rem(100);
    }
    @include mq-sp {
      width: rem(80);
      height: rem(80);
    }

    // iconとか配置したい時は個別に
    // i {
    //   position: absolute;
    //   top: 50%;
    //   left: 50%;
    //   transform: translate(-50%, -50%);
    //   @include svg_icon;
    //   @include mq-pc {
    //     width: rem(80);
    //     height: rem(80);
    //   }
    //   @include mq-sp {
    //     width: rem(50);
    //     height: rem(50);
    //   }
    // }
  }
*/
/*
  focusRing
*/
/* base
============================================================= */
/* Canvas Size
============================================================= */
/* Contents Width
============================================================= */
/* PC Responsive Width
============================================================= */
/* Font
============================================================= */
/* Color
============================================================= */
/* Font Level
========================================================================== */
/* Space Level
========================================================================== */
:root {
  --zoom-level: 1;
  --base-pc: 1366;
  --base-sp: 375;
  --base-min: 768;
  --base-max: 1366;
  --pc-size: var(--base-pc);
  --sp-size: var(--base-sp);
}

/* reset
============================================================= */
:where(html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video) {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

:where(body) {
  line-height: 1;
}

:where(article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section) {
  display: block;
}

:where(ul) {
  list-style: none;
}

:where(blockquote, q) {
  quotes: none;
}

:where(blockquote:before, blockquote:after, q:before, q:after) {
  content: none;
}

:where(a) {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

:where(ins) {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

:where(mark) {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

:where(del) {
  text-decoration: line-through;
}

:where(abbr[title], dfn[title]) {
  border-bottom: 1px dotted;
  cursor: help;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(hr) {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

:where(input, select) {
  vertical-align: middle;
}

/* base
============================================================= */
html,
body {
  min-height: 100%;
}

html {
  color: #333333;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
@media not screen and (min-width: 767px) {
  html {
    font-size: calc(100vw / (var(--base-sp) / 100));
  }
  html[data-device=mobile] {
    font-size: calc(625% * var(--sp-size) / var(--base-sp));
  }
  html[data-device=pc] {
    font-size: calc(100vw * var(--zoom-level) / (var(--base-sp) / 100));
  }
}
@media screen and (min-width: 767px) {
  html {
    font-size: calc(625% * var(--base-min) / var(--base-pc));
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw * var(--zoom-level) / (var(--base-pc) / 100));
  }
  html[data-device=tablet] {
    font-size: calc(625% * var(--pc-size) / var(--base-pc));
  }
}
@media screen and (min-width: 1366px), print {
  html {
    font-size: calc(625% * var(--base-max) / var(--base-pc));
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 180%;
  color: #333333;
  -webkit-text-size-adjust: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  position: relative;
}
body * {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
@media screen and (min-width: 767px) {
  body {
    font-size: 0.18rem;
    line-height: 1.6;
  }
  body.-pcMenu.-menuOpen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
  }
}
@media not screen and (min-width: 767px) {
  body {
    font-size: 0.16rem;
    line-height: 1.6;
  }
  body.-menuOpen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
  }
}

#main {
  display: block;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a {
  /* blank */
}
a {
  /* pdf */
}
img {
  height: auto;
  line-height: 1;
  max-width: 100%;
  vertical-align: top;
}

table th img,
table td img {
  vertical-align: middle;
}

/* ベース初期セット
============================================================= */
/*
  --widthPc / --widthSp
  style="--widthPc: 00; --widthSp: 00;"
*/
@media screen and (min-width: 767px) {
  *[style*="--widthPc"] {
    width: calc(var(--widthPc) / 100 * 1rem);
  }
}
@media not screen and (min-width: 767px) {
  *[style*="--widthSp"] {
    width: calc(var(--widthSp) / 100 * 1rem);
  }
}
/*
  telLink
*/
@media screen and (min-width: 767px) {
  .telLink {
    color: #333333;
    pointer-events: none;
    text-decoration: none;
  }
}
@media not screen and (min-width: 767px) {
  .telLink {
    text-decoration: underline;
  }
}

/* modifier
============================================================= */
/*
  display
*/
@media screen and (min-width: 767px) {
  .-pcItem {
    display: block;
  }
}
@media not screen and (min-width: 767px) {
  .-pcItem {
    display: none !important;
  }
}

@media screen and (min-width: 767px) {
  br.-pcItem {
    display: inline !important;
  }
}

@media screen and (min-width: 767px) {
  .-spItem {
    display: none !important;
  }
}
@media not screen and (min-width: 767px) {
  .-spItem {
    display: block;
  }
}

@media not screen and (min-width: 767px) {
  br.-spItem {
    display: inline !important;
  }
}

/*
  margin
*/
@media screen and (min-width: 767px) {
  .-mt0 {
    margin-top: 0rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt5 {
    margin-top: 0.05rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt5 {
    margin-top: 0.05rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt10 {
    margin-top: 0.1rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt10 {
    margin-top: 0.1rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt15 {
    margin-top: 0.15rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt15 {
    margin-top: 0.15rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt20 {
    margin-top: 0.2rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt20 {
    margin-top: 0.2rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt25 {
    margin-top: 0.25rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt25 {
    margin-top: 0.25rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt30 {
    margin-top: 0.3rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt30 {
    margin-top: 0.3rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt35 {
    margin-top: 0.35rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt35 {
    margin-top: 0.35rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt40 {
    margin-top: 0.4rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt40 {
    margin-top: 0.4rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt45 {
    margin-top: 0.45rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt45 {
    margin-top: 0.45rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt50 {
    margin-top: 0.5rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt50 {
    margin-top: 0.5rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt55 {
    margin-top: 0.55rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt55 {
    margin-top: 0.55rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mt60 {
    margin-top: 0.6rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mt60 {
    margin-top: 0.6rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb0 {
    margin-bottom: 0rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb5 {
    margin-bottom: 0.05rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb5 {
    margin-bottom: 0.05rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb10 {
    margin-bottom: 0.1rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb10 {
    margin-bottom: 0.1rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb15 {
    margin-bottom: 0.15rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb15 {
    margin-bottom: 0.15rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb20 {
    margin-bottom: 0.2rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb20 {
    margin-bottom: 0.2rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb25 {
    margin-bottom: 0.25rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb25 {
    margin-bottom: 0.25rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mb30 {
    margin-bottom: 0.3rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mb30 {
    margin-bottom: 0.3rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mr0 {
    margin-right: 0rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mr0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mr5 {
    margin-right: 0.05rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mr5 {
    margin-right: 0.05rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mr10 {
    margin-right: 0.1rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mr10 {
    margin-right: 0.1rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mr15 {
    margin-right: 0.15rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mr15 {
    margin-right: 0.15rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-mr20 {
    margin-right: 0.2rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-mr20 {
    margin-right: 0.2rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-ml0 {
    margin-left: 0rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-ml0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-ml5 {
    margin-left: 0.05rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-ml5 {
    margin-left: 0.05rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-ml10 {
    margin-left: 0.1rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-ml10 {
    margin-left: 0.1rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-ml15 {
    margin-left: 0.15rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-ml15 {
    margin-left: 0.15rem !important;
  }
}

@media screen and (min-width: 767px) {
  .-ml20 {
    margin-left: 0.2rem !important;
  }
}
@media not screen and (min-width: 767px) {
  .-ml20 {
    margin-left: 0.2rem !important;
  }
}

/*
  padding
*/
@media screen and (min-width: 767px) {
  .-pcPadding {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media not screen and (min-width: 767px) {
  .-spPadding {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
/*
  text-align
*/
.-textRight {
  text-align: right;
}

.-textCenter {
  text-align: center;
}

.-textLeft {
  text-align: left;
}

/* inview（視差効果OFF対策）
============================================================= */
@media (prefers-reduced-motion: reduce) {
  .inview {
    opacity: 1 !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
  .inview * {
    opacity: 1 !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .-inviewed {
    opacity: 1 !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
  .-inviewed * {
    opacity: 1 !important;
    transition-duration: 0s !important;
    animation-duration: 0s !important;
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
}

/* Accessibility
----------------------------------------------- */
.screenReaderText {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.skipItem {
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 2000;
}
.skipItem a {
  background: rgba(255, 255, 255, 0.8);
  display: block;
  font-weight: bold;
  height: 1px;
  width: 100%;
  transform: translateY(-1rem);
  transition: transform 0.25s ease;
  text-indent: -9999px;
}
.skipItem a:focus-within {
  transform: translateY(0);
  text-indent: initial;
  height: auto;
}
@media not screen and (min-width: 767px) {
  .skipItem a {
    outline: auto;
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
}

/* print（印刷対応）
============================================================= */
@media print {
  body {
    width: 13.66rem;
    zoom: 0.8;
  }
  .inview {
    opacity: 1 !important;
  }
}
/* footer
============================================================= */
#footer {
  background-color: #EEE;
  text-align: center;
  padding: 0.1rem;
  font-size: 0.12rem;
  margin-top: 0.7rem;
}

#pageTopBtn {
  position: fixed;
  bottom: 0.2rem;
  right: 0.2rem;
  cursor: pointer;
  display: none;
  /* 最初は非表示 */
  z-index: 99;
}
#pageTopBtn:hover {
  opacity: 1;
}
#pageTopBtn img {
  width: 1rem;
}

/* form
============================================================= */
/*
  vars
*/
/*
  reset
*/
input,
textarea,
label {
  vertical-align: middle;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #bababa;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #bababa;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bababa;
}

input::-ms-clear {
  visibility: hidden;
}
input::-ms-reveal {
  visibility: hidden;
}
input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}
select::-ms-expand {
  background-color: transparent;
  border: 0;
  display: none;
}
textarea {
  resize: vertical;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  width: 100%;
}

button,
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  background: transparent;
}
button:focus:not(:focus-visible),
input[type=submit]:focus:not(:focus-visible) {
  outline: none;
}

input[type=file]:focus-visible,
[role=button]:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
  outline-offset: 0px;
}

/*
  input
*/
.input {
  background-color: #fff;
  border: 1px solid #000;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .input {
    padding: 0 0.2rem;
    height: 0.8rem;
    font-size: 0.18rem;
  }
}
@media not screen and (min-width: 767px) {
  .input {
    font-size: 0.16rem;
    font-size: clamp(16px, 0.16rem, 0.16rem);
    height: 0.6rem;
    padding: 0 0.15rem;
  }
}

/* ラジオボタン */
.input.-radio {
  display: inline-block;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.input.-radio + label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
@media not screen and (min-width: 767px) {
  .input.-radio + label {
    font-size: 0.16rem;
    font-size: clamp(16px, 0.16rem, 0.16rem);
    line-height: 1.3;
  }
}
.input.-radio + label:last-of-type {
  margin-right: 0;
}
.input.-radio + label:before {
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: relative;
  vertical-align: top;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (min-width: 767px) {
  .input.-radio + label:before {
    min-width: 0.24rem;
    width: 0.24rem;
    height: 0.24rem;
    margin-right: 0.1rem;
  }
}
@media not screen and (min-width: 767px) {
  .input.-radio + label:before {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.08rem;
  }
}
.input.-radio + label::after {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%3E%20%3Ccircle%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20fill%3D%22%23000000%22%2F%3E%3C%2Fsvg%3E") no-repeat center center;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media screen and (min-width: 767px) {
  .input.-radio + label::after {
    background-size: 0.14rem auto;
    width: 0.24rem;
    height: 0.24rem;
  }
}
@media not screen and (min-width: 767px) {
  .input.-radio + label::after {
    background-size: 0.12rem auto;
    width: 0.2rem;
    height: 0.2rem;
  }
}
.input.-radio:checked + label::after {
  opacity: 1;
}
.input.-radio:focus + label::before {
  border: 1px solid #004A9E;
}
.input.-radio:focus-visible + label {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.input.-radio:disabled + label::before {
  border-color: #f9f9f9;
  background: #f9f9f9;
}

/* チェックボックス */
.input.-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.input.-checkbox + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 0.27rem;
}
.input.-checkbox + label:before {
  background: #fff;
  border: 1px solid #000;
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
  left: 0;
  width: 0.17rem;
  height: 0.17rem;
  top: 0.02rem;
}
.input.-checkbox + label::after {
  content: "";
  background: transparent;
  display: block;
  position: absolute;
  opacity: 0;
  border-left: 2px solid #fff;
  border-bottom: 4px solid #fff;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  transform: rotate(-45deg) scaleY(0.5);
  width: 0.1rem;
  height: 0.1rem;
  left: 0.03rem;
  top: 0.02rem;
}
.input.-checkbox:checked + label::before {
  background-color: #004A9E;
  border: 1px solid #004A9E;
}
.input.-checkbox:checked + label::after {
  opacity: 1;
}
.input.-checkbox:focus + label::before {
  border: 1px solid #004A9E;
  border-color: #004A9E;
}
.input.-checkbox:focus-visible + label {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
}
.input.-checkbox:disabled + label::before {
  border-color: #f9f9f9;
  background: #f9f9f9;
}

/*
  select
*/
.select {
  background: #fff;
  border: 1px solid #000;
  line-height: 1.2;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .select {
    height: 0.8rem;
    font-size: 0.18rem;
    padding: 0 0.4rem 0 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  .select {
    font-size: 0.16rem;
    font-size: clamp(16px, 0.16rem, 0.16rem);
    height: 0.6rem;
    padding: 0 0.4rem 0 0.15rem;
  }
}

.selectWrap {
  display: inline-flex;
  position: relative;
}
@media not screen and (min-width: 767px) {
  .selectWrap {
    width: 100%;
  }
}
.selectWrap::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  bottom: 0.04rem;
  top: 0;
  margin: auto;
  border-top: 1px solid #004A9E;
  border-right: 1px solid #004A9E;
  transform: rotate(135deg);
  width: 0.08rem;
  height: 0.08rem;
  right: 0.17rem;
}

/*
  textarea
*/
.textarea {
  background-color: #fff;
  border: 1px solid #000;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .textarea {
    font-size: 0.18rem;
    min-height: 2.5rem;
    padding: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  .textarea {
    font-size: 0.16rem;
    font-size: clamp(16px, 0.16rem, 0.16rem);
    min-height: 1.6rem;
    padding: 0.15rem;
  }
}

/*
  inputWrap
*/
.inputWrap {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.1rem;
}
.inputWrap > div {
  margin-bottom: 0.1rem;
  position: relative;
}
.inputWrap > div:not(:last-child) {
  margin-right: 0.2rem;
}
.inputWrap {
  /* modifier */
}
.inputWrap.-center {
  align-items: center;
}
.inputWrap.-marginSmall > div:not(:last-child) {
  margin-right: 0.1rem;
}
.inputWrap.-block {
  display: block;
}
.inputWrap.-block > div {
  margin-right: 0;
}
.inputWrap.-block > div:not(:last-child) {
  margin-bottom: 0.1rem;
}
.inputWrap.-block label {
  display: block !important;
}
@media not screen and (min-width: 767px) {
  .inputWrap.-spBlock {
    display: block;
  }
  .inputWrap.-spBlock > div {
    margin-right: 0;
  }
  .inputWrap.-spBlock > div:not(:last-child) {
    margin-bottom: 0.1rem;
  }
}

/*
  parts
*/
/* postalButton */
.postalButton {
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .postalButton {
    font-size: 0.12rem;
    padding: 0.06rem 0.1rem;
  }
  .postalButton br {
    display: none;
  }
}
@media not screen and (min-width: 767px) {
  .postalButton {
    font-size: 0.11rem;
    padding: 0.03rem 0.1rem;
    line-height: 1.3;
  }
}
.postalButton:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

/*
  error
*/
ul.error {
  background-color: rgba(0, 74, 158, 0.1);
}
@media screen and (min-width: 767px) {
  ul.error {
    padding: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  ul.error {
    padding: 0.15rem;
  }
}
ul.error a {
  text-decoration: underline;
}
@media (hover: hover), screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  ul.error a:hover {
    text-decoration: none;
  }
}
ul.error + * {
  margin-top: 0.2rem;
}

/*
  formTable
*/
.formTable {
  background-color: #fff;
  border-top: 1px solid #c9d2cd;
  table-layout: fixed;
  width: 100%;
}
@media not screen and (min-width: 767px) {
  .formTable {
    display: block;
  }
  .formTable tbody, .formTable tr, .formTable th, .formTable td {
    display: block;
  }
}
.formTable tr.-verTop th,
.formTable tr.-verTop td {
  vertical-align: top !important;
}
.formTable th,
.formTable td {
  border-bottom: 1px solid #ddd;
  line-height: 1.4;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 767px) {
  .formTable th,
  .formTable td {
    padding: 0.2rem 0.25rem;
  }
}
@media not screen and (min-width: 767px) {
  .formTable th,
  .formTable td {
    padding: 0.15rem;
  }
}
.formTable th {
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .formTable th {
    font-size: 0.18rem;
    width: 28%;
  }
}
@media not screen and (min-width: 767px) {
  .formTable th {
    border-bottom: none;
    font-size: 0.17rem;
  }
}
.formTable th.required > span {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 767px) {
  .formTable th.required > span {
    padding-right: 0.71rem;
  }
}
@media not screen and (min-width: 767px) {
  .formTable th.required > span {
    padding-right: 0.568rem;
  }
}
.formTable td {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 767px) {
  .formTable td {
    font-size: 0.16rem;
    width: 72%;
  }
}
@media not screen and (min-width: 767px) {
  .formTable td {
    font-size: 0.15rem;
  }
}
.formTable td span.note {
  display: block;
}
@media screen and (min-width: 767px) {
  .formTable td span.note {
    font-size: 0.13rem;
    margin-top: 0.1rem;
  }
}
@media not screen and (min-width: 767px) {
  .formTable td span.note {
    font-size: 0.11rem;
    margin-top: 0.08rem;
  }
}
.formTable td span.error {
  display: block;
}
@media screen and (min-width: 767px) {
  .formTable td span.error {
    margin-top: 0.15rem;
  }
}
@media not screen and (min-width: 767px) {
  .formTable td span.error {
    margin-top: 0.15rem;
  }
}

/*
  formLabel:必須ラベル
*/
.formLabelParent {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.formLabel {
  display: inline-block;
  font-size: 0.12rem;
  line-height: 1;
  margin-left: 0.1rem;
  padding: 0.03rem 0.05rem;
  white-space: nowrap;
}
.formLabel.-required {
  color: #fff;
}

/*
  formPrivacy
*/
* + .formPrivacy {
  margin-top: 0.4rem;
}

.formPrivacy__title {
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .formPrivacy__title {
    font-size: 0.18rem;
  }
}
@media not screen and (min-width: 767px) {
  .formPrivacy__title {
    font-size: 0.16rem;
  }
}
.formPrivacy__title + * {
  margin-top: 0.15rem;
}

.formPrivacy__contents {
  background-color: #eee;
  height: 2rem;
  overflow-y: scroll;
  padding: 0.3rem 0.35rem;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 767px) {
  .formPrivacy__contents {
    font-size: 0.14rem;
  }
}
.formPrivacy__contents[tabindex="0"]:focus-visible {
  outline: auto;
  outline: auto -webkit-focus-ring-color;
  outline-offset: 0px;
}

/*
  formButton
*/
.formButton {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .formButton {
    margin-top: 0.5rem;
  }
}
@media not screen and (min-width: 767px) {
  .formButton {
    margin-top: 0.3rem;
  }
}
@media screen and (min-width: 767px) {
  .formButton > *:not(:last-child) {
    margin-right: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  .formButton > *:not(:last-child) {
    margin-right: 0.15rem;
  }
}
@media screen and (min-width: 767px) {
  .formButton .button {
    min-width: 3.2rem;
  }
}

/* header
============================================================= */
/* keyframes
============================================================= */
/*
  fadeIn
*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* button
============================================================= */
.btn {
  background-color: #D5006D;
  color: #FFF;
  font-weight: bold;
  border-radius: 1rem;
  transition: opacity 0.3s ease;
  position: relative;
}
@media screen and (min-width: 767px) {
  .btn {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.24rem;
  }
}
@media not screen and (min-width: 767px) {
  .btn {
    display: block;
    padding: 0.2rem 0.4rem;
    font-size: 0.18rem;
  }
}
.btn::before {
  content: "";
  width: 0.08rem;
  height: 0.08rem;
  border-top: #FFF solid 2px;
  border-right: #FFF solid 2px;
  transform: rotate(45deg);
  position: absolute;
  right: 0.26rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn:hover {
  opacity: 0.5;
}

/* faq
============================================================= */
#faq .accordion-item {
  border: 1px solid #333333;
  margin-bottom: 0.3rem;
  background-color: #FFF;
}
@media screen and (min-width: 767px) {
  #faq .accordion-item {
    padding: 0.1rem 0.3rem;
  }
}
@media not screen and (min-width: 767px) {
  #faq .accordion-item {
    padding: 0.1rem 0.16rem;
  }
}
#faq .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  user-select: none;
  cursor: pointer;
  border-radius: 0.08rem;
  position: relative;
}
#faq .accordion-title {
  font-weight: bold;
}
@media screen and (min-width: 767px) {
  #faq .accordion-title {
    font-size: 0.21rem;
    padding: 0.32rem 0.32rem 0.32rem 0.32rem;
  }
}
@media not screen and (min-width: 767px) {
  #faq .accordion-title {
    font-size: 0.16rem;
    padding: 0.24rem 0.48rem;
  }
}
#faq .accordion-title::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-image: url(/lp/wester-point/img/icon_q.svg);
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
}
#faq .accordion-button {
  background: none;
  border: none;
  user-select: none;
  text-align: center;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #004A9E;
  z-index: 10;
}
@media screen and (min-width: 767px) {
  #faq .accordion-button {
    font-size: 0.4rem;
    right: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  #faq .accordion-button {
    font-size: 0.3rem;
    right: 0.16rem;
  }
}
#faq .accordion-content {
  transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 0;
  overflow: hidden;
}
#faq .accordion-content.open {
  max-height: 500px;
  border-top: #333333 solid 1px;
  border-bottom-left-radius: 0.08rem;
  border-bottom-right-radius: 0.08rem;
}
@media screen and (min-width: 767px) {
  #faq .accordion-content.open {
    padding: 0.2rem 0;
  }
}
@media not screen and (min-width: 767px) {
  #faq .accordion-content.open {
    padding: 0.16rem 0;
  }
}

/* important_notice
============================================================= */
@media not screen and (min-width: 767px) {
  #important_notice {
    background-color: #E3F5FF;
    padding: 0.3rem 0;
  }
}
@media screen and (min-width: 767px) {
  #important_notice .-inner {
    background-color: #E3F5FF;
    text-align: center;
    padding: 0.5rem;
  }
}
#important_notice .-inner ul {
  margin-bottom: 0.3rem;
}
#important_notice .-inner ul li {
  position: relative;
  text-align: left;
}
@media screen and (min-width: 767px) {
  #important_notice .-inner ul li {
    padding-left: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  #important_notice .-inner ul li {
    padding-left: 0.16rem;
  }
}
#important_notice .-inner ul li::before {
  content: "・";
  color: #004A9E;
  position: absolute;
  left: 0;
  top: 0;
}
#important_notice .-inner ul li a {
  color: #333333;
  text-decoration: underline;
}

/* info
============================================================= */
@media not screen and (min-width: 767px) {
  #info {
    background-color: #004A9E;
    padding: 0.4rem 0rem;
  }
}
@media screen and (min-width: 767px) {
  #info .-inner {
    background-color: #004A9E;
    padding: 0.4rem;
    text-align: center;
  }
}
#info .-inner * {
  color: #FFF;
}
#info .-inner h2 {
  font-size: 0.3rem;
}
#info .-inner p span {
  font-size: 140%;
  font-weight: bold;
  color: #FFFF00;
}

/* intro
============================================================= */
@media not screen and (min-width: 767px) {
  #intro {
    background-color: #E3F5FF;
    padding: 0.5rem 0;
  }
}
@media screen and (min-width: 767px) {
  #intro .-inner {
    background-color: #E3F5FF;
    text-align: center;
    padding: 0.7rem;
  }
}
@media not screen and (min-width: 767px) {
  #intro .-inner .-logo {
    text-align: center;
  }
}
@media not screen and (min-width: 767px) {
  #intro .-inner .-logo img {
    width: 0.8rem;
  }
}
@media screen and (min-width: 767px) {
  #intro .-inner h2 {
    margin: 0.3rem 0;
  }
}
@media not screen and (min-width: 767px) {
  #intro .-inner h2 {
    margin: 0.2rem 0;
  }
}

/* link
============================================================= */
#link {
  background: radial-gradient(circle, #EEE 20%, transparent 20%) 0 0, radial-gradient(circle, #EEE 20%, transparent 20%) 10px 10px;
  background-size: 20px 20px;
  padding: 0.5rem 0;
}
#link .-inner .banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#link .-inner .banner_list li {
  width: 48%;
  margin-bottom: 4%;
}

/* MainVisual
============================================================= */
#MainVisual {
  background-color: #E3F5FF;
  background-image: url("/lp/wester-point/img/mv_bg_left.webp"), url("/lp/wester-point/img/mv_bg_right.webp");
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  #MainVisual {
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    background-position: left center, right center;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual {
    background-attachment: fixed;
    background-repeat: repeat-y;
    background-position: -100px top, calc(100% + 100px) top;
    background-size: 40%;
  }
}
#MainVisual .-ttlBox {
  text-align: center;
}
@media screen and (min-width: 767px) {
  #MainVisual .-ttlBox {
    width: 10rem;
    margin: auto;
    padding: 0.5rem 0;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-ttlBox {
    padding: 0.4rem 0.16rem;
  }
}
#MainVisual .-ttlBox .-balloon {
  background-color: #004A9E;
  color: #FFF;
  font-weight: bold;
  margin-bottom: 0.3rem;
  position: relative;
}
@media screen and (min-width: 767px) {
  #MainVisual .-ttlBox .-balloon {
    display: inline-block;
    font-size: 0.3rem;
    padding: 0.1rem 1.3rem;
    border-radius: 0.5rem;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-ttlBox .-balloon {
    font-size: 0.16rem;
    padding: 0.16rem;
    border-radius: 1rem;
  }
}
#MainVisual .-ttlBox .-balloon:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.08rem solid transparent;
  border-right: 0.08rem solid transparent;
  border-top: 0.12rem solid #004A9E;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  margin: auto;
}
@media not screen and (min-width: 767px) {
  #MainVisual .-ttlBox h1 {
    max-width: 2.2rem;
    margin: auto;
  }
}
#MainVisual .-ttlBox .-text {
  color: #004A9E;
  font-weight: bold;
}
@media screen and (min-width: 767px) {
  #MainVisual .-ttlBox .-text {
    font-size: 0.26rem;
    margin-top: 0.5rem;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-ttlBox .-text {
    font-size: 0.18rem;
    text-align: left;
    margin-top: 0.2rem;
  }
}
#MainVisual .-appBox {
  background-color: #004A9E;
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox {
    text-align: right;
  }
}
#MainVisual .-appBox .-inner {
  position: relative;
  display: flex;
  padding: 0.2rem;
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner {
    justify-content: center;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: flex-end;
    padding-left: 1.6rem;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner .-logo {
    width: 100%;
  }
}
#MainVisual .-appBox .-inner .-img {
  position: absolute;
}
#MainVisual .-appBox .-inner .-img.-left {
  bottom: -100%;
  animation: slideUp 1s ease-out forwards;
  opacity: 0.5;
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner .-img.-left {
    left: -1rem;
    bottom: -100%;
  }
  @keyframes slideUp {
    from {
      bottom: -100%;
      opacity: 0.5;
    }
    to {
      opacity: 1;
      bottom: -0.4rem;
    }
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner .-img.-left {
    width: 1.4rem;
    left: 0.1rem;
  }
  @keyframes slideUp {
    from {
      bottom: -100%;
      opacity: 0.5;
    }
    to {
      opacity: 1;
      bottom: 0;
    }
  }
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner .-img.-right {
    bottom: 0.2rem;
    right: -100%;
    animation: slideInFromRight 1s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0.5;
  }
  @keyframes slideInFromRight {
    from {
      right: -100%;
      opacity: 0.5;
    }
    to {
      right: -2rem;
      opacity: 1;
    }
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-inner .-img.-right {
    display: none;
  }
}
#MainVisual .-appBox .-balloon {
  color: #004A9E;
  text-align: center;
  font-weight: bold;
  background-color: #FFF;
  border-radius: 0.04rem;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon {
    padding: 0.2rem;
    font-size: 0.3rem;
    margin-left: 0.26rem;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon {
    padding: 0.16rem;
    width: 100%;
    font-size: 0.18rem;
    margin-bottom: 0.2rem;
  }
}
#MainVisual .-appBox .-balloon:before {
  content: "";
  position: absolute;
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon:before {
    width: 0;
    height: 0;
    border-top: 0.06rem solid transparent;
    border-bottom: 0.06rem solid transparent;
    border-right: 0.14rem solid #FFF;
    top: 0;
    bottom: 0;
    left: -0.14rem;
    margin: auto;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon:before {
    width: 0;
    height: 0;
    border-left: 0.06rem solid transparent;
    border-right: 0.06rem solid transparent;
    border-top: 0.1rem solid #FFF;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.1rem;
    margin: auto;
  }
}
#MainVisual .-appBox .-balloon span {
  display: block;
}
@media screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon span {
    font-size: 0.26rem;
  }
}
@media not screen and (min-width: 767px) {
  #MainVisual .-appBox .-balloon span {
    font-size: 0.16rem;
  }
}

/* map
============================================================= */
@media screen and (min-width: 767px) {
  #map .-inner {
    text-align: center;
  }
}
#map .-text {
  font-weight: bold;
}
#map table {
  margin: 0.3rem auto;
}
@media not screen and (min-width: 767px) {
  #map table {
    display: inline-block;
  }
}
#map table th,
#map table td {
  border: #ddd solid 1px;
  vertical-align: middle;
}
@media screen and (min-width: 767px) {
  #map table th,
  #map table td {
    padding: 0.2rem 0.3rem;
  }
}
@media not screen and (min-width: 767px) {
  #map table th,
  #map table td {
    width: 100%;
    padding: 0.14rem;
  }
}
#map table th {
  background-color: #004A9E;
  text-align: center;
  color: #FFF;
}
@media not screen and (min-width: 767px) {
  #map table th {
    display: block;
    border: none;
  }
}
#map table td {
  text-align: left;
}

/* nav
============================================================= */
.menu {
  padding: 1rem 0;
  text-align: center;
}
.menu ul {
  background-color: #FFF;
  border-radius: 0.08rem;
  box-shadow: 0px 8px 0px 0px rgba(0, 0, 0, 0.05);
  border: #004A9E solid 2px;
}
@media screen and (min-width: 767px) {
  .menu ul {
    display: flex;
  }
}
@media screen and (min-width: 767px) {
  .menu ul li {
    border-right: #004A9E solid 2px;
    width: 33.333%;
  }
}
@media not screen and (min-width: 767px) {
  .menu ul li {
    border-bottom: #004A9E solid 2px;
  }
}
@media screen and (min-width: 767px) {
  .menu ul li:last-child {
    border-right: none;
  }
}
@media not screen and (min-width: 767px) {
  .menu ul li:last-child {
    border-bottom: none;
  }
}
.menu ul li a {
  display: block;
  color: #004A9E;
  padding: 0.16rem 0.54rem 0.16rem 0.24rem;
  font-size: 0.2rem;
  font-weight: 900;
  position: relative;
}
.menu ul li a::after {
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  background: url(/lp/wester-point/img/icon_arrow.svg) no-repeat;
  background-size: cover;
  position: absolute;
  right: 0.2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* pageTop
============================================================= */
/* section
============================================================= */
@media screen and (min-width: 767px) {
  .-inner {
    width: 1000px;
    margin: auto;
  }
}
@media not screen and (min-width: 767px) {
  .-inner {
    padding: 0 0.16rem;
  }
}

h2 {
  text-align: center;
  font-weight: 900;
  color: #004A9E;
}
@media screen and (min-width: 767px) {
  h2 {
    font-size: 0.42rem;
    margin-bottom: 0.3rem;
  }
}
@media not screen and (min-width: 767px) {
  h2 {
    font-size: 0.3rem;
    margin-bottom: 0.2rem;
  }
}

.noteList {
  display: inline-block;
}
.noteList li {
  position: relative;
  padding-left: 0.18rem;
  text-align: left !important;
}
@media screen and (min-width: 767px) {
  .noteList li {
    font-size: 0.14rem;
  }
}
@media not screen and (min-width: 767px) {
  .noteList li {
    font-size: 0.12rem;
  }
}
.noteList li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.noteList li a {
  color: #FFF;
  text-decoration: underline;
}
.noteList li a:hover {
  text-decoration: none;
}
.noteList li + li {
  margin-top: 0.1rem;
}

* + .noteList {
  margin-top: 0.3rem;
}

sup {
  font-size: 0.14rem;
  vertical-align: top;
}

.-robot {
  font-family: "Roboto", sans-serif;
}

section + section {
  margin-top: 0.7rem;
}

@media not screen and (min-width: 767px) {
  .-scroll {
    overflow-x: scroll;
  }
}
@media not screen and (min-width: 767px) {
  .-scroll table {
    min-width: 10rem;
  }
}
@media not screen and (min-width: 767px) {
  .-scroll img {
    min-width: 7.5rem;
  }
}

/* subject
============================================================= */
@media not screen and (min-width: 767px) {
  #subject {
    background-color: #E3F5FF;
    padding: 0.4rem 0rem;
  }
}
@media screen and (min-width: 767px) {
  #subject .-inner {
    background-color: #E3F5FF;
    padding: 0.4rem;
  }
}
#subject ul {
  margin-bottom: 0.3rem;
}
#subject ul li {
  position: relative;
}
@media screen and (min-width: 767px) {
  #subject ul li {
    padding-left: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  #subject ul li {
    padding-left: 0.16rem;
  }
}
#subject ul li::before {
  content: "・";
  color: #004A9E;
  position: absolute;
  left: 0;
  top: 0;
}
@media not screen and (min-width: 767px) {
  #subject table {
    display: inline-block;
  }
}
#subject table th,
#subject table td {
  border: #ddd solid 1px;
  vertical-align: middle;
  font-size: 0.14rem;
}
@media screen and (min-width: 767px) {
  #subject table th,
  #subject table td {
    padding: 0.2rem;
  }
}
@media not screen and (min-width: 767px) {
  #subject table th,
  #subject table td {
    padding: 0.14rem;
  }
}
#subject table th {
  background-color: #004A9E;
  text-align: center;
  color: #FFF;
  white-space: nowrap;
}
#subject table td {
  text-align: left;
  background-color: #FFF;
}
#subject table tr td:nth-child(1) {
  white-space: nowrap;
}