@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/* ***************************
 Reset Extenstion
*************************** */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

main {
  display: block;
}

template,
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed !important;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: inherit;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: inherit;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

html {
  font-size: 15px;
  line-height: 28px;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
    line-height: 26px;
  }
}
body {
  overflow-x: hidden;
  font: inherit;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #384a60;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  font: inherit;
}

.p-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3333333333rem;
  line-height: 1.25;
}

.l-body {
  max-width: 1280px;
  margin: 0 auto;
}

.l-aside {
  position: fixed;
  top: 50vh;
  left: 50%;
  width: 372px;
  -webkit-transform: translate(-451px, -50%);
  transform: translate(-451px, -50%);
}
@media screen and (max-width: 910px) {
  .l-aside {
    display: none;
  }
}

.l-main {
  position: absolute;
  top: 0;
  right: 50%;
  width: 480px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #c8e0ff;
  box-shadow: 0px 0px 10px #c8e0ff;
  -webkit-transform: translateX(451px);
  transform: translateX(451px);
}
@media screen and (max-width: 910px) {
  .l-main {
    position: static;
    top: 0;
    right: 0;
    width: 375px;
    margin: 0 auto;
    margin-bottom: 70px;
    -webkit-transform: none;
    transform: none;
  }
}
@media screen and (max-width: 375px) {
  .l-main {
    width: 100%;
  }
}

.c-title {
  position: relative;
  padding-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
}

.c-title--lg {
  padding-bottom: 15px;
  font-size: 24px;
}

.c-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 3px;
  content: "";
  background-color: #166fd8;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-title .accent {
  color: #166fd8;
}

.p-sidebar {
  padding: 30px 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #c8e0ff;
  box-shadow: 0px 0px 10px #c8e0ff;
}

.p-sidebar__img {
  text-align: center;
}

.p-sidebar__nav {
  padding: 0 40px;
}

.p-sidebar__list {
  margin-top: 30px;
}

.p-sidebar__item.is-current {
  padding-left: 17px;
}

.p-sidebar__item:not(:first-child) {
  margin-top: 20px;
}

.p-sidebar__link {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(56, 74, 96, 0.6);
  text-decoration: none;
}

.p-sidebar__item.is-current .p-sidebar__link {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #384a60;
}

