@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
共通スタイル
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #000;
  background: #EEEAE2;
  font-weight: 600;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 18px;
  }
}

p {
  line-height: 1.8;
  /* 751- */
}
@media all and (min-width: 751px) {
  p {
    line-height: 1.8;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #000;
  text-decoration: none;
}

a img {
  border: none;
}

a:hover {
  text-decoration: none;
  color: unset;
}

figure {
  margin: 0;
}

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

ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
.inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.inner_pc {
  position: relative;
  z-index: 1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner_pc {
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.japan_50 .only_sp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .japan_50 .only_sp {
    display: none;
  }
}
.japan_50 .only_pc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .japan_50 .only_pc {
    display: block;
  }
}

/*----------------------------------------------------
セクション共通
----------------------------------------------------*/
.japan_50 img {
  width: 100%;
  height: auto;
  display: block;
}
.japan_50 section {
  margin-bottom: 60px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .japan_50 section {
    margin-bottom: 40px;
  }
}

.section_ttl {
  background: #000;
  color: #fff;
  font-size: 34px;
  padding: 40px;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* -750 */
}
@media all and (max-width: 750px) {
  .section_ttl {
    font-size: 22px;
    padding: 30px 20px;
    height: auto;
  }
}
.section_ttl.fw {
  background: #61471F;
}

a .anchor_arrow {
  position: absolute;
  right: 40px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* -750 */
}
@media all and (max-width: 750px) {
  a .anchor_arrow {
    right: 20px;
    width: 25px;
  }
}
a:hover .anchor_arrow {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.lineup_ttl {
  font-size: 80px;
  font-weight: 700;
  text-align: center;
  margin: 30px 0 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .lineup_ttl {
    font-size: 40px;
  }
}
.lineup_ttl.fw {
  color: #61471E;
}

.lineup_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  /* -750 */
}
@media all and (max-width: 750px) {
  .lineup_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 30px;
  }
}

.lineup_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lineup_item > a .lineup_name {
  position: relative;
  background: #937A58;
  color: #fff;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 133px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lineup_item > a .lineup_name .anchor_arrow {
  right: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .lineup_item > a .lineup_name .anchor_arrow {
    width: 37px;
  }
}
.lineup_item > a:hover .lineup_name {
  background: #a57d45;
}
.lineup_item.fw {
  border: 2px solid #937A58;
}

/*----------------------------------------------------
ボタン
----------------------------------------------------*/
.btn_more {
  display: block;
  background: #937A58;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_more span {
  font-size: 22px;
  position: relative;
  padding-right: 60px;
}
.btn_more span .anchor_arrow {
  right: 0;
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.btn_more:hover {
  background: #a57d45;
  color: #fff;
}
.btn_more:hover .anchor_arrow {
  -webkit-transform: scale(1.2) rotate(-90deg);
          transform: scale(1.2) rotate(-90deg);
}
.btn_more {
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn_more {
    margin-top: 30px;
  }
  .btn_more span {
    font-size: 20px;
  }
}

/*----------------------------------------------------
アニメーション
----------------------------------------------------*/
.js_scroll {
  position: relative;
  left: -10px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  opacity: 0;
}
.js_scroll.scroll_active {
  left: 0;
  opacity: 1;
}

/*----------------------------------------------------
背景
----------------------------------------------------*/
.bg_purple {
  background-image: url(/client_info/COLEMANJAPAN/view/userweb/images/50japan/bg_purple.jpg);
  background-size: contain;
  background-repeat: repeat;
  padding-bottom: 60px;
}

.bg_yellow {
  background-image: url(/client_info/COLEMANJAPAN/view/userweb/images/50japan/bg_yellow.jpg);
  background-size: contain;
  background-repeat: repeat;
  padding: 60px 0;
}

/*----------------------------------------------------
メインビジュアル mv
----------------------------------------------------*/
.mv picture img {
  display: block;
}

.anchor_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 50px 0;
}
@media all and (max-width: 1200px) {
  .anchor_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 0;
  }
}
.anchor_btns a {
  display: block;
  background: #000;
  color: #fff;
  padding: 20px 40px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.anchor_btns a:hover {
  opacity: 0.8;
}
@media all and (max-width: 1200px) {
  .anchor_btns a {
    width: 100%;
    padding: 10px 20px;
    height: 95px;
  }
}
.anchor_btns .anchor_50_logo {
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_logo {
    width: 57px;
  }
}
.anchor_btns .anchor_50 {
  gap: 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50 {
    gap: 20px;
  }
}
.anchor_btns .anchor_50_text {
  font-size: 33px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_text {
    font-size: 20px;
  }
}
.anchor_btns .anchor_50_text span {
  display: block;
  font-size: 18px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_text span {
    font-size: 11px;
  }
}
.anchor_btns .anchor_50_num {
  color: #000;
  font-size: 34px;
  position: relative;
  padding: 0 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_num {
    font-size: 21px;
  }
}
.anchor_btns .anchor_50_num p {
  position: relative;
  z-index: 1;
}
.anchor_btns .anchor_50_num span {
  font-size: 55px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_num span {
    font-size: 34px;
  }
}
.anchor_btns .anchor_50_num::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 25px;
  left: 0;
  right: 0;
  bottom: 15px;
  -webkit-transform: skew(-15deg);
          transform: skew(-15deg);
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_50_num::after {
    top: 15px;
    bottom: 9px;
  }
}
.anchor_btns .anchor_fw {
  background-image: url(/client_info/COLEMANJAPAN/view/userweb/images/50japan/btn_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 30px;
  font-weight: 700;
  /* -750 */
}
@media all and (max-width: 750px) {
  .anchor_btns .anchor_fw {
    font-size: 20px;
  }
}
.anchor_btns .anchor_fw::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}
.anchor_btns .anchor_fw span {
  position: relative;
  z-index: 1;
}

