@charset "UTF-8";
body {
  font-family: "Noto Sans", sans-serif;
  color: #000;
  font-weight: 400;
  background: #fff;
  letter-spacing: 0.05em;
}
/*
#cursor{
  position: fixed;
  width: 30px;
  height: 30px;
  z-index: 200;/*一番手前に来るように*/
  /*pointer-events: none;/*クリックできなくなるのを防ぐため。noneで対応*/
  /*opacity: 0;
	background: url(../images/common/cursor.png) no-repeat center center/contain;
}*/

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none !important;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
.c-breadcrumb{
	display: none;
}
.c-breadcrumb.is-select{
	display: block;
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1023px) {
  html {
    font-size: 1.5625vw;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-size: medium;
  font-size: initial;
  font-weight: normal;
  font-weight: initial;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  /*display: block;*/
  height: auto;
}
/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}


/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select,
a:-webkit-any-link {
  cursor: url(../images/common/cursor.png) 1 1, pointer;
}

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

.c-analyst {
	width: 100%;
  }
  
  .c-analyst__img {
	width: 100%;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
  }
  .c-analyst__img::after {
	content: "";
	display: block;
	padding-top: 100%;
  }
  .c-analyst__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
  }
  
  .c-analyst__name {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
	margin-top: 0.625rem;
  }

.c-breadcrumbs {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #898989;
}

.c-breadcrumbs li {
  display: inline-block;
}

.c-breadcrumbs a {
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-breadcrumbs a:hover {
  opacity: 0.8;
}

.c-breadcrumbs li:nth-child(n+2) {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}
.c-breadcrumbs li:nth-child(n+2)::before {
  content: ">";
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #898989;
  position: absolute;
  top: 50%;
  left: -16px;
  left: -1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  background: #fff;
  letter-spacing: 0.05em;
  padding: 8.8px 5px;
  padding: 0.55rem 0.3125rem;
  width: 120px;
  width: 7.5rem;
  text-align: center;
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 0.875rem;
    padding: 0.55rem 0.3125rem;
  }
}

.c-btn--red {
  width: auto;
  width: initial;
  padding: 8.8px 10px;
  padding: 0.55rem 0.625rem;
  color: #fff;
  background: #EA5504;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn--red {
    width: auto;
    width: initial;
    padding: 0.55rem 0.625rem;
  }
}

.c-btn--large {
  width: 200px;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .c-btn--large {
    width: 9.375rem;
  }
}

.c-btn--red-large {
  width: 200px;
  width: 12.5rem;
  color: #fff;
  background: #EA5504;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn--red-large {
    width: 11.3125rem;
  }
}

.c-btn--red-large:hover {
  background: #4694D1;
}

.c-btn--yellow-large {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  background: #F6AB00;
  padding: 13.8px 5px;
  padding: 0.8625rem 0.3125rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn--yellow-large {
    width: 9.375rem;
  }
}

.c-btn--yellow-large2 {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  background: #F6AB00;
  padding: 13.8px 5px;
  padding: 0.8625rem 0.3125rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn--yellow-large2 {
    width: 16.25rem;
    padding: 0.6125rem 0.3125rem;
  }
}

.c-btn--blue-large {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  background: #4694D1;
  padding: 13.8px 5px;
  padding: 0.8625rem 0.3125rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-btn--blue-large {
    width: 9.375rem;
  }
}
.c-btn--blue-large:hover {
  background: #004097;
}

.c-btn--yellow-large:hover {
  background: #EA5504;
}

.c-btn--blue {
  color: #fff;
  background: #4694D1;
  border: none;
}

.c-btn--blue1 {
  color: #fff;
  background: #004097;
  border: none;
}

.c-card {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-card:hover img{
	-webkit-transform: translate(-50%, -50%) scale(1.2);
        transform: translate(-50%, -50%) scale(1.2);
		transition: 0.3s;
}

.c-card__img {
  width: 100%;
  position: relative;
}
.c-card__img::after {
  content: "";
  display: block;
  padding-top: 60.9756097561%;
}
.c-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
	transition: 0.3s;
}

.c-card__block {
  display: contents;
}

.c-card__body {
  padding: 28px 24px 0;
  padding: 1.75rem 1.5rem 0;
  z-index: 1;
  background-color: #fff;
}

.c-card__date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #898989;
  letter-spacing: 2;
}

.c-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.c-card__text {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.538;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.c-card__bottom {
  margin-top: auto;
  padding: 20px 24px 28px;
  padding: 1.25rem 1.5rem 1.75rem;
  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;
}

.c-card__heart {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  position: relative;
}
.c-card__follow {
	display: inline;
    background-color: #EA5504;
    color: white;
    font-size: 0.6rem;
    padding: 0.35rem 1rem;
    vertical-align: middle;
    border-radius: 6px;
    margin-left: 1rem;
}

.c-card__heart--mr {
  margin-right: 10px;
  margin-right: 0.625rem;
}

.c-card__heart::before,
.c-card__heart::after {
  content: "";
  width: 50%;
  height: 80%;
  background: #98A6B5;
  border-radius: 25px 25px 0 0;
  display: block;
  position: absolute;
  cursor: url(../images/common/cursor.png) 1 1, pointer;
}

.c-card__heart.is-active::before,
.c-card__heart.is-active::after {
  content: "";
  background: #F6AB00;
}
.c-card__follow.is-active{
	background-color: #98a6b5;
}
.c-card__heart::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 14%;
}

.c-card__heart::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: 14%;
}

.c-card.c-card--long {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .c-card.c-card--long {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-card.c-card--long .c-card__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 328px;
          flex: 0 1 328px;
  -ms-flex: 0 1 20.5rem;
      flex: 0 1 20.5rem;
}
@media screen and (max-width: 767px) {
  .c-card.c-card--long .c-card__img {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.c-card.c-card--long .c-card__block {
  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-flex: 0;
      -ms-flex: 0 1 696px;
          flex: 0 1 696px;
  -ms-flex: 0 1 43.5rem;
      flex: 0 1 43.5rem;
	z-index: 1;
	background: white;
}
@media screen and (max-width: 767px) {
  .c-card.c-card--long .c-card__block {
    display: contents;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.c-category {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.84;
  color: #98A6B5;
}

.c-circle {
  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;
  position: relative;
  padding: 0;
  border: none;
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  border-radius: 50%;
  object-fit: cover;
}
.c-circle img {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}
.c-circle span {
  background: #fff;
  height: 3px;
  width: 22px;
  width: 1.375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-circle span {
    height: 2px;
	background: #98A6B5;
  }
}
.c-circle span:before {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  width: 1.375rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
@media screen and (max-width: 767px) {
  .c-circle span:before {
    height: 2px;
	background: #98A6B5;
  }
}
.c-circle span::after {
  content: "";
  display: block;
  height: 3px;
  width: 12px;
  width: 0.75rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
@media screen and (max-width: 767px) {
  .c-circle span::after {
    height: 2px;
	background: #98A6B5;
  }
}
@media screen and (max-width: 767px) {
  .c-circle {
    width: 1.875rem;
    height: 1.875rem;
  }
  .c-circle img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-circle--gray {
  background-color: #898989;
}
@media screen and (max-width: 767px) {
  .c-circle--gray {
	background: #fff;
  }
}

.c-circle--blue {
  background-color: #4694D1;
}
@media screen and (max-width: 767px) {
  .c-circle--blue {
    background: #fff;
  }
}

.c-circle--yellow {
  background-color: #F6AB00;
}

.c-circle--red {
  background-color: #EA5504;
}

.c-date {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-date__gray{
	color: #98A6B5;
}
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: url(../images/common/cursor.png) 1 1, pointer;
    width: 25px;
    height: 25px;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #333;
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before {
  top: -5px;
}

.c-hamburger__line::after {
  top: 5px;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line {
  background-color: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__line::before, .c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  top: 0;
  background-color: #fff;
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-icon-play {
  position: relative;
}
.c-icon-play::before {
	background: url(../images/common/icon-play.png) no-repeat center center/cover;
	content: "";
	display: block;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 10;
}

.c-keyword a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #98A6B5;
  padding: 3.5px 18px;
  padding: 0.21875rem 1.125rem;
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  display: inline-block;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-keyword a {
    font-size: 0.75rem;
    padding: 0.15625rem 0.5625rem;
  }
}

.c-keyword:hover {
  opacity: 0.8;
}

.c-keyword--2 a {
  padding: 3.5px 15px;
  padding: 0.21875rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-keyword--2 a {
    padding: 0.15625rem 0.8125rem;
  }
}

.c-keyword--2 a:hover {
  color: #fff;
  background: #4694D1;
}

.c-keyword--3 a {
  padding: 2px 6px;
  padding: 0.125rem 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.c-keyword--3:hover {
  opacity: 0.8;
}

.c-keyword2 {
  font-size: 15px;
  font-size: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-keyword2:hover {
  opacity: 0.8;
}

.c-keyword2::before {
  content: "";
  display: block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-radius: 50%;
  background: #98A6B5;
  margin-right: 13px;
  margin-right: 0.8125rem;
}

.c-keyword3 {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #898989;
}

.c-like-button {
	display: inline-block;
	padding: 8px 14px 8px 35px;
	padding: 0.5rem 0.875rem 0.5rem 2.1875rem;
	border: 1px solid #D3D3D3;
	border-radius: 30px;
	cursor: url(../images/common/cursor.png) 1 1, pointer;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	position: relative;
  }
  .c-like-button::before {
	content: "";
	display: block;
	width: 20px;
	width: 1.25rem;
	height: 20px;
	height: 1.25rem;
	background: url(../images/common/like-img.svg) no-repeat center center/contain;
	position: absolute;
	top: 50%;
	left: 10px;
	left: 0.625rem;
	-webkit-transform: translateY(-60%);
			transform: translateY(-60%);
  }
  
  .c-like-button__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	gap: 5px;
	gap: 0.3125rem;
  }
  
  .c-like-button__img {
	width: 20px;
	width: 1.25rem;
  }
  
  .c-like-button__text {
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #98A6B5;
  }
  
  .c-like-button__number {
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #98A6B5;
  }
  
  .c-like-button__svg {
	stroke: #98a6b5;
	fill: transparent;
  }
  
  .c-like-button.is-click::before {
	background: url(../images/common/like-img-blue.svg) no-repeat center center/contain;
  }
  .c-like-button.is-click .c-like-button__text {
	color: #004097;
  }
  .c-like-button.is-click .c-like-button__number {
	color: #004097;
  }

.c-link {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-link {
    font-size: 0.75rem;
  }
}

.c-link::after {
  content: "＞";
  display: block;
  margin-left: 3px;
  margin-left: 0.1875rem;
}

.c-link:hover {
  color: #004097;
}

.c-pick-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #F6AB00;
  border-radius: 10px;
  padding: 7px 17px;
  padding: 0.4375rem 1.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pick-up {
    border-radius: 14px;
    padding: 0.75rem 1.0625rem;
  }
}

.c-pick-up::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 15.5px 0 15.5px;
  border-color: #f6ac00 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 30px;
  left: 1.875rem;
  -webkit-transform: translateY(96%);
          transform: translateY(96%);
  z-index: 3;
}

.c-pick-up__content2 {
  margin-left: 10px;
  margin-left: 0.625rem;
}

.c-pick-up__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-pick-up__title {
    font-size: 1.375rem;
  }
}

.c-pick-up__date {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-pick-up__date {
    font-size: 0.75rem;
  }
}

.c-report {
	width: 100%;
	display: block;
	position: relative;
}
.c-report::after {
  content: "";
  display: block;
  padding-top: 141.0788381743%;
}
.c-report img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-sns-btn {
  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;
  padding: 10px 5px;
  padding: 0.625rem 0.3125rem;
  width: 150px;
  width: 9.375rem;
  border: 1px solid #D3D3D3;
  border-radius: 3px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-sns-btn {
    width: 100%;
  }
}

.c-sns-btn__logo {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}
.c-sns-btn__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-sns-btn__logo {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.c-sns-btn__text {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #98A6B5;
  margin-left: 11px;
  margin-left: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .c-sns-btn__text {
    margin-left: 0.3125rem;
  }
}

.c-tab {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.375;
  padding: 15px 5px;
  padding: 0.9375rem 0.3125rem;
  color: #898989;
  background: #F1F1F1;
  text-align: center;
  border-radius: 3px;
  position: relative;
}

.p-tabs__item .c-tab.is-active {
  color: #000;
  background: #fff;
  border-top: 2px solid #898989;
  border-left: 2px solid #898989;
  border-right: 2px solid #898989;
}
.p-tabs__item .c-tab.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, color-stop(7.5%, #fff), color-stop(7.6%, #4694D1), color-stop(92.4%, #4694D1), color-stop(92.5%, #fff));
  background: linear-gradient(to right, #fff 7.5%, #4694D1 7.6%, #4694D1 92.4%, #fff 92.5%);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.p-tabs__home .c-tab.is-active {
  background: #4694D1;
}
.p-tabs__home .c-tab.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #4694D1;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.p-tabs__home .c-tab::before {
  content: "";
  display: block;
  width: 71px;
  width: 4.4375rem;
  height: 19px;
  height: 1.1875rem;
  background: url(../images/common/icon-home-gray.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-tabs__home .c-tab.is-active::before {
  background: url(../images/common/icon-home.svg) no-repeat center center/contain;
}

.c-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: 0.75rem;
  }
}

.c-title-sub {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #898989;
}

.c-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
.c-title__single{
	font-size: 32px;
	font-size: 2.0rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.125rem;
  }
  .c-title__single {
	font-size: 1.5625rem;
  }
}
.c-title__chart{
    text-align: center;
	margin: 1rem 0 0.5rem;
}
.c-title--blue {
  color: #004097;
}

.c-title--gray {
  color: #898989;
}

.c-title--red {
  color: #EA5504;
}

.p-404 {
  padding: 207px 0 400px;
  padding: 12.9375rem 0 25rem;
}

.p-404__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#b9daf3), color-stop(70%, #004097));
  background: linear-gradient(90deg, #b9daf3 0%, #004097 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-404__title {
    font-size: 2.25rem;
  }
}

.p-404__text {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 37px;
  margin-top: 2.3125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    text-align: left;
  }
}

.p-404__link {
  text-align: center;
  margin-top: 37px;
  margin-top: 2.3125rem;
}
.p-404__link a {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: underline;
  color: #98A6B5;
}

.p-article-details {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  padding: 60px 60px 150px;
  padding: 3.75rem 3.75rem 9.375rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-article-details {
    padding: 2.5rem 1.875rem 3.125rem;
	width: 100vw;
    margin: 1.875rem calc(50% - 50vw) 1.875rem;  
	}
}

.p-article-details__body {
  padding-top: 24px;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-article-details__body {
    padding-top: 1.25rem;
  }
}

.p-article-details__body iframe {
  width: 100%;
  height: 56.2222222222vw;
  max-height: 506px;
}
@media screen and (max-width: 767px) {
	.p-article-details__body iframe {
		height: 50vw;
	}
}
.p-article-details__body h1{
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 500;
}
.p-article-details__body h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-article-details__body h2 {
    font-size: 1.25rem;
  }
}

.p-article-details__body h3 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-article-details__body h3 {
    font-size: 1.25rem;
  }
}

.p-article-details__body h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  padding-left: 35px;
  padding-left: 2.1875rem;
  position: relative;
}
.p-article-details__body h4::before {
  content: "";
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  background: #4694D1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-article-details__body h4 {
    font-size: 1.125rem;
    padding-left: 0.9375rem;
  }
  .p-article-details__body h4::before {
    width: 0.625rem;
    height: 2px;
  }
}

.p-article-details__body > p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666;
}
@media screen and (max-width: 767px) {
  .p-article-details__body > p {
    font-size: 0.9375rem;
  }
}

.p-article-details__body > p span {
	color: #EA5504;
	display: block;
  }

.p-article-details__body ul,
.p-article-details__body ol {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-article-details__body > ul > li {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.33;
  list-style: disc;
}
.p-article-details__body > ul > li::marker {
  color: #898989;
}
.p-article-details__body > ul > li:nth-child(n+2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-article-details__body > ul > li {
	font-size: 0.9375rem;
  }
  .p-article-details__body > ul > li:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.p-article-details__body > ol > li {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.33;
  list-style: decimal;
}
.p-article-details__body > ol > li::marker {
  font-weight: bold;
}
.p-article-details__body > ol > li:nth-child(n+2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-article-details__body > ol > li {
	font-size: 0.9375rem;
  }
  .p-article-details__body > ol > li:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.p-article-details__body table {
  width: 100%;
  border-collapse: collapse;
}
.p-article-details__body tbody td:first-child {
  width: 25%;
  background: #98A6B5;
  color: #fff;
  text-align: center;
  padding: 10px 5px;
  padding: 0.625rem 0.3125rem;
  font-size: 15px;
  font-size: 0.9375rem;
  border: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .p-article-details__body tbody td:first-child {
    width: 100%;
    display: block;
    padding: 0.8125rem 1.6875rem;
    text-align: left;
  }
}
.p-article-details__body tbody td:nth-child(n+2) {
  width: 75%;
  padding: 10px 23px;
  padding: 0.625rem 1.4375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  border: 1px solid #D3D3D3;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-article-details__body tbody td:nth-child(n+2) {
    width: 100%;
    display: block;
    padding: 0.8125rem 1.6875rem;
    text-align: left;
  }
}

.p-article-details__item.is-author{
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-article-details__item2 {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-article-details__item3 {
	margin-top: 72px;
	margin-top: 4.5rem;
  }
  
  .p-article-details__area {
	margin-top: 40px;
	margin-top: 2.5rem;
	padding-top: 40px;
	padding-top: 2.5rem;
	border-top: 1px solid #D3D3D3;
  }
  

@media screen and (min-width: 768px) {
  .p-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
  }
}
.p-banner a{
	width: 100%;
}
.p-banner img{
	width: 100%;
}
.p-banner__content:nth-child(1) {
  overflow: hidden;
  position: relative;
}
.p-banner__content:nth-child(1)::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-banner__content:nth-child(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-banner__content:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 43.75rem;
            flex: 0 1 43.75rem;
  }
  .p-banner__content:nth-child(1)::after {
    content: "";
    display: block;
    padding-top: 72.1428571429%;
  }
}

.p-banner__content:nth-child(2) {
  overflow: hidden;
  position: relative;
}
.p-banner__content:nth-child(2)::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-banner__content:nth-child(2) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-banner__content:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 18.75rem;
            flex: 0 1 18.75rem;
  }
  .p-banner__content:nth-child(2)::after {
    padding-top: 168.3333333333%;
  }
}

.p-banner__content:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}

.p-banner__content:hover a {
  opacity: 1;
}

.p-banner2 {
  width: 100%;
}

.p-banner2 a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}

.p-banner2__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#b9daf3), color-stop(#004097), to(#b9daf3));
  background: linear-gradient(90deg, #b9daf3 0%, #004097, #b9daf3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-banner2__title {
    font-size: 1rem;
    width: 100%;
  }
}

