@charset "UTF-8";
/*---------------------------------------------
メディアクエリー
---------------------------------------------*/
/*---------------------------------------------
共通
---------------------------------------------*/
html {
  color: #000;
}

.jp {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.eg1 {
  font-family: bree-serif, serif;
  font-style: normal;
  font-weight: 200;
}

.eg2 {
  font-family: colt, serif;
  font-style: normal;
  font-weight: 300;
}

/*リセット
--------------------------------------------*/
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;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

img {
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/*---------------------------------------------
FV
---------------------------------------------*/
.fv {
  position: relative;
}
.fv .loop {
  overflow: hidden;
}
.fv .loop ul {
  -webkit-animation: loop 20s linear infinite;
          animation: loop 20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fv .loop ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
  width: 100vw;
}
@media screen and (min-width: 769px) {
  .fv .loop ul li {
    width: 50vw;
  }
}
.fv .loop img {
  display: block;
  width: 100%;
}
.fv .fc_logo {
  position: absolute;
  z-index: 10;
  width: 30vw;
  top: 1vh;
  right: 1vw;
}
@media screen and (min-width: 769px) {
  .fv .fc_logo {
    width: 8vw;
  }
}
.fv .top_logo {
  position: absolute;
  width: 68vw;
  z-index: 10;
  bottom: 10vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .fv .top_logo {
    width: 30vw;
    bottom: 43vh;
  }
}

@-webkit-keyframes loop {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes loop {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.lead {
  position: relative;
  background-image: url(../images/lead_bg.jpg);
  height: 60vh;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .lead {
    height: 80vh;
  }
}
.lead p {
  position: absolute;
  text-align: center;
  width: 80%;
  top: 7vh;
  color: #fff;
  font-size: 12px;
  line-height: 2;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .lead p {
    font-size: 18px;
    max-width: 560px;
    top: 21vh;
  }
}
.lead .cut1 {
  position: absolute;
  width: 27vw;
  left: 10vw;
  bottom: 4vh;
}
@media screen and (min-width: 769px) {
  .lead .cut1 {
    width: 13vw;
    bottom: 12vh;
  }
}
.lead .cut2 {
  position: absolute;
  width: 40vw;
  right: 1vh;
  bottom: -6vh;
}
@media screen and (min-width: 769px) {
  .lead .cut2 {
    width: 18vw;
    right: 9vw;
    bottom: -12vh;
  }
}

.contents {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ebf0f0;
}
@media screen and (min-width: 769px) {
  .contents {
    padding-bottom: 80px;
  }
}
.contents .item_title {
  font-size: 40px;
  text-align: center;
  margin: auto;
  font-family: broadsheet, serif;
  font-weight: 400;
  font-style: italic;
}
@media screen and (min-width: 769px) {
  .contents .item_title {
    font-size: 63px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.contents .loop2 {
  overflow: hidden;
  width: 100vw;
  margin-top: 30px;
}
.contents .loop2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  -webkit-animation: loop2 30s linear infinite;
          animation: loop2 30s linear infinite;
}
@media screen and (min-width: 769px) {
  .contents .loop2 ul {
    -webkit-animation: loop2-pc 50s linear infinite;
            animation: loop2-pc 50s linear infinite;
  }
}
.contents .loop2 ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 300vw;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .contents .loop2 ul li {
    width: 100vw;
  }
}
@-webkit-keyframes loop2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-600vw);
            transform: translateX(-600vw);
  }
}
@keyframes loop2 {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-600vw);
            transform: translateX(-600vw);
  }
}
@-webkit-keyframes loop2-pc {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200vw);
            transform: translateX(-200vw);
  }
}
@keyframes loop2-pc {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200vw);
            transform: translateX(-200vw);
  }
}
.contents .slide_text {
  width: 90%;
  margin: auto;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 50px;
  color: #1e3a58;
}
@media screen and (min-width: 769px) {
  .contents .slide_text {
    width: 42%;
    font-size: 18px;
    margin-top: 50px;
  }
}
.contents .slide_radius .sub_title {
  color: #d35d54;
  text-align: center;
  font-size: 20px;
  font-family: broadsheet, serif;
  font-style: italic;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .sub_title {
    font-size: 42px;
  }
}
.contents .slide_radius .title {
  font-size: 20px;
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .title {
    font-size: 36px;
    margin-top: 42px;
  }
}
.contents .slide_radius .title::before {
  content: "for";
  font-family: broadsheet, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  margin-right: 10px;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .title::before {
    font-size: 32px;
  }
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .styles {
    max-width: 83vw;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contents .slide_radius .styles .each_items {
  margin-bottom: 70px;
}
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.contents .slide_radius .auto_slider {
  width: 90%;
  max-width: 800px;
  margin: 10px auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contents .slide_radius .auto_slider.fade-up-active {
  -webkit-animation: fadeUp 1s ease-out forwards;
          animation: fadeUp 1s ease-out forwards;
  visibility: visible;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .auto_slider {
    max-width: 560px;
  }
}
.contents .slide_radius .auto_slider .slick-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contents .slide_radius .auto_slider img {
  width: 100%;
  border-radius: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .auto_slider img {
    border-radius: 90px;
  }
}
.contents .slide_radius .movie {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .movie {
    max-width: 500px;
    margin: auto;
  }
}
.contents .slide_radius .credit_wrap {
  margin-top: 20px;
}
.contents .slide_radius .credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 20px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #1e3a58;
}
.contents .slide_radius .credit .item, .contents .slide_radius .credit .price, .contents .slide_radius .credit .price_inner, .contents .slide_radius .credit .buy_btn {
  font-size: 15px;
  display: block;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .credit .item, .contents .slide_radius .credit .price, .contents .slide_radius .credit .price_inner, .contents .slide_radius .credit .buy_btn {
    font-size: 18px;
  }
}
.contents .slide_radius .credit .item_inner {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .credit .item_inner {
    font-size: 15px;
  }
}
.contents .slide_radius .credit .buy_btn {
  font-size: 12px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 8px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-left: 10px;
  color: #1e3a58;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .credit .buy_btn {
    font-size: 15px;
  }
}
.contents .slide_radius .credit .coming {
  font-size: 12px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: transparent;
  padding: 8px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-left: 10px;
  color: #1e3a58;
  border: 1px solid #1e3a58;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .credit .coming {
    font-size: 15px;
  }
}
.contents .slide_radius .grid {
  display: grid;
  width: 90%;
  margin: 10px auto;
  grid-template-columns: 70px 1fr auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: repeating-linear-gradient(90deg, #1e3a58, #1e3a58 1px, transparent 1px, transparent 3px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 3px;
  padding-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .contents .slide_radius .grid {
    grid-template-columns: 100px 1fr auto;
  }
}
.contents .slide_radius .div1 {
  grid-area: 1/1/2/2;
}
.contents .slide_radius .div2 {
  grid-area: 2/1/3/2;
}
.contents .slide_radius .div3 {
  grid-area: 1/2/2/3;
}
.contents .slide_radius .div4 {
  grid-area: 2/2/3/3;
}
.contents .slide_radius .div5 {
  grid-area: 1/3/3/4;
}

.contents2 {
  background-color: #f0eddf;
}

.contents3 {
  background-color: #e2dfe5;
}

.footer {
  background-image: url(../images/sp_footer.jpg);
  background-size: cover;
  background-position: center center;
  height: 60vh;
  font-family: urw-din, sans-serif;
  font-style: normal;
  font-weight: 100;
  font-size: 13px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer {
    background-image: url(../images/pc_footer.jpg);
    height: 98vh;
  }
}
.footer .footer_logo {
  position: absolute;
  width: 60%;
  top: 5vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .footer .footer_logo {
    width: 350px;
    top: 10vh;
    left: 19vw;
  }
}
.footer .links {
  position: absolute;
  top: 42vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .footer .links {
    left: 11.5vw;
    top: 40vh;
  }
}
.footer .links a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  color: #fff;
  line-height: 2;
  text-align: center;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .footer .links a {
    font-size: 20px;
    text-align: left;
    margin: initial;
  }
}

