/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

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

fieldset,
img {
  border: 0;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

abbr,
acronym {
  border: 0;
}

a {
  text-decoration: none;
  outline: none;
}

a:hover,
a.selected {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
  vertical-align: top;
}


/*
* Base
*/

:root {
  --primary-color: #ED1C24;
  --bg-color: #F6F4F3;
  --border-color: #E6E6E6;
  --fs-base: .9375rem; /* 15px */
  --fs-xl: 1.75rem; /* 28px */
  --fs-l: 1.5rem; /* 24px */
  --fs-m: 1.25rem; /* 20px */
  --fs-s: 1rem; /* 16px */
  --fs-xs: .875rem; /* 14px */
}

body {
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', 'メイリオ', Meiryo, sans-serif;
}

.layout_main {
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

.layout_main * {
  box-sizing: border-box;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Layout */
.layout_section {
  padding: 100px min(5.208333333%, 50px);
}

.layout_column {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.layout_head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*
* Contents
*/

/* headline */
.headline {
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.5;
}

.headline--border::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: linear-gradient(to right, #ED271C, #F06500);
  margin: 0 0 24px;
}

.sub-headline {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: var(--fs-l);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 20px;
}

.sub-headline::before {
  content: "";
  display: block;
  width: 7px;
  height: 26px;
  background: #1E1E20;
}

/* ボタン */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 56px;
  font-size: 1.125rem;
  border-radius: 5px;
}

.button--primary {
  background: linear-gradient(30deg, #ED1C24, #ED1C24 50%, #E56203);
  color: #fff;
}

.button--secondary {
  background: #fff;
  border: solid 1px var(--primary-color);
  color: var(--primary-color);
}

/* テーブル */
.table {
  width: 100%;
  margin: 0 0 17px;
}

.table tr:nth-child(odd) {
  background: var(--bg-color);
}

.table th {
  width: 535px;
  font-size: var(--fs-s);
  font-weight: 600;
  padding: 13px 5px 13px 24px;
  border: solid 1px var(--border-color);
}

.table th sup {
  font-size: 12px;
  vertical-align: bottom;
  margin: 0 0 0 -7px;
}

.table td {
  padding: 13px 35px;
  border: solid 1px var(--border-color);
  text-align: center;
}

/* 箱 */
.box {
  padding: 27px 40px 22px;
  background: var(--bg-color);
  border: solid 1px var(--border-color);
}

/* 注釈 */
.note {
  font-weight: 300;
}

.note-list {
  text-indent: -26px;
  padding-left: 26px;
  display: block;
}


/*
* Page
*/

/* hero */
.section_head {
  background: url(../images/bg_section_02.png) no-repeat right -28px top 545px,
            url(../images/bg_section_02.png) no-repeat left -98px bottom 420px,
            linear-gradient(to bottom, #191919, #363639);
  padding: 0 min(5.208333333%, 50px) 110px;
  color: #fff;
}

.hero {
  text-align: center;
  padding: 130px 0 150px;
  position: relative;
  overflow: hidden;
}

.hero > * {
  position: relative;
}

.hero::before {
  content: "";
  display: block;
  width: 594px;
  height: 594px;
  background: url(../images/bg_section.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  right: 60px;
  top: -153px;
}

.hero__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1.5;
  margin: 0 0 9px;
}

.hero__headline span:first-child {
  font-family: "Haru TP B", sans-serif;
  font-size: 3.375rem;
}

.hero__headline span:last-child {
  font-family: "Haru TP R", sans-serif;
  font-size: 3.5rem;
  position: relative;
}

.hero__headline span sup {
  font-size: .8125rem;
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

.hero__sub-headline {
  font-family: "Haru TP M", sans-serif;
  font-size: 1.3125rem;
  margin: 0 0 12px;
}

.hero__sub-headline span {
  letter-spacing: 0.03em;
  margin: 0 3px 0 0;
}

.hero__copy {
  font-size: 1.3125rem;
  margin: 0 0 52px;
}

.hero__cta p {
  font-size: 1.0625rem;
  line-height: 1;
  margin: 0 0 24px;
}

.hero__cta-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.hero__cta-list li {
  position: relative;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature__item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 9.6875%;
}

.feature__item--reverse {
  flex-direction: row-reverse;
}

.feature__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.feature__image {
  width: 40.625%;
}

.feature__box {
  width: 100%;
  padding: 32px 38px 40px;
  background: #444449;
  border-radius: 10px;
}

.feature__list {
  display: flex;
  gap: 28px;
}

.feature__list li {
  width: 200px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.feature__list-icon {
  margin: 0 0 16px;
}

.feature__list-icon img {
  width: 48px;
}

.feature__list-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

/* 料金・仕様 */
.price__box dl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price__box dl dt {
  font-size: 1.125rem;
  line-height: 1;
}

.price__box dl dd {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.price__box dl dd span {
  font-size: var(--fs-m);
  font-weight: 600;
}

.price__box dl dd small {
  font-size: .8125rem;
  font-weight: 300;
  line-height: 1.2;
}

.price__text {
  font-size: var(--fs-xs);
  font-weight: 300;
  line-height: 1.4;
  margin: 8px 0 0;
}
.contact {
  display: flex;
  justify-content: center;
  text-align: center;
  background: #2C2C2E;
  border-radius: 10px;
  color: #fff;
  padding: 40px 15px;
  position: relative;
}

.contact dl {
  width: 50%;
  padding: 0 6.666666%;
}

.contact dl + dl::before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 100px);
  background: #5F5B5B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.contact dl dt {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 19px;
}

.contact dl dt::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 17px;
  height: 20px;
  background: url(../images/icon_contact.svg) no-repeat center center;
  background-size: 100% 100%;
  margin: 5px 0 0;
}

.contact dl dd .button {
  max-width: 100%;
  margin: 0 auto;
}

.contact__title {
  font-size: var(--fs-l);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 12px;
}

.contact__text {
  margin: 0 0 18px;
}


@media screen and (min-width: 600px) {
  .for-sp {
    display: none;
  }
  .button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .table th {
    width: 50%;
  }
}
@media screen and (max-width: 599px) {

  .for-pc {
    display: none;
  }

  .inner {
    margin: 0 min(6.41025641%,25px);
  }

  .layout_section {
    padding: 100px 0;
  }

  /*
  * Contents
  */

  /* ボタン */
  .button {
    width: 100%;
    height: 70px;
    font-size: 1.375rem;
  }

  .table th {
    width: 50%;
    padding: 13px 5px 13px 15px;
  }

  .table td {
    padding: 13px 15px;
  }

  /* 箱 */
  .box {
    padding: 27px 25px 22px;
  }

  .section_head {
    background-position: right -124px top 932px, left -84px bottom 1000px, left;
    padding: 0 0 100px;
  }

  .hero {
    padding: 70px 0 100px;
  }

  .hero::before {
    width: 479px;
    height: 479px;
    right: -112px;
    top: -120px;
  }

  .hero__headline {
    margin: 0 0 25px;
  }

  .hero__headline span:first-child {
    font-size: 3.0625rem;
  }

  .hero__headline span:last-child {
    font-size: 3.125rem;
  }

  .hero__copy {
    font-size: 1.1875rem;
  }

  .hero__cta p {
    line-height: 1.3;
    margin: 0 0 15px;
  }

  .hero__cta-list {
    flex-direction: column;
    gap: 20px;
    max-width: 314px;
    margin: 30px auto 0;
  }

  .hero__cta-list li {
    width: 100%;
  }

  .feature__item {
    flex-direction: column;
    gap: 44px;
  }

  .feature__image {
    width: 100%;
  }

  .feature__box {
    width: 100%;
  }

  .feature__list {
    flex-direction: column;
    align-items: center;
  }


  /* 1/31の時は削除 */
  .contact-date {
    justify-content: flex-start;
    padding: 26px 27px;
  }

  .contact-date__text {
    gap: 20px;
  }
  /*  */

  .contact {
    flex-direction: column;
    padding: 40px min(7.352941176%,25px);
  }

  .contact::before {
    display: none;
  }

  .contact dl {
    width: 100%;
    padding: 0 0 40px;
  }

  .contact dl + dl {
    padding: 40px 0 0;
    position: relative;
  }

  .contact dl + dl::before {
    width: calc(100% - 120px);
    height: 1px;
    background: #5F5B5B;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
  }

  .contact__title {
    font-size: min(6.153846153vw,var(--fs-l));
  }

  .contact dl dd .button {
    max-width: 255px;
    margin: 0 auto;
  }
}