.p-banner2 a:hover .p-banner2__title {
  background: -webkit-gradient(linear, left top, right top, from(#EA5504), color-stop(#EA5504), to(#EA5504));
  background: linear-gradient(90deg, #EA5504 0%, #EA5504, #EA5504 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
  .p-block--bg {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-block--bg::after {
    content: "";
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: calc(100% + 3.4375rem);
    background: url(../images/common/bg-home-sp.jpg) no-repeat center center/cover;
    position: absolute;
    top: -2.25rem;
    left: 0;
    right: 0;
    z-index: -1;
  }
}

.p-block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-block__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.0625rem;
  }
}

.p-block__head2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.p-block__head-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .p-block__head-item + .p-block__head-item {
    margin-top: 1.25rem;
  }
}

.p-block__head-item-content + .p-block__head-item-content {
  margin-left: 5px;
  margin-left: 0.3125rem;
}
.p-block__head-item-content2 + .p-block__head-item-content2 {
    margin-left: 1rem;
  }
@media screen and (max-width: 767px) {
  .p-block__head-item-content2 + .p-block__head-item-content2 {
    margin-left: 0.7125rem;
  }
}

.p-block__date {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.p-block__bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: right;
}

.p-block__bottom-item {
  display: inline-block;
}

.p-box {
  background: #fff;
  padding: 68px 89px;
  padding: 4.25rem 5.5625rem;
}
@media screen and (max-width: 767px) {
  .p-box {
    padding: 2.5rem 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-card-slide {
    padding-bottom: 6.25rem;
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (min-width: 768px) {
  .p-cards-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem;
  }
}

.p-cards-column__item {
  width: 100%;
  height:auto;
}

.p-cards-column__item2 {
  width: 100%;
  height:auto;
}
@media screen and (max-width: 767px) {
  .p-cards-column__item2 {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem;
  }
}

.p-cards__item {
  width: calc(33.3% - 0.83333rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-cards__item {
    width: 100%;
  }
}

.p-cards__item2 {
  width: calc(33.3% - 0.83333rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-cards__item2 {
    width: 100%;
  }
}


.p-cards__item {
  width: calc(33.3% - 0.83333rem);
}
@media screen and (max-width: 767px) {
  .p-cards__item {
    width: 100%;
  }
}

.p-cards__item--ranking {
  position: relative;
}

.p-cards__item--ranking::before {
  content: "";
  display: block;
  width: 68px;
  width: 4.25rem;
  height: 73px;
  height: 4.5625rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
  padding: 1px 10px;
  padding: 0.0625rem 0.625rem;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-cards__item--ranking:nth-child(1)::before {
  content: "1";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #D5B46A), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #D5B46A 50%, transparent 50.5%);
}

.p-cards__item--ranking:nth-child(2)::before {
  content: "2";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #95867C), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #95867C 50%, transparent 50.5%);
}

.p-cards__item--ranking:nth-child(3)::before {
  content: "3";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #AA7F5D), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #AA7F5D 50%, transparent 50.5%);
}

.p-cards__item--ranking:nth-child(4)::before {
  content: "4";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #98A6B5), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #98A6B5 50%, transparent 50.5%);
}

.p-cards__item--ranking:nth-child(5)::before {
  content: "5";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #98A6B5), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #98A6B5 50%, transparent 50.5%);
}

.p-cards__item--ranking:nth-child(6)::before {
  content: "6";
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #98A6B5), color-stop(50.5%, transparent));
  background: linear-gradient(to bottom right, #98A6B5 50%, transparent 50.5%);
}

.p-chart1 {
  padding: 31px 37px;
  padding: 1.9375rem 2.3125rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-chart1 {
    padding: 0.625rem 0.75rem;
  }
}

.p-chart1__contents {
  width: 100%;
  height: 100%;
}

.p-chart1__filter {
  width: 40%;
  height: 100%;
  background: url(../images/common/bg-login.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-chart1__filter {
    width: 60%;
  }
}

.p-chart1__filter-content {
  width: 100%;
  height: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-chart1__link a {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #98A6B5;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-chart1__link a {
    font-size: 0.8125rem;
  }
}

.p-chart1__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-chart1__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 13px;
  font-size: 0.8125rem;
}

.p-comment {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 18px;
	gap: 1.125rem;
  }
  @media screen and (max-width: 767px) {
	.p-comment {
	  gap: 0.625rem;
	}
  }
  
  .p-comment--center {
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  
  .p-comment__head {
	-webkit-box-flex: 0;
		-ms-flex: 0 0 50px;
			flex: 0 0 50px;
	-ms-flex: 0 0 3.125rem;
		flex: 0 0 3.125rem;
  }
  @media screen and (max-width: 767px) {
	.p-comment__head {
	  -webkit-box-flex: 0;
		  -ms-flex: 0 0 2.5rem;
			  flex: 0 0 2.5rem;
	}
  }
  
  .p-comment__head-img {
	width: 100%;
	position: relative;
	border-radius: 50%;
	overflow: hidden;
  }
  .p-comment__head-img::after {
	content: "";
	display: block;
	padding-top: 100%;
  }
  .p-comment__head-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
  }
  
  .p-comment__head-text {
	width: 100%;
	background: #4694D1;
	color: #fff;
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 700;
	border-radius: 50%;
	display: block;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	text-align: center;
	height: 50px;
	height: 3.125rem;
	line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
	.p-comment__head-text {
	  font-size: 1.5625rem;
	  height: 2.5rem;
	}
  }
  
  .p-comment__body {
	-webkit-box-flex: 0;
		-ms-flex: 0 1 100%;
			flex: 0 1 100%;
  }
  
  .p-comment__name {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	color: #98A6B5;
  }
  
  .p-comment__text {
	font-size: 13px;
	font-size: 0.8125rem;
	margin-top: 5px;
	margin-top: 0.3125rem;
  }
  
  .p-comment__btn {
	margin-top: 10px;
	margin-top: 0.625rem;
	text-align: right;
  }

.p-contact-button__submit {
  -webkit-appearance: none;
  background-color: #4694D1;
  background-image: none;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: url(../images/common/cursor.png) 1 1, pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 13px 68px;
  padding: 0.8125rem 4.25rem;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-contact-button__submit {
    font-size: 0.9375rem;
    padding: 0.5625rem 3rem;
  }
}

.p-contact-button__submit-red {
  -webkit-appearance: none;
  background-color: #EA5504;
  background-image: none;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: url(../images/common/cursor.png) 1 1, pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 13px 34.5px;
  padding: 0.8125rem 2.15625rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-contact-button__submit-red {
    font-size: 0.9375rem;
    padding: 0.5625rem 3rem;
  }
}

.p-contact-button__submit:hover,
.p-contact-button__submit:focus {
  outline: none;
  background: #004097;
}

.p-contact-button__submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.p-contact-checkbox input[type=checkbox] {
  width: 100%;
  height: 100%;
  max-width: 450px;
  max-width: 28.125rem;
  opacity: 0;
  position: absolute;
  z-index: 10;
}
.p-contact-checkbox input[type=checkbox] + span {
  cursor: url(../images/common/cursor.png) 1 1, pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 26px;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.714285;
}
@media screen and (max-width: 767px) {
  .p-contact-checkbox input[type=checkbox] + span {
    font-size: 0.625rem;
    text-align: left;
  }
}
.p-contact-checkbox input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #CBCBCB;
  border-radius: 2px;
  content: "";
  display: block;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  left: 0;
  position: absolute;
  top: 9px;
  top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact-checkbox input[type=checkbox] + span::before {
    top: 0.5625rem;
  }
}
.p-contact-checkbox input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  height: 0.7em;
  left: 2px;
  left: 0.125rem;
  opacity: 0;
  position: absolute;
  top: 8px;
  top: 0.5rem;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-contact-checkbox input[type=checkbox] + span::after {
    top: 0.5rem;
  }
}
.p-contact-checkbox input[type=checkbox]:checked + span::before {
  background: #fff;
}
.p-contact-checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-contact-checkbox__text {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-contact-checkbox__text span {
  color: #FF0000;
}
.p-contact-checkbox__text a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-contact-checkbox__text {
    text-align: left;
    font-size: 0.625rem;
  }
}

.p-contact-select {
  width: 100%;
}
/*
.p-contact-select::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 10px;
    height: 20px;
    width: 20px;
    display: block;
    transform: translateY(-50%);
	color: #333;
}*/
.p-contact-select__text {
  -moz-appearance: auto;
  -webkit-appearance: auto;
  appearance: auto;
  background-color: #fff;
  background-image: none;
  border: 1px solid #D3D3D3;
  border-radius: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  font-family: inherit;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 10.8px 10px;
  padding: 0.675rem 0.625rem;
  width: 100%;
}

.p-contact-select__text--gray {
  background: #F7F7F7;
  border: 1px solid transparent;
}

.p-contact-select__text:focus {
  border: 1px solid #898989;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

.p-contact-text {
  width: 100%;
}

.p-contact-text__text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #D3D3D3;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 10.8px 10px;
  padding: 0.675rem 0.625rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-text__text--gray {
  background: #F7F7F7;
  border: 1px solid transparent;
}

.p-contact-text__text:focus {
  border: 1px solid #898989;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-contact-text__text::-webkit-input-placeholder {
  color: #98A6B5;
}

.p-contact-text__text::-moz-placeholder {
  color: #98A6B5;
}

.p-contact-text__text::-ms-input-placeholder {
  color: #98A6B5;
}

.p-contact-text__text::placeholder {
  color: #98A6B5;
}

.p-contact-textarea__text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 1px solid #D3D3D3;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  font-size: 0.8125rem;
  min-height: 152px;
  padding: 10.8px 10px;
  padding: 0.675rem 0.625rem;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-textarea__text--gray {
  background: #F7F7F7;
  border: 1px solid transparent;
}

.p-contact-textarea__text:focus {
  border: 1px solid #898989;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-contact {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  padding: 3.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 2.5rem 1.875rem;
  }
}

.p-contact--dl {
  background: url(../images/common/bg-contact.jpg) no-repeat center center/cover;
}

.p-contact--my {
  background: url(../images/common/bg-my-page.jpg) no-repeat center center/cover;
  padding: 100px 0 80px;
  padding: 6.25rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact--my {
    padding: 2.5rem 1.875rem 2.5rem;
  }
}

.p-contact__contents {
	max-width: 755px;
	max-width: 47.1875rem;
  margin: auto;
}

.p-contact__contents {
  max-width: 755px;
  max-width: 47.1875rem;
}
.p-contact__contents-large {
	max-width: 900px;
	max-width: 56.25rem;
	margin: auto;
  }

.p-contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-contact__flex {
    display: block;
  }
}

.p-contact__flex-content1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 186px;
          flex: 0 0 186px;
  -ms-flex: 0 0 11.625rem;
      flex: 0 0 11.625rem;
}

.p-contact__flex-list {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #898989;
}

.p-contact__flex-list + .p-contact__flex-list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-contact__flex-content2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 501px;
          flex: 0 1 501px;
  -ms-flex: 0 1 31.3125rem;
      flex: 0 1 31.3125rem;
  margin-left: 68px;
  margin-left: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__flex-content2 {
    margin-left: 0;
    margin-left: initial;
    margin-top: 3.125rem;
  }
}

.p-contact__top {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.p-contact__top-head {
  text-align: center;
}

.p-contact__logo {
  width: 231px;
  width: 14.4375rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact__logo {
    width: 10.75rem;
  }
}

.p-contact__top-body {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__top-body {
    margin-top: 1.375rem;
  }
}

.p-contact__top-body-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__top-body-text {
    text-align: left;
  }
}

.p-contact__top-btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 19px;
  gap: 1.1875rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
}
.p-contact__row2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
		-ms-flex-align: end;
			align-items: flex-end;
	gap: 19px;
	gap: 1.1875rem;
  }
