@charset "UTF-8";
/* Scss Document */
/*------------- reset -------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  transition: all 0.5s ease-out;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*------------- base -------------*/
body {
  color: #1f2740;
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  -webkit-text-size-adjust: none;
  position: relative;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

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

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  padding: 0px;
  margin: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  outline: none;
  text-decoration: none;
  color: #212020;
}

a:hover {
  transition: all 0.3s ease-out;
}

a:hover {
  opacity: 0.6;
}

.clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* end MacIE5 */
.clear {
  clear: both;
}

.slick-slider div {
  transition: none;
}

/*------------- layout -------------*/
.l-inner {
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
  width: 1140px;
}

.l-header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0px;
  left: 0px;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header .logo {
  width: 184px;
}
.l-header li {
  margin-left: 20px;
}
.l-header li a {
  background: #122b72;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  padding: 18px 30px;
  line-height: 1;
  display: inline-block;
  min-width: 160px;
}
.l-header li a.contact {
  background: #ead053;
  color: #1f2740;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 10px 20px;
    justify-content: center;
  }
  .l-header .logo {
    width: 92px;
  }
  .l-header ul {
    display: none;
  }
}

.l-fix-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-fix-btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 14px;
    z-index: 100;
  }
  .l-fix-btn ul {
    display: flex;
    gap: 7px;
  }
  .l-fix-btn ul li {
    background: #122b72;
    border-radius: 6px;
    text-align: center;
    padding: 10px 10px;
    line-height: 1;
    display: inline-block;
    width: 40%;
  }
  .l-fix-btn ul li.contact {
    background: #ead053;
    width: 20%;
  }
  .l-fix-btn ul li.contact a {
    font-size: 9px;
    color: #1f2740;
  }
  .l-fix-btn ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    line-height: 1.5;
  }
}

.l-footer {
  padding: 60px 0 30px;
  background: #fff;
  border-top: 8px solid #122b72;
  margin-top: 80px;
  /*------------- スマホ用CSS（集約版） -------------*/
}
.l-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.l-footer-info {
  text-align: left;
}
.l-footer-logo {
  width: 200px;
  margin-bottom: 25px;
}
.l-footer-logo img {
  width: 100%;
  height: auto;
}
.l-footer-address {
  font-size: 15px;
  line-height: 1.8;
  color: #1f2740;
}
.l-footer-links {
  text-align: right;
}
.l-footer-banner {
  width: 208px;
  margin-bottom: 15px;
  display: inline-block;
  transition: opacity 0.3s;
}
.l-footer-banner img {
  width: 100%;
  height: auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.l-footer-banner:hover {
  opacity: 0.8;
}
.l-footer-nav a {
  font-size: 14px;
  color: #1f2740;
  text-decoration: none;
}
.l-footer-nav a:hover {
  text-decoration: underline;
}
.l-footer-copyright {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 30px 0 120px;
    border-top: 4px solid #122b72;
    margin-top: 40px;
  }
  .l-footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  .l-footer-info {
    text-align: center;
    margin-bottom: 30px;
  }
  .l-footer-logo {
    width: 190px;
    margin: 0 auto 20px;
  }
  .l-footer-address {
    font-size: 12px;
  }
  .l-footer-links {
    text-align: center;
    width: 100%;
  }
  .l-footer-banner {
    width: 100%;
    max-width: 280px;
  }
  .l-footer-nav {
    margin-top: 10px;
  }
  .l-footer-copyright {
    font-size: 12px;
    padding-top: 0px;
  }
}

.l-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #333;
  color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}
