@charset "Shift_JIS";
/** ***************************************
 * BASE RULES
 * 基本定義、ユーティリテイクラス、エリアにかかわらない基本モジュール（BLOCK）を定義
 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/**
 * GENERAL
 * サイトの基本となるスタイルを指定
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 14px;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

body {
  min-width: 960px;
  font-family: "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

@media screen and (max-width: 768px) {
  body {
    min-width: 100%;
    font-size: 12px;
  }
}

h1, h2, h3, h4, h5 {
  font-size: 1rem;
}

img {
  vertical-align: bottom;
}

img[src$=".svg"],
img[src*=".svg?"] {
  max-width: 100%;
  height: auto;
}

a {
  color: #094;
  text-decoration: underline;
}

a[href*="tel:"] {
  color: #333;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

em {
  font-weight: bold;
  font-style: normal;
  color: #094;
}

ul {
  margin: 0 0 0 1.5em;
  padding: 0;
}

header {
  background-color: #094;
}

main {
  display: block;
  background-color: #f5f5f5 !important;
  border-top: 3px solid #ebebeb;
}

iframe {
  border: none;
}

footer {
  background-color: #094;
  color: #fff;
}

label {
  font-size: 1.142rem;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 768px) {
  label {
    font-size: 1.166rem;
  }
}

input[type="text"],
input[type="password"] {
  padding: 0 15px;
  height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.428rem;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder {
  color: #ccc;
}

input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder {
  color: #ccc;
}

input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder {
  color: #ccc;
}

input[type="text"]::placeholder,
input[type="password"]::placeholder {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="password"] {
    padding: 15px;
    width: 100%;
    font-size: 1.333rem;
  }
}

textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.428rem;
}

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

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

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

textarea::placeholder {
  color: #ccc;
}

@media screen and (max-width: 768px) {
  textarea {
    width: 100%;
    font-size: 1.333rem;
  }
}

.Textarea__scroll {
    background: none repeat scroll 0 0 #F8F6EF;
    border: 1px solid #CCCCCC;
    height: 180px;
    overflow: auto;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .Textarea__scroll {
        width: 100%;
    }
}

.Textarea__attentionmark {
    display: flex;
}

.Textarea__rectangle {
    width: 80.5px;
    height: 29.5px;
    display: flex;
    position: relative;
    background-color: #CC0000;
    color: white;
    font-size: .95em;
    text-decoration: none;
    text-align: center;
    letter-spacing: .05em;
    border-radius: 2px;
}

.Textarea__circle {
    display: block;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: white;
    font-size: .75em;
    text-align: center;
    line-height: 17px;
    color: #CC0000;
    margin-top: 6px;
    margin-left: 11px;
}

.Textarea__circle-attention {
    margin-top: 5.5px;
    margin-left: 7px;
}

.Textarea__Article {
    margin-top: -19px;
    margin-left: 0px;
    margin-bottom: 30px;
    padding: 0px 15px 10px 55px;
}

.Textarea__Article dt dt {
    float: left;
    margin: 0;
    width: 50px;
    padding: 19px 0 10px 0;
}

.Textarea__Article--underspace {
    margin-bottom: 1.5em;
}

.Textarea__Article--indent {
    padding-left: 85px;
    margin-bottom: 1.5em;
}

.Textarea__Article--number {
    padding-left: 27px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.Textarea__Article--number2 {
    padding-left: 27px;
}

.Textarea__Article--number-brackets {
    padding-left: 55px;
}

.Textarea__Article--indent-last {
    margin-bottom: 30px;
}

.Textarea__Article--item {
    padding-left: 9px;
    margin-left: 0;
}

@media screen and (max-width: 768px) {
    .Textarea__Article--Item {
        width: 100%;
    }
}

input[type="radio"].radio {
  visibility: hidden;
  width: 0;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="radio"].radio + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="radio"].radio + label::before, input[type="radio"].radio + label::after {
  display: block;
  content: '';
}

input[type="radio"].radio + label::before {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #ccc;
}

input[type="radio"].radio:checked + label::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background-color: #094;
  border-radius: 12.5px;
}

input[type="checkbox"].checkbox {
  visibility: hidden;
  width: 0;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="checkbox"].checkbox + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type="checkbox"].checkbox + label::before, input[type="checkbox"].checkbox + label::after {
  display: block;
  content: '';
}

input[type="checkbox"].checkbox + label::before {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #ccc;
}

input[type="checkbox"].checkbox:checked + label::after {
  position: absolute;
  top: 8px;
  left: 6px;
  width: 21px;
  height: 16.096px;
  background: url(../images/common/icon-checkbox-checkmark.svg) no-repeat 0 0;
}

/**
 * Utilityクラス
 * アンダースコアから始まるクラス名とする
 */
@media screen and (min-width: 769px) {
  ._hide-pc {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  ._hide-sp {
    display: none !important;
  }
}

._hide {
  display: none;
}

._hide-all {
  display: none !important;
}

._width_auto {
  min-width: 0 !important;
  width: auto !important;
}

._width_full {
  width: 100% !important;
}

._nobullet {
  list-style: none;
  margin: 0;
  padding: 0;
}

._nobullet li {
  margin-bottom: 5px;
}

._nobullet10 li {
  margin-bottom: 10px !important;
}

._block {
  display: block !important;
}

._inline {
  display: inline !important;
}

._inline-block {
  display: inline-block !important;
}

._flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

._flx_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

._flx_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

._flx_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

._flx_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

._flx_end-base {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: flex-end !important;
  -ms-flex-pack: flex-end !important;
  justify-content: flex-end !important;
}

._flx_middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

._flx_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

._flx_column_sp_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

@media screen and (max-width: 768px) {
  ._flx_column_sp_row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
}

._flx_stretch {
  -ms-flex-item-align: stretch !important;
  -ms-grid-row-align: stretch !important;
  align-self: stretch !important;
}

._no-shrink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

._fl {
  float: left !important;
}

._fr {
  float: right !important;
}

._cf {
  clear: both !important;
}

._relative {
  position: relative;
}

._m0 {
  margin: 0 !important;
}

._mt0 {
  margin-top: 0 !important;
}

._mt1 {
  margin-top: 1em !important;
}

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

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

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

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

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

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

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

._mb0 {
  margin-bottom: 0 !important;
}

._mb1 {
  margin-bottom: 1em !important;
}

._mb2 {
  margin-bottom: 2em !important;
}

._mb4 {
  margin-bottom: 4px !important;
}

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

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

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

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

._mb23 {
  margin-bottom: 23px !important;
}

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

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

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

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

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

._ml1 {
  margin-left: 1em !important;
}

._ml1r {
  margin-left: 1rem !important;
}

._ml2r {
  margin-left: 2rem !important;
}

._ml3r {
  margin-left: 3rem !important;
}

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

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

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

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

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

._ml80 {
  margin-left: 80px !important;
}

._ml110 {
  margin-left: 110px !important;
}

._ml200 {
  margin-left: 200px !important;
}

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

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

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

._pt0 {
  padding-top: 0 !important;
}

._pt5 {
  padding-top: 5px !important;
}

._pt10 {
  padding-top: 10px !important;
}

._pt15 {
  padding-top: 15px !important;
}

._pt20 {
  padding-top: 20px !important;
}

._pt30 {
  padding-top: 30px !important;
}

._pr15 {
  padding-right: 15px !important;
}

._pr25 {
  padding-right: 25px !important;
}

._pt85 {
  padding-top: 85px !important;
}

._pt125 {
  padding-top: 125px !important;
}

._pl7 {
  padding-left: 7px !important;
}

._pl10 {
  padding-left: 10px !important;
}

._pl15 {
  padding-left: 15px !important;
}

._pr10 {
  padding-right: 10px !important;
}

._pb0 {
  padding-bottom: 0 !important;
}

._pb5 {
  padding-bottom: 5px !important;
}

._pb10 {
  padding-bottom: 10px !important;
}

._pb15 {
  padding-bottom: 15px !important;
}

._pb25 {
  padding-bottom: 25px !important;
}

._p30 {
  padding: 30px !important;
}

._align-left {
  text-align: left !important;
}

._align-right {
  text-align: right !important;
}

._align-center {
  text-align: center !important;
}

._align-center {
  text-align: center !important;
}

@media screen and (max-width: 768px) {
  ._align-center {
    text-align: left !important;
  }
}

._align-centerBoth {
  text-align: center !important;
}

._alignItems-start {
  webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: start !important;
}

._nowrap {
  white-space: nowrap !important;
}

._size-xlarge {
  font-size: 1.286rem !important;
}

@media screen and (max-width: 768px) {
  ._size-xlarge {
    font-size: 1.166rem !important;
  }
}

._size-large {
  font-size: 1.142rem !important;
}

@media screen and (max-width: 768px) {
  ._size-large {
    font-size: 1.166rem !important;
  }
}

._size-normal {
  font-size: 1rem !important;
}

._size-small {
  font-size: 0.885rem !important;
}

@media screen and (max-width: 768px) {
  ._size-small {
    font-size: 1rem !important;
  }
}

._size-ssmall {
  font-size: 0.714rem !important;
}

@media screen and (max-width: 768px) {
  ._size-ssmall {
    font-size: 0.833rem !important;
  }
}

._size-same {
  font-size: 1em !important;
}

._weight-normal {
  font-weight: normal !important;
}

._weight-bold {
  font-weight: bold !important;
}

._unit {
  font-size: 1rem !important;
}

._bort-none {
  border-top: none !important;
}

._bg-gray {
  background-color: #f5f5f5 !important;
}

._bg-white {
  background-color: #fff !important;
}

._strong {
  color: #000 !important;
}

._weak {
  color: #666 !important;
}

._normal {
  color: #333 !important;
}

._main {
  color: #094 !important;
}

._caution {
  color: #e60000 !important;
}

._caution-vivid {
  color: red !important;
}

._caution-dull {
  color: #9c3f39 !important;
}

._notice {
  color: #9c3f39 !important;
}

._w50 {
    width: 50%;
}

._w75 {
    width: 75%;
}

._w100 {
    width: 100%;
}

@media screen and (max-width: 768px) {
  ._w100-sp {
    width: 100% !important;
  }
}

._w-auto {
    width: auto !important;
}

._indent {
    margin-left: 1.4em;
    text-indent: -1.4em;
}

._indent-kana {
    margin-left: 2em;
    text-indent: -2em;
}

._wrap {
  overflow-wrap: anywhere;
}

._text-underline {
  text-decoration: underline !important;
}

/**
 * Modal ブロック
 *
 */
.Modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.Modal._show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeIn .3s;
  animation: fadeIn .3s;
}

.Modal--iframe iframe {
  width: 100%;
  overflow: hidden;
}

.Modal__base {
  padding: 20px;
  width: 620px;
  height: auto;
  min-width: 60%;
  max-width: 960px;
  background-color: #fff;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .Modal__base {
    padding: 10px;
    min-width: 0;
    max-width: 100%;
    width: 86%;
  }
}

