@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

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

img {
  height: auto;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.5;
  width: 100%;
  background-color: #fff;
}

.body_wrap {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: calc(1360px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1120px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(960px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: var(--color_main);
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):hover {
    opacity: 0.5;
  }
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}
.margin_section:first-child {
  margin-top: 0;
}
.margin_section:last-child {
  margin-bottom: 0;
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 959px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 959px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 959px) {
  .fs_19 {
    font-size: 1.125rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 959px) {
  .fs_20 {
    font-size: 1.125rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 959px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 959px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 959px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 959px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 959px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 959px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 959px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 959px) {
  .pc_only {
    display: none;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}

.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*==========
Effect
==========*/
:root {
  --headerHeight: 100px;
  --paddingSection: 100px;
  --paddingLR: 20px;
  --color_main: #C60043;
  --color_sub: #3E5F8B;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 60px;
    --paddingSection: 64px;
  }
}

/*========== 汎用オブジェクト ==========*/
.ff_mincho {
  font-family: "Zen Old Mincho", serif;
}

.ff_dm {
  font-family: "DM Sans";
}

.map_wrap {
  aspect-ratio: 737/446;
  max-width: 737px;
}
.map_wrap:not(:first-child) {
  margin-top: 1rem;
}
.map_wrap iframe {
  width: 100%;
  height: 100%;
}

/*==========
汎用デザイン
==========*/
.banner_safety {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 220px;
  padding: 1.25rem 1.5rem;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}
.banner_safety::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2B2E2F;
  opacity: 0.6;
  z-index: -1;
}
.banner_safety::after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/cover url("../img/common/banner_safety.jpg") no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.banner_safety .icon_arrow {
  width: 3.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #F5F0F0;
  margin: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.banner_safety .icon_arrow::before, .banner_safety .icon_arrow::after {
  content: "";
  width: 0.625rem;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow.svg") no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.banner_safety .icon_arrow::before {
  background-image: url("../img/common/icon_arrow-white.svg");
  z-index: 1;
}
.banner_safety .text_area {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.banner_safety .title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  margin-bottom: auto;
}
.banner_safety .title::before {
  content: attr(data-en);
  font-family: "DM Sans";
  letter-spacing: 0.05em;
  font-size: 0.625em;
  font-weight: 100;
  display: block;
  line-height: 1;
}
.banner_safety .text {
  font-size: 0.9375rem;
}
@media screen and (min-width: 960px) {
  .banner_safety::after {
    transition: width 0.5s;
  }
  .banner_safety .icon_arrow {
    transition: background-color 0.5s, transform 0.5s;
  }
  .banner_safety .icon_arrow::after {
    transition: opacity 0.5s;
  }
  .banner_safety:hover::after {
    width: calc(100% + 2rem);
  }
  .banner_safety:hover:not([class^=btn_]) {
    opacity: 1;
  }
  .banner_safety:hover .icon_arrow {
    transform: scale(1.25);
    background-color: var(--color_main);
  }
  .banner_safety:hover .icon_arrow::after {
    opacity: 0;
  }
}
@media screen and (max-width: 959px) {
  .banner_safety {
    padding: calc(var(--paddingLR) / 1.5);
    height: 170px;
  }
  .banner_safety::after {
    background-image: url("../img/common/banner_safety-sp.jpg");
  }
  .banner_safety .title {
    font-size: 1.125rem;
  }
  .banner_safety .title::before {
    font-size: 0.75rem;
  }
  .banner_safety .text {
    font-size: 0.8125rem;
  }
  .banner_safety .icon_arrow {
    width: 2.5rem;
    margin-top: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .banner_safety .icon_arrow::before, .banner_safety .icon_arrow::after {
    width: 0.5em;
  }
}

.banner_uomangroup {
  display: block;
  gap: 1rem;
  height: 220px;
  padding: 2.5rem 2rem;
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
  position: relative;
  z-index: 1;
}
.banner_uomangroup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: right 2rem bottom 2.5rem/1.375em url("../img/common/icon_blank-white.svg") no-repeat #2B2E2F;
  opacity: 0.75;
  z-index: -1;
}
.banner_uomangroup::after {
  content: "";
  width: 100%;
  height: 100%;
  background: center/cover url("../img/child/restaurant/restaurant_banner_01-bg.jpg") no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.banner_uomangroup .row_title {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
}
.banner_uomangroup .logo_area {
  height: 100%;
}
.banner_uomangroup .logo_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.banner_uomangroup .title {
  font-size: 1.75rem;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (min-width: 960px) {
  .banner_uomangroup::after {
    transition: width 0.5s;
  }
  .banner_uomangroup .icon_arrow {
    transition: background-color 0.5s, transform 0.5s;
  }
  .banner_uomangroup .icon_arrow::after {
    transition: opacity 0.5s;
  }
  .banner_uomangroup:hover::after {
    width: calc(100% + 2rem);
  }
  .banner_uomangroup:hover:not([class^=btn_]) {
    opacity: 1;
  }
  .banner_uomangroup:hover .icon_arrow {
    transform: scale(1.25);
    background-color: var(--color_main);
  }
  .banner_uomangroup:hover .icon_arrow::after {
    opacity: 0;
  }
}
@media screen and (max-width: 959px) {
  .banner_uomangroup {
    padding: calc(var(--paddingLR) / 1.5);
    height: 144px;
  }
  .banner_uomangroup::before {
    background: right calc(var(--paddingLR) / 1.5) bottom calc(var(--paddingLR) / 1.5)/1em url("../img/common/icon_blank-white.svg") no-repeat #2B2E2F;
  }
  .banner_uomangroup .row_title {
    gap: 0.5rem;
  }
  .banner_uomangroup .logo_area {
    width: 20%;
  }
  .banner_uomangroup .title {
    font-size: 1.125rem;
  }
}

.layout_casestudy_slider .title_01 {
  text-align: center;
}
.layout_casestudy_slider .title_sub {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 4rem;
}
.layout_casestudy_slider .tab_btn {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.125rem;
  max-width: calc(100% - var(--paddingLR) * 2);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}
.layout_casestudy_slider .tab_btn > * {
  flex: 1;
  max-width: 400px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--color_tab);
  background-color: #fff;
  color: rgba(154, 154, 154, 0.5);
  border-radius: 5px;
  cursor: pointer;
}
.layout_casestudy_slider .tab_btn > *.active {
  background-color: var(--color_tab);
  border-color: var(--color_tab);
  color: #fff;
  pointer-events: none;
}
.layout_casestudy_slider .tab_btn > *.active p::after {
  opacity: 0.5;
}
@media screen and (min-width: 960px) {
  .layout_casestudy_slider .tab_btn > * {
    transition: color 0.5s;
  }
  .layout_casestudy_slider .tab_btn > *:hover {
    color: #9a9a9a;
  }
}
.layout_casestudy_slider .tab_btn p {
  line-height: 1.25;
}
.layout_casestudy_slider .tab_btn p::after {
  content: attr(data-en);
  font-size: 0.55em;
  font-weight: 200;
  display: block;
  text-align: center;
}
.layout_casestudy_slider .tab_btn a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.layout_casestudy_slider .tab_content[style*="--color_main"] .thumb_area .catch_area::after {
  background-image: url("../img/common/casestudy_slider-hover-arrow-red.svg");
}
.layout_casestudy_slider .tab_content[style*="--color_sub"] .thumb_area .catch_area::after {
  background-image: url("../img/common/casestudy_slider-hover-arrow-blue.svg");
}
.layout_casestudy_slider .tab_content[data-tab=tab_02] .list .logo_area .logo {
  aspect-ratio: 1/1;
  max-width: 100px;
  max-height: 100px;
}
.layout_casestudy_slider .list {
  margin-top: 2rem;
}
.layout_casestudy_slider .list > * {
  max-width: 320px;
}
.layout_casestudy_slider .list .thumb_area {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 320/225;
  position: relative;
}
.layout_casestudy_slider .list .thumb_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_casestudy_slider .list .thumb_area .label_area {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.625rem;
  font-weight: 500;
  z-index: 1;
  color: #fff;
  background-color: #2B2E2F;
  border-radius: 2px;
  padding: 0.625rem 0.75rem;
}
.layout_casestudy_slider .list .thumb_area .catch_area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color_tab);
  z-index: 2;
  padding: var(--paddingLR);
  opacity: 0;
}
.layout_casestudy_slider .list .thumb_area .catch_area::before {
  content: "";
  background-color: #fff;
  position: absolute;
  inset: 0;
  opacity: 0.92;
  z-index: -1;
}
.layout_casestudy_slider .list .thumb_area .catch_area::after {
  content: "";
  width: 2rem;
  aspect-ratio: 32/11;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-left: auto;
}
.layout_casestudy_slider .list .thumb_area .catch_area .catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}
.layout_casestudy_slider .list .text_area {
  margin-top: 1rem;
}
.layout_casestudy_slider .list .text_area:not(:has(.text_catch)) {
  min-height: 3.95em;
}
.layout_casestudy_slider .list .text_area .text {
  font-size: 0.875rem;
}
.layout_casestudy_slider .list .text_area .text_catch {
  font-size: 1.25rem;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
}
.layout_casestudy_slider .list .logo_area {
  margin-top: 1rem;
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 5px;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.layout_casestudy_slider .list .logo_area .logo {
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  aspect-ratio: 160/24;
  max-width: 160px;
  max-height: 24px;
}
.layout_casestudy_slider .list .logo_area .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.layout_casestudy_slider .list .logo_area .company {
  font-size: 0.6875rem;
  font-weight: 500;
  margin-top: 2px;
}
.layout_casestudy_slider .list a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .layout_casestudy_slider .list a .thumb_area img {
    transition: transform 0.5s;
  }
  .layout_casestudy_slider .list a .catch_area {
    transition: opacity 0.5s;
  }
  .layout_casestudy_slider .list a:hover {
    opacity: 1;
  }
  .layout_casestudy_slider .list a:hover .thumb_area img {
    transform: scale(1.05);
  }
  .layout_casestudy_slider .list a:hover .catch_area {
    opacity: 1;
  }
}
@media screen and (max-width: 959px) {
  .layout_casestudy_slider .title_sub {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }
  .layout_casestudy_slider .tab_btn {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }
  .layout_casestudy_slider .tab_btn > * {
    height: 45px;
  }
  .layout_casestudy_slider .tab_content[data-tab=tab_02] .list .logo_area .logo {
    max-width: 80px;
    max-height: 80px;
  }
  .layout_casestudy_slider .list {
    margin-top: 1.5rem;
  }
  .layout_casestudy_slider .list > * {
    width: 100%;
    max-width: 375px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .layout_casestudy_slider .list .thumb_area .label_area {
    padding: 0.325rem 0.75rem;
  }
  .layout_casestudy_slider .list .thumb_area .catch_area {
    display: none;
  }
  .layout_casestudy_slider .list .text_area {
    margin-top: 0.5rem;
  }
  .layout_casestudy_slider .list .text_area .text {
    font-size: 0.8125rem;
  }
  .layout_casestudy_slider .list .text_area .text_catch {
    font-size: 1rem;
  }
  .layout_casestudy_slider .list .logo_area {
    margin-top: 0.5rem;
  }
}

.layout_news .item:last-child .date_area {
  border-bottom: 1px solid var(--color_main);
}
.layout_news .item:last-child .category_area,
.layout_news .item:last-child .title_area {
  border-bottom: 1px solid rgba(198, 0, 66, 0.4);
}
.layout_news .item:not(:has(a)),
.layout_news .item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  min-height: 4.75rem;
  width: 100%;
}
.layout_news .item:not(:has(a)) > *,
.layout_news .item a > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.layout_news .date_area {
  font-weight: 500;
  padding: 0.5rem;
  color: var(--color_main);
  border-top: 1px solid var(--color_main);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.layout_news .list_category {
  font-size: 0.75rem;
}
.layout_news .list_category > * {
  background-color: #CECECE;
}
.layout_news .category_area,
.layout_news .title_area {
  border-top: 1px solid rgba(198, 0, 66, 0.4);
}
.layout_news .category_area {
  padding: 0.5rem 1.25rem;
}
.layout_news .title_area {
  flex: 1;
  padding: 0.5rem var(--paddingLR) 0.5rem 0;
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .layout_news .item:last-child .date_area,
.layout_news .item:last-child .category_area,
.layout_news .item:last-child .title_area {
    border-bottom: none;
  }
  .layout_news .item:not(:has(a)),
.layout_news .item a {
    flex-wrap: wrap;
    min-height: auto;
  }
  .layout_news .date_area {
    padding: 0.75rem 0.5rem 0.75rem 0;
    font-size: 0.625rem;
  }
  .layout_news .category_area {
    padding: 0.75rem 0.5rem;
    flex-grow: 1;
  }
  .layout_news .title_area {
    border-top: none;
    flex: 0 1 auto;
    width: 100%;
    padding: 0 0 0.75rem 0;
    font-size: 0.8125rem;
  }
}

/*==========
リスト
==========*/
.list_01 {
  display: grid;
  grid-template-columns: minmax(-webkit-max-content, 12.5rem) 1fr;
  grid-template-columns: minmax(max-content, 12.5rem) 1fr;
  font-size: 0.9375rem;
  line-height: 2;
}
.list_01 dt,
.list_01 dd {
  border-top: 1px solid var(--color_main);
  padding: 1.5rem 0;
}
.list_01 dt:last-of-type,
.list_01 dd:last-of-type {
  border-bottom: 1px solid var(--color_main);
}
.list_01 dt {
  font-weight: 500;
}
.list_01 dd {
  padding-left: 1em;
}
@media screen and (max-width: 959px) {
  .list_01 {
    font-size: 0.875rem;
    line-height: 1.75;
    grid-template-columns: 1fr;
  }
  .list_01 dt,
.list_01 dd {
    padding: 0.75rem 0;
  }
  .list_01 dt {
    padding-bottom: 0.25rem;
  }
  .list_01 dt:last-of-type {
    border-bottom: none;
  }
  .list_01 dd {
    padding-top: 0;
    padding-left: 1em;
    border-top: none;
  }
}

.list_category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--color_gray);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
}
.list_category a {
  text-decoration: none;
  color: inherit;
}
.list_category > * {
  background-color: #2B2E2F;
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  padding: 0.875em 1.25em 0.75em;
}
@media screen and (max-width: 959px) {
  .list_category {
    font-size: 0.625rem;
  }
}

