@charset "UTF-8";

/*
  scssでカスタマイズしています。
  css編集するときはscssから変更するか、cssファイルを直接編集する場合は
  編集以降はcssのみ編集してください。
*/

/*---------------	リセットcss	---------------*/

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;
  border: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  font-style: normal;
}

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

html {
  overflow-y: scroll;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

input,
textarea,
button {
  border: none;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
}

body {
  overflow: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ========================================
	Component(共通利用の部品。幅とか色は持たせない)
	命名規則: .c-
========================================= */

.c-container {
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 0 auto;
  padding: 0 20px;
}

/*----- レスポンシブ表示切り替え -----*/

.c-pc_only {
  display: block !important;
}

.c-pc_only--flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.c-sp_only {
  display: none !important;
}

/*----- ヘッダー -----*/

.c-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 1.875rem;
  background-color: #fff;
}

.c-header__logo {
  position: absolute;
  right: 3.75rem;
  bottom: 0;
  -webkit-transform: translateY(45%);
  transform: translateY(45%);
  width: 8.75rem;
  height: auto;
}

/*----- フッター -----*/

.c-footer {
  width: 100%;
  height: auto;
  padding-bottom: 1.25rem;
  background-color: #ebebe7;
  color: #1f2683;
}

.c-footer__moviebox {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 15px;
}

.c-footer__moviebox::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  background-color: #fff;
  content: "";
}

.c-footer__movie {
  position: relative;
  z-index: 2;
  width: calc(100% / 3 * 2 - 30px / 3 / 2);
  height: auto;
}

.c-footer__movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.c-footer__textbox {
  width: 95%;
  max-width: 450px;
  height: auto;
  margin: 8.5rem auto 0;
}

.c-footer__catch {
  width: 36.875rem;
  height: auto;
}

.c-footer__textbox__title {
  margin: 2.125rem auto 0;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.c-footer__textbox__name {
  margin: 1.25rem auto 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.c-footer__textbox__text {
  margin: .8125rem auto 0;
  font-size: .75rem;
  font-weight: 500;
  line-height: calc( 24 / 12);
}

.c-footer__infolist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 18.75rem auto 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
}

.c-footer__infolistitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.c-footer__infolistitem__role {
  padding-right: 1.5625rem;
  font-size: .875rem;
  font-weight: 300;
  line-height: 1;
}

.c-footer__infolistitem__partition {
  display: block;
  height: 1px;
  background-color: #dedede;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-footer__infolistitem__person {
  padding-left: 1.5625rem;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 300;
  color: #171c61;
  line-height: 1;
}

.c-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: calc( 100% - 30px);
  height: auto;
  margin: 18.75rem auto 0;
  border-top: 1px solid #dedede;
  padding-top: 1.25rem;
}

.c-footer__bottom__linklist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.875rem 0 .3125rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: .875rem;
}

.c-footer__bottom__linklistitem {
  width: 100%;
  height: auto;
}

.c-footer__bottom__linklistitem dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-footer__bottom__linklistitem dt {
  width: 12.5rem;
  font-size: .75rem;
  line-height: 1;
}

.c-footer__bottom__linklistitem dd {
  display: block;
  line-height: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c-footer__bottom__linklistitem dd a {
  display: block;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 300;
  color: #1f2683;
  line-height: 1;
}

.c-footer__bottom__copyright {
  font-size: .75rem;
  font-weight: 300;
  line-height: 1;
}

/*----- jsカスタマイズclass -----*/

.c-fadeIn {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 0;
}

.c-fadeIn.js-active {
  opacity: 1;
}

/* ========================================
	Utility(わずかな調整などを行うための便利要素)
	命名規則: .u-
========================================= */

@media screen and (min-width: 769px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-container {
    width: 100%;
  }

  .c-pc_only {
    display: none !important;
  }

  .c-pc_only--flex {
    display: none !important;
  }

  .c-sp_only {
    display: block !important;
  }

  .c-header {
    height: .9375rem;
  }

  .c-header__logo {
    right: .9375rem;
    width: 5.125rem;
  }

  .c-footer {
    padding-bottom: .9375rem;
  }

  .c-footer__movie {
    width: 100%;
  }

  .c-footer__textbox {
    max-width: 300px;
    margin: 9.375rem auto 0;
  }

  .c-footer__catch {
    width: 100%;
  }

  .c-footer__textbox__title {
    margin: 3.25rem auto 0;
    font-size: .75rem;
    letter-spacing: .05em;
  }

  .c-footer__textbox__name {
    margin: .625rem auto 0;
    font-size: 1.0625rem;
  }

  .c-footer__textbox__text {
    margin: .75rem auto 0;
    font-size: .625rem;
    line-height: calc( 34 / 18);
  }

  .c-footer__infolist {
    max-width: 16rem;
    margin: 12.25rem auto 0;
    gap: 1.0625rem;
  }

  .c-footer__infolistitem__role {
    padding-right: .75rem;
    font-size: .625rem;
  }

  .c-footer__infolistitem__person {
    padding-left: .75rem;
    font-size: .625rem;
  }

  .c-footer__bottom {
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    margin: 12.5rem auto 0;
    padding-top: 1.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3.75rem;
  }

  .c-footer__bottom__linklist {
    padding: 0;
    gap: .625rem;
  }

  .c-footer__bottom__linklistitem dt {
    width: 7.8125rem;
    font-size: .625rem;
  }

  .c-footer__bottom__linklistitem dd a {
    font-size: .625rem;
  }

  .c-footer__bottom__copyright {
    font-size: .625rem;
  }
}

@media screen and (max-width: 360px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1300px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 800px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 421px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .c-container {
    width: 100%;
  }
}