.Modal--iframe .Modal__base {
  min-width: 0;
  width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

@media screen and (max-width: 768px) {
  .Modal--iframe .Modal__base {
    width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }
}

.Modal__title {
  margin-top: 0;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Modal__title {
    font-size: 1.5rem;
  }
}

.Modal__contents {
  overflow: auto;
}

.Modal--iframe .Modal__contents {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Modal--iframe .Modal__contents {
    -webkit-overflow-scrolling: touch;
  }
}

.Modal__action-area {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Modal__action-area {
    margin-top: 24px;
  }
}

.Modal__action-area .Button {
  height: 58px;
}

@media screen and (max-width: 768px) {
  .Modal__action-area .Button {
    height: 48px;
  }
}

.Modal__action-area--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.Modal__action-button {
  margin: 0 10px;
  padding: 13px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
}

.Modal__title--info {
  color: #094;
}

.Modal__title--alert {
  color: #a83937;
}

/**
 * ModalWindow ブロック
 *
 */
.ModalWindow {
  width: 100%;
  min-width: auto;
}

.ModalWindow__inner {
  padding: 0 50px;
}

@media screen and (max-width: 768px) {
  .ModalWindow__inner {
    padding: 20px 15px;
  }
}

@media screen and (min-width: 769px) {
  .ModalWindow__width-midium {
    width: 85%;
  }
}

.ModalWindow__grid {
  width: 100%;
  max-width: 900px;
}

@media screen and (max-width: 768px) {
  .ModalWindow__grid {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: calc(25% + 2px);
    flex-basis: calc(25% + 2px);
    max-width: calc(25% + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: calc(25% * 2 + 2px);
    flex-basis: calc(25% * 2 + 2px);
    max-width: calc(25% * 2 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: calc(25% * 3 + 2px);
    flex-basis: calc(25% * 3 + 2px);
    max-width: calc(25% * 3 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: calc(25% * 4 + 2px);
    flex-basis: calc(25% * 4 + 2px);
    max-width: calc(25% * 4 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: calc(20% + 2px);
    flex-basis: calc(20% + 2px);
    max-width: calc(20% + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: calc(20% * 2 + 2px);
    flex-basis: calc(20% * 2 + 2px);
    max-width: calc(20% * 2 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: calc(20% * 3 + 2px);
    flex-basis: calc(20% * 3 + 2px);
    max-width: calc(20% * 3 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: calc(20% * 4 + 2px);
    flex-basis: calc(20% * 4 + 2px);
    max-width: calc(20% * 4 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-5 {
    -ms-flex-preferred-size: calc(20% * 5 + 2px);
    flex-basis: calc(20% * 5 + 2px);
    max-width: calc(20% * 5 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: calc(16.66666667% + 2px);
    flex-basis: calc(16.66666667% + 2px);
    max-width: calc(16.66666667% + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: calc(16.66666667% * 2 + 2px);
    flex-basis: calc(16.66666667% * 2 + 2px);
    max-width: calc(16.66666667% * 2 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: calc(16.66666667% * 3 + 2px);
    flex-basis: calc(16.66666667% * 3 + 2px);
    max-width: calc(16.66666667% * 3 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: calc(16.66666667% * 4 + 2px);
    flex-basis: calc(16.66666667% * 4 + 2px);
    max-width: calc(16.66666667% * 4 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-5 {
    -ms-flex-preferred-size: calc(16.66666667% * 5 + 2px);
    flex-basis: calc(16.66666667% * 5 + 2px);
    max-width: calc(16.66666667% * 5 + 2px);
  }
  .ModalWindow__grid .Grid__cell .ModalWindow__grid.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-6 {
    -ms-flex-preferred-size: calc(16.66666667% * 6 + 2px);
    flex-basis: calc(16.66666667% * 6 + 2px);
    max-width: calc(16.66666667% * 6 + 2px);
  }
}

/**
      * 4列レイアウト
      *
      * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
      */
.ModalWindow__grid.Grid--column4 ._grid-1 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.ModalWindow__grid.Grid--column4 ._grid-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.ModalWindow__grid.Grid--column4 ._grid-3 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.ModalWindow__grid.Grid--column4 ._grid-4 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 26%;
  flex-basis: 26%;
  max-width: 26%;
}

.ModalWindow__grid.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 51%;
  flex-basis: 51%;
  max-width: 51%;
}

.ModalWindow__grid.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 76%;
  flex-basis: 76%;
  max-width: 76%;
}

.ModalWindow__grid.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 101%;
  flex-basis: 101%;
  max-width: 101%;
}

/**
      * 5列レイアウト
      *
      * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
      */
.ModalWindow__grid.Grid--column5 ._grid-1 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

.ModalWindow__grid.Grid--column5 ._grid-2 {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}

.ModalWindow__grid.Grid--column5 ._grid-3 {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  max-width: 60%;
}

.ModalWindow__grid.Grid--column5 ._grid-4 {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  max-width: 80%;
}

.ModalWindow__grid.Grid--column5 ._grid-5 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 21%;
  flex-basis: 21%;
  max-width: 21%;
}

.ModalWindow__grid.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 41%;
  flex-basis: 41%;
  max-width: 41%;
}

.ModalWindow__grid.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 61%;
  flex-basis: 61%;
  max-width: 61%;
}

.ModalWindow__grid.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 81%;
  flex-basis: 81%;
  max-width: 81%;
}

.ModalWindow__grid.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-5 {
  -ms-flex-preferred-size: 101%;
  flex-basis: 101%;
  max-width: 101%;
}

/**
      * 6列レイアウト
      *
      * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
      */
.ModalWindow__grid.Grid--column6 ._grid-1 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.ModalWindow__grid.Grid--column6 ._grid-2 {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.ModalWindow__grid.Grid--column6 ._grid-3 {
  -ms-flex-preferred-size: 50.0%;
  flex-basis: 50.0%;
  max-width: 50.0%;
}

.ModalWindow__grid.Grid--column6 ._grid-4 {
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.ModalWindow__grid.Grid--column6 ._grid-5 {
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.ModalWindow__grid.Grid--column6 ._grid-6 {
  -ms-flex-preferred-size: 100.0%;
  flex-basis: 100.0%;
  max-width: 100.0%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 17.66667%;
  flex-basis: 17.66667%;
  max-width: 17.66667%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 34.33333%;
  flex-basis: 34.33333%;
  max-width: 34.33333%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 51.0%;
  flex-basis: 51.0%;
  max-width: 51.0%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 67.66667%;
  flex-basis: 67.66667%;
  max-width: 67.66667%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-5 {
  -ms-flex-preferred-size: 84.33333%;
  flex-basis: 84.33333%;
  max-width: 84.33333%;
}

.ModalWindow__grid.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-6 {
  -ms-flex-preferred-size: 101.0%;
  flex-basis: 101.0%;
  max-width: 101.0%;
}

.Grid__cell--noline + .Grid__wrap .Grid__cell--lline {
  margin-left: -1px;
}

/*
      * 入れ子対応(グリッドサイズが％指定の場合、これがないと入れ子にしたときに親のサイズに対する相対サイズになるため崩れてしまう)
      */
.ModalWindow__grid .Grid__wrap._grid-6 ._grid-1 {
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.ModalWindow__grid .Grid__wrap._grid-6 ._grid-2 {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.ModalWindow__grid .Grid__wrap._grid-6 ._grid-3 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.ModalWindow__grid .Grid__wrap._grid-6 ._grid-4 {
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.ModalWindow__grid .Grid__wrap._grid-6 ._grid-5 {
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.ModalWindow__grid .Grid__wrap._grid-6 ._grid-6 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid .Grid__wrap._grid-5 ._grid-1 {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
}

.ModalWindow__grid .Grid__wrap._grid-5 ._grid-2 {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
}

.ModalWindow__grid .Grid__wrap._grid-5 ._grid-3 {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  max-width: 60%;
}

.ModalWindow__grid .Grid__wrap._grid-5 ._grid-4 {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  max-width: 80%;
}

.ModalWindow__grid .Grid__wrap._grid-5 ._grid-5 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid .Grid__wrap._grid-4 ._grid-1 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.ModalWindow__grid .Grid__wrap._grid-4 ._grid-2 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.ModalWindow__grid .Grid__wrap._grid-4 ._grid-3 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.ModalWindow__grid .Grid__wrap._grid-4 ._grid-4 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid .Grid__wrap._grid-3 ._grid-1 {
  -ms-flex-preferred-size: 42.33333%;
  flex-basis: 42.33333%;
  max-width: 42.33333%;
}

.ModalWindow__grid .Grid__wrap._grid-3 ._grid-2 {
  -ms-flex-preferred-size: 57.66667%;
  flex-basis: 57.66667%;
  max-width: 57.66667%;
}

.ModalWindow__grid .Grid__wrap._grid-3 ._grid-3 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid .Grid__wrap._grid-2 ._grid-1 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.ModalWindow__grid .Grid__wrap._grid-2 ._grid-2 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.ModalWindow__grid .Grid__wrap._grid-1 ._grid-1 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

/**
 * Headingブロック
 * 見出しのスタイルを定義
 */
.Heading {
  margin: 0;
  font-weight: bold;
  font-size: 1.714rem;
  line-height: 1.2;
}

.Heading span {
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .Heading {
    font-size: 1.5rem;
  }
  .Heading span {
    font-size: 1rem;
  }
}

.Heading--primary,
.Heading--primary-login {
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 2.143rem;
  color: #000;
  text-align: center;
}

.ContentBlock .Heading--primary-login:first-child {
  margin-top: 15px;
}

.Welcome + .ContentBlock .Heading--primary-login:first-child {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .Heading--primary,
  .Heading--primary-login {
    margin-top: 28px;
    font-size: 2rem;
  }
  .Welcome + .ContentBlock .Heading--primary-login:first-child {
    margin-top: 8px;
  }
  .Box + .Heading--primary {
    margin-top: 55px;
  }
}

.Heading--secondary {
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 2px solid #094;
  font-size: 1.714rem;
}

.Heading--primary + .Heading--secondary {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .Heading--secondary {
    margin-top: 28px;
    font-size: 1.5rem;
  }
}

.Heading--tertiary {
  margin-top: 35px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dotted #ccc;
  font-size: 1.286rem;
}

.Heading--secondary + .Heading--tertiary {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .Heading--tertiary {
    font-size: 1.5rem;
  }
}

.Heading--quaternary {
  margin-top: 25px;
  margin-bottom: 8px;
  color: #094;
  font-size: 1.142rem;
}

.Heading--tertiary + .Heading--quaternary {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .Heading--quaternary {
    font-size: 1.333rem;
  }
}

.Heading--wiht-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .Heading--wiht-button .Button, .Heading--wiht-button .FnButton {
    margin-left: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

.Heading--box-title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 1.286rem;
  color: #094;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Heading--box-title {
    font-size: 1.166rem;
  }
}

/**
 * Buttonブロック
 *
 */
.Button,
.Heading--wiht-button .Button {
  padding: 8px 8px 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 40px;
  background-color: #fcfcfc;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  color: #000;
  font-weight: normal;
  font-size: 1rem;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.Button:hover,
.Heading--wiht-button .Button:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .Button,
  .Heading--wiht-button .Button {
    text-align: center;
  }
  .Button:hover,
  .Heading--wiht-button .Button:hover {
    opacity: 1;
  }
}

.Button:disabled, .Button[data-disabled="true"], .Button._disabled {
  background-color: #eaeaea;
  border: 1px solid #e2e2e2;
  color: #afafaf;
  pointer-events: none;
}

.Button--thin {
  min-height: 0;
}

.Button--arrow {
  background-color: #fcfcfc;
  -webkit-box-shadow: inset 0 -1.5px 0 #ebebeb;
  box-shadow: inset 0 -1.5px 0 #ebebeb;
}

.Button--arrow::before {
  content: '';
  margin-right: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-button-arrow.svg) no-repeat 0 0;
}

.Button--arrow:disabled, .Button--arrow[data-disabled="true"], .Button--arrow._disabled {
  -webkit-box-shadow: inset 0 -1.5px 0 #e2e2e2;
  box-shadow: inset 0 -1.5px 0 #e2e2e2;
}

.Button--arrow:disabled::before, .Button--arrow[data-disabled="true"]::before, .Button--arrow._disabled::before {
  background: url(../images/common/icon-button-arrow_disabled.svg) no-repeat 0 0;
}

.Button--blank::after {
  content: '';
  margin-left: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-link-blank_black.svg) no-repeat 0 0;
}

.Button--blank:disabled::after, .Button--blank[data-disabled="true"]::after, .Button--blank._disabled::after {
  background: url(../images/common/icon-link-blank_disabled.svg) no-repeat 0 0;
}

.Button--large,
.Button--xlarge {
  width: 260px;
  min-height: 58px;
  font-weight: bold;
  font-size: 1.714rem;
  line-height: 1;
  -webkit-box-shadow: inset 0 -2px 0 #ebebeb;
  box-shadow: inset 0 -2px 0 #ebebeb;
}

@media screen and (max-width: 768px) {
  .Button--large,
  .Button--xlarge {
    width: 150px;
    min-height: 48px;
    font-size: 1.5rem;
  }
}

.Button--xlarge {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .Button--xlarge {
    width: 200px;
  }
}

.Button--middle {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .Button--middle {
    width: 100%;
  }
}

.Button--pc-middle {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .Button--pc-middle {
    padding: 8px 20px 6px;
    width: auto;
  }
}

.Button--wide {
  width: 360px;
}

@media screen and (max-width: 768px) {
  .Button--wide {
    width: 100%;
  }
}

.Button--xwide {
  width: 420px;
}

@media screen and (max-width: 768px) {
  .Button--xwide {
    width: 100%;
  }
}

.Button--caution, .Button--edit {
  -webkit-box-shadow: inset 0 -1px 0 #ebebeb;
  box-shadow: inset 0 -1px 0 #ebebeb;
}

.Button--caution::before {
  content: '';
  margin-right: 5px;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-alert.svg) no-repeat 0 0;
}

.Button--edit::before {
  content: '';
  margin-right: 5px;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-button-edit.svg) no-repeat 0 0;
}

.Button--caution:disabled::before, .Button--caution[data-disabled="true"]::before, .Button--caution._disabled::before {
  background: url(../images/common/icon-alert_disabled.svg) no-repeat 0 0;
}

/**
 * FnButtonブロック
 * 機能ボタンのスタイルを定義
 */
.FnButton {
  padding: 16px 8px 12px;
  display: inline-block;
  width: 350px;
  background-color: #094;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: inset 0 -2px 0 #047733;
  box-shadow: inset 0 -2px 0 #047733;
  font-weight: bold;
  font-size: 1.714rem;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.FnButton:hover {
  opacity: 0.7;
}

.FnButton:disabled, .FnButton[data-disabled="true"], .FnButton._diabled {
  background-color: #99beaa;
  -webkit-box-shadow: inset 0 -2px 0 #94b0a0;
  box-shadow: inset 0 -2px 0 #94b0a0;
  color: #ccdfd5;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .FnButton {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
    font-weight: bold;
    font-size: 1.083rem;
  }
  .FnButton:hover {
    opacity: 1;
  }
}

.FnButton-large,
.FnButton-xlarge {
  padding: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 58px;
}

@media screen and (max-width: 768px) {
  .FnButton-large,
  .FnButton-xlarge {
    width: 100%;
    height: auto;
    min-height: 58px;
  }
}

.FnButton-xlarge {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .FnButton-xlarge {
    width: 100%;
  }
}

.FnButton-xxlarge {
  width: 500px;
}

@media screen and (max-width: 768px) {
  .FnButton-xxlarge {
    width: 100%;
  }
}

.FnButton--txtsmall {
  padding: 16px 40px 12px;
  width: auto;
  height: 50px;
  font-size: 1.286rem;
}

@media screen and (max-width: 768px) {
  .FnButton--txtsmall {
    padding: 16px 8px 12px;
    width: 100%;
    height: auto;
    font-size: 1.333rem;
  }
}

.FnButton--blank {
  padding: 8px;
  min-width: 240px;
  height: 40px;
  font-size: 1.286rem;
}

.FnButton--blank::after {
  content: "";
  margin-left: 10px;
  display: inline-block;
  width: 16px;
  height: 16.571px;
  background: url(../images/common/icon-link-blank_white.svg) no-repeat 0 0;
}

.FnButton--blank:disabled::after, .FnButton--blank[data-disabled="true"]::after, .FnButton--blank._diabled::after {
  background: url(../images/common/icon-link-blank_disabled.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--blank {
    min-width: auto;
    width: auto;
    min-width: auto;
    height: auto;
    font-size: 1.083rem;
    line-height: 1;
    text-align: left;
  }
}

.FnButton--arrow {
  padding: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 300px;
  height: 40px;
  font-weight: normal;
  font-size: 1rem;
}

.FnButton--arrow::before {
  content: "";
  margin-right: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-button-arrow_white.svg) no-repeat 0 0;
}

.FnButton--arrow:disabled::before, .FnButton--arrow[data-disabled="true"]::before, .FnButton--arrow._diabled::before {
  background: url(../images/common/icon-button-arrow_white_disabled.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--arrow {
    min-width: auto;
  }
}

.FnButton--reload {
  padding: 8px 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  height: 35px;
  background-color: #b2e0c7;
  font-weight: normal;
  font-size: 1rem;
  color: #333;
  -webkit-box-shadow: inset 0 -2px 0 #a0c9b3;
  box-shadow: inset 0 -2px 0 #a0c9b3;
}

.FnButton--reload::before {
  content: "";
  margin-right: 3px;
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-button-reload.svg) no-repeat 0 0;
}

.FnButton--reload:disabled::before, .FnButton--reload[data-disabled="true"]::before, .FnButton--reload._diabled::before {
  background: url(../images/common/icon-button-reload_disabled.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--reload {
    padding: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 30px;
    font-size: 1.083rem;
  }
  .FnButton--reload::before {
    width: 12px;
    height: 12px;
  }
}

.FnButton--keyboard {
  padding: 8px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  width: auto;
  height: 50px;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
}

.FnButton--keyboard::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 30px;
  height: 18px;
  background: url(../images/common/icon-button-keyboard.svg) no-repeat 0 0;
}

.FnButton--magnifier {
  padding: 8px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  width: auto;
  height: 50px;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .FnButton--magnifier {
    padding: 7px;
    min-width: 95px;
  }
}

.FnButton--magnifier::before {
  content: "";
  margin-right: 10px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: url(../images/common/icon-button-magnifier.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--magnifier::before {
    margin-right: 5px;
  }
}

.FnButton--confirm {
  padding: 8px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  width: auto;
  height: 50px;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .FnButton--confirm {
    padding: 7px;
    min-width: 95px;
  }
}

.FnButton--confirm::before {
  content: "";
  margin-right: 10px;
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/refer/icon-typecard_checkmark_confirm.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--confirm::before {
    margin-right: 5px;
    width: 15px;
    height: 15px;
  }
}

.FnButton--date {
  padding: 8px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 36px;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.FnButton--date::before {
  content: "";
  margin-right: 3px;
  display: block;
  width: 16.714px;
  height: 18px;
  background: url(../images/common/icon-button-calendar.svg) no-repeat 0 0;
}

.FnButton--edit {
  padding: 8px 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 50px;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
}

.FnButton--edit::before {
  content: "";
  margin-right: 5px;
  display: block;
  width: 17.919px;
  height: 14.143px;
  background: url(../images/common/icon-edit.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--edit {
    height: 40px;
  }
}

.FnButton--search {
  position: relative;
  padding-left: 15px;
}

.FnButton--search::before {
  position: absolute;
  left: 13px;
}

@media screen and (max-width: 768px) {
  .FnButton--search::before {
    left: 6px;
  }
}

@media screen and (max-width: 768px) {
  .FnButton--spSmall::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
}

.FnButton--check {
  padding: 8px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 50px;
  font-weight: normal;
  font-size: 1rem;
  text-align: left;
  white-space: nowrap;
}

.FnButton--check::before {
  content: "";
  margin-right: 5px;
  display: block;
  width: 17.919px;
  height: 14.143px;
  background: url(../images/common/icon-checkbox-checkmark_white.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .FnButton--check {
    height: 40px;
  }
}

/**
 * TitleButtonブロック
 * 見出しの右に置かれるボタンを定義
 */
.TitleButton {
  position: absolute;
  top: -5px;
  right: 0;
  padding: 14px 8px 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 280px;
  background-color: #fff;
  border-radius: 26px;
  border: none;
  font-size: 1.714rem;
  line-height: 1;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: inset 0 -2px 0 #dcdcdc;
  box-shadow: inset 0 -2px 0 #dcdcdc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.TitleButton::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 15.715px;
  height: 22.785px;
  background: url(../images/common/icon-arrow-right.svg) no-repeat 0 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.TitleButton:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .TitleButton {
    top: -8px;
    padding: 8px 24px 8px 8px;
    width: auto;
    min-width: 0;
    min-height: 0;
    border-radius: 13px;
    font-size: 1rem;
    line-height: 1.16;
    text-align: center;
  }
  .TitleButton:hover {
    opacity: 1;
  }
  .TitleButton::after {
    right: 8px;
    width: 10.406px;
    height: 16.192px;
  }
}

.TitleButton--first-time {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 1rem;
  line-height: 1.28;
  text-align: left;
}

.TitleButton--first-time::before {
  content: '';
  margin: 0 15px 0 40px;
  width: 26.405px;
  height: 36px;
  background: url(../images/login/icon-button-wakaba.svg) no-repeat 0 0;
}

.TitleButton--first-time::after {
  width: 13.861px;
  height: 21.589px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
  .TitleButton--first-time {
    top: -12px;
    padding-left: 15px;
    width: 115px;
    background-image: none;
  }
  .TitleButton--first-time::before {
    content: none;
  }
  .TitleButton--first-time::after {
    width: 10.396px;
    height: 16.192px;
  }
}

/**
 * HomeButtonブロック
 * Homeページでのみ使用される大きいボタンのスタイルを定義
 */
.HomeButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  width: 300px;
  height: 210px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 26px;
  -webkit-box-shadow: inset 0 -2px 0 #ebebeb;
  box-shadow: inset 0 -2px 0 #ebebeb;
  font-size: 1.714rem;
  line-height: 1.33;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.HomeButton:hover {
  opacity: .7;
}

.HomeButton::before {
  content: '';
  margin-bottom: 20px;
  display: block;
}

.HomeButton.HomeButton--info::before {
  width: 72px;
  height: 66px;
  background: url(../images/common/icon-home-button-info.svg) no-repeat 0 0;
}

.HomeButton.HomeButton--contract::before {
  width: 60px;
  height: 66px;
  background: url(../images/common/icon-home-button-contract.svg) no-repeat 0 0;
}

.HomeButton.HomeButton--operation::before {
  width: 60px;
  height: 55px;
  background: url(../images/common/icon-home-button-operation.svg) no-repeat 0 0;
}

.HomeButton.HomeButton--furikaeInfo::before {
  width: 80px;
  height: 70px;
  background: url(../images/common/icon-home-button-furikaeInfo.svg) no-repeat 0 0;
}

.HomeButton.HomeButton--omoshikomi::before {
  width: 60px;
  height: 55px;
  background: url(../images/common/icon-home-button-omoshikomi.svg) no-repeat 0 0;
}

.HomeButton.HomeButton--seikyu::before {
  width: 60px;
  height: 55px;
  background: url(../images/common/icon-home-button-seikyu.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .HomeButton {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 19px;
    width: 100%;
    height: auto;
    min-height: 90px;
    border-radius: 13px;
    font-size: 1.5rem;
    text-align: left;
  }
  .HomeButton:hover {
    opacity: 1;
  }
  .HomeButton::before {
    margin-bottom: 0;
    margin-right: 27px;
  }
  .HomeButton.HomeButton--info span, .HomeButton.HomeButton--contract span, .HomeButton.HomeButton--operation span, .HomeButton.HomeButton--furikaeInfo span,
  .HomeButton.HomeButton--omoshikomi span, .HomeButton.HomeButton--seikyu span {
    width: 7em;
  }
  .HomeButton.HomeButton--info::before {
    width: 60px;
    height: 48.965px;
    background: url(../images/common/icon-home-button-info.svg) no-repeat right 0;
    background-size: 52.5px 48.965px;
    margin-left: -20px;
  }
  .HomeButton.HomeButton--contract::before {
    width: 60px;
    height: 50px;
    background: url(../images/common/icon-home-button-contract.svg) no-repeat right 0;
    background-size: 45px 50px;
  }
  .HomeButton.HomeButton--operation::before {
    width: 60px;
    height: 42.913px;
    background: url(../images/common/icon-home-button-operation.svg) no-repeat right 0;
    background-size: 47px 42.913px;
  }
  .HomeButton.HomeButton--furikaeInfo::before {
    width: 60px;
    height: 50px;
    background: url(../images/common/icon-home-button-furikaeInfo.svg) no-repeat right 0;
    background-size: 60px 50px;
  }
}

.HomeButton--secondary {
  padding: 24px 24px 23px;
  display: inline-block;
  min-width: 480px;
  height: auto;
}

.HomeButton--secondary::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .HomeButton--secondary {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 0;
    min-height: 0;
  }
}

.HomeButton__blank::after {
  content: '';
  margin-left: 10px;
  display: inline-block;
  width: 16px;
  height: 16.571px;
  background: url(../images/common/icon-link-blank.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .HomeButton__blank::after {
    margin-left: 5px;
    width: 12px;
    height: 12px;
  }
}


/**
 * iconButtonブロック
 * アイコンと文字列を横並びにしたボタンスタイルを定義
 */
.iconButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  width: 450px;
  height: 150px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 26px;
  -webkit-box-shadow: inset 0 -2px 0 #ebebeb;
  box-shadow: inset 0 -2px 0 #ebebeb;
  font-size: 1.5rem;
  line-height: 1.33;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.iconButton:hover {
  opacity: .7;
}

.iconButton::before {
  content: '';
  margin-right: 27px;
  display: block;
}

.iconButton.iconButton--welcoin::before {
  width: 60px;
  height: 66px;
  background: url(../images/common/icon-link-welcoin.svg) no-repeat 0 0;
  background-size: 60px 66px;
}


@media screen and (max-width: 768px) {
  .iconButton {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 19px;
    width: 100%;
    height: auto;
    min-height: 90px;
    border-radius: 13px;
    font-size: 1.5rem;
    text-align: center;
  }
  .iconButton:hover {
    opacity: 1;
  }
  .iconButton::before {
    margin-bottom: 0;
  }
  .iconButton.iconButton--welcoin span {
    width: 9em;
    text-align: center;
  }
  .iconButton.iconButton--welcoin::before {
    width: 55px;
    height: 60px;
    background: url(../images/common/icon-link-welcoin.svg) no-repeat right 0;
    background-size: 55px 60px;
  }
}

/**
 * TextLinkブロック
 * テキストリンクのスタイルを定義
 */
.TextLink {
  display: inline-block;
  padding-left: 10px;
  text-decoration: none;
  color: #666;
}

.TextLink--usercheck {
    padding-left: 100px;
    padding-top: 5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .TextLink--usercheck {
        padding-top: 6px;
        padding-left: 78px;
    }
}

.TextLink--identification {
    margin: 5px;
}

.TextLink::before {
  content: '';
  margin-left: -10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../images/common/icon-link-arrow.svg) no-repeat 0 0;
}

.TextLink:hover {
  text-decoration: underline;
}

.TopicsList__item .TextLink {
  color: #000;
}

@media screen and (max-width: 768px) {
  .TextLink::before {
    height: 7px;
  }
  .TextLink:hover {
    text-decoration: none;
  }
}

.SiteHeader .TextLink,
.SiteFooter .TextLink {
  color: #fff;
}

.SiteHeader .TextLink::before,
.SiteFooter .TextLink::before {
  background: url(../images/common/icon-link-arrow_white.svg) no-repeat 0 0;
}

.TextLink--blank::after {
  content: '';
  margin-left: 5px;
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-link-blank_text.svg) no-repeat 0 0;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.TextLink--blank.Button--arrow::after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.SiteHeader .TextLink--blank::after,
.SiteFooter .TextLink--blank::after {
  background: url(../images/common/icon-link-blank_white.svg) no-repeat 0 0;
}

.TextLink--blank-window::after {
    background: url(../images/common/icon-link-blank.svg) no-repeat 0 0;
}

.TextLink--usercheck {
    padding-left: 100px;
    padding-top: 5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .TextLink--usercheck {
        padding-top: 6px;
        padding-left: 78px;
    }
}

.TextLink--blank__identification {
    padding-left: 30px;
}

.TextLink--identification {
    margin: 5px;
}

.TextLink--internal {
  padding-left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #094;
  font-size: 16px;
  font-weight: bolder;
}

.TextLink--internal::before {
  content: none;
}

.TextLink--internal::after {
  content: '';
  margin-left: 5px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 6.75px;
  background: url(../images/common/icon-link-internal.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
    .TextLink--internal {
        font-size: 14px;
    }
}

.TextLink--arrow::before {
  content: none;
}

.TextLink--arrow::after {
  content: '';
  margin-left: 8px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon-button-arrow.svg) no-repeat 0 0;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .TextLink--arrow::after {
    width: 15px;
    height: 15px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.TextLink--help {
  color: #094;
}

.TextLink--help::before {
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-help.svg) no-repeat 0 0;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.TextLink--close::before {
  width: 10px;
  height: 10px;
  background: url() no-repeat 0 0;
}

.Accordion .TextLink::before {
  height: 0;
}

.Accordion.Accordion--opened .TextLink::before {
  height: 10px;
}

/**
 * Asking ブロック
 *
 */
.Asking {
  margin-top: 35px;
  margin-bottom: 30px;
  font-size: 1.142rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Asking {
    margin-bottom: 20px;
    font-size: 1.083rem;
    text-align: left;
  }
}

/**
 * InputFormブロック
 *
 */
.InputForm {
  margin: 40px auto 0;
  width: 720px;
}

@media screen and (max-width: 768px) {
  .InputForm {
    margin: 20px auto 0;
    width: 100%;
  }
}

.InputForm__usermail-address {
    list-style: none;
    margin: 0;
    padding: 15px 35px;
}

@media screen and (max-width: 768px) {
    .InputForm__usermail-address {
        padding: 0 10px;
    }
}

.InputForm__userdata {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.InputForm__userdata + .InputForm__userdata {
    border-top: 1px dotted #e5e5e5;
}

.InputForm__userdata-mail {
    padding-bottom: 30px;
    border-top: 1px dotted #e5e5e5;
    border-bottom: 1px dotted #e5e5e5;
}

.InputForm__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .InputForm__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.InputForm__content-head {
    width: 130px;
    font-weight: bold;
    font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
    .InputForm__content-head {
        margin-bottom: 3px;
        width: 100%;
        font-size: 1.166rem;
    }
}

.InputForm__content-data {
    font-size: 1.428rem;
    text-align: left;
    width: calc(100% - 130px);
}

@media screen and (max-width: 768px) {
    .InputForm__content-data {
        font-size: 1.166rem;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
  .InputForm {
    margin-top: 15px;
  }
  .InputForm.Box {
    padding: 20px;
  }
}

.InputForm--join,
.InputForm--wide {
  margin-top: 0;
  width: 900px;
}

@media screen and (max-width: 768px) {
  .InputForm--join,
  .InputForm--wide {
    width: 100%;
  }
}

.InputForm--claim {
  margin-top: 0;
  width: 850px;
}

@media screen and (max-width: 768px) {
  .InputForm--claim {
    width: 100%;
  }
}
.InputForm__consideration,
.InputForm__internet-service {
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
    .InputForm__internet-service {
        width: 100%;
    }
}

.InputForm__section-title {
  margin: 55px 0 10px;
  color: #094;
  font-size: 1.714rem;
}

@media screen and (max-width: 768px) {
  .InputForm__section-title {
    margin: 25px 0 5px;
    font-size: 1.5rem;
  }
}

.InputForm__leadtext {
  margin: 45px 0 30px;
  font-size: 1.286rem;
  text-align: center;
}

.InputForm__leadtext--underspace {
    margin-bottom: 120px;
}

.InputForm__leadtext--space {
    margin: 60px 0;
    font-size: 1.286rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
  .InputForm__leadtext,
  .InputForm__leadtext--underspace,
  .InputForm__leadtext--space {
    margin: 20px 0 17px;
    font-size: 1.083rem;
    text-align: left;
  }
}

.InputForm__leadtext--margin-narrow {
  margin: 15px 0 30px;
}

.InputForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.InputForm--confirm .InputForm__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.InputForm__row + .InputForm__row {
  margin-top: 20px;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .InputForm__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .InputForm__row + .InputForm__row {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.InputForm__row-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .InputForm__row-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.InputForm__row-inner:last-child {
  margin-bottom: 0;
}

.InputForm__row--w-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .InputForm__row--row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .InputForm__row--row .InputForm__data {
    margin-top: 0;
  }
}

.InputForm__header {
  padding-top: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 135px;
}

.InputForm__header--multi-line {
    padding-top: 0;
}

.InputForm--confirm .InputForm__header {
  padding-top: 0;
  padding-right: 38px;
  width: 200px;
}

@media screen and (max-width: 768px) {
  .InputForm--confirm .InputForm__header {
    width: 100%;
    padding-right: 0;
  }
}

.InputForm__row--confirm .InputForm__header {
  padding-top: 0;
}

.InputForm__row--kouza .InputForm__header {
  padding-right: 10px;
  width: 350px;
}

@media screen and (max-width: 768px) {
  .InputForm__row--kouza .InputForm__header {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 768px) {
  .InputForm__header {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    font-size: 1.166rem;
  }
}

.InputForm__header--wide {
  padding-top: 18px;
  padding-right: 38px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
}

@media screen and (max-width: 768px) {
  .InputForm__header--wide {
    width: 100%;
    padding-right: 0;
  }
}

.InputForm__header--middle {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  padding-top: 0;
}

.InputForm__kouza-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .InputForm__kouza-wrap {
    width: 100%;
  }
}

.InputForm__header--num {
  width: 50px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  text-align: center;
  margin-right: 10px;
  padding-top: 0;
  font-size: 1.714rem;
  font-weight: bold;
}

.InputForm__header--num._multibyte-bracket {
  width: 58px;
  text-indent: -.25em;
}

.InputForm__row--kouza .InputForm__header--num {
  width: 40px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .InputForm__row--kouza .InputForm__header--num {
    margin-right: 0;
    width: 25px;
  }
}

@media screen and (max-width: 768px) {
  .InputForm__header--num {
    width: 30px;
    -ms-flex-item-align: baseline;
    align-self: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
  }
  .InputForm__header--num._multibyte-bracket {
    width: 40px;
    text-indent: -.5em;
  }
}

.InputForm__data {
  width: calc(100% - 135px);
}

.InputForm__header--num + .InputForm__data {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.InputForm__row--kouza .InputForm__data {
  width: calc(100% - 400px);
}

@media screen and (max-width: 768px) {
  .InputForm__row--kouza .InputForm__data {
    margin-left: 25px;
    width: calc(100% - 25px);
  }
}

@media screen and (max-width: 768px) {
  .InputForm__data {
    margin-top: 6px;
    width: 100%;
  }
}

.InputForm__data--2items div {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .InputForm__data--2items div {
    width: 100%;
  }
}

.InputForm__data--3items div {
  width: 33.3333333333%;
}

@media screen and (max-width: 768px) {
  .InputForm__data--3items div {
    width: 100%;
  }
}

.InputForm__data--4items div {
  width: 25%;
}

@media screen and (max-width: 768px) {
  .InputForm__data--4items div {
    width: 100%;
  }
}

.InputForm__data--5items div {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .InputForm__data--5items div {
    width: 100%;
  }
}

.InputForm__label {
  font-size: 1.142rem;
  font-weight: bold;
  color: #000;
}

.InputForm__error .InputForm__label,
.InputForm__error .InputForm__inner-llabel,
.InputForm__error .InputForm__inner-rlabel {
  color: #e60000;
}

@media screen and (max-width: 768px) {
  .InputForm__label {
    width: auto;
    font-size: 1.166rem;
  }
}

.InputForm__label--consideration,
.InputForm__label--internet-service {
    width: 720px;
    color: #094;
    text-align: left;
    border-bottom: 1px dotted #e5e5e5;
}

.InputFormArea {
    margin: 30px 0 40px 25px;
    width: 680px;
}

@media screen and (max-width: 768px) {
    .InputFormArea {
        width: 100%;
        margin-left: 0;
    }
}

.InputForm__label--space {
    margin: 20px 20px 0 28px;
    border-bottom: 1px solid #094;
}

@media screen and (max-width: 768px) {
    .InputForm__label--space {
        margin: 21px 21px 0 21px;
    }
}

.InputForm__label--Circle {
    border-radius:50%;
    color: #094;
}

.InputForm__error .InputForm__label {
  color: #e60000;
}

@media screen and (max-width: 768px) {
  .InputForm__label {
    width: auto;
    font-size: 1.166rem;
  }
}

.InputForm__inner-llabel,
.InputForm__inner-rlabel,
.InputForm__inner-clabel {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-weight: normal;
  font-size: 1.142rem;
}

.InputForm__inner-llabel {
  margin-right: 5px;
}

.InputForm__inner-rlabel {
  margin-left: 5px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .InputForm__inner-rlabel {
    margin-right: 0;
  }
}

.InputForm__inner-clabel {
    margin: 0 5px;
}

@media screen and (max-width: 768px) {
    .InputForm__inner-clabel {
        text-align: center;
    }
}

.InputForm__confirm-text {
  font-size: 1.428rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .InputForm__confirm-text {
    font-size: 1.166rem;
  }
}

.InputForm__input {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .InputForm .InputForm__input--sp-smalltext {
    font-size: 1.05rem;
  }
}

@media screen and (min-width: 769px) {
  .InputForm__input-minheight {
    min-height: 74px !important;
  }
}

/**
 * 3行テキストのチェックボックスの最小高さを定義
 */
@media screen and (min-width: 769px) {
  .InputForm__input-minheight-3lines {
    min-height: 95px !important;
  }
}

.List_side-by-side-interval {
  margin-right: 40px;
}

@media screen and (max-width: 769px) {
  .List_side-by-side-interval {
    margin-right: 0;
  }
}

.InputForm__price-block .InputForm__input {
  width: calc(100% - 1em);
}

.InputForm__tel-block .InputForm__input {
  margin: 0 .5em;
  width: calc(33.33333% - .875em);
}

.InputForm__tel-block .InputForm__input:first-child {
  margin-left: 0;
}

.InputForm__tel-block .InputForm__input:last-child {
  margin-right: 0;
}

.InputForm__postcode-block .InputForm__input {
  margin: 0 .5em;
}

.InputForm__postcode-block .InputForm__input:first-child {
  margin-left: 0;
  width: 8em;
}

.InputForm__postcode-block .InputForm__input:last-child {
  margin-right: 0;
  width: 10em;
}

.InputForm__postcode-block--nohyphen .InputForm__input {
  width: 16em;
}

@media screen and (max-width: 768px) {
  .InputForm__postcode-block .InputForm__input:first-child {
    width: calc(50% - .75em);
  }
  .InputForm__postcode-block .InputForm__input:last-child {
    width: calc(50% - .75em);
  }
  .InputForm__postcode-block--nohyphen .InputForm__input {
    width: 100%;
  }
}

.InputForm__postcode-block--full {
  width: 100%;
  margin-bottom: 5px;
 }

.InputForm__error .InputForm__input {
  background-color: #ffcdd2;
  border-color: #f44;
  border-width: 2px;
}

.InputForm__width-middle {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .InputForm__width-middle {
    width: 100%;
  }
}

.InputForm__half-w-keyboard {
  width: 510px;
}

@media screen and (max-width: 768px) {
  .InputForm__half-w-keyboard {
    width: 100%;
  }
}

.InputForm__keyboard-button {
  margin-left: 10px;
  width: 150px;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .InputForm__keyboard-button {
    display: none;
  }
}

.InputForm__banksearch-button {
  margin-right: 10px;
  width: 150px;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .InputForm__banksearch-button {
    width: 95px;
  }
}

.InputForm__addresssearch-button {
  margin-right: 10px;
  width: 160px;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .InputForm__addresssearch-button {
    width: 90px;
  }
}

.InputForm__addresssearch-button--wide {
  width: 160px;
  white-space: normal;
}

@media screen and (max-width: 768px) {
  .InputForm__addresssearch-button--wide {
    width: 100%;
  }
}

.InputForm__asking {
  margin: 74px 0 60px;
  font-size: 1.286rem;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .InputForm__asking {
    margin: 38px 0 40px;
    font-size: 1.083rem;
    text-align: left;
  }
}

.InputForm__submit-button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 360px;
  background-color: #9c3f39;
  -webkit-box-shadow: inset 0 -2px 0 #6d2b27;
  box-shadow: inset 0 -2px 0 #6d2b27;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}

.InputForm__submit-button::before {
  content: "";
  margin-right: 20px;
  display: block;
  width: 24px;
  height: 20px;
  background: url(../images/common/icon-button-login.svg) no-repeat 0 0;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.InputForm__submit-button:disabled, .InputForm__submit-button[data-disabled="true"], .InputForm__submit-button._diabled {
  background-color: #b09492 !important;
  -webkit-box-shadow: inset 0 -2px 0 #998684;
  box-shadow: inset 0 -2px 0 #998684;
  color: #d8cac9;
}

@media screen and (max-width: 768px) {
  .InputForm__submit-button {
    width: 100%;
    font-size: 2rem;
  }
}

.InputForm__block-title {
  margin: 20px 0 10px;
  color: #094;
  font-size: 1.714rem;
}

@media screen and (max-width: 768px) {
  .InputForm__block-title {
    font-size: 1.5rem;
  }
}

.InputForm__inner {
  padding: 20px;
  border: 4px solid #094;
}

@media screen and (max-width: 768px) {
  .InputForm__inner {
    padding: 12.5px;
  }
}

.InputForm__row--line {
  padding: 25px 0;
  border-top: 1px dotted #e5e5e5;
}

.InputForm__inner .InputForm__row--line:first-child {
  margin-top: 5px;
  padding-top: 0;
  border-top: none;
}

.InputForm__row--line.InputForm__single-row {
  border-bottom: 1px dotted #e5e5e5;
}

.InputForm__row--line + .InputForm__row--line {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .InputForm__row--line {
    padding: 18px 0;
  }
}

.InputForm__row--bottomline {
  border-bottom: 1px dotted #e5e5e5;
}

.InputForm__row--kouza {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.InputForm--confirm .InputForm__row--kouza {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .InputForm__row--kouza {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.InputForm__row--confirm {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.InputForm__data--2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.InputForm__data--2col div + div {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .InputForm__data--2col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .InputForm__data--2col div + div {
    margin-top: 10px;
    margin-left: 0;
  }
}

.InputForm__data--2col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.InputForm__data--2col2 div + div {
  margin-left: 0px;
}

@media screen and (max-width: 768px) {
  .InputForm__data--2col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .InputForm__data--2col2 div + div {
    margin-top: 0px;
    margin-left: 0;
  }
}

.InputForm__chk {
  width: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: right;
  margin: 0 0 0 20px;
}

@media screen and (max-width: 768px) {
  .InputForm__chk {
    width: 100%;
    margin: 10px 0 0;
  }
}

.InputForm__chk--double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 235px;
}

@media screen and (max-width: 768px) {
  .InputForm__chk--double {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }
  .InputForm__chk--double .RadioButton + label,
  .InputForm__chk--double .CheckboxButton + label {
    margin-right: 10px;
  }
  .InputForm__chk--double .RadioButton + label:last-child,
  .InputForm__chk--double .CheckboxButton + label:last-child {
    margin-right: 0;
  }
}

.InputForm__input--name {
  width: calc(100% - 2em);
}

.InputForm__input--name._kana {
  width: calc(100% - 4em);
}

.InputForm__input--code {
    width: 100%;
}

@media screen and (max-width: 768px) {
  .InputForm__input--name {
    width: 100%;
  }
  .InputForm__inner-llabel + .InputForm__input--name {
    width: calc(100% - 2em - 5px);
  }
}

.InputForm__data--birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .InputForm__data--birthday {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.InputForm__price-block,
.InputForm__tel-block,
.InputForm__postcode-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.InputForm__input--pw {
  width: calc(100% - 160px);
}

.InputForm__input--kigou {
  width: calc(6em + 30px);
}

@media screen and (max-width: 768px) {
  .InputForm__input--kigou {
    width: calc(6em + 30px) !important;
  }
}

.InputForm__input--bank {
  width: calc(100% - 160px) !important;
}

@media screen and (max-width: 768px) {
  .InputForm__input--bank {
    width: calc(100% - 105px) !important;
  }
}

.InputForm__input--bank-small {
  width: calc(100% - 130px) !important;
}

@media screen and (max-width: 768px) {
  .InputForm__input--bank-small {
    width: calc(100% - 95px) !important;
  }
}

@media screen and (max-width: 768px) {
  .InputForm__input--bank-spXsmall {
    width: calc(100% - 80px) !important;
  }
}

.InputForm__header--small {
  width: 90px;
}

.InputForm__header--large {
  width: 170px;
}

.InputForm__header--claim {
  width: 220px;
}

.InputForm__header--kyosaikin {
    width: 175px;
    margin-right: 20px;
    display: flex;
    justify-content: left;
    align-items: center;
}
@media screen and (max-width: 768px) {
  .InputForm__header--kyosaikin {
    width: 100%;
    display: block;
  }
}
.InputForm__header--kyosaikin + .InputForm__data {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
  .InputForm__header--large {
    width: 100%;
  }
}

.InputForm__banksearch-button--small {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .InputForm__banksearch-button--small {
    min-width: 70px;
    width: 85px;
  }
}

@media screen and (max-width: 768px) {
  .InputForm__banksearch-button--spXsmall {
    width: 70px;
  }
}

.InputForm__input:disabled {
  background: #f5f5f5;
  border: 1px solid #e2e2e2;
  cursor: pointer;
}

.InputForm__row--disabled {
  background-color: #f5f5f5;
  color: #aaa;
}

/**
 * RadioButton ブロック
 *
 */
.RadioButton {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.RadioButton + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 8px 7px 48px;
  min-height: 50px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.428rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.RadioButton + label::before, .RadioButton + label::after {
  position: absolute;
  display: block;
  content: '';
}

.RadioButton + label::before {
  top: 50%;
  left: 8px;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #ccc;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.InputForm__error .RadioButton + label {
  background-color: #ffcdd2;
  border-color: #f44;
  border-width: 2px;
}

.RadioButton:checked + label {
  border-color: #094;
  color: #094;
}

.RadioButton:checked + label::after {
  top: 50%;
  left: 12px;
  width: 24px;
  height: 24px;
  background-color: #094;
  border-radius: 12.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.RadioButton:disabled + label {
    background-color: #f5f5f5;
    border: 1px solid #e2e2e2;
    color: #afafaf;
    pointer-events: none;
}

.RadioButton--card + label {
  display: block;
  width: 100%;
  font-weight: normal;
}

.InputForm__error .RadioButton--card + label {
  width: 100%;
  font-weight: normal;
  background-color: #ffcdd2;
  border: 2px solid #f44;
}

.RadioButton--card + label .RadioButton__title {
  display: block;
  font-weight: bold;
  font-size: 1.428rem;
}

.RadioButton--card + label .RadioButton__text {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.RadioButton--card__w-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.RadioButton--card__s-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

@media screen and (max-width: 768px) {
  .RadioButton--card__w-img,
  .RadioButton--card__s-img {
    display: block;
  }
}

.RadioButton--card__img-column {
  margin-left: 10px;
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.RadioButton--card__select-column {
  margin-left: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.RadioButton--card__img-column * {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .RadioButton--card__img-column,
  .RadioButton--card__select-column {
    margin-left: 0;
    width: 100%;
  }
  .RadioButton--card__img-column img {
    display: none;
  }
  .RadioButton--card__img-column * {
    width: 100%;
  }
}

.RadioButton__title--line {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #e5e5e5;
  line-height: 1.2;
}

.RadioButton__text--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .RadioButton__text--flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .RadioButton__text-desc {
    width: 320px;
  }
}

.RadioButton__title--card {
  margin-bottom: 20px;
  font-weight: bold;
}

.RadioButton--middle {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .RadioButton--middle {
   width: 100%;
  }
}

.RadioButton--large {
  height: 66px;
}

@media screen and (max-width: 768px) {
  .RadioButton--large {
   height: 100%;
  }
}

/**
 * RadioButtonMini ブロック
 *
 */
.RadioButtonMini {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.RadioButtonMini + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 25px;
  min-height: 23px;
  font-size: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.RadioButtonMini + label::before, .RadioButtonMini + label::after {
  position: absolute;
  display: block;
  content: '';
}

.RadioButtonMini + label::before {
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 15px;
  border: 1px solid #ccc;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.RadioButtonMini:checked + label {
  color: #094;
}

.RadioButtonMini:checked + label::after {
  top: 50%;
  left: 3px;
  width: 14px;
  height: 14px;
  background-color: #094;
  border-radius: 12.5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**
 * Checkbox ブロック
 *
 */
.CheckboxButton {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.CheckboxButton + label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 10px 7px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.428rem;
  line-height: 1.2;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.CheckboxButton + label::before, .CheckboxButton + label::after {
  display: block;
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.CheckboxButton + label::before {
  margin-right: 10px;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #ccc;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .CheckboxButton + label {
    width: 100%;
    font-size: 1.333rem;
  }
}

.InputForm__error .CheckboxButton + label {
  background-color: #ffcdd2;
  border-color: #f44;
  border-width: 2px;
}

.CheckboxButton:checked + label {
  border-color: #094;
  color: #094;
}

.CheckboxButton:checked + label::after {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 21px;
  height: 16.096px;
  background: url(../images/common/icon-checkbox-checkmark.svg) no-repeat 0 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.CheckboxButton--card + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-weight: normal;
}

.CheckboxButton--card + label .CheckboxButton__title {
  display: block;
  font-weight: bold;
  font-size: 1.428rem;
}

.CheckboxButton--card + label .CheckboxButton__text {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

@media screen and (min-width: 769px) {
  .CheckboxButton__text-desc {
    width: 320px;
  }
}

.CheckboxButton--disabled + label {
  background-color: #f5f5f5;
  color: #aaa;
  cursor: default;
}

.CheckboxButton--disabled + label::before {
  color: #aaa;
}

/**
 * ActionArea ブロック
 *
 */
.ActionArea {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ActionArea--underspace {
    margin: 38px 0 100px 0;
}

.ContentBlock__inner > .ActionArea {
  margin-bottom: 12px;
}

.Box > .ActionArea:last-child {
  margin-bottom: 17px;
}

@media screen and (max-width: 768px) {
  .ActionArea,
  .ActionArea--underspace {
    margin-top: 25px;
    margin-bottom: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .ActionArea--next-row {
    margin-top: 0;
  }
}

.ActionArea--mt-wide {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .ActionArea--mt-wide {
    margin-top: 30px;
  }
}

.ActionArea--mb-wide {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .ActionArea--mb-wide {
    margin-bottom: 25px;
  }
}

.ActionArea__next-button,
.ActionArea__back-button,
.ActionArea__stop-button,
.ActionArea__yes-button,
.ActionArea__no-button {
  margin: 0 10px;
  padding: 13px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .ActionArea__next-button,
  .ActionArea__back-button,
  .ActionArea__stop-button,
  .ActionArea__yes-button,
  .ActionArea__no-button {
    margin: 0;
    font-size: 2rem;
  }
}

.ActionArea__next-button,
.ActionArea__stop-button,
.ActionArea__yes-button {
  background-color: #094;
  min-height: 58px;
  color: #fff;
  -webkit-box-shadow: inset 0 -2px 0 #047733;
  box-shadow: inset 0 -2px 0 #047733;
}

.ActionArea__next-button:disabled, .ActionArea__next-button[data-disabled="true"], .ActionArea__next-button._diabled {
  background-color: #99beaa;
  -webkit-box-shadow: inset 0 -2px 0 #94b0a0;
  box-shadow: inset 0 -2px 0 #94b0a0;
  color: #ccdfd5;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .ActionArea__next-button,
  .ActionArea__stop-button,
  .ActionArea__yes-button {
    width: 100%;
  }
}

.ActionArea__back-button,
.ActionArea__no-button {
  margin: 0 10px;
  background-color: #fcfcfc;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: inset 0 -2px 0 #ebebeb;
  box-shadow: inset 0 -2px 0 #ebebeb;
}

.ActionArea__back-button:disabled, .ActionArea__back-button[data-disabled="true"], .ActionArea__back-button._disabled {
  background-color: #eaeaea;
  border: 1px solid #e2e2e2;
  color: #afafaf;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .ActionArea__back-button,
  .ActionArea__no-button {
    margin: 15px auto 0;
    padding: 8px;
    width: 67%;
    height: 48px;
    font-size: 1.5rem;
  }
  .ActionArea--next-row .ActionArea__back-button {
    margin-top: 0;
  }
}

/**
 * ErrorDialog ブロック
 *
 */
.ErrorDialog {
  position: relative;
  margin-bottom: 50px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--info {
    background-color: #E7FBCE;
}

.ErrorDialog--authcode {
    margin-bottom: 20px;
}

.ErrorDialog::after,
.ErrorDialog--claim::after,
.ErrorDialog--header-normal::after,
.ErrorDialog--header-middle::after,
.ErrorDialog--header-wide::after,
.ErrorDialog--middle::after,
.ErrorDialog--small::after {
  content: '';
  position: absolute;
  top: calc(100% - 30px);
  left: calc(50% - 30px);
  display: block;
  width: 42.426px;
  height: 42.426px;
  background-color: #fbe7e8;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ErrorDialog--info::after {
    background-color: #E7FBCE;
}

.ErrorDialog--authcode::after {
    display: none;
}

@media screen and (max-width: 768px) {
  .ErrorDialog,
  .ErrorDialog--info {
    padding: 20px 17.5px;
  }
}

.ErrorDialog__header {
  margin: 0 0 .8em;
  color: #e60000;
  font-weight: bold;
  font-size: 1.714rem;
}

.ErrorDialog__header--info {
    color: #008000;
}

@media screen and (max-width: 768px) {
  .ErrorDialog__header,
  .ErrorDialog__header--info {
    font-size: 1.5rem;
  }
}

.ErrorDialog__list,
.ErrorDialog__list--info {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.ErrorDialog__list li,
.ErrorDialog__list--info li,
.ErrorDialog__list__inner {
  margin-bottom: 3px;
  position: relative;
  padding-left: 1.6em;
}

.ErrorDialog__list li::before,
.ErrorDialog__list__inner::before {
  content: '';
  margin-right: 5px;
  margin-left: -1.6em;
  display: inline-block;
  width: 17.15px;
  height: 17.15px;
  background: url(../images/common/icon-alert.svg) no-repeat 0 0;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.ErrorDialog__list--bg-none::before {
  content: none !important;
}

.ErrorDialog__list--info li::before {
    background: url(../images/common/icon-info.svg) no-repeat 0 0;
}

.ErrorDialog--claim {
  position: relative;
  margin-bottom: 30px;
  margin-left: 200px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--header-normal {
  position: relative;
  margin-bottom: 30px;
  margin-left: 135px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--header-middle {
  position: relative;
  margin-bottom: 30px;
  margin-left: 170px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--header-wide {
  position: relative;
  margin-bottom: 30px;
  margin-left: 180px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--small {
  position: relative;
  margin-bottom: 30px;
  margin-left: 135px;
  display: inline-block;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

.ErrorDialog--middle {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 40px;
  background-color: #fbe7e8;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .ErrorDialog--claim,
  .ErrorDialog--header-normal,
  .ErrorDialog--header-middle ,
  .ErrorDialog--header-wide,
  .ErrorDialog--small,
  .ErrorDialog--middle {
   margin-left: 0px;
   padding: 20px 17.5px;
   width: 100%;
  }
}

/**
 * Dropdownブロック
 *
 */
.Dropdown {
  padding: 0;
  position: relative;
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
}

.Dropdown::after {
  content: "";
  position: absolute;
  width: 16.7px;
  height: 9.7px;
  top: 50%;
  right: 1em;
  margin-top: -4px;
  z-index: 2;
  background: url(../images/common/icon-dropdown.svg) no-repeat 0 0;
  pointer-events: none;
}

.InputForm__error .Dropdown {
  background-color: #ffcdd2;
  border: 2px solid #f44;
}

@media screen and (max-width: 768px) {
  .Dropdown {
    width: 100%;
  }
}

.Dropdown__select {
  margin: 0;
  padding: 0 40px 0 15px;
  width: 100%;
  height: 50px;
  background: none;
  border: 1px solid transparent;
  font-size: 1.428rem;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.Dropdown__select:disabled {
  margin: 0;
  padding: 0 40px 0 15px;
  width: 100%;
  height: 50px;
  background: #f5f5f5;
  border: 1px solid transparent;
  font-size: 1.428rem;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 768px) {
  .Dropdown__select {
    width: 100%;
    font-size: 1.333rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .Dropdown__select::-ms-expand {
    display: none;
  }
  .Dropdown__select:focus::-ms-value {
    background: transparent;
    color: #000;
  }
}

.Dropdown__select--full {
  width: 100%;
}

/**
 * DateInputブロック
 *
 */
.DateInput {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .DateInput {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .DateInput.DateInput--exp-date {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .DateInput.DateInput--exp-date .DateInput__month-date {
    margin-top: 0;
    width: 45%;
  }
  .DateInput.DateInput--exp-date .DateInput__year {
    width: 55%;
  }
}

.DateInput.DateInput--exp-date .DateInput__month {
  width: 100%;
}

.DateInput.DateInput--exp-date .InputForm__inner-rlabel {
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .DateInput.DateInput--exp-date .InputForm__inner-rlabel {
    margin-right: 10px;
  }
}

.DateInput__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.DateInput__month-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .DateInput__month-date {
    margin-top: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.DateInput__month,
.DateInput__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .DateInput__month,
  .DateInput__date {
    width: calc(50% - 5px);
  }
}

/**
 * DateTextブロック
 * よくある日付テキスト
 */
.DateText {
  margin: 1em 0 4px;
  text-align: right;
}

.DateText--bold {
  font-weight: bold;
  font-size: 1.142rem;
}

.DateText--refer {
  font-weight: bold;
  font-size: 1.142rem;
  color: #094;
}

@media screen and (max-width: 768px) {
  .DateText--refer {
    margin-top: 20px;
  }
}

/**
 * Grid ブロック
 *
 */
.Grid,
.Grid--tab {
  width: 100%;
  border: 2px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Grid ._grid-1, .Grid ._grid-2, .Grid ._grid-3, .Grid ._grid-4, .Grid ._grid-5, .Grid ._grid-7,
.Grid--tab ._grid-1,
.Grid--tab ._grid-2,
.Grid--tab ._grid-3,
.Grid--tab ._grid-4,
.Grid--tab ._grid-5,
.Grid--tab ._grid-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .Grid[data-current_tab="1"] *[data-type="2"],
  .Grid--tab[data-current_tab="1"] *[data-type="2"] {
    display: none;
  }
  .Grid[data-current_tab="2"] *[data-type="1"],
  .Grid--tab[data-current_tab="2"] *[data-type="1"] {
    display: none;
  }
  .Grid ._grid-1, .Grid ._grid-2, .Grid ._grid-3, .Grid ._grid-4, .Grid ._grid-5, .Grid ._grid-7,
  .Grid--tab ._grid-1,
  .Grid--tab ._grid-2,
  .Grid--tab ._grid-3,
  .Grid--tab ._grid-4,
  .Grid--tab ._grid-5,
  .Grid--tab ._grid-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-preferred-size: auto !important;
    flex-basis: auto !important;
    max-width: none !important;
  }
}

.Grid {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .Grid {
    border: none;
  }
}

.Grid--tab {
  border: none;
}

@media screen and (max-width: 768px) {
  .Grid--tab {
    margin-bottom: 10px;
    padding: 3px;
    border: 2px solid #666;
    border-radius: 5px;
  }
}

.Grid__header {
  background-color: #094;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Grid__header {
    display: none;
  }
  .Grid--comp .Grid__header {
    margin-bottom: 20px;
    display: block;
    background-color: transparent;
  }
  .Grid--comp .Grid__header .Grid__row {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .Grid--comp .Grid__header [data-cell_old],
  .Grid--comp .Grid__header [data-cell_new] {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: calc(50% - 5px);
    border: none;
    border-radius: 4px;
    color: #fff;
  }
  .Grid--comp .Grid__header [data-cell_old]::before,
  .Grid--comp .Grid__header [data-cell_new]::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    -webkit-transform: translate(-50%, 40%) rotate(45deg);
    -ms-transform: translate(-50%, 40%) rotate(45deg);
    transform: translate(-50%, 40%) rotate(45deg);
  }
  .Grid--comp .Grid__header [data-cell_old] {
    background-color: #666 !important;
  }
  .Grid--comp .Grid__header [data-cell_old]::before {
    background-color: #666;
  }
  .Grid--comp .Grid__header [data-cell_new] {
    background-color: #094 !important;
  }
  .Grid--comp .Grid__header [data-cell_new]::before {
    background-color: #094;
  }
  .Grid--comp._header-fixed .Grid__header {
    height: 51px;
  }
  .Grid--comp._header-fixed .Grid__header > .Grid__row {
    position: fixed;
    top: 10px;
    z-index: 2;
    width: calc(100% - 60px);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity transform .3s;
    -o-transition: opacity transform .3s;
    transition: opacity transform .3s;
  }
  .Grid--comp._header-bottom .Grid__header > .Grid__row {
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
}

.Grid__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .Grid__wrap {
    display: block;
    width: 100%;
  }
}

.Grid__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .Grid__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
}

.Grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.Grid__body > .Grid__row:nth-child(even) + .Grid__row {
  border-top: 1px solid #ccc;
}

.Grid--no-altbg .Grid__body > .Grid__row:nth-child(even) + .Grid__row {
  border-top: none;
}

.Grid__row:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    border-bottom: none;
  }
  .Grid--tab .Grid__row {
    padding: 5px;
    border: 2px solid #000;
    border-radius: 4px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .Grid--tab .Grid__row:last-child {
    border-bottom: 2px solid #000;
  }
  .Grid__body > .Grid__row:nth-child(even) + .Grid__row {
    border-top: none;
  }
  .Grid__body > .Grid__row,
  .Grid__wrap--sp .Grid__row:last-child {
    border-bottom: none !important;
  }
}

.Grid__cell {
  position: relative;
  padding: 8px 10px;
  border-right: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.Grid__cell:last-child {
  border-right: none;
}

.Grid__group .Grid__cell:last-child {
  border-right: 1px solid #ccc;
}

.Grid__row > .Grid__group:last-child .Grid__cell:last-child {
  border-right: none;
}

.Grid__header .Grid__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Grid__body .Grid__cell {
  background-color: #f5f5f5;
}

.Grid__body > .Grid__row:nth-child(even) .Grid__cell {
  background-color: #ebebeb;
}

.Grid--no-altbg .Grid__body > .Grid__row:nth-child(even) .Grid__cell {
  background-color: #f5f5f5;
}

.Grid__row--unit .Grid__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.Grid__tab-row .Grid__cell {
  position: relative;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(50% - .5px);
  background-color: #666;
  border-top: 2px solid #ccc;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.Grid__tab-row .Grid__cell:first-child {
  border-left: 2px solid #ccc;
}

.Grid--column4 .Grid__tab-row .Grid__cell._grid-1:first-child {
  max-width: 226px;
  -ms-flex-preferred-size: 226px;
  flex-basis: 226px;
}

.Grid--column5 .Grid__tab-row .Grid__cell._grid-1:first-child {
  max-width: 181.2px;
  -ms-flex-preferred-size: 181.2px;
  flex-basis: 181.2px;
}

.Grid--column6 .Grid__tab-row .Grid__cell._grid-1:first-child {
  max-width: 151.33333px;
  -ms-flex-preferred-size: 151.33333px;
  flex-basis: 151.33333px;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__cell {
    padding: 8px 5px;
    background-color: transparent;
    border-right: none;
  }
  .Grid__body > .Grid__row:nth-child(even) .Grid__cell,
  .Grid--no-altbg .Grid__body > .Grid__row:nth-child(even) .Grid__cell {
    background-color: transparent;
  }
  .Grid__group .Grid__cell:last-child {
    border-right: none;
  }
  .Grid .Grid__cell[data-active] {
    display: none;
  }
  .Grid .Grid__body[data-active="1"] .Grid__cell[data-active="1"],
  .Grid .Grid__body[data-active="2"] .Grid__cell[data-active="2"] {
    display: block;
  }
  .Grid__row--swap .Grid__cell[data-sp-swap-value] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .Grid__row--swap .Grid__cell[data-sp-swap-value]::after {
    content: attr(data-sp-swap-value);
    margin-right: 14px;
  }
  .Grid--nopricehelp .Grid__row--swap .Grid__cell[data-sp-swap-value]::after {
    margin-right: 0;
  }
  .Grid__wrap--sp .Grid__cell:not(.Grid__cell--price) {
    padding: 8px 10px 8px 0;
  }
  .Grid__tab-row .Grid__cell {
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
    background-color: #fff;
    border-top: none;
    color: #333;
    font-weight: normal;
    font-size: 1.166rem;
  }
  .Grid__tab-row .Grid__cell:first-child {
    border-left: none;
    border-radius: 4px 0 0 4px;
  }
  .Grid__tab-row .Grid__cell:last-child {
    border-radius: 0 4px 4px 0;
  }
  .Grid__tab-row .Grid__cell::before {
    content: '';
    position: absolute;
    top: 2em;
    left: 10px;
    display: block;
    width: 18.856px;
    height: 18.856px;
    background: url(../images/common/icon-checkbox.svg) no-repeat 0 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .Grid__cell._sp-str-split {
    letter-spacing: 1em;
  }
  .Grid__cell.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: 226px;
    flex-basis: 226px;
    max-width: 226px;
  }
  .Grid__cell.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: 450px;
    flex-basis: 450px;
    max-width: 450px;
  }
  .Grid__cell.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: 674px;
    flex-basis: 674px;
    max-width: 674px;
  }
  .Grid__cell.Grid--column4 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: 898px;
    flex-basis: 898px;
    max-width: 898px;
  }
  .Grid__cell.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: 181.2px;
    flex-basis: 181.2px;
    max-width: 181.2px;
  }
  .Grid__cell.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: 360.4px;
    flex-basis: 360.4px;
    max-width: 360.4px;
  }
  .Grid__cell.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: 539.6px;
    flex-basis: 539.6px;
    max-width: 539.6px;
  }
  .Grid__cell.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: 718.8px;
    flex-basis: 718.8px;
    max-width: 718.8px;
  }
  .Grid__cell.Grid--column5 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-5 {
    -ms-flex-preferred-size: 898px;
    flex-basis: 898px;
    max-width: 898px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-1 {
    -ms-flex-preferred-size: 151.33333px;
    flex-basis: 151.33333px;
    max-width: 151.33333px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-2 {
    -ms-flex-preferred-size: 300.66666px;
    flex-basis: 300.66666px;
    max-width: 300.66666px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-3 {
    -ms-flex-preferred-size: 449.99999px;
    flex-basis: 449.99999px;
    max-width: 449.99999px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-4 {
    -ms-flex-preferred-size: 599.33332px;
    flex-basis: 599.33332px;
    max-width: 599.33332px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-5 {
    -ms-flex-preferred-size: 748.66665px;
    flex-basis: 748.66665px;
    max-width: 748.66665px;
  }
  .Grid__cell.Grid--column6 .Grid__body > .Grid__row:first-child > .Grid__cell:first-child._grid-6 {
    -ms-flex-preferred-size: 897.99998px;
    flex-basis: 897.99998px;
    max-width: 897.99998px;
  }
}

.Grid__tab-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-right: 2px solid #ccc;
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  .Grid__tab-row {
    border: none;
  }
}

.Grid__tab-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.Grid__tab-label {
  position: relative;
  padding: 5px;
  display: inline-block !important;
  width: 100%;
  font-weight: normal;
  font-size: 1rem;
}

.Grid__tab-label em {
  color: #333;
}

.Grid__cell--current-tab .Grid__tab-label em {
  color: #094;
}

@media screen and (max-width: 768px) {
  .Grid__tab-label {
    padding: 5px 0 0;
    background-color: transparent !important;
    font-size: 1rem !important;
  }
  .Grid__tab-label em {
    font-weight: normal;
  }
  .Grid__cell--current-tab .Grid__tab-label {
    color: #fff;
  }
  .Grid__cell--current-tab .Grid__tab-label em {
    color: #fff;
  }
}

.Grid__tooltip.Tooltip,
.Grid__tab-tooltip.Tooltip {
  position: absolute;
  top: 6px;
  right: 5px;
  display: inline-block;
}

.Grid__tooltip.Tooltip::after,
.Grid__tab-tooltip.Tooltip::after {
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 768px) {
  .Grid__tooltip.Tooltip,
  .Grid__tab-tooltip.Tooltip {
    position: relative;
    top: auto;
    right: auto;
    margin-left: 4px;
  }
  .Grid__row--unit .Grid__tooltip.Tooltip.Tooltip, .Grid__row--unit
  .Grid__tab-tooltip.Tooltip.Tooltip {
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .Grid__title--lv1 .Grid__tooltip.Tooltip,
  .Grid__title--lv2 .Grid__tooltip.Tooltip,
  .Grid__cell--price .Grid__tooltip.Tooltip,
  .Grid__cell--data .Grid__tooltip.Tooltip, .Grid__title--lv1
  .Grid__tab-tooltip.Tooltip,
  .Grid__title--lv2
  .Grid__tab-tooltip.Tooltip,
  .Grid__cell--price
  .Grid__tab-tooltip.Tooltip,
  .Grid__cell--data
  .Grid__tab-tooltip.Tooltip {
    position: absolute;
    top: 6px;
    right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .Grid__cell--price .Grid__tooltip.Tooltip, .Grid__cell--price
  .Grid__tab-tooltip.Tooltip {
    top: auto;
  }
}

.Grid__tab-tooltip.Tooltip::after {
  background: url(../images/common/icon-help_white.svg) no-repeat 0 0;
}

.Grid__link {
  font-weight: normal;
  font-size: 1rem;
  color: #666;
}

.Grid__number {
  padding-right: 10px;
  min-width: 58px;
  font-weight: bold;
  font-size: 1.714rem;
  text-align: center;
  white-space: nowrap;
}

.Grid__number._multibyte-bracket {
  text-indent: -.25em;
  width: 58px;
}

@media screen and (max-width: 768px) {
  .Grid__number._multibyte-bracket {
    text-indent: -.5em;
    width: 35px;
  }
}

@media screen and (max-width: 768px) {
  .Grid__number {
    -ms-flex-item-align: start;
    align-self: flex-start;
    min-width: 35px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  [data-label] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  [data-label]::before {
    content: attr(data-label);
  }
}

@media screen and (max-width: 768px) {
  .Grid__wrap--sp {
    width: calc(100% - 40% - 10px);
  }
}

.Grid__body > .Grid__row:nth-child(even) {
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .Grid__body > .Grid__row:nth-child(even) {
    border-top: none;
  }
}

.Grid--no-altbg .Grid__body > .Grid__row:nth-child(even) {
  border-top: none;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__row--unit {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    border-bottom: 1px solid #ebebeb !important;
  }
}

@media screen and (max-width: 768px) {
  .Grid .Grid__row--sp3col {
    border-bottom: 1px solid #ebebeb;
  }
  .Grid__row--sp3col > .Grid__cell {
    width: 40%;
  }
}

@media screen and (max-width: 768px) {
  .Grid__row--swap ._swap-origin {
    display: none;
  }
}

.Grid__tab-row .Grid__cell--current-tab {
  background-color: #094;
}

@media screen and (max-width: 768px) {
  .Grid__tab-row .Grid__cell--current-tab {
    color: #fff;
  }
  .Grid__tab-row .Grid__cell--current-tab::before {
    background: url(../images/common/icon-checkbox-checked.svg) no-repeat 0 0;
  }
}

.Grid__cell--help {
  padding-right: 24px !important;
}

.Grid__header .Grid__cell--blank {
  background-color: #666;
}

.Grid__cell--noline {
  border-right: none;
}

.Grid__cell--lline {
  border-left: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .Grid__cell--lline {
    border-left: none;
  }
}

.Grid .Grid__cell--head {
  background-color: #f5f5f5 !important;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__cell--head {
    background-color: #fff !important;
  }
  .Grid__group .Grid__cell--head {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.Grid .Grid__cell--empty {
  background-color: #fff !important;
}

@media screen and (max-width: 768px) {
  .Grid__cell--empty {
    display: none;
  }
}

.Grid .Grid__cell--data {
  background-color: #fff !important;
}

@media screen and (max-width: 768px) {
  .Grid__group .Grid__cell--data {
    text-align: right;
  }
}

.Grid .Grid__cell--price, .Grid
.Grid__cell--data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff !important;
}

.Grid.Grid--comp .Grid__cell--price, .Grid.Grid--comp
.Grid__cell--data {
  width: calc(50% - 5px);
}

.Grid.Grid--comp .Grid__cell--price[data-cell_new], .Grid.Grid--comp
.Grid__cell--data[data-cell_new] {
  background-color: #fffff0 !important;
}

.Grid.Grid--comp._recommend .Grid__cell--price[data-cell_new], .Grid.Grid--comp._recommend
.Grid__cell--data[data-cell_new] {
  background-color: #faefed !important;
}

.Grid.Grid--comp .Grid__cell--price._up, .Grid.Grid--comp
.Grid__cell--data._up {
  background-color: #faefed !important;
  color: #9c3f39;
}

.Grid.Grid--comp .Grid__cell--price._down, .Grid.Grid--comp
.Grid__cell--data._down {
  background-color: #ebfafa !important;
  color: #39459c;
}

.Grid--pricehelp .Grid__cell--price, .Grid--pricehelp
.Grid__cell--data {
  padding-right: 24px;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__cell--price, .Grid
  .Grid__cell--data {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-width: 3em;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .Grid .Grid__wrap--sp .Grid__cell--data {
    text-align: left;
  }
}

.Grid--comp._comp-updown .Grid__cell--price {
  padding-right: 23px;
}

@media screen and (max-width: 768px) {
  .Grid--comp._comp-updown .Grid__cell--price {
    padding-right: 27px;
  }
}

.Grid--comp._comp-updown .Grid__cell--price[data-cell_new]._up,
.Grid--comp._comp-updown .Grid__cell--price[data-cell_new]._down {
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.Grid--comp._comp-updown .Grid__cell--price._up::after,
.Grid--comp._comp-updown .Grid__cell--price._down::after {
  content: '';
  width: 12.5px;
  height: 12px;
  -webkit-transform: translate(5px, -1px);
  -ms-transform: translate(5px, -1px);
  transform: translate(5px, -1px);
}

@media screen and (max-width: 768px) {
  .Grid--comp._comp-updown .Grid__cell--price._up::after,
  .Grid--comp._comp-updown .Grid__cell--price._down::after {
    margin-left: 4px;
    -webkit-transform: translate(0, -1px);
    -ms-transform: translate(0, -1px);
    transform: translate(0, -1px);
  }
}

.Grid--comp._comp-updown .Grid__cell--price._up::after {
  background: url(../images/common/icon-up-arrow.svg) no-repeat 0 0;
}

.Grid--comp._comp-updown .Grid__cell--price._down::after {
  background: url(../images/common/icon-down-arrow.svg) no-repeat 0 0;
}

.Grid .Grid__cell--price, .Grid
.Grid__cell--total-price {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__cell--price, .Grid
  .Grid__cell--total-price {
    padding-right: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .Grid.Grid--nopricehelp .Grid__cell--price,
  .Grid .Grid__group .Grid__cell--price, .Grid.Grid--nopricehelp
  .Grid__cell--total-price,
  .Grid .Grid__group
  .Grid__cell--total-price {
    padding-right: 5px;
  }
}

.Grid .Grid__cell--yesno {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff !important;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__cell--yesno {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 70px;
    font-weight: bold;
    font-size: 1.083rem;
    white-space: nowrap;
  }
}

.Grid__cell--total-price {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-weight: bold;
  font-size: 1.142rem;
  text-align: right;
}

.Grid__row--unit .Grid__cell--total-price {
  background-color: #fff;
}

.Grid__row--unit .Grid__cell--total-price[data-cell_new] {
  background-color: #faefed;
}

.Grid.Grid--comp .Grid__cell--total-price {
  width: calc(50% - 5px);
}

@media screen and (max-width: 768px) {
  .Grid__cell--total-price {
    text-align: left;
  }
  .Grid__cell--total-price.Grid__title--lv1 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left !important;
  }
}

.Grid__cell--price[data-type="1"],
.Grid__cell--data[data-type="1"] {
  padding-right: 24px;
}

@media screen and (max-width: 768px) {
  .Grid__cell--price[data-type="2"],
  .Grid__cell--data[data-type="2"] {
    padding-right: 10px;
  }
}

.Grid__title--lv1 {
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .Grid .Grid__title--lv1 {
    margin-top: 20px;
    padding: 7px 5px 5px;
    width: 100% !important;
    font-weight: bold;
    font-size: 1.333rem;
    background-color: #ebebeb !important;
  }
  .Grid__body > .Grid__row:first-child > .Grid__title--lv1 {
    margin-top: 0;
  }
  .Grid--comp .Grid__title--lv1 {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .Grid .Grid__title--lv2 {
    margin-top: 5px;
    padding-bottom: 0;
    width: 100%;
    border-bottom: 3px solid #ebebeb;
    font-weight: bold;
    font-size: 1.166rem;
  }
}

@media screen and (max-width: 768px) {
  .Grid .Grid__title--lv3, .Grid
  .Grid__cell--notitle {
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
  .Grid--comp .Grid__title--lv3._comp-unit-title, .Grid--comp
  .Grid__cell--notitle._comp-unit-title {
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .Grid .Grid__title--lv4 {
    padding-left: 2em;
    padding-right: 0;
  }
  .Grid .Grid__title--lv4::before {
    content: '-';
    margin-left: calc(-1.45em + 10px);
    margin-right: 2px;
  }
  .Grid--comp .Grid__title--lv4._comp-unit-title {
    border-bottom: none;
  }
  .Grid__row--sp3col .Grid__title--lv4 {
    width: 40%;
  }
}

@media screen and (min-width: 769px) {
  .Grid__cell--nowrap-pc {
    white-space: nowrap;
  }
}

/**
    * 4列レイアウト
    *
    * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
    */
.Grid--column4 ._grid-1 {
  -ms-flex-preferred-size: 224px;
  flex-basis: 224px;
  max-width: 224px;
}

.Grid--column4 ._grid-2 {
  -ms-flex-preferred-size: 448px;
  flex-basis: 448px;
  max-width: 448px;
}

.Grid--column4 ._grid-3 {
  -ms-flex-preferred-size: 672px;
  flex-basis: 672px;
  max-width: 672px;
}

.Grid--column4 ._grid-4 {
  -ms-flex-preferred-size: 896px;
  flex-basis: 896px;
  max-width: 896px;
}

.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 225px;
  flex-basis: 225px;
  max-width: 225px;
}

.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 449px;
  flex-basis: 449px;
  max-width: 449px;
}

.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 673px;
  flex-basis: 673px;
  max-width: 673px;
}

.Grid--column4 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 897px;
  flex-basis: 897px;
  max-width: 897px;
}

/**
    * 5列レイアウト
    *
    * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
    */
.Grid--column5 ._grid-1 {
  -ms-flex-preferred-size: 179.2px;
  flex-basis: 179.2px;
  max-width: 179.2px;
}

.Grid--column5 ._grid-2 {
  -ms-flex-preferred-size: 358.4px;
  flex-basis: 358.4px;
  max-width: 358.4px;
}

.Grid--column5 ._grid-3 {
  -ms-flex-preferred-size: 537.6px;
  flex-basis: 537.6px;
  max-width: 537.6px;
}

.Grid--column5 ._grid-4 {
  -ms-flex-preferred-size: 716.8px;
  flex-basis: 716.8px;
  max-width: 716.8px;
}

.Grid--column5 ._grid-5 {
  -ms-flex-preferred-size: 896px;
  flex-basis: 896px;
  max-width: 896px;
}

.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 180.2px;
  flex-basis: 180.2px;
  max-width: 180.2px;
}

.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 359.4px;
  flex-basis: 359.4px;
  max-width: 359.4px;
}

.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 538.6px;
  flex-basis: 538.6px;
  max-width: 538.6px;
}

.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 717.8px;
  flex-basis: 717.8px;
  max-width: 717.8px;
}

.Grid--column5 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-5 {
  -ms-flex-preferred-size: 897px;
  flex-basis: 897px;
  max-width: 897px;
}

/**
    * 6列レイアウト
    *
    * ※max-width は、IE11対策（flex-basisにbox-sizingが効かないため）
    */
.Grid--column6 ._grid-1 {
  -ms-flex-preferred-size: 149.33333px;
  flex-basis: 149.33333px;
  max-width: 149.33333px;
}

.Grid--column6 ._grid-2 {
  -ms-flex-preferred-size: 298.66666px;
  flex-basis: 298.66666px;
  max-width: 298.66666px;
}

.Grid--column6 ._grid-3 {
  -ms-flex-preferred-size: 447.99999px;
  flex-basis: 447.99999px;
  max-width: 447.99999px;
}

.Grid--column6 ._grid-4 {
  -ms-flex-preferred-size: 597.33332px;
  flex-basis: 597.33332px;
  max-width: 597.33332px;
}

.Grid--column6 ._grid-5 {
  -ms-flex-preferred-size: 746.66665px;
  flex-basis: 746.66665px;
  max-width: 746.66665px;
}

.Grid--column6 ._grid-6 {
  -ms-flex-preferred-size: 895.99998px;
  flex-basis: 895.99998px;
  max-width: 895.99998px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-1 {
  -ms-flex-preferred-size: 150.33333px;
  flex-basis: 150.33333px;
  max-width: 150.33333px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-2 {
  -ms-flex-preferred-size: 299.66666px;
  flex-basis: 299.66666px;
  max-width: 299.66666px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-3 {
  -ms-flex-preferred-size: 448.99999px;
  flex-basis: 448.99999px;
  max-width: 448.99999px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-4 {
  -ms-flex-preferred-size: 598.33332px;
  flex-basis: 598.33332px;
  max-width: 598.33332px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-5 {
  -ms-flex-preferred-size: 747.66665px;
  flex-basis: 747.66665px;
  max-width: 747.66665px;
}

.Grid--column6 .Grid__cell--noline + .Grid__wrap .Grid__cell--lline._grid-6 {
  -ms-flex-preferred-size: 896.99998px;
  flex-basis: 896.99998px;
  max-width: 896.99998px;
}

.Grid__cell--noline + .Grid__wrap .Grid__cell--lline {
  margin-left: -1px;
}

/*
    * 入れ子対応(グリッドサイズが％指定の場合、これがないと入れ子にしたときに親のサイズに対する相対サイズになるため崩れてしまう)
    */
/**
 * Table ブロック
 *
 */
.Table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #ccc;
}

.Table + .Table {
  margin-top: 20px;
}

.Table th, .Table td {
  padding: 10px;
  border: 1px solid #ccc;
  font-weight: normal;
  text-align: left;
}

.Table--yellowgreen th, .Table--yellowgreen td {
  border: 3px double #480;

}

.Table td {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Table {
    margin-top: 8px;
    border: none;
  }
  .Table th, .Table td {
    padding: 10px 5px;
    border: none;
    border-bottom: 1px solid #ebebeb;
  }
  .Table td:nth-last-child(even) {
    background-color: #f5f5f5;
  }
}

@media screen and (max-width: 768px) {
  .Table--comp tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .Table--comp .Table__header {
    display: block !important;
  }
  .Table--comp .Table__header tr {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .Table--comp .Table__header th {
    display: none;
  }
  .Table--comp .Table__header [data-cell_old],
  .Table--comp .Table__header [data-cell_new] {
    position: relative;
    display: block !important;
    width: calc(50% - 5px);
    border: none;
    border-radius: 4px;
    color: #fff;
  }
  .Table--comp .Table__header [data-cell_old]::before,
  .Table--comp .Table__header [data-cell_new]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    -webkit-transform: translate(-50%, 40%) rotate(45deg);
    -ms-transform: translate(-50%, 40%) rotate(45deg);
    transform: translate(-50%, 40%) rotate(45deg);
  }
  .Table--comp .Table__header [data-cell_old] {
    background-color: #666 !important;
  }
  .Table--comp .Table__header [data-cell_old]::before {
    background-color: #666;
  }
  .Table--comp .Table__header [data-cell_new] {
    background-color: #094 !important;
  }
  .Table--comp .Table__header [data-cell_new]::before {
    background-color: #094;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .Table--comp .Table__header--hide-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .Table--comp tbody [data-cell_old],
  .Table--comp tbody [data-cell_new] {
    width: 50%;
  }
  .Table--comp tbody [data-cell_new] {
    background-color: #faefed;
  }
}

.Table--comp td,
.Table--sprow td {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .Table--comp,
  .Table--sprow {
    border: none;
  }
  .Table--comp th, .Table--comp td,
  .Table--sprow th,
  .Table--sprow td {
    display: block;
    border: none;
    border-bottom: 1px solid #ebebeb;
  }
  .Table--comp td:nth-last-child(even),
  .Table--sprow td:nth-last-child(even) {
    background-color: transparent;
  }
}

.Table--column4 th, .Table--column4 td, .Table--column4 ._cell-1 {
  width: 25%;
}

.Table--column4 th[colspan="2"], .Table--column4 td[colspan="2"], .Table--column4 ._cell-2 {
  width: 50%;
}

.Table--column4 th[colspan="3"], .Table--column4 td[colspan="3"], .Table--column4 ._cell-3 {
  width: 75%;
}

.Table--column4 th[colspan="4"], .Table--column4 td[colspan="4"], .Table--column4 ._cell-4 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Table--column4 th, .Table--column4 td, .Table--column4 ._cell-1,
  .Table--column4 th[colspan="2"], .Table--column4 td[colspan="2"], .Table--column4 ._cell-2,
  .Table--column4 th[colspan="3"], .Table--column4 td[colspan="3"], .Table--column4 ._cell-3,
  .Table--column4 th[colspan="4"], .Table--column4 td[colspan="4"], .Table--column4 ._cell-4 {
    width: auto;
  }
}

.Table--column5 th, .Table--column5 td, .Table--column5 ._cell-1 {
  width: 20%;
}

.Table--column5 th[colspan="2"], .Table--column5 td[colspan="2"], .Table--column5 ._cell-2 {
  width: 40%;
}

.Table--column5 th[colspan="3"], .Table--column5 td[colspan="3"], .Table--column5 ._cell-3 {
  width: 60%;
}

.Table--column5 th[colspan="4"], .Table--column5 td[colspan="4"], .Table--column5 ._cell-4 {
  width: 80%;
}

.Table--column5 th[colspan="5"], .Table--column5 td[colspan="5"], .Table--column5 ._cell-5 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Table--column5 th, .Table--column5 td, .Table--column5 ._cell-1,
  .Table--column5 th[colspan="2"], .Table--column5 td[colspan="2"], .Table--column5 ._cell-2,
  .Table--column5 th[colspan="3"], .Table--column5 td[colspan="3"], .Table--column5 ._cell-3,
  .Table--column5 th[colspan="4"], .Table--column5 td[colspan="4"], .Table--column5 ._cell-4,
  .Table--column5 th[colspan="5"], .Table--column5 td[colspan="5"], .Table--column5 ._cell-5 {
    width: auto;
  }
}

.Table--column6 th, .Table--column6 td, .Table--column6 ._cell-1 {
  width: 16.666666%;
}

.Table--column6 th[colspan="2"], .Table--column6 td[colspan="2"], .Table--column6 ._cell-2 {
  width: 33.333332%;
}

.Table--column6 th[colspan="3"], .Table--column6 td[colspan="3"], .Table--column6 ._cell-3 {
  width: 49.999998%;
}

.Table--column6 th[colspan="4"], .Table--column6 td[colspan="4"], .Table--column6 ._cell-4 {
  width: 66.666664%;
}

.Table--column6 th[colspan="5"], .Table--column6 td[colspan="5"], .Table--column6 ._cell-5 {
  width: 83.33333%;
}

.Table--column6 th[colspan="6"], .Table--column6 td[colspan="6"], .Table--column6 ._cell-6 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Table--column6 th, .Table--column6 td, .Table--column6 ._cell-1,
  .Table--column6 th[colspan="2"], .Table--column6 td[colspan="2"], .Table--column6 ._cell-2,
  .Table--column6 th[colspan="3"], .Table--column6 td[colspan="3"], .Table--column6 ._cell-3,
  .Table--column6 th[colspan="4"], .Table--column6 td[colspan="4"], .Table--column6 ._cell-4,
  .Table--column6 th[colspan="5"], .Table--column6 td[colspan="5"], .Table--column6 ._cell-5,
  .Table--column6 th[colspan="6"], .Table--column6 td[colspan="6"], .Table--column6 ._cell-6 {
    width: auto;
  }
}

.Table--column12 th, .Table--column12 td, .Table--column12 ._cell-1 {
  width: 8.333333%;
}

.Table--column12 th[colspan="2"], .Table--column12 td[colspan="2"], .Table--column12 ._cell-2 {
  width: 16.666666%;
}

.Table--column12 th[colspan="3"], .Table--column12 td[colspan="3"], .Table--column12 ._cell-3 {
  width: 24.999998%;
}

.Table--column12 th[colspan="4"], .Table--column12 td[colspan="4"], .Table--column12 ._cell-4 {
  width: 33.333333%;
}

.Table--column12 th[colspan="5"], .Table--column12 td[colspan="5"], .Table--column12 ._cell-5 {
  width: 41.666666%;
}

.Table--column12 th[colspan="6"], .Table--column12 td[colspan="6"], .Table--column12 ._cell-6 {
  width: 49.999999%;
}

.Table--column12 th[colspan="7"], .Table--column12 td[colspan="7"], .Table--column12 ._cell-7 {
  width: 58.333333%;
}

.Table--column12 th[colspan="8"], .Table--column12 td[colspan="8"], .Table--column12 ._cell-8 {
  width: 66.666666%;
}

.Table--column12 th[colspan="9"], .Table--column12 td[colspan="9"], .Table--column12 ._cell-9 {
  width: 74.999999%;
}

.Table--column12 th[colspan="10"], .Table--column12 td[colspan="10"], .Table--column12 ._cell-10 {
  width: 83.333333%;
}

.Table--column12 th[colspan="11"], .Table--column12 td[colspan="11"], .Table--column12 ._cell-11 {
  width: 91.666666%;
}

.Table--column12 th[colspan="12"], .Table--column12 td[colspan="12"], .Table--column12 ._cell-12 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .Table--column12 th, .Table--column12 td, .Table--column12 ._cell-1,
  .Table--column12 th[colspan="2"], .Table--column12 td[colspan="2"], .Table--column12 ._cell-2,
  .Table--column12 th[colspan="3"], .Table--column12 td[colspan="3"], .Table--column12 ._cell-3,
  .Table--column12 th[colspan="4"], .Table--column12 td[colspan="4"], .Table--column12 ._cell-4,
  .Table--column12 th[colspan="5"], .Table--column12 td[colspan="5"], .Table--column12 ._cell-5,
  .Table--column12 th[colspan="6"], .Table--column12 td[colspan="6"], .Table--column12 ._cell-6,
  .Table--column12 th[colspan="7"], .Table--column12 td[colspan="7"], .Table--column12 ._cell-7,
  .Table--column12 th[colspan="8"], .Table--column12 td[colspan="8"], .Table--column12 ._cell-8,
  .Table--column12 th[colspan="9"], .Table--column12 td[colspan="9"], .Table--column12 ._cell-9,
  .Table--column12 th[colspan="10"], .Table--column12 td[colspan="10"], .Table--column12 ._cell-10,
  .Table--column12 th[colspan="11"], .Table--column12 td[colspan="11"], .Table--column12 ._cell-11,
  .Table--column12 th[colspan="12"], .Table--column12 td[colspan="12"], .Table--column12 ._cell-12 {
    width: auto;
  }
}

.Table__header th {
  background-color: #f5f5f5;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  ._header-fixed .Table__header {
    height: 51px;
  }
  ._header-fixed .Table__header tr {
    position: fixed;
    top: 10px;
    width: calc(100% - 60px);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity transform .3s;
    -o-transition: opacity transform .3s;
    transition: opacity transform .3s;
  }
  ._header-bottom .Table__header tr {
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .Table__header th:nth-last-child(even) {
    background-color: #ebebeb !important;
  }
  .Table__header th:nth-last-child(odd) {
    background-color: #f5f5f5 !important;
  }
  .Table--sprow .Table__header {
    display: none;
  }
  .Table--sprow .Table__header th:nth-last-child(even) {
    background-color: transparent !important;
  }
  .Table--sprow .Table__header th:nth-last-child(odd) {
    background-color: transparent !important;
  }
   .Table__header--yellowgreen th:nth-last-child(even) {
    background-color: #f2f8e5 !important;
    color: #333 !important;
  }
  .Table__header--yellowgreen th:nth-last-child(odd) {
    background-color: #f2f8e5 !important;
    color: #333 !important;
  }
  .Table--yellowgreen td:nth-last-child(even) {
  background-color: #fff !important;
  border: 3pt double #480;

  }
  .Table--yellowgreen td:nth-last-child(odd) {
  background-color: #fff !important;
  border: 3pt double #480;
  }
}

.Table__body th {
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .Table__body th {
    background-color: transparent;
  }
}

@media screen and (max-width: 768px) {
  [data-label] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right !important;
  }
  [data-label]::before {
    content: attr(data-label);
    white-space: pre;
    text-align: left !important;
  }
}

.Table__tooltip.Tooltip {
  position: absolute;
  top: 6px;
  right: 5px;
  display: inline-block;
}

.Table__tooltip.Tooltip::after {
  width: 14px;
  height: 14px;
}

@media screen and (max-width: 768px) {
  .Table__tooltip.Tooltip {
    position: relative;
    top: auto;
    right: auto;
  }
}

@media screen and (max-width: 768px) {
  .Table__title--lv1 .Table__tooltip.Tooltip,
  .Table__title--lv2 .Table__tooltip.Tooltip,
  .Table__cell--price .Table__tooltip.Tooltip,
  .Table__cell--total-price .Table__tooltip.Tooltip {
    position: absolute;
    top: 6px;
    right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .Table__cell--price .Table__tooltip.Tooltip,
  .Table__cell--total-price .Table__tooltip.Tooltip {
    top: auto;
  }
}

.Table__number {
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 40px;
  font-weight: bold;
  font-size: 1.714rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Table__number {
    padding-right: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    min-width: 32px;
    font-size: 1.5rem;
  }
}

.Table__header--green th {
  background-color: #094;
  color: #fff;
}

.Table__header--yellowgreen th {
  background-color: #f2f8e5 !important;
  color: #333 !important;
  border: 3pt double #480 !important;
}


.Table__row--even th {
  background-color: #ebebeb;
}

@media screen and (max-width: 768px) {
  .Table__row--even th {
    background-color: transparent;
  }
}

.Table__cell--gray {
  background-color: #666 !important;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .Table__header .Table__cell--gray {
    border-top: 1px solid #ebebeb;
    background-color: transparent !important;
    font-weight: normal;
    color: #333;
  }
}

.Table__cell--green {
  background-color: #094 !important;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .Table__cell--green {
    background-color: transparent !important;
    color: #094;
    font-weight: bold !important;
  }
}

.Table__cell--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.Table__cell--help {
  position: relative;
}

@media all and (-ms-high-contrast: none) {
  .Table__cell--help {
    background-clip: padding-box;
  }
}

@-moz-document url-prefix() {
  .Table__cell--help {
    background-clip: padding-box;
  }
}

@media screen and (max-width: 768px) {
  .Table__cell--data {
    width: 100% !important;
  }
}

.Table__cell--price,
.Table__cell--total-price {
  text-align: right !important;
}

.Table__cell--total-price {
  font-weight: bold !important;
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .Table__cell--total-price {
    font-size: 1.083rem;
  }
  .Table__cell--total-price.Table__title--lv1 {
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  .Table__label--start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .Table__cell--sp3em {
    width: calc(3em + 10px) !important;
  }
}

.Table__title--lv1[rowspan] {
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .Table__title--lv1 {
    margin-top: 20px;
    padding: 7px 5px 5px !important;
    width: 100% !important;
    background-color: #ebebeb !important;
    border: none !important;
    font-weight: bold !important;
    font-size: 1.333rem;
  }
  .Heading + .Table--comp .Table__body tr:first-child .Table__title--lv1,
  .Heading + .Table--sprow .Table__body tr:first-child .Table__title--lv1 {
    margin-top: 0;
  }
  .Table--comp .Table__title--lv1 {
    margin-bottom: 5px;
  }
}

.Table__title--lv2[rowspan] {
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .Table__title--lv2 {
    margin-top: 4px;
    padding-bottom: 5px !important;
    border-bottom: 3px solid #ebebeb !important;
    font-weight: bold !important;
    font-size: 1.166rem;
  }
  .Table--comp .Table__title--lv2 {
    width: 100% !important;
  }
}

.Table__title--lv3[rowspan] {
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .Table__title--lv3 {
    margin-top: 4px;
    width: 100% !important;
    border-bottom: none !important;
  }
  .Table--comp .Table__title--lv3 {
    padding-bottom: 2px !important;
  }
}

@media screen and (max-width: 768px) {
  .Table__title--lv4 {
    margin-top: 4px;
    padding-left: 2em !important;
    padding-right: 0 !important;
    width: 100% !important;
    border-bottom: none !important;
  }
  .Table__title--lv4::before {
    content: '-';
    margin-left: calc(-1.45em + 10px);
    margin-right: 2px;
  }
  .Table--comp .Table__title--lv4 {
    padding-bottom: 2px !important;
  }
}

/**
 * Tooltipブロック
 *
 */
.Tooltip {
  position: relative;
  cursor: pointer;
}

.Tooltip--exsample {
  display: inline-block;
}

.Tooltip--helpicon::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-help.svg) no-repeat 0 0;
}

.Tooltip--front-helpicon::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-help.svg) no-repeat 0 0;
}

.Tooltip--inline::before, .Tooltip--inline::after {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.Tooltip--inline::before {
  margin-right: .25em;
}

.Tooltip--inline::after {
  margin-left: .25em;
}

.Tooltip__balloon {
  position: fixed;
  z-index: 5001;
  padding: 15px;
  max-width: 960px;
  background-color: #094;
  border-radius: 5px;
  color: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(9px, 25px);
  -ms-transform: translate(9px, 25px);
  transform: translate(9px, 25px);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.Tooltip__balloon::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 50%;
  z-index: 5002;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #094;
  -webkit-transform: rotate(45deg) translateX(50%);
  -ms-transform: rotate(45deg) translateX(50%);
  transform: rotate(45deg) translateX(50%);
}

.Tooltip__balloon._right::before {
  right: 20px;
  left: auto;
}

.Tooltip__balloon._left::before {
  right: auto;
  left: 8px;
}

.Tooltip__balloon._above {
  -webkit-transform: translateX(9px) translateY(-100%) translateY(-10px);
  -ms-transform: translateX(9px) translateY(-100%) translateY(-10px);
  transform: translateX(9px) translateY(-100%) translateY(-10px);
}

.Tooltip__balloon._above::before {
  top: auto;
  bottom: 0px;
}

.Tooltip__balloon._show {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .Tooltip__balloon {
    padding: 5px;
  }
}

/**
 * Labelブロック
 * Listブロックで使用するアイコンのスタイルを定義
 */
.Label {
  padding: 2px 5px 1px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  color: #333;
  font-size: 0.885rem;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .Label {
    font-size: 0.833rem;
  }
}

.Label--gray {
  background-color: #666;
  color: #fff;
}

.Label--pink {
  background-color: #ef578d;
  color: #fff;
}

.Label--green {
  background-color: #094;
  color: #fff;
}

.Label--heading {
  margin-right: 10px;
  padding: 7px 10px 5px;
  background-color: #f2f8e5;
  color: #094;
  line-height: 1;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/**
 * TopicsList ブロック
 *
 */
.TopicsList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.TopicsList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  font-size: 1.428rem;
  text-align: left;
}

.TopicsList__item + .TopicsList__item {
  margin-top: 8px;
}

.TopicsList--info .TopicsList__item {
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .TopicsList__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.166rem;
  }
  .TopicsList--info .TopicsList__item {
    font-size: 1.083rem;
    font-weight: bold;
  }
}

.TopicsList__date {
  margin-right: 25px;
  font-weight: bold;
  font-size: 1.333rem;
  color: #333;
}

.TopicsList__date--empty {
  width: 114px;
  margin-right: 25px;
  font-weight: bold;
  font-size: 1.333rem;
  color: #333;
}

.TopicsList--info .TopicsList__date {
  font-weight: normal;
  font-size: 1.142rem;
  color: #000;
  min-width: 100px;
}

@media screen and (max-width: 768px) {
  .TopicsList__date {
    display: block;
    font-size: 1.166rem;
  }
  .TopicsList--info .TopicsList__date {
    font-size: 1rem;
    color: #094;
  }
}

.Accordion .TopicsList__item {
  margin-top: 0;
  line-height: 0;
  opacity: 0;
  font-size: 0;
  visibility: hidden;
  -webkit-transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
  -o-transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
  transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
}

.Accordion.Accordion--opened .TopicsList__item {
  margin-top: 8px;
  line-height: 1.4;
  opacity: 1;
  font-size: inherit;
  visibility: visible;
  -webkit-transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
  -o-transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
  transition: margin-top  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
}

.TopicsList__title {
  width: 660px;
}

@media screen and (max-width: 768px) {
  .TopicsList__title {
    width: 100%;
  }
}

.TopicsList__address {
  width: 730px;
}

@media screen and (max-width: 768px) {
  .TopicsList__address {
    width: 100%;
  }
}

/**
 * Icon ブロック
 *
 */
.Icon img {
  width: auto;
  height: 1rem;
  vertical-align: middle;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

/**
 * StatusBarブロック
 * ヘッダーのステータスバーのスタイルを定義
 */
.StatusBar {
  padding: 4px;
  background-color: #9c3f39;
  font-size: 0.885rem;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .StatusBar {
    padding: 2px;
    font-size: 0.833rem;
  }
}

/**
 * SiteHeaderブロック
 *
 */
.SiteHeader {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 960px;
  height: 118px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .SiteHeader {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    height: 60px;
  }
}

.SiteHeader__title {
  width: 458px;
}

.SiteHeader__title img {
  width: 350px;
}

@media screen and (max-width: 768px) {
  .SiteHeader__title {
    padding: 15px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 226px;
  }
  .SiteHeader__title img {
    width: 206px;
    height: 30px;
  }
}

.SiteHeader__links {
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .SiteHeader__links {
    display: none;
  }
}

@media screen and (max-width: 768px) {
    .SiteHeader__links--logout {
        display: block;
    }
}

.SiteHeader__link {
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
    .SiteHeader__link--logout {
        margin-top: 22px;
        margin-right: 10px;
    }
}

/**
 * SiteFooterブロック
 *
 */
.SiteFooter {
  padding-top: 60px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .SiteFooter {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.SiteFooter--nomenu {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .SiteFooter--nomenu {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.SiteFooter__content {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 960px;
}

.SiteFooter--nomenu .SiteFooter__content {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.SiteFooter--nobanner .SiteFooter__banner {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .SiteFooter__content {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
  .SiteFooter--nomenu .SiteFooter__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .SiteFooter__banner {
    margin-bottom: 14px;
    text-align: center;
  }
  .SiteFooter__banner img {
    width: 100px;
  }
}

.SiteFooter__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .SiteFooter__links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .SiteFooter__links + .SiteFooter__links {
    margin-bottom: 8px;
  }
}

.SiteFooter__link {
  padding-left: 20px;
}

.SiteFooter__link a {
  color: #fff;
  text-decoration: none;
}

.SiteFooter__link a:hover {
  text-decoration: underline;
}

.SiteFooter__link + .SiteFooter__link::before {
  margin-right: 20px;
  content: '|';
}

@media screen and (max-width: 768px) {
  .SiteFooter__link {
    margin-bottom: 5px;
    padding-left: 15px;
  }
  .SiteFooter__link a:hover {
    text-decoration: none;
  }
  .SiteFooter__links + .SiteFooter__links .SiteFooter__link:first-child::before {
    margin-right: 15px;
    content: '|';
  }
  .SiteFooter__link + .SiteFooter__link::before {
    margin-right: 15px;
  }
}

.SiteFooter__copy {
  margin: 0 auto;
  width: 960px;
  color: #ccebda;
  text-align: right;
  font-size: 1rem;
}

.SiteFooter__copy span {
  margin-left: 1em;
  font-size: 0.885rem;
}

.SiteFooter--nomenu .SiteFooter__copy {
  width: auto;
}

@media screen and (max-width: 768px) {
  .SiteFooter__copy {
    width: auto;
    text-align: center;
  }
  .SiteFooter__copy span {
    display: block;
    font-size: 0.833rem;
  }
}

.SiteFooter--nomenu .SiteFooter__copy {
  margin-top: 0;
}

.SiteFooter__decorate {
  position: relative;
  margin-top: 25px;
  height: 60px;
  background: url(../images/common/bg-footer-ribbon.svg) no-repeat center bottom;
  background-size: auto 60px;
}

.SiteFooter__decorate::before {
  content: '';
  position: absolute;
  bottom: 22px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 16px;
  background-color: #169243;
}

.SiteFooter__decorate img {
  position: absolute;
  right: calc((100% - 960px) / 2);
  bottom: 24px;
  width: 152px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .SiteFooter__decorate {
    height: 44px;
    background: url(../images/common/bg-footer-ribbon.svg) no-repeat -318px bottom;
    background-size: auto 44px;
  }
  .SiteFooter__decorate::before {
    content: none;
  }
  .SiteFooter__decorate img {
    top: 16px;
    right: 20px;
    -webkit-transform: scale(0.73);
    -ms-transform: scale(0.73);
    transform: scale(0.73);
  }
}

/**
 * PageLabelブロック
 *
 */
.PageLabel {
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 200px;
  min-height: 50px;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.714rem;
  text-align: center;
  color: #094;
}

@media screen and (max-width: 768px) {
  .PageLabel {
    margin-right: 10px;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    min-width: 70px;
    min-height: 40px;
    font-size: 1rem;
    text-align: center;
  }
}

/**
 * Welcomeブロック
 * ようこそ マイページへ 部分のスタイルを定義
 */
.Welcome {
  position: relative;
  padding: 20px 0 10px;
  background-color: #fff;
}

.Welcome::before {
  content: '';
  position: absolute;
  bottom: 29px;
  z-index: -1;
  display: block;
  width: 100%;
  height: 11.65px;
  background-color: #094;
}

@media screen and (max-width: 768px) {
  .Welcome {
    padding: 20px 0 15px;
  }
  .Welcome::before {
    position: relative;
    padding-top: 22.5%;
    height: auto;
    background-color: transparent;
  }
}

.Welcome__title {
  margin: 0;
  height: 168px;
  background: url(../images/common/heading-mypage.svg) no-repeat center 0;
  background-size: auto 168px;
  text-indent: -9999px;
}

@media screen and (max-width: 768px) {
  .Welcome__title {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 100%;
    background: url(../images/common/heading-mypage.svg) no-repeat center 0;
    background-size: 240% auto;
  }
}

/**
 * PageTopButtonブロック
 *
 */
.PageTopButton {
  position: fixed;
  top: auto;
  bottom: 40px;
  right: calc(((100% - 960px) / 2) - 18px);
  z-index: 5000;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.PageTopButton:hover {
  opacity: .7;
}

.PageTopButton img {
  position: relative;
  width: 82px;
  height: 142px;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .PageTopButton {
    display: none;
  }
  .PageTopButton:hover {
    opacity: 1;
  }
}

.PageTopButton--show {
  opacity: 1;
  pointer-events: auto;
}

.PageTopButton--cancel-fixed {
  position: relative;
  top: -74px;
  bottom: auto;
  right: -18px;
  width: 960px;
}

.PageTopButton--cancel-fixed img {
  position: absolute;
  top: 0;
  right: 0;
}

/**
 * SpMenuブロック
 * スマホ専用メニューのスタイルを定義
 */
.SpMenu {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.SpMenu::before {
  content: '';
  position: absolute;
  bottom: 0;
  z-index: 1999;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

@media screen and (max-width: 768px) {
  .SpMenu {
    display: block;
  }
}

.SpMenu.SpMenu--sub-opened::before {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.SpMenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 62px;
  background-color: #e5e5e5;
}

.SpMenu__item {
  width: 20%;
  text-align: center;
}

.SpMenu__item + .SpMenu__item {
  border-left: 1px solid #e5e5e5;
}

.SpMenu__item.SpMenu__item--shokuiki {
  width: 25%;
}

.SpMenu__link {
  padding: 14px 1px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 0.833rem;
  font-weight: bold;
  color: #094;
  text-decoration: none;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

.SpMenu__link::before {
  content: '';
  margin-bottom: 5px;
  display: block;
}

.SpMenu__link.SpMenu__link--home::before {
  width: 22.5px;
  height: 21px;
  background: url(../images/common/icon-spmenu-home.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--list::before {
  width: 17.5px;
  height: 21px;
  background: url(../images/common/icon-spmenu-list.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--operation::before {
  width: 20.125px;
  height: 21px;
  background: url(../images/common/icon-spmenu-operation.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--contact::before {
  width: 25px;
  height: 21px;
  background: url(../images/common/icon-spmenu-contact.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--menu::before {
  width: 19.714px;
  height: 21px;
  background: url(../images/common/icon-spmenu-menu.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--toggle {
  position: relative;
}

.SpMenu__link.SpMenu__link--toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  width: 4px;
  height: 8px;
  background: url(../images/common/icon-button-right-triangle_green.svg) no-repeat 0 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.SpMenu__link.SpMenu__link--opened {
  position: relative;
  background-color: #094;
  color: #fff;
}

.SpMenu__link.SpMenu__link--opened span {
  display: none;
}

.SpMenu__link.SpMenu__link--opened::before {
  width: 16.5735px;
  height: 21px;
  background: url(../images/common/icon-spmenu-opened.svg) no-repeat 0 center;
}

.SpMenu__link.SpMenu__link--opened::after {
  position: relative;
  top: auto;
  width: auto;
  height: auto;
  background: none;
  content: attr(data-opened_text);
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/**
 * SpMenuButtonブロック
 * スマホ表示専用メニューのリンク用ボタン
 */
.SpMenuButton {
  padding: 18px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 13px;
  font-size: 1.286rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  -webkit-box-shadow: inset 0 -1px 0 #ebebeb;
  box-shadow: inset 0 -1px 0 #ebebeb;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  cursor: pointer;
}

.SpMenuButton::after {
  content: '';
  display: block;
  width: 8px;
  height: 12px;
  background: url(../images/common/icon-button-right-triangle_green.svg) no-repeat 0 0;
}

.SpMenuButton:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .SpMenuButton:hover {
    opacity: 1;
  }
}

.SpMenuButton--blank::after {
  width: 16px;
  height: 16px;
  background: url(../images/common/icon-link-blank.svg) no-repeat 0 0;
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.SpMenuButton--toggle::after {
  width: 18px;
  height: 18px;
  background: url(../images/common/icon-button-toggle-closed.svg) no-repeat 0 0;
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}

.SpMenuButton--toggle.SpMenuButton--toggle-opened {
  border-radius: 13px 13px 0 0;
}

.SpMenuButton--toggle.SpMenuButton--toggle-opened::after {
  background: url(../images/common/icon-button-toggle-opened.svg) no-repeat 0 0;
}

.SpMenuButton--toggle-child {
  padding: 0 20px;
  background-color: #f5f5f5;
  border-radius: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
  -o-transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
  transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .1s linear,
 visibility  .1s linear;
}

.SpMenuButton--toggle-child::after {
  height: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.SpMenuButton__children > li:last-child .SpMenuButton--toggle-child {
  border-radius: 0 0 13px 13px;
}

.SpMenuButton--toggle-opened + .SpMenuButton__children .SpMenuButton--toggle-child {
  padding: 18px 20px;
  line-height: 1.4;
  opacity: 1;
  visibility: visible;
  -webkit-transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
  -o-transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
  transition: padding  .3s ease-out,
 line-height .3s ease-out,
 opacity     .3s linear,
 visibility  .3s linear;
}

.SpMenuButton--toggle-opened + .SpMenuButton__children .SpMenuButton--toggle-child::after {
  height: 12px;
}

.SpMenuButton__children {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * SpMenuSubブロック
 * スマホ用メニューのサブウィンドウのスタイルを定義
 */
.SpMenuSub {
  position: absolute;
  bottom: 0;
  z-index: 2000;
  padding: 20px;
  display: none;
  width: 100%;
  max-height: calc(100vh - 62px);
  max-height: calc(var(--vh, 1vh) * 100 - 62px);
  overflow-y: scroll;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  background-color: #d9f0e3;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .SpMenuSub {
    display: block;
  }
}

.SpMenuSub--opened {
  -webkit-transform: translateY(-62px);
  -ms-transform: translateY(-62px);
  transform: translateY(-62px);
}

.SpMenuSub__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.SpMenuSub__list > li + li {
  margin-top: 15px;
}

.SpMenuSub__links {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.SpMenuSub__link {
  display: block;
  font-size: 1.333rem;
}

/**
 * Breadcrumbsブロック
 *
 */
.Breadcrumbs {
  margin: 40px auto 0;
  padding: 0 0 15px;
  width: 960px;
  border-bottom: 1px solid #e5e5e5;
}

.Breadcrumbs::before {
  content: '';
  margin-bottom: 15px;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #094;
  border-radius: 4px 4px 0 0;
}

@media screen and (max-width: 768px) {
  .Breadcrumbs {
    margin: 20px 15px 0;
    padding: 0 0 10px;
    width: calc(100% - 30px);
  }
  .Breadcrumbs::before {
    content: none;
  }
}

.Breadcrumbs__item {
  position: relative;
  text-decoration: none;
  color: #333;
}

.Breadcrumbs__item + .Breadcrumbs__item {
  margin-left: 45px;
}

.Breadcrumbs__item + .Breadcrumbs__item::before {
  position: absolute;
  left: -30px;
  content: '>';
  pointer-events: none;
  cursor: normal;
}

@media screen and (max-width: 768px) {
  .Breadcrumbs__item + .Breadcrumbs__item {
    margin-left: 20px;
  }
  .Breadcrumbs__item + .Breadcrumbs__item::before {
    left: -16px;
  }
}

.Breadcrumbs__item--current {
  font-weight: bold;
  color: #094;
}

.Breadcrumbs__item--current::before {
  font-weight: normal;
  color: #333;
}

.Breadcrumbs__item--home {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.Breadcrumbs__item--home::before {
  content: '';
  margin-right: 5px;
  display: block;
  width: 15.167px;
  height: 14px;
  background: url(../images/common/icon-breadcrumbs-home.svg) no-repeat 0 0;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

@media screen and (max-width: 768px) {
  .Breadcrumbs__item--home {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
  }
  .Breadcrumbs__item--home::before {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/**
 * InternalLinksブロック
 *
 */
.InternalLinks {
  list-style: none;
  margin: 30px 0 0;
  padding: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #e5e5e5;
}

.InternalLinks li + li {
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .InternalLinks li + li {
    margin-left: 0;
  }
}

.InternalLinks .spacer {
  width:100%;
}

@media screen and (max-width: 768px) {
  .InternalLinks {
    margin-top: 15px;
    -ms-flex-wrap: wrap;
  }
  .InternalLinks li {
    margin-right: 20px;
    margin-bottom: 5px;
  }
  .InternalLinks .spacer {
    display: none;
  }
}

/**
 * ContentBlockブロック
 * セクション毎のエリアを定義
 */
.ContentBlock {
  padding: 80px 0;
}

.Breadcrumbs + .ContentBlock {
  padding-top: 40px;
}

.Welcome + .ContentBlock {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .ContentBlock {
    padding: 40px 0;
  }
  .Breadcrumbs + .ContentBlock {
    padding-top: 25px;
  }
}

.ContentBlock--popup {
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .ContentBlock--popup {
    padding-bottom: 15px;
  }
}

.ContentBlock--footer-menu, .ContentBlock:nth-of-type(even).ContentBlock--footer-menu {
  background-color: #b9e1a5;
}

.ContentBlock--footer-menu {
  padding: 70px 0 80px;
}

@media screen and (max-width: 768px) {
  .ContentBlock--footer-menu {
    display: none;
  }
}

.ContentBlock__inner {
  margin: 0 auto;
  width: 960px;
}

@media screen and (max-width: 768px) {
  .ContentBlock__inner {
    padding: 0 15px;
    width: 100%;
  }
}

/**
 * Boxブロック
 *
 */
.Box {
  margin-top: 30px;
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .Box {
    margin-top: 20px;
    padding: 15px;
  }
}

.Box--wide-pd {
  padding: 45px 50px;
}

@media screen and (max-width: 768px) {
  .Box--wide-pd {
    padding: 20px;
  }
}

.Box--middle-pd {
  padding: 20px;
}

.Box--narrow-pd {
  padding: 10px;
}

.Box--info {
  padding: 30px 40px !important;
  font-size: 1.428rem;
}

@media screen and (max-width: 768px) {
  .Box--info {
    padding: 15px !important;
    font-size: 1.166rem;
  }
}

.Box--column2 {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .Box--column2 {
    margin-bottom: 30px;
    display: block;
  }
}

.Box--gray {
  background-color: #f5f5f5;
}

.Box--green {
  background-color: #ccebda;
}

.Box--green2 {
  background-color: #c0dea7;
}

.Box--maincol {
  margin-top: 0;
  width: 600px;
}

@media screen and (max-width: 768px) {
  .Box--maincol {
    width: 100%;
  }
}

.Box--subcol {
  margin-top: 0;
  width: 330px;
}

@media screen and (max-width: 768px) {
  .Box--subcol {
    margin-top: 15px;
    width: 100%;
  }
}

.Box--line {
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
}

.Box--line-thick {
  padding: 15px;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
}

.Box--balloon {
  position: relative;
  background-color: #f5f5f5;
}

.Box--balloon * {
  position: relative;
  z-index: 2;
}

.Box--balloon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 28px;
  height: 28px;
  background-color: #f5f5f5;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(45deg) translate(20%, 20%);
  -ms-transform: rotate(45deg) translate(20%, 20%);
  transform: rotate(45deg) translate(20%, 20%);
}

.Box__title {
  color: #000;
  font-weight: bold;
  font-size: 1.714rem;
  text-align: center;
}

.Box__instruction {
  margin: 35px 0;
  font-size: 1.286rem;
  text-align: center;
}

.Box__instruction:first-child {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .Box__instruction {
    text-align: left;
    margin: 24px 0;
    font-size: 1.083rem;
  }
}

.Box__instruction_mt0 {
  font-size: 1.286rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .Box__instruction_mt0 {
    text-align: left;
    margin: 25px 28px;
    font-size: 1.083rem;
  }
}

.Box__tittle-button {
  padding: 6px 8px 5px;
  width: auto;
}

.Box__main-conent {
  width: 550px;
}

.Box__main-conent-center {
  width: 550px;
  margin:0 auto;
}

@media screen and (max-width: 768px) {
  .Box__main-conent {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .Box__main-conent-center {
    width: 100%;
    margin:0 auto;
  }
}

.Box__sub-content {
  width: 320px;
}

@media screen and (max-width: 768px) {
  .Box__sub-content {
    width: 100%;
  }
}

.Box__title--line {
  margin: 0;
  padding-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px dotted #e5e5e5;
  font-size: 1.286rem;
}

.Box__title--line.Box__title--green {
  border-bottom: 2px dotted #e7efdb;
}

@media screen and (max-width: 768px) {
  .Box__title--line {
    font-size: 1.5rem;
  }
}

.Box__title--green {
  color: #094;
}

@media screen and (max-width: 768px) {
  .Box__title_web {
    font-size: 1.61rem;
  }
}

/**
 * AttentionBlockブロック
 *
 */
.AttentionBlock {
  padding: 4px;
  background: url(../images/common/border-topics.png) repeat 0 0;
  border-radius: 2px;
}

.AttentionBlock--step2 {
    margin-bottom: 25px;
}

.AttentionBlock--dotline {
  padding: 20px;
  background-image: none;
  background-color: #fff;
  border: 1px dotted #ccc;
}

.AttentionBlock__title {
  margin: 0 0 10px;
  font-size: 1.142rem;
  color: #094;
}

.AttentionBlock__title span {
  color: #333;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__title {
    font-size: 1.083rem;
  }
}

.AttentionBlock__inner {
  margin: 0;
  padding: 20px 25px;
  background-color: #fff;
  font-size: 1.142rem;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.AttentionBlock__inner--normal {
    font-weight: normal;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner {
    padding: 15px 10px;
    font-size: 1rem;
    text-align: left;
  }
}

.AttentionBlock__message {
  margin: 0;
  font-weight: normal;
  font-size: 1rem;
}

.AttentionBlock__message + .AttentionBlock__message {
  margin-top: 1.4em;
}

.AttentionBlock__title--large {
  font-size: 1.286rem;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__title--large {
    font-size: 1.333rem;
  }
}

.AttentionBlock__inner--half {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--half {
    width: 100%;
    padding: 0 10px;
  }
}

.AttentionBlock__inner--half div {
  width: 50%;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--half div {
    width: 100%;
    padding: 15px 0;
  }
}

.AttentionBlock__inner--sideline {
  border-right: 1px dotted #e5e5e5;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--sideline {
    border-right: none;
    border-bottom: 1px dotted #e5e5e5;
  }
}

.AttentionBlock__inner--title {
  font-size: 1.286rem;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--title {
    font-size: 1.333rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .AttentionBlock__message {
    color: #666;
  }
}

.AttentionBlock__inner--title-startday {
  padding-bottom: 7px;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--title-startday {
    text-align: center;
    font-size: 15px;
  }
}

.AttentionBlock__inner--title-startday:first-child {
  border-right: 1px dotted #e5e5e5;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__inner--title-startday:first-child {
    padding-right: 5px;
  }
}

.AttentionBlock__message--startday {
  text-align: left;
  border-bottom: 1px dotted #e5e5e5;
  border-right: 1px dotted #e5e5e5;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__message--startday {
    font-size: 11px;
  }
}

.AttentionBlock__message--startday:last-child{
  border-right-style: none;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__message--startday:last-child {
    padding-left: 5px;
    width: 40%;
  }
}

.AttentionBlock__message--startday-space {
  width: 30%;
  padding-top: 5px;
  padding-left: 15px;
}

@media screen and (max-width: 768px) {
  .AttentionBlock__message--startday-space {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.AttentionBlock__message--startdaytable-noline{
  border-bottom-style: none;
}

/**
 * StepIndicatorブロック
 *
 */
.StepIndicator {
  margin-top: 30px;
  margin-bottom: 40px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 26px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .StepIndicator {
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 0;
    height: 65px;
    border-radius: 13px;
  }
}

.StepIndicator--inc-title {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .StepIndicator--inc-title {
    padding: 10px;
  }
}

@media screen and (max-width: 374px) {
  .StepIndicator--inc-title {
    min-height: 0;
    height: auto;
  }
}

.StepIndicator--mb-wide,
.StepIndicator--join {
  margin-bottom: 40px;
}

.StepIndicator__title {
  margin: 0;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.714rem;
  line-height: 1.1;
}

.StepIndicator--inc-title .StepIndicator__title {
  padding-right: 25px;
  width: 245px;
  border-right: 2px solid #b2b2b2;
}

@media screen and (max-width: 768px) {
  .StepIndicator__title {
    font-size: 1rem;
    text-align: center;
  }
  .StepIndicator--inc-title .StepIndicator__title {
    padding: 0 15px;
    width: 110px;
    border-right: 2px solid #b2b2b2;
  }
}

.StepIndicator__steps {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .StepIndicator__steps {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 15px;
  }
}

.StepIndicator--inc-title .StepIndicator__steps {
  width: calc(100% - 245px);
}

@media screen and (max-width: 768px) {
  .StepIndicator--inc-title .StepIndicator__steps {
    width: calc(100% - 110px);
  }
}

.StepIndicator__item {
  font-weight: bold;
  font-size: 1.714rem;
  line-height: 1.1;
  color: #000;
  text-align: center;
}

.StepIndicator--inc-title .StepIndicator__item {
  font-size: 1.428rem;
}

.StepIndicator__item + .StepIndicator__item {
  position: relative;
}

.StepIndicator__item + .StepIndicator__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 19px;
  height: 19px;
  border-top: 3.5px solid #b2b2b2;
  border-right: 3.5px solid #b2b2b2;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
  -ms-transform: translate(-100%, -50%) rotate(45deg);
  transform: translate(-100%, -50%) rotate(45deg);
}

.StepIndicator--step2 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - (100% * 2)) / 3 / 2 * -1);
}

.StepIndicator--step3 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - (100% * 3)) / 4 / 2 * -1);
}

.StepIndicator--step4 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - (100% * 4)) / 5 / 2 * -1);
}

.StepIndicator--step5 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - (100% * 5)) / 6 / 2 * -1);
}

.StepIndicator--inc-title.StepIndicator--step2 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - 245px - (100% * 2)) / 3 / 2 * -1);
}

.StepIndicator--inc-title.StepIndicator--step3 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - 245px - (100% * 3)) / 4 / 2 * -1);
}

.StepIndicator--inc-title.StepIndicator--step4 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - 245px - (100% * 4)) / 5 / 2 * -1);
}

.StepIndicator--inc-title.StepIndicator--step5 .StepIndicator__item + .StepIndicator__item::before {
  left: calc((960px - 245px - (100% * 5)) / 6 / 2 * -1);
}

@media screen and (max-width: 768px) {
  .StepIndicator__item {
    display: none;
  }
  .StepIndicator--inc-title .StepIndicator__item {
    font-size: 1.333rem;
  }
  .StepIndicator__item + .StepIndicator__item::before {
    display: none;
  }
  .StepIndicator__item br {
    display: none;
  }
}

.StepIndicator__spitem {
  display: none;
  margin-top: 5px;
}

.StepIndicator__spitem::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  border: 1px solid #ccc;
}

.StepIndicator__spitem + .StepIndicator__spitem {
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .StepIndicator__spitem {
    display: block;
  }
}

.StepIndicator__item--current {
  color: #094;
}

@media screen and (max-width: 768px) {
  .StepIndicator__item--current {
    display: block;
    width: 100%;
    color: #000;
    font-size: 1.333rem;
  }
  .StepIndicator__item--current span {
    padding-right: 0.5em;
    color: #094;
  }
}

.StepIndicator__item--completed {
  color: #ccc;
}

.StepIndicator__spitem--current::before {
  background-color: #094;
  border-color: #094;
}

.StepIndicator__spitem--completed::before {
  border-color: #ccc;
  background-color: #fff;
}

/**
 * NotesArea ブロック
 *
 */
.NotesArea {
  margin-top: 35px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .NotesArea {
    margin-top: 30px;
    margin-bottom: 27px;
  }
}

.NotesArea__title {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .NotesArea__title {
    margin-bottom: 12px;
    font-size: 1.166rem;
  }
}

.NotesArea__content {
  font-size: 1em;
}

.NotesArea__content > *:first-child {
  margin-top: 0;
}

.NotesArea__sub-title {
  margin-bottom: 10px;
  font-weight: bold;
}

.NotesArea__sub-title:first-child {
  margin-top: 0;
}

.NotesArea__sub-title + * {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .NotesArea__sub-title {
    font-size: 1rem;
  }
}

/**
 * Notesブロック
 *
 */
.Notes--inline {
  display: inline-block !important;
}

.Notes--notice {
  padding: 8px 10px;
  background-color: #f5f5f5;
  font-weight: normal;
  font-size: 1rem;
  color: #333;
}

.Notes--kome,
.Notes--kome-no {
  display: block;
  padding-left: 1em;
}

.Notes--kome::before,
.Notes--kome-no::before {
  content: '※';
  margin-left: -1em;
}

.Notes--kome-red::before {
  color: red;
}

.Notes--kome-yellow::before {
  background-color: yellow;
  font-size: 1.38rem
}

.Notes--kome-no {
  padding-left: 2em;
  counter-increment: komenum;
}

.Notes--kome-no::before {
  content: "※" counter(komenum) " ";
  margin-left: -2em;
}

.Notes--kome-no {
  padding-left: 2em;
  counter-increment: komenum;
}

.Notes--kome-no::before {
  content: "※" counter(komenum) " ";
  margin-left: -2em;
}

.Notes--asta {
  display: block;
  padding-left: 1.0em;
}

.Notes--asta::before {
  content: "* ";
  margin-left: -1.0em;
}

.Notes--asta-no {
  padding-left: 2em;
  counter-increment: astanum;
}

.Notes--asta-no::before {
  content: "*" counter(astanum) " ";
  margin-left: -1.6em;
}

.Notes--par-no {
  padding-left: 2em;
  counter-increment: parnum;
}

.Notes--par-no::before {
  content: "(" counter(parnum) ") ";
  margin-left: -2em;
}

.Notes--par-no2 {
  padding-left: 1.4em;
  counter-increment: parnum;
}

.Notes--par-no2::before {
  content: counter(parnum) ". ";
  margin-left: -1.3em;
}

.Notes--chuu {
  padding-left: 2.2em;
}

.Notes--chuu::before {
  content: '(注) ';
  margin-left: -2.2em;
}

.Notes--info {
  position: relative;
  padding-left: 1.25em;
}

.Notes--info::before {
  content: '';
  position: absolute;
  top: .1em;
  left: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../images/common/icon-info.svg) no-repeat 0 0;
}

.Notes--alert {
  position: relative;
  padding-left: 1.25em;
}

.Notes--alert::before {
  content: '';
  position: absolute;
  top: .1em;
  left: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../images/common/icon-alert.svg) no-repeat 0 0;
}

.Notes--square,
.Notes--square-green {
  padding-left: 1em;
}

.Notes--square::before,
.Notes--square-green::before {
  content: '■';
  margin-left: -1em;
}

.Notes--square-green::before {
  color: #094;
}

.Notes--circle,
.Notes--circle-green {
  padding-left: 1em;
}

.Notes--circle::before,
.Notes--circle-green::before {
  content: '●';
  margin-left: -1em;
}

.Notes--circle-green::before {
  color: #094;
}

.Notes--dot {
  padding-left: 1em;
}

.Notes--dot::before {
  content: '・';
  margin-left: -1em;
}

.Notes--comment {
    margin-left: 66px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .Notes--comment {
        padding: 0;
    }
}

.Notes--largetext {
  font-size: 1.07rem;
}

@media screen and (max-width: 768px) {
  .Notes--largetext {
    font-size: 1.08rem;
  }
}

/**
 * AlertBox ブロック
 *
 */
.AlertBox {
  margin: 20px 0;
  padding: 20px;
  background-color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .AlertBox {
    margin: 10px 0;
    padding: 15px;
  }
}

.AlertBox__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.AlertBox__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.AlertBox__icon--triangle {
  width: 36px;
}

.AlertBox__desc {
  font-size: 1.142rem;
  color: #000;
  margin: 0;
  padding-left: 20px;
}

.AlertBox__text {
    background-color: #FF0;
    font-size: 1.38rem;
    line-height: 2.5rem;
}
/**
 * SearchResults ブロック
 *
 */
.SearchResults__heading {
  font-size: 1.142rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .SearchResults__heading {
    font-size: 1rem;
  }
}

.SearchResults__list {
  list-style: none;
  margin-left: 0;
}

.SearchResults__list li {
  margin-bottom: 0.2em;
  font-weight: normal;
}

.SearchResults__list li:last-child {
  margin-bottom: 0;
}

/**
 * ContentSelectブロック
 *
 */
.ContentSelect {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #666;
  border-radius: 5px;
}

.ContentSelect input {
  display: none;
}

.ContentSelect__item {
  padding: 10px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  background-color: #fff;
  font-weight: normal;
  font-size: 1.142rem;
  cursor: pointer;
}

.ContentSelect__item:first-of-type {
  border-radius: 4px 0 0 4px;
}

.ContentSelect__item:last-of-type {
  border-radius: 0 4px 4px 0;
}

.ContentSelect__item::before {
  content: '';
  margin-right: 5px;
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/common/icon-checkbox.svg) no-repeat 0 0;
}

:checked + .ContentSelect__item {
  background-color: #094;
  color: #fff;
}

:checked + .ContentSelect__item::before {
  background: url(../images/common/icon-checkbox-checked.svg) no-repeat 0 0;
}

@media screen and (max-width: 768px) {
  .ContentSelect__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/**
 * ContentSelectMultipleブロック
 *
 */
.ContentSelectMultiple {
  position: relative;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ContentSelectMultiple__label {
  margin-right: 15px;
  padding: 0 15px 0 10px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .ContentSelectMultiple__label {
    margin-right: 10px;
    padding: 0 12px 0 0;
    font-size: 1.166rem;
  }
}

.ContentSelectMultiple__secect {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .ContentSelectMultiple__secect {
    display: none;
  }
}

.ContentSelectMultiple__item {
  margin: 0 5px;
  padding: 8px 17px 5px;
  background-color: #f5f5f5;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.ContentSelectMultiple__pulldown {
  display: none;
  position: relative;
  z-index: 3;
  width: 100%;
  background-color: #094;
}

.ContentSelectMultiple__pulldown::after {
  background: url(../images/common/icon-dropdown_white.svg) no-repeat 0 0;
}

.ContentSelectMultiple__pulldown .Dropdown__select {
  font-size: 1.166rem;
  color: #fff;
}

.ContentSelectMultiple__pulldown .Dropdown__select option {
  color: #000;
}

@media screen and (max-width: 768px) {
  .ContentSelectMultiple__pulldown {
    display: block;
  }
}

.ContentSelectMultiple__item--selected {
  background-color: #094;
  border-color: #094;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .ContentSelectMultiple__item--selected {
    display: block;
    margin: 0;
    padding: 0;
    background-color: transparent;
    font-size: 1.166rem;
  }
}

/**
 * SupportDeskブロック
 *
 */
.SupportDesk {
  padding: 25px;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
  text-align: center;
}

.SupportDesk--inquiry {
  padding: 10px;
  font-size: 1.286rem;
  border: 2px solid #e5e5e5;
  border-radius: 2px;
  text-align: center;
}

.SupportDesk--service {
    margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .SupportDesk {
    padding: 10px;
  }
  .SupportDesk__authcode {
    width: 270px;
    padding: 10px 5px;
  }
}

.SupportDesk--servicecenter {
  padding: 25px 48px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .SupportDesk--servicecenter {
    padding: 10px 15px;
  }
}

.SupportDesk__toiawasesaki-shokuiki{
  text-align: center;
  margin-block-start: 0px;
  font-size: 1.8rem;
}

.SupportDesc__title {
  margin: 0 0 18px;
  font-size: 1.428rem;
  color: #094;
}

.SupportDesc__title span {
  margin-left: .25em;
  font-size: 1.142rem;
  color: #000;
}

.SupportDesk--servicecenter .SupportDesc__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.714rem;
}

.SupportDesk--servicecenter .SupportDesc__title::before {
  content: '';
  margin-right: 5px;
  display: inline-block;
  width: 15px;
  height: 20px;
  background: url(../images/common/icon-call.png) no-repeat 0 0;
}

.SupportDesk--servicecenter .SupportDesc__title span {
  font-size: 1.286rem;
}

.SupportDesc__title br {
  display: none;
}

@media screen and (max-width: 768px) {
  .SupportDesc__title {
    font-size: 1.333rem;
  }
  .SupportDesc__title span {
    font-size: 1.166rem;
  }
  .SupportDesk--servicecenter .SupportDesc__title {
    display: block;
    font-size: 1.5rem;
    text-align: center;
  }
  .SupportDesc__title br {
    display: block;
  }
}

.SupportDesk__kyugyo{
  font-size: 1.4rem;
  text-align: center;
}

.SupportDesk__dial-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .SupportDesk__dial-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.SupportDesk__free-dial {
  margin: 0;
  font-weight: bold;
  font-size: 2.857rem;
  line-height: 1;
  color: #333;
}

.SupportDesk__free-dial::before {
  content: '';
  margin-right: 5px;
  display: inline-block;
  width: 50.685px;
  height: 29px;
  background: url(../images/common/icon-freadial.svg) no-repeat 0 0;
}

.SupportDesk__free-dial-shokuikichiiki::before {
	content:none;
}

.SupportDesk__dial-wrap .SupportDesk__free-dial {
  font-size: 3.428rem;
}

.SupportDesk__dial-wrap .SupportDesk__free-dial::before {
  width: 69.911px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .SupportDesk__free-dial {
    font-size: 2.333rem;
  }
  .SupportDesk__free-dial::before {
    width: 43.694px;
    height: 25px;
  }
  .SupportDesk__dial-wrap .SupportDesk__free-dial {
    font-size: 2.5rem;
  }
  .SupportDesk__dial-wrap .SupportDesk__free-dial::before {
    width: 43.694px;
    height: 25px;
  }
  .SupportDesk__toiawasesaki-shokuiki{
    font-size: 1.2rem;
  }
  .SupportDesk__kyugyo{
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 374px) {
  .SupportDesk__dial-wrap .SupportDesk__free-dial {
    font-size: 2rem;
  }
  .SupportDesk__toiawasesaki-shokuiki{
    font-size: 1.1rem;
  }
  .SupportDesk__kyugyo{
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) and (max-width: 330px) {
  .SupportDesk__dial-wrap .SupportDesk__free-dial {
    font-size: 1.788rem;
  }

  .SupportDesk__toiawasesaki-shokuiki{
    font-size: 1rem;
  }
  .SupportDesk__kyugyo{
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 385px) {
  .SupportDesk__free-dial {
    font-size: 2em;
  }
  .SupportDesk__free-dial::before {
    width: 34.955px;
    height: 20px;
  }
}

@media screen and (max-width: 345px) {
  .SupportDesk__free-dial {
    font-size: 1.75em;
  }
  .SupportDesk__free-dial::before {
    width: 26.216px;
    height: 15px;
  }
}

.SupportDesk__time {
  margin-top: 10px;
  font-weight: bold;
  color: #000;
}

.SupportDesk__dial-wrap .SupportDesk__time {
  margin-top: 0;
  font-weight: normal;
  font-size: 1.142rem;
  text-align: left;
}

.SupportDesk__time span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.885rem;
  color: #333;
}

.SupportDesk__time span::before, .SupportDesk__time span::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #ccc;
}

.SupportDesk__time span::before {
  margin-right: 5px;
}

.SupportDesk__time span::after {
  margin-left: 5px;
}

@media screen and (max-width: 768px) {
  .SupportDesk__time {
    font-size: 1.166rem;
  }
  .SupportDesk__dial-wrap .SupportDesk__time {
    margin-top: 8px;
    font-size: 1rem;
  }
  .SupportDesk__time span {
    font-size: 1em;
  }
  .SupportDesk__time span::before, .SupportDesk__time span::after {
    width: 30px;
  }
}

@media screen and (max-width: 385px) {
  .SupportDesk__time {
    font-size: 1em;
  }
}

@media screen and (max-width: 345px) {
  .SupportDesk__time {
    font-size: 0.833em;
  }
}

.SupportDesk__temp-time {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .SupportDesk__temp-time {
    font-size: 1.083rem;
  }
}

/**
 * GetReader ブロック
 *
 */
.GetReader {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.714rem;
  line-height: 1.1;
}

.GetReader img {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .GetReader {
    display: none;
  }
}

/**
 * Step ブロック
 *
 */
.Step__title {
  font-weight: normal;
  font-size: 1.714rem;
  text-align: center;
}

.Step__title span {
  display: block;
  font-weight: bold;
  color: #094;
}

@media screen and (max-width: 768px) {
  .Step__title {
    font-size: 1.333rem;
  }
}

.Step__content {
  color: #666;
  font-size: 1.142rem;
}

@media screen and (max-width: 768px) {
  .Step__content {
    font-size: 1.083rem;
  }
}

/**
 * StepProcess ブロック
 *
 */
.StepProcess {
  border: 4px solid #e5e5e5;
  padding: 15px;
}

.StepProcess--noborder {
  border: none;
  padding: 15px 0;
}

.StepProcess__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .StepProcess__item {
    display: block;
  }
}

.StepProcess__box {
  width: 420px;
}

@media screen and (max-width: 768px) {
  .StepProcess__box {
    width: 100%;
  }
}

.StepProcess__title {
  font-size: 1.286rem;
}

@media screen and (max-width: 768px) {
  .StepProcess__title {
    font-size: 1.333rem;
  }
}

.StepProcess__item--border {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.StepProcess__item--border:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.StepProcess__box--text {
  margin: 0;
  line-height: 1.285;
}

.StepProcess__item--image {
  width: 400px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .StepProcess__item--image {
    width: 100%;
  }
}

.StepProcess__item--image img {
  width: 100%;
}

/**
 * AccordionSPブロック
 */
@media screen and (max-width: 768px) {
  .AccordionSP__contents {
    cursor: pointer;
    margin-top: 30px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 -2px 0 #ebebeb;
    box-shadow: inset 0 -2px 0 #ebebeb;
    background-color: #fcfcfc;
  }
}

.AccordionSP__contents.AccordionSP-active {
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  .AccordionSP--active .AccordionSP__title {
    margin: 0 !important;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
    background-color: #fcfcfc;
  }
  .AccordionSP--active .AccordionSP__title::before {
    background: url("../images/common/icon-accordion_close.svg") no-repeat 0 0;
    background-position: center;
  }
  .AccordionSP--active .AccordionSP__inner {
    display: block;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 768px) {
    .AccordionSP--active .AccordionSP__inner--authcode {
        padding: 10px 0;
    }
}

@media screen and (max-width: 768px) {
  .AccordionSP__inner {
    display: none;
    background-color: #fff;
  }
  .AccordionSP__inner > .Heading:first-child {
    margin-top: 0;
  }
}

.AccordionSP__title {
  margin-top: 50px !important;
  margin-bottom: 20px !important;
  font-size: 1.285rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .AccordionSP__title {
    margin: 0 !important;
    padding: 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.083rem;
    text-align: left;
    color: #000;
  }
  .AccordionSP__title::before {
    content: '';
    margin-right: 10px;
    display: block;
    min-width:15px;
    width: 15px;
    height: 15px;
    background: url("../images/common/icon-accordion_open.svg") no-repeat 0 0;
    background-position: center;
  }
}

/**
 * ReceiptBox ブロック
 *
 */
.ReceiptBox {
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 1.428rem;
}

@media screen and (max-width: 768px) {
  .ReceiptBox {
    font-size: 1.714rem;
    text-align: left;
  }
}

.ReceiptBox__message {
  margin: 3px 0 0;
}

.ReceiptBox__number {
  color: #094;
}

/**
 * Agreement ブロック
 *
 */
.Agreement {
  width: 100%;
}

.Agreement__inner {
  height: 350px;
  background-color: #f5f5f5;
  overflow: auto;
  padding: 15px 20px;
}

.AgreementPC__inner {
    height: auto;
}

@media screen and (max-width: 768px) {
  .Agreement__inner {
    height: auto;
    background-color: transparent;
  }
}

.Agreement__inner .Agreement__title {
  color: #094;
  font-size: 1.285rem;
}

@media screen and (max-width: 768px) {
  .Agreement__inner .Agreement__title {
    font-size: 1.083rem;
  }
}

.Agreement__inner .Agreement__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.Agreement__inner .Agreement__list--child {
  padding-left: 1em;
}

/**
 * TermsList ブロック
 *
 */
.TermsList {
  width: 100%;
}

.TermsList .Heading--quaternary {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .TermsList .Heading--quaternary {
    margin: 0;
  }
}

.TermsList--title {
  color: #094;
  font-size: 1.285rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .TermsList--title {
    color: #000;
    font-size: 0.928rem;
  }
}

/**
 * Terms ブロック
 *
 */
.Terms__chapter {
  font-size: 1.142rem;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.Terms__chapter--top {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .Terms__chapter {
    margin-top: 20px;
  }

  .Terms__chapter--top {
    margin-top: 5px;
  }
}

.Terms__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.Terms__heading,
.Terms__subheading {
  margin: 0;
}

.Terms__heading {
  font-weight: bold;
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  .Terms__heading {
    margin-top: 15px;
  }
}

.Terms__chapter + .Terms__heading {
  margin-top: 0;
}

.Terms__subheading {
  width: 3.5em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1em;
  font-weight: normal;
}

.Terms__list--text {
  margin: 1em 0 0;
}

/**
 * ListText
 *
 */
.ListText {
  margin: 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .ListText {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ListText__item:not(:last-child):after {
  content: "/";
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .ListText__item:not(:last-child):after {
    content: none;
    margin: 0;
  }
}

.List__style{
  list-style-type: disc;
}

.normal-font {
  font-weight: 500;
  font-size: 14px;
}