.p-contact__row-item {
  width: calc(50% - 0.59375rem);
}

.p-contact__content {
	position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    display: block;
  }
}
.p-contact__content-top {
	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: 767px) {
	.p-contact__content-top {
	  display: block;
	}
  }
.p-contact__content + .p-contact__content {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content + .p-contact__content {
    margin-top: 0.6875rem;
  }
}
.p-contact__content-top + .p-contact__content-top {
	margin-top: 22px;
	margin-top: 1.375rem;
  }
  @media screen and (max-width: 767px) {
	.p-contact__content-top + .p-contact__content-top {
	  margin-top: 0.6875rem;
	}
  }
.p-contact__content-vertical--mt {
  margin-top: 21px;
  margin-top: 1.3125rem;
}

.p-contact__content-vertical + .p-contact__content-vertical {
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content-vertical + .p-contact__content-vertical {
    margin-top: 0.6875rem;
  }
}

.p-contact__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  -ms-flex: 0 0 9.375rem;
      flex: 0 0 9.375rem;
}
.p-contact__head-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 15px;
	margin-top: 0.9375rem;
	-webkit-box-flex: 0;
		-ms-flex: 0 0 150px;
			flex: 0 0 150px;
	-ms-flex: 0 0 9.375rem;
		flex: 0 0 9.375rem;
  }
  @media screen and (max-width: 767px) {
	.p-contact__head-top {
	  margin-top: 0;
	  margin-top: initial;
	}
  }
.p-contact__title {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  display: inline-block;
}

.p-contact__title--require {
  position: relative;
}

.p-contact__title--require::after {
  content: "*";
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #FF0000;
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-contact__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 575px;
          flex: 0 1 575px;
  -ms-flex: 0 1 35.9375rem;
      flex: 0 1 35.9375rem;
}
.p-contact__item--large {
	-webkit-box-flex: 0;
		-ms-flex: 0 1 660px;
			flex: 0 1 660px;
	-ms-flex: 0 1 41.25rem;
		flex: 0 1 41.25rem;
  }
  
  .p-contact__item--small {
	-webkit-box-flex: 0;
		-ms-flex: 0 1 50%;
			flex: 0 1 50%;
	margin-right: auto;
  }
.p-contact__item-vertical {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-contact__content--button {
  text-align: center;
  margin-top: 43px;
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content--button {
    margin-top: 0.9375rem;
  }
}

.p-contact__content--button-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__content--button-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0.5rem;
    margin-top: 1.875rem;
  }
}

.p-contact__content--button-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #98A6B5;
}

.p-contact__content--checkbox {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-contact__account {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: gray;
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  margin-bottom: 31px;
  margin-bottom: 1.9375rem;
}
.p-contact__check-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	gap: 10px;
	gap: 0.625rem;
  }
  
  .p-contact_check-item {
	width: calc(33.3% - 0.41667rem);
  }
  @media screen and (max-width: 767px) {
	.p-contact_check-item {
	  width: calc(50% - 0.3125rem);
	}
  }
  
  .p-contact__border {
	padding-top: 40px;
	padding-top: 2.5rem;
	margin-top: 40px;
	margin-top: 2.5rem;
	border-top: 1px solid #D3D3D3;
  }
  @media screen and (max-width: 767px) {
	.p-contact__border {
	  padding-top: 1.5625rem;
	  margin-top: 1.5625rem;
	}
  }
  
  .p-contact__survey-title {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
  }
  @media screen and (max-width: 767px) {
	.p-contact__survey-title {
	  font-size: 1.125rem;
	}
  }
  
  .p-contact__survey-text {
	font-size: 14px;
	font-size: 0.875rem;
	text-align: center;
	margin-top: 30px;
	margin-top: 1.875rem;
  }
  @media screen and (max-width: 767px) {
	.p-contact__survey-text {
	  font-size: 0.75rem;
	  margin-top: 0.9375rem;
	}
  }
  
  .p-contact__survey-top {
	margin-top: 35px;
	margin-top: 2.1875rem;
  }
  @media screen and (max-width: 767px) {
	.p-contact__survey-top {
	  margin-top: 1.25rem;
	}
  }
.p-feature {
  width: 100%;
  border: 5px solid #D9DDE2;
  padding: 66px 30px;
  padding: 4.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature {
    border: 3px solid #D9DDE2;
    padding: 1.875rem 0.625rem;
  }
}

.p-feature__title {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #004097;
  font-weight: 700;
}
.p-feature__title span {
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-feature__title {
    font-size: 1.25rem;
  }
  .p-feature__title span {
    font-size: 0.75rem;
  }
}

.p-feature__body {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-feature__body {
    display: block;
    margin-top: 2.1875rem;
  }
}

.p-feature__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 260px;
          flex: 0 1 260px;
  -ms-flex: 0 1 16.25rem;
      flex: 0 1 16.25rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-feature__item + .p-feature__item {
    margin-top: 1.875rem;
  }
}

.p-feature__img {
  width: 120px;
  width: 7.5rem;
  height: 100px;
  height: 6.25rem;
  display: inline-block;
}
.p-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-feature__img {
    height: 5rem;
  }
}

.p-feature__img--2 {
  height: 120px;
  height: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__img--2 {
    height: 5.625rem;
  }
}

.p-feature__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.625;
  color: #3B4043;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__text {
    margin-top: 0.625rem;
  }
}

.p-feature__text--2 {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__text--2 {
    margin-top: 0.625rem;
  }
}

.p-footer-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 96px;
  height: 6rem;
  border-top: 5px solid #DCE2E7;
  z-index: 10;
  background: #fff;
  padding-bottom: calc(env(safe-area-inset-bottom));
}

