@charset "UTF-8";
/*==========================================================================
 Foundation
==========================================================================*/
/*! minireset.css v0.0.3 | MIT License | github.com/jgthms/minireset.css
*/
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

ol {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  /*line-height: 1*/
}

img, embed, iframe, object, audio, video {
  /* height: auto; */
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
  color: #000;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
  color: #007acc;
  text-decoration: none;
}

button {
  vertical-align: middle;
  padding: 0;
  outline: none;
  border: 0;
  background: none;
  cursor: pointer;
}

button:hover {
  opacity: .7;
}

input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  color: #333;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.4;
  border: none;
  outline: none;
  width: 100%;
  max-width: 100%;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  visibility: hidden;
}

:placeholder-shown {
  color: #ccc;
}

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

/*==========================================================================
 Layout
==========================================================================*/
.l-page_header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  line-height: 1;
}
.no_fixed.l-page_header {
  position: unset;
}

.l-page_header_contents {
  display: flex;
  justify-content: space-between;
  height: 50px;
  background: #00335a;
  position: relative;
  z-index: 99;
}

.l-page_header_contents__search_btn {
  width: 50px;
  background: url(/images/sp/icon/search_white.svg) no-repeat center;
  background-size: 18px 18px;
  transition: background .2s ease-out;
}

.l-page_header_contents__title {
  display: flex;
  align-items: center;
}

.l-page_header_contents__mainmenu_btn {
  width: 50px;
  cursor: pointer;
  position: relative;
  padding-top: 23px;
  padding-left: 17px;
}

.l-page_header_contents__mainmenu_btn span {
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  position: relative;
}

.l-page_header_contents.is-custom_carme {
  background: #F2F2F2;
}

.l-page_header_contents.is-custom_carme .l-page_header_contents__search_btn {
  background: url(/images/sp/icon/search_blue.svg) no-repeat center;
}

.l-page_header_contents.is-custom_carme .l-page_header_contents__mainmenu_btn span {
  background: #00335a;
}

.is-open_search .l-page_header_contents__search_btn {
  background: url(/images/sp/icon/close_white.svg) no-repeat center;
  background-size: 13px 13px;
}

.is-open_search .is-custom_carme .l-page_header_contents__search_btn {
  background: url(/images/sp/icon/close_blue.svg) no-repeat center;
}

@keyframes sp_buttonbar-top {
  0% {
    transform: translateY(0px) rotate(-405deg);
  }
  100% {
    transform: translateY(-3px) rotate(0deg);
  }
}

@keyframes sp_buttonbar-top-close {
  0% {
    transform: translateY(-3px) rotate(0deg);
  }
  100% {
    transform: translateY(0px) rotate(-405deg);
  }
}