.l-cookie-banner.is-show {
  display: block;
  animation: slideUp 0.4s ease-out;
}
.l-cookie-banner__content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.l-cookie-banner__content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}
.l-cookie-banner__content p a {
  color: #3498db;
  text-decoration: underline;
}
.l-cookie-banner__content p a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-cookie-banner__content {
    flex-direction: column;
  }
}
.l-cookie-banner__buttons {
  width: 100%;
  display: flex;
  justify-content: center;
}
.l-cookie-banner__btn {
  appearance: none;
  border: none;
  background-color: #007bff;
  color: #fff;
  padding: 12px 60px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.l-cookie-banner__btn:hover {
  background-color: #0056b3;
}
.l-cookie-banner__btn:active {
  transform: translateY(1px);
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*------------- component -------------*/
.c-flexPC {
  display: flex;
  justify-content: space-between;
}
.c-flexPC--alceter {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-flexPC {
    display: block;
  }
}

.c-flexSP {
  display: flex;
}

/*------------- top -------------*/
.p-fv {
  background-image: url("../img/fv_bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  display: flex;
  justify-content: end;
  text-align: right;
}
.p-fv .textArea {
  display: inline-block;
  width: 726px;
  max-width: 100%;
  padding: 100px 0 60px;
}
.p-fv .textArea .text02 {
  margin-top: 10px;
  align-items: center;
}
.p-fv .textArea .text02 .achievement {
  background: linear-gradient(45deg, #f59c34, #f0b66a, #edc88f, #f59c34);
  border-radius: 13px;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 14px 14px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  align-items: center;
}
.p-fv .textArea .text02 .achievement img {
  width: 54px;
}
.p-fv .textArea .text02 .achievement p {
  margin-left: 5px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}
.p-fv .textArea .text02 .achievement span {
  font-size: 30px;
}
.p-fv .textArea .text02 .achievement strong {
  font-size: 49px;
}
.p-fv .textArea .text02 .text02-02 {
  text-align: right;
  font-size: 17px;
  font-weight: bold;
  color: #122b72;
}
.p-fv .textArea .text02 .text02-02 span {
  margin-right: 2em;
}
.p-fv .textArea ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fv .textArea ul li {
  width: 162px;
  height: 162px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddbc21;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
}
.p-fv .textArea ul li:nth-child(2) {
  margin: 0 20px;
}
.p-fv .textArea ul li p {
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-fv .textArea ul li p span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-fv {
    background-position: top center;
  }
  .p-fv .textArea {
    padding: 0px 0 0px;
    margin-top: 90vw;
  }
  .p-fv .textArea .text02 {
    margin-top: 10px;
    align-items: center;
  }
  .p-fv .textArea .text02 .achievement {
    font-size: 11px;
    padding: 10px;
  }
  .p-fv .textArea .text02 .achievement img {
    width: 24px;
  }
  .p-fv .textArea .text02 .achievement p {
    margin-left: 5px;
  }
  .p-fv .textArea .text02 .achievement span {
    font-size: 13px;
  }
  .p-fv .textArea .text02 .achievement strong {
    font-size: 21px;
  }
  .p-fv .textArea .text02 .text02-02 {
    font-size: 11px;
  }
  .p-fv .textArea ul {
    margin-top: 10px;
  }
  .p-fv .textArea ul li {
    width: 100px;
    height: 100px;
  }
  .p-fv .textArea ul li:nth-child(2) {
    margin: 0 10px;
  }
  .p-fv .textArea ul li p {
    font-size: 15px;
  }
  .p-fv .textArea ul li p span {
    font-size: 10px;
  }
}

.p-banner {
  margin: 43px auto;
  text-align: center;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .p-banner {
    margin: 15px auto 30px;
  }
}

.p-trouble .upper {
  background: url("../img/bg_trouble_upper.jpg") top center no-repeat;
  background-size: cover;
  padding: 120px 0 160px;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 100px), 50% 100%, 0% calc(100% - 100px));
  position: relative;
}
.p-trouble .upper .image01 {
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-370px);
}
.p-trouble .upper .image02 {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-550px);
}
.p-trouble .upper .image03 {
  position: absolute;
  left: 50%;
  bottom: 230px;
  transform: translateX(230px);
}
.p-trouble .upper h2 {
  text-align: center;
  font-weight: bold;
  font-size: 31px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.p-trouble .upper h2 strong {
  font-size: 42px;
  color: #122b72;
}
.p-trouble .upper ul li p {
  background: #122b72;
  border-radius: 50px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  color: #fff;
  width: 542px;
  max-width: 100%;
  margin: 0 auto 26px;
  position: relative;
  z-index: 1;
}
.p-trouble .lower {
  background: url("../img/bg_trouble_lower.jpg") top center no-repeat;
  background-size: cover;
  padding: 134px 0 60px;
  margin-top: -100px;
}
.p-trouble .lower .lower-contents {
  justify-content: center;
  align-items: center;
}
.p-trouble .lower .lower-contents .image01 {
  width: 247px;
  box-shadow: 10px 10px 0 #ead053;
}
.p-trouble .lower .lower-contents p {
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  margin-left: 80px;
}
.p-trouble .lower .lower-contents p .text02 {
  position: relative;
  font-size: 64px;
  display: inline-block;
  margin-right: 30px;
}
.p-trouble .lower .lower-contents p .text02 img {
  width: 27px;
  position: absolute;
}
.p-trouble .lower .lower-contents p .text02 .assets01 {
  left: -22px;
  top: 10px;
}
.p-trouble .lower .lower-contents p .text02 .assets02 {
  right: -22px;
  bottom: 10px;
  transform: rotate(155deg);
}
.p-trouble .lower .lower-contents p small {
  font-size: 29px;
}
@media screen and (max-width: 768px) {
  .p-trouble .upper {
    padding: 60px 0 190px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 50px), 50% 100%, 0% calc(100% - 50px));
  }
  .p-trouble .upper .image01 {
    width: 60px;
    left: 50%;
    top: 35px;
    transform: translateX(-192px);
  }
  .p-trouble .upper .image02 {
    width: 162px;
    left: -20px;
    bottom: 58px;
    transform: translateX(0px);
  }
  .p-trouble .upper .image03 {
    width: 146px;
    left: inherit;
    right: -30px;
    bottom: 63px;
    transform: translateX(0px);
  }
  .p-trouble .upper h2 {
    font-size: 18px;
    margin-bottom: 25px;
  }
  .p-trouble .upper h2 strong {
    font-size: 26px;
  }
  .p-trouble .upper ul li p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p-trouble .lower {
    padding: 80px 0 70px;
    margin-top: -50px;
  }
  .p-trouble .lower .lower-contents {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .p-trouble .lower .lower-contents .image01 {
    order: 1;
    width: 220px;
    box-shadow: 5px 5px 0 #ead053;
    margin-top: 25px;
  }
  .p-trouble .lower .lower-contents p {
    order: 0;
    font-size: 25px;
    margin-left: 0px;
  }
  .p-trouble .lower .lower-contents p .text01 {
    margin-left: -1.5em;
  }
  .p-trouble .lower .lower-contents p .text02 {
    font-size: 50px;
    margin: 10px 0px 0;
    display: block;
  }
  .p-trouble .lower .lower-contents p .text02 img {
    width: 27px;
    position: absolute;
  }
  .p-trouble .lower .lower-contents p .text02 .assets01 {
    left: -22px;
    top: 0px;
  }
  .p-trouble .lower .lower-contents p .text02 .assets02 {
    right: -22px;
    bottom: 0px;
    transform: rotate(155deg);
  }
  .p-trouble .lower .lower-contents p small {
    font-size: 22px;
    display: block;
    text-align: center;
  }
}

