@charset "UTF-8";
/* ==========================================================================
Reset
========================================================================== */
html {
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0; }

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline; }

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block; }

html,
body {
  width: 100%;
  height: 100%; }

ul,
ol {
  list-style: none; }

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

a {
  text-decoration: none;
  color: inherit; }

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

input,
select,
button,
textarea {
  font-family: inherit;
  font-size: inherit; }

button {
  cursor: pointer;
  border: none;
  background: none; }

b,
strong {
  font-weight: bold; }

/* ==========================================================================
Variables & Mixins
========================================================================== */
.red {
  color: #de3b38; }

.pc {
  display: block !important; }
  @media screen and (max-width: 768px) {
    .pc {
      display: none !important; } }

.sp {
  display: block !important; }
  @media screen and (min-width: 769px) {
    .sp {
      display: none !important; } }

/* ==========================================================================
共通
========================================================================== */
body {
  font-family: 'M PLUS Rounded 1c', "Yu Gothic Medium", "Yu Gothic", YuGothic, "游ゴシック体", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  background: url(../img/bg_01.jpg) repeat;
  overflow-x: hidden;
  background-size: contain; }
  body.off-scroll {
    overflow: hidden; }
  @media screen and (max-width: 768px) {
    body {
      font-size: 15px; } }

.content_inner {
  max-width: 1030px;
  margin: 0 auto;
  padding: 70px 15px 80px; }
  @media screen and (max-width: 768px) {
    .content_inner {
      padding: 50px 5% 50px;
      width: 100%;
      overflow-x: hidden; } }

.text_22 {
  font-size: 18px;
  line-height: 1.8; }
  @media screen and (max-width: 768px) {
    .text_22 {
      font-size: 16px; } }

p {
  font-size: 16px;
  line-height: 1.8; }
  @media screen and (max-width: 768px) {
    p {
      font-size: 14px;
      line-height: 1.8; } }

img {
  transform: translateZ(0); }

.photo_list {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .photo_list {
      display: block; } }
  .photo_list li {
    width: 49.5%; }
    @media screen and (max-width: 768px) {
      .photo_list li {
        width: 100%;
        margin-bottom: 5px; } }

.btn {
  background: #fff;
  color: #372114;
  text-align: center;
  border-radius: 20px;
  margin: 0 auto;
  transition: all 0.3s ease;
  padding: 15px 10px;
  border: 2px solid #372114;
  font-weight: 500;
  position: relative; }
  @media screen and (max-width: 768px) {
    .btn {
      border-radius: 15px;
      font-size: 15px;
      border: 1px solid #372114; } }
  .btn a {
    display: block; }
  @media screen and (min-width: 769px) {
    .btn:hover {
      background: #372114;
      color: #fff; }
      .btn:hover::after {
        border-top: 2px solid #fff;
        border-right: 2px solid #fff; } }
  .btn::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0%;
    margin: auto 0;
    right: 10%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #372114;
    border-right: 2px solid #372114;
    transform: rotate(45deg); }
    @media screen and (max-width: 768px) {
      .btn::after {
        border-top: 1px solid #372114;
        border-right: 1px solid #372114;
        right: 8%;
        width: 8px;
        height: 8px; } }

.btn .btn_float_box {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease; }
  @media screen and (max-width: 768px) {
    .btn .btn_float_box {
      bottom: 10px;
      right: 10px; } }

.btn_float_box.show {
  opacity: 1; }

.cont_ttl_wrap {
  margin: 0 auto 40px;
  display: block;
  text-align: center;
  position: relative; }
  @media screen and (max-width: 768px) {
    .cont_ttl_wrap {
      margin: 0 auto 30px; } }
  .cont_ttl_wrap::before, .cont_ttl_wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50% - 190px);
    height: 3px;
    background-color: #372114;
    box-shadow: 0 6px 0 -1px #372114; }
    @media screen and (max-width: 768px) {
      .cont_ttl_wrap::before, .cont_ttl_wrap::after {
        width: calc(50% - 135px);
        height: 2.5px;
        background-color: #372114;
        box-shadow: 0 5px 0 -1px #372114; } }
  .cont_ttl_wrap::before {
    left: 0; }
  .cont_ttl_wrap::after {
    right: 0; }
  .cont_ttl_wrap .cont_ttl {
    position: relative;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 3rem;
    background-color: #372114;
    color: #fff;
    font-size: 25px;
    text-align: center; }
    @media screen and (max-width: 768px) {
      .cont_ttl_wrap .cont_ttl {
        font-size: 20px;
        height: 45px;
        line-height: 45px;
        padding: 0 2rem; } }
  .cont_ttl_wrap .cont_ttl::before,
  .cont_ttl_wrap .cont_ttl::after {
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #372114 transparent;
    border-style: solid;
    content: ''; }
  .cont_ttl_wrap .cont_ttl::before {
    left: -14px;
    border-width: 25px 0px 25px 15px; }
    @media screen and (max-width: 768px) {
      .cont_ttl_wrap .cont_ttl::before {
        border-width: 20px 0px 25px 16px;
        left: -15.5px; } }
  .cont_ttl_wrap .cont_ttl::after {
    right: -14px;
    border-width: 25px 15px 25px 0px; }
    @media screen and (max-width: 768px) {
      .cont_ttl_wrap .cont_ttl::after {
        border-width: 25px 15px 20px 0px;
        right: -14.5px; } }

.series .cont_ttl_wrap::before, .series .cont_ttl_wrap::after {
  width: calc(50% - 140px); }
  @media screen and (max-width: 768px) {
    .series .cont_ttl_wrap::before, .series .cont_ttl_wrap::after {
      width: calc(50% - 90px); } }

.brand .cont_ttl_wrap {
  margin: 0 auto 10px; }
  .brand .cont_ttl_wrap::before, .brand .cont_ttl_wrap::after {
    width: calc(50% - 240px); }
    @media screen and (max-width: 768px) {
      .brand .cont_ttl_wrap::before, .brand .cont_ttl_wrap::after {
        width: calc(50% - 170px); } }

.news .cont_ttl_wrap::before, .news .cont_ttl_wrap::after {
  width: calc(50% - 120px); }
  @media screen and (max-width: 768px) {
    .news .cont_ttl_wrap::before, .news .cont_ttl_wrap::after {
      width: calc(50% - 75px); } }

.searchlist .cont_ttl_wrap::before, .searchlist .cont_ttl_wrap::after {
  width: calc(50% - 160px); }
  @media screen and (max-width: 768px) {
    .searchlist .cont_ttl_wrap::before, .searchlist .cont_ttl_wrap::after {
      width: calc(50% - 100px); } }

.cont_subttl {
  color: #372114;
  font-size: 23px;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 2px solid #372114;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .cont_subttl {
      font-size: 18px;
      border-bottom: 1px solid #372114;
      margin-bottom: 20px;
      padding-bottom: 5px; } }

/* ==========================================================================
アニメーション
========================================================================== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
  .anim.is-show {
    opacity: 1;
    transform: translateY(0); }

.trig {
  opacity: 0;
  transition: opacity 0.6s ease-out; }
  .trig.is-show {
    opacity: 1; }

.animout {
  opacity: 1;
  transition: opacity 0.6s ease-out; }
  .animout.is-out {
    opacity: 0; }

.anim-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.8s ease-out, transform 0.8s ease-out; }
  .anim-left.is-show {
    opacity: 1;
    transform: translateX(0); }

/* ==========================================================================
Header
========================================================================== */
.header {
  background-color: #fff;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0; }
  .header_inner {
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media screen and (max-width: 768px) {
      .header_inner {
        padding: 0 10px; } }
    .header_inner .header_logo {
      display: flex;
      justify-content: space-between;
      width: 320px;
      flex-shrink: 0; }
      @media screen and (max-width: 768px) {
        .header_inner .header_logo {
          width: fit-content; } }
      .header_inner .header_logo h1 {
        width: 45%; }
        .header_inner .header_logo h1 img {
          height: 50px;
          display: block; }
          @media screen and (max-width: 768px) {
            .header_inner .header_logo h1 img {
              height: 30px; } }
      .header_inner .header_logo h2 {
        width: 45%; }
        .header_inner .header_logo h2 img {
          height: 50px;
          display: block; }
          @media screen and (max-width: 768px) {
            .header_inner .header_logo h2 img {
              height: 30px; } }
    .header_inner .header_nav .hamburger-overlay {
      position: fixed;
      top: 10px;
      right: 20px;
      z-index: 1000;
      width: 60px;
      height: 60px;
      border: none;
      background: transparent;
      cursor: pointer; }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay {
          top: 5px;
          width: 50px;
          height: 50px;
          right: 10px; } }
    .header_inner .header_nav .hamburger-overlay__line {
      position: absolute;
      left: 12px;
      width: 36px;
      height: 3px;
      background-color: #de3b38;
      transition: all .6s;
      border-radius: 2px; }
    .header_inner .header_nav .hamburger-overlay__line:nth-of-type(1) {
      top: 18px; }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay__line:nth-of-type(1) {
          top: 13px; } }
    .header_inner .header_nav .hamburger-overlay__line:nth-of-type(2) {
      top: 28.5px; }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay__line:nth-of-type(2) {
          top: 24px; } }
    .header_inner .header_nav .hamburger-overlay__line:nth-of-type(3) {
      top: 39px; }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay__line:nth-of-type(3) {
          top: 35px; } }
    .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
      transform: translateY(10.5px) rotate(-45deg); }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
          transform: translateY(11px) rotate(-45deg); } }
    .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
      transform: translateY(-10.5px) rotate(45deg); }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
          transform: translateY(-11px) rotate(45deg); } }
    .header_inner .header_nav .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
      opacity: 0; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item {
      opacity: 1;
      transform: translateX(0); }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(1) {
      transition-delay: 0.5s; }
      @media screen and (max-width: 768px) {
        .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(1) .nav-overlay__link {
          font-size: 20px;
          padding: 0px 0px 18px;
          margin-bottom: 0px;
          line-height: 1.5; } }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(2) {
      transition-delay: 0.6s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(3) {
      transition-delay: 0.7s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(4) {
      transition-delay: 0.8s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(5) {
      transition-delay: 0.9s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(6) {
      transition-delay: 1.0s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(7) {
      transition-delay: 1.1s; }
    .header_inner .header_nav .nav-overlay.active .nav-overlay__item:nth-child(8) {
      transition-delay: 1.2s; }

/* ==========================================================================
kv
========================================================================== */
.kv {
  padding-top: 50px; }
  @media screen and (max-width: 768px) {
    .kv {
      padding-top: 70px; } }
  .kv .kv_slide {
    position: relative;
    overflow: hidden; }
  .kv .kv_swiper {
    overflow: visible;
    padding: 50px 0 50px; }
    @media screen and (max-width: 768px) {
      .kv .kv_swiper {
        padding: 0px 0 20px; } }
    .kv .kv_swiper .swiper-wrapper {
      align-items: center; }
    .kv .kv_swiper .swiper-slide {
      width: 80%;
      border-radius: 30px;
      overflow: hidden;
      transition: transform 0.4s ease, opacity 0.4s ease; }
      @media screen and (max-width: 768px) {
        .kv .kv_swiper .swiper-slide {
          width: 100%;
          border-radius: 12px;
          transform: scale(0.9); } }
      .kv .kv_swiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block; }
    .kv .kv_swiper .swiper-button-prev,
    .kv .kv_swiper .swiper-button-next {
      width: 70px;
      height: 80px;
      background: #fff;
      color: #de3b38;
      box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
      margin-top: calc(-20px - (var(--swiper-navigation-size) / 2)); }
      @media screen and (max-width: 768px) {
        .kv .kv_swiper .swiper-button-prev,
        .kv .kv_swiper .swiper-button-next {
          margin-top: calc(-5px - (var(--swiper-navigation-size) / 2));
          width: 35px;
          height: 40px;
          top: auto;
          bottom: 25px;
          margin-top: 0; } }
      .kv .kv_swiper .swiper-button-prev::after,
      .kv .kv_swiper .swiper-button-next::after {
        font-size: 38px;
        font-weight: bold;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%); }
        @media screen and (max-width: 768px) {
          .kv .kv_swiper .swiper-button-prev::after,
          .kv .kv_swiper .swiper-button-next::after {
            font-size: 20px; } }
      @media screen and (min-width: 769px) {
        .kv .kv_swiper .swiper-button-prev:hover,
        .kv .kv_swiper .swiper-button-next:hover {
          opacity: 0.8; } }
    .kv .kv_swiper .swiper-button-prev {
      left: 0px;
      border-radius: 0 100% 100% 0; }
    .kv .kv_swiper .swiper-button-next {
      right: 0px;
      border-radius: 100% 0 0 100%; }
      .kv .kv_swiper .swiper-button-next::after {
        left: 58%; }
    .kv .kv_swiper .swiper-pagination {
      bottom: 10px !important; }
      @media screen and (max-width: 768px) {
        .kv .kv_swiper .swiper-pagination {
          bottom: 5px !important; } }
    .kv .kv_swiper .swiper-pagination-bullet {
      width: 70px;
      height: 7px;
      border-radius: 10px;
      background: #ccc;
      opacity: 1;
      margin: 0 8px !important;
      transition: background 0.3s ease; }
      @media screen and (max-width: 768px) {
        .kv .kv_swiper .swiper-pagination-bullet {
          width: 30px;
          height: 4px;
          margin: 0 5px !important; } }
      .kv .kv_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #de3b38; }

/* ==========================================================================
pickup
========================================================================== */
@media screen and (max-width: 768px) {
  .pickup .content_inner {
    padding: 40px 5% 30px; } }
.pickup .content_inner .pickup_box {
  background: #fff;
  border: 2px solid #372114;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  padding: 35px 30px 25px 30px;
  position: relative; }
  @media screen and (max-width: 768px) {
    .pickup .content_inner .pickup_box {
      border: 1.5px solid #372114;
      border-radius: 15px;
      padding: 8px 20px 8px 10px; } }
  .pickup .content_inner .pickup_box::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0%;
    margin: auto 0;
    right: 3%;
    width: 14px;
    height: 14px;
    border-top: 3px solid #372114;
    border-right: 3px solid #372114;
    transform: rotate(45deg); }
    @media screen and (max-width: 768px) {
      .pickup .content_inner .pickup_box::after {
        border-top: 1px solid #372114;
        border-right: 1px solid #372114;
        right: 2.5%;
        width: 8px;
        height: 8px; } }
  .pickup .content_inner .pickup_box::before {
    content: "PICK UP";
    color: #de3b38;
    position: absolute;
    font-size: 30px;
    font-weight: 500;
    -webkit-text-stroke: 17px #fff;
    paint-order: stroke;
    top: -25px;
    margin: auto 0;
    left: 26px;
    width: 100%;
    height: 14px; }
    @media screen and (max-width: 768px) {
      .pickup .content_inner .pickup_box::before {
        font-size: 15px;
        -webkit-text-stroke: 8px #fff;
        left: 18px;
        top: -16px; } }
  .pickup .content_inner .pickup_box .box_logo {
    width: 10%; }
    @media screen and (max-width: 768px) {
      .pickup .content_inner .pickup_box .box_logo {
        width: 15%; } }
    .pickup .content_inner .pickup_box .box_logo img {
      border-radius: 15px; }
      @media screen and (max-width: 768px) {
        .pickup .content_inner .pickup_box .box_logo img {
          border-radius: 10px; } }
  .pickup .content_inner .pickup_box .box_txt {
    width: 87%; }
    @media screen and (max-width: 768px) {
      .pickup .content_inner .pickup_box .box_txt {
        width: 80%;
        font-size: 12px; } }
    .pickup .content_inner .pickup_box .box_txt .tag_new {
      background: #372114;
      color: #fff;
      width: fit-content;
      padding: 0px 10px;
      font-size: 16px;
      margin-bottom: 10px; }
      @media screen and (max-width: 768px) {
        .pickup .content_inner .pickup_box .box_txt .tag_new {
          font-size: 9px;
          padding: 0px 6px;
          margin-bottom: 1px; } }

/* ==========================================================================
series
========================================================================== */
.series .content_inner {
  padding: 0px 15px 150px; }
  @media screen and (max-width: 768px) {
    .series .content_inner {
      padding: 10px 5% 100px; } }
.series .series_cont .series_cont_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .series .series_cont .series_cont_box {
      margin-bottom: 20px; } }
  .series .series_cont .series_cont_box li {
    width: 23.4%;
    margin: 0 0.8% 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; }
    @media screen and (min-width: 769px) {
      .series .series_cont .series_cont_box li:hover {
        transform: translateY(-8px); } }
    @media screen and (max-width: 768px) {
      .series .series_cont .series_cont_box li {
        width: 47%;
        margin: 0 1.5% 25px;
        border-radius: 15px; } }
    .series .series_cont .series_cont_box li a {
      display: block; }
      .series .series_cont .series_cont_box li a .box_logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        margin: 0px 35px;
        padding: 15px 0px;
        color: #372114;
        font-size: 22px; }
        @media screen and (max-width: 768px) {
          .series .series_cont .series_cont_box li a .box_logo {
            height: 60px;
            font-size: 16px;
            margin: 0 15px;
            font-weight: 500;
            padding: 8px 0px; } }
        .series .series_cont .series_cont_box li a .box_logo img {
          max-height: 100%;
          max-width: 100%;
          width: auto;
          height: auto;
          object-fit: contain; }
