@charset "UTF-8";
.contents_inner {
  max-width: 1200px;
  margin: 0px auto;
}

/* ======================================================
	splide
========================================================= */
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/* ======================================================
	上書きスタイル
========================================================= */
.splide__arrow--prev {
  left: 0vw;
  margin-left: -10px;
}
@media screen and (min-width: 768px) {
  .splide__arrow--prev {
    left: 0px;
  }
}
@media screen and (min-width: 1480px) {
  .splide__arrow--prev {
    left: -20px;
  }
}

.splide__arrow--next {
  right: 0vw;
  margin-right: -10px;
}
@media screen and (min-width: 768px) {
  .splide__arrow--next {
    right: 0px;
  }
}
@media screen and (min-width: 1480px) {
  .splide__arrow--next {
    right: -20px;
  }
}

.splide__arrow {
  background-color: #EAEAEA;
  opacity: 1;
  height: 30px;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .splide__arrow {
    height: 40px;
    width: 40px;
  }
}
@media screen and (min-width: 1180px) {
  .splide__arrow {
    height: 50px;
    width: 50px;
  }
}
.splide__arrow svg {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .splide__arrow svg {
    width: 15px;
    height: 15px;
  }
}
@media screen and (min-width: 1180px) {
  .splide__arrow svg {
    width: 16px;
    height: 16px;
  }
}
.splide__arrow svg path {
  fill: #939393;
}

#dictionary_single {
  background-color: #0C1C96;
}

