@charset "UTF-8";
/* common */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: auto;
}

body {
  width: 100%;
  height: 100%;
  color: #230c05;
  font-family: "ヒラギノ明朝 ProN", Hiragino Mincho ProN, "HG明朝E", "MS P明朝", "MS 明朝", "Noto Serif JP", serif;
  font-size: 2rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #230c05;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  display: inline-block;
  width: 100%;
  height: auto;
}

.sub {
  position: relative;
  top: 0.1em;
  font-size: 0.8em;
  vertical-align: bottom;
}

.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .container {
    min-width: 1400px;
  }
}

/* display */
@media screen and (min-width: 769px) {
  .is-pc,
.is-note_min {
    display: block;
  }

  .is-pc_inline {
    display: inline;
  }

  .is-sp,
.is-sp_min {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .is-pc,
.is-pc_inline,
.is-sp_min {
    display: none;
  }

  .is-sp,
.is-note_min {
    display: block;
  }
}
@media screen and (max-width: 340px) {
  .is-note_min {
    display: none;
  }

  .is-sp_min {
    display: block;
  }
}
.main_visual_area {
  position: relative;
}

/* animation */
@keyframes fixedPC {
  0% {
    top: -70px;
  }
  100% {
    top: -1px;
  }
}
@keyframes fixedSP {
  0% {
    top: -14.4vw;
  }
  100% {
    top: 0;
  }
}
/* header */
.header {
  position: absolute;
  width: 100%;
  height: 117px;
  top: 0;
  left: 0;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .header {
    height: 18.5%;
  }
}
.header_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header_inner {
    position: absolute;
    width: 92%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.header.is-fixed {
  position: fixed;
  height: 70px;
  top: 0;
  background: linear-gradient(to right, #b29126, #e3d36e 30%, #f9f08e 50%, #e3d36e 70%, #b29126 90%);
}
@media screen and (min-width: 769px) {
  .header.is-fixed {
    height: 70px;
    animation: fixedPC 0.6s ease forwards;
  }
}
@media screen and (max-width: 768px) {
  .header.is-fixed {
    height: auto;
    animation: fixedSP 0.6s ease forwards;
  }
}
@media screen and (max-width: 768px) {
  .header.is-fixed:before {
    display: block;
    content: "";
    padding-bottom: 14.4%;
  }
}
.header.is-fixed .header_logo {
  width: 51px;
}
@media screen and (max-width: 768px) {
  .header.is-fixed .header_logo {
    width: 9.2%;
  }
}
.header.is-fixed .header_sns {
  margin-left: auto;
  background: none;
}
@media screen and (max-width: 768px) {
  .header.is-fixed .hamburger {
    display: block;
  }
}
.header_logo {
  display: block;
  width: 79px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    width: 13%;
  }
}
.header_logo > a {
  display: block;
}

.header_sns {
  display: flex;
  justify-content: space-between;
  width: 136px;
  padding: 8px;
  background: #fcf6eb;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .header_sns {
    width: 32%;
    height: auto;
    padding: 1.45%;
  }
}
.header_sns_item {
  width: 36px;
}
@media screen and (max-width: 768px) {
  .header_sns_item {
    width: 29.9%;
  }
}
.header_sns_item > a {
  display: block;
  width: 100%;
  line-height: 0;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    position: relative;
    width: 6.38%;
    margin: 0 0 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger:before {
    display: block;
    content: "";
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 768px) {
  .hamburger > span {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    background: #230c05;
    transition: 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .hamburger > span:before {
    display: block;
    content: "";
    padding-bottom: 18.182%;
  }
}
.hamburger > span:nth-child(1) {
  top: 0;
}
.hamburger > span:nth-child(2) {
  top: 41%;
}
.hamburger > span:nth-child(3) {
  top: 82%;
}
.hamburger.is-open > span {
  top: 35%;
}
.hamburger.is-open > span:nth-child(1) {
  left: -2%;
  transform: rotate(135deg) translateY(-50%);
}
.hamburger.is-open > span:nth-child(2) {
  left: -20px;
  opacity: 0;
}
.hamburger.is-open > span:nth-child(3) {
  left: 10%;
  transform: rotate(-135deg) translateY(-50%);
}

/* kv */
.kv_area {
  position: relative;
  background-color: #230c06;
  overflow: hidden;
}
.kv_area_img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kv_area_img {
    width: 100%;
  }
}
.kv_area .no2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  animation-name: changeImage;
  animation-duration: 3s;
  animation-delay: 1.25s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes changeImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.kv_area_item {
  position: absolute;
  width: 1200px;
  top: 144px;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
}
@media screen and (max-width: 768px) {
  .kv_area_item {
    width: 100%;
    top: 21.89%;
  }
}
.kv_area_item_copy_1 {
  position: relative;
  width: 55px;
  top: -20px;
  left: 110px;
}
@media screen and (max-width: 768px) {
  .kv_area_item_copy_1 {
    width: 6.27%;
    top: 8%;
    left: 7.67%;
  }
}
.kv_area_item_copy_2 {
  position: absolute;
  width: 369px;
  top: -60px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .kv_area_item_copy_2 {
    width: 34.71%;
    top: 40%;
    right: 4%;
  }
}
.kv_area_item_pkg {
  position: absolute;
  width: 370px;
  top: 345px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .kv_area_item_pkg {
    width: 102.5%;
    top: 88%;
    margin: 3.4% auto 0 3.5%;
  }
}

/* nav */
.nav_area {
  position: static;
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(to right, #b29126, #e3d36e 30%, #f9f08e 50%, #e3d36e 70%, #b29126 90%);
}
@media screen and (max-width: 768px) {
  .nav_area {
    padding: 0;
  }
}
.nav_area.is-fixed {
  position: fixed;
  margin-left: -40px;
  padding: 25px 0;
  top: -1px;
  left: 50%;
  border-top: 1px solid #5b450e;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .nav_area.is-fixed {
    display: inline-block;
    width: auto;
    background: none;
    animation: fixedPC 0.6s ease forwards;
  }
}
@media screen and (max-width: 768px) {
  .nav_area.is-fixed {
    padding: 0;
    margin-left: 0;
    top: 14.4vw;
  }
}

.nav_list {
  display: flex;
  justify-content: center;
  width: 1018px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .nav_list {
    flex-wrap: wrap;
    width: 100%;
  }
}
.nav_list_item {
  padding: 0 29px;
}
@media screen and (max-width: 768px) {
  .nav_list_item {
    width: 50%;
    padding: 0;
  }
}
.nav_list_item:nth-child(n+2) {
  position: relative;
}
@media screen and (min-width: 769px) {
  .nav_list_item:nth-child(n+2):before {
    position: absolute;
    content: "/";
    top: 50%;
    left: -0.3em;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .nav_list_item:nth-child(n+3) {
    border-top: 1px solid #5b450e;
  }
}
@media screen and (max-width: 768px) {
  .nav_list_item:nth-child(2n+1) {
    border-right: 1px solid #5b450e;
  }
}
.nav_list_item > a {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .nav_list_item > a {
    display: block;
    padding: 15px 0;
    font-size: 1.4rem;
  }
}
.nav_list_item .blank {
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .nav_list_item .blank {
    padding-right: 15px;
  }
}
.nav_list_item .blank:after {
  position: absolute;
  content: "";
  width: 22px;
  height: 20px;
  top: 47%;
  right: 0;
  transform: translateY(-50%);
  background: url("/brand/gokuzyo/img/icon_blank_brown.png") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .nav_list_item .blank:after {
    width: 11px;
    height: 10px;
  }
}

/* section */
.section_recommend, .section_arrange, .section_elaborate, .section_emphasis {
  width: 100%;
  padding: 80px 0 70px;
}
@media screen and (max-width: 768px) {
  .section_recommend, .section_arrange, .section_elaborate, .section_emphasis {
    padding: 33px 0 35px;
  }
}

.section_emphasis {
  background: url("/brand/gokuzyo/img/pattern_emphasis.png") repeat center/auto;
  padding-bottom: 0;
}

.section_elaborate {
  background: #230c05;
}

.section_arrange {
  background: url("/brand/gokuzyo/img/pattern.png") repeat center/200px auto;
}

.section_inner-note {
  font-size: 12px;
  text-align: end;
  width: 1010px;
  margin: auto;
  margin-top: 20px;
}

.section_inner {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section_inner {
    width: 100%;
    padding: 0 5%;
  }

  .section_emphasis .section_inner {
    padding: 0;
  }

  .section_inner-note {
    width: 100%;
  }
}

/* heading */
.heading_type_3, .heading_type_2, .heading_type_1 {
  margin: 0 auto 55px;
  font-size: 4.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .heading_type_3, .heading_type_2, .heading_type_1 {
    margin: 0 auto 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 340px) {
  .heading_type_3, .heading_type_2, .heading_type_1 {
    line-height: 1.4;
  }
}

.heading_type_1 {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  background: linear-gradient(90deg, #b19024, #f8ef8d, #b19024);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_elaborate .heading_type_1 {
  width: 200px;

  img {
    width: inherit;
  }
}

.section_elaborate .heading_type_1::after {
  content: unset;
}

@media screen and (max-width: 768px) {
  .heading_type_1 {
    padding-right: 20px;
    line-height: 1.4;
  }

  .section_elaborate .heading_type_1 {
    width: 100px;
  }
}
@media screen and (max-width: 340px) {
  .heading_type_1 {
    padding-right: 12px;
  }
}
.heading_type_1::after {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  top: 5px;
  right: 0;
  background: url("/brand/gokuzyo/img/icon_seal.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .heading_type_1::after {
    width: 18px;
    height: 18px;
    top: 3px;
  }
}
@media screen and (max-width: 340px) {
  .heading_type_1::after {
    top: 36px;
  }
}

/* IEのみ */
.ie .heading_type_1 {
  color: #f8ef8d;
  background: none;
  background-clip: border-box;
}

.heading_lead {
  font-weight: bold;
  line-height: 1.5;
}

.heading_type_3 {
  display: inline-block;
  background-color: #fff;
  background: linear-gradient(90deg, #b19024, #f8ef8d, #b19024);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .heading_type_3 {
    margin-bottom: 30px;
  }
}

.ie .heading_type_3 {
  color: #f8ef8d;
  background: none;
  background-clip: border-box;
}

/* Point emphasis */
.emphasis_column {
  color: #230c05;
}

@media screen and (min-width: 769px) {
  .emphasis_column {
    display: flex;
    align-items: center;
    width: 100%;
    transform: translateY(2px);
  }
}

@media screen and (max-width: 768px) {
  .emphasis_column {
    display: flex;
    flex-wrap: wrap;
  }
}

.section_emphasis .heading_type_1 {
  width: 280px;
  text-align: center;

  img {
    width: inherit;
  }
}

.section_emphasis .heading_type_1::after {
  content: unset;
}

.emphasis_column_desc {
  text-align: left;
}
.emphasis_column_desc_ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.emphasis_column_reverse {
  position: relative;
  flex-direction: unset;
}

.emphasis_column_desc {
  width: 50%;
  line-height: 2.4;
}

.emphasis_column_desc-r {
  /* text-align: right; */
}

.emphasis_column_img {
  width: 50%;
  height: auto;

  img {
    height: 100%;
  }
}

.emphasis_column_desc-left1 {
  width: 50%;
  margin-left: 60px;
}

.emphasis_column_desc-left2 {
  width: 50%;
  margin-left: 60px;
}

.emphasis_column_desc-right {
  width: 34%;
  position: absolute;
  right: 54.2%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .section_emphasis .heading_type_1 {
    width: 150px;
  }

  .emphasis_column_desc_ttl {
    font-size: 2rem;
  }

  .emphasis_column_desc {
    width: 100%;
  }

  .emphasis_column_img {
    width: 100%;
    height: auto;
  }

  .emphasis_column_reverse {
    flex-direction: column-reverse;
  }

  .emphasis_column_desc-left {
    width: 100%;
    margin-left: 0;
  }

  .emphasis_column_desc-left1 {
    width: auto;
    margin: 30px 19px 60px 19px;
  }

  .emphasis_column_desc-left2 {
    width: auto;
    margin: 30px 19px 60px 19px;
  }

  .emphasis_column_desc-right {
    position: unset;
    width: auto;
    margin: 30px 19px 60px 19px;
    transform: none;
  }
}

/* elaborate */
.elaborate_column {
  margin: 0 auto;
  color: #fff;
}
.elaborate_column_pkg {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 960px;
  margin: 0 auto;
}
.elaborate_column_pkg-img {
  width: 435px;
  margin-left: 80px;
}
.elaborate_column_pkg-img img {
  filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.89));
}
.elaborate_column_pkg-content {
  width: 300px;
  text-align: start;
}
.elaborate_column_pkg-sub {
  width: 256px;
  margin-bottom: 40px;
}
.elaborate_column_pkg-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 41px;
  width: 100%;
  color: #fff;
  background-color: #e50011;
  border-radius: 4px;
  font-weight: bold;
}
.elaborate_column_pkg-btn .icon-arrow {
  width: 9px;
  height: 12px;
  margin-left: 10px;
}
.elaborate_column_pkg-btn .icon-map {
  width: 34px;
  height: 24px;
  margin-left: 10px;
}
.elaborate_column_pkg-btn:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .elaborate_column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 960px;
  }
}
@media screen and (max-width: 768px) {
  .elaborate_column {
    width: 100%;
  }
  .elaborate_column_pkg {
    display: block;
    width: 80%;
  }
  .elaborate_column_pkg-img {
    width: 100%;
    margin-left: 0;
  }
  .elaborate_column_pkg-sub {
    width: 155px;
    margin-bottom: 20px;
  }
  .elaborate_column_pkg-content {
    width: 100%;
    text-align: center;
    padding: 0 25px;
  }
  .elaborate_column_pkg-btn:not(:last-child) {
    margin-bottom: 15px;
  }
  .elaborate_column_pkg-btn .icon-map {
    width: 31px;
    height: 20px;
  }
}
.elaborate_column:nth-child(n+2) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .elaborate_column:nth-child(n+2) {
    margin-top: 25px;
  }
}
.elaborate_column_desc {
  text-align: left;
}
.elaborate_column_desc_ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .elaborate_column_desc_ttl {
    margin-bottom: 10px;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
  }
}
.elaborate_column_desc_ttl .marker {
  background: linear-gradient(transparent 80%, #e60012 80%);
}
.elaborate_column_desc_ttl .txt_l {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .elaborate_column_desc_ttl .txt_l {
    font-size: 2.2rem;
  }
}
.elaborate_column_desc_txt {
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .elaborate_column_desc_txt {
    line-height: 1.86;
  }
}
@media screen and (max-width: 768px) {
  .elaborate_column_img {
    margin-left: auto;
    margin-right: auto;
    width: 74.82%;
    margin-top: 10px;
  }
}

@media screen and (min-width: 769px) {
  .elaborate_column:nth-child(1) .elaborate_column_img,
.elaborate_column:nth-child(3) .elaborate_column_img {
    width: 327px;
    margin-right: 26px;
  }

  .elaborate_img3 {
    margin-left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .elaborate_column:nth-child(1) .elaborate_column_img,
.elaborate_column:nth-child(3) .elaborate_column_img {
    width: 59.26%;
    margin-top: 8px;
  }
}

@media screen and (min-width: 769px) {
  .elaborate2_column_img4 {
    width: 337px;
    margin-left: 12px;
  }

  .elaborate_column:nth-child(2) .elaborate_column_img {
    width: 330px;
    margin-left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .elaborate_column:nth-child(2) .elaborate_column_img {
    width: 74.82%;
    margin-top: 10px;
  }
}

.elaborate_column_reverse {
  flex-direction: row-reverse;
}
.elaborate_column_reverse .elaborate_column_desc {
  margin-right: auto;
}

/* elaborate2 */
.elaborate2 {
  background: #001851;
}

.elaborate2_pkg-sub {
  width: 100%;
}

.elaborate_column_desc_ttl .marker2 {
  font-size: 16px;
  vertical-align: super;
}

.marker_space {
  margin-left: 60px;
}

.elaborate2_column {
  justify-content: flex-start;
}

.elaborate2_column_img {
  margin-left: 85px;
  margin-right: 0;
}

.elaborate2_column_img3 {
  margin-right: 10px;
}

.elaborate2_column_desc {
  margin-left: 65px;
}

.elaborate2_column_pkg-img {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .elaborate2_pkg-sub {
    width: 85%;
  }

  .marker_space {
    margin-left: 35px;
  }

  .elaborate2_column_img4 {
    width: 74.82%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .elaborate_column:nth-child(3) .elaborate2_column_img {
    width: 74.82%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .elaborate2_column_desc {
    margin-left: 0;
  }

  .elaborate2_column_img3 {
    margin-right: auto;
  }
}

/* arrange */
@media screen and (min-width: 769px) {
  .arrange_list {
    display: flex;
    margin: 30px auto 0;
    justify-content: space-between;
    width: 1010px;
  }
}
@media screen and (max-width: 768px) {
  .arrange_list {
    width: 82%;
    margin: 15px auto 0;
  }
}
.arrange_list_item {
  width: 460px;
}
@media screen and (max-width: 768px) {
  .arrange_list_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .arrange_list_item:nth-child(n+2) {
    margin-top: 27px;
  }
}
.arrange_list_item:nth-child(1) .seal {
  width: 50px;
  left: 0;
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  .arrange_list_item:nth-child(1) .seal {
    width: 13.913%;
  }
}
.arrange_list_item:nth-child(2) .seal {
  width: 56px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .arrange_list_item:nth-child(2) .seal {
    width: 15.652%;
  }
}
.arrange_list_item:nth-child(3) .seal {
  width: 56px;
  right: 6px;
  bottom: 13px;
}
@media screen and (max-width: 768px) {
  .arrange_list_item:nth-child(3) .seal {
    width: 15.652%;
    left: 0;
  }
}
.arrange_list_item > a {
  display: block;
}
.arrange_list_item_img {
  position: relative;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .arrange_list_item_img {
    padding: 12px 17px;
  }
}
.arrange_list_item_img .seal {
  position: absolute;
}
.arrange_list_item_name {
  font-weight: bold;
  text-align: center;
}

.arrange_list_item_link {
  display: inline-block;
  width: 250px;
  margin: 20px auto 0;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #e60012;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .arrange_list_item_link {
    width: 200px;
    margin: 15px auto 0;
    font-size: 1.5rem;
  }
}
.arrange_list_item_link.blank > span {
  position: relative;
}
.arrange_list_item_link.blank > span:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 14px;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  background: url("/brand/gokuzyo/img/icon_blank_white.png") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .arrange_list_item_link.blank > span:after {
    width: 11px;
    height: 10px;
    right: -18px;
  }
}

/* movies */
.movies .movie {
  width: 793px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  .movies .movie {
    width: 80%;
    margin: 0 auto 78px;
  }
}
@media screen and (max-width: 768px) {
  .movies .movie:nth-of-type(3) .movie_title {
    margin: 0 -16% 30px;
  }
}
.movies .movie .youtube {
  width: 739px;
  height: 433px;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .movies .movie .youtube {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    overflow: hidden;
    margin: 0 auto 12.5px;
  }
}
.movies .movie .youtube .youtube_iframe {
  width: 739px;
  height: 433px;
}
@media screen and (max-width: 768px) {
  .movies .movie .youtube .youtube_iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.movies .movie .movie_title {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .movies .movie .movie_title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.movies .movie .movie_text {
  color: #fff;
  text-align: left;
  line-height: 42px;
}
@media screen and (max-width: 768px) {
  .movies .movie .movie_text {
    line-height: 21px;
  }
}

/* lineup */
.lineup_list {
  display: flex;
	flex-wrap: wrap;
  justify-content: center;
  width: 1280px;
  margin: 10px auto 50px;
}
@media screen and (max-width: 768px) {
  .lineup_list {
		justify-content: space-between;
    width: 100%;
    margin: 10px auto 10px;
  }
}

.lineup_list_item {
  width: 270px;
	margin: 0 25px;
}
@media screen and (max-width: 768px) {
  .lineup_list_item {
    width: 48%;
		margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .lineup_list_item:nth-child(n+3) {
    margin-top: 16px;
  }
}
.lineup_list_item > a {
  display: flex;
  flex-direction: column;
}
.lineup_list_item_img {
  position: relative;
  display: block;
  width: 225px;
	height: 180px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lineup_list_item_img {
    width: 72%;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .lineup_list_item_img:before {
    display: block;
    content: "";
    padding-bottom: 83.333%;
  }
}
.lineup_list_item_img > img {
  position: absolute;
  max-width: 120%;
  width: auto;
  max-height: 120%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lineup_list_item_name {
  position: relative;
  margin-top: 5px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lineup_list_item_name {
    min-height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .lineup_list_item_name {
    margin-top: 10px;
  }
}
@media screen and (min-width: 769px) {
  .lineup_list_item_name > span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    word-break: keep-all;
  }
}
@media screen and (max-width: 768px) {
  .lineup_list_item_name > span.blank {
    position: relative;
  }
}
.lineup_list_item_name > span.blank:after {
  position: absolute;
  content: "";
  width: 16px;
  height: 14px;
  right: -20px;
  bottom: 3px;
  background: url("/brand/gokuzyo/img/icon_blank_brown.png") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .lineup_list_item_name > span.blank:after {
    width: 11px;
    height: 10px;
    right: -14px;
  }
}
.lineup_list_item_name .sub {
  font-size: 1.4rem;
}

/* footer */
.footer {
  width: 100%;
  padding: 30px 0 26px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  text-align: center;
  background: #230c05;
}
@media screen and (min-width: 769px) {
  .footer {
    min-width: 1400px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 15px 0;
  }
}
.footer_logo {
  width: 220px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    width: 138px;
  }
}
.footer_copy {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    margin-top: 13px;
  }
}

.footer_list {
	width: 675px;
	margin: 25px 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;
}
@media screen and (max-width: 768px) {
  .footer_list {
		width: 100%;
		margin: 14px 0 0;
		border-top: 1px solid #988a86;
		border-bottom: 1px solid #988a86;
  }
}
.footer_list_item {
	display: inline-block;
	font-size: 14px;
	margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .footer_list_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    min-height: 39px;
    padding: 10px 0;
		margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .footer_list_item:not(.is-no-line):after {
    content: '|';
    display: inline-block;
    margin: 0 0.5em;
    color: #fff;
    font-size: 1.2rem;
  }
}
.footer_list_item > a {
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer_list_item > a {
    line-height: 1.25;
  }
}

.btn_campaign {
	position: fixed;
	bottom: 20px;
  right: 20px;
	width: 188px;
  z-index: 10000;
}
@media screen and (max-width: 768px) {
  .btn_campaign {
    bottom: 2.6vw;
		right: 2.6vw;
    width: 25.067vw;
  }
}

/* .section_recommend_juken {
  padding: 57px 0 0;
  height: 930px;
  background: url("/brand/gokuzyo/img/bg_juken_pc_01.png") no-repeat top 0 left 0 / 512px 568px,
  url("/brand/gokuzyo/img/bg_juken_pc_02.png") no-repeat top 0 right 0 / 569px 385px,
  url("/brand/gokuzyo/img/bg_juken_pc_03.png") no-repeat bottom 43px left 26px / 99px 87px,
  url("/brand/gokuzyo/img/bg_juken_pc_04.png") no-repeat bottom 38px right 0 / 111px 245px;
}
.section_recommend_juken .heading_juken_copy {
  width: 272px;
  margin: 0 auto 19px;
}
.section_recommend_juken .lineup_list.lineup_list_juken {
  width: 696px;
  margin: 110px auto 0;
  padding-right: 64px;
}
.section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item {
  position: relative;
}
.section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item::before {
  content: '';
  width: 126px;
  height: 121px;
  background: url("/brand/gokuzyo/img/icon_sakura_pc.png") no-repeat top 0 left 0 / cover;
  position: absolute;
  top: -75px;
  right: -85px;
}
.section_recommend_juken .lineup_list.lineup_list_juken2 {
  margin-top: 35px;
}
.section_recommend_juken .lineup_list.lineup_list_juken2 .lineup_list_item,
.section_recommend_juken .lineup_list.lineup_list_juken2 .lineup_list_item_img {
  width: 196px;
}
.section_recommend_juken .lineup_list.lineup_list_juken2 .lineup_list_item_img {
  height: 170px;
}

@media screen and (max-width: 768px) {
  .section_recommend_juken {
    padding: 14.533vw 0 19vw;
    height: auto;
    background: url("/brand/gokuzyo/img/bg_juken_sp_01.png") no-repeat top 0 left 0 / contain,
    url("/brand/gokuzyo/img/bg_juken_sp_02.png") no-repeat bottom 0 right 0 / 79.467vw auto;
  }
  .section_recommend_juken .heading_juken_copy {
    width: 43.467vw;
    margin: 0 auto 1.5vw;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken {
    display: block;
    width: auto;
    margin: 0 auto 0;
    padding-right: 0;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item {
    width: 100%;
    margin-top: 20vw;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item:nth-of-type(n+2) {
    margin-top: 22vw;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item::before {
    content: '';
    width: 24.4vw;
    height: 23.467vw;
    background: url("/brand/gokuzyo/img/icon_sakura_pc.png") no-repeat top 0 left 0 / cover;
    top: -14vw;
    right: 11vw;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken .lineup_list_item_img {
    width: 40.533vw;
    height: auto;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken2 {
    margin-top: 15vw;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken2 .lineup_list_item {
    width: 48%;
  }
  .section_recommend_juken .lineup_list.lineup_list_juken2 .lineup_list_item_img {
    width: 72%;
    height: auto;
  }
} */

.slider {
  min-height: 50vw;
}
@media screen and (max-width: 768px) {
  .slider {
    min-height: 96vw;
  }
}

@media screen and (max-width: 768px) {
  .u-sp {
    display: none;
  }
}