.p-caution {
  margin: 55px 0;
}
.p-caution .p-caution-head {
  background: #d32d1f;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-caution .p-caution-head:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 22px solid transparent;
  border-left: 22px solid transparent;
  border-top: 40px solid #d32d1f;
  border-bottom: 0;
}
.p-caution .p-caution-head .image01 {
  width: 90px;
}
.p-caution .p-caution-head .image02 {
  margin-top: -20px;
}
.p-caution .p-caution-head h2 {
  font-size: 39px;
  color: #fff;
  line-height: 1.3;
  font-weight: bold;
}
.p-caution .p-caution-head h2 span {
  font-size: 22px;
  display: block;
}
.p-caution .p-caution-contents {
  background: #eaeaea;
  padding: 20px 20px 60px;
}
.p-caution .p-caution-contents .upper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-caution .p-caution-contents .upper .text {
  width: 72%;
}
.p-caution .p-caution-contents .upper .text .comment {
  background: #fff;
  border-radius: 50px;
  padding: 18px 30px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  position: relative;
}
.p-caution .p-caution-contents .upper .text .comment:before {
  content: "";
  position: absolute;
  right: -16px;
  margin: auto;
  bottom: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 30px solid #fff;
  border-bottom: 0;
  transform: rotate(-70deg);
}
.p-caution .p-caution-contents .upper .text .comment span {
  font-size: 30px;
  margin: 0 5px;
}
.p-caution .p-caution-contents .upper .text .note {
  text-align: right;
  margin: 30px 2em 0 0;
  font-weight: bold;
}
.p-caution .p-caution-contents .upper .image {
  width: 20%;
}
.p-caution .p-caution-contents .lower {
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-caution {
    margin: 50px 0 25px;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .p-caution .p-caution-head {
    position: relative;
    padding: 10px 5px;
  }
  .p-caution .p-caution-head:before {
    bottom: -20px;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 20px solid #d32d1f;
  }
  .p-caution .p-caution-head .image01 {
    width: 65px;
    margin-right: 5px;
  }
  .p-caution .p-caution-head .image02 {
    margin-top: 0px;
    position: absolute;
    width: 75px;
    right: 0;
    top: -36px;
  }
  .p-caution .p-caution-head h2 {
    font-size: 22px;
  }
  .p-caution .p-caution-head h2 span {
    font-size: 13px;
  }
  .p-caution .p-caution-contents {
    padding: 30px 10px 30px;
  }
  .p-caution .p-caution-contents .upper .text {
    width: 75%;
  }
  .p-caution .p-caution-contents .upper .text .comment {
    padding: 20px 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .p-caution .p-caution-contents .upper .text .comment:before {
    right: 4px;
    bottom: 0px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 30px solid #fff;
    border-bottom: 0;
    transform: rotate(-70deg);
  }
  .p-caution .p-caution-contents .upper .text .comment span {
    font-size: 23px;
    margin: 0 3px;
  }
  .p-caution .p-caution-contents .upper .text .comment small {
    text-align: right;
    display: block;
  }
  .p-caution .p-caution-contents .upper .text .note {
    margin: 15px 0 0 0;
    text-align: center;
    font-size: 14px;
  }
  .p-caution .p-caution-contents .upper .image {
    width: 25%;
  }
  .p-caution .p-caution-contents .lower {
    text-align: center;
    margin-top: 30px;
  }
}

.p-risk {
  width: 910px;
  max-width: 100%;
  margin: 0 auto 80px;
}
.p-risk h2 {
  border-bottom: 7px solid #122b72;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1.3;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.p-risk h2 .image {
  width: 148px;
  margin: 0 14px;
}
.p-risk h2 span {
  font-size: 46px;
  color: #122b72;
}
.p-risk .p-risk-01 {
  padding: 0 10px;
  align-items: center;
}
.p-risk .p-risk-01 .image {
  width: 50%;
  order: 1;
}
.p-risk .p-risk-01 p {
  width: 45%;
  line-height: 2;
  order: 0;
}
.p-risk .p-risk-02 {
  text-align: center;
  color: #122b72;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.p-risk .p-risk-02:after {
  z-index: -1;
  display: block;
  content: "";
  background: url("../img/risk_arrow.png") no-repeat;
  background-size: 100% 100%;
  width: 78px;
  height: 66px;
  position: absolute;
  left: 0;
  bottom: 16px;
  right: 0;
  margin: auto;
}
.p-risk .p-risk-03 {
  background: #ead053;
  padding: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.p-risk .p-risk-03 .image {
  width: 22px;
  margin-right: 50px;
}
.p-risk .p-risk-03 p {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
}
.p-risk .p-risk-03 p span {
  font-size: 27px;
  color: #d32d1f;
  border-bottom: 2px solid;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-risk {
    margin: 0 auto 50px;
  }
  .p-risk h2 {
    border-bottom: 3px solid #122b72;
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 10px;
  }
  .p-risk h2 .image {
    width: 70px;
    margin: 0 10px;
  }
  .p-risk h2 span {
    font-size: 26px;
  }
  .p-risk .p-risk-01 {
    padding: 0 10px;
    align-items: center;
  }
  .p-risk .p-risk-01 .image {
    width: 100%;
  }
  .p-risk .p-risk-01 p {
    width: 100%;
    margin-top: 10px;
  }
  .p-risk .p-risk-02 {
    font-size: 18px;
    padding: 40px 0;
    margin-bottom: 90px;
  }
  .p-risk .p-risk-02 span {
    display: block;
    font-size: 30px;
  }
  .p-risk .p-risk-02:after {
    width: 46px;
    height: 37px;
    bottom: -40px;
  }
  .p-risk .p-risk-03 {
    margin-bottom: 40px;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .p-risk .p-risk-03 .image {
    width: 16px;
    margin-right: 30px;
  }
  .p-risk .p-risk-03 p {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.6;
  }
  .p-risk .p-risk-03 p span {
    font-size: 19px;
  }
}

.p-amazing {
  background: #dfe5f4;
  text-align: center;
  padding: 70px 0 100px;
}
.p-amazing .title-container {
  padding: 40px 20px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  z-index: 2;
  margin-bottom: 50px;
}
.p-amazing .title-sub {
  font-size: 31px;
  margin-bottom: 10px;
  text-align: left;
}
.p-amazing .title-main {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  position: relative;
}
.p-amazing .boxed-text {
  background: #ffffff;
  border: 2px solid #1f2740;
  padding: 10px 20px;
  font-size: 66px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.p-amazing .normal-text {
  font-size: 42px;
  font-weight: 700;
  color: #1f2740;
  position: relative;
}
.p-amazing .emphasis {
  text-emphasis: dot #1f2740;
  -webkit-text-emphasis: dot #1f2740;
  text-emphasis-position: over right;
}
.p-amazing .star01 {
  position: absolute;
  left: -40px;
  top: 10px;
  z-index: -1;
  width: 90px;
}
.p-amazing .star02 {
  position: absolute;
  right: -40px;
  bottom: 20px;
  z-index: -1;
  width: 90px;
}
.p-amazing .product-feature {
  padding: 40px;
}
.p-amazing .product-feature .top-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.p-amazing .product-feature .crown-title {
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-amazing .product-feature .crown-title::before, .p-amazing .product-feature .crown-title::after {
  content: "";
  background: url("../img/asset1.png") no-repeat;
  background-size: 100% 100%;
  width: 52px;
  height: 42px;
}
.p-amazing .product-feature .check-list {
  list-style: none;
  margin-top: 20px;
}
.p-amazing .product-feature .check-list li {
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-size: 19px;
}
.p-amazing .product-feature .check-list li::before {
  content: "";
  background: url("../img/check.svg") no-repeat;
  background-size: 100% 100%;
  width: 31px;
  height: 31px;
  margin-right: 10px;
}
.p-amazing .product-feature .marker {
  background: linear-gradient(transparent 60%, #ffeb50 60%);
  font-weight: 700;
}
.p-amazing .product-feature .main-content {
  display: flex;
  gap: 30px;
}
.p-amazing .product-feature .left-col {
  width: 55%;
}
.p-amazing .product-feature .right-col {
  width: 43%;
}
.p-amazing .product-feature .spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}
.p-amazing .product-feature .spec-table th {
  color: #fff;
  padding: 10px;
  font-weight: normal;
  background: #122b72;
}
.p-amazing .product-feature .spec-table td {
  padding: 12px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  background: #dfe5f4;
}
.p-amazing .product-feature .spec-table tr:nth-child(even) td {
  background-color: #fff;
}
.p-amazing .product-feature .section-sub-title {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}
.p-amazing .product-feature .section-sub-title:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 30px;
  background: url("../img/amazing_arrow.svg") no-repeat;
  background-size: 100% 100%;
}
.p-amazing .product-feature .btn-list {
  padding: 0;
  margin-top: 15px;
}
.p-amazing .product-feature .btn-list li {
  padding: 0px 10px;
  margin-bottom: 17px;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 22px;
}
.p-amazing .product-feature .btn-list .btn-black {
  background: #222;
}
.p-amazing .product-feature .btn-list .btn-bronze {
  background: linear-gradient(45deg, #693f15, #a57b43, #693f15);
}
.p-amazing .product-feature .btn-list .btn-silver {
  background: linear-gradient(45deg, #777777, #bababa, #777777);
}
.p-amazing .product-feature .img-small {
  width: 237px;
}
.p-amazing .product-feature .img-small img {
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-amazing .product-feature .image-gallery img {
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-amazing .product-feature .image-gallery .img-large {
  position: relative;
}
.p-amazing .product-feature .image-gallery .img-large .img-caption {
  position: absolute;
  bottom: 20px;
  right: 0px;
  background: rgb(255, 255, 255);
  padding: 10px 15px;
  font-size: 12px;
}
.p-amazing .product-feature .image-gallery .img-large .img-caption strong {
  font-size: 15px;
  text-align: left;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-amazing .title-container {
    padding: 0;
    margin-bottom: 20px;
  }
  .p-amazing .title-sub {
    font-size: 18px;
    text-align: left;
  }
  .p-amazing .title-main {
    display: block;
    margin: 5px 0;
  }
  .p-amazing .boxed-text {
    font-size: 34px;
    padding: 10px 15px;
    display: inline-block;
  }
  .p-amazing .normal-text {
    font-size: 21px;
    text-align: right;
  }
  .p-amazing .star01 {
    width: 50px;
    left: -40px;
    top: 60px;
  }
  .p-amazing .star02 {
    width: 50px;
    right: 0;
    bottom: inherit;
    top: 0;
  }
  .p-amazing .spline {
    display: block;
    text-align: right;
  }
  .p-amazing .product-feature {
    padding: 0;
  }
  .p-amazing .product-feature .top-row {
    flex-direction: column;
    gap: 20px;
  }
  .p-amazing .product-feature .product-img {
    max-width: 398px;
    width: 60%;
    margin: 0 auto;
  }
  .p-amazing .product-feature .crown-title {
    font-size: 20px;
    justify-content: center;
    gap: 10px;
  }
  .p-amazing .product-feature .crown-title::before, .p-amazing .product-feature .crown-title::after {
    width: 30px;
    height: 24px;
  }
  .p-amazing .product-feature .check-list li {
    font-size: 16px;
    align-items: flex-start;
    text-align: left;
  }
  .p-amazing .product-feature .check-list li::before {
    width: 24px;
    height: 23px;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .p-amazing .product-feature .main-content {
    flex-direction: column;
  }
  .p-amazing .product-feature .left-col,
  .p-amazing .product-feature .right-col {
    width: 100%;
  }
  .p-amazing .product-feature .spec-table {
    font-size: 16px;
  }
  .p-amazing .product-feature .spec-table th,
  .p-amazing .product-feature .spec-table td {
    padding: 8px 4px;
  }
  .p-amazing .product-feature .left-col-lower {
    gap: 20px;
  }
  .p-amazing .product-feature .left-col-lower .color-variation {
    order: 0;
    width: 50%;
  }
  .p-amazing .product-feature .left-col-lower .section-sub-title {
    font-size: 16px;
  }
  .p-amazing .product-feature .left-col-lower .section-sub-title:after {
    width: 30px;
    height: 25px;
  }
  .p-amazing .product-feature .left-col-lower .note {
    font-size: 11px;
    text-align: left;
  }
  .p-amazing .product-feature .left-col-lower .img-small {
    order: 1;
    width: 50%;
  }
  .p-amazing .product-feature .left-col-lower .img-small img {
    width: 100%;
  }
  .p-amazing .product-feature .btn-list li {
    width: 100%;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p-amazing .product-feature .image-gallery .img-large .img-caption {
    bottom: 10px;
    font-size: 12px;
    padding: 8px 14px;
  }
  .p-amazing .product-feature .image-gallery .img-large .img-caption strong {
    font-size: 14px;
  }
}

.p-reason {
  padding: 80px 0 0px;
  text-align: center;
  /*------------- スマホ用CSS（集約版） -------------*/
}
.p-reason .p-reason-head {
  margin-bottom: 70px;
}
.p-reason .p-reason-head p {
  font-weight: bold;
  font-size: 20px;
}
.p-reason .p-reason-head h2 {
  font-size: 43px;
  font-weight: bold;
  position: relative;
  line-height: 1.4;
}
.p-reason .p-reason-head h2::after {
  content: "！";
  font-size: 123px;
  color: #dfe5f4;
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  margin: auto;
  z-index: -1;
}
.p-reason .p-reason-points {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
.p-reason .p-reason-points .point-item {
  flex: 1;
  max-width: 300px;
}
.p-reason .p-reason-points .point-item .point-img {
  position: relative;
  margin-bottom: 20px;
}
.p-reason .p-reason-points .point-item .point-img img {
  border-radius: 50%;
  width: 100%;
}
.p-reason .p-reason-points .point-item .point-img .point-label {
  position: absolute;
  top: 0;
  left: -10px;
  background: #ead053;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
.p-reason .p-reason-points .point-item .point-img .point-label span {
  font-size: 46px;
  display: block;
  margin-top: -6px;
}
.p-reason .p-reason-points .point-item h3 {
  font-size: 23px;
  color: #122b72;
  margin-bottom: 15px;
  line-height: 1.4;
}
.p-reason .p-reason-points .point-item p {
  font-size: 18px;
  text-align: center;
}
.p-reason .p-reason-order {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 60px;
}
.p-reason .p-reason-order .order-main {
  margin-bottom: 60px;
}
.p-reason .p-reason-order .order-tags {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -20px;
}
.p-reason .p-reason-order .order-tags li {
  background: #d32d1f;
  color: #fff;
  padding: 5px 2em;
  border-radius: 50px;
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
}
.p-reason .p-reason-info {
  display: flex;
  gap: 30px;
  width: 864px;
  max-width: 100%;
  margin: 0 auto 30px;
}
.p-reason .p-reason-info .info-box {
  flex: 1;
  background: #fff;
}
.p-reason .p-reason-info .info-box .info-title {
  background: #dfe5f4;
  padding: 10px;
  font-weight: bold;
  font-size: 24px;
}
.p-reason .p-reason-info .info-box .info-content {
  padding: 30px 0;
}
.p-reason .p-reason-info .info-box .area-name,
.p-reason .p-reason-info .info-box .size-name {
  font-size: 31px;
  font-weight: 900;
  color: #122b72;
}
.p-reason .p-reason-info .info-box p {
  font-size: 20px;
}
.p-reason .p-reason-info .info-box p small {
  font-size: 18px;
  font-weight: 400;
}
.p-reason .p-reason-info .info-box .map-img {
  margin-top: 30px;
}
.p-reason .p-reason-info .info-box .size-img {
  width: 282px;
  margin: 20px auto 0;
}
.p-reason .p-reason-price {
  width: 722px;
  max-width: 100%;
  margin: 0 auto;
}
.p-reason .p-reason-price .price-head {
  margin-bottom: 40px;
  position: relative;
}
.p-reason .p-reason-price .price-head:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #122b72;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-reason .p-reason-price .price-head span {
  font-weight: bold;
  color: #122b72;
  position: relative;
  font-size: 20px;
  padding: 0 3em;
  background: #fff;
  display: inline-block;
}
.p-reason .p-reason-price .price-table {
  width: 100%;
  border-collapse: collapse;
}
.p-reason .p-reason-price .price-table th {
  background: #122b72;
  color: #fff;
  padding: 5px;
  font-size: 18px;
  font-weight: 200;
}
.p-reason .p-reason-price .price-table td {
  padding: 8px;
  position: relative;
  font-size: 18px;
}
.p-reason .p-reason-price .price-table td::first-letter {
  font-size: 15px;
}
.p-reason .p-reason-price .price-table td:first-child:first-letter {
  font-size: inherit;
}
.p-reason .p-reason-price .price-table td:last-child {
  font-weight: bold;
}
.p-reason .p-reason-price .price-table tr:nth-child(even) td {
  background: #dfe5f4;
}
.p-reason .p-reason-price .price-table th:last-child,
.p-reason .p-reason-price .price-table td:last-child {
  padding-right: 110px;
}
.p-reason .p-reason-price .price-table .tag-sale {
  background: #d32d1f;
  color: #fff;
  font-size: 18px;
  padding: 0px 3px;
  border-radius: 4px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 118px;
  transform: translateY(-50%);
}
.p-reason .p-reason-price .price-table .tag-sale:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 12px;
  transform: rotate(90deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 10px solid #d32d1f;
  border-bottom: 0;
}
.p-reason .p-reason-price .price-table .tag-sale small {
  font-size: 14px;
}
.p-reason .p-reason-price .price-notes {
  text-align: left;
  margin-top: 30px;
}
.p-reason .p-reason-price .price-notes dt {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin: 40px 0 5px;
  font-size: 22px;
}
.p-reason .p-reason-price .price-notes dt::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background: url("../img/check2.png");
  background-size: 100% 100%;
  margin-right: 10px;
}
.p-reason .p-reason-price .price-notes dd {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 100;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 50px 0px;
  }
  .p-reason .p-reason-head p {
    font-size: 14px;
  }
  .p-reason .p-reason-head h2 {
    font-size: 24px;
  }
  .p-reason .p-reason-head h2:after {
    font-size: 80px;
    top: -50px;
  }
  .p-reason .p-reason-points {
    flex-direction: column;
    gap: 40px;
  }
  .p-reason .p-reason-points .point-item {
    margin: 0 auto 30px;
  }
  .p-reason .p-reason-points .point-item h3 {
    font-size: 22px;
  }
  .p-reason .p-reason-points .point-item p {
    font-size: 16px;
  }
  .p-reason .p-reason-points .point-item .point-img .point-label {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
  .p-reason .p-reason-points .point-item .point-img .point-label span {
    font-size: 37px;
  }
  .p-reason .p-reason-order {
    padding: 0px;
  }
  .p-reason .p-reason-order .order-main {
    margin-bottom: 30px;
  }
  .p-reason .p-reason-order .order-tags {
    gap: 10px;
    margin-top: 5px;
  }
  .p-reason .p-reason-order .order-tags li {
    font-size: 15px;
    padding: 5px 1em;
  }
  .p-reason .p-reason-info {
    flex-direction: column;
  }
  .p-reason .p-reason-info .info-box .info-title {
    font-size: 18px;
    width: 80%;
    margin: 0 auto;
  }
  .p-reason .p-reason-info .info-box .area-name,
  .p-reason .p-reason-info .info-box .size-name {
    font-size: 20px;
  }
  .p-reason .p-reason-info .info-box p {
    font-size: 16px;
  }
  .p-reason .p-reason-info .info-box p small {
    font-size: 14px;
  }
  .p-reason .p-reason-price .price-head span {
    font-size: 18px;
    padding: 0 1.5em;
  }
  .p-reason .p-reason-price .price-table {
    font-size: 12px;
  }
  .p-reason .p-reason-price .price-table th,
  .p-reason .p-reason-price .price-table td {
    font-size: 14px;
    padding: 8px 5px;
  }
  .p-reason .p-reason-price .price-table th:last-child,
  .p-reason .p-reason-price .price-table td:last-child {
    padding-right: 0;
  }
  .p-reason .p-reason-price .price-table .tag-sale {
    position: static;
    display: inline-block;
    width: auto;
    margin-top: 23px;
    font-size: 14px;
  }
  .p-reason .p-reason-price .price-table .tag-sale:before {
    left: 40px;
    top: -8px;
    transform: rotate(180deg);
  }
  .p-reason .p-reason-price .price-table .tag-sale small {
    font-size: 10px;
  }
  .p-reason .p-reason-price .price-notes dt {
    margin: 30px 0 0;
    font-size: 18px;
  }
  .p-reason .p-reason-price .price-notes dt::before {
    width: 19px;
    height: 18px;
    margin-right: 6px;
  }
  .p-reason .p-reason-price .price-notes dd {
    font-size: 16px;
  }
}

.p-flow {
  background: #122b72;
  padding: 80px 0;
  color: #fff;
  /*------------- スマホ用CSS（集約版） -------------*/
}
.p-flow .c-title-center {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.p-flow .c-title-center span {
  font-size: 31px;
  color: #ead053;
}
.p-flow .c-title-center strong {
  font-size: 59px;
  margin: 0 -8px;
  line-height: 1;
  position: relative;
}
.p-flow .c-title-center strong:before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  background: url("../img/asset2.png");
  background-size: 100% 100%;
  left: 0;
  top: 8px;
}
.p-flow-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
}
.p-flow-item {
  width: 30%;
  max-width: 207px;
  text-align: center;
}
.p-flow-head {
  margin-bottom: 10px;
  font-weight: bold;
  color: #ead053;
}
.p-flow-head .step {
  font-size: 21px;
  line-height: 1.2;
}
.p-flow-head .num {
  font-size: 32px;
  line-height: 0.9;
}
.p-flow-img {
  width: 207px;
  height: 207px;
  margin: 0 auto 25px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-flow-img img {
  height: auto;
}
.p-flow-body h3 {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
}
.p-flow-body h3 span {
  font-size: 18px;
}
.p-flow-body p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  display: inline-block;
  font-weight: 100;
}
.p-flow-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #fff;
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 40px 0 60px;
  }
  .p-flow .c-title-center {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 2.2;
  }
  .p-flow .c-title-center span {
    font-size: 20px;
  }
  .p-flow .c-title-center strong {
    font-size: 40px;
    margin: 0 -2px;
  }
  .p-flow .c-title-center strong:before {
    width: 16px;
    height: 16px;
    top: 4px;
  }
  .p-flow-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .p-flow-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .p-flow-head {
    margin-bottom: 10px;
    position: absolute;
    left: 170px;
  }
  .p-flow-head .step {
    font-size: 14px;
  }
  .p-flow-head .num {
    font-size: 22px;
  }
  .p-flow-img {
    width: 150px;
    height: 150px;
    margin: 0px;
  }
  .p-flow-body {
    width: calc(100% - 170px);
    margin-top: 40px;
  }
  .p-flow-body h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
  }
  .p-flow-body p {
    text-align: left;
    font-size: 14px;
  }
  .p-flow-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
    border-width: 10px 0 10px 15px;
  }
}

.c-cta {
  padding: 60px 0;
  width: 853px;
  max-width: 100%;
  margin: 0 auto;
  /*------------- スマホ用CSS（集約版） -------------*/
}
.c-cta-box {
  background: #ead053;
  padding: 10px 40px 60px;
  position: relative;
  box-shadow: inset 4px 4px 6px rgba(0, 0, 0, 0.16);
}
.c-cta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.c-cta-balloon {
  background: #ffffff;
  padding: 15px 40px;
  border-radius: 60px;
  position: relative;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05);
  width: calc(100% - 170px);
}
.c-cta-balloon p {
  font-weight: bold;
  font-size: 20px;
  color: #1f2740;
}
.c-cta-balloon::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #ffffff;
}
.c-cta-person {
  width: 150px;
}
.c-cta-lead {
  text-align: center;
  font-weight: bold;
  font-size: 19px;
  color: #1f2740;
  margin: -10px auto 20px;
}
.c-cta-btns {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.c-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 290px;
  height: 80px;
  background: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 10px 10px 0 #122b72;
  transition: all 0.2s;
}
.c-cta-btn span {
  font-size: 30px;
  font-weight: 900;
  color: #1f2740;
  letter-spacing: 0.05em;
}
.c-cta-btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 6px 6px 0 #122b72;
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 50px 0;
  }
  .c-cta-box {
    padding: 10px 15px 30px;
  }
  .c-cta-person {
    width: 160px;
    z-index: 2;
  }
  .c-cta-balloon {
    padding: 15px 10px;
    width: 100%;
    border-radius: 20px;
  }
  .c-cta-balloon p {
    font-size: 14px;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
  }
  .c-cta-lead {
    font-size: 16px;
    margin-top: 10px;
  }
  .c-cta-btns {
    align-items: center;
    gap: 15px;
  }
  .c-cta-btn {
    width: 50%;
    margin: 0 auto;
    height: 60px;
    box-shadow: 6px 6px 0 #122b72;
  }
  .c-cta-btn span {
    font-size: 20px;
  }
  .c-cta-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #122b72;
  }
}

.p-faq {
  width: 853px;
  max-width: 100%;
  margin: 0 auto;
  /*------------- スマホ用CSS（集約版） -------------*/
}
.p-faq-head {
  text-align: center;
  margin-bottom: 60px;
}
.p-faq-head__icon {
  font-size: 123px;
  color: #dfe5f4;
  font-weight: bold;
  line-height: 1;
}
.p-faq-head__title {
  font-size: 31px;
  font-weight: bold;
  margin-top: -37px;
}
.p-faq-category {
  margin-bottom: 20px;
}
.p-faq-category__title {
  background: #dfe5f4;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50px;
}
.p-faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.p-faq-item.border-none {
  border: none;
}
.p-faq-item dt,
.p-faq-item dd {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  line-height: 1.6;
}
.p-faq-item dt::before,
.p-faq-item dd::before {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}
.p-faq-item .p-faq-item__a {
  padding-left: 47px;
}
.p-faq-item__q::before {
  content: "Q";
  background: #122b72;
}
.p-faq-item__a {
  flex-direction: column;
  align-items: stretch;
  display: block;
  padding-left: 47px;
  position: relative;
}
.p-faq-item__a::before {
  content: "A";
  background: #ead053;
  color: #1f2740;
}
.p-faq-item__a::before {
  position: absolute;
  left: 0;
  top: 15px;
}
.p-faq-ng {
  margin-top: 30px;
}
.p-faq-ng__label {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 15px;
}
.p-faq-ng__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.p-faq-ng__card {
  box-sizing: border-box;
  width: 49%;
  display: flex;
  border: 3px solid #4e566f;
  border-radius: 19px;
  overflow: hidden;
  padding: 20px;
  background: #fff;
}
.p-faq-ng__card-img {
  width: 40%;
  position: relative;
}
.p-faq-ng__card-body {
  width: 60%;
  padding-left: 15px;
}
.p-faq-ng__card-body h4 {
  color: #d32d1f;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}
.p-faq-ng__card-body p {
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-faq-head {
    margin-bottom: 40px;
  }
  .p-faq-head__icon {
    font-size: 90px;
  }
  .p-faq-head__title {
    font-size: 24px;
  }
  .p-faq-item__q, .p-faq-item__a {
    font-size: 15px;
    gap: 10px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .p-faq-item__a {
    padding-left: 42px;
  }
  .p-faq-item__a::before {
    width: 28px;
    height: 28px;
  }
  .p-faq-ng {
    margin-left: -20px;
  }
  .p-faq-ng__grid {
    flex-direction: column;
    gap: 15px;
  }
  .p-faq-ng__card {
    width: calc(100% - 20px);
    padding: 15px 10px;
  }
  .p-faq-ng__card-img {
    width: 35%;
  }
  .p-faq-ng__card-img::after {
    font-size: 40px;
  }
  .p-faq-ng__card-body {
    padding-left: 10px;
  }
  .p-faq-ng__card-body h4 {
    font-size: 14px;
  }
  .p-faq-ng__card-body p {
    font-size: 14px;
  }
}

/*------------- _contact.scss -------------*/
.p-contact-kv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url("../img/contact_kv.jpg") top center/cover no-repeat;
  margin-top: 81px;
  padding: 85px 0;
}
.p-contact-kv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 45, 78, 0.35);
}
.p-contact-kv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 32px 56px;
}
.p-contact-kv__sub {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 4px;
}
.p-contact-kv__title {
  font-size: 78px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-contact-kv {
    background: url("../img/contact_kv_sp.jpg") top center/cover no-repeat;
    margin-top: 50px;
    padding: 40px 0;
  }
  .p-contact-kv__inner {
    padding: 0 0 24px 24px;
  }
  .p-contact-kv__sub {
    font-size: 16px;
  }
  .p-contact-kv__title {
    font-size: 48px;
  }
}