@keyframes sp_buttonbar-center {
  0% {
    width: 0px;
    transform: translateX(16px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}

@keyframes sp_buttonbar-center-close {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  100% {
    width: 0px;
    transform: translateX(16px);
  }
}

@keyframes sp_buttonbar-bottom {
  0% {
    transform: translateY(-2px) rotate(405deg);
  }
  100% {
    transform: translateY(3px) rotate(0deg);
  }
}

@keyframes sp_buttonbar-bottom-close {
  0% {
    transform: translateY(3px) rotate(0deg);
  }
  100% {
    transform: translateY(-2px) rotate(405deg);
  }
}

.l-page_header_contents__mainmenu_btn span:nth-child(1) {
  animation: sp_buttonbar-top .2s;
  animation-fill-mode: forwards;
}

.l-page_header_contents__mainmenu_btn span:nth-child(2) {
  animation: sp_buttonbar-center .2s;
  animation-fill-mode: forwards;
}

.l-page_header_contents__mainmenu_btn span:nth-child(3) {
  animation: sp_buttonbar-bottom .2s;
  animation-fill-mode: forwards;
}

.is-open_menu .l-page_header_contents__mainmenu_btn span:nth-child(1) {
  animation: sp_buttonbar-top-close .2s;
  animation-fill-mode: forwards;
}

.is-open_menu .l-page_header_contents__mainmenu_btn span:nth-child(2) {
  animation: sp_buttonbar-center-close .2s;
  animation-fill-mode: forwards;
}

.is-open_menu .l-page_header_contents__mainmenu_btn span:nth-child(3) {
  animation: sp_buttonbar-bottom-close .2s;
  animation-fill-mode: forwards;
}

.l-page_header__overlay {
  position: fixed;
  z-index: 98;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-out;
}

.is-open_menu .is-overlay_menu, .is-open_search .is-overlay_search {
  visibility: visible;
  opacity: 1;
}

.l-page_header__mainmenu {
  position: fixed;
  right: -310px;
  top: 0;
  background: #fff;
  width: 300px;
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  transition: right .2s ease-out;
}

.is-open_menu .l-page_header__mainmenu {
  right: 0;
}

.l-page_header__mainmenu__menu {
  padding-top: 50px;
  padding-bottom: 100px;
}

.l-page_header__mainmenu__menu dt {
  background: #F2F2F2;
  padding: 0.8rem;
  color: #666;
  font-size: 1.2rem;
}

.l-page_header__mainmenu__menu dd {
  padding: 0 1.6rem;
}

.l-page_header__mainmenu__menu dd a {
  display: block;
  padding: 1.6rem 0;
  color: #00335a;
  border-bottom: 1px solid #E4E4E4;
}

.l-page_header__mainmenu__menu dd a[target="_blank"]::after {
  content: "";
  background: url(/images/icon/icon_blank.svg) no-repeat right center;
  background-size: 16px 16px;
  padding-top: .1rem;
  padding-right: 2.1rem;
}

.l-page_header__mainmenu__menu dd a span {
  font-size: 1.2rem;
  color: #999;
}

.l-page_header__mainmenu__customcarme_menu {
  padding-top: 50px;
}

.l-page_header__mainmenu__customcarme_menu li {
  padding: 0 1.6rem;
}

.l-page_header__mainmenu__customcarme_menu li a {
  display: block;
  padding: 1.6rem 0;
  color: #00335a;
  border-bottom: 1px solid #E4E4E4;
}

.l-page_header__mainmenu__customcarme_menu__linktop {
  display: block;
  background: #F2F2F2;
  padding: 1.6rem;
  font-size: 1.4rem;
  color: #00335a;
}

.l-page_header__search {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  background: #F2F2F2;
  border-radius: 10px;
  padding: 1.6rem;
  transition: margin-top .3s ease-out;
}

.l-page_header__search__title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.6rem;
}

.l-page_header__search__input {
  background: #fff;
  border: 1px solid #E4E4E4;
  border-radius: 20px;
  display: flex;
  padding: 0.8rem 0 0.8rem 1.6rem;
}

.l-page_header__search__input input[type="text"] {
  flex: 1;
}

.l-page_header__search__input button {
  width: 40px;
}

.l-page_header__search__input button img {
  width: 18px;
  height: 18px;
}

.is-open_search .l-page_header__search {
  margin-top: 80px;
}

.is-open_search .l-page_header_contents__mainmenu_btn, .is-open_menu .l-page_header_contents__search_btn {
  visibility: hidden;
}

.l-page_contents {
  padding-top: 2.4rem;
  padding-bottom: 9.6rem;
  padding-bottom: 6.4rem;
  word-break: break-all;
}

.l-page_contents.is-no_paddingtop {
  padding-top: 0;
}

.l-page_footer {
  line-height: 1;
}

.l-page_footer__btn_to_top {
  position: fixed;
  right: 0;
  bottom: 40px;
  transition: all .4s;
  z-index: 50;
  opacity: 0;
}

.l-page_footer__btn_to_top.is-show {
  opacity: 1;
  bottom: 70px;
}

.l-page_footer__btn_to_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00335a;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.l-page_footer__btn_to_top a img {
  width: 24px;
  height: 13px;
}

.l-page_footer__site_menu_title {
  text-align: center;
  background-color: #E5E5E5;
  color: #666;
  font-size: 1.2rem;
  font-weight: bold;
  padding: .6rem 1.5rem;
}

.l-page_footer__site_menu, .l-page_footer__sub_menu {
  background: #F5F5F5;
}

.l-page_footer__site_menu ul, .l-page_footer__sub_menu ul {
  display: flex;
  flex-wrap: wrap;
}

.l-page_footer__site_menu ul li, .l-page_footer__sub_menu ul li {
  width: 50%;
  border-bottom: 1px solid #E5E5E5;
}

.l-page_footer__sub_menu ul li:nth-child(5) {
  border-bottom: none;
}
.l-page_footer__site_menu ul li:nth-child(odd), .l-page_footer__sub_menu ul li:nth-child(odd) {
  border-right: 1px solid #E5E5E5;
}

.l-page_footer__site_menu ul li a, .l-page_footer__sub_menu ul li a {
  display: flex;
  color: #666;
  font-size: 1.2rem;
  padding: 1.6rem;
}

.l-page_footer__sub_menu {
  background: #DDDDDD;
}

.l-page_footer_listed{
	display: flex;
	align-items: center;
  justify-content: center;
	font-size: 1.2rem;
	line-height: 1.6;
	padding: 2rem 1.5rem;
}

.l-page_footer_listed img {
  margin-right: 1.6rem;
}

.l-page_footer__poweredby {
  color: #748FA5;
  font-size: 1.2rem;
  text-align: center;
}

.l-page_footer__poweredby img {
  width: 75px;
  height: 14px;
  vertical-align: middle;
}

.l-page_footer__copyright {
  background-color: #f5f5f5;
  color: #666;
  font-size: 1.2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

/*==========================================================================
 Object
==========================================================================*/
/*============ Component ============*/
.c-page_title {
  padding: 0 1.6rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

.c-title_subinfo {
  display: block;
  color: #999;
  font-weight: normal;
  font-size: 1.4rem;
  margin-top: .5rem;
}

.c-page_title_plusimage {
  width: 100%;
  height: 56vw;
  display: block;
  background: #F1F5FA;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.c-page_title_plusimage img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.c-page_title_pluslogo {
  text-align: center;
  padding-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.c-page_title_pluslogo img {
  max-width: 300px;
}

.c-title_2 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.c-title_3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.c-list_disc > li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.8rem;
}

.c-list_disc > li:before {
  content: "●";
  margin-right: .4em;
}

.c-list_decimal {
  counter-reset: list_count;
  margin-left: 0;
}

.c-list_decimal > li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8rem;
}

.c-list_decimal > li::before {
  content: counter(list_count) ".";
  counter-increment: list_count;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5em;
}

.c-btn_primary {
  display: block;
  background: #ECF1F7;
  padding: 0.8rem;
  font-size: 1.4rem;
  text-align: center;
  color: #00335a;
  line-height: 1.2;
}

.c-btn_primary::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url(/images/sp/icon/arrow_right_blue.svg) no-repeat center;
  background-size: 8px 14px;
  margin-left: 0.8rem;
}

.c-btn_primary.c-btn_primary_down::after {
  width: 15px;
  height: 8px;
  background: url(/images/sp/icon/arrow_down_blue.svg) no-repeat center;
  background-size: 15px 8px;
}

.c-tab_btn {
  display: flex;
  width: 100%;
  line-height: 1;
}

.c-tab_btn li {
  flex: 1;
}

.c-tab_btn li a {
  display: flex;
  justify-content: center;
  border-top: 1px solid #00335a;
  border-bottom: 1px solid #00335a;
  color: #00335a;
  font-size: 1.4rem;
  padding: 1.6rem;
  position: relative;
}

.c-tab_btn li a.is-active {
  background: #00335a;
  color: #fff;
  pointer-events: none;
}

.c-tab_btn li a.is-active::after {
  content: "";
  display: block;
  width: 15px;
  height: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  background: url(/images/sp/icon/arrow_tab_btn.svg) no-repeat center;
  background-size: 15px 8px;
}

.c-btn_l {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 1.6rem;
  background: #00335a;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  border-radius: 7px;
}

.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.6rem;
}

