@charset "UTF-8";
/* ==========================================================================
	color
========================================================================== */
/* 価格 */
/* テキスト */
/* リンク */
/* BackGround */
/* borderCommon */
/* borderFrom */
/* ==========================================================================
	mixin
========================================================================== */
/* ==========================================================================
	goTop
========================================================================== */
.c-goTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background-color: #0082c3;
  z-index: 100;
  transition: opacity 0.3s;
  cursor: pointer;
}
.c-goTop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
  font-size: 3.6rem;
  font-weight: 700;
  content: "\f106";
  color: white;
}
.c-goTop:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

@media (max-width: 768px) {
  .c-goTop {
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
  }
  .c-goTop::before {
    font-size: 3.2rem;
  }
}
/* ==========================================================================
    linkArrow
========================================================================== */
.c-linkArrow__box {
  box-sizing: border-box;
  position: relative;
  font-size: 1.4rem;
}
.c-linkArrow__box > .c-linkArrow {
  position: absolute;
  top: 20px;
  right: 20px;
}

.c-linkArrow {
  transition: color 0.3s;
  font-weight: bold;
  text-decoration: none;
}
.c-linkArrow:hover {
  text-decoration: underline;
}
.c-linkArrow::after, .c-linkArrow::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0082c3;
  transition: color 0.3s;
}
.c-linkArrow--internal:before {
  content: "\f107";
  margin-right: 6px;
}
.c-linkArrow--outside:before {
  content: "\f105";
  margin-right: 6px;
}
.c-linkArrow--external:before {
  content: "\f35d";
  margin-right: 6px;
}

@media (max-width: 768px) {
  .c-linkArrow__box {
    padding-bottom: 100px;
  }
  .c-linkArrow__box > .c-linkArrow {
    box-sizing: border-box;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    width: calc(100% - 30px);
    max-width: 340px;
    margin: auto;
    padding: 15px;
    text-align: center;
    border: 1px solid #0082c3;
    border-radius: 4px;
  }
  .c-linkArrow__box > .c-linkArrow:hover {
    color: white;
    background-color: #0082c3;
  }
  .c-linkArrow__box > .c-linkArrow:hover::after {
    color: white;
  }
  .c-linkArrow--outside--spNo::before {
    display: none;
  }
  .c-linkArrow--outside--spNo:hover {
    text-decoration: none;
  }
}
/* ==========================================================================
	c-scroll
========================================================================== */
@media (max-width: 768px) {
  .c-scroll {
    width: calc(100% + 20px);
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .c-scroll::-webkit-scrollbar {
    height: 10px;
  }
  .c-scroll::-webkit-scrollbar-track {
    background-color: #eaedef;
  }
  .c-scroll::-webkit-scrollbar-thumb {
    background-color: #0082c3;
    border: 3px solid #eaedef;
    border-radius: 10px;
  }
  .c-scroll > .c-boxList, .c-scroll > .c-newsNavi, .c-scroll > .p-search__subNavi, .c-scroll > .c-scroll__tableWrap {
    box-sizing: border-box;
    padding-right: 20px;
    overflow: hidden;
  }
  .c-scroll > .c-boxList {
    width: 800px;
  }
  .c-scroll > .c-newsNavi {
    width: 100%;
    min-width: 720px;
  }
  .c-scroll > .p-search__subNavi {
    width: 100%;
    min-width: 500px;
  }
  .c-scroll > .c-scroll__tableWrap {
    width: 100%;
    min-width: 800px;
  }
}
@media (max-width: 480px) {
  .c-scroll > .c-boxList {
    width: 650px;
  }
  .c-scroll > .c-newsNavi {
    min-width: 720px;
  }
}
@media (max-width: 320px) {
  .c-scroll > .c-boxList {
    width: 560px;
  }
}
/* ==========================================================================
	warning
========================================================================== */
.c-warning {
  box-sizing: border-box;
  background-color: white;
  color: #373d3f;
  border: 4px solid #ffce33;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 1.4rem;
}

.c-warning__ttl {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-weight: bold;
  width: 115px;
  color: #cc3838;
}
.c-warning__ttl::before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  margin-right: 10px;
  font-size: 3.2rem;
  font-weight: 900;
  display: block;
}