.dictionary_content {
  padding: 40px 7vw;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .dictionary_content {
    padding: 50px 45px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_content {
    border-radius: 20px;
    padding: 95px 50px;
  }
}

@media screen and (min-width: 768px) {
  .dictionary_layout {
    display: flex;
    gap: 0px 5%;
  }
}
@media screen and (min-width: 1280px) {
  .dictionary_layout {
    gap: 0px 60px;
    max-width: 1000px;
    margin: 0px auto;
  }
}

@media screen and (max-width: 767px) {
  .dictionary_layout_side {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .dictionary_layout_side {
    width: 30%;
  }
}
@media screen and (min-width: 1280px) {
  .dictionary_layout_side {
    width: 300px;
  }
}

@media screen and (min-width: 768px) {
  .dictionary_layout_content {
    width: 65%;
  }
}
@media screen and (min-width: 1280px) {
  .dictionary_layout_content {
    width: 640px;
  }
}

@media screen and (min-width: 768px) {
  .dictionary_layout_content:has(.pagination) {
    position: relative;
    padding-bottom: 70px;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_layout_content:has(.pagination) {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .dictionary_layout_content .pagination {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_layout_content .pagination {
    width: 520px;
    left: 50%;
    margin-left: -260px;
  }
}

.dictionary_layout_side .content_title .en {
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .dictionary_layout_side .content_title .en {
    font-size: 4.5rem;
  }
}
.dictionary_layout_side .content_title .title {
  letter-spacing: 0em;
}

.widget_column_box {
  background-color: #EAEAEA;
  padding: 35px 15px;
  border-radius: 5px;
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  .widget_column_box {
    border-radius: 10px;
    padding: 40px 15px;
  }
}

.widget_column_wrap {
  display: flex;
  justify-content: flex-start;
  gap: 0px 20px;
}
@media screen and (min-width: 1080px) {
  .widget_column_wrap {
    gap: 0px 30px;
  }
}

.widget_ttl {
  text-align: center;
  color: #939393;
  font-size: 1.4rem;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .widget_ttl {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1080px) {
  .widget_ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.widget_cat_selector {
  padding-bottom: 10px;
  display: none;
}

.widget_keyword_item {
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .widget_keyword_item {
    line-height: 1em;
  }
}
@media screen and (min-width: 1080px) {
  .widget_keyword_item + .widget_keyword_item {
    margin-top: 15px;
  }
}
.widget_keyword_item a {
  transition: all 0.2s ease-in-out;
  color: #2B2B2B;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .widget_keyword_item a {
    font-size: 1.7rem;
  }
}
@media (any-hover: hover) {
  .widget_keyword_item a:hover {
    color: #14D029;
  }
}

@media screen and (max-width: 767px) {
  #sidebar {
    position: fixed;
    left: 0px;
    bottom: 120px;
    z-index: 55;
  }
  #sidebar .widget_column_box {
    padding: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: translateX(-101%);
    display: flex;
    transition: all 0.4s ease-in-out;
    width: 90vw;
  }
  #sidebar._current .widget_column_box {
    transform: translateX(0%);
  }
}

@media screen and (max-width: 767px) {
  #sidebar_overlay {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 33;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
  }
  #sidebar_overlay._current {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) {
  #sidebar_overlay {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .widget_column_wrap {
    padding: 30px 40px;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .widget_column + .widget_column {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .widget_ttl {
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .widget_keyword_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
}
@media screen and (max-width: 767px) {
  .widget_keyword_list._kana {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .widget_keyword_item a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .sidebar_slide_btn, .sidebar_close_btn {
    background-color: #EAEAEA;
  }
}
@media screen and (min-width: 768px) {
  .sidebar_slide_btn, .sidebar_close_btn {
    display: none;
  }
}
@media (any-hover: hover) {
  .sidebar_slide_btn, .sidebar_close_btn {
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .sidebar_slide_btn {
    padding: 15px 15px 15px 13px;
    border-radius: 0px 10px 10px 0px;
  }
}
@media screen and (max-width: 767px) {
  .sidebar_slide_btn .sidebar_slide_arrow {
    background-image: url(../../../img/common/arrow_grey.svg);
  }
}

@media screen and (max-width: 767px) {
  .sidebar_close_btn {
    padding: 30px 15px 30px 15px;
    border-right: 1px solid #ddd;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sidebar_close_btn .sidebar_slide_arrow {
    background-image: url(../../../img/common/arrow_grey.svg);
    transform: scale(-1, 1);
  }
}

@media screen and (max-width: 767px) {
  .sidebar_slide_text {
    color: #939393;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    writing-mode: vertical-rl; /* Chrome */
    white-space: nowrap;
  }
  .sidebar_slide_text ._text {
    font-size: 1.8rem;
    line-height: 1em;
  }
}

@media screen and (max-width: 767px) {
  .sidebar_slide_arrow {
    position: relative;
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 13px;
    background-position: top 13px center;
    background-size: 10px 16px;
    background-repeat: no-repeat;
    min-height: 31px;
  }
}

.single_head {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .single_head {
    margin-bottom: 20px;
  }
}

.single_keyword_area {
  display: flex;
  align-items: center;
  gap: 0px 10px;
}
@media screen and (min-width: 768px) {
  .single_keyword_area {
    line-height: 1em;
  }
}
@media screen and (min-width: 1080px) {
  .single_keyword_area {
    gap: 0px 15px;
  }
}

.single_title {
  font-size: min(5.641025641vw, 2.4rem);
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .single_title {
    font-weight: 600;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1080px) {
  .single_title {
    font-size: 3.5rem;
  }
}

.single_alphabet {
  color: #939393;
  padding: 0.6em 0px 0em 0px;
  line-height: 1em;
}

.single_pronunciation {
  color: #939393;
  font-size: 1.3rem;
}
@media screen and (min-width: 1080px) {
  .single_pronunciation {
    margin-top: 3px;
    font-size: 1.4rem;
  }
}

.dictionary-link {
  color: #0C1C96;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .dictionary-link:hover {
    color: #14D029;
  }
}

@media screen and (min-width: 1080px) {
  .dictionary_single_intro .text {
    line-height: 2em;
  }
}
.dictionary_single_intro .text + .text {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .dictionary_single_intro .text + .text {
    margin-top: 1.5em;
  }
}

.dictionary_single_memo {
  margin-top: 20px;
  background-color: #EAEAEA;
  padding: 20px 5vw;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .dictionary_single_memo {
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_single_memo {
    border-radius: 20px;
    padding: 40px 40px;
  }
}
.dictionary_single_memo .top {
  text-align: center;
  color: #939393;
  font-size: min(5.1282051282vw, 2.2rem);
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .dictionary_single_memo .top {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_single_memo .top {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1080px) {
  .dictionary_single_memo .text {
    line-height: 2em;
  }
}
.dictionary_single_memo .text + .text {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .dictionary_single_memo .text + .text {
    margin-top: 1.5em;
  }
}

.single_post_bottom {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .single_post_bottom {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1080px) {
  .single_post_bottom {
    margin-top: 60px;
  }
}
.single_post_bottom .btn {
  line-height: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .single_post_bottom .btn_standard {
    max-width: 250px;
  }
}
.single_post_bottom .btn_standard .arrow {
  left: 12px;
}

#ft_recommend {
  overflow: hidden;
  position: relative;
  background-color: #EAEAEA;
  padding: 40px 5vw;
}
@media screen and (min-width: 768px) {
  #ft_recommend {
    padding: 60px 30px;
  }
}
@media screen and (min-width: 1080px) {
  #ft_recommend {
    padding: 80px 35px 80px 35px;
  }
}
@media screen and (min-width: 1180px) {
  #ft_recommend {
    padding: 80px 40px 80px 40px;
  }
}
#ft_recommend .contents_inner {
  max-width: 1200px;
}
@media screen and (min-width: 1280px) {
  #ft_recommend .contents_inner {
    position: relative;
  }
}

.ft_recommend_fig {
  position: absolute;
}
.ft_recommend_fig img {
  width: 100%;
  height: auto;
}
.ft_recommend_fig._fig01 {
  left: 0px;
  top: 0px;
  width: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .ft_recommend_fig._fig01 {
    width: 20.8333333333vw;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_fig._fig01 {
    width: 18.5185185185vw;
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_fig._fig01 {
    width: 256px;
    top: -44px;
    left: -168px;
  }
}
.ft_recommend_fig._fig02 {
  right: 0px;
  bottom: 0px;
  width: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .ft_recommend_fig._fig02 {
    width: 20.8333333333vw;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_fig._fig02 {
    width: 18.5185185185vw;
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_fig._fig02 {
    width: 256px;
    right: -168px;
    bottom: -80px;
  }
}

.ft_recommend_box {
  position: relative;
  z-index: 11;
  background-color: #fff;
  padding: 30px 5vw;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  .ft_recommend_box {
    padding: 40px 30px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_box {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px 5%;
    padding: 50px 0px 50px 50px;
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_box {
    gap: 0px 60px;
    padding: 50px 0px 50px 100px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_box .content_title {
    margin-bottom: 0px;
  }
}
.ft_recommend_box .splide__arrow {
  background-color: #939393;
  z-index: 22;
}
@media screen and (min-width: 1080px) {
  .ft_recommend_box .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.ft_recommend_box .splide__arrow svg path {
  fill: #fff;
}
.ft_recommend_box .splide__arrow--prev, .ft_recommend_box .splide__arrow--next {
  margin-top: 0px;
}
@media screen and (min-width: 1080px) {
  .ft_recommend_box .splide__arrow--next {
    right: calc(30% + 30px);
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_box .splide__arrow--next {
    margin-right: -20px;
    left: 515px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_box:before {
    content: "";
    width: 10%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    background: linear-gradient(270deg, #fff 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 11;
  }
}

.ft_recommend_slide {
  background-color: #EDEDED;
  border-radius: 10px;
  padding: 15px 20px;
}
@media screen and (min-width: 768px) {
  .ft_recommend_slide {
    padding: 25px 25px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_slide {
    width: 65%;
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_slide {
    padding: 30px 30px;
    width: 535px;
  }
}

.ft_recommend_slide_inner {
  display: flex;
  gap: 0px 5%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .ft_recommend_slide_inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1079px) {
  .ft_recommend_slide_inner {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1180px) {
  .ft_recommend_slide_inner {
    gap: 0px 30px;
  }
}
.ft_recommend_slide_inner .img {
  border-radius: 5px;
  width: 35%;
  aspect-ratio: 8/6;
}
@media screen and (min-width: 1080px) {
  .ft_recommend_slide_inner .img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1280px) {
  .ft_recommend_slide_inner .img {
    width: 150px;
  }
}
.ft_recommend_slide_inner .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ft_recommend_slide_inner .intro {
  flex: 1;
}
.ft_recommend_slide_inner .name {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .ft_recommend_slide_inner .name {
    font-size: 1.8rem;
    margin-bottom: 0.2em;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_slide_inner .name {
    font-size: 2rem;
    line-height: 1.4em;
    min-height: 2.8em;
    margin-bottom: 0.3em;
  }
}
.ft_recommend_slide_inner .textarea .text {
  font-weight: 500;
  font-size: 1.3rem;
}
@media screen and (min-width: 1080px) {
  .ft_recommend_slide_inner .textarea .text {
    line-height: 1.6em;
  }
}
.ft_recommend_slide_inner .ft_recommend_btn {
  margin-top: 10px;
  line-height: 1em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .ft_recommend_slide_inner .ft_recommend_btn {
    text-align: center;
    width: 100%;
  }
}
@media screen and (min-width: 1080px) {
  .ft_recommend_slide_inner .ft_recommend_btn {
    margin-top: 15px;
    margin-right: -15px;
  }
}
.ft_recommend_slide_inner .ft_recommend_btn .btn_standard {
  line-height: 1em;
  max-width: 180px;
}

#ft_sponsor {
  overflow: hidden;
  position: relative;
  padding: 30px 5vw;
}
@media screen and (min-width: 768px) {
  #ft_sponsor {
    padding: 40px 30px;
  }
}
@media screen and (min-width: 1080px) {
  #ft_sponsor {
    padding: 40px 35px 40px 35px;
  }
}
@media screen and (min-width: 1180px) {
  #ft_sponsor {
    padding: 40px 40px 40px 40px;
  }
}
#ft_sponsor .contents_inner {
  max-width: 1200px;
}
@media screen and (min-width: 1280px) {
  #ft_sponsor .contents_inner {
    position: relative;
  }
}

.ft_sponsor_box {
  position: relative;
  z-index: 11;
  background-color: #EAEAEA;
  padding: 30px 5vw;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0px auto;
}
@media screen and (min-width: 768px) {
  .ft_sponsor_box {
    padding: 40px 30px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_sponsor_box {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px 5%;
    padding: 50px 50px 50px 50px;
  }
}
@media screen and (min-width: 1280px) {
  .ft_sponsor_box {
    gap: 0px 0px;
    padding: 48px 50px 48px 100px;
  }
}
@media screen and (min-width: 1080px) {
  .ft_sponsor_box .content_title {
    margin-bottom: 0px;
  }
}
.ft_sponsor_box .splide__arrow {
  background-color: #0C1C96;
  z-index: 22;
}
@media screen and (min-width: 1080px) {
  .ft_sponsor_box .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.ft_sponsor_box .splide__arrow svg path {
  fill: #fff;
}
.ft_sponsor_box .splide__arrow--prev, .ft_sponsor_box .splide__arrow--next {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .ft_sponsor_box .splide__arrow--prev {
    margin-left: -32px;
  }
}
@media screen and (max-width: 767px) {
  .ft_sponsor_box .splide__arrow--next {
    margin-right: -32px;
  }
}

@media screen and (min-width: 1080px) {
  .ft_sponsor_title {
    min-width: 318px;
  }
}
@media screen and (min-width: 1280px) {
  .ft_sponsor_title {
    width: 350px;
  }
}

@media screen and (min-width: 1080px) {
  .ft_sponsor_body {
    flex: 1;
  }
}
@media screen and (min-width: 1280px) {
  .ft_sponsor_body {
    width: 700px;
  }
}

@media screen and (min-width: 768px) {
  #ft_sponsor .ft_sponsor_slider {
    display: flex;
    gap: 0px 2%;
  }
}
@media screen and (min-width: 1280px) {
  #ft_sponsor .ft_sponsor_slider {
    gap: 0px 20px;
  }
}

@media screen and (min-width: 768px) {
  .ft_sponsor_slide {
    width: 32%;
  }
}
@media screen and (min-width: 1180px) {
  .ft_sponsor_slide {
    width: 220px;
  }
}
.ft_sponsor_slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/180;
}