/*----------------------------------------------------
sec_50
----------------------------------------------------*/
.sec_50 {
  background: #000;
}

.sec_50_logo {
  position: relative;
}
.sec_50_logo::after {
  position: absolute;
  content: "";
  background-image: url(/client_info/COLEMANJAPAN/view/userweb/images/50japan/logo_50.svg);
  width: 100px;
  height: 85px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_logo::after {
    width: 60px;
    height: 51px;
    right: 20px;
  }
}

.sec_50_contents {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  padding: 60px 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_contents {
    padding: 20px 20px 60px;
  }
}
.sec_50_contents p {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_contents p {
    font-size: 16px;
  }
}

/*----------------------------------------------------
sec_50_limited01
----------------------------------------------------*/
.sec_50_limited01 {
  background: #000;
}

.sec_50_limited_contents {
  margin: 0 auto;
  color: #fff;
  padding: 60px 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_limited_contents {
    padding: 20px 20px 60px;
  }
}

.feature_ttl {
  background: #fff;
  color: #000;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  margin: 60px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .feature_ttl {
    font-size: 16px;
    margin: 30px 0;
  }
}

.feature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .feature_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.feature_item {
  width: calc(50% - 20px);
  /* -750 */
}
@media all and (max-width: 750px) {
  .feature_item {
    width: 100%;
  }
}

.feature_name {
  font-size: 22px;
  margin: 30px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .feature_name {
    font-size: 20px;
    margin: 20px 0;
  }
}

.feature_text a {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)) no-repeat;
  background: linear-gradient(to right, #fff, #fff) no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.feature_text a:hover {
  background-size: 0% 1px;
}

/*----------------------------------------------------
sec_50_limited02
----------------------------------------------------*/
.sec_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec_50_limited02 {
  width: 50%;
  background: #000;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_limited02 {
    width: 100%;
  }
}
.sec_50_limited02 .sec_50_limited_contents {
  padding: 30px 20px 60px;
}
.sec_50_limited02 .feature_ttl {
  font-size: 14px;
  padding: 15px;
  margin: 30px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_50_limited02 .feature_ttl {
    font-size: 16px;
  }
}
.sec_50_limited02 .feature_text {
  margin-top: 20px;
}
.sec_50_limited02 .btn_more {
  margin-top: 30px;
}