.p-footer-sp__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-footer-sp__item {
  width: 33%;
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-footer-sp__item-img {
  width: 100%;
  height: 100%;
  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;
}
.p-footer-sp__item-img img {
  width: 30px;
  width: 1.875rem;
  height: 22px;
  height: 1.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer-sp__item-text {
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
  white-space: nowrap;
}

.p-footer {
  border-top: 5px solid #DCE2E7;
}

.p-footer__top {
  /*background: #fff;*/
  padding: 20px 0 0px;
  padding: 1.25rem 0 0rem;
}

.p-footer__inner {
  position: relative;
}

.p-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.p-footer__items {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__item {
  font-size: 11px;
  font-size: 0.6875rem;
}

.p-footer__item + .p-footer__item {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-footer__bottom {
  /*background: #fff;*/
  padding: 10px 0 8px;
  padding: 0.625rem 0 0.5rem;
}

.p-footer__bottom-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__logo {
  width: 133px;
  width: 8.3125rem;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
}

.p-footer__bottom-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.p-footer__bottom-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-footer__bottom-item:hover {
  opacity: 0.8;
  border-bottom: 1px solid #898989;
}

.p-footer__bottom-item.is-active {
  border-bottom: 1px solid #898989;
}

.p-footer__bottom-item::before {
  content: "/";
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #898989;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  left: -0.9375rem;
}

.p-footer__bottom-item + .p-footer__bottom-item {
  margin-left: 25px;
  margin-left: 1.5625rem;
  position: relative;
}

.p-footer__bottom-item + .p-footer__bottom-item::before {
  content: "/";
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #898989;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -15px;
  left: -0.9375rem;
}

.p-footer__bottom-item a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #898989;
}

.p-footer__copy {
  text-align: right;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #898989;
  padding-bottom: 22.5px;
  padding-bottom: 1.40625rem;
}

.p-footer__img1 {
  position: absolute;
  width: 210px;
  width: 13.125rem;
  top: 0;
  left: 0;
  -webkit-transform: translate(-100%, -73%);
          transform: translate(-100%, -73%);
  z-index: 10;
}
.p-footer__img1 img {
  width: 100%;
  height: 100%;
}

.p-footer__img2 {
  position: absolute;
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
  top: 0;
  right: 100px;
  right: 6.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.p-footer__img2 img {
  width: 100%;
  height: 100%;
}

.p-footer__img3 {
  position: absolute;
  width: 133px;
  width: 8.3125rem;
  top: 50%;
  right: 0;
  z-index: -1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.p-footer__img3 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1230px) {
  .p-footer__img3 {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.p-header-menu {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.is-drawerActive .p-header-menu {
  background-color: #98A6B5;
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.p-header-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.p-header-menu__btn-block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  padding: 0;
}

.p-header-menu__btn-block2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-header-menu__item {
  font-size: 14px;
  font-size: 0.875rem;
  height: inherit;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-header-menu__item {
    height: auto;
    height: initial;
  }
}

.p-header-menu__item:hover::after {
  opacity: 1;
}

.p-header-menu__item + .p-header-menu__item {
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.p-header-menu__item a {
  width: 100%;
  height: 100%;
  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;
  text-decoration: none;
  padding: 0;
}

.p-header-menu__btn {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header-menu__btn:hover {
  opacity: 0.8;
}

.p-header-menu__btn + .p-header-menu__btn {
  margin-left: 8px;
  margin-left: 0.5rem;
}

.p-header-menu__btn2 {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header-menu__btn2:hover {
  opacity: 0.8;
}

.p-header-menu__btn2 + .p-header-menu__btn2 {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-header {
  height: 118px;
  height: 7.375rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 5px solid #DCE2E7;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
	background: #fff;
    border-bottom: 2px solid #DCE2E7;
  }
}

.p-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
}
.anti-UpMove{
	-webkit-animation: AntiUpAnime 0.5s forwards;
	animation: AntiUpAnime 0.5s forwards;
}
@-webkit-keyframes AntiUpAnime {
	from {
	opacity: 1;
	-webkit-transform: translateY(0);
			transform: translateY(0);
	}
	to {
	-webkit-transform: translateY(0px);
			transform: translateY(0px);
	}
}

@keyframes AntiUpAnime {
	from {
	opacity: 1;
	-webkit-transform: translateY(0);
			transform: translateY(0);
	}
	to {
	-webkit-transform: translateY(150px);
			transform: translateY(150px);
	}
  }
.p-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-header__top {
  height: 30px;
  height: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 17px;
  padding: 0 1.0625rem;
  background: #004097;
}

.p-header__title {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 25px;
  padding: 0 1.5625rem;
  height: 90px;
  height: 5.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0 0.3125rem;
    height: inherit;
  }
}

.p-header__logo {
  width: 218px;
  width: 13.625rem;
  height: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1230px) {
  .p-header__logo {
    left: 34%;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 8.0625rem;
    left: 50%;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 8.125rem;
  }
}

.p-header__logo:hover {
  opacity: 0.8;
}

.p-header__logo img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  max-height: 80px;
  padding-top: 5px;
}

.p-header__menu {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__drawer {
    position: absolute;
    top: 1.5625rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.25rem;
    z-index: 101;
  }
}

.p-header__overlay {
  position: fixed;
  z-index: 3;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: rgba(2, 26, 57, .8);
  color: #fff;
  visibility: hidden;
  opacity: 0;
}

.p-header__overlay.is-active {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.p-header__menu-block {
  position: fixed;
  top: 0;
  right: -1000px;
  right: -62.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 4;
}

.p-header__menu-block.is-active {
  right: 0;
}

.p-header__search-block {
  position: fixed;
  top: 0;
  right: -1000px;
  right: -62.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__search-block.is-active {
  right: 0;
  z-index: 15;
}

.p-header__sign-block {
  position: fixed;
  top: 0;
  right: -1000px;
  right: -62.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}

.p-header__sign-block.is-active {
  right: 0;
}

.p-header__my-page-block {
  position: fixed;
  top: 119px;
  top: 7.4375rem;
  right: 94px;
  right: 5.875rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__my-page-block.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}

.p-keywords2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
  gap: 1.4375rem;
}

.p-keywords2__item {
  width: calc(33.3% - 0.95833rem);
}
@media screen and (max-width: 767px) {
  .p-keywords2__item {
    width: 100%;
  }
}

.p-keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-keywords {
    gap: 0.625rem;
  }
}

.p-keywords--2 {
  gap: 10px;
  gap: 0.625rem;
}

.p-main {
  padding-top: 49px;
  padding-top: 3.0625rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  display: none;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-main {
    padding-top: 2.25rem;
    padding-bottom: 8.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-main--sub {
    padding-top: 1.5rem;
    padding-bottom: 7.5rem;
  }
}

.p-main--home::before {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  height: 31.25rem;
  background: url(../images/common/bg-home.jpg) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-main--home::before {
    content: none;
  }
}

.p-main.is-open {
	display: block;
  }

.p-main.is-single-open {
  display: block;
}

.p-main__contents {
  position: relative;
  z-index: 2;
}
.p-main__contents blockquote {
 padding-left: 1rem;
 border-left: 4px solid #333;
}
.p-main__contents + .p-main__contents {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-main__contents + .p-main__contents {
    margin-top: 2.5rem;
  }
}
.p-relation__contents{
	margin-top: 2rem;
	position: relative;
	z-index: 2;
}
.p-main__bottom {
  background: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 20px 0;
  padding: 1.25rem 0;
}

.p-main__bottom-item + .p-main__bottom-item {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-main__pagination {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-main__pagination-inner {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-main__sns {
    margin-top: 3.125rem;
  }
}

.p-media1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-media1 {
    display: block;
  }
}

.p-media1--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-media1__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 328px;
          flex: 0 1 328px;
  -ms-flex: 0 1 20.5rem;
      flex: 0 1 20.5rem;
  position: relative;
}
.p-media1__img::after {
  content: "";
  display: block;
  padding-top: 60.9756097561%;
}
.p-media1__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-media1__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 572px;
          flex: 0 1 572px;
  -ms-flex: 0 1 35.75rem;
      flex: 0 1 35.75rem;
  margin-left: 31px;
  margin-left: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-media1__body {
    margin-left: 0;
    margin-left: initial;
    margin-top: 0.625rem;
  }
}

.p-media1__body--reverse {
  margin-left: 0;
  margin-left: initial;
  margin-right: 31px;
  margin-right: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-media1__body--reverse {
    margin-right: 0;
    margin-right: initial;
  }
}

.p-media1__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666;
}
@media screen and (max-width: 767px) {
  .p-media1__text {
    font-size: 0.9375rem;
  }
}

.p-media2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-media2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-media2__content1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  -ms-flex: 0 0 5.625rem;
      flex: 0 0 5.625rem;
  margin-right: 24px;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-media2__content1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.375rem;
            flex: 0 0 4.375rem;
    margin-right: 1.25rem;
  }
}

.p-media2__img {
  width: 100%;
  border-radius: 50%;
  position: relative;
}
.p-media2__img::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-media2__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}

.p-media2__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 790px;
          flex: 0 1 790px;
  -ms-flex: 0 1 49.375rem;
      flex: 0 1 49.375rem;
}
@media screen and (max-width: 767px) {
  .p-media2__contents {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .p-media2__content2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% - 5.625rem);
            flex: 0 1 calc(100% - 5.625rem);
  }
}

.p-media2__cat {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2;
  color: #98A6B5;
}

.p-media2__name {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-media2__name {
    font-size: 1.25rem;
    margin-top: 0.3125rem;
  }
}

.p-media2__text1 {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.69;
}
@media screen and (max-width: 767px) {
  .p-media2__text1 {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-media2__content3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-media2__text2 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.69;
}

.p-menu-window {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  max-width: 800px;
  max-width: 50rem;
  background-color: #fff;
  background-image: url(../images/common/bg-header-menu.jpg);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 136px 50px 281px;
  padding: 8.5rem 3.125rem 17.5625rem;
  position: relative;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-menu-window {
    padding: 1.9375rem 3.6875rem 3.125rem;
    background-image: url(../images/common/bg-header-menu-sp.jpg);
    background-size: cover;
    background-position: center center;
  }
}

.p-menu-window__logo {
  width: 186px;
  width: 11.625rem;
  margin-left: 62px;
  margin-left: 3.875rem;
}
.p-menu-window__logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-menu-window__logo {
    width: 9.125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-menu-window__body {
  padding-top: 55px;
  padding-top: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-menu-window__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.6875rem;
  }
}

.p-menu-window__lists1 {
  padding-left: 100px;
  padding-left: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-menu-window__lists1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 0;
    padding-left: initial;
    padding-top: 2.5625rem;
  }
}

.p-menu-window__list1 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-menu-window__list1 {
    font-size: 1.125rem;
  }
}

.p-menu-window__list1 + .p-menu-window__list1 {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-menu-window__list1 + .p-menu-window__list1 {
    margin-top: 0.9375rem;
  }
}

.p-menu-window__lists2 {
  padding-left: 100px;
  padding-left: 6.25rem;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-top: 55px;
  padding-top: 3.4375rem;
  border-top: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .p-menu-window__lists2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding-left: 0;
    padding-left: initial;
    margin-top: 2rem;
    padding-top: 0;
    padding-top: initial;
    border: none;
  }
}

.p-menu-window__list2 {
  font-size: 14px;
  font-size: 0.875rem;
  color: #898989;
}
@media screen and (max-width: 767px) {
  .p-menu-window__list2 {
    font-size: 0.6875rem;
  }
}

.p-menu-window__list2 + .p-menu-window__list2 {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-menu-window__lists3 {
  padding-left: 100px;
  padding-left: 6.25rem;
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-menu-window__lists3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-left: 0;
    padding-left: initial;
    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;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-menu-window__list3 + .p-menu-window__list3 {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-menu-window__list3 + .p-menu-window__list3 {
    margin-top: 0;
    margin-top: initial;
    margin-left: 0.625rem;
  }
}

.p-mv {
  margin-top: 118px;
  margin-top: 7.375rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 3.125rem;
  }
}

.p-mv__contents {
  min-height: 144px;
  min-height: 9rem;
}
@media screen and (max-width: 767px) {
  .p-mv__contents {
    min-height: 0;
    min-height: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__contents--home {
    margin: 0;
    height: calc(70vh - 3.125rem);
  }
}

.p-mv__top-img {
  min-height: inherit;
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-mv__top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width:425px){
	.p-mv__top-img img {
		max-height: 65vh;
	}
}

.p-mv__sub-img {
  min-height: inherit;
}
.p-mv__sub-img picture {
  min-height: inherit;
}
.p-mv__sub-img img {
  min-height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv--sub {
  border-bottom: 2px solid #D3D3D3;
}

.p-mv__contents {
  position: relative;
  display: none;
}

.p-mv__contents.is-show {
  display: block;
}

.p-mv__top-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding-bottom: 52px;
  padding-bottom: 3.25rem;
}

.p-mv__top-title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#b9daf3), color-stop(#004097), to(#b9daf3));
  background: linear-gradient(90deg, #b9daf3 0%, #004097, #b9daf3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-mv__top-title {
    font-size: 2.125rem;
  }
}

.p-mv__top-text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-mv__top-text {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
  }
}

.p-mv__sub-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.p-mv__sub-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #898989;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 1.25rem;
  }
}

.p-my-page {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
  padding: 30px 38px;
  padding: 1.875rem 2.375rem;
  background: #fff;
}

.p-my-page__link + .p-my-page__link {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-my-page__link a {
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
  display: inline-block;
}

.p-page {
  background: url(../images/common/bg-main.jpg) repeat-y center top/cover;
}
@media screen and (max-width: 767px) {
  .p-page {
    background: url(../images/common/bg-main-sp.jpg) repeat-y center top/cover;
  }
}

.p-profile__cat {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2;
  color: #98A6B5;
}

.p-profile__name {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-profile__text1 {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.69;
}

.p-profile__text2 {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.69;
}

.p-relation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-relation {
    display: block;
  }
}

.p-relation__text {
  font-size: 12px;
  font-size: 0.75rem;
  width: 120px;
  width: 7.5rem;
  color: #98A6B5;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-relation__text {
    width: 100%;
  }
}