.p-sidebar__item.is-current .p-sidebar__link:before {
  position: absolute;
  top: 50%;
  left: -17px;
  width: 6.86px;
  height: 11.63px;
  content: "";
  background-image: url(../images/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-sidebar__tel {
  display: block;
  margin-top: 30px;
}

.p-sidebar__line {
  display: block;
  margin-top: 10px;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-image: url(../images/pc_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p-spCta {
  display: none;
}
@media screen and (max-width: 910px) {
  .p-spCta {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 20;
    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;
    width: 100%;
    padding-left: 10px;
    pointer-events: none;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

@media screen and (max-width: 910px) {
  .p-spCta.is-show {
    pointer-events: visible;
    opacity: 1;
  }
}

.p-cremationMethod {
  padding-bottom: 40px;
}

.p-cremationMethod__card {
  padding: 0 17px;
}

.p-cardPrice {
  padding: 0px 10px 27px;
  border: 1px solid #166fd8;
}

.p-cardPrice.p-cardPrice--light {
  border: 1px solid #169ed8;
}

.p-cardPrice.p-cardPrice--purple {
  border: 1px solid #7679d1;
}

.p-cardPrice:not(:first-child) {
  margin-top: 40px;
}

.p-cremationMethod__text {
  padding: 38px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #384a60;
  text-align: center;
}

.p-cardPrice__title {
  width: calc(100% + 20px);
  padding: 11px 0;
  margin-left: -10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  color: #fff;
  text-align: center;
  background: #166fd8;
}

.p-cardPrice.p-cardPrice--light .p-cardPrice__title {
  background: #169ed8;
}

.p-cardPrice.p-cardPrice--purple .p-cardPrice__title {
  background: #7679d1;
}

.p-cardPrice__img {
  margin-top: 9px;
}

.p-cardPrice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 21px;
}
@media screen and (max-width: 910px) {
  .p-cardPrice__list {
    -webkit-column-gap: 9px;
    -moz-column-gap: 9px;
    column-gap: 9px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.p-cardPrice__item {
  padding: 2px 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  background-color: #666666;
  border-radius: 100px;
}

.p-cardPrice__item.p-cardPrice__item--thin {
  background-color: #dddddd;
}

.p-cardPrice__price {
  margin-top: 10px;
  text-align: center;
}

.p-cardPrice__description {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.p-cardPrice__notes {
  margin-top: 9px;
}

.p-cardPrice__note {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
}

.p-cardPrice__note:before {
  position: absolute;
  left: 0px;
  display: block;
  width: 12px;
  height: 12px;
  content: "※";
}

.p-visit {
  background: #fff4e3;
}

.p-visit__inner {
  padding: 30px 17.5px;
}

.p-visit__head {
  padding: 20px 10px;
  background: #eba133;
}

.p-visit__title {
  text-align: center;
}

.p-visit__title__text {
  display: block;
  font-family: Zen Kaku Gothic New;
  font-weight: 700;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.2916666667;
}

.p-visit__title__textSm {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 1.0666666667rem;
  line-height: 1.6;
}

.p-visit__main {
  padding: 10px 10px 30px;
  background-color: #fff;
  border: 1px solid #eba133;
}

.p-visit__img {
  width: 100%;
}

.p-visit__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-visit__content {
  margin-top: 30px;
}

.p-visit__text:not(:first-child) {
  margin-top: 30px;
}

.p-cva {
  position: relative;
}

.p-cva__tell {
  position: absolute;
  bottom: 28%;
  left: 50%;
  width: 345px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-cva__line {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 345px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-reien {
  padding: 20px 17.5px;
}

.p-reien__img:not(:first-child) {
  margin-top: 10px;
}

.present {
  padding: 20px 17.5px;
}

.p-other {
  padding: 30px 17.5px 0px;
  background: #f8fafc;
}

.p-other__list {
  margin-top: 30px;
}

.p-other__item:not(first-child) {
  margin-top: 27px;
}

.p-other__text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.p-other__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
  overflow: hidden;
  background: #fefaf1;
  border: 1px solid #899bb0;
  border-radius: 5px;
}

.p-other__card--bgPrimary {
  background: #f0fbfd;
}

.p-other__img {
  width: 120px;
}

.p-other__content {
  width: calc(100% - 120px);
  padding: 18.5px 20px;
}

.p-other__description {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.p-other__price {
  padding: 10px 0;
  margin-top: 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  color: #a97b13;
  text-align: center;
  background-color: #fff;
}

.p-other__note {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
}

.p-other__detail {
  padding: 10px 10px;
  margin-top: 5px;
  font-size: 12px;
  line-height: 17px;
  color: #51650e;
  text-align: center;
  background-color: #fff;
}

.p-other__contact {
  width: calc(100% + 35px);
  margin-top: 27px;
  margin-bottom: -2px;
  margin-left: -17.5px;
}

.p-other__contact img {
  width: 100%;
}

.p-reason {
  z-index: -2;
  padding: 60px 0;
  background-image: url("../images/reason_bg.png");
}

.p-reason__heading {
  text-align: center;
}

.p-reason__title {
  position: relative;
  margin-top: 26px;
  text-align: center;
}

.p-reason__title img {
  position: relative;
  z-index: 1;
}

.p-reason__title:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 36px;
  content: "";
  background: #fff;
}

.p-reason__list {
  padding: 23px 17.5px 40px;
  background: #fff;
}

.p-reason__item:not(:first-child) {
  margin-top: 41px;
}

.p-reason__description {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #bd9432;
}

.p-reason__description:before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("../images/icon_checkbox.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-reason__detail {
  margin-top: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #2d2d2d;
}

.p-kinds {
  padding: 60px 17.5px;
  background-color: #e6f2fd;
}

.p-kinds__body {
  padding: 40px 20px;
  background-color: #fff;
}

.p-kinds__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  -webkit-column-gap: 28px;
  -moz-column-gap: 28px;
  column-gap: 28px;
  margin-top: 30px;
}

.p-kinds__description {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.p-kinds__note {
  font-size: 12px;
  line-height: 13px;
}

.p-kinds__text {
  margin-top: 28px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.p-difference {
  margin-bottom: -7px;
  background-image: url("../images/difference_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.p-difference__body {
  padding: 40px 17.5px 60px;
}

.p-difference__text {
  font-size: 16px;
  line-height: 26px;
}

.p-difference__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 21px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 39px;
}

.p-difference__item {
  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;
  width: calc((100% - 42px) / 3);
  min-width: 99.328px;
  aspect-ratio: 1;
  background-color: #166fd8;
  border-radius: 100px;
}

.p-difference__description {
  padding: 26.5px 3px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #fff;
  text-align: center;
}

.p-difference__description .sm {
  font-size: 12px;
}

.p-difference__description .lg {
  font-size: 20px;
}

.p-difference__description .note {
  display: inline-block;
  font-size: 10px;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.p-difference__note {
  margin-top: 7px;
  font-size: 12px;
  font-style: normal;
  line-height: 13px;
  text-align: right;
}

.p-difference__cards {
  margin-top: 39px;
}

.p-difference__card {
  padding: 30px 18px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px #c8e0ff;
  box-shadow: 0px 0px 10px #c8e0ff;
}

.p-difference__card:not(:first-child) {
  margin-top: 40px;
}

.p-difference__card__title {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #166fd8;
}

.p-difference__card__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url("../images/icon_checkbox_circle.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-difference__card__img {
  margin-top: 10px;
  text-align: center;
}

.p-difference__card__description {
  margin-top: 10px;
}

.p-price {
  padding: 62px 17.5px;
}

.p-price__body {
  margin-top: 39px;
}

.p-price__group {
  border: 1px solid #dce4ee;
  border-radius: 10px;
}

.p-price__group .p-price__tables {
  display: none;
}

.p-price__group.is-open .p-price__tables {
  display: block;
}

.p-price__group:not(:first-child) {
  margin-top: 41px;
}

.p-price__heading {
  position: relative;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
}

.p-price__heading:before {
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 15px;
  height: 1px;
  content: "";
  background-color: #384a60;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.p-price__heading:after {
  position: absolute;
  top: 50%;
  right: 30px;
  display: block;
  width: 15px;
  height: 1px;
  content: "";
  background-color: #384a60;
}

.p-price__group.is-open .p-price__heading:before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-price__tables {
  padding: 0 20px 20px 20px;
}

.p-price__table {
  border: 1px solid #dce4ee;
}

.p-price__table:not(:first-child) {
  margin-top: 18px;
}

.p-price__category {
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  background: #f3f6f9;
}

.p-price__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 19.5px 9px;
}

.p-price__list:not(:first-child) {
  border-top: 1px solid #dce4ee;
}

.p-price__item {
  width: 174px;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  background: #dce4ee;
}

.p-price__item.p-price__item--empty {
  background: #fff;
}

.p-price__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 174px);
  font-size: 16px;
  line-height: 26px;
  text-align: right;
}

.p-price__item__list {
  background-color: #fff;
}

.p-price__item__item {
  background-color: #dce4ee;
}

.p-price__item__item:not(:first-child) {
  margin-top: 10px;
}

.p-flow {
  padding-bottom: 60px;
}

.p-flow__body {
  padding: 40px 17.5px 0px;
}

.p-flow__item {
  padding: 26px 20px;
  background: #f5faff;
}

.p-flow__item:not(:first-child) {
  margin-top: 36px;
}

.p-flow__img {
  text-align: center;
}

.p-flow__text {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.p-flow__supply {
  padding: 10px 12px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  background-color: #fff;
}

.p-flow__supply__img {
  width: 145.75px;
  margin: 0 auto;
}

.p-voice {
  padding: 72px 17.5px;
  background: -webkit-linear-gradient(89.64deg, rgba(215, 236, 242, 0.8) 0.42%, rgba(249, 253, 255, 0.8) 99.86%);
  background: linear-gradient(0.36deg, rgba(215, 236, 242, 0.8) 0.42%, rgba(249, 253, 255, 0.8) 99.86%);
}

.p-voice__heading {
  text-align: center;
}

.p-voice__title {
  position: relative;
  margin-top: 39px;
  text-align: center;
}

.p-voice__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 40px;
}

.p-voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 10px 17px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(56, 74, 96, 0.2);
  box-shadow: 0px 0px 10px rgba(56, 74, 96, 0.2);
}

.p-voice__img {
  text-align: center;
}

.p-voice__text {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
}

.p-voice__name {
  margin-top: 10px;
  font-size: 12px;
  line-height: 13px;
  text-align: center;
}

.p-goods {
  padding: 60px 17.5px;
}

.p-goods__text {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.p-goods__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  margin-top: 40px;
}

.p-goods__name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.p-goods__description {
  font-size: 12px;
  line-height: 13px;
}

.p-goods__cta {
  position: relative;
  margin-top: 40px;
}

.p-goods__cta__img {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.p-goods__cta__btnWrap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 242px;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.p-goods__cta__btn {
  padding: 10px 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #166fd8;
  border-radius: 100px;
}

.p-faq {
  padding: 20px 17.5px 60px;
}

.p-faq__list {
  margin-top: 40px;
}

.p-faq__group {
  border: solid 1px #dce4ee;
}

.p-faq__group:not(:first-child) {
  margin-top: 39px;
}

.p-faq__item {
  position: relative;
  padding: 19px 20px 19px 59px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 26px;
  background-color: #f3f6f9;
}

.p-faq__item:before {
  position: absolute;
  top: 33px;
  left: 19px;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../images/icon_question.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-faq__description {
  position: relative;
  padding: 19px 20px 19px 59px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 26px;
  border-top: 1px solid #dce4ee;
}

.p-faq__description:before {
  position: absolute;
  top: 33px;
  left: 19px;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../images/icon_answer.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-footer {
  text-align: center;
  background-color: #384a60;
}

.p-footer__copyright {
  font-size: 12px;
  line-height: 13px;
  color: #fff;
}

/*---------------------------------
 component
 ---------------------------------*/
/*---------------------------------
 project
 ---------------------------------*/
/*---------------------------------
 section
 ---------------------------------*/
/*---------------------------------
 utility
 ---------------------------------*/

/*# sourceMappingURL=styles.css.map */