@charset "UTF-8";
/**********************************************************
* initialize.scss
* 初めに読み込むものを定義

* 目次
* @import "./variable";
* @import "./animations";
* @import "./parts";
**********************************************************/
html {
  font-size: 100%;
  overflow-x: hidden;
}
@media (min-width: 400px) {
  html {
    font-size: calc(112.5% + 4 * (100vw - 400px) / 400);
    min-height: 0vw;
    /* Fix Safari bug with viewport units in calc() */
  }
}
@media all and (min-width: 400px) and (-ms-high-contrast: none) {
  html {
    /* ここに書く */
    font-size: 100%;
  }
}

@media (min-width: 1000px) {
  html {
    font-size: calc(137.5%);
    min-height: 0vw;
    /* Fix Safari bug with viewport units in calc() */
  }
}
@media all and (min-width: 1000px) and (-ms-high-contrast: none) {
  html {
    /* ここに書く */
    font-size: 140%;
  }
}

body {
  position: relative;
  overflow-x: hidden;
}

a:hover {
  text-decoration: transparent;
}

/**********************
* variable.scss
* variables/で定義したscssを読み込むファイル
**********************/
/*****************************
* variables/collors.scss
* 使う色はここで定義する
* 使用例

.foo {
    color: colors(twitter);
}
*****************************/
/*****************************
* variables/breakpoints.scss
* breakpointはここで定義したものを呼び出す
* 使用例

@include media-query(sm) {
  color: blue;
}
*****************************/
/*****************************
* variables/functions.scss
* 便利な関数を用意
* 目次
* center
*****************************/
/* 使用例
.foo {
  @include center;
}
****/
/*****************************
* variables/fonts.scss
* 使用するフォント
*****************************/
@font-face {
  font-family: "JosefinSans-BoldItalic";
  src: url("fonts/JosefinSans-BoldItalic.ttf"), url("fonts/JosefinSans-BoldItalic.ttf") format("ttf"), url("fonts/JosefinSans-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "JosefinSans-LightItalic";
  src: url("fonts/JosefinSans-LightItalic.ttf"), url("fonts/JosefinSans-LightItalic.ttf") format("ttf"), url("fonts/JosefinSans-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Ranga-Regular";
  src: url("fonts/Ranga-Regular.ttf"), url("fonts/Ranga-Regular.ttf") format("ttf"), url("fonts/Ranga-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Teko-Light";
  src: url("fonts/Teko-Light.ttf"), url("fonts/Teko-Light.ttf") format("ttf"), url("fonts/Teko-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Teko-SemiBold";
  src: url("fonts/Teko-SemiBold.ttf"), url("fonts/Teko-SemiBold.ttf") format("ttf"), url("fonts/Teko-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Teko-Medium";
  src: url("fonts/Teko-Medium.ttf"), url("fonts/Teko-Medium.ttf") format("ttf"), url("fonts/Teko-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "KozGoPr6N-Heavy";
  src: url("fonts/KozGoPr6N-Heavy.otf"), url("fonts/KozGoPr6N-Heavy.otf") format("otf"), url("fonts/KozGoPr6N-Heavy.otf") format("truetype");
}
@font-face {
  font-family: "KozGoPr6N-Regular";
  src: url("fonts/KozGoPr6N-Regular.otf"), url("fonts/KozGoPr6N-Regular.otf") format("otf"), url("fonts/KozGoPr6N-Regular.otf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-Black";
  src: url("fonts/NotoSansJP-Black.otf"), url("fonts/NotoSansJP-Black.otf") format("otf"), url("fonts/NotoSansJP-Black.otf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url("fonts/NotoSansJP-Bold.otf"), url("fonts/NotoSansJP-Bold.otf") format("otf"), url("fonts/NotoSansJP-Bold.otf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-Light";
  src: url("fonts/NotoSansJP-Light.otf"), url("fonts/NotoSansJP-Light.otf") format("otf"), url("fonts/NotoSansJP-Light.otf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url("fonts/NotoSansJP-Medium.otf"), url("fonts/NotoSansJP-Medium.otf") format("otf"), url("fonts/NotoSansJP-Medium.otf") format("truetype");
}
@font-face {
  font-family: "NotoSansJP-Regular";
  src: url("fonts/NotoSansJP-Regular.otf"), url("fonts/NotoSansJP-Regular.otf") format("otf"), url("fonts/NotoSansJP-Regular.otf") format("truetype");
}
@font-face {
  font-family: "NotoSerifJP-SemiBold";
  src: url("fonts/NotoSerifJP-SemiBold.otf"), url("fonts/NotoSerifJP-SemiBold.otf") format("otf"), url("fonts/NotoSerifJP-SemiBold.otf") format("truetype");
}
/*****************************
* animations.scss
* cssアニメーションを定義

* 目次
* フェードインアニメーション
*****************************/
/*****フェードインアニメーション*****/
.js-fadein-static {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s ease 0s;
}

.js-fadein {
  opacity: 0;
  transform: translate(0, 70px);
  transition: all 1s ease 0s;
}

.js-fadein-left {
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 1s ease 0s;
}

.js-fadein-right {
  opacity: 0;
  transform: translate(100%, 0);
  transition: all 1s ease 0s;
}

.js-fadein-active {
  opacity: 1;
  transform: translate(0, 0);
}

.js-load-one,
.js-load-two,
.js-load-three {
  opacity: 0;
  transition: all 1s ease 0s;
}

.js-load-active {
  opacity: 1;
}

/*****************************
* parts.scss
* パーツごとのscssを読み込む

* 目次
* menu
*****************************/
.carousel-inner {
  overflow: unset;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

.cp_cont {
  height: 100%;
  position: relative;
  z-index: 10;
}

.cp_offcm01 {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
}

/* menu */
.cp_offcm01 .cp_menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 50%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.53s transform;
  transition: 0.53s transform;
  -webkit-transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  background-color: #b81c22;
  opacity: 1;
}

.cp_offcm01 .cp_menu ul {
  margin: 0;
  padding: 0;
  padding-right: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.cp_offcm01 .cp_menu li {
  list-style: none;
  width: 100%;
}

.cp_offcm01 .cp_menu li a {
  display: block;
  padding: 0 20px 20px;
  text-decoration: none;
  color: #ffffff;
  font-family: 'Jost';
  font-size: 30px;
  font-weight: 300;
  text-align: end;
}

.cp_offcm01 #cp_toggle01 {
  position: absolute;
  display: none;
  opacity: 0;
}

.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

/* menu toggle */
.cp_offcm01 #cp_toggle01 ~ label {
  position: fixed;
  top: 0;
  right: 1rem;
  z-index: 11;
  background-color: transparent;
  display: block;
  padding: 2rem;
  cursor: pointer;
  text-align: center;
  color: #B81C22;
}
.cp_offcm01 #cp_toggle01 ~ label span {
  position: absolute;
  left: 12%;
  width: 70%;
  transform: translateX(5%);
  height: 2px;
  background-color: #B81C22;
  border-radius: 4px;
  transition: all .4s;
}
.cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(1) {
  top: 25%;
}
.cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(2) {
  top: 50%;
  left: 16%;
  transform: translate(0, -50%);
}
.cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(3) {
  bottom: 25%;
}

.cp_offcm01 #cp_toggle01:checked ~ label {
  background-color: transparent;
}
.cp_offcm01 #cp_toggle01:checked ~ label span {
  background-color: white;
}
.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
  transform: translateY(1rem) rotate(45deg);
}
.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
  opacity: 0;
}
.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
  transform: translateY(-1rem) rotate(-45deg);
}

.cp_offcm01 #cp_toggle01 ~ label::before {
  font-size: 2em;
  color: white;
}

/* contents */
.cp_contents {
  color: #333333;
  text-align: center;
}

@media (max-width: 768px) {
  ol, ul {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .cp_cont {
    height: 100%;
    position: relative;
    z-index: 10;
  }

  .cp_offcm01 {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
  }

  /* menu */
  .cp_offcm01 .cp_menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100%;
    cursor: pointer;
    -webkit-transition: 0.53s transform;
    transition: 0.53s transform;
    -webkit-transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
    transition-timing-function: cubic-bezier(0.38, 0.52, 0.23, 0.99);
  }

  .cp_offcm01 .cp_menu ul {
    margin: 0;
    padding: 0;
    padding-right: 10px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
  }

  .cp_offcm01 .cp_menu li {
    list-style: none;
    width: 100%;
  }

  .cp_offcm01 .cp_menu li a {
    display: block;
    padding: 0 20px 20px;
    text-decoration: none;
    color: #ffffff;
    font-family: 'Jost';
    font-size: 25px;
    font-weight: 300;
    text-align: end;
  }

  .cp_offcm01 #cp_toggle01 {
    position: absolute;
    display: none;
    opacity: 0;
  }

  .cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
  }

  /* menu toggle */
  .cp_offcm01 #cp_toggle01 ~ label {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    display: block;
    padding: 2rem;
    cursor: pointer;
    text-align: center;
  }
  .cp_offcm01 #cp_toggle01 ~ label span {
    position: absolute;
    left: 15%;
    width: 70%;
    transform: translateX(5%);
    border-radius: 4px;
    transition: all .4s;
  }
  .cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(1) {
    top: 25%;
  }
  .cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(2) {
    top: 50%;
    left: 19%;
    transform: translate(0, -50%);
  }
  .cp_offcm01 #cp_toggle01 ~ label span:nth-of-type(3) {
    bottom: 25%;
  }

  .cp_offcm01 #cp_toggle01:checked ~ label {
    background-color: transparent;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
    transform: translateY(1rem) rotate(45deg);
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
    opacity: 0;
  }
  .cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
    transform: translateY(-1rem) rotate(-45deg);
  }

  .cp_offcm01 #cp_toggle01 ~ label::before {
    font-size: 2em;
    color: white;
  }

  /* contents */
  .cp_contents {
    color: #333333;
    text-align: center;
  }
}
.multi-carousel .carousel-control-next,
.multi-carousel .carousel-control-prev {
  width: 25px;
  background: gray;
}