.p-relation__body {
  margin-left: 11px;
  margin-left: 0.6875rem;
  width: calc(100% - 8.1875rem);
}
@media screen and (max-width: 767px) {
  .p-relation__body {
    margin-left: 0;
    margin-left: initial;
    width: 100%;
    margin-top: 0.625rem;
  }
}

.p-reports {
  position: relative;
  padding-bottom: 75px;
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-reports {
    padding-bottom: 6.25rem;
    margin-right: calc(50% - 50vw);
  }
}

.p-search-bar {
  border: 1px solid #D3D3D3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
}

.p-search-bar__input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 3px;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 10.3px 10px;
  padding: 0.64375rem 0.625rem;
  width: 100%;
  background-color: #fff;
}

.p-search-bar__btn {
  background-color: #fff;
}
.p-search-bar__btn img {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
}

.p-search-window {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
  padding: 161px 80px 138px;
  padding: 10.0625rem 5rem 8.625rem;
  background: url(../images/common/bg-seach-window.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-search-window {
    background: url(../images/common/bg-seach-window-sp.jpg) no-repeat center center/cover;
    padding: 4.375rem 1.875rem 6.25rem;
    height: 100vh;
    overflow-y: scroll;
  }
}

.p-search-window__title1 {
  text-align: center;
}

.p-search-window__input {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-search-window__check {
  margin-top: 35px;
  margin-top: 2.1875rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 22px;
  gap: 0.625rem 1.375rem;
}

.p-search-window__title2 {
  margin-top: 60.5px;
  margin-top: 3.78125rem;
  text-align: center;
}

.p-search-window__keyword {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-search-window__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-search-window__close {
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  border-radius: 50%;
  background: #DCE2E6;
  position: absolute;
  top: 29px;
  top: 1.8125rem;
  right: 38px;
  right: 2.375rem;
  z-index: 2;
  cursor: url(../images/common/cursor.png) 1 1, pointer;
}
@media screen and (max-width: 767px) {
  .p-search-window__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

.p-search-window__close span {
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.p-search-window__close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-search-window__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-send {
  padding: 207px 0 400px;
  padding: 12.9375rem 0 25rem;
}

.p-send__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#b9daf3), color-stop(70%, #004097));
  background: linear-gradient(90deg, #b9daf3 0%, #004097 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-send__title {
    font-size: 1.625rem;
  }
}

.p-send__text {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 37px;
  margin-top: 2.3125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-send__text {
    text-align: left;
  }
}

.p-send__link {
  text-align: center;
  margin-top: 37px;
  margin-top: 2.3125rem;
}
.p-send__link a {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: underline;
  color: #98A6B5;
}

.p-sentence__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3B4043;
}
.p-sentence__title span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sentence__title {
    font-size: 1.25rem;
  }
  .p-sentence__title span {
    font-size: 0.75rem;
  }
}

.p-sentence__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-sentence__title-sub::before {
  content: "";
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 2px;
  background: #4694D1;
  margin-right: 15px;
  margin-right: 0.9375rem;
}

.p-sentence__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-sentence__body {
    margin-top: 0.9375rem;
  }
}

.p-sentence__text-large {
  padding-top: 10px;
  padding-top: 0.625rem;
}

.p-sentence__lists {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-sentence__list {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.33;
  list-style: disc;
}
.p-sentence__list::marker {
  color: #898989;
}
.p-sentence__list:nth-child(n+2) {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-sentence__list {
    font-size: 0.8125rem;
  }
  .p-sentence__list:nth-child(n+2) {
    margin-top: 0.625rem;
  }
}

.p-service {
  width: 100%;
  background: #fff;
  padding: 67px 60px 60px;
  padding: 4.1875rem 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service {
    padding: 2.5rem 1.875rem;
  }
}

.p-service__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__block {
    margin-top: 1.5625rem;
  }
}

.p-service__column {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-service__column {
    margin-top: 1.5625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
  }
}

.p-service__column-item {
  width: calc(50% - 1.5625rem);
}
@media screen and (max-width: 767px) {
  .p-service__column-item {
    width: 100%;
  }
}

.p-service__body {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-service__body {
    margin-top: 2.5rem;
  }
}

.p-service__bottom {
  margin-top: 67px;
  margin-top: 4.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-service__bottom {
    display: block;
    margin-top: 2.5rem;
  }
}

.p-service__bottom-item1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 580px;
          flex: 0 1 580px;
  -ms-flex: 0 1 36.25rem;
      flex: 0 1 36.25rem;
}

.p-service__bottom-item2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 320px;
          flex: 0 1 320px;
  -ms-flex: 0 1 20rem;
      flex: 0 1 20rem;
}

.p-service__bottom-row + .p-service__bottom-row {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-service__bottom-row + .p-service__bottom-row {
    margin-top: 1.5625rem;
  }
}

.p-service__bottom-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__bottom-img {
    width: 55%;
    margin-left: auto;
  }
}

.p-service__copy {
  font-size: 18px;
  font-size: 1.125rem;
  color: #EA5504;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 38px;
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-service__copy {
    font-size: 0.875rem;
    margin-top: 1.5625rem;
    text-align: left;
  }
}

.p-service__btn {
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-service__btn {
    margin-top: 0.9375rem;
  }
}

.p-sign-window {
  width: 100%;
  max-width: 600px;
  max-width: 37.5rem;
  padding: 140px 50px 124px;
  padding: 8.75rem 3.125rem 7.75rem;
  position: relative;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .16);
          box-shadow: 0 0 6px rgba(0, 0, 0, .16);
  background: url(../images/common/bg-sign-window3.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-sign-window {
    padding: 4.375rem 1.875rem 6.25rem;
    height: 100vh;
    overflow-y: scroll;
    background: url(../images/common/bg-seach-window-sp.jpg) no-repeat center center/cover;
  }
}

.p-sign-window--sub {
  background: url(../images/common/bg-sign-window.jpg) no-repeat center center/cover;
  max-width: 100%;
  padding: 50px 50px 50px;
  padding: 3.125rem 3.125rem 3.125rem;
}

.p-sign-window--sub2 {
  background: url(../images/common/bg-sign-window2.jpg) no-repeat center center/cover;
  max-width: 100%;
  padding: 88px 50px 88px;
  padding: 5.5rem 3.125rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-sign-window--sub2 {
    background: url(../images/common/bg-sign-window2-sp.jpg) no-repeat center center/cover;
    padding: 2.125rem 1.5rem 2.125rem;
	height: auto;
    height: initial;
  }
}

.p-sign-window__contents--sub {
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  margin: auto;
}

.p-sign-window__title {
  text-align: center;
}

.p-sign-window__sub-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #98A6B5;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.p-sign-window__sub-title-link {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #98A6B5;
  margin-top: 10px;
  margin-top: 0.625rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-sign-window__sub-title-link {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}

.p-sign-window__head {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-sign-window__head-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  color: #898989;
}
.p-sign-window__head-title .second {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .p-sign-window__head-title {
    font-size: 1.0625rem;
    line-height: 1.1;
  }
}

.p-sign-window__head-title img {
  width: 191px;
  width: 11.9375rem;
  margin-right: 10px;
  margin-right: 0.625rem;
}
.p-sign-window__head-title img img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-sign-window__head-title img {
    width: 8.125rem;
  }
}

.p-sign-window__head-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.375;
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #EA5504;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sign-window__head-text {
    font-size: 0.875rem;
    text-align: left;
  }
}

.p-sign-window__body {
  margin-top: 37px;
  margin-top: 2.3125rem;
}

.p-sign-window__body--sub {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-sign-window__input input::-webkit-input-placeholder {
  color: #98A6B5;
}
.p-sign-window__input input::-moz-placeholder {
  color: #98A6B5;
}
.p-sign-window__input input::-ms-input-placeholder {
  color: #98A6B5;
}
.p-sign-window__input input::placeholder {
  color: #98A6B5;
}
.p-sign-window__input input:focus::-webkit-input-placeholder {
  color: transparent;
}
.p-sign-window__input input:focus::-moz-placeholder {
  color: transparent;
}
.p-sign-window__input input:focus::-ms-input-placeholder {
  color: transparent;
}
.p-sign-window__input input:focus::placeholder {
  color: transparent;
}

.p-sign-window__input + .p-sign-window__input {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-sign-window__recaptcha {
  margin-top: 23px;
  margin-top: 1.4375rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 280px;
  max-width: 17.5rem;
}

.p-sign-window__text-block {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.p-sign-window__text {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.8333;
}
.p-sign-window__text a {
	text-decoration: underline;
  }
.p-sign-window__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sign-window__btn {
    margin-top: 1.125rem;
  }
}

.p-sign-window__btn-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #98A6B5;
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sign-window__close {
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  border-radius: 50%;
  background: #DCE2E6;
  position: absolute;
  top: 29px;
  top: 1.8125rem;
  right: 38px;
  right: 2.375rem;
  z-index: 2;
  cursor: url(../images/common/cursor.png) 1 1, pointer;
}

.p-sign-window__close span {
  display: inline-block;
  width: 32px;
  width: 2rem;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.p-sign-window__close span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-sign-window__close span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-sns-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-sns-btn {
    gap: 0.3125rem;
  }
}

.p-sns-btn__item {
  padding: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-sns-btn__item {
    width: calc(33.3% - 0.20833rem);
  }
}

.p-sub-mv {
  margin-top: 118px;
  margin-top: 7.375rem;
  background: #fff;
  border-bottom: 2px solid #898989;
}

.p-sub-mv__body {
  padding: 67px 0 54px;
  padding: 4.1875rem 0 3.375rem;
}

.p-sub-mv__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}

.p-tab-menu {
  margin-top: -52px;
  margin-top: -3.25rem;
  border-bottom: 2px solid #D3D3D3;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-tab-menu {
    display: none;
  }
}

.p-tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-tabs {
    display: none;
  }
}

.p-tabs__item {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 217px;
		flex: 0 1 217px;
	-ms-flex: 0 1 18rem;
	flex: 0 1 18rem;display: block;
  padding: 0;
}

.p-tabs__home {
	-webkit-box-flex: 0;
	-ms-flex: 0 1 130px;
		flex: 0 1 130px;
-ms-flex: 0 1 12rem;
	flex: 0 1 12rem;
  display: block;
  padding: 0;
}