.p-contact {
  padding: 72px 0 100px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 48px 0 64px;
  }
}
.p-contact__header {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-contact__header {
    margin-bottom: 32px;
    text-align: left;
  }
}
.p-contact__title {
  font-size: 31px;
  font-weight: 700;
  color: #1f2740;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.p-contact__lead {
  font-size: 16px;
  color: #555555;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-contact__lead br {
    display: none;
  }
}
.p-contact__body {
  background: #dfe5f4;
  border-radius: 4px;
  padding: 48px 56px 56px;
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact__body {
    padding: 28px 16px 36px;
    border-radius: 0;
  }
}
.p-contact__row {
  margin-bottom: 20px;
}
.p-contact__row:last-of-type {
  margin-bottom: 0;
}
.p-contact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2740;
  margin-bottom: 6px;
  cursor: default;
}
.p-contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  flex-shrink: 0;
}
.p-contact__badge--req {
  background: #d32d1f;
  color: #ffffff;
}
.p-contact__badge--opt {
  background: #8899aa;
  color: #ffffff;
}
.p-contact__field {
  width: 100%;
}
.p-contact__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1f2740;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-contact__input::placeholder {
  color: #bbbbbb;
  font-size: 13px;
}
.p-contact__input:focus {
  border-color: #4a7fc1;
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.15);
}
.p-contact__input--half {
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .p-contact__input--half {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__input {
    font-size: 16px;
    height: 48px;
  }
}
.p-contact__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1f2740;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-contact__textarea:focus {
  border-color: #4a7fc1;
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.15);
}
@media screen and (max-width: 768px) {
  .p-contact__textarea {
    font-size: 16px;
  }
}
.p-contact__schedule {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.p-contact__days {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.p-contact__day-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #1f2740;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.p-contact__day-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.p-contact__day-check:checked {
  background: #4a7fc1;
  border-color: #4a7fc1;
}
.p-contact__day-check:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.p-contact__day-check:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.2);
}
.p-contact__time-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-contact__select-wrap {
  position: relative;
  display: inline-block;
}
.p-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #1f2740;
  pointer-events: none;
}
.p-contact__select {
  height: 40px;
  padding: 0 36px 0 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1f2740;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 100px;
  transition: border-color 0.2s;
}
.p-contact__select:focus {
  border-color: #4a7fc1;
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.15);
}
@media screen and (max-width: 768px) {
  .p-contact__select {
    font-size: 16px;
    height: 44px;
  }
}
.p-contact__submit {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__submit {
    margin-top: 32px;
  }
}
.p-contact__btn {
  display: inline-block;
  min-width: 240px;
  padding: 16px 48px;
  background: #122b72;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
}
.p-contact__btn:hover {
  background: #193c9e;
  transform: translateY(-1px);
  opacity: 1;
}
.p-contact__btn:active {
  transform: translateY(0);
  background: #0f235c;
}
@media screen and (max-width: 768px) {
  .p-contact__btn {
    width: 100%;
    min-width: unset;
    font-size: 16px;
    padding: 16px 24px;
  }
}
.p-contact__btn--send {
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .p-contact__btn--send {
    min-width: unset;
  }
}