.c-pager__next > *, .c-pager__prev > * {
  display: flex;
  align-items: center;
  padding: 1.0em 1.2em;
  border: 1px solid #E4E4E4;
  background: #00335a;
  border-radius: 6px;
  color: #FFF;
  font-weight: bold;
}

.c-pager__next > *::after, .c-pager__prev > *::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(/images/sp/icon/arrow_right_white.svg) no-repeat center;
  background-size: 6px 10px;
}

.c-pager__next > *::after {
  margin-left: 0.8rem;
}

.c-pager__prev > *::before {
  transform: rotate(180deg);
  margin-right: 0.8rem;
}

.c-pager__next > span, .c-pager__prev > span {
  opacity: .5;
}

.c-pager__num {
  min-width: 7em;
  color: #00335a;
  padding: 0.8rem;
  text-align: center;
}

.c-banner_common {
  display: inline-block;
  line-height: 1;
  width: 300px;
  max-width: 100%;
  border: 1px solid #f2f2f2;
}

.c-banner_common img {
  width: 690px;
  height: auto;
}

.c-article_kaitori_cta_tell {
  text-align: center;
  margin: 2.5rem 0 0;
  background-color: #ffffff;
  box-sizing: border-box;
  border: solid 3px #cccccc;
  font-size: 16px;
}
.c-article_kaitori_cta_tell_bottom {
  margin: 25px 10px 0!important;
}
.c-article_kaitori_cta_tell > div {
  display: inline-block;
  margin: 15px auto;
}
.c-article_kaitori_cta_tell_title {
  font-weight: bold;
  font-size: 16px;
  background-image: url("/kaitori/images/kaitori/pc/common/icon_tel.png");
  background-size: 16px 18px;
  background-repeat: no-repeat;
  background-position: 0;
  padding: 0 0 0 18px;
}
.c-article_kaitori_cta_tell_link {
  font-size: 16px;
  line-height: 1;
  margin: 15px 0;
}
.c-article_kaitori_cta_tell_text {
  font-size: 14px;
}

