@charset "UTF-8";
/*--------------------------------
  リセットcss
--------------------------------*/
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルトのpadding,margin,borderを削除 */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* フォントのcssリセット */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

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

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* bodyのデフォルトを定義 */
body {
  min-height: 100%;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
  list-style: none;
}

/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
}

/* リンクの下線表示を無くす */
a:link,
a:visited,
a:hover {
  color: inherit;
  text-decoration: none;
}

/* レイアウトリセット */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* aのカーソルを変更 */
a {
  cursor: pointer;
}

.header_title {
  background: #666;
  padding: 20px 0;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 600px) {
  .header_title {
    padding: 12px 0;
  }
}
@media print, screen and (min-width: 950px) {
  .header_title {
    padding: 16px 0;
  }
}

.footer {
  background: #666;
  color: #f7f7f7;
  padding: 20px calc(calc(100 / 320) * 12 * 1vw) 40px;
}
@media print, screen and (min-width: 600px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
@media print, screen and (min-width: 600px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 16px;
  }
}

.footer_text {
  font-size: calc(calc(100 / 320) * 12 * 1vw);
  line-height: 1.5;
}
@media print, screen and (min-width: 600px) {
  .footer_text {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 950px) {
  .footer_text {
    font-size: 16px;
  }
}

.footer_foot {
  padding-top: 24px;
}
@media print, screen and (min-width: 600px) {
  .footer_foot {
    padding-top: 32px;
  }
}

@media print, screen and (min-width: 950px) {
  .footer_navList {
    display: flex;
  }
}

.footer_navItem {
  font-size: calc(calc(100 / 320) * 11 * 1vw);
  text-decoration: underline;
}
@media print, screen and (min-width: 600px) {
  .footer_navItem {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 950px) {
  .footer_navItem {
    font-size: 14px;
  }
}
.footer_navItem + .footer_navItem {
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .footer_navItem + .footer_navItem {
    margin-top: 4px;
  }
}
@media print, screen and (min-width: 950px) {
  .footer_navItem + .footer_navItem {
    padding-left: 40px;
    margin-top: 0;
  }
}

.footer_copy {
  text-align: center;
  font-size: calc(calc(100 / 320) * 10 * 1vw);
  margin-top: 24px;
}
@media print, screen and (min-width: 600px) {
  .footer_copy {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 950px) {
  .footer_copy {
    font-size: 14px;
    margin-top: 56px;
  }
}

.main_wrap {
  margin: 0 calc(calc(100 / 320) * 10 * 1vw) 24px;
}
@media print, screen and (min-width: 600px) {
  .main_wrap {
    margin: 0 calc(calc(100 / 320) * 16 * 1vw) 40px;
  }
}
@media print, screen and (min-width: 950px) {
  .main_wrap {
    width: 60vw;
    min-width: 600px;
    margin: 0 auto 64px;
  }
}

.content_mv_wrap {
  width: 100%;
}
@media print, screen and (max-width: 599px) {
  .content_mv {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media print, screen and (min-width: 600px) {
  .content_mv {
    width: 100%;
  }
}
@media print, screen and (min-width: 950px) {
  .content_mv {
    min-width: 600px;
    max-width: 1600px;
  }
}
.content_mv > img {
  width: 100%;
  height: auto;
}

.content_head_text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.75;
}
@media print, screen and (min-width: 600px) {
  .content_head_text {
    font-size: 16px;
  }
}

.content_foot {
  margin-top: 48px;
}
@media print, screen and (min-width: 600px) {
  .content_foot {
    margin-top: 56px;
  }
}
@media print, screen and (min-width: 950px) {
  .content_foot {
    margin-top: 80px;
  }
}

.content_annotation {
  margin-top: 80px;
  color: #333;
  letter-spacing: 0.04em;
}
@media print, screen and (min-width: 600px) {
  .content_annotation {
    padding: 0 40px;
  }
}

.content_inline_text {
  padding-bottom: 1px;
  border-bottom: 1px solid #000;
  font-weight: bold;
}

.item_title {
  font-size: calc(calc(100 / 320) * 18 * 1vw);
  padding: calc(calc(100 / 320) * 4 * 1vw) calc(calc(100 / 320) * 18 * 1vw);
  margin-top: 40px;
  border-left: solid 8px #666;
}
@media print, screen and (min-width: 600px) {
  .item_title {
    font-size: calc(calc(100 / 320) * 16 * 1vw);
    margin-top: 48px;
    padding: calc(calc(100 / 320) * 4 * 1vw) calc(calc(100 / 320) * 14 * 1vw);
    border-left: solid 12px #666;
  }
}
@media print, screen and (min-width: 950px) {
  .item_title {
    font-size: 28px;
    padding: 8px 16px;
    margin-top: 64px;
  }
}

.item_text {
  font-size: 13.5px;
  font-size: calc(calc(100 / 320) * 13.5 * 1vw);
  text-align: center;
  padding-inline: 5px;
}
@media print, screen and (min-width: 400px) {
  .item_text {
    font-size: 15px;
    font-size: calc(calc(100 / 400) * 15 * 1vw);
  }
  .item_text.--adjust01 {
    padding-inline: 10px;
  }
}
@media print, screen and (min-width: 600px) {
  .item_text {
    font-size: 16px;
  }
}
.item_movie + .item_text {
  margin-top: 20px;
}

.item_content {
  margin-top: 24px;
}
@media print, screen and (min-width: 600px) {
  .item_content {
    padding: 0 40px;
  }
}

.item_img {
  margin-top: 20px;
}
@media print, screen and (min-width: 950px) {
  .item_img > img {
    width: 100%;
  }
}

.item_img_annotation {
  text-align: right;
  font-size: calc(calc(100 / 320) * 12 * 1vw);
  margin-top: 4px;
}
@media print, screen and (min-width: 600px) {
  .item_img_annotation {
    font-size: calc(calc(100 / 320) * 9 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .item_img_annotation {
    font-size: 16px;
    margin-top: 12px;
  }
}

.item_movie {
  margin-top: 24px;
}
.item_img + .item_movie {
  margin-top: 40px;
}
@media print, screen and (min-width: 600px) {
  .item_img + .item_movie {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 950px) {
  .item_img + .item_movie {
    margin-top: 80px;
  }
}

.item_flex,
.item_flex--02 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.item_flex--02 .flex_item {
  width: 50%;
}

.movie {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie--mp4 {
  width: 100%;
}

.movie_video {
  width: 100%;
}

.movie_wrap {
  background-color: #000;
  width: 100%;
}

.movie_title {
  text-align: center;
  font-size: calc(calc(100 / 320) * 16 * 1vw);
  margin-top: 10px;
}
@media print, screen and (min-width: 600px) {
  .movie_title {
    font-size: calc(calc(100 / 320) * 10 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .movie_title {
    font-size: 20px;
  }
}

.annotation_title {
  font-size: calc(calc(100 / 320) * 11 * 1vw);
}
@media print, screen and (min-width: 600px) {
  .annotation_title {
    font-size: calc(calc(100 / 320) * 10 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .annotation_title {
    font-size: 20px;
  }
}

.annotation_text {
  font-size: calc(calc(100 / 320) * 10 * 1vw);
  padding-left: 2.8vw;
}
@media print, screen and (min-width: 600px) {
  .annotation_text {
    font-size: calc(calc(100 / 320) * 9 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .annotation_text {
    font-size: 18px;
    padding-left: 2rem;
    margin-top: 8px;
  }
}

.annnotation_list {
  font-size: calc(calc(100 / 320) * 9 * 1vw);
  margin-top: 4px;
  margin-left: 3vw;
}
@media print, screen and (min-width: 600px) {
  .annnotation_list {
    font-size: calc(calc(100 / 320) * 8 * 1vw);
    margin-top: 8px;
  }
}
@media print, screen and (min-width: 950px) {
  .annnotation_list {
    margin-top: 12px;
    margin-left: 2rem;
    font-size: 16px;
  }
}

.annnotation_item {
  padding-left: 3vw;
  position: relative;
}
@media print, screen and (min-width: 600px) {
  .annnotation_item {
    padding-left: 3.2vw;
  }
}
@media print, screen and (min-width: 950px) {
  .annnotation_item {
    padding-left: 20px;
  }
}
.annnotation_item::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}
.annnotation_item + .annnotation_item {
  margin-top: 2px;
}
@media print, screen and (min-width: 600px) {
  .annnotation_item + .annnotation_item {
    margin-top: 4px;
  }
}
@media print, screen and (min-width: 600px) {
  .annnotation_item + .annnotation_item {
    margin-top: 8px;
  }
}

.annotation_link {
  padding-bottom: 1px;
  border-bottom: 1px solid #333;
}

.alert {
  margin-top: 40px;
}

.alert_text {
  font-size: calc(calc(100 / 320) * 11 * 1vw);
  text-align: center;
  color: red;
  text-decoration: underline;
}
@media print, screen and (min-width: 600px) {
  .alert_text {
    font-size: calc(calc(100 / 320) * 10 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .alert_text {
    font-size: 20px;
  }
}

.content_alert {
  margin-top: 40px;
}

.content_alert_title {
  font-size: calc(calc(100 / 320) * 11 * 1vw);
  color: red;
}
@media print, screen and (min-width: 600px) {
  .content_alert_title {
    font-size: calc(calc(100 / 320) * 10 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .content_alert_title {
    font-size: 20px;
  }
}

.content_alert_text {
  font-size: calc(calc(100 / 320) * 10 * 1vw);
  padding-left: 2.8vw;
}
@media print, screen and (min-width: 600px) {
  .content_alert_text {
    font-size: calc(calc(100 / 320) * 9 * 1vw);
  }
}
@media print, screen and (min-width: 950px) {
  .content_alert_text {
    font-size: 18px;
    padding-left: 2rem;
    margin-top: 8px;
  }
}

@media print, screen and (min-width: 400px) {
  .u-sm {
    display: block;
  }
}
@media print, screen and (min-width: 400px) and (min-width: 400px) {
  .u-sm {
    display: none;
  }
}

.u-sp {
  display: block;
}
@media print, screen and (min-width: 600px) {
  .u-sp {
    display: none;
  }
}

.u-md {
  display: none;
}
@media print, screen and (min-width: 600px) {
  .u-md {
    display: block;
  }
}

.button_wrap {
  max-width: 60vw;
  margin: 0 auto;
}
@media print, screen and (min-width: 950px) {
  .button_wrap {
    width: 60%;
  }
}

.button_buy {
  text-align: center;
  background: #fff;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 100%;
  min-height: 56px;
  padding: 16px calc(calc(100 / 320) * 20 * 1vw);
  color: #228bc8;
  font-size: calc(calc(100 / 320) * 16 * 1vw);
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 600px) {
  .button_buy {
    font-size: calc(calc(100 / 320) * 12 * 1vw);
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 950px) {
  .button_buy {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.button_buy::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
  border-color: transparent transparent #228bc8 transparent;
}
.button_buy:hover {
  background: #228bc8;
  border: 1px solid #05639a;
  color: #fff;
}
.button_buy span {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: inline-block;
}
.button_buy span::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
.button_buy span::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: 2px solid #228bc8;
  border-right: 2px solid #228bc8;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 4px;
  margin-top: -3px;
}

.display_pc {
  display: none;
}
@media print, screen and (min-width: 950px) {
  .display_pc {
    display: block;
  }
}

.display_sp {
  display: block;
}
@media print, screen and (min-width: 950px) {
  .display_sp {
    display: none;
  }
}

.footer_exLinkIcon {
  height: auto;
  width: calc(calc(100 / 320) * 12 * 1vw);
  margin-left: calc(calc(100 / 320) * 4 * 1vw);
  margin-bottom: -2px;
}
@media print, screen and (min-width: 600px) {
  .footer_exLinkIcon {
    width: 16px;
    margin-left: 8px;
  }
}

.annotation_exLinkIcon {
  height: auto;
  width: calc(calc(100 / 320) * 9 * 1vw);
}
@media print, screen and (min-width: 950px) {
  .annotation_exLinkIcon {
    width: 20px;
  }
}