.p-confirm__lead {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1f2740;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .p-confirm__lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.p-confirm__error {
  background: #fff5f5;
  border: 1px solid #f0a19b;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.p-confirm__error .error_messe {
  color: #d32d1f;
  font-size: 14px;
  line-height: 1.8;
  margin: 4px 0;
}
.p-confirm__error-title {
  font-size: 15px;
  font-weight: 700;
  color: #d32d1f;
  margin-bottom: 12px;
}
.p-confirm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.p-confirm__table th,
.p-confirm__table td {
  padding: 16px 20px;
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.p-confirm__table th {
  white-space: nowrap;
  font-weight: 500;
  color: #1f2740;
  width: 220px;
}
.p-confirm__table th::after {
  content: "：";
}
.p-confirm__table td {
  color: #1f2740;
  word-break: break-all;
}
.p-confirm__table td input[type=hidden] {
  display: none;
}
.p-confirm__table tr {
  border: none;
}
@media screen and (max-width: 768px) {
  .p-confirm__table th,
  .p-confirm__table td {
    display: block;
    width: 100%;
    padding: 4px 0;
    font-size: 16px;
  }
  .p-confirm__table th {
    font-weight: 700;
    padding-top: 16px;
  }
  .p-confirm__table th::after {
    display: none;
  }
  .p-confirm__table td {
    padding-bottom: 12px;
    border-bottom: 1px solid #cccccc;
  }
}

.p-thanks {
  padding: 80px 0 100px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-thanks {
    padding: 56px 0 72px;
  }
}
.p-thanks__title {
  font-size: 26px;
  font-weight: 700;
  color: #1f2740;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 48px;
}
@media screen and (max-width: 768px) {
  .p-thanks__title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}
.p-thanks__body {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .p-thanks__body {
    text-align: left;
    margin-bottom: 40px;
  }
}
.p-thanks__text {
  font-size: 14px;
  color: #555555;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-thanks__text {
    font-size: 13px;
    line-height: 2;
  }
  .p-thanks__text br {
    display: none;
  }
}
.p-thanks__btn-wrap {
  text-align: center;
}
.p-thanks__btn {
  display: inline-block;
  min-width: 240px;
  padding: 16px 48px;
  background: #122b72;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
.p-thanks__btn:hover {
  background: #193c9e;
  transform: translateY(-1px);
  opacity: 1;
}
.p-thanks__btn:active {
  transform: translateY(0);
  background: #0f235c;
}
@media screen and (max-width: 768px) {
  .p-thanks__btn {
    width: 100%;
    min-width: unset;
    font-size: 16px;
    padding: 16px 24px;
  }
}

/*------------- _order.scss -------------*/
.p-order-kv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url("../img/order_kv.jpg") center center/cover no-repeat;
  margin-top: 81px;
  padding: 85px 0;
}
.p-order-kv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 32px 56px;
}
.p-order-kv__sub {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 4px;
}
.p-order-kv__title {
  font-size: 78px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-order-kv__inner {
    padding: 0 0 24px 24px;
  }
  .p-order-kv__sub {
    font-size: 16px;
  }
  .p-order-kv__title {
    font-size: 48px;
  }
}