.list_dots > * {
  padding-left: 0.75em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.list_dots > *::before {
  content: "・";
  position: absolute;
  left: 0;
}

/*==========
ボタン
==========*/
.btn_01 {
  font-size: 0.875rem;
  font-family: "DM Sans";
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.btn_01:not(:first-child) {
  margin-top: 3rem;
}
.btn_01::after {
  content: "";
  width: 5rem;
  aspect-ratio: 1/1;
  background: center/1em url("../img/common/icon_arrow.svg") no-repeat #F5F0F0;
  border-radius: 50%;
}
.btn_01.white {
  color: #fff;
}
@media screen and (min-width: 960px) {
  .btn_01::after {
    transition: transform 0.5s, background-color 0.5s;
  }
  .btn_01:hover::after {
    transform: scale(1.25);
  }
  .btn_01:hover:not(.white)::after {
    background-color: var(--color_main);
    background-image: url("../img/common/icon_arrow-white.svg");
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }
  .btn_01:not(:first-child) {
    margin-top: 1.5rem;
  }
  .btn_01::after {
    width: 2.5rem;
    background-size: 0.5rem;
  }
}

/*==========
タイトル
==========*/
.title_01 {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.title_01 .en, .title_01::before {
  content: attr(data-en);
  font-family: "DM Sans";
  letter-spacing: 0.05em;
  color: var(--color_main);
  font-size: 5rem;
  font-weight: 100;
  display: block;
  line-height: 1;
}
.title_01 .bg_black {
  background: linear-gradient(transparent 15%, #000 15%, #000 85%, transparent 85%);
  color: #fff;
}
@media screen and (max-width: 1279px) {
  .title_01 .en, .title_01::before {
    font-size: 4rem;
  }
}
@media screen and (max-width: 959px) {
  .title_01 {
    font-size: 0.8125rem;
  }
  .title_01 .en, .title_01::before {
    font-size: 3rem;
  }
}

.title_02 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.5rem;
  color: var(--color_main);
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 959px) {
  .title_02 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.title_03 {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-left: 0.75em;
  margin-bottom: 2.5rem;
}
.title_03::before {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1/1;
  background-color: var(--color_main);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.8125em;
  transform: translateY(-50%);
}
@media screen and (max-width: 959px) {
  .title_03 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  height: var(--headerHeight);
  display: flex;
  justify-content: space-between;
  padding-right: 2.5rem;
  transition: background-color 0.5s, -webkit-backdrop-filter 0.5s;
  transition: backdrop-filter 0.5s, background-color 0.5s;
  transition: backdrop-filter 0.5s, background-color 0.5s, -webkit-backdrop-filter 0.5s;
}
#header.bg, #header:has(#mv.text_white) {
  background-color: #fff;
}
#header.bg .list_header, #header:has(#mv.text_white) .list_header {
  color: #000;
}
#header .logo_area {
  width: 28%;
  max-width: 280px;
  height: 100%;
  padding: 1.5rem 2.5rem;
}
#header .logo_area a,
#header .logo_area h1 {
  display: block;
  height: 100%;
}
#header .logo_area img {
  max-width: 200px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .menu_area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-bottom: 10px;
}
#header .list_header {
  display: flex;
  gap: 1em 0.5em;
  color: #fff;
  font-size: 0.9375rem;
  margin-right: 5rem;
  transition: color 0.5s;
}
#header .list_header > * {
  position: relative;
}
#header .list_header > *:last-child .child_menu {
  left: auto;
  right: 0;
}
#header .list_header a {
  color: inherit;
  text-decoration: none;
}
#header .list_header > *:not(:has(a)), #header .list_header > * > a,
#header .list_header .parent {
  padding: 0.3125rem 1em;
}
#header .list_header .parent {
  cursor: pointer;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