.p-up-block {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  -webkit-transform: translateY(101%);
          transform: translateY(101%);
  -webkit-transition: 2s;
  transition: 2s;
  display: none;
}

.p-up-block.is-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .p-up-block.is-up {
    -webkit-transform: translateY(-6rem);
            transform: translateY(-6rem);
  }
}

.p-up-block.is-footer {
  bottom: 322px;
  bottom: 20.125rem;
}

.pagination {
  margin: 0;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin-right: 23px;
  margin-right: 1.4375rem;
  color: #98A6B5;
  font-size: 16px;
  font-size: 1rem;
}

.pagination .current {
  color: #4694D1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.pagination .prev,
.pagination .next {
  background: #FAFAFA;
  border-radius: 10px;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  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;
}
.pagination .prev img,
.pagination .next img {
  width: 16px;
  width: 1rem;
}

.pagination .prev {
  margin-right: 34px;
  margin-right: 2.125rem;
}

.pagination .next {
  margin-left: 10px;
  margin-left: 0.625rem;
  margin-right: 0;
  margin-right: initial;
}

.pagination .dots {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.is-only-sp-active{
	display: none;
}
@media screen and (max-width:767px) {
	.is-only-sp-active{
		display: block;
	}
}


.p-reports .swiper-scrollbar-banner1,
.p-reports .swiper-scrollbar-banner2,
.p-reports .swiper-scrollbar-banner3,
.p-reports .swiper-scrollbar-banner4,
.p-reports .swiper-scrollbar-banner5 {
  position: absolute;
  bottom: 20px !important;
  bottom: 1.25rem !important;
  right: 64px !important;
  right: 4rem !important;
  left: auto !important;
  left: initial !important;
  width: 140px;
  width: 8.75rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-reports .swiper-scrollbar-banner1,
.p-reports .swiper-scrollbar-banner2,
.p-reports .swiper-scrollbar-banner3,
.p-reports .swiper-scrollbar-banner4,
.p-reports .swiper-scrollbar-banner5 {
    bottom: 3.875rem !important;
    right: auto !important;
    right: initial !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80%;
  }
}
.p-reports .swiper-scrollbar-banner1 .swiper-scrollbar-drag,
.p-reports .swiper-scrollbar-banner2 .swiper-scrollbar-drag,
.p-reports .swiper-scrollbar-banner3 .swiper-scrollbar-drag,
.p-reports .swiper-scrollbar-banner4 .swiper-scrollbar-drag,
.p-reports .swiper-scrollbar-banner5 .swiper-scrollbar-drag {
  background: #98A6B5;
}
.p-reports .swiper-button-next-banner1,
.p-reports .swiper-button-next-banner2,
.p-reports .swiper-button-next-banner3,
.p-reports .swiper-button-next-banner4,
.p-reports .swiper-button-next-banner5,
.p-reports .swiper-button-prev-banner1,
.p-reports .swiper-button-prev-banner2,
.p-reports .swiper-button-prev-banner3,
.p-reports .swiper-button-prev-banner4,
.p-reports .swiper-button-prev-banner5 {
  bottom: 0;
  top: auto;
  top: initial;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  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: #FAFAFA;
  border-radius: 10px;
}
.p-reports .swiper-button-next-banner1 img,
.p-reports .swiper-button-next-banner2 img,
.p-reports .swiper-button-next-banner3 img,
.p-reports .swiper-button-next-banner4 img,
.p-reports .swiper-button-next-banner5 img,
.p-reports .swiper-button-prev-banner1 img,
.p-reports .swiper-button-prev-banner2 img,
.p-reports .swiper-button-prev-banner3 img,
.p-reports .swiper-button-prev-banner4 img,
.p-reports .swiper-button-prev-banner5 img {
  width: 16px;
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .p-reports .swiper-button-next-banner1,
.p-reports .swiper-button-next-banner2,
.p-reports .swiper-button-next-banner3,
.p-reports .swiper-button-next-banner4,
.p-reports .swiper-button-next-banner5,
.p-reports .swiper-button-prev-banner1,
.p-reports .swiper-button-prev-banner2,
.p-reports .swiper-button-prev-banner3,
.p-reports .swiper-button-prev-banner4,
.p-reports .swiper-button-prev-banner5 {
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-reports .swiper-button-next-banner1 img,
.p-reports .swiper-button-next-banner2 img,
.p-reports .swiper-button-next-banner3 img,
.p-reports .swiper-button-next-banner4 img,
.p-reports .swiper-button-next-banner5 img,
.p-reports .swiper-button-prev-banner1 img,
.p-reports .swiper-button-prev-banner2 img,
.p-reports .swiper-button-prev-banner3 img,
.p-reports .swiper-button-prev-banner4 img,
.p-reports .swiper-button-prev-banner5 img {
    width: 0.875rem;
  }
}
.p-reports .swiper-button-next-banner1,
.p-reports .swiper-button-next-banner2,
.p-reports .swiper-button-next-banner3,
.p-reports .swiper-button-next-banner4,
.p-reports .swiper-button-next-banner5 {
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-reports .swiper-button-next-banner1,
.p-reports .swiper-button-next-banner2,
.p-reports .swiper-button-next-banner3,
.p-reports .swiper-button-next-banner4,
.p-reports .swiper-button-next-banner5 {
    left: calc(50% + 10px);
  }
}
.p-reports .swiper-button-prev-banner1,
.p-reports .swiper-button-prev-banner2,
.p-reports .swiper-button-prev-banner3,
.p-reports .swiper-button-prev-banner4,
.p-reports .swiper-button-prev-banner5 {
  right: 219px;
  right: 13.6875rem;
  left: auto;
  left: initial;
}
@media screen and (max-width: 767px) {
  .p-reports .swiper-button-prev-banner1,
.p-reports .swiper-button-prev-banner2,
.p-reports .swiper-button-prev-banner3,
.p-reports .swiper-button-prev-banner4,
.p-reports .swiper-button-prev-banner5 {
    right: calc(50% + 10px);
  }
}

.p-card-slide {
  position: relative;
}
.p-card-slide .swiper-scrollbar1,
.p-card-slide .swiper-scrollbar2,
.p-card-slide .swiper-scrollbar3,
.p-card-slide .swiper-scrollbar4,
.p-card-slide .swiper-scrollbar5,
.p-card-slide .swiper-scrollbar6,
.p-card-slide .swiper-scrollbar7,
.p-card-slide .swiper-scrollbar8,
.p-card-slide .swiper-scrollbar9,
.p-card-slide .swiper-scrollbar10,
.p-card-slide .swiper-scrollbar11,
.p-card-slide .swiper-scrollbar12,
.p-card-slide .swiper-scrollbar13,
.p-card-slide .swiper-scrollbar14 {
  display: none;
  bottom: 20px !important;
  bottom: 1.25rem !important;
  right: 64px !important;
  right: 4rem !important;
  left: auto !important;
  left: initial !important;
  width: 140px;
  width: 8.75rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-card-slide .swiper-scrollbar1,
.p-card-slide .swiper-scrollbar2,
.p-card-slide .swiper-scrollbar3,
.p-card-slide .swiper-scrollbar4,
.p-card-slide .swiper-scrollbar5,
.p-card-slide .swiper-scrollbar6,
.p-card-slide .swiper-scrollbar7,
.p-card-slide .swiper-scrollbar8,
.p-card-slide .swiper-scrollbar9,
.p-card-slide .swiper-scrollbar10,
.p-card-slide .swiper-scrollbar11,
.p-card-slide .swiper-scrollbar12,
.p-card-slide .swiper-scrollbar13,
.p-card-slide .swiper-scrollbar14 {
    position: absolute;
    display: block !important;
    bottom: 3.875rem !important;
    right: auto !important;
    right: initial !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80%;
  }
}
.p-card-slide .swiper-scrollbar1 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar2 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar3 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar4 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar5 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar6 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar7 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar8 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar9 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar10 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar11 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar12 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar13 .swiper-scrollbar-drag,
.p-card-slide .swiper-scrollbar14 .swiper-scrollbar-drag {
  background: #98A6B5;
}
.p-card-slide .swiper-button-next1,
.p-card-slide .swiper-button-next2,
.p-card-slide .swiper-button-next3,
.p-card-slide .swiper-button-next4,
.p-card-slide .swiper-button-next5,
.p-card-slide .swiper-button-next6,
.p-card-slide .swiper-button-next7,
.p-card-slide .swiper-button-next8,
.p-card-slide .swiper-button-next9,
.p-card-slide .swiper-button-next10,
.p-card-slide .swiper-button-next11,
.p-card-slide .swiper-button-next12,
.p-card-slide .swiper-button-next13,
.p-card-slide .swiper-button-next14,
.p-card-slide .swiper-button-prev1,
.p-card-slide .swiper-button-prev2,
.p-card-slide .swiper-button-prev3,
.p-card-slide .swiper-button-prev4,
.p-card-slide .swiper-button-prev5,
.p-card-slide .swiper-button-prev6,
.p-card-slide .swiper-button-prev7,
.p-card-slide .swiper-button-prev8,
.p-card-slide .swiper-button-prev9,
.p-card-slide .swiper-button-prev10,
.p-card-slide .swiper-button-prev11,
.p-card-slide .swiper-button-prev12,
.p-card-slide .swiper-button-prev13,
.p-card-slide .swiper-button-prev14 {
  display: none;
  bottom: 0;
  top: auto;
  top: initial;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FAFAFA;
  border-radius: 10px;
}
.p-card-slide .swiper-button-next1 img,
.p-card-slide .swiper-button-next2 img,
.p-card-slide .swiper-button-next3 img,
.p-card-slide .swiper-button-next4 img,
.p-card-slide .swiper-button-next5 img,
.p-card-slide .swiper-button-next6 img,
.p-card-slide .swiper-button-next7 img,
.p-card-slide .swiper-button-next8 img,
.p-card-slide .swiper-button-next9 img,
.p-card-slide .swiper-button-next10 img,
.p-card-slide .swiper-button-next11 img,
.p-card-slide .swiper-button-next12 img,
.p-card-slide .swiper-button-next13 img,
.p-card-slide .swiper-button-next14 img,
.p-card-slide .swiper-button-prev1 img,
.p-card-slide .swiper-button-prev2 img,
.p-card-slide .swiper-button-prev3 img,
.p-card-slide .swiper-button-prev4 img,
.p-card-slide .swiper-button-prev5 img,
.p-card-slide .swiper-button-prev6 img,
.p-card-slide .swiper-button-prev7 img,
.p-card-slide .swiper-button-prev8 img,
.p-card-slide .swiper-button-prev9 img,
.p-card-slide .swiper-button-prev10 img,
.p-card-slide .swiper-button-prev11 img,
.p-card-slide .swiper-button-prev12 img,
.p-card-slide .swiper-button-prev13 img,
.p-card-slide .swiper-button-prev14 img {
  width: 16px;
  width: 1rem;
}
@media screen and (max-width: 767px) {
  .p-card-slide .swiper-button-next1,
.p-card-slide .swiper-button-next2,
.p-card-slide .swiper-button-next3,
.p-card-slide .swiper-button-next4,
.p-card-slide .swiper-button-next5,
.p-card-slide .swiper-button-next6,
.p-card-slide .swiper-button-next7,
.p-card-slide .swiper-button-next8,
.p-card-slide .swiper-button-next9,
.p-card-slide .swiper-button-next10,
.p-card-slide .swiper-button-next11,
.p-card-slide .swiper-button-next12,
.p-card-slide .swiper-button-next13,
.p-card-slide .swiper-button-next14,
.p-card-slide .swiper-button-prev1,
.p-card-slide .swiper-button-prev2,
.p-card-slide .swiper-button-prev3,
.p-card-slide .swiper-button-prev4,
.p-card-slide .swiper-button-prev5,
.p-card-slide .swiper-button-prev6,
.p-card-slide .swiper-button-prev7,
.p-card-slide .swiper-button-prev8,
.p-card-slide .swiper-button-prev9,
.p-card-slide .swiper-button-prev10,
.p-card-slide .swiper-button-prev11,
.p-card-slide .swiper-button-prev12,
.p-card-slide .swiper-button-prev13,
.p-card-slide .swiper-button-prev14 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
  }
  .p-card-slide .swiper-button-next1 img,
.p-card-slide .swiper-button-next2 img,
.p-card-slide .swiper-button-next3 img,
.p-card-slide .swiper-button-next4 img,
.p-card-slide .swiper-button-next5 img,
.p-card-slide .swiper-button-next6 img,
.p-card-slide .swiper-button-next7 img,
.p-card-slide .swiper-button-next8 img,
.p-card-slide .swiper-button-next9 img,
.p-card-slide .swiper-button-next10 img,
.p-card-slide .swiper-button-next11 img,
.p-card-slide .swiper-button-next12 img,
.p-card-slide .swiper-button-next13 img,
.p-card-slide .swiper-button-next14 img,
.p-card-slide .swiper-button-prev1 img,
.p-card-slide .swiper-button-prev2 img,
.p-card-slide .swiper-button-prev3 img,
.p-card-slide .swiper-button-prev4 img,
.p-card-slide .swiper-button-prev5 img,
.p-card-slide .swiper-button-prev6 img,
.p-card-slide .swiper-button-prev7 img,
.p-card-slide .swiper-button-prev8 img,
.p-card-slide .swiper-button-prev9 img,
.p-card-slide .swiper-button-prev10 img,
.p-card-slide .swiper-button-prev11 img,
.p-card-slide .swiper-button-prev12 img,
.p-card-slide .swiper-button-prev13 img,
.p-card-slide .swiper-button-prev14 img {
    width: 0.875rem;
  }
}
.p-card-slide .swiper-button-next1,
.p-card-slide .swiper-button-next2,
.p-card-slide .swiper-button-next3,
.p-card-slide .swiper-button-next4,
.p-card-slide .swiper-button-next5,
.p-card-slide .swiper-button-next6,
.p-card-slide .swiper-button-next7,
.p-card-slide .swiper-button-next8,
.p-card-slide .swiper-button-next9,
.p-card-slide .swiper-button-next10,
.p-card-slide .swiper-button-next11,
.p-card-slide .swiper-button-next12,
.p-card-slide .swiper-button-next13,
.p-card-slide .swiper-button-next14 {
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-card-slide .swiper-button-next1,
.p-card-slide .swiper-button-next2,
.p-card-slide .swiper-button-next3,
.p-card-slide .swiper-button-next4,
.p-card-slide .swiper-button-next5,
.p-card-slide .swiper-button-next6,
.p-card-slide .swiper-button-next7,
.p-card-slide .swiper-button-next8,
.p-card-slide .swiper-button-next9,
.p-card-slide .swiper-button-next10,
.p-card-slide .swiper-button-next11,
.p-card-slide .swiper-button-next12,
.p-card-slide .swiper-button-next13,
.p-card-slide .swiper-button-next14 {
    left: calc(50% + 10px);
  }
}
.p-card-slide .swiper-button-prev1,
.p-card-slide .swiper-button-prev2,
.p-card-slide .swiper-button-prev3,
.p-card-slide .swiper-button-prev4,
.p-card-slide .swiper-button-prev5,
.p-card-slide .swiper-button-prev6,
.p-card-slide .swiper-button-prev7,
.p-card-slide .swiper-button-prev8,
.p-card-slide .swiper-button-prev9,
.p-card-slide .swiper-button-prev10,
.p-card-slide .swiper-button-prev11,
.p-card-slide .swiper-button-prev12,
.p-card-slide .swiper-button-prev13,
.p-card-slide .swiper-button-prev14,
.p-card-slide .swiper-button-prev15 {
  right: 219px;
  right: 13.6875rem;
  left: auto;
  left: initial;
}
@media screen and (max-width: 767px) {
  .p-card-slide .swiper-button-prev1,
.p-card-slide .swiper-button-prev2,
.p-card-slide .swiper-button-prev3,
.p-card-slide .swiper-button-prev4,
.p-card-slide .swiper-button-prev5,
.p-card-slide .swiper-button-prev6,
.p-card-slide .swiper-button-prev7,
.p-card-slide .swiper-button-prev8,
.p-card-slide .swiper-button-prev9,
.p-card-slide .swiper-button-prev10,
.p-card-slide .swiper-button-prev11,
.p-card-slide .swiper-button-prev12,
.p-card-slide .swiper-button-prev13,
.p-card-slide .swiper-button-prev14,
.p-card-slide .swiper-button-prev15 {
    right: calc(50% + 10px);
  }
}

.l-contact {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .l-contact {
    margin-top: 0;
    margin-top: initial;
  }
}

.l-inner {
  width: 100%;
  max-width: 1075px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 33.75rem;
    padding-right: 23px;
    padding-left: 23px;
  }
}

.l-parts {
  background: #F1F1F1;
}

.l-parts__sec {
  margin-top: 100px;
  margin-top: 6.25rem;
}
/*# sourceMappingURL=styles.css.map */
.c-cursor{
	cursor: url(../images/common/cursor.png) 1 1, pointer;
}
/* Loading Block */
	#loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		background-color: #004097;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
	}
	.loader {
		position: absolute;
		top: 50%;
		left: 50%;
		color: #ffffff;
		font-size: 90px;
		text-indent: -9999em;
		overflow: hidden;
		width: 1em;
		height: 1em;
		border-radius: 50%;
		position: relative;
		-webkit-transform: translate(-50%,-50%,0);
		-ms-transform: translate(-50%,-50%,0);
		transform: translate(-50%,-50%,0);
		-webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
		animation: load6 1.7s infinite ease, round 1.7s infinite ease;
		}
		@-webkit-keyframes load6 {
		0% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		5%,
		95% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		10%,
		59% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
		}
		20% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
		}
		38% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
		}
		100% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		}
		@keyframes load6 {
		0% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		5%,
		95% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		10%,
		59% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
		}
		20% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
		}
		38% {
			box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
		}
		100% {
			box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
		}
		}
		@-webkit-keyframes round {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
		}
		}
		@keyframes round {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg);
		}
		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg);
		}
		}
	/* Hide Loading Block */
	.loaded {
		opacity: 0;
		visibility: hidden;
	}
	#toc_container{
		margin-top: 30px;
		margin-bottom: 50px;
	}
	@media screen and (max-width:767px){
		.c-pick{
		height:50vw;
	}
	}
	/*comment*/
	.comment-metadata{
		display: none;
		visibility: hidden;
	}
	.comment-author .fn{
		margin-left: 1rem;
		color: #98A6B5;
	}
	.comment-author .says{
		display: none;
		visibility: hidden;
	}
	.comment{
		list-style: none;
	}
	.comment-author img{
		width: 4rem;
		height: 4rem;
		border-radius: 50%;
	}
	.comment-author{
		display: flex;
	}
	.comment-awaiting-moderation{
		display: block;
    margin-top: -2rem;
    margin-bottom: 2rem;
    margin-left: 5rem;
	}
	.comment-content{
		margin-top: -2rem;
		margin-bottom: 2rem;
		margin-left: 5rem;
	}
	.reply{
		margin-top: 0;
		float: right;
		display: inline;
		padding: 0.5rem 1rem;
		background: #004097;
		color: white;
		border-radius: 10px;
		display: none;
		visibility: hidden;
	}
	.form-submit{
		margin-bottom: 1rem;
		margin-top: 1rem;
		text-align: right;
	}
	.form-submit input[type="submit"]{
		margin-top: 0;
		padding: 0.5rem 1rem;
		background: #004097;
		color: white;
		border-radius: 10px;
	}
	.logged-in-as{
		display: none;
		visibility: hidden;
	}
	.p-comment__head-img{
		width: 4rem;
		height: 4rem;
		background-color: #EA5504;
		border-radius: 50%;
	}
	.p-comment__head-img img{
		height: 1.25rem;
		width: 1.25rem;
	}
	.p-comment__head-img img.has_aveter{
		height: inherit;
		width: inherit;
	}
	.comment-area-title{
		font-size: 1.25rem;
		font-weight: 900;
		margin-bottom: 0.5rem;
		margin-top: 2rem;
	}
	.comment-respond{

	}