.p-order {
  padding: 72px 0 100px;
  background: #ffffff;
  width: 950px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-order {
    padding: 48px 0 64px;
  }
}
.p-order__header {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-order__header {
    margin-bottom: 32px;
    text-align: left;
  }
}
.p-order__title {
  font-size: 31px;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .p-order__title {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.p-order__lead {
  font-size: 16px;
  color: #555555;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-order__lead {
    font-size: 13px;
  }
  .p-order__lead br {
    display: none;
  }
}
.p-order__body {
  background: #d7eef4;
  border-radius: 4px;
  padding: 48px 56px 56px;
}
@media screen and (max-width: 768px) {
  .p-order__body {
    padding: 28px 16px 36px;
    border-radius: 0;
  }
}
.p-order__row {
  margin-bottom: 20px;
}
.p-order__row:last-of-type {
  margin-bottom: 0;
}
.p-order__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 6px;
  cursor: default;
}
.p-order__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  flex-shrink: 0;
}
.p-order__badge--req {
  background: #e23a3a;
  color: #ffffff;
}
.p-order__badge--opt {
  background: #989898;
  color: #ffffff;
}
.p-order__field {
  width: 100%;
}
.p-order__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-order__input::placeholder {
  color: #bbbbbb;
  font-size: 13px;
}
.p-order__input:focus {
  border-color: #0889b2;
  box-shadow: 0 0 0 3px rgba(8, 137, 178, 0.15);
}
.p-order__input--half {
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .p-order__input--half {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-order__input {
    font-size: 16px;
    height: 48px;
  }
}
.p-order__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.p-order__textarea:focus {
  border-color: #0889b2;
  box-shadow: 0 0 0 3px rgba(8, 137, 178, 0.15);
}
@media screen and (max-width: 768px) {
  .p-order__textarea {
    font-size: 16px;
  }
}
.p-order__select-wrap {
  position: relative;
  display: inline-block;
}
.p-order__select-wrap::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333333;
  pointer-events: none;
}
.p-order__select-wrap--time {
  min-width: 100px;
}
.p-order__select {
  height: 40px;
  padding: 0 36px 0 12px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  border: none;
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  min-width: 200px;
  transition: border-color 0.2s;
}
.p-order__select:focus {
  border-color: #0889b2;
  box-shadow: 0 0 0 3px rgba(8, 137, 178, 0.15);
}
@media screen and (max-width: 768px) {
  .p-order__select {
    font-size: 16px;
    height: 44px;
    min-width: unset;
    width: 100%;
  }
}
.p-order__schedule-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-order__schedule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.p-order__schedule-label {
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
  min-width: 68px;
}
.p-order__date {
  height: 40px;
  padding: 0 10px;
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  border: none;
  border-radius: 3px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
  width: 148px;
}
.p-order__date:focus {
  border-color: #0889b2;
  box-shadow: 0 0 0 3px rgba(8, 137, 178, 0.15);
}
@media screen and (max-width: 768px) {
  .p-order__date {
    font-size: 16px;
    height: 44px;
    flex: 1;
    min-width: 0;
  }
}
.p-order__schedule-inline {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.p-order__days {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.p-order__day-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.p-order__day-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #cccccc;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.p-order__day-check:checked {
  background: #4a7fc1;
  border-color: #4a7fc1;
}
.p-order__day-check:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.p-order__day-check:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 127, 193, 0.2);
}
.p-order__submit {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order__submit {
    margin-top: 32px;
  }
}
.p-order__btn {
  display: inline-block;
  min-width: 240px;
  padding: 16px 48px;
  background: #0889b2;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
}
.p-order__btn:hover {
  background: #1f7c7c;
  transform: translateY(-1px);
  opacity: 1;
}
.p-order__btn:active {
  transform: translateY(0);
  background: #1a6868;
}
.p-order__btn--send {
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .p-order__btn {
    width: 100%;
    min-width: unset;
    font-size: 16px;
    padding: 16px 24px;
  }
}