/*----------------------------------------------------
btn_cate
----------------------------------------------------*/
.btn_cate {
  background: #000;
  color: #fff;
  display: block;
  padding: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_cate .btn_cate_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 400px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  gap: 20px;
  font-size: 22px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn_cate .btn_cate_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn_cate .btn_cate_inner span {
  position: relative;
  padding-right: 60px;
  line-height: 1;
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn_cate .btn_cate_inner span {
    padding-right: 40px;
  }
}
.btn_cate .btn_cate_inner span .anchor_arrow {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.btn_cate:hover {
  color: #fff;
  opacity: 0.8;
}
.btn_cate:hover .btn_cate_inner .anchor_arrow {
  -webkit-transform: scale(1.2) translateY(-50%) rotate(-90deg);
          transform: scale(1.2) translateY(-50%) rotate(-90deg);
}
.btn_cate.fw {
  background: #937A58;
}
.btn_cate.fw .btn_cate_inner {
  /* -750 */
}
@media all and (max-width: 750px) {
  .btn_cate.fw .btn_cate_inner {
    font-size: 16px;
  }
}
.btn_cate.fw:hover {
  background: #a57d45;
  opacity: 1;
}

/*----------------------------------------------------
review
----------------------------------------------------*/
.review {
  background: #fff;
  margin: 60px 0 0;
  height: 100px;
}

/*----------------------------------------------------
sec_2026
----------------------------------------------------*/
.sec_2026 {
  background: #fff;
  padding-bottom: 60px;
}
.sec_2026 .sec_2026_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026 .sec_2026_head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec_2026 .sec_2026_head_image {
  width: 50%;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026 .sec_2026_head_image {
    width: 100%;
  }
}
.sec_2026 .sec_2026_head_text {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026 .sec_2026_head_text {
    width: 100%;
    padding: 20px;
  }
}
.sec_2026 .lineup_list {
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026 .lineup_list {
    padding: 0 50px;
  }
}

/*----------------------------------------------------
sec_2026_item
----------------------------------------------------*/
.sec_2026_item {
  background: #fff;
}
.sec_2026_item .sec_2026_contents {
  margin: 0 auto;
  padding: 60px 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026_item .sec_2026_contents {
    padding: 20px;
  }
}
.sec_2026_item .feature_ttl {
  background: #000;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 20px;
  margin: 60px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026_item .feature_ttl {
    font-size: 16px;
    margin: 30px 0;
    padding: 15px;
  }
}
.sec_2026_item .feature_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026_item .feature_list {
    gap: 20px;
  }
}
.sec_2026_item .feature_item {
  width: calc(50% - 20px);
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026_item .feature_item {
    width: 100%;
  }
}
.sec_2026_item .feature_name {
  font-size: 22px;
  margin: 30px 0;
  /* -750 */
}
@media all and (max-width: 750px) {
  .sec_2026_item .feature_name {
    font-size: 20px;
    margin: 20px 0;
  }
}
.sec_2026_item .feature_text a {
  background: -webkit-gradient(linear, left top, right top, from(#000), to(#000)) no-repeat;
  background: linear-gradient(to right, #000, #000) no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sec_2026_item .feature_text a:hover {
  background-size: 0% 1px;
}

/*----------------------------------------------------
画像フェードアニメーション
----------------------------------------------------*/
@-webkit-keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.image-fade-pc {
  position: relative;
  width: 100%;
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .image-fade-pc {
    display: block;
  }
}
.image-fade-pc .splide__track {
  overflow: hidden;
}
.image-fade-pc .splide__slide {
  opacity: 1;
}
.image-fade-pc img {
  width: 100%;
  height: auto;
  display: block;
}

.image-fade-sp {
  position: relative;
  width: 100%;
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .image-fade-sp {
    display: none;
  }
}
.image-fade-sp .splide__track {
  overflow: hidden;
}
.image-fade-sp .splide__slide {
  opacity: 1;
}
.image-fade-sp img {
  width: 100%;
  height: auto;
  display: block;
}

.image_fade {
  position: relative;
  width: 100%;
}
.image_fade img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-animation: fadeInOut 6s infinite;
          animation: fadeInOut 6s infinite;
}
.image_fade img:nth-child(1) {
  position: relative;
}
.image_fade img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.image_fade2 {
  position: relative;
  width: 100%;
}
.image_fade2 img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-animation: fadeInOut 7s infinite;
          animation: fadeInOut 7s infinite;
}
.image_fade2 img:nth-child(1) {
  position: relative;
}
.image_fade2 img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}