#header .list_header .child_menu {
  display: none;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateY(100%);
  color: #000;
  white-space: nowrap;
  padding: var(--paddingLR);
}
#header .list_header .child {
  font-size: 0.875rem;
}
#header .list_header .child > * {
  padding-bottom: 0.75em;
  border-bottom: 1px dashed rgba(112, 112, 112, 0.1);
  padding-left: 1em;
  position: relative;
}
#header .list_header .child > *:not(:last-child) {
  margin-bottom: 0.75em;
}
#header .list_header .child > *::before {
  content: "-";
  color: var(--color_main);
  position: absolute;
  left: 0;
}
#header .list_header_02 {
  display: flex;
  justify-content: flex-end;
  gap: 2px;
  margin: 0.75rem 0;
}
#header .list_header_02 > *:not(:has(a)),
#header .list_header_02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
  background-color: var(--color_main);
  border: 1px solid var(--color_main);
  font-family: "DM Sans";
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
  padding: 0.125em 1em;
  min-width: 7.8125rem;
  border-radius: 5px;
}
@media screen and (min-width: 960px) {
  #header .list_header_02 a {
    transition: background-color 0.5s, color 0.5s;
  }
  #header .list_header_02 a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color_main);
  }
}
@media screen and (max-width: 1279px) {
  #header {
    padding-right: var(--paddingLR);
  }
  #header .logo_area {
    width: 25%;
    padding: var(--paddingLR);
  }
  #header .list_header {
    margin-right: 0;
  }
}
@media screen and (max-width: 959px) {
  #header {
    background-color: #fff;
  }
}

/*==========
ハンバーガーメニュー
==========*/
#hamburger_btn,
#hamburger_bg {
  display: none;
}

@media screen and (max-width: 959px) {
  #hamburger_btn {
    cursor: pointer;
    background-color: var(--color_main);
    color: #fff;
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    gap: 8px;
  }
  #hamburger_btn .bar {
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  #hamburger_btn .bar::before, #hamburger_btn .bar::after {
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 100px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
  }
  #hamburger_btn .bar::before {
    transform: translate(-50%, -50%);
  }
  #hamburger_btn .bar::after {
    transform: translate(-50%, -50%);
  }
  #hamburger_btn span {
    transition: opacity 0.5s;
    width: 24px;
    height: 2px;
    border-radius: 100px;
    background-color: #fff;
  }
  #hamburger_btn span:nth-child(3) {
    width: 14px;
  }
  #hamburger_btn .label {
    font-size: 9px;
    line-height: 1;
  }
}
@media screen and (max-width: 959px) and (min-width: 960px) {
  #hamburger_btn {
    transition: background-color 0.5s;
  }
  #hamburger_btn span {
    transition: width 0.5s, opacity 0.5s;
  }
  #hamburger_btn:hover {
    background-color: var(--color_gray_hover);
  }
  #hamburger_btn:hover span:nth-child(1) {
    width: 1.25rem;
  }
  #hamburger_btn:hover span:nth-child(3) {
    width: 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  #header {
    padding-right: 0;
    padding-bottom: 0;
  }
  #header .logo_area {
    width: 57%;
    max-width: 214px;
    padding: 1.125rem;
  }
  #header .menu_area {
    -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
    transition: -webkit-clip-path 0.5s;
    transition: clip-path 0.5s;
    transition: clip-path 0.5s, -webkit-clip-path 0.5s;
    position: absolute;
    top: var(--headerHeight);
    background-color: #fff;
    color: #000;
    padding: var(--paddingSection) var(--paddingLR);
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #header .lower {
    order: -1;
  }
  #header .list_header {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  #header .list_header > *:not(:has(a)), #header .list_header > * > a,
#header .list_header .parent {
    display: block;
    width: 100%;
    position: relative;
    padding-left: 1.5em;
  }
  #header .list_header > *:not(:has(a))::before, #header .list_header > *:not(:has(a))::after, #header .list_header > * > a::before, #header .list_header > * > a::after,
#header .list_header .parent::before,
#header .list_header .parent::after {
    content: "";
    width: 0.5em;
    height: 1px;
    background-color: var(--color_main);
    position: absolute;
    left: 0;
    top: calc(1em - 0.5px);
  }
  #header .list_header .parent::after {
    transform: rotate(90deg);
    transition: transform 0.5s;
  }
  #header .list_header .parent.open::after {
    transform: rotate(0deg);
  }
  #header .list_header .child_menu {
    position: static;
    transform: none;
    border: none;
    margin-left: 1em;
    width: 100%;
  }
  #header .list_header_02 {
    justify-content: center;
  }
  #header.open .menu_area {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  #header.open #hamburger_btn .bar::before, #header.open #hamburger_btn .bar::after {
    opacity: 1;
  }
  #header.open #hamburger_btn .bar::before {
    transform: translate(-50%, -50%) rotate(25deg);
  }
  #header.open #hamburger_btn .bar::after {
    transform: translate(-50%, -50%) rotate(-25deg);
  }
  #header.open #hamburger_btn span {
    opacity: 0;
  }
}
/*==========
フッター
==========*/
#footer .img_text {
  position: relative;
  margin-bottom: 1.5rem;
}
#footer .deco_01 {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#footer .deco_02 {
  width: calc(100% - 2.5rem);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}
#footer .flex {
  display: flex;
}
#footer .logo_area {
  width: 36%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--paddingLR);
}
#footer .logo_area .logo {
  width: 80%;
  max-width: 328px;
}
#footer .menu_area {
  padding-top: calc(var(--paddingSection) * 1.5);
  padding-bottom: 1.5rem;
  color: #fff;
  flex: 1;
  position: relative;
  z-index: 1;
}
#footer .menu_area::before, #footer .menu_area::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #E4005A;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}
#footer .menu_area::after {
  mix-blend-mode: multiply;
  background: center/contain url("../img/common/bg_noise.png");
  z-index: -9;
}
#footer .menu_area .inner {
  max-width: calc(760px + var(--paddingLR) * 2);
}
#footer .menu_area a {
  color: inherit;
  text-decoration: none;
}
#footer .menu_area .upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 5rem;
}
#footer .menu_area .upper .sp_col {
  display: contents;
}
@media screen and (max-width: 1279px) {
  #footer .menu_area .upper {
    gap: 1rem 2.5rem;
  }
}
@media screen and (max-width: 959px) {
  #footer .flex {
    flex-direction: column;
  }
  #footer .deco_02 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .logo_area {
    width: 100%;
  }
  #footer .logo_area .logo {
    max-width: 240px;
  }
  #footer .menu_area {
    padding-top: calc(var(--paddingSection) * 1);
  }
  #footer .menu_area .upper {
    gap: 1rem;
  }
  #footer .menu_area .upper > * {
    width: calc((100% - 1rem) / 2);
  }
  #footer .menu_area .upper .sp_col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.list_footer > * {
  padding-left: 1em;
  position: relative;
}
.list_footer > *:not(.child) {
  font-size: 0.9375rem;
  font-weight: 700;
}
.list_footer > *:not(.child)::before {
  content: "-";
  position: absolute;
  left: 0;
}
.list_footer > *:not(.child):not(:first-child) {
  margin-top: 1em;
}
.list_footer > *:not(.child):not(:last-child) {
  margin-bottom: 0.25em;
}
.list_footer > *.child {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .list_footer > *:not(.child) {
    font-size: 0.875rem;
  }
}

.list_footer_02 {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.list_footer_02 a {
  display: block;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 0.5rem;
  min-width: 120px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .list_footer_02 a {
    transition: background-color 0.5s, color 0.5s;
  }
  .list_footer_02 a:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color_main) !important;
  }
}
@media screen and (max-width: 959px) {
  .list_footer_02 {
    font-size: 0.8125rem;
  }
  .list_footer_02 > * {
    flex: 1;
  }
  .list_footer_02 a {
    min-width: auto;
  }
}

/*==========
コピーライト
==========*/
.copyrights {
  margin-top: 5rem;
  font-size: 0.625rem;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .copyrights {
    text-align: center;
    margin-top: var(--paddingSection);
  }
}

/*==========
PageToTop
==========*/