.p-order-confirm__lead {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .p-order-confirm__lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.p-order-confirm__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.p-order-confirm__table th,
.p-order-confirm__table td {
  padding: 14px 20px;
  font-size: 18px;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.p-order-confirm__table th {
  white-space: nowrap;
  font-weight: 500;
  color: #333333;
  width: 240px;
}
.p-order-confirm__table th::after {
  content: "：";
}
.p-order-confirm__table td {
  color: #333333;
  word-break: break-all;
}
.p-order-confirm__table td input[type=hidden] {
  display: none;
}
.p-order-confirm__table tr {
  border: none;
}
@media screen and (max-width: 768px) {
  .p-order-confirm__table th,
  .p-order-confirm__table td {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 4px 0;
  }
  .p-order-confirm__table th {
    font-weight: 700;
    padding-top: 16px;
  }
  .p-order-confirm__table th::after {
    display: none;
  }
  .p-order-confirm__table td {
    padding-bottom: 12px;
    border-bottom: 1px solid #cccccc;
  }
}
.p-order-confirm__error {
  background: #fff5f5;
  border: 1px solid #f6bfbf;
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.p-order-confirm__error .error_messe {
  color: #e23a3a;
  font-size: 14px;
  line-height: 1.8;
  margin: 4px 0;
}
.p-order-confirm__error-title {
  font-size: 15px;
  font-weight: 700;
  color: #e23a3a;
  margin-bottom: 12px;
}

/*------------- utility -------------*/
.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-spbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-spbr {
    display: inline-block;
  }
}

.u-font-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.u-pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-pc-none {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-none {
    display: none;
  }
}

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