/* top */
.carousel-inner {
  height: 100vh;
}

.index .header {
  height: 100vh;
    /*
    &__heading1{
      &--big{

      }
      &--bold{
        font-weight: bold;
      }

    }
    &__heading2{

    }
    &__heading3{

    }
    */
}
.index .header .carousel {
  position: relative;
  height: 100vh;
}
.index .header .carousel-item {
  height: 100%;
}
.index .header .carousel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.index .header .container-fluid {
  position: absolute;
  top: 0;
  height: 100vh;
}
.index .header__top {
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.index .header__logo img {
  width: 200px;
}
.index .header__heading {
  width: 100%;
}
.index .header__middle {
  padding-bottom: 2rem;
}
.index .header__img1 {
  width: 40%;
  height: auto;
}
.index .header__img2 {
  width: 30%;
  height: auto;
  padding: 1rem 0;
}
.index .header__bottom {
  padding-bottom: 2rem;
}
.index .info {
  padding: 2rem 0;
}
.index .info .news {
  margin-bottom: 4rem;
}
.index .info .news__heading {
  color: #B81C22;
}
.index .info .news__heading .title {
  font-family: 'Teko-Medium';
  font-size: 4rem;
  margin: 0;
}
.index .info .news__heading .subtitle {
  font-family: 'NotoSansJP-Medium';
  margin: -1rem 0 1rem;
}
.index .info .news__contents.contents .article {
  font-family: 'NotoSansJP-Regular';
  border-bottom: #333333 1px solid;
  margin: 1rem 0;
}
.index .info .message,
.index .info .whatIs {
  margin-bottom: 4rem;
}
.index .info .message__heading .title,
.index .info .whatIs__heading .title {
  font-family: 'Teko-Medium';
  font-size: 4.7rem;
  margin: 0;
  opacity: .2;
  letter-spacing: 5px;
  line-height: .8;
}
@media screen and (min-width: 768px) {
  .index .info .message__heading .title,
  .index .info .whatIs__heading .title {
    line-height: .4;
    font-size: 5.7rem;
  }
}
.index .info .message__heading .subtitle,
.index .info .whatIs__heading .subtitle {
  margin: -2rem 0 1.5rem;
  font-family: 'NotoSansJP-Black';
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .index .info .message__heading .subtitle,
  .index .info .whatIs__heading .subtitle {
    margin: -1.2rem 0 1.5rem;
  }
}
.index .info .message__content p,
.index .info .whatIs__content p {
  font-family: 'NotoSansJP-Regular';
}
.index .info .message__content .sign,
.index .info .whatIs__content .sign {
  font-family: 'NotoSerifJP-SemiBold';
}
.index .info .message__heading {
  color: #CE9D00;
}
.index .info .whatIs {
  color: #B81C22;
}
.index .info .whatIs__heading {
  color: #B81C22;
}
.index .with {
  padding-bottom: 3rem;
  background-color: #CE9D00;
}
.index .with__content {
  position: relative;
  padding-top: 60px;
}
.index .with .stick {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 30px;
  background-color: #B81C22;
}
.index .with__title {
  color: #B81C22;
  font-family: 'JosefinSans-BoldItalic';
  font-size: 2.5rem;
  line-height: .9;
}
.index .with__title span {
  font-size: 1.5rem;
}
.index .with__subtitle {
  color: white;
  font-family: 'Ranga-Regular';
  font-size: 2rem;
  line-height: .9;
  padding: 1rem 0;
}
.index .with__subtitle--line {
  line-height: 1.4;
  font-size: 2.5rem;
}
.index .with__txt {
  color: white;
  font-family: 'NotoSansJP-Regular';
}
.index .events {
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #B81C22;
  background-image: url("/img/events/background-sp.png");
  padding: 6rem 0 5rem;
  color: white;
}
@media screen and (min-width: 768px) {
  .index .events {
    background-image: url("/img/events/background-md.png");
    padding: 6rem 19vw 10rem;
  }
}
.index .events__heading h2 {
  font-family: 'Teko-SemiBold';
  font-size: 5rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .index .events__heading h2 {
    font-size: 5rem;
  }
}
.index .events__heading p {
  margin: -1rem 0 1rem;
  font-family: 'NotoSansJP-Bold';
}
.index .events__heading img {
  padding: 2rem 3rem;
  width: 100%;
}
.index .events .content {
  margin-bottom: 5rem;
}
.index .events .content__heading h3 {
  font-family: 'NotoSansJP-Black';
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .index .events .content__heading h3 {
    font-size: 2rem;
  }
}
.index .events .content__heading img {
  width: 4rem;
  height: auto;
  margin-right: 1rem;
}
.index .events .content .article {
  margin: 2rem 0;
}
.index .events .content .article__heading {
  font-family: 'NotoSansJP-Black';
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.index .events .content .article__heading img {
  margin: 0 0 0 5px;
  width: 30px;
}
.index .events .content .article__txt {
  font-family: 'NotoSansJP-Regular';
  font-size: .8rem;
}
.index .events .content .article__btn {
  font-family: 'NotoSansJP-Bold';
}
.index .events .content .article__btn .btnWhite {
  background-color: white;
  color: #B81C22;
  display: inline-block;
  padding: 5px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .index .events .content .article__btn .btnWhite {
    width: 80%;
  }
}
.index .pickup {
  padding: 8rem 0;
}
.index .pickup__heading {
  position: relative;
}
.index .pickup__heading img {
  position: absolute;
  width: 13rem;
  height: auto;
  top: -16rem;
  left: 50%;
  transform: translateX(-50%);
}
.index .pickup__container .content {
  position: relative;
  margin: 3rem -15px;
}
.index .pickup__container .content .icon {
  position: absolute;
  top: 1.5rem;
  width: 50px;
  z-index: 9;
}
.index .pickup__container .content .icon--leftOne {
  left: 15px;
}
.index .pickup__container .content .icon--leftTwo {
  left: 70px;
}
.index .pickup__container .content .icon--rightOne {
  right: 15px;
}
.index .pickup__container .content .icon--rightTwo {
  right: 70px;
}
.index .pickup__container .content__imgContainer {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}
.index .pickup__container .content__img {
  display: inline-block;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .index .pickup__container .content__imgContainer {
    display: inline-block;
    overflow: hidden;
  }
  .index .pickup__container .content__imgContainer--left {
    transform-origin: 0 0;
    transform: skewX(-30deg);
  }
  .index .pickup__container .content__imgContainer--right {
    transform-origin: bottom;
    transform: skewX(-30deg);
  }
  .index .pickup__container .content__img {
    display: inline-block;
    overflow: hidden;
  }
  .index .pickup__container .content__img--left {
    transform-origin: 0 0;
    transform: skewX(30deg);
  }
  .index .pickup__container .content__img--right {
    transform-origin: bottom;
    transform: skewX(30deg);
  }
}
@media screen and (min-width: 768px) {
  .index .pickup__container .content__sentence--left {
    padding-right: 15%;
  }
  .index .pickup__container .content__sentence--right {
    padding-right: 0;
    padding-left: 15%;
  }
}
.index .pickup__container .content__with {
  padding: 1rem 0 0;
}
.index .pickup__container .content__with img {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .index .pickup__container .content__with img {
    width: 100%;
  }
}
.index .pickup__container .content__title {
  font-family: 'NotoSansJP-Black';
  color: #B81C22;
  margin-top: 1rem;
}
.index .pickup__container .content__title h3 {
  font-size: 1rem;
}
.index .pickup__container .content__subtitle {
  font-family: 'NotoSansJP-Medium';
}
.index .pickup__container .content__subtitle p {
  font-size: .9rem;
}
.index .pickup__container .content__txt {
  font-family: 'NotoSansJP-Regular';
}
.index .pickup__container .content__txt p {
  font-size: .7rem;
}
.index .pickup__container .content__btn {
  margin-top: 3rem;
  padding: 0 15%;
}
.index .pickup__container .content__btn .btn__red {
  border: 2px #B81C22 solid;
  font-family: 'NotoSansJP-Bold';
  font-size: .8rem;
  padding: 5px 0;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .index .pickup__container .content__btn .btn__red {
    width: 20rem;
    margin: 0 .2rem;
  }
}
.index .pickup__container .content__btn .btn__red .red {
  color: #B81C22;
}
.index .pickup__container .content__btn .btn__red .black {
  color: #333333;
}
.index .ttable__heading h2 {
  font-family: 'Teko-SemiBold';
  color: #B81C22;
  margin: 0;
  display: inline;
  vertical-align: text-bottom;
  margin-bottom: -1.6rem;
  font-size: 3rem;
  text-align: end;
}
@media screen and (min-width: 768px) {
  .index .ttable__heading h2 {
    font-size: 5rem;
  }
}
.index .ttable__heading h3 {
  font-family: 'NotoSansJP-Bold';
  color: #B81C22;
  margin: 0;
  font-size: .7rem;
  display: inline;
  vertical-align: text-bottom;
  padding-top: 1.9rem;
  margin-bottom: -3px;
}
.index .ttable__content {
  padding: 3rem 0;
  background-color: #EFD2D3;
}
@media screen and (min-width: 768px) {
  .index .ttable__content img {
    width: 80%;
    text-align: center;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.index .movie {
  padding: 3rem 0;
}
.index .movie__heading {
  margin-bottom: 2rem;
  color: #B81C22;
}
.index .movie__heading .title {
  text-align: center;
  margin: 0;
  font-family: 'Teko-SemiBold';
  font-size: 5rem;
}
.index .movie__heading .subtitle {
  font-size: .5rem;
  text-align: center;
  font-family: 'NotoSansJP-Bold';
  font-size: 1rem;
  margin: -1rem 0 1rem;
}
.index .movie__content {
  position: relative;
  margin: 2rem 0;
}
.index .movie__content .circle {
  width: 13rem;
  height: 13rem;
  /* ドット（水玉）模様のCSS */
  background-color: transparent;
  background-image: radial-gradient(#ff4d4d 13%, rgba(0, 0, 0, 0) 16%), radial-gradient(#ff4d4d 13%, rgba(0, 0, 0, 0) 16%);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
  border-radius: 50%;
  /* 絶対位置指定 */
  position: absolute;
}
@media screen and (min-width: 768px) {
  .index .movie__content .circle {
    width: 22rem;
    height: 22rem;
  }
}
.index .movie__content .circle--left {
  top: -5rem;
  left: -5rem;
}
@media screen and (min-width: 768px) {
  .index .movie__content .circle--left {
    left: -10rem;
  }
}
.index .movie__content .circle--right {
  top: -2rem;
  right: -5rem;
}
@media screen and (min-width: 768px) {
  .index .movie__content .circle--right {
    top: 2rem;
    right: -10rem;
  }
}
.index .movie__content .title {
  font-family: 'Ranga-Regular';
  color: #B81C22;
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .index .movie__content .title {
    font-size: 5rem;
  }
}
.index .movie__content .title--left {
  text-align: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: start;
  margin-left: 3rem;
}
@media screen and (min-width: 768px) {
  .index .movie__content .title--left {
    text-align: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 0;
  }
}
.index .movie__content .title--right {
  text-align: right;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: end;
  margin-right: 3rem;
}
@media screen and (min-width: 768px) {
  .index .movie__content .title--right {
    text-align: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 0;
  }
}
.index .movie__content .link img {
  width: 100%;
}
.index .footer {
  padding: 2rem 0;
  background-color: #B81C22;
}
.index .footer__heading {
  color: #CE9D00;
  font-family: 'NotoSansJP-Medium';
}
.index .footer__heading h2 {
  font-size: 1rem;
}
.index .footer__carousel {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .index .footer__carousel .carousel-control-next,
  .index .footer__carousel .carousel-control-prev {
    width: 5%;
  }
}
.index .footer__carousel .card {
  background-color: transparent;
  border: transparent;
}
.index .footer__carousel .card-body {
  padding: 0;
}
.index .footer__carousel .card-title {
  color: white;
  text-align: center;
  margin: 0;
  font-size: .7rem;
  font-family: 'NotoSansJP-Bold';
}
.index .footer__logo {
  width: 200px;
  text-align: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .index .footer__logo {
    margin-top: 0;
  }
}

/*雑に書きたい時書く、書いたらふさわしい場所に移すこと*/
