@charset "UTF-8";
/* = Color
----------------------------------------------- */
/* = Commons
----------------------------------------------- */
* {
  word-break: break-all;
}

body {
  color: #222222;
}

a {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #222222;
}

.pointer {
  cursor: pointer;
}

.no_point {
  pointer-events: none !important;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* = Text align
----------------------------------------------- */
.align_center {
  text-align: center !important;
}

.align_left {
  text-align: left !important;
}

.align_right {
  text-align: right !important;
}

/* = Clear fix
----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/* = Margin Commons
----------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

/* = Padding
----------------------------------------------- */
.no_padding {
  padding: 0 !important;
}

/* = Form reset
----------------------------------------------- */
input, button, textarea, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:not([type=checkbox]), button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  outline: none;
  border: 1px solid #aaa;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus ul {
  list-style: none;
}

/* = Box shadow
----------------------------------------------- */
.shadow {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
}

/* = Round
----------------------------------------------- */
.round {
  border-radius: 4px;
}

/* = Flex
----------------------------------------------- */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.row .col2 {
  width: 50%;
}
.row .col3 {
  width: 33.3333%;
}
.row .col4 {
  width: 23% !important;
}

/* = font-size
----------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  width: 100%;
  background: #FFF;
  padding-top: 1px;
  position: relative;
}
header .header {
  height: 10rem;
  margin: 0 auto;
  width: 120rem;
}
header .header .header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header .header__inner .logo {
  width: 23.2rem;
}
header .header .header__inner nav.nav {
  height: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
header .header .header__inner nav.nav ul.navlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
}
header .header .header__inner nav.nav ul.navlist li.navlist__item {
  padding: 0 1.5rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header .header__inner nav.nav ul.navlist li.navlist__item .nav_submenu {
  display: none;
}
header .header .header__inner nav.nav ul.navlist li.navlist__item a {
  color: #222222;
  font-weight: bold;
  font-size: 1.4rem;
  z-index: 10;
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item {
  position: relative;
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item:nth-child(n+2)::after {
  content: "";
  width: 1px;
  height: 10px;
  background: #d3d3d3;
  position: absolute;
  left: 0;
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item::before {
  content: "";
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
  background: url(/assets/v3/img/lemon_small.svg) no-repeat center;
  background-size: 28.8px auto;
  background-size: 1.8rem auto;
  position: absolute;
  left: 8px;
  left: 0.5rem;
  top: 3.2px;
  top: 0.2rem;
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.drama::before {
  background-image: url(/assets/v3/img/lemon_quarter_drama.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.variety::before {
  background-image: url(/assets/v3/img/lemon_quarter_variety.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.movie::before {
  background-image: url(/assets/v3/img/lemon_quarter_movie.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.music::before {
  background-image: url(/assets/v3/img/lemon_quarter_music.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.anime::before {
  background-image: url(/assets/v3/img/lemon_quarter_anime.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.gravure::before {
  background-image: url(/assets/v3/img/lemon_quarter_gravure.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item.comic::before {
  background-image: url(/assets/v3/img/lemon_quarter_anime.svg);
}
header .header .header__inner nav.nav ul.navlist_category .navlist__item:hover::before, header .header .header__inner nav.nav ul.navlist_category .navlist__item.is_active::before {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
header .header .header__inner nav.nav ul.navlist_menu .navlist__item:hover {
  background-color: #F0F0F0;
}
header .header .header__inner nav.nav ul.navlist_menu .navlist__item:hover .nav_submenu {
  display: block;
}
header .header .header__inner .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: 2rem;
  position: relative;
}
header .header .header__inner .menu .search {
  width: 22px;
  margin-left: 1rem;
}
header .header .header__inner .menu .grouplogo {
  position: absolute;
  bottom: -18px;
  right: 0;
  text-align: right;
  width: 90px;
}
header .nav_submenu {
  background-color: #F0F0F0;
  padding: 2.8rem 4rem;
  width: 100vw;
  position: absolute;
  top: 8rem;
  left: 0;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
  z-index: 19;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
header .nav_submenu .submenulist {
  max-width: 1420px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 1280px) {
  header .nav_submenu .submenulist {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
header .nav_submenu .submenulist__item {
  margin-bottom: 2rem;
}
header .nav_submenu .submenulist__item a {
  display: unset;
}
header nav.subnav {
  background-color: #F0F0F0;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}
header nav.subnav .subnav__inner {
  height: 5rem;
  width: 120rem;
  margin: 0 auto;
  line-height: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header nav.subnav .subnav__inner .subnavlist {
  overflow: hidden;
  margin-left: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header nav.subnav .subnav__inner .subnavlist .subnavlist__item {
  padding: 0 1.2rem;
  position: relative;
}
header nav.subnav .subnav__inner .subnavlist .subnavlist__item a {
  color: #222222;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
  position: relative;
}
header nav.subnav .subnav__inner .adlist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav.subnav .subnav__inner .adlist .adlist_item {
  padding: 0 1rem;
}
header nav.subnav .subnav__inner .adlist .adlist_item a {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header nav.subnav .subnav__inner .adlist .adlist_item a img {
  vertical-align: middle;
  height: 22px;
  width: auto;
}
header nav.subnav .subnav__inner .adlist .adlist_item a .adlist_item-img {
  height: 30px;
}
header nav.subnav .subnav__inner .adlist .adlist_item_1 a img {
  height: 30px;
}
header nav.subnav .subnav__inner .adlist .adlist_item_7 a img {
  width: 6rem;
  height: auto;
}
header nav.subnav .subnav__inner .adlist .adlist_item_8 a img {
  width: 6rem;
  height: auto;
}
header.nosubnav {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}
header.nosubnav .subnav {
  display: none;
}
header .searchcontent {
  background: #f4f4f4;
  border-top: 1px solid #d3d3d3;
  padding: 1.6rem 2.6rem;
  position: absolute;
  width: 100%;
  min-width: 122rem;
  top: 9.6rem;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
  z-index: 19;
  display: none;
}
header .searchcontent .searchcontent__inner {
  margin: 0 auto;
  width: 42.4rem;
  position: relative;
}
header .searchcontent .searchcontent__inner .searchtab {
  margin-bottom: 1rem;
}
header .searchcontent .searchcontent__inner .searchtab .searchtab__item {
  display: inline-block;
  padding: 0 0.6rem;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
}
header .searchcontent .searchcontent__inner .searchtab .searchtab__item:last-child {
  margin: 0;
}
header .searchcontent .searchcontent__inner .searchtab .searchtab__item a {
  color: #606060;
}
header .searchcontent .searchcontent__inner .searchtab .searchtab__item a.current {
  color: #222222;
}
header .searchcontent .searchcontent__inner .searchform .searchform__item {
  display: none;
}
header .search__close {
  position: absolute;
  top: 0.1rem;
  right: 1.2rem;
  width: 1.6rem;
}
header.header_small {
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
          box-shadow: 0 3px 8px rgba(0, 0, 0, .3);
}
header.header_small .header {
  height: 7.8rem;
}
header.header_small .header .header__inner {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

form.search,
form.gsc-search-box,
.search__input {
  border: 2px solid #222222;
  border-radius: 20px;
  height: 4rem;
  background: #ffffff;
  margin: 0;
  position: relative;
  overflow: hidden;
}
form.search input[type=text],
form.gsc-search-box input[type=text],
.search__input input[type=text] {
  border: none;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
  padding: 0.9rem 1.6rem;
  width: calc(100% - 6.7rem) !important;
}
form.search .gsc-search-box,
form.gsc-search-box .gsc-search-box,
.search__input .gsc-search-box {
  margin: 0;
}
form.search .gsc-input,
form.gsc-search-box .gsc-input,
.search__input .gsc-input {
  vertical-align: top;
}
form.search .gsc-input .gsc-input-box,
form.gsc-search-box .gsc-input .gsc-input-box,
.search__input .gsc-input .gsc-input-box {
  border: none;
  background: none;
  padding: 0;
}
form.search .gsc-input .gsc-input-box .gsib_a,
form.gsc-search-box .gsc-input .gsc-input-box .gsib_a,
.search__input .gsc-input .gsc-input-box .gsib_a {
  padding: 0.9rem 1rem;
}
form.search button,
form.search button:hover,
form.search button:focus,
form.gsc-search-box button,
form.gsc-search-box button:hover,
form.gsc-search-box button:focus,
.search__input button,
.search__input button:hover,
.search__input button:focus {
  background: #222222;
  border-radius: 20px;
  width: 6.7rem;
  border: none;
  position: absolute;
  right: -0.2rem;
  top: -0.2rem;
  height: 4rem;
}
form.search button img,
form.search button:hover img,
form.search button:focus img,
form.gsc-search-box button img,
form.gsc-search-box button:hover img,
form.gsc-search-box button:focus img,
.search__input button img,
.search__input button:hover img,
.search__input button:focus img {
  width: 1.6rem;
}
form.search button:hover,
form.search button:hover:hover,
form.search button:focus:hover,
form.gsc-search-box button:hover,
form.gsc-search-box button:hover:hover,
form.gsc-search-box button:focus:hover,
.search__input button:hover,
.search__input button:hover:hover,
.search__input button:focus:hover {
  cursor: pointer;
}

.btn-primary {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #222222;
  border-radius: 50px;
  text-align: center;
  position: relative;
  margin: 4rem auto 0;
  display: block;
  width: 36rem;
  padding: 0.8rem 2.4rem;
  cursor: pointer;
}
.btn-primary::after {
  content: "";
  background: url(/assets/v3/img/icon_arrow_right.svg) center center/contain;
  width: 25.6px;
  width: 1.6rem;
  height: 25.6px;
  height: 1.6rem;
  display: inline-block;
  vertical-align: text-bottom;
  position: absolute;
  right: 32px;
  right: 2rem;
  top: calc(50% - 12.8px);
  top: calc(50% - 0.8rem);
}
.btn-primary.sub {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  margin: 2.4rem auto 0;
  width: 25.6rem;
}
.btn-primary.sub::after {
  width: 19.2px;
  width: 1.2rem;
  height: 19.2px;
  height: 1.2rem;
  right: 32px;
  right: 2rem;
  top: calc(50% - 9.6px);
  top: calc(50% - 0.6rem);
}
.btn-primary.back::after {
  right: auto;
  left: 19.2px;
  left: 1.2rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn-primary.white {
  background-color: #ffffff;
  color: #222222;
  border: 1px solid #909090;
}
.btn-primary.white::after {
  background: url(/assets/v3/img/icon_arrow_grey.svg) center center/contain no-repeat;
}
.btn-primary.link {
  padding-right: 3.2rem;
}
.btn-primary.link::after {
  background: url(/assets/v3/img/icon_blank.svg) center center/contain;
  right: 25.6px;
  right: 1.6rem;
}
.btn-primary.line2 {
  height: 7.3rem;
  border-radius: 3.6rem;
  line-height: 2.1rem;
  padding: 1.8rem;
  font-size: 1.4rem;
}
.btn-primary.line2 p {
  font-weight: normal;
  font-size: 1.2rem;
}
.btn-primary.font-xxs {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
}
.btn-primary__amazon {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #222222;
  border-radius: 50px;
  text-align: center;
  position: relative;
  display: block;
  width: 36rem;
  padding: 0.8rem 2.4rem;
  cursor: pointer;
}
.btn-primary__amazon::after {
  content: "" !important;
  background: url(/assets/v3/img/icon_blank.svg) center center/contain;
  position: absolute;
  width: 22.4px;
  width: 1.4rem;
  height: 22.4px;
  height: 1.4rem;
  right: 24px;
  right: 1.5rem;
  margin: auto;
  top: 0;
  bottom: 0;
}
.btn-primary.alignleft {
  margin-left: 0;
}
.btn-primary.widthauto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 25.6rem;
}
.btn-primary.youtube {
  border-radius: 4px;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.btn-primary.youtube::after {
  content: "";
  background: url(/assets/v3/img/icon_arrow_youtube.svg) no-repeat center;
  width: 16px;
  height: 16px;
  position: relative;
  right: 0;
  top: 0;
}

.wrap__btn-list__amazon .btn-list__amazon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0;
}
.wrap__btn-list__amazon .btn-list__amazon > li:not(:last-child) {
  margin: 0 auto 1rem;
}

.btn-secondary {
  width: 12.2rem;
  height: 2.8rem;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  border-radius: 1.4rem;
  margin-top: 1.2rem;
  background-color: #f5b524;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.btn-secondary::before {
  content: "";
  margin-right: 4.8px;
  margin-right: 0.3rem;
}
.btn-secondary__follow::before {
  background: url(/assets/v3/img/icon_heart_white.svg) center center/contain no-repeat;
  width: 20.8px;
  width: 1.3rem;
  height: 20.8px;
  height: 1.3rem;
}
.btn-secondary__follow::after {
  content: "フォローする";
}
.btn-secondary__follow.following::before {
  background: url(/assets/v3/img/icon_heart_orange.svg) center center/contain no-repeat;
}
.btn-secondary__follow.following::after {
  content: "フォロー済み";
}
.btn-secondary__clip::before {
  background: url(/assets/v3/img/icon_clip.svg) center center/contain no-repeat;
  width: 25.6px;
  width: 1.6rem;
  height: 25.6px;
  height: 1.6rem;
}
.btn-secondary__clip::after {
  content: "クリップする";
}
.btn-secondary__clip.clipping::before {
  background: url(/assets/v3/img/icon_clip_orange.svg) center center/contain no-repeat;
}
.btn-secondary__clip.clipping::after {
  content: "クリップ済み";
}
.btn-secondary.following, .btn-secondary.clipping {
  color: #f5b524;
  background-color: #FFFFFF;
  border: solid 2px #f5b524;
}
.btn-secondary__amazon {
  width: 20rem;
  height: 3.2rem;
  border-radius: 2.4rem;
  margin: 1.2rem auto 0;
  background-color: #f5b524 !important;
  color: #FFF !important;
}
.btn-secondary__amazon::after {
  content: "" !important;
  background: url(/assets/v3/img/icon_blank.svg) center center/contain;
  position: absolute;
  width: 22.4px;
  width: 1.4rem;
  height: 22.4px;
  height: 1.4rem;
  right: 14.4px;
  right: 0.9rem;
  margin: auto;
  top: 0;
  bottom: 0;
}
.btn-secondary__login {
  width: 10.7rem;
  border-radius: 24px;
  text-align: center;
  padding: 6px;
  margin-top: 0;
  position: relative;
}
.btn-secondary__login::before {
  content: url(/assets/v3/img/icon_mypage.svg);
}
.btn-secondary__login::after {
  content: "マイページ";
}
.btn-secondary__login:not(.logged-in) {
  background-color: #909090;
  width: 17rem;
}
.btn-secondary__login:not(.logged-in)::before {
  content: "";
}
.btn-secondary__login:not(.logged-in)::after {
  content: "新規会員登録/ログイン";
}
.btn-secondary__login a {
  width: 100%;
  height: 100%;
  position: absolute;
}

.btn-white {
  border: 1px solid #909090;
  border-radius: 3rem;
  background-color: #FFFFFF;
  padding: 1.8rem 0.6rem;
  font-size: 1.4rem;
  min-width: 27.2rem;
  margin: 4rem auto 0;
}

.btn-link {
  text-align: center;
  margin: 4rem auto 0;
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  font-weight: normal;
}
.btn-link span {
  border-bottom: 1px dashed #707070;
  display: inline-block;
}

.btn-more--text {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: bold;
  font-weight: normal;
  border: none;
  background-color: transparent;
  display: block;
  width: 100%;
  text-align: right;
}
.btn-more--text a {
  display: inline;
  color: #2793f0;
  text-decoration: underline;
}
.btn-more--text::after {
  display: none;
}

.btn-more {
  font-size: 1.4rem;
  line-height: 2.1rem;
  font-weight: bold;
  border: 1px solid #d3d3d3;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 0.6rem;
  width: 100%;
  text-align: center;
  margin-top: 0.8rem;
  position: relative;
  z-index: 3;
  height: 3.5rem;
}
.btn-more::after {
  content: "";
  background: url(/assets/v3/img/icon_arrow_nav.svg) center center/contain no-repeat;
  width: 19.2px;
  width: 1.2rem;
  height: 19.2px;
  height: 1.2rem;
  display: inline-block;
  vertical-align: text-bottom;
  position: absolute;
  right: 12.8px;
  right: 0.8rem;
  top: calc(50% - 9.6px);
  top: calc(50% - 0.6rem);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.btn-square {
  margin: 0 auto;
  position: relative;
  width: 45rem;
  border: solid 1px #CCC;
  border-radius: 8px;
  padding: 1.6rem 0;
  background: #FFF;
}
.btn-square > a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.btn-square::after {
  content: "";
  width: 6px;
  height: 12px;
  background: url(/assets/v3/img/icon_arrow_grey.svg) no-repeat center;
  background-size: 100% auto;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn-square .item-text {
  position: relative;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  max-width: 40rem;
  margin: 0 auto;
}
.btn-square.gray_small {
  padding: 1.2rem 0;
}
.btn-square.gray_small .item-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #606060;
  text-align: center;
  font-weight: normal;
}

ul.snslist {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 5.2rem auto 0;
}
ul.snslist li.snslist__item a img {
  display: block;
  width: 24px;
  height: 24px;
}

.snslists {
  margin-top: 2.4rem;
}
.snslists .snslists__item {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.snslists .snslists__item:not(:last-child) {
  margin-right: 2.4rem;
}
.snslists .snslists__item a {
  text-decoration: underline;
  color: #2793f0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.snslists .snslists__item a::after {
  content: "";
  background: url(/assets/v3/img/icon_blank_b.svg) center center/contain no-repeat;
  width: 22.4px;
  width: 1.4rem;
  height: 22.4px;
  height: 1.4rem;
  margin-left: 6.4px;
  margin-left: 0.4rem;
}