.c-breadcrumb {
  font-size: 1.3rem;
  margin: 0 auto 20px;
  margin-top: 64px;
  margin-bottom: 32px;
  border-top: solid 1px #E4E4E4;
  border-bottom: solid 1px #E4E4E4;
}

.c-breadcrumb ol {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

.c-breadcrumb ol li {
  font-size: 1.3rem;
  line-height: 1;
  white-space: nowrap;
}

.c-breadcrumb ol li:not(:first-child) {
  margin-left: 1.6rem;
}

.c-breadcrumb li:not(:last-child):after {
  content: "";
  display: inline-block;
  background: url(/images/pc/common/breadcrumb_arrow.svg) no-repeat right center;
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
}

.c-breadcrumb ol li a {
  color: #666;
  padding-right: 1.6rem;
}

.p-author_box,
.p-pro_box {
  align-items: center;
  border: 3px solid #E4E4E4;
  padding: 0.8rem;
}

.p-author_box_flex,
.p-pro_box_flex {
  display: flex;
  flex-direction: row-reverse;
}

.p-author_box a,
.p-pro_box a {
  color: inherit;
}

.p-author_box__image {
  width: 80px;
  height: 80px;
  margin-right: 1.6rem;
  border-radius: 50%;
  display: block;
  background: #F1F5FA;
  position: relative;
  overflow: hidden;
}

.p-pro_box__image {
  width: 100px;
  height: 100px;
  margin-right: 1.6rem;
  display: block;
  background: #F1F5FA;
  position: relative;
  overflow: hidden;
}

.p-author_box__image img,
.p-pro_box__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  height: 100%;
}

.p-author_box__text,
.p-pro_box__text {
  flex: 1;
}

.p-author_box__text__name {
  font-weight: bold;
  line-height: 1.4;
}

.p-pro_box__text__name {
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.4;
  height: 100px;
}

.p-author_box__text__summary {
  color: #999;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 0.8rem;
}

.p-pro_box__text__summary {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 0.8rem;
}

.p-author_box__text .ellipsis,
.p-pro_box .ellipsis {
  height: 55px;
  overflow: hidden;
  position: relative;
}

