@charset 'UTF-8';

/* ===================================================================
CSS information
 file name  :  style.css
 style info :  ブライトエイジLP スタイル
=================================================================== */

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

:focus {
  outline: none;
}

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 {
  /* font-size: 100%; */
  margin: 0;
  padding: 0;
  list-style: none;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  /* background: transparent; */
}

/* 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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
} */

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

html {
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  font-size: calc((24vw / 750) * 100);
}

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

/* ----------------------
  COMMON
---------------------- */
body {
  background-color: #fff;
}

.wrap {
  display: block;
  margin: 0 auto;
  max-width: 750px;
}

.l-table {
  margin: 0 auto;
  max-width: 640px;
}

.rel {
  position: relative;
}

.abs {
  position: absolute;
}

main {
  background: #fff;
}

.accordion_wrap {
  margin: 40px auto 70px;
}

.accordion_box {
  max-width: 580px;
  margin: 0 auto 40px;
}

.accordion_box .ac_btn {
  display: block;
  position: relative;
  color: #402021;
  border: 1px solid #402021;
  text-align: center;
  padding: 1em;
  font-size: clamp(0px, calc(100vw / 750 * 28), 28px);
}

.accordion_box .ac_btn::before,
.accordion_box .ac_btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1px;
  background-color: #402021;
  right: 1em;
  top: calc(50% - 1px);
  transform: rotate(0deg);
  transition: 0.3s;
}

.accordion_box .ac_btn::after {
  transform: rotate(90deg);
}

.accordion_box .ac_btn.open::after {
  transform: rotate(0deg);
}

.accordion_box dd {
  display: none;
  padding-top: 20px;
  font-size: clamp(0px, 3.73333vw, 28px);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.include_area {
  padding: 20px 0px 50px;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.include_area .include .content {
    padding: 0;
}

#footer {
  max-width: 750px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

#footer .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.content .img03 {
  margin-top: -2vw;
}

@media only screen and (max-width: 640px) {
  .accordion_box {
    margin: 0 4.7vw 2em;
  }
}

@media only screen and (max-width: 749px) {
  .accordion_wrap {
    margin: 5.333vw auto 9.3333vw;
  }
  .accordion_box dd {
    padding-top: 2.666vw;
  }
  .include_area {
    padding: 2.666vw 4.666vw 6.666vw;
  }
  #footer .sns {
    margin-bottom: 9vw;
  }
  #footer table td img {
    width: 100% !important;
  }
}