.c-warning__content {
  width: calc(100% - 140px);
  margin-left: 28px;
}
.c-warning__content > li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.c-warning__content > li + li {
  margin-top: 10px;
}
.c-warning__content em {
  font-weight: bold;
}
.c-warning__content .c-linkArrow {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .c-warning {
    display: block;
    padding-top: 2px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
  .c-warning__ttl {
    width: 100%;
    margin-bottom: 6px;
    justify-content: center;
  }
  .c-warning__content {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .c-warning__ttl::before {
    font-size: 2.2rem;
  }
}
/* ==========================================================================
	heading
========================================================================== */
.c-heading {
  position: relative;
}
.c-heading--main {
  display: flex;
  align-items: center;
  font-size: 2rem;
  padding-left: 10px;
  font-weight: bold;
}
.c-heading--main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 80%;
  background-color: #0082c3;
}
.c-heading--main small {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: initial;
}
.c-heading--main em {
  font-weight: bold;
}
.c-heading--sub {
  font-size: 1.6rem;
  padding-bottom: 0;
}
.c-heading--sub::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #373d3f;
}
.c-heading--minimum {
  display: flex;
  font-size: 1.6rem;
}
.c-heading--minimum::before {
  display: flex;
  align-self: center;
  content: "";
  width: 4px;
  height: 14px;
  background-color: #91a1a6;
  margin-right: 6px;
}
.c-heading--side {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .c-heading--main {
    display: block;
  }
  .c-heading--main small {
    display: block;
    margin-left: 0;
  }
}
/* ==========================================================================
	text
========================================================================== */
.c-text {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #373d3f;
  letter-spacing: 0.05em;
}
.c-text--lineUp {
  line-height: 1.6;
}
.c-text--provide {
  font-size: 1.2rem;
  display: flex;
  color: #91a1a6;
}
.c-text--provide span {
  display: block;
}
.c-text--provide span:first-of-type {
  margin-right: 8px;
}
.c-text--category {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--date {
  font-weight: bold;
  margin-right: 8px;
}
.c-text--owner::after {
  display: inline-block;
  margin-left: 8px;
  content: "|";
}
.c-text--small {
  font-size: 1.4rem;
}
.c-text--notation {
  font-size: 1.4rem;
  color: #91a1a6;
}
.c-text--notes {
  font-size: 1.2rem;
  color: #91a1a6;
}
.c-text--comment {
  color: #91a1a6;
}
.c-text--disclaimer {
  margin-top: 4rem;
  color: #373d3f;
}

.c-text__form--caution {
  font-size: 1.4rem;
  background-color: #eff6fa;
  padding: 15px 10px;
  margin-top: 35px;
}

.c-text--thumbnail {
  position: relative;
  height: 39.2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.c-text--thumbnail:before {
  position: absolute;
  background: white;
  content: "…";
  top: 19.6px;
  right: 0;
}
.c-text--thumbnail:after {
  position: absolute;
  background: white;
  content: "";
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .c-text__form--caution {
    margin-top: 20px;
  }
}
/* ==========================================================================
	adsence
========================================================================== */
.c-adsence {
  box-sizing: border-box;
  width: 100%;
  height: auto;
}
.c-adsence img {
  width: 100%;
  height: auto;
}
.c-adsence--main {
  max-width: 640px;
  margin: 20px auto;
  text-align: center;
}
.c-adsence--sp {
  max-width: 320px;
  margin: 10px auto;
}
.c-adsence--side {
  max-width: 300px;
  margin: 0 auto 20px;
}

/* ==========================================================================
    banner
========================================================================== */
.c-banner {
  box-sizing: border-box;
  width: 300px;
  margin: 20px auto;
}
.c-banner > li img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.c-banner > li + li {
  margin-top: 20px;
}
.c-banner a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/* ==========================================================================
	breadcrumb
========================================================================== */
.c-breadcrumb {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.c-breadcrumb ul li {
  margin-right: 10px;
  display: inline;
  width: 100%;
}
.c-breadcrumb ul li:not(:last-of-type)::after {
  color: #91a1a6;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.c-breadcrumb--double {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .c-breadcrumb {
    box-sizing: border-box;
    margin: 40px 0 0;
    padding: 10px 20px;
    background-color: white;
    border-top: 7px solid #0082c3;
  }
  .c-breadcrumb + .c-breadcrumb {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
@media (max-width: 320px) {
  .c-breadcrumb {
    font-size: 1rem;
  }
}
/* ==========================================================================
	parallelList
========================================================================== */
.c-parallelList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.c-parallelList li {
  box-sizing: border-box;
}

.c-parallelList--four {
  justify-content: space-between;
}
.c-parallelList--four li {
  position: relative;
  width: calc((100% - 60px) / 4);
}
.c-parallelList--four li .c-btn {
  width: auto;
  min-width: 100%;
}
.c-parallelList--four li .c-btn--internal::before {
  position: absolute;
  left: 12px;
}

.c-parallelList--three {
  justify-content: space-between;
  font-size: 1.4rem;
}
.c-parallelList--three li {
  width: calc((100% - 40px) / 3);
}
.c-parallelList--three li a {
  padding: 4px 0;
  text-align: left;
  display: block;
  transition: color 0.3s;
}

/*IE用*/
*::-ms-backdrop,
.c-parallelList--three li {
  width: 31.5%;
}

/*Edge*/
@supports (-ms-ime-align: auto) {
  .c-parallelList--three li {
    width: 31.5%;
  }
}
.c-parallelList--random {
  justify-content: start;
}
.c-parallelList--random li {
  margin: 0 20px 20px 0;
}

@media (max-width: 768px) {
  .c-parallelList--four li {
    width: calc((100% - 20px) / 2);
    margin-top: 20px;
  }
  .c-parallelList--four li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
}
@media (max-width: 480px) {
  .c-parallelList--four li {
    position: relative;
  }
  .c-parallelList--four li .c-btn--internal {
    text-align: center;
  }
  .c-parallelList--three li {
    width: calc((100% - 20px) / 2);
    margin-top: 10px;
  }
  .c-parallelList--three li a {
    padding: 0;
  }
  .c-parallelList--three li a:hover {
    text-decoration: none;
  }
  .c-parallelList--three li:nth-of-type(-n+2) {
    margin-top: 0px;
  }
  .c-parallelList--random {
    flex-direction: column;
  }
  .c-parallelList--random li {
    margin: 0 0 10px 0;
    position: relative;
  }
  .c-parallelList--random li:last-of-type {
    margin-bottom: 20px;
  }
}
/* ==========================================================================
	label
========================================================================== */
.c-label {
  font-weight: bold;
  color: white;
  background-color: #ffce33;
  vertical-align: bottom !important;
}
.c-label--new {
  display: inline-block;
  padding: 1px 5px;
  font-size: 1.2rem;
  border-radius: 11px;
}
.c-label--category {
  display: inline-block;
  padding: 0 10px;
  font-size: 1.4rem;
  border-radius: 10px;
}
.c-label--place {
  display: block;
  text-align: center;
  padding: 1px 0;
  font-size: 1.4rem;
  color: white;
}
.c-label--place--first {
  background-color: #af9423;
}
.c-label--place--second {
  background-color: #9b9a94;
}
.c-label--place--third {
  background-color: #8b6143;
}
.c-label--place--etc {
  background-color: #cccccc;
}
.c-label--info {
  position: relative;
}
.c-label--info::after {
  position: absolute;
  top: 50%;
  right: -3em;
  transform: translateY(-50%);
  content: "\f12a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  text-align: center;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  color: #373d3f;
  background-color: #ffce33;
}

/* ==========================================================================
	lineList
========================================================================== */
.c-lineList > li {
  font-size: 1.4rem;
}
.c-lineList > li > a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
}
.c-lineList > li > a:hover {
  text-decoration: underline;
}
.c-lineList > li + li {
  border-top: #eaedef 1px solid;
}
.c-lineList > li h3 {
  font-weight: normal;
}
.c-lineList > li:last-child {
  border-bottom: #eaedef 1px solid;
}

.c-lineList__info {
  margin-top: 20px;
}
.c-lineList__info--ttl {
  font-weight: bold !important;
  font-size: 1.6rem;
}
.c-lineList__info--text {
  margin-top: 10px;
}
.c-lineList__info--label {
  display: flex;
  flex-direction: row;
  text-align: right;
  margin: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.c-lineList__info--label .c-label--category {
  margin-right: 10px;
  font-weight: bold;
}
.c-lineList__info--label .c-text--date {
  font-weight: initial;
}

@media (max-width: 480px) {
  .c-lineList--data > li > a {
    display: block;
  }
  .c-lineList__info--ttl {
    font-size: 1.4rem;
  }
}
/* ==========================================================================
	modal
========================================================================== */
.c-modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

.c-modal__overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(55, 61, 63, 0.7);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.c-modal__overlay:hover {
  cursor: pointer;
}

.c-modal__content {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  max-height: auto;
  padding: 40px;
  text-align: center;
  background-color: white;
  z-index: 10000;
}
.c-modal__content .c-btnWrap {
  margin-bottom: 0;
}
.c-modal__content .c-btnWrap > li + li {
  margin-top: 20px;
}
.c-modal__content .c-btn {
  max-width: 320px;
}

.c-modal__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

.c-modal__close {
  text-decoration: none;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
  cursor: pointer;
}
.c-modal__close::after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 3rem;
  font-weight: 900;
  content: "\f00d";
  color: #0082c3;
}
.c-modal__close span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1rem;
  font-weight: bold;
  color: #0082c3;
}

@media (max-width: 768px) {
  .c-modal__content {
    max-width: 460px;
  }
}
@media (max-width: 480px) {
  .c-modal__content {
    max-width: 340px;
    padding: 40px 20px 20px;
  }
}
@media (max-width: 320px) {
  .c-modal__content {
    max-width: 300px;
  }
}
/* ==========================================================================
	margin
========================================================================== */
.u-mt--0 {
  margin-top: 0 !important;
}
.u-mt--10 {
  margin-top: 10px;
}
.u-mt--20 {
  margin-top: 20px;
}
.u-mt--30 {
  margin-top: 30px;
}
.u-mt--40 {
  margin-top: 40px;
}
.u-mt--50 {
  margin-top: 50px;
}

.u-mb--0 {
  margin-bottom: 0 !important;
}
.u-mb--10 {
  margin-bottom: 10px;
}
.u-mb--20 {
  margin-bottom: 20px;
}
.u-mb--30 {
  margin-bottom: 30px;
}
.u-mb--40 {
  margin-bottom: 40px;
}
.u-mb--50 {
  margin-bottom: 50px;
}

.u-ml--0 {
  margin-left: 0;
}
.u-ml--10 {
  margin-left: 10px;
}
.u-ml--20 {
  margin-left: 20px;
}
.u-ml--30 {
  margin-left: 30px;
}
.u-ml--40 {
  margin-left: 40px;
}
.u-ml--50 {
  margin-left: 50px;
}

.u-mr--0 {
  margin-right: 0;
}
.u-mr--10 {
  margin-right: 10px;
}
.u-mr--20 {
  margin-right: 20px;
}
.u-mr--30 {
  margin-right: 30px;
}
.u-mr--40 {
  margin-right: 40px;
}
.u-mr--50 {
  margin-right: 50px;
}

/* ==========================================================================
	padding
========================================================================== */
.u-pt--0 {
  padding-top: 0;
}
.u-pt--10 {
  padding-top: 10px;
}
.u-pt--20 {
  padding-top: 20px;
}
.u-pt--30 {
  padding-top: 30px;
}
.u-pt--40 {
  padding-top: 40px;
}
.u-pt--50 {
  padding-top: 50px;
}

.u-pb--0 {
  padding-bottom: 0;
}
.u-pb--10 {
  padding-bottom: 10px;
}
.u-pb--20 {
  padding-bottom: 20px;
}
.u-pb--30 {
  padding-bottom: 30px;
}
.u-pb--40 {
  padding-bottom: 40px;
}
.u-pb--50 {
  padding-bottom: 50px;
}

.u-pl--0 {
  padding-left: 0;
}
.u-pl--10 {
  padding-left: 10px;
}
.u-pl--16 {
  padding-left: 16px;
}
.u-pl--20 {
  padding-left: 20px;
}
.u-pl--24 {
  padding-left: 24px;
}
.u-pl--30 {
  padding-left: 30px;
}
.u-pl--40 {
  padding-left: 40px;
}
.u-pl--50 {
  padding-left: 50px;
}

.u-pr--0 {
  padding-right: 0;
}
.u-pr--10 {
  padding-right: 10px;
}
.u-pr--20 {
  padding-right: 20px;
}
.u-pr--30 {
  padding-right: 30px;
}
.u-pr--40 {
  padding-right: 40px;
}
.u-pr--50 {
  padding-right: 50px;
}

.u-pa--0 {
  padding: 0;
}
.u-pa--10 {
  padding: 10px;
}
.u-pa--20 {
  padding: 20px;
}
.u-pa--30 {
  padding: 30px;
}
.u-pa--40 {
  padding: 40px;
}

/* ==========================================================================
   align
========================================================================== */
.u-ta--c {
  text-align: center !important;
}
.u-ta--l {
  text-align: left !important;
}
.u-ta--r {
  text-align: right;
}

/* ==========================================================================
	infoNew
========================================================================== */
.p-infoNew .c-lineList > li {
  font-size: 1.2rem;
}
.p-infoNew .c-lineList > li > a {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a .c-text--date {
  color: #373d3f;
}
.p-infoNew .c-lineList > li > a:hover {
  text-decoration: none;
}
.p-infoNew .c-lineList > li > a:hover dd, .p-infoNew .c-lineList > li > a:hover div {
  text-decoration: underline;
}
.p-infoNew p {
  font-size: 1.2rem;
  text-align: right;
}
.p-infoNew dd {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}

.p-infoNew__permanent p {
  text-align: left;
}

/* ==========================================================================
	help
========================================================================== */
.p-help .c-heading--sub {
  margin-top: 40px;
}
.p-help > .c-breadcrumb {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-help .c-btn--internal {
  white-space: normal;
  text-align: left;
}
.p-help .c-form__List > dd > div {
  padding: 16px;
}

@media (max-width: 480px) {
  .p-help .c-form--radio {
    display: block;
  }
  .p-help .c-form--radio + .c-form--radio {
    margin-top: 2rem;
    margin-left: 0;
  }
}
.p-help__search--text {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 40px;
}

.p-helpList--result.c-lineList > li > a {
  text-decoration: none;
}
.p-helpList--result.c-lineList > li > a .c-heading {
  margin-top: 16px;
  font-weight: bold;
  font-size: 1.6rem;
  color: #373d3f;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-helpList--result.c-lineList > li > a .c-text {
  margin: 6px 0 10px;
  color: #0082c3;
}
.p-helpList--result.c-lineList > li > a:hover .c-text {
  text-decoration: underline;
}
.p-helpList--main {
  justify-content: flex-start;
}
.p-helpList--main li {
  box-sizing: border-box;
  border-radius: 4px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-right: 20px;
}
.p-helpList--main li:first-of-type, .p-helpList--main li:nth-of-type(2), .p-helpList--main li:nth-of-type(3) {
  margin-top: 0;
}
.p-helpList--main li:nth-of-type(3n) {
  margin-right: 0;
}
.p-helpList--main li a {
  box-sizing: border-box;
  border-radius: 4px;
  background-color: white;
  border: 1px solid #0082c3;
  color: #0082c3;
  font-weight: bold;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 10px 20px 30px;
  overflow: hidden;
  position: relative;
}
.p-helpList--main li a:hover {
  opacity: initial;
  background-color: #0082c3;
  text-decoration: none;
  color: white;
}
.p-helpList--main li a:hover::before {
  color: white;
}
.p-helpList--main li .c-linkArrow::before {
  color: #0082c3;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.p-helpList--sub li {
  box-sizing: border-box;
  border-radius: 4px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-helpList--sub li:first-of-type, .p-helpList--sub li:nth-of-type(2), .p-helpList--sub li:nth-of-type(3) {
  margin-top: 0;
}
.p-helpList--sub li:nth-of-type(3n) {
  margin-right: 0;
}
.p-helpList--sub li a {
  box-sizing: border-box;
  border-radius: 4px;
  background-color: white;
  border: 1px solid #91a1a6;
  color: #91a1a6;
  font-weight: bold;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 10px 20px 30px;
  overflow: hidden;
  font-size: 1.6rem;
  position: relative;
}
.p-helpList--sub li a:hover {
  opacity: initial;
  background-color: #91a1a6;
  text-decoration: none;
  color: white;
}
.p-helpList--sub li a:hover::before {
  color: white;
}
.p-helpList--sub .c-linkArrow::before {
  color: #91a1a6;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

*::-ms-backdrop, .p-helpList--main li {
  margin-right: 2.75%;
}

@supports (-ms-ime-align: auto) {
  .p-helpList--main li {
    margin-right: 2.75%;
  }
}
.p-help__serviceList {
  font-size: 1.4rem;
}
.p-help__serviceList ul li {
  margin-right: 10px;
  display: inline;
  width: 100%;
}
.p-help__serviceList ul li:not(:last-of-type)::after {
  color: #91a1a6;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}

.p-help-serviceList-note-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: normal;
}

.p-help__url .c-flex,
.p-help__questionWrap .c-flex {
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  padding-right: 2rem;
}
.p-help__url .c-form__required + .p-help__question,
.p-help__questionWrap .c-form__required + .p-help__question {
  margin-left: 1.4rem;
}

.p-help__ttl {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}

.p-help__question {
  position: relative;
  width: 28px;
  height: 28px;
}
.p-help__question:hover {
  cursor: pointer;
}
.p-help__question:hover > span {
  visibility: visible;
  opacity: 1;
  font-style: initial;
}
.p-help__question::before {
  font-style: initial;
  content: "\f128";
  font-family: "Font Awesome 5 Free";
  font-size: 1.8rem;
  font-weight: 900;
  color: #373d3f;
  transition: color 0.3s;
  line-height: 1;
  background-color: #ffce33;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
}
.p-help__question > span {
  border-radius: 4px;
  box-sizing: border-box;
  position: absolute;
  width: 300px;
  font-size: 1.4rem;
  padding: 10px 20px;
  background-color: #0082c3;
  color: white;
  font-weight: initial;
  bottom: 50px;
  left: -35px;
  opacity: 0;
  transition: color 0.3s;
  visibility: hidden;
  z-index: 1000;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.p-help__question > span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #0082c3;
  position: absolute;
  left: 35px;
  bottom: -20px;
}

.p-help__detail .c-heading--main {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}
.p-help__detail .c-text {
  margin: 20px 0;
}
.p-help__detail--image {
  box-sizing: border-box;
  margin: 40px auto;
  text-align: center;
}
.p-help__detail--image > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.p-help__detail .c-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  /*Chrome用*/
  overflow: hidden;
}

.p-help__detail__feedback {
  margin-top: 65px;
  text-align: center;
}
.p-help__detail__feedback ul {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}
.p-help__detail__feedback ul .c-btn {
  width: 140px;
  height: 60px;
}
.p-help__detail__feedback ul .c-btn:first-of-type {
  margin-right: 12px;
}

.p-help__banner {
  box-sizing: border-box;
  text-align: center;
  margin-top: 10px;
}
.p-help__banner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.p-help__banner a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.p-help__side .c-lineList > li {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .p-help .c-heading--sub {
    margin-top: 20px;
  }
  .p-help__search--text {
    font-size: 1.6rem;
    margin-top: 20px;
  }
  .p-helpList--main {
    display: flex;
    flex-direction: column;
  }
  .p-helpList--main li {
    width: 100%;
    height: auto;
    min-height: 48px;
    border-radius: 5px;
    margin: 0 0 14px 0;
  }
  .p-helpList--main li a {
    background-color: white;
    color: #0082c3;
    font-size: 1.4rem;
    justify-content: flex-start;
    padding: 10px 10px 10px 40px;
    text-align: left;
  }
  .p-helpList--main li:nth-of-type(4), .p-helpList--main li:nth-of-type(5) {
    margin-top: initial;
  }
  .p-helpList--sub {
    display: flex;
    flex-direction: column;
  }
  .p-helpList--sub li {
    border-radius: 4px;
    width: 100%;
    height: auto;
    min-height: 48px;
    margin: 0 0 14px 0;
  }
  .p-helpList--sub li a {
    background-color: white;
    color: #91a1a6;
    font-weight: bold;
    justify-content: flex-start;
    padding: 10px 10px 10px 40px;
    text-align: left;
  }
  .p-helpList--sub li a::after {
    color: white;
    position: absolute;
    right: 10px;
    top: 14px;
  }
  .p-helpList--main li .p-helpList--sub li {
    position: relative;
  }
  .p-helpList--main li .c-linkArrow::before,
  .p-helpList--sub li .c-linkArrow::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .p-help__serviceList {
    font-size: 1.4rem;
  }
  .p-help__detail--image {
    margin: 20px auto;
  }
  .p-help__detail__feedback {
    margin-top: 40px;
  }
  .p-help__btnReverse.c-form__btn--double {
    flex-direction: column-reverse;
  }
  .p-help__url .c-flex,
  .p-help__questionWrap .c-flex {
    padding-right: 0;
  }
  .p-help__question .js-open {
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 480px) {
  .p-help__question > span {
    left: 0;
  }
  .p-help__question > span::after {
    left: 10px;
  }
}
@media (max-width: 320px) {
  .p-help__question > span {
    font-size: 1.4rem;
    max-width: 240px;
  }
}
/* //////////////////////////////////////////////////////////////////////////
   Component
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Utility
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Project
////////////////////////////////////////////////////////////////////////// */
/*# sourceMappingURL=../../maps/help/service/detail.css.map */