.p-author_box__text .ellipsis:after,
.p-pro_box.ellipsis:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, .5) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 2;
}

.p-author_box .author_readmore_btn,
.p-pro_box .pro_readmore_btn {
  display: block;
  content: "";
  height: 30px;
  width: 100%;
  background: url(/images/sp/icon/arrow_down_gray.svg) no-repeat center;
  cursor: pointer;
}

.p-author_box.is-company .p-author_box__image {
  border-radius: 0;
}

.p-article_list.is-nobordertop, .p-article_list--ranking.is-nobordertop {
  border-top: none;
}

.p-article_list__item, .p-article_list--ranking__item {
  display: block;
  color: inherit;
  padding: 1.6rem 0;
  border-bottom: 1px solid #E4E4E4;
}

.p-article_list__item article, .p-article_list--ranking__item article {
  display: flex;
  flex-direction: row-reverse;
  line-height: 1;
}

.p-article_list__item__image, .p-article_list--ranking__item__image {
  width: 64px;
  height: 64px;
  margin-right: 1.6rem;
  display: block;
  background: #F1F5FA;
  position: relative;
  overflow: hidden;
}

.p-article_list__item__image img, .p-article_list--ranking__item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  height: 100%;
}

.p-article_list__item__text, .p-article_list--ranking__item__text {
  flex: 1;
}

.p-article_list__item__text__title, .p-article_list--ranking__item__text__title {
  font-weight: bold;
  line-height: 1.2;
}

.p-article_list__item__text__title__time, .p-article_list--ranking__item__text__title__time {
  display: block;
  color: #00335a;
}

.p-article_list__item__text__date, .p-article_list--ranking__item__text__date {
  color: #999;
  font-size: 1.4rem;
  margin-top: 0.8rem;
}

.p-article_list--ranking {
  counter-reset: ranking_count;
}

.p-article_list--ranking .p-article_list__item article {
  position: relative;
}

.p-article_list--ranking .p-article_list__item article::before {
  content: counter(ranking_count);
  counter-increment: ranking_count;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 1.1rem;
  color: #fff;
  background: #00335a;
  border-radius: 50%;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.p-article_list--ranking .p-article_list__item.is-pr article::before {
  content: "PR";
}

.p-article_list--ranking .p-article_list__item:nth-child(1) article::before {
  background: #D5A417;
}

.p-article_list--ranking .p-article_list__item:nth-child(2) article::before {
  background: #7A7576;
}

.p-article_list--ranking .p-article_list__item:nth-child(3) article::before {
  background: #85612F;
}

.p-article_list_largeimage__item {
  display: block;
  color: inherit;
  margin-bottom: 3.2rem;
}

.p-article_list_largeimage__item__head {
  position: relative;
  margin-bottom: 0.8rem;
}

.p-article_list_largeimage__item__head__image {
  width: 100%;
  height: 56vw;
  display: block;
  background: #F1F5FA;
  position: relative;
  overflow: hidden;
}

.p-article_list_largeimage__item__head__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.p-article_list_largeimage__item__head::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 51, 90, 0) 0%, #00335a 100%);
}

.p-article_list_largeimage__item__head__title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 1.6rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  z-index: 3;
}

.p-article_list_largeimage__item__summary {
  line-height: 1.4;
}

.p-article_list__ad {
  min-height: 64px;
}

.p-article_textstrong {
  font-weight: bold;
}

/* .p-article_list_largeimage__item__summary::after {
  todo remove ...
  content: "...";
} */

.p-social_btn_list {
  display: flex;
  line-height: 1;
  min-height: 2.8rem;
}

.p-social_btn_list li {
  display: flex;
  margin-right: 0.8rem;
}

.p-social_btn_list li:last-child {
  margin-right: 0;
}


.p-tag_link_list {
  display: flex;
  flex-wrap: wrap;
}

.p-tag_link_list li {
  line-height: 1;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem;
}

.p-tag_link_list li a {
  display: block;
  padding: .5em 1.2em;
  color: #999;
  font-size: 1.4rem;
  background: #FAFAFA;
  border: 1px solid #E4E4E4;
  border-radius: 20px;
}