.slick-initialized {
  visibility: visible !important;
}

.slick_slides {
  max-width: 90%;
  margin: 50px auto 0;
}
@media screen and (min-width: 769px) {
  .slick_slides {
    max-width: 42%;
  }
}
.slick_slides li img {
  width: 100%;
  height: auto;
}
.slick_slides .slick-dots {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-dots {
    bottom: -30px;
  }
}
.slick_slides .slick-arrow {
  z-index: 5;
  width: 18px;
  height: 18px;
  background-color: transparent;
  top: 118px;
  border: 0.5px solid #fff;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-arrow {
    top: 50%;
    width: 30px;
    height: 30px;
  }
}
.slick_slides .slick-arrow::before {
  content: "";
  display: block;
  opacity: 1;
  width: 5px;
  height: 5px;
  position: absolute;
  border-top: #575757 1px solid;
  border-top: #fff 1px solid;
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-arrow::before {
    width: 8px;
    height: 8px;
  }
}
.slick_slides .slick-prev {
  left: 3vw;
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-prev {
    left: 1.5vw;
  }
}
.slick_slides .slick-prev::before {
  top: 45%;
  left: 50%;
  border-left: #575757 1px solid;
  border-left: #fff 1px solid;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.slick_slides .slick-next {
  right: 3vw;
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-next {
    right: 1.5vw;
  }
}
.slick_slides .slick-next::before {
  content: "";
  display: block;
  opacity: 1;
  width: 5px;
  height: 5px;
  position: absolute;
  right: 50%;
  border-right: #fff 1px solid;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 45%;
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-next::before {
    width: 8px;
    height: 8px;
  }
}
@media screen and (min-width: 769px) {
  .slick_slides .slick-dots li button:before {
    font-size: 8px;
  }
}

.eg4 {
  font-family: broadsheet, serif;
  font-weight: 400;
  font-style: italic;
}

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
}

[data-aos=fade-right] {
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}/*# sourceMappingURL=style.css.map */