.series .target_age_cont .target_age_cont_box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 15px; }
  @media screen and (max-width: 768px) {
    .series .target_age_cont .target_age_cont_box {
      gap: unset; } }
  .series .target_age_cont .target_age_cont_box li {
    width: 32.3%; }
    @media screen and (max-width: 768px) {
      .series .target_age_cont .target_age_cont_box li {
        width: 31%;
        margin: 0 1% 2%; } }
    .series .target_age_cont .target_age_cont_box li a {
      display: block;
      background: #fff;
      border: 2px solid #372114;
      border-radius: 10px;
      padding: 20px 20px 20px 25px;
      position: relative;
      font-size: 18px;
      font-weight: 500;
      transition: all 0.3s ease;
      color: #372114; }
      @media screen and (max-width: 768px) {
        .series .target_age_cont .target_age_cont_box li a {
          border-radius: 10px;
          padding: 15px 10px;
          font-size: 15px;
          border: 1px solid #372114; } }
      .series .target_age_cont .target_age_cont_box li a::after {
        content: "";
        position: absolute;
        top: 0px;
        bottom: 0%;
        margin: auto 0;
        right: 10%;
        width: 10px;
        height: 10px;
        border-top: 3px solid #372114;
        border-right: 3px solid #372114;
        transform: rotate(45deg); }
        @media screen and (max-width: 768px) {
          .series .target_age_cont .target_age_cont_box li a::after {
            border-top: 1px solid #372114;
            border-right: 1px solid #372114;
            right: 8%;
            width: 8px;
            height: 8px; } }
      @media screen and (min-width: 769px) {
        .series .target_age_cont .target_age_cont_box li a:hover {
          background: #372114;
          color: #fff; }
          .series .target_age_cont .target_age_cont_box li a:hover::after {
            border-top: 2px solid #fff;
            border-right: 2px solid #fff; } }

/* ==========================================================================
brand
========================================================================== */
.brand {
  background: #fff;
  padding: 80px 0 0;
  margin-top: -50px; }
  @media screen and (max-width: 768px) {
    .brand {
      padding: 50px 0 30px; } }
  .brand .content_inner {
    padding: 0px 15px 80px; }
    @media screen and (max-width: 768px) {
      .brand .content_inner {
        padding: 0px 5% 20px; } }
  .brand .brand_cont {
    position: relative; }
    .brand .brand_cont .content_inner {
      max-width: 900px;
      padding: 0;
      position: relative; }
      @media screen and (max-width: 768px) {
        .brand .brand_cont .content_inner {
          padding: 0px 0% 30px; } }
      .brand .brand_cont .content_inner .brand_txt {
        padding: 30px 5%;
        width: 100%;
        overflow-x: hidden;
        position: absolute;
        top: 10%;
        left: 0;
        line-height: 2.5em;
        font-size: 20px; }
        @media screen and (max-width: 768px) {
          .brand .brand_cont .content_inner .brand_txt {
            padding: 10px 5%;
            width: 100%;
            overflow-x: hidden;
            font-size: 15px;
            line-height: 1.8em;
            top: 0; } }
  .brand .btn {
    width: 450px;
    margin: 0 auto 30px; }
    @media screen and (max-width: 768px) {
      .brand .btn {
        width: 90%;
        margin: 0 auto 30px; } }
  .brand .brand_attempt_box {
    margin-bottom: 30px; }
    .brand .brand_attempt_box a {
      width: 700px;
      margin: 0 auto;
      display: block;
      transition: transform 0.3s ease, box-shadow 0.3s ease; }
      @media screen and (min-width: 769px) {
        .brand .brand_attempt_box a:hover {
          transform: translateY(-8px); } }
      @media screen and (max-width: 768px) {
        .brand .brand_attempt_box a {
          width: 100%; } }
      .brand .brand_attempt_box a img {
        overflow: hidden;
        border: 1px solid #372114;
        border-radius: 30px; }
        @media screen and (max-width: 768px) {
          .brand .brand_attempt_box a img {
            border: 1px solid #372114;
            border-radius: 15px; } }
    .brand .brand_attempt_box:last-child {
      margin-bottom: 0px; }

/* ==========================================================================
news
========================================================================== */
.news .news_box_li {
  padding: 0 0px 0px 0;
  margin: 25px 0;
  border-bottom: 1px solid #372114;
  position: relative; }
  @media screen and (max-width: 768px) {
    .news .news_box_li {
      margin: 20px 0;
      font-size: 18px;
      border-bottom: 1px solid #37211463; } }
  .news .news_box_li::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0%;
    margin: auto 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #372114;
    border-right: 2px solid #372114;
    transform: rotate(45deg); }
    @media screen and (max-width: 768px) {
      .news .news_box_li::after {
        border-top: 1px solid #372114;
        border-right: 1px solid #372114;
        right: 1px;
        width: 8px;
        height: 8px; } }
  .news .news_box_li .data {
    font-weight: 500;
    font-size: 16px; }
    @media screen and (max-width: 768px) {
      .news .news_box_li .data {
        font-size: 13px; } }
  .news .news_box_li .txt {
    padding: 0 10px 20px 0; }
    @media screen and (max-width: 768px) {
      .news .news_box_li .txt {
        padding: 0 10px 20px 0; } }
.news .btn_more {
  text-align: right;
  position: relative;
  font-size: 16px; }
  @media screen and (max-width: 768px) {
    .news .btn_more {
      font-size: 14px; } }
  .news .btn_more::after {
    content: "";
    position: absolute;
    top: 0px;
    bottom: 0%;
    margin: auto 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #372114;
    border-right: 2px solid #372114;
    transform: rotate(45deg); }
    @media screen and (max-width: 768px) {
      .news .btn_more::after {
        border-top: 1px solid #372114;
        border-right: 1px solid #372114;
        right: 1px;
        width: 8px;
        height: 8px; } }
  .news .btn_more a {
    padding-right: 30px; }
.news .news_cont .news_cont_tab .news_cont_tab_box {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-content: space-between;
  width: 800px;
  margin: 0 auto 40px; }
  @media screen and (max-width: 768px) {
    .news .news_cont .news_cont_tab .news_cont_tab_box {
      width: 100%; } }
  .news .news_cont .news_cont_tab .news_cont_tab_box li {
    width: 32%;
    padding: 20px 0px;
    margin: 0;
    background: #fff;
    color: #372114;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #372114;
    font-weight: 500;
    position: relative;
    cursor: pointer; }
    @media screen and (max-width: 768px) {
      .news .news_cont .news_cont_tab .news_cont_tab_box li {
        font-size: 13px;
        padding: 15px 2px;
        border: 1px solid #372114;
        border-radius: 10px; } }
    .news .news_cont .news_cont_tab .news_cont_tab_box li a {
      pointer-events: none;
      color: inherit;
      text-decoration: none; }
    @media screen and (min-width: 769px) {
      .news .news_cont .news_cont_tab .news_cont_tab_box li:hover {
        background: #372114;
        color: #fff; } }
  .news .news_cont .news_cont_tab .news_cont_tab_box .select {
    background: #372114;
    color: #fff; }
.news .news_important {
  padding: 50px 0 20px; }
  @media screen and (max-width: 768px) {
    .news .news_important {
      padding: 50px 0 40px; } }
  .news .news_important .cont_subttl {
    color: #de3b38;
    border-bottom: 2px solid #de3b38; }
    @media screen and (max-width: 768px) {
      .news .news_important .cont_subttl {
        border-bottom: 1px solid #de3b38; } }

/* ==========================================================================
footer
========================================================================== */
footer .content_inner {
  padding: 0px 5% 0px; }
  @media screen and (min-width: 769px) {
    footer .content_inner {
      padding: 20px 10px 20px; } }
footer .footer_nav_red_sp {
  background: #de3b38;
  color: #fff; }
  footer .footer_nav_red_sp .footer_nav_part {
    padding: 20px 0 10px;
    border-bottom: 1px solid #fff; }
    footer .footer_nav_red_sp .footer_nav_part .footer_nav_ttl {
      font-size: 16px;
      padding-bottom: 10px; }
      footer .footer_nav_red_sp .footer_nav_part .footer_nav_ttl a {
        display: block; }
    footer .footer_nav_red_sp .footer_nav_part .footer_nav_subttl {
      font-size: 14px;
      border-left: 2px solid #fff;
      padding-left: 5px;
      line-height: 1;
      margin: 5px 0 5px; }
    footer .footer_nav_red_sp .footer_nav_part .footer_list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-bottom: 10px; }
      footer .footer_nav_red_sp .footer_nav_part .footer_list li {
        width: 48.5%;
        border: #fff solid 1px;
        border-radius: 10px;
        margin: 5px 0 5px;
        position: relative; }
        footer .footer_nav_red_sp .footer_nav_part .footer_list li::after {
          content: "";
          position: absolute;
          top: 0px;
          bottom: 0%;
          margin: auto 0;
          right: 10px;
          width: 10px;
          height: 10px;
          border-top: 3px solid #fff;
          border-right: 3px solid #fff;
          transform: rotate(45deg); }
          @media screen and (max-width: 768px) {
            footer .footer_nav_red_sp .footer_nav_part .footer_list li::after {
              border-top: 1px solid #fff;
              border-right: 1px solid #fff;
              right: 10px;
              width: 8px;
              height: 8px; } }
        footer .footer_nav_red_sp .footer_nav_part .footer_list li a {
          display: block;
          padding: 10px 15px 10px 10px; }
    footer .footer_nav_red_sp .footer_nav_part .footer_list_solo li {
      width: 80% !important; }
  footer .footer_nav_red_sp .footer_nav_part_search {
    padding: 20px 0 20px;
    overflow: hidden; }
    footer .footer_nav_red_sp .footer_nav_part_search .dropdown_inner {
      width: 100%;
      overflow: hidden; }
    footer .footer_nav_red_sp .footer_nav_part_search .search_box {
      width: 100% !important;
      overflow: hidden; }
      footer .footer_nav_red_sp .footer_nav_part_search .search_box * {
        max-width: 100% !important;
        box-sizing: border-box !important; }
    @media screen and (max-width: 768px) {
      footer .footer_nav_red_sp .footer_nav_part_search .gsib_b {
        height: 40px;
        width: 35px;
        padding: 4px 4px 4px 0; } }
  footer .footer_nav_red_sp .footer_nav_part:last-child {
    border-bottom: none; }
  footer .footer_nav_red_sp .footer_nav_arrow {
    position: relative; }
    footer .footer_nav_red_sp .footer_nav_arrow::after {
      content: "";
      position: absolute;
      top: 0px;
      bottom: 0%;
      margin: auto 0;
      right: 10px;
      width: 10px;
      height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: rotate(45deg); }
      @media screen and (max-width: 768px) {
        footer .footer_nav_red_sp .footer_nav_arrow::after {
          border-top: 1px solid #fff;
          border-right: 1px solid #fff;
          right: 10px;
          width: 8px;
          height: 8px; } }
footer .footer_nav_red_pc {
  background: #de3b38;
  color: #fff; }
  footer .footer_nav_red_pc p {
    line-height: 2; }
  footer .footer_nav_red_pc .footer-right-trigger {
    cursor: pointer;
    position: relative;
    padding-right: 30px; }
    footer .footer_nav_red_pc .footer-right-trigger::after, footer .footer_nav_red_pc .footer-right-trigger::before {
      content: "";
      position: absolute;
      top: 40%;
      right: 10px;
      width: 16px;
      height: 3px;
      background: #fff;
      transition: transform 0.3s ease;
      transform: translateY(-50%); }
    footer .footer_nav_red_pc .footer-right-trigger::before {
      transform: translateY(-50%) rotate(90deg); }
    footer .footer_nav_red_pc .footer-right-trigger.is-active::before {
      transform: translateY(-50%) rotate(0deg); }
  footer .footer_nav_red_pc .footer_nav_accordion.footer_nav_arrow::after {
    display: none; }
  footer .footer_nav_red_pc .footer_nav_part_flex {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px; }
    footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_left {
      width: 40%; }
    footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right {
      width: 55%;
      display: none;
      position: relative; }
      footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right.is-active {
        display: block; }
      footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right .footer_nav_part {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        border-bottom: none;
        padding: 0; }
        footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right .footer_nav_part.is-active {
          opacity: 1;
          transform: translateY(0);
          pointer-events: auto; }
        footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right .footer_nav_part .footer_list_solo li {
          width: 350px !important; }
      footer .footer_nav_red_pc .footer_nav_part_flex .footer_nav_part_right .footer_nav_04 {
        border-bottom: none; }
  footer .footer_nav_red_pc .footer_nav_part {
    padding: 20px 0 10px;
    border-bottom: 1px solid #fff; }
    footer .footer_nav_red_pc .footer_nav_part .footer_nav_ttl {
      font-size: 16px;
      padding-bottom: 10px; }
      footer .footer_nav_red_pc .footer_nav_part .footer_nav_ttl a {
        display: block; }
    footer .footer_nav_red_pc .footer_nav_part .footer_nav_subttl {
      font-size: 14px;
      border-left: 2px solid #fff;
      padding-left: 5px;
      line-height: 1;
      margin: 5px 0 5px; }
    footer .footer_nav_red_pc .footer_nav_part .footer_list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-bottom: 10px; }
      footer .footer_nav_red_pc .footer_nav_part .footer_list li {
        width: 48.5%;
        border: #fff solid 1px;
        border-radius: 10px;
        margin: 5px 0 5px;
        position: relative; }
        footer .footer_nav_red_pc .footer_nav_part .footer_list li::after {
          content: "";
          position: absolute;
          top: 0px;
          bottom: 0%;
          margin: auto 0;
          right: 10px;
          width: 10px;
          height: 10px;
          border-top: 3px solid #fff;
          border-right: 3px solid #fff;
          transform: rotate(45deg); }
          @media screen and (max-width: 768px) {
            footer .footer_nav_red_pc .footer_nav_part .footer_list li::after {
              border-top: 1px solid #fff;
              border-right: 1px solid #fff;
              right: 10px;
              width: 8px;
              height: 8px; } }
        footer .footer_nav_red_pc .footer_nav_part .footer_list li a {
          display: block;
          padding: 10px 15px 10px 10px; }
  footer .footer_nav_red_pc .footer_nav_part:last-child {
    border-bottom: none; }
  footer .footer_nav_red_pc .footer_nav_arrow {
    position: relative; }
    footer .footer_nav_red_pc .footer_nav_arrow::after {
      content: "";
      position: absolute;
      top: 0px;
      bottom: 0%;
      margin: auto 0;
      right: 10px;
      width: 10px;
      height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: rotate(45deg); }
      @media screen and (max-width: 768px) {
        footer .footer_nav_red_pc .footer_nav_arrow::after {
          border-top: 1px solid #fff;
          border-right: 1px solid #fff;
          right: 10px;
          width: 8px;
          height: 8px; } }
footer .footer_nav_white {
  padding: 20px 0; }
  footer .footer_nav_white .footer_nav_bottom_list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    text-align: center;
    justify-content: start;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      footer .footer_nav_white .footer_nav_bottom_list {
        justify-content: space-between;
        text-align: start;
        width: 100%; } }
    footer .footer_nav_white .footer_nav_bottom_list li {
      width: 33%;
      margin: 10px 0;
      font-size: 15px; }
      @media screen and (max-width: 768px) {
        footer .footer_nav_white .footer_nav_bottom_list li {
          font-size: 12px;
          width: 49.5%; } }
  footer .footer_nav_white .footer_sns_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
    width: 20%;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      footer .footer_nav_white .footer_sns_list {
        width: 40%; } }
    footer .footer_nav_white .footer_sns_list li {
      width: 45%;
      margin: 10px 0;
      font-size: 15px; }
      @media screen and (max-width: 768px) {
        footer .footer_nav_white .footer_sns_list li {
          font-size: 13px; } }
  footer .footer_nav_white .footer_copy {
    text-align: center;
    font-size: 13px; }

/* ==========================================================================
footer アコーディオン
========================================================================== */
.accordion_trigger {
  cursor: pointer;
  position: relative;
  padding-right: 30px; }
  .accordion_trigger::after, .accordion_trigger::before {
    content: "";
    position: absolute;
    top: 35%;
    right: 10px;
    width: 16px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s ease; }
    @media screen and (max-width: 768px) {
      .accordion_trigger::after, .accordion_trigger::before {
        width: 14px; } }
  .accordion_trigger::after {
    transform: translateY(-50%); }
  .accordion_trigger::before {
    transform: translateY(-50%) rotate(90deg); }
  .accordion_trigger.open::before {
    transform: translateY(-50%) rotate(0deg); }

.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease; }

/* ==========================================================================
nav-overlay
========================================================================== */
.nav-overlay {
  position: fixed;
  top: 62px;
  right: 0;
  width: 95%;
  height: 80vh;
  background: #de3b38;
  color: #fff;
  transform: translateX(100%);
  transition: transform .6s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0 0 0 40px; }
  .nav-overlay.active {
    transform: translateX(0); }
  .nav-overlay .nav-overlay__content {
    padding: 10px 20px 10px 30px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
  .nav-overlay .nav-overlay__inner {
    max-width: 1030px;
    margin: 0 auto; }
  .nav-overlay .footer_nav_part {
    padding: 20px 0 10px;
    border-bottom: 1px solid #fff; }
    .nav-overlay .footer_nav_part:last-child {
      border-bottom: none; }
    .nav-overlay .footer_nav_part .footer_nav_ttl {
      font-size: 16px;
      padding-bottom: 10px;
      color: #fff; }
      .nav-overlay .footer_nav_part .footer_nav_ttl a {
        color: #fff;
        text-decoration: none;
        display: block; }
    .nav-overlay .footer_nav_part .footer_nav_subttl {
      font-size: 14px;
      border-left: 2px solid #fff;
      padding-left: 5px;
      line-height: 1;
      margin: 5px 0 5px;
      color: #fff; }
    .nav-overlay .footer_nav_part .footer_list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      padding-bottom: 10px; }
      .nav-overlay .footer_nav_part .footer_list li {
        width: 48.5%;
        border: #fff solid 1px;
        border-radius: 10px;
        padding: 10px 15px 10px 10px;
        margin: 5px 0 5px;
        position: relative; }
        .nav-overlay .footer_nav_part .footer_list li a {
          color: #fff;
          text-decoration: none;
          display: block; }
        .nav-overlay .footer_nav_part .footer_list li::after {
          content: "";
          position: absolute;
          top: 0px;
          bottom: 0%;
          margin: auto 0;
          right: 10px;
          width: 10px;
          height: 10px;
          border-top: 3px solid #fff;
          border-right: 3px solid #fff;
          transform: rotate(45deg); }
          @media screen and (max-width: 768px) {
            .nav-overlay .footer_nav_part .footer_list li::after {
              border-top: 1px solid #fff;
              border-right: 1px solid #fff;
              right: 10px;
              width: 8px;
              height: 8px; } }
    .nav-overlay .footer_nav_part .footer_list_solo li {
      width: 100% !important; }
  .nav-overlay .footer_nav_arrow {
    position: relative; }
    .nav-overlay .footer_nav_arrow::after {
      content: "";
      position: absolute;
      top: 0px;
      bottom: 0%;
      margin: auto 0;
      right: 10px;
      width: 10px;
      height: 10px;
      border-top: 3px solid #fff;
      border-right: 3px solid #fff;
      transform: rotate(45deg); }
      @media screen and (max-width: 768px) {
        .nav-overlay .footer_nav_arrow::after {
          border-top: 1px solid #fff;
          border-right: 1px solid #fff;
          right: 10px;
          width: 8px;
          height: 8px; } }
  .nav-overlay .footer_nav_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px; }
    .nav-overlay .footer_nav_flex .footer_nav_ttl {
      width: 48.5%;
      border: #fff solid 1px;
      border-radius: 10px;
      padding: 10px 15px 10px 10px;
      margin: 5px 0 5px;
      position: relative;
      text-align: center; }

/* ==========================================================================
PC Header Navigation
========================================================================== */
@media screen and (max-width: 768px) {
  .header_nav.pc {
    display: none; } }
.header_nav.pc .header_nav_list {
  display: flex;
  align-items: center;
  gap: 0; }
  .header_nav.pc .header_nav_list > li {
    position: relative;
    font-size: 16px; }
    .header_nav.pc .header_nav_list > li > a {
      display: flex;
      align-items: center;
      padding: 4px 10px;
      text-decoration: none;
      white-space: nowrap;
      transition: color 0.3s ease;
      font-weight: 500; }
      .header_nav.pc .header_nav_list > li > a:hover {
        color: #de3b38; }
    .header_nav.pc .header_nav_list > li .nav_arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 15px;
      height: 15px;
      background: #de3b38;
      border-radius: 50%;
      margin-left: 6px;
      position: relative;
      transition: transform 0.3s ease; }
      .header_nav.pc .header_nav_list > li .nav_arrow::after {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-right: 1.5px solid #fff;
        border-bottom: 1.5px solid #fff;
        transform: rotate(45deg);
        margin-top: -2px;
        transition: transform 0.3s ease; }
      .header_nav.pc .header_nav_list > li .nav_arrow.is-open::after {
        transform: rotate(-135deg);
        margin-top: 2px; }
    .header_nav.pc .header_nav_list > li .dropdown_menu {
      position: absolute;
      top: 140%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 900px;
      background: #de3b38;
      border-radius: 0 0 15px 15px;
      color: #fff;
      padding: 30px 30px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 100; }
      .header_nav.pc .header_nav_list > li .dropdown_menu.is-open {
        opacity: 1;
        visibility: visible; }
      .header_nav.pc .header_nav_list > li .dropdown_menu::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 16px 16px 16px;
        border-color: transparent transparent #de3b38 transparent;
        z-index: 1; }
      .header_nav.pc .header_nav_list > li .dropdown_menu::after {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent; }
      .header_nav.pc .header_nav_list > li .dropdown_menu.align-left {
        left: 0;
        transform: translateX(0); }
        .header_nav.pc .header_nav_list > li .dropdown_menu.align-left::before {
          left: 40px;
          transform: translateX(0); }
      .header_nav.pc .header_nav_list > li .dropdown_menu.align-right {
        left: auto;
        right: 0;
        transform: translateX(0); }
        .header_nav.pc .header_nav_list > li .dropdown_menu.align-right::before {
          left: auto;
          right: 40px;
          transform: translateX(0); }
      .header_nav.pc .header_nav_list > li .dropdown_menu.align-viewport {
        left: auto;
        right: auto;
        transform: none; }
        .header_nav.pc .header_nav_list > li .dropdown_menu.align-viewport::before {
          display: none; }
    .header_nav.pc .header_nav_list > li .dropdown_inner {
      display: flex;
      gap: 30px; }
    .header_nav.pc .header_nav_list > li .dropdown_col:first-child {
      flex: 1;
      padding-right: 30px;
      border-right: 1px solid #fff; }
    .header_nav.pc .header_nav_list > li .dropdown_col:last-child {
      width: 220px;
      flex-shrink: 0;
      padding-left: 0px; }
    .header_nav.pc .header_nav_list > li .dropdown_subttl {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      padding-left: 10px;
      border-left: 4px solid #fff;
      margin-bottom: 15px; }
    .header_nav.pc .header_nav_list > li .dropdown_list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px; }
      .header_nav.pc .header_nav_list > li .dropdown_list li {
        width: 49%;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        position: relative; }
        .header_nav.pc .header_nav_list > li .dropdown_list li a {
          display: flex;
          align-items: center;
          padding: 0;
          font-size: 16px;
          text-decoration: none;
          transition: opacity 0.3s ease;
          color: #000;
          font-weight: 500;
          padding: 10px 20px 10px 10px; }
          .header_nav.pc .header_nav_list > li .dropdown_list li a:hover {
            opacity: 0.8; }
          .header_nav.pc .header_nav_list > li .dropdown_list li a img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            flex-shrink: 0;
            border-radius: 10px; }
          .header_nav.pc .header_nav_list > li .dropdown_list li a p {
            padding: 8px 25px 8px 10px;
            font-size: 16px;
            line-height: 1.3;
            font-weight: 500;
            color: #000; }
        .header_nav.pc .header_nav_list > li .dropdown_list li::after {
          content: "";
          position: absolute;
          top: 50%;
          right: 20px;
          width: 6px;
          height: 6px;
          border-top: 1.5px solid #de3b38;
          border-right: 1.5px solid #de3b38;
          transform: translateY(-50%) rotate(45deg); }
    .header_nav.pc .header_nav_list > li .dropdown_list_2 {
      display: block; }
      .header_nav.pc .header_nav_list > li .dropdown_list_2 li {
        width: 100%;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        padding: 10px 20px 10px 30px;
        margin-bottom: 10px; }
    .header_nav.pc .header_nav_list > li .dropdown_inner3 {
      display: block; }
      .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_3 {
        display: flex;
        justify-content: space-between; }
        .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_3 li {
          width: 24%; }
          .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_3 li a {
            text-align: center;
            display: block; }
      .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_4 {
        display: flex;
        justify-content: space-between; }
        .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_4 li {
          width: 28%; }
          .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_4 li a {
            text-align: center;
            display: block; }
          .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_4 li:first-child {
            width: 38%; }
      .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_subttl li {
        width: 28%;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        padding-left: 10px;
        border-left: 4px solid #fff;
        margin-bottom: 15px; }
        .header_nav.pc .header_nav_list > li .dropdown_inner3 .dropdown_list_subttl li:first-child {
          border-left: none;
          width: 38%; }

.dropdown_col:last-child .dropdown_list li {
  width: 100%; }
  .dropdown_col:last-child .dropdown_list li a {
    padding: 10px 25px 10px 15px; }

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

.nav_btn > a {
  border: 2px solid #de3b38;
  border-radius: 30px;
  padding: 6px 20px;
  font-size: 14px;
  margin-left: 6px;
  transition: all 0.3s ease;
  color: #de3b38; }
  .nav_btn > a:hover {
    background: #de3b38;
    border-color: #de3b38;
    color: #fff !important; }

.dropdown_menu_search {
  min-width: 600px !important; }
  @media screen and (max-width: 768px) {
    .dropdown_menu_search {
      min-width: 100% !important;
      width: 100% !important;
      position: static !important;
      transform: none !important;
      padding: 10px 0 0 !important;
      border-radius: 0 !important;
      background: transparent !important;
      opacity: 1 !important;
      visibility: visible !important; } }

.search_box {
  width: 100% !important; }
  .search_box .gsc-search-box-tools {
    width: 100% !important;
    table-layout: fixed !important; }
  .search_box .gsc-search-box-tools td.gsc-search-box {
    width: 100% !important; }
  .search_box .gsc-control-cse {
    background: transparent !important;
    border: none !important;
    padding: 0 !important; }
  .search_box .gsc-search-box {
    margin-bottom: 0 !important;
    margin: 0 !important; }
    @media screen and (max-width: 768px) {
      .search_box .gsc-search-box {
        margin: 0;
        max-width: fit-content; } }
  .search_box .gsc-input {
    padding: 0 !important;
    font-size: 16px !important; }
    .search_box .gsc-input .gsc-input-box {
      border: none !important;
      border-radius: 10px !important; }
  .search_box .gsc-search-button-v2 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #4285f4 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0 !important;
    cursor: pointer;
    width: 70px !important;
    height: 44px !important;
    margin: 0 0 0 15px !important; }
    @media screen and (max-width: 768px) {
      .search_box .gsc-search-button-v2 {
        width: 55px !important;
        height: 43px !important;
        margin: 0 0 0 10px !important; } }
    .search_box .gsc-search-button-v2 svg {
      fill: #fff !important;
      width: 20px !important;
      height: 20px !important; }
      @media screen and (max-width: 768px) {
        .search_box .gsc-search-button-v2 svg {
          width: 18px !important;
          height: 18px !important; } }
    .search_box .gsc-search-button-v2:hover {
      opacity: 0.8; }
  .search_box .gsib_a {
    background-image: none;
    background-position: left 0px center !important;
    padding: 4px 10px 4px 20px;
    border-radius: 0 8px 8px 0 !important; }
    @media screen and (max-width: 768px) {
      .search_box .gsib_a {
        padding: 4px 10px 4px 16px; } }
  .search_box .gsib_b {
    box-sizing: content-box;
    height: 36px;
    width: 48px;
    padding: 4px 4px 4px 0; }
    @media screen and (max-width: 768px) {
      .search_box .gsib_b {
        height: 35px;
        width: 34px; } }
  .search_box .gsc-control-cse .gsc-table-result {
    font-family: inherit; }
  .search_box td.gsc-search-button {
    display: table-cell !important;
    width: 80px !important; }
    @media screen and (max-width: 768px) {
      .search_box td.gsc-search-button {
        width: 60px !important; } }

.gsib_a {
  background-image: none;
  background-position: left 0px center !important;
  padding: 4px 10px 4px 20px;
  border-radius: 0 8px 8px 0 !important; }

.gsc-modal-background-image-visible {
  opacity: 0.8; }

.gsc-result-info,
.gsc-orderby-label {
  color: #fff !important; }

.gsc-results .gsc-cursor-page {
  padding: 2px 5px;
  border-radius: 5px; }

.gcsc-more-maybe-branding-root .gcsc-find-more-on-google-text,
.gcsc-more-maybe-branding-root .gcsc-find-more-on-google-query {
  color: #fff !important; }
.gcsc-more-maybe-branding-root .gcsc-find-more-on-google-magnifier path {
  fill: #fff !important; }

.gcsc-find-more-on-google-branding .gcsc-branding-text,
.gcsc-find-more-on-google-branding a {
  color: #fff !important; }

.gsc-control-cse .gsc-option-selector {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'><path d='M5.25 7.5L9 11.25L12.75 7.5H5.25Z' fill='%23ffffff'/></svg>") center no-repeat !important; }

/* ==========================================================================
TOPへ戻るボタン
========================================================================== */
.btn_totop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease; }
  @media screen and (max-width: 768px) {
    .btn_totop {
      bottom: 20px;
      right: 15px; } }
  .btn_totop.show {
    opacity: 1;
    visibility: visible; }
  .btn_totop.is-stop {
    position: absolute;
    bottom: auto; }
  .btn_totop a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #de3b38;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.3s ease; }
    @media screen and (max-width: 768px) {
      .btn_totop a {
        width: 55px;
        height: 55px; } }
    @media screen and (min-width: 769px) {
      .btn_totop a:hover {
        opacity: 0.8; } }
  .btn_totop .btn_totop_arrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 14px solid #fff;
    margin-bottom: 8px; }
    @media screen and (max-width: 768px) {
      .btn_totop .btn_totop_arrow {
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 8px solid #fff; } }
  .btn_totop .btn_totop_txt {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1; }
    @media screen and (max-width: 768px) {
      .btn_totop .btn_totop_txt {
        font-size: 11px; } }

/* ==========================================================================
Search List
========================================================================== */
.searchlist {
  padding-top: 80px; }
  @media screen and (max-width: 768px) {
    .searchlist {
      padding-top: 70px; } }

.gsc-control-cse {
  border-radius: 20px !important; }
  @media screen and (max-width: 768px) {
    .gsc-control-cse {
      border-radius: 15px !important; } }

.gsc-wrapper {
  max-width: 100% !important; }