.p-tag_link_list li a:hover {
  opacity: 1;
  background: #E4E4E4;
}

.p-tag_link_list li a.p-tag_link_list_brank {
  position: relative;
  padding-right: 40px;
}

.p-tag_link_list_brank::after {
  content: "";
  width: 20px;
  height: 16px;
  background: url(/images/blank.png) no-repeat;
  background-size: 20px 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
}

.p-article_search_box {
  background: #F2F2F2;
  padding: 1.6rem 3.2rem;
}

.p-article_search_box .search_keyword {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 30px;
  padding-left: 18px;
  padding-right: 12px;
}

.p-article_search_box .search_keyword input[type="text"] {
  font-size: inherit;
  height: 40px;
  line-height: 40px;
}

.p-article_search_box .search_keyword button {
  width: 40px;
}

.p-article_search_box .search_keyword button img {
  width: 18px;
  height: 18px;
}

.p-block_youtube {
  margin-bottom: 1.5rem;
}

.p-block_youtube .youtube_wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.p-block_youtube .youtube_wrap .carprime {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-block_youtube{
  aspect-ratio: 16/9;
  overflow: hidden;
}

.p-block_youtube iframe{
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.s-block_youtube{
  aspect-ratio: 16/9;
  overflow: hidden;
}

.s-block_youtube iframe{
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.p-mh250 {
  min-height: 250px;
}
.p-inquiry_list h2 {
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.p-inquiry_list p {
  margin-bottom: 3.2rem;
}

.p-sns_container {
  background: #F2F2F2;
  padding: 1.6rem;
  margin-bottom: 6.4rem;
}
.p-sns_container dt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: .8rem;
}
.p-sns_container .btn_list {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: .4rem;
  align-self: stretch;
  flex-wrap: wrap;
}
.p-sns_container dd {
  gap: .4rem;
}
.p-sns_container a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #DDD;
  background: #FFF;
  color: #000;
  font-size: 1.4rem;
  height: 36px;
  padding: .8rem 1.2rem;
  gap: 1rem;
}
.p-sns_container .long dd:last-child a {
  padding: .8rem .57rem;
}
.p-sns_container a.tw:before,
.p-sns_container a.fa:before,
.p-sns_container a.yo:before,
.p-sns_container a.in:before,
.p-sns_container a.li:before {
  content: "";
  width: 20px;
  height: 20px;
}
.p-sns_container a.tw:before {
  background: url(/images/icon/x.svg) no-repeat center;
}
.p-sns_container a.fa:before {
  background: url(/images/icon/sns/facebook.png) no-repeat center;
}
.p-sns_container a.yo:before {
  background: url(/images/icon/sns/youtube.png) no-repeat center;
}
.p-sns_container a.in:before {
  background: url(/images/icon/sns/instagram.png) no-repeat center;
}
.p-sns_container a.li:before {
  background: url(/images/icon/sns/line.png) no-repeat center;
}
.p-sns_container dl:not(:last-child) {
  margin-bottom: 1.6rem;
}

/*============ Utility ============*/
.u-cw {
  padding: 0 1.6rem;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-spacebetween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.u-link_arrow::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 12px;
  background: url(/images/sp/icon/arrow_right_linkcolor.svg) no-repeat center;
  background-size: 5px 12px;
  vertical-align: middle;
  margin-right: 0.8rem;
}

.u-text_bold {
  font-weight: bold;
}

.u-text_s {
  font-size: 1.4rem;
}

.u-text_l {
  font-size: 2rem;
}

.u-text_light {
  color: #999;
}

.u-mt_l {
  margin-top: 4.8rem;
}

.u-mt_ll {
  margin-top: 6.4rem;
}

.u-mb_s {
  margin-bottom: 1.6rem;
}

.u-mb_m {
  margin-bottom: 2.4rem;
}

.u-mb {
  margin-bottom: 3.2rem;
}

.u-mb_l {
  margin-bottom: 4.8rem;
}

.u-mb_ll {
  margin-bottom: 6.4rem;
}

.u-block {
  display: block;
}
