@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;
  }
}
/* ==========================================================================
	keyVisual
========================================================================== */
.c-keyVisual {
  box-sizing: border-box;
  width: calc(100% + 40px);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto -20px;
  height: 400px;
  display: flex;
  align-items: center;
}
.c-keyVisual__inner--bg {
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  background-color: rgba(55, 61, 63, 0.3);
  width: 100%;
  padding: 0 60px;
}
.c-keyVisual__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.c-keyVisual__ttl {
  opacity: 1;
  font-size: 3rem;
  color: white;
  width: 500px;
}
.c-keyVisual__ttl small {
  display: block;
  font-size: 2.2rem;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.c-keyVisual__text {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  width: 500px;
}

@media (max-width: 320px) {
  .c-keyVisual {
    background-position: 80% center;
  }
}
/* ==========================================================================
	alignment
========================================================================== */
.c-alignment {
  text-indent: -1em;
  padding-left: 1em;
}
.c-alignment--asterisk::before {
  content: "※";
}
.c-alignment--asteriskNum {
  counter-increment: number;
  text-indent: -2em;
  padding-left: 2em;
}
.c-alignment--asteriskNum::before {
  margin-right: 0.5em;
  content: "※" counter(number) "";
}
.c-alignment--disc::before {
  content: "・";
}
.c-alignment--num {
  counter-increment: number;
  text-indent: -2em;
  padding-left: 2em;
}
.c-alignment--num::before {
  margin-right: 0.5em;
  content: counter(number) ".";
}

/* ==========================================================================
	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;
}

/* ==========================================================================
   font
========================================================================== */
.u-fw--b {
  font-weight: bold;
}
.u-fw--n {
  font-weight: normal;
}
.u-fw--100 {
  font-weight: 100;
}
.u-fw--200 {
  font-weight: 200;
}
.u-fw--300 {
  font-weight: 300;
}
.u-fw--400 {
  font-weight: 400;
}
.u-fw--500 {
  font-weight: 500;
}

.u-fs--10 {
  font-size: 1rem;
}
.u-fs--12 {
  font-size: 1.2rem;
}
.u-fs--14 {
  font-size: 1.4rem;
}
.u-fs--16 {
  font-size: 1.6rem;
}
.u-fs--18 {
  font-size: 1.8rem;
}

/* ==========================================================================
	about
========================================================================== */
.p-about .c-keyVisual {
  background-position: right 82%;
  background-image: url("../../../images/static/about/about_kv.png?tm=20190207");
}
.p-about .c-keyVisual__inner--bg {
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  background-color: rgba(55, 61, 63, 0.3);
  width: 100%;
  padding: 0 60px;
}
.p-about .c-keyVisual__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.p-about .c-keyVisual__ttl {
  opacity: 1;
  font-size: 3rem;
  color: white;
  width: 500px;
}
.p-about .c-keyVisual__ttl small {
  display: block;
  font-size: 2.2rem;
  border-bottom: 2px solid white;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.p-about .c-keyVisual__text {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  width: 500px;
}
.p-about > .c-breadcrumb {
  max-width: 1200px;
  width: 100%;
  margin-right: initial;
}
.p-about .c-text--notation span {
  margin-left: 10px;
}

.p-about__declarationa {
  box-sizing: border-box;
  width: calc(100% + 40px);
  position: relative;
  margin: auto -20px;
  background-color: #eff6fa;
  font-weight: bold;
}
.p-about__declarationa-inner {
  display: flex;
  flex-direction: row-reverse;
}
.p-about__declarationa--img {
  width: 50%;
  opacity: 0.9;
  overflow: hidden;
}
.p-about__declarationa--bg {
  background-image: url("../../../images/static/about/about_declarationa.png?tm=20190207");
  height: 100%;
  transform: skew(-30deg);
  background-size: cover;
  background-position: right center;
  display: block;
}
.p-about__declarationa--text {
  margin: 50px 120px 50px 0;
}
.p-about__declarationa h2 {
  font-size: 3.4rem;
}
.p-about__declarationa ol {
  font-weight: normal;
  margin-top: 20px;
}
.p-about__declarationa ol .c-alignment--num {
  padding: 3px;
  font-size: 1.8rem;
  text-indent: 0;
}

.p-about__lineList--inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  text-align: justify;
}
.p-about__lineList--inner:last-of-type .p-about__lineList--inner--icon > img {
  width: 110px;
  max-width: 110px;
}
.p-about__lineList--inner--icon {
  box-sizing: border-box;
  width: 260px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #f4b62c;
  border-radius: 4px;
  margin-right: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #707c80;
  flex-direction: column;
  flex-wrap: wrap;
}
.p-about__lineList--inner--icon > img {
  width: 80px;
  max-width: 80px;
  color: #f4b62c;
}
.p-about__lineList--inner--icon span {
  margin-top: 15px;
}
.p-about__lineList--inner--subMenu {
  width: calc(100% - 280px);
}
.p-about__lineList--inner--subMenu h3 {
  font-size: 2rem;
}
.p-about__lineList--inner--subMenu .c-lineList {
  margin-top: 20px;
}
.p-about__lineList--inner--subMenu .c-lineList > li {
  font-size: 1.6rem;
}
.p-about__lineList--inner--subMenu .c-lineList > li:last-of-type {
  border-bottom: none;
}

.p-about__btn--double {
  display: flex;
  margin: 40px auto;
  justify-content: center;
}
.p-about__btn--double .c-btn {
  width: 360px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.p-about__btn--double .c-btn:hover::before {
  color: white;
}
.p-about__btn--double > li:first-of-type {
  margin-right: 40px;
}

@media (min-width: 1200px) {
  .p-about__declarationa--text {
    margin: 50px 120px 50px 0;
  }
}
@media (max-width: 768px) {
  .p-about .c-keyVisual {
    margin: 0;
    background-position: 65% 82%;
  }
  .p-about .c-keyVisual__ttl {
    font-size: 2.4rem;
    width: 100%;
  }
  .p-about .c-keyVisual__ttl small {
    display: block;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .p-about .c-keyVisual__text {
    width: 100%;
  }
  .p-about .c-text--notation span {
    display: block;
    margin-left: 0;
  }
  .p-about__declarationa {
    box-sizing: border-box;
    width: 100vw;
    position: relative;
    margin: auto -20px;
    background-color: #eff6fa;
    margin: 0;
  }
  .p-about__declarationa-inner {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
  .p-about__declarationa--img {
    display: none;
  }
  .p-about__declarationa--text {
    margin: 40px 10px;
    text-align: center;
  }
  .p-about__declarationa h2 {
    font-size: 3.4rem;
  }
  .p-about__declarationa ol {
    margin-top: 20px;
  }
  .p-about__declarationa ol li {
    text-align: left;
    padding: 3px;
    font-size: 1.6rem;
  }
  .p-about__lineList--inner {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  .p-about__lineList--inner:last-of-type .p-about__lineList--inner--icon > img {
    width: auto;
  }
  .p-about__lineList--inner--icon {
    width: 100%;
    height: 160px;
    margin-right: 0;
    font-size: 1.4rem;
  }
  .p-about__lineList--inner--icon img {
    width: auto;
  }
  .p-about__lineList--inner--subMenu {
    margin-top: 20px;
    width: 100%;
  }
  .p-about__lineList--inner--subMenu h3 {
    font-size: 1.6rem;
    color: #373d3f;
  }
  .p-about__lineList--inner--subMenu .c-lineList {
    margin-top: 20px;
  }
  .p-about__lineList--inner--subMenu .c-lineList > li {
    font-size: 1.4rem;
  }
  .p-about__lineList--inner--subMenu .c-lineList > li:last-of-type {
    border-bottom: none;
  }
  .p-about__btn--double {
    display: flex;
    margin: 10px auto;
    justify-content: center;
    flex-direction: column;
  }
  .p-about__btn--double .c-btnWrap {
    margin: 10px 0;
  }
  .p-about__btn--double .c-btn {
    width: 100%;
    height: 80px;
    font-size: 1.6rem;
  }
  .p-about__btn--double > li:first-of-type {
    margin-right: initial;
  }
}
@media (max-width: 480px) {
  .p-about .c-keyVisual {
    width: 100%;
    height: 360px;
    background-position: center center;
    background-image: url("../../../images/static/about/about_kv_sp.png?tm=20190207");
  }
  .p-about .c-keyVisual__inner--bg {
    display: block;
    padding: 20px;
  }
  .p-about .c-keyVisual__ttl {
    width: 100%;
    margin-top: 10px;
    font-size: 2rem;
    line-height: 1.8;
  }
  .p-about .c-keyVisual__ttl small {
    display: block;
    font-size: 1.4rem;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .p-about .c-keyVisual__text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .p-about__lineList--inner--icon {
    height: 100px;
    flex-direction: row;
  }
  .p-about__lineList--inner--icon > img {
    max-height: 50px;
    margin-right: 18px;
  }
  .p-about__lineList--inner--icon span {
    margin-top: 0;
    font-size: 2rem;
  }
}
@media (max-width: 320px) {
  .p-about .c-keyVisual__inner--bg {
    padding: 0px 20px;
  }
  .p-about .c-keyVisual__ttl {
    font-size: 2rem;
    width: 100%;
  }
  .p-about .c-keyVisual__ttl small {
    display: block;
    font-size: 1.4rem;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .p-about__declarationa ol {
    margin-left: 10px;
  }
}
/* //////////////////////////////////////////////////////////////////////////
   Component
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Utility
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Plugin
////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////////////
   Project
////////////////////////////////////////////////////////////////////////// */
/*# sourceMappingURL=../maps/about-kenkey/detail.css.map */