@charset "UTF-8";
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
}

p {
  margin-bottom: 0;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

/* サイト構築用
============================== */
* {
  box-sizing: border-box;
}

/* リキッドレイアウト対応 */
:root {
  --inner: 1080px;
  --inner-small: 600px;
}

/* フォント */
:root {
  --mincho:"游明朝", sans-serif;
  --noto:"Noto Sans JP", sans-serif;
}

/* カラーコード */
:root {
  --white: #fff;
  --black: #3A3A3A;
  --gray-dark: #3e3a39;
  --gray: #717071;
  --yellow: #ffff00;
  --gold: #ad7e45;
  --light-gold: #c69e30;
  --red: #e50012;
  --blue:#004495;
  --blue-light: #47abc9;
  --bg-base: #e8f1f3;
  --gradient:linear-gradient(90deg, rgba(0,63,131,1) 0%, rgba(0,148,213,1) 95%);
}

a:hover {
  opacity: 0.7;
}

.tac {
  text-align: center;
}

img {
  width: 100%;
  vertical-align: middle;
}

html {
  color: var(--black);
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  width: 100%;
  font-size: 62.5%;
}

body {
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}

ul {
  list-style: none;
}

.spNone {
  display: block;
}
@media (max-width: 767px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media (max-width: 767px) {
  .pcNone {
    display: block;
  }
}

h2 {
  font-family: var(--mincho);
  text-align: center;
  font-size: 3.6rem;
  line-height: 5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
    line-height: 1.4em;
  }
}
h2 span {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1rem;
  display: block;
}
@media (max-width: 767px) {
  h2 span {
    font-size: 1.8rem;
  }
}

.inner {
  margin-inline: auto;
  max-width: var(--inner);
  width: 100%;
  padding: 5rem 0rem;
}
@media (max-width: 767px) {
  .inner {
    padding: 4rem 2rem;
  }
}

.inner-small {
  margin-inline: auto;
  max-width: var(--inner-small);
  width: 100%;
  padding: 5rem 0rem;
}
@media (max-width: 767px) {
  .inner-small {
    padding: 4rem 2rem;
  }
}

/* header
============================== */
/* main
============================== */
.features {
  background: #fdfdfd;
}
.features__contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.features__contents ul li {
  width: 49.25%;
}
@media (max-width: 767px) {
  .features__contents ul li {
    width: 100%;
  }
}
.features__contents ul small {
  display: block;
}
.features__contents dl {
  display: flex;
  align-items: center;
}
.features__contents dl dt {
  width: 250px;
}
@media (max-width: 767px) {
  .features__contents dl dt {
    width: 50%;
  }
}
.features__contents dl dd {
  padding: 1rem;
}
.features__contents dl dd span {
  color: var(--light-gold);
  font-weight: bold;
}
@media (max-width: 767px) {
  .features__contents dl dd {
    padding: 0.5rem;
  }
}

.introduction {
  background: var(--bg-base);
}
.introduction .inner {
  padding-top: 0rem;
}
.introduction__title h2 {
  position: relative;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--noto);
  padding: 2.5rem;
}
.introduction__title h2 .dots {
  -webkit-text-emphasis: filled;
          text-emphasis: filled;
  display: inline-block;
}
.introduction__title h2::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  translate: -50% -100%;
  border-top: 60px solid #00599c; /* 三角形の高さ */
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
}
@media (max-width: 767px) {
  .introduction__title h2::before {
    bottom: -39px;
    border-top: 20px solid #00599c; /* 三角形の高さ */
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
  }
}
.introduction__inner h3 {
  font-family: var(--mincho);
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .introduction__inner h3 {
    font-size: 2.5rem;
    padding: 2rem 0rem;
  }
}
.introduction__contents__area {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .introduction__contents__area {
    flex-direction: column;
    gap: 20px;
  }
}
.introduction__contents__area dl {
  width: 49%;
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 20px;
  padding: 3.5rem;
}
@media (max-width: 767px) {
  .introduction__contents__area dl {
    width: 100%;
    padding: 3rem;
  }
}
.introduction__contents__area dl dt {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .introduction__contents__area dl dt {
    font-size: 2.5rem;
    line-height: 1.4em;
    margin-bottom: 1.5rem;
  }
}
.introduction__contents__area dl dt span {
  background: linear-gradient(transparent 60%, #ffff33 0%);
}
.introduction__contents__area dl dd {
  margin: 1rem auto;
}
.introduction__contents__recommend p.subtitle {
  background: var(--red);
  text-align: center;
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .introduction__contents__recommend p.subtitle {
    font-size: 2.3rem;
  }
}
.introduction__contents__recommend ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
  font-family: var(--mincho);
  font-weight: bold;
  line-height: 1.4em;
  padding: 2rem 0rem;
}
@media (max-width: 767px) {
  .introduction__contents__recommend ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .introduction__contents__recommend ul li {
    width: 48.5%;
  }
}
.introduction__contents__recommend ul dt {
  padding-bottom: 1rem;
}
.introduction__contents__solution {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .introduction__contents__solution {
    font-size: 1.8rem;
  }
}
.introduction__contents__solution p.subtitle {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.introduction__contents__solution span {
  background: linear-gradient(transparent 60%, #ffff33 0%);
}

.detail__contents dl {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .detail__contents dl {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.price {
  background: var(--bg-base);
}
.price__contents__table {
  margin-bottom: 2rem;
}
.price__contents__table table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: center;
  background: var(--white);
}
.price__contents__table th {
  background: var(--blue-light);
  color: var(--white);
}
.price__contents__table td, .price__contents__table th {
  border: var(--blue-light) solid 2px;
}
.price__contents__table tr td:first-child {
  font-size: 2.5rem;
  text-align: left;
  padding: 1rem 2rem;
}
@media (max-width: 767px) {
  .price__contents__table tr td:first-child {
    font-size: 1.6rem;
    padding: 0rem 1rem;
  }
}
.price__contents__table tr td:last-child {
  font-size: 2.5rem;
  text-align: right;
  padding: 1rem 2rem;
  line-height: 1.2em;
}
@media (max-width: 767px) {
  .price__contents__table tr td:last-child {
    font-size: 1.6rem;
  }
}
.price__contents__notes dl {
  margin-bottom: 1rem;
}
.price__contents__notes dl dt {
  font-weight: bold;
  color: var(--blue-light);
}
.price__contents__notes dl dd {
  font-size: 1.6rem;
}

.qa__contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.qa__contents details {
  background: var(--bg-base);
  cursor: pointer;
}
.qa__contents details summary {
  background: var(--gradient);
  color: var(--white);
  list-style: none;
  padding: 2rem;
  position: relative;
}
.qa__contents details summary i:before, .qa__contents details summary i:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  margin: auto;
  width: 1.2rem;
  height: 2px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .qa__contents details summary i:before, .qa__contents details summary i:after {
    right: 20px;
  }
}
.qa__contents details summary i:before {
  transform: rotate(90deg);
}
.qa__contents details summary i:after {
  transform: rotate(0deg);
}
.qa__contents details .content {
  overflow: hidden;
}
.qa__contents details .content_inner {
  padding: 2rem;
}
.qa__contents details[open] summary i:before {
  transform: rotate(45deg);
}
.qa__contents details[open] summary i:after {
  transform: rotate(135deg);
}

.contact {
  background: var(--bg-base);
}
.contact__contents__text {
  text-align: center;
  font-size: 1.8rem;
}
.contact .req {
  color: var(--red);
}
.contact {
  /*フォーム部分*/
}
.contact form > div {
  margin: 1rem 0rem;
}
.contact form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.contact form input, .contact form textarea {
  background: var(--white);
  width: 100%;
  padding: 3%;
  border-radius: 5px;
}
.contact form .radio-box {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .contact form .radio-box {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.contact form .radio-box .radio-label {
  background: var(--white);
  border-radius: 5px;
  cursor: pointer;
  padding: 1rem;
}
.contact form .radio-box .radio-label input {
  width: auto;
}
.contact form .submit input {
  background: var(--red);
  color: var(--white);
}

/* footer
============================== */
.footer__contents {
  background: var(--gray);
  color: var(--white);
  text-align: center;
}
.footer__contents .footer-logo {
  max-width: 500px;
  margin-inline: auto;
  padding: 3rem;
}
.footer__contents .footer-copy {
  background: var(--gray-dark);
  padding: 1rem 0rem;
}

/* thanksページ
============================== */
#thanks .btn {
  background: var(--gradient);
  color: var(--white);
  display: block;
  width: 250px;
  max-width: 100%;
  margin: 2rem auto 0rem;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */