@charset "UTF-8";
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,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  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;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
  cursor: pointer;
}

picture,
figure {
  display: block;
}

img {
  width: 100%;
  height: 100%;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  word-break: break-all;
  color: #333333;
  font-family: "Zen Kaku Gothic New", serif;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  xl-PC
  ----------------------------------------------- */
@media screen and (min-width: 2001px) {
  html {
    font-size: 1rem;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 75rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
.zenkaku {
  font-family: "Zen Kaku Gothic New", serif;
  font-style: normal;
}

/*==============================================================================
animation
============================================================================= */
@media screen and (max-width: 767px) {
  .scroll_up {
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    opacity: 0;
  }
  .scroll_up.on {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .scroll_up {
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    opacity: 0;
  }
  .scroll_up.on {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*==============================================================================
header
============================================================================= */
@media screen and (max-width: 767px) {
  .header-menu {
    position: fixed;
    top: 0.375rem;
    right: 0;
    width: 100%;
    z-index: 1500;
    width: 6.125rem;
  }
  .header .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin: auto;
    width: 43.75rem;
    background: #f0ede6;
    -webkit-box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1000;
    padding: 7.375rem 0 3.375rem 4.375rem;
  }
  .header .mobile-menu.open {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    height: 100vh;
  }
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 5rem;
    height: 5rem;
    z-index: 1000;
    background: #333;
    border-radius: 50%;
  }
  .header .hamburger span {
    display: block;
    width: 2.1875rem;
    height: 0.25rem;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 100vmax;
  }
  .header .hamburger span:nth-child(1) {
    top: 39%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .header .hamburger span:nth-child(2) {
    bottom: 39%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .header .hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
  }
  .header .hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 45%;
  }
  .header .nav-list li a {
    text-decoration: none;
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: bold;
    padding: 2.3125rem 0;
  }
  .header .nav-list li a.small {
    font-size: 2.5rem;
    margin: 0 0 0 0.625rem;
    padding: 1.6875rem 0;
  }
  .header .nav-list li a.small02 {
    font-size: 2.25rem;
    margin: 0 0 0 3.9375rem;
    padding: 3.5rem 0;
    position: relative;
  }
  .header .nav-list li a.small02::before {
    content: "";
    position: absolute;
    top: 3.625rem;
    left: -3.75rem;
    background: url(../images/follow-icon01.webp) no-repeat center/cover;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header .logo {
    width: 21.375rem;
    margin: 7.5rem 0 0 8.125rem;
  }
  .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .header .overlay.open {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header-menu {
    position: fixed;
    top: 1.1875rem;
    right: 1.25rem;
    width: 100%;
    z-index: 1500;
    width: 3.75rem;
  }
  .header .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin: auto;
    width: 46.875rem;
    background: #f0ede6;
    -webkit-box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    height: 100vh;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1000;
    padding: 4.4375rem 0 4.375rem 5.625rem;
  }
  .header .mobile-menu.open {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 3.75rem;
    height: 3.75rem;
    z-index: 1000;
    background: #333;
    border-radius: 50%;
  }
  .header .hamburger span {
    display: block;
    width: 1.5625rem;
    height: 0.1875rem;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header .hamburger span:nth-child(1) {
    top: 38%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .header .hamburger span:nth-child(2) {
    bottom: 38%;
    left: 0;
    right: 0;
    margin: auto;
  }
  .header .hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 50%;
  }
  .header .hamburger.open span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 45%;
  }
  .header .nav-list li a {
    text-decoration: none;
    font-size: 1.625rem;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: bold;
    padding: 1.3125rem 0;
  }
  .header .nav-list li a.small {
    font-size: 1.5rem;
    margin: 0 0 0 1.5625rem;
    padding: 1.0625rem 0;
  }
  .header .nav-list li a.small02 {
    font-size: 1.25rem;
    padding: 2.375rem 0 2.375rem 2.375rem;
    position: relative;
  }
  .header .nav-list li a.small02::before {
    content: "";
    position: absolute;
    top: 2.3125rem;
    left: 0;
    background: url(../images/follow-icon01.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .header .logo {
    width: 12.8125rem;
    margin: 5.125rem 0 0 0;
  }
  .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  .header .overlay.open {
    display: block;
  }
}
/*==============================================================================
header
============================================================================= */
@media screen and (max-width: 767px) {
  .header-bg {
    background: #f0ede6;
  }
  .header-inner {
    width: 41.875rem;
    margin: 0 auto;
  }
  .header-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 1.875rem;
  }
  .header-left {
    background: #fff;
    border-radius: 0 0 1.25rem 1.25rem;
    width: 18.875rem;
    padding: 1.375rem 0 0.5rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
  }
  .header-logo {
    width: 15rem;
    margin: 0 auto;
  }
  .header-btn {
    width: 16.25rem;
    border-radius: 100vmax;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #e83820;
    border: #fff solid 0.25rem;
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    color: #fff;
    font-weight: 500;
    padding: 1.375rem 0 1.375rem 1.875rem;
    position: relative;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
    margin: 0.5rem 0 0 0;
  }
  .header-btn::before {
    content: "";
    position: absolute;
    top: 1.125rem;
    right: 1.125rem;
    background: url(../images/header-arrow02.webp) no-repeat center/cover;
    width: 2.125rem;
    height: 2.125rem;
  }
  .header .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.375rem;
    letter-spacing: 0.06em;
    color: #444444;
    margin: 1.1875rem 0 0 0;
  }
  .header .breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 0.625rem;
    color: #444444;
  }
  .header .breadcrumb-item a {
    text-decoration: none;
    width: 1.3125rem;
  }
  .header .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  .header .breadcrumb-item:last-child {
    color: #444444;
    pointer-events: none;
    cursor: default;
  }
}
@media screen and (min-width: 768px) {
  .header-bg {
    background: #f0ede6;
  }
  .header-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-left {
    background: #fff;
    border-radius: 0 0 1.25rem 1.25rem;
    width: 16.4375rem;
    padding: 1.1875rem 0 0.5625rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
  }
  .header-logo {
    width: 13.625rem;
    margin: 0 auto;
  }
  .header-btn {
    width: 18.75rem;
    border-radius: 100vmax;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #e83820;
    border: #fff solid 0.25rem;
    font-size: 1.3975rem;
    letter-spacing: 0.02em;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding: 1.25rem 0 1.1875rem;
    position: relative;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
    margin: 0.9375rem 0 0 0;
  }
  .header-btn::before {
    content: "";
    position: absolute;
    top: 0.8125rem;
    right: 0.9375rem;
    background: url(../images/header-arrow02.webp) no-repeat center/cover;
    width: 2.1875rem;
    height: 2.1875rem;
  }
  .header .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    color: #444444;
    margin: 1.0625rem 0 0 0;
  }
  .header .breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin: 0 0.625rem;
    color: #444444;
  }
  .header .breadcrumb-item a {
    text-decoration: none;
    width: 0.8125rem;
  }
  .header .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  .header .breadcrumb-item:last-child {
    color: #444444;
    pointer-events: none;
    cursor: default;
  }
}
/*==============================================================================
kv
============================================================================= */
@media screen and (max-width: 767px) {
  .kv-bg {
    background: #f0ede6;
    padding: 0 0 8.25rem;
  }
  .kv-inner {
    width: 40.625rem;
    margin: 0 auto;
  }
  .kv-left-box {
    position: relative;
  }
  .kv-logo01 {
    width: 15.5rem;
    position: absolute;
    bottom: -1rem;
    right: -3.125rem;
  }
  .kv-ttl01 {
    font-size: 6.25rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 0.83;
    margin: -0.3125rem 0 0 0;
  }
  .kv-ttl01 .small {
    font-size: 1.375rem;
    letter-spacing: -0.02em;
  }
  .kv-img01 {
    width: 41.5rem;
    margin: 4.5625rem 0 0 -0.625rem;
  }
  .kv-ttl02 {
    font-size: 3.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.35;
    margin: 3.5625rem 0 0 0;
  }
  .kv-ttl03 {
    font-size: 2.375rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.9;
    color: #004190;
    margin: 2.25rem 0 0 0;
  }
  .kv-btns {
    margin: 4.1875rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem 0;
  }
  .kv-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 100vmax;
    font-size: 2.25rem;
    letter-spacing: 0.1em;
    color: #333333;
    font-weight: bold;
    padding: 2.625rem 0 2.625rem 4.1875rem;
    position: relative;
    cursor: pointer;
  }
  .kv-btn .num {
    font-size: 3.125rem;
  }
  .kv-btn::before {
    content: "";
    background: url(../images/movie-btn.webp) no-repeat center/cover;
    width: 2.875rem;
    height: 2.875rem;
    position: absolute;
    top: 2.1875rem;
    right: 3.125rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .kv-btn.small {
    font-size: 2rem;
    line-height: 1.31;
    padding: 1.125rem 0 1.125rem 4.1875rem;
  }
  .kv-btn.num {
    padding: 1.9375rem 0 2.375rem 4.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .kv-bg {
    background: #f0ede6;
    padding: 1.75rem 0 5.1875rem 0;
  }
  .kv-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .kv-left-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0 1.8125rem;
  }
  .kv-logo01 {
    width: 9.375rem;
  }
  .kv-ttl01 {
    font-size: 4.0625rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 0.88;
  }
  .kv-ttl01 .small {
    font-size: 0.875rem;
    letter-spacing: -0.02em;
  }
  .kv-ttl02 {
    font-size: 2.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.32;
    margin: 5.4375rem 0 0 0;
  }
  .kv-ttl03 {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.72;
    color: #004190;
    margin: 2.5rem 0 0 0;
  }
  .kv-img01 {
    width: 38.125rem;
    margin: 3.875rem 0 0 0;
  }
  .kv-btns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 0.3125rem;
    margin: 4.5rem auto 0;
  }
  .kv-btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 100vmax;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: #333333;
    font-weight: bold;
    text-align: center;
    padding: 1.3125rem 1.25rem 1.3125rem 0;
    position: relative;
    cursor: pointer;
  }
  .kv-btn .num {
    font-size: 1.5625rem;
  }
  .kv-btn::before {
    content: "";
    background: url(../images/movie-btn.webp) no-repeat center/cover;
    width: 1.5625rem;
    height: 1.5625rem;
    position: absolute;
    top: 0.9375rem;
    right: 1.25rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .kv-btn.small-pc {
    font-size: 1rem;
  }
  .kv-btn.num {
    padding: 0.9375rem 1.25rem 0.9375rem 0;
  }
}
/*==============================================================================
story
============================================================================= */
@media screen and (max-width: 767px) {
  .story-bg {
    background: #e8e5db;
    padding: 4.5rem 0 18.4375rem 0;
  }
  .story-inner {
    width: 40.625rem;
    margin: 0 auto;
  }
  .story-ttl01 {
    font-size: 3.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.18;
    color: #004190;
  }
  .story-ttl01 .small {
    font-size: 1.375rem;
    letter-spacing: -0.02em;
  }
  .story-ttl02 {
    font-size: 2.125rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.52;
    color: #004190;
    margin: 2.5rem 0 0 0;
  }
  .story-txt01 {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin: 2.1875rem 0 0 0;
  }
  .story-item01 {
    width: 4rem;
    position: absolute;
    top: 0.625rem;
    right: 1.25rem;
  }
  .story-movie {
    width: 41.1875rem;
    margin: 3.5625rem auto 0;
  }
  .story .movie-item {
    position: relative;
    cursor: pointer;
  }
  .story .movie-item:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .story .movie-item-ttl {
    position: absolute;
    bottom: 9.7%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 700;
    line-height: 1;
  }
  .story .movie-item-ttl.ttl02 {
    color: #e83820;
  }
  .story .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2000;
  }
  .story .modal-content {
    position: relative;
    background-color: #fff;
    padding: 1.5625rem;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
  }
  .story #modal-iframe-container {
    text-align: center;
  }
  .story iframe {
    width: 37.5rem;
    height: 21.2rem;
    margin: 0 auto;
  }
  .story .close-btn {
    position: absolute;
    top: 0.125rem;
    right: 0.125rem;
    font-size: 1.75rem;
    color: #333;
    cursor: pointer;
  }
  .story-ttl03 {
    font-size: 3rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin: 5.625rem 0 0 0;
  }
  .story .swiper-container {
    width: 100%;
    padding-bottom: 1.25rem;
    margin: 3rem 0 0 0;
    position: relative;
  }
  .story .swiper-button-prev, .story .swiper-button-next {
    background: url(../images/movie-btn.webp) no-repeat center/cover;
    width: 4.25rem;
    height: 4.25rem;
    position: absolute;
    top: 51.8rem;
  }
  .story .swiper-button-prev {
    left: 0.625rem;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .story .swiper-button-next {
    right: 29.5rem;
  }
  .story .swiper-button-next:after, .story .swiper-button-prev:after {
    display: none;
  }
  .story-item {
    display: block;
    background: #fff;
    padding: 5rem 2.8125rem 3.25rem;
    border-radius: 1.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: auto;
  }
  .story-item-logo01 {
    width: 22.25rem;
    margin: 0 auto;
  }
  .story-item-logo02 {
    width: 22.25rem;
    margin: 0 auto;
  }
  .story-item-logo03 {
    width: 22.25rem;
    margin: 0 auto;
  }
  .story-item-txt01 {
    font-size: 2.75rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    text-align: center;
    margin: 2.8125rem auto 0;
  }
  .story-item-txt02 {
    font-size: 1.75rem;
    letter-spacing: 0;
    line-height: 1.8;
    margin: 2.5625rem auto 0;
  }
  .story-item-link01, .story-item-link03 {
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: #fff;
    font-weight: bold;
    background: #333;
    border-radius: 100vmax;
    padding: 1.5rem 0 1.5rem 10rem;
    margin: 2.0625rem auto 0;
  }
  .story-item-link03 {
    margin: 5.25rem auto 0;
  }
  .story-item-link02 {
    font-size: 1.75rem;
    letter-spacing: -0.06em;
    color: #fff;
    font-weight: bold;
    background: #333;
    border-radius: 100vmax;
    padding: 1.625rem 0 1.5625rem 1.875rem;
    margin: 1.3125rem auto 0;
  }
  .story-item-link01, .story-item-link02, .story-item-link03 {
    position: relative;
  }
  .story-item-link01::before, .story-item-link02::before, .story-item-link03::before {
    content: "";
    position: absolute;
    top: 1.375rem;
    right: 1.25rem;
    background: url(../images/info-arrow.webp) no-repeat center/cover;
    width: 2.3125rem;
    height: 2.3125rem;
  }
  @-webkit-keyframes flip {
    0% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
    10% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    50% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    60% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
    100% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
  }
  @keyframes flip {
    0% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
    10% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    50% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    60% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
    100% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
  }
  .story .scroll-animation.scroll-animation01.animate {
    -webkit-animation: flip 2s ease-in-out infinite;
            animation: flip 2s ease-in-out infinite;
  }
}
@media screen and (min-width: 768px) {
  .story-bg {
    background: #e8e5db;
    padding: 4.3125rem 0 31.875rem 0;
  }
  .story-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .story-ttl01 {
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.1;
    color: #004190;
  }
  .story-ttl01 .small {
    font-size: 0.875rem;
    letter-spacing: -0.02em;
  }
  .story-ttl02 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.8;
    color: #004190;
    margin: 1.625rem 0 0 0;
  }
  .story-txt01 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 2.25;
    margin: 1.1875rem 0 0 0;
    width: 35rem;
  }
  .story-item01 {
    width: 2.875rem;
    position: absolute;
    top: 2.1875rem;
    right: 1.25rem;
  }
  .story-movie {
    width: 30.4375rem;
    margin: 8.125rem 0 0 0;
  }
  .story .movie-item {
    position: relative;
    cursor: pointer;
  }
  .story .movie-item:hover {
    opacity: 0.8;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .story .movie-item-ttl {
    position: absolute;
    bottom: 9.7%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.375rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 700;
    line-height: 1;
  }
  .story .movie-item-ttl.ttl02 {
    color: #e83820;
  }
  .story .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 2000;
  }
  .story .modal-content {
    position: relative;
    background-color: #fff;
    padding: 1.5625rem;
    border-radius: 0.625rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
  }
  .story #modal-iframe-container {
    text-align: center;
  }
  .story iframe {
    width: 59.375rem;
    height: 33.5rem;
    margin: 0 auto;
  }
  .story .close-btn {
    position: absolute;
    top: 0.1875rem;
    right: 0.1875rem;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
  }
  .story-ttl03 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin: 6.25rem 0 0 0;
  }
  .story-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.25rem;
    margin: 2rem auto 0;
  }
  .story-item {
    display: block;
    background: #fff;
    padding: 3.5rem 1.875rem 2.5625rem;
    border-radius: 1.25rem;
  }
  .story-item-logo01 {
    width: 15.125rem;
    margin: 0 auto;
  }
  .story-item-logo02 {
    width: 15rem;
    margin: 0 auto;
  }
  .story-item-logo03 {
    width: 15.25rem;
    margin: 0 auto;
  }
  .story-item-txt01 {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    text-align: center;
    margin: 2.5rem auto 0;
  }
  .story-item-txt02 {
    font-size: 1rem;
    line-height: 2.14;
    margin: 2rem auto 0;
  }
  .story-item-link01, .story-item-link02, .story-item-link03 {
    width: 18.75rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .story-item-link01, .story-item-link03 {
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    color: #fff;
    font-weight: bold;
    background: #333;
    border-radius: 100vmax;
    padding: 1rem 0 1rem 6.25rem;
    margin: 1.5625rem auto 0;
  }
  .story-item-link03 {
    margin: 3.3125rem auto 0;
  }
  .story-item-link02 {
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #fff;
    font-weight: bold;
    background: #333;
    border-radius: 100vmax;
    padding: 1.0625rem 0 1.0625rem 1.875rem;
    margin: 0.625rem auto 0;
  }
  .story-item-link01, .story-item-link02, .story-item-link03 {
    position: relative;
  }
  .story-item-link01::before, .story-item-link02::before, .story-item-link03::before {
    content: "";
    position: absolute;
    top: 0.8125rem;
    right: 0.8125rem;
    background: url(../images/info-arrow.webp) no-repeat center/cover;
    width: 1.625rem;
    height: 1.625rem;
  }
  @-webkit-keyframes flip {
    0% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
    10% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    50% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    60% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
    100% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
  }
  @keyframes flip {
    0% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
    10% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    50% {
      -webkit-transform: scaleX(-1);
              transform: scaleX(-1);
    }
    60% {
      -webkit-transform: scaleX(1);
              transform: scaleX(1);
    }
    100% {
      -webkit-transform: translate(0rem, 0rem);
              transform: translate(0rem, 0rem);
    }
  }
  .story .scroll-animation.scroll-animation01.animate {
    -webkit-animation: flip 2s ease-in-out infinite;
            animation: flip 2s ease-in-out infinite;
  }
}
/*==============================================================================
point
============================================================================= */
@media screen and (max-width: 767px) {
  .point-bg {
    border-radius: 6.25rem;
    background: #fff;
    position: relative;
    z-index: 1;
    margin: -5rem 0 0 0;
  }
  .point-inner {
    width: 40.625rem;
    margin: 0 auto;
    position: relative;
    padding: 7.4375rem 0 4.6875rem 0;
  }
  .point-head {
    font-size: 3.125rem;
    letter-spacing: 0.08em;
    font-weight: bold;
  }
  .point-head .small {
    font-size: 1.375rem;
    letter-spacing: -0.04em;
    padding-left: 1.25rem;
  }
  .point-ttl01 {
    font-size: 4.125rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e83820;
    margin: 0.4375rem 0 0 0;
  }
  .point-ttl01 .num {
    font-size: 5.5rem;
  }
  .point-item01 {
    width: 2.875rem;
    position: absolute;
    top: 11.25rem;
    left: 31.25rem;
    -webkit-animation-name: decoSwing;
            animation-name: decoSwing;
    -webkit-animation-duration: 2400ms;
            animation-duration: 2400ms;
    -webkit-animation-timing-function: steps(2, end);
            animation-timing-function: steps(2, end);
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  @-webkit-keyframes decoSwing {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(25deg);
              transform: rotate(25deg);
    }
  }
  @keyframes decoSwing {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(25deg);
              transform: rotate(25deg);
    }
  }
  .point-item {
    padding: 4.8125rem 0 2.8125rem;
  }
  .point-item-num01 {
    width: 1.875rem;
  }
  .point-item-num02 {
    width: 2.375rem;
  }
  .point-item-num03 {
    width: 2.375rem;
  }
  .point-item-ttl {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #e83820;
    line-height: 1.15;
    margin: 2.0625rem 0 0 0;
  }
  .point-item-ttl .big {
    font-size: 3.75rem;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .point-item-txt {
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin: 1.625rem 0 0 0;
  }
  .point-item-txt.diff {
    letter-spacing: 0;
  }
  .point-item-img01 {
    width: 40.6875rem;
    margin: 3rem 0 0 -0.1875rem;
  }
  .point-item-img02 {
    width: 40.6875rem;
    margin: 3.0625rem 0 0 -0.1875rem;
  }
  .point-item-img03 {
    width: 41.25rem;
    margin: 2.9375rem 0 0 -0.3125rem;
  }
  .point-item:nth-of-type(2) {
    padding: 3.375rem 0 2.8125rem;
  }
  .point-item:nth-of-type(3) {
    padding: 3.4375rem 0 2.8125rem;
  }
  .point-item:last-child {
    border-bottom: none;
    padding: 3.4375rem 0 3.125rem;
  }
  .point-head-img {
    width: 40.625rem;
    margin: 4.8125rem auto 0;
  }
  .point-steps {
    background: #faf9f5;
    border: 0.3125rem solid #004190;
    border-radius: 1.5625rem;
    margin: 2.9375rem auto 0;
    padding: 2.3125rem 1.875rem 2.25rem 1.875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 1.3125rem;
  }
  .point-step {
    position: relative;
  }
  .point-step-txt {
    font-size: 1.5rem;
    letter-spacing: -0.08em;
    line-height: 1.41;
    color: #004190;
    text-align: center;
    font-weight: 500;
    margin: 0.625rem 0 0;
  }
  .point-step::before {
    content: "";
    position: absolute;
    top: 6.875rem;
    right: -1.0625rem;
    background: url(../images/ugoclo/point-item.webp) no-repeat center/cover;
    width: 0.875rem;
    height: 1.5rem;
  }
  .point-step:last-child::before {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .point-bg {
    padding: 6rem 0 3.875rem 0;
    width: 90rem;
    border-radius: 6.25rem;
    margin: -22.5rem auto 0;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  .point-inner {
    position: relative;
  }
  .point-head {
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
  }
  .point-head .small {
    font-size: 0.875rem;
    letter-spacing: -0.04em;
    padding-left: 0.9375rem;
  }
  .point-ttl01 {
    font-size: 3.125rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e83820;
    margin-top: -0.25rem;
  }
  .point-ttl01 .num {
    font-size: 4.375rem;
  }
  .point-item01 {
    width: 1.9375rem;
    position: absolute;
    top: 2.5rem;
    left: 24.375rem;
    -webkit-animation-name: decoSwing;
            animation-name: decoSwing;
    -webkit-animation-duration: 2400ms;
            animation-duration: 2400ms;
    -webkit-animation-timing-function: steps(2, end);
            animation-timing-function: steps(2, end);
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
  @-webkit-keyframes decoSwing {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(25deg);
              transform: rotate(25deg);
    }
  }
  @keyframes decoSwing {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(25deg);
              transform: rotate(25deg);
    }
  }
  .point-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3.375rem 0 3.125rem;
    border-bottom: 0.0625rem solid #ececec;
  }
  .point-item-num01 {
    width: 1.25rem;
  }
  .point-item-num02 {
    width: 1.4375rem;
  }
  .point-item-num03 {
    width: 1.5625rem;
  }
  .point-item-ttl {
    font-size: 1.625rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #e83820;
    line-height: 1.25;
    margin: 0.875rem 0 0 0;
  }
  .point-item-ttl .big {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
    font-weight: 900;
  }
  .point-item-txt {
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 2;
    width: 41.875rem;
    margin: 0.4375rem 0 0 0;
  }
  .point-item-img01 {
    width: 30.8125rem;
    margin: 2.375rem 0 0 0;
  }
  .point-item-img02 {
    width: 30.625rem;
    margin: 2.625rem 0 0 0;
  }
  .point-item-img03 {
    width: 30.8125rem;
    margin: 2.5625rem 0 0 0;
  }
  .point-item:nth-of-type(2) {
    padding: 3.1875rem 0 2.875rem;
  }
  .point-item:nth-of-type(3) {
    padding: 3.1875rem 0 2.625rem;
  }
  .point-item:last-child {
    border-bottom: none;
    padding: 3.1875rem 0 2.5rem;
  }
  .point-steps {
    width: 30.8125rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #faf9f5;
    border: 0.1875rem solid #004190;
    border-radius: 1.5625rem;
    padding: 1.9375rem 1.875rem 1.75rem 1.875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2.25rem;
    margin: 2.6875rem 0 0 0;
  }
  .point-step {
    position: relative;
  }
  .point-step-txt {
    font-size: 0.9375rem;
    letter-spacing: -0.04em;
    line-height: 1.4;
    color: #004190;
    text-align: center;
    font-weight: 500;
    margin: 0.5rem 0 0;
  }
  .point-step::before {
    content: "";
    position: absolute;
    top: 4.375rem;
    right: -1.5625rem;
    background: url(../images/ugoclo/point-item.webp) no-repeat center/cover;
    width: 0.625rem;
    height: 0.9375rem;
  }
  .point-step:last-child::before {
    display: none;
  }
}
/*==============================================================================
case
============================================================================= */
@media screen and (max-width: 767px) {
  .case-bg {
    background: #f0ede6;
    padding: 13.75rem 0 4.375rem 0;
    margin-top: -5rem;
  }
  .case-inner {
    width: 40.625rem;
    margin: 0 auto;
  }
  .case-ttl01 {
    font-size: 3.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.33;
    color: #004190;
  }
  .case-ttl02 {
    font-size: 2.125rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.76;
    color: #004190;
    margin: 3.125rem 0 0;
  }
  .case-slide {
    position: relative;
    margin: 4.0625rem auto 0;
  }
  .case .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 100vmax;
  }
  .case .tab {
    margin-bottom: -0.625rem;
  }
  .case .tab img {
    display: block;
    height: auto;
    margin: 1.875rem auto 0;
  }
  .case .tab01 img {
    width: 5.8125rem;
  }
  .case .tab02 img {
    width: 5.9375rem;
  }
  .case .tab03 img {
    width: 6.1875rem;
  }
  .case .tab04 img {
    width: 6.125rem;
  }
  .case .tab.active img {
    width: 10.3125rem;
    margin: 0 auto;
  }
  .case .swiper-container02 {
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .case .swiper-slide {
    background: #fff;
    margin: 3.75rem auto 0;
    border-radius: 1.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.0625rem 2.5rem 3.125rem 2.5rem;
  }
  .case-slide {
    position: relative;
  }
  .case-slide-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 1.5625rem;
  }
  .case-slide-box-img01 {
    width: 10rem;
  }
  .case-slide-box-txt01 {
    font-size: 1.625rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.5;
  }
  .case-slide-box-txt01 .big {
    font-size: 1.75rem;
    font-weight: bold;
  }
  .case-slide-ttl01 {
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: #004190;
    font-weight: bold;
    line-height: 1.62;
    margin: 1.25rem 0 0;
  }
  .case-slide-txt01 {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
    margin: 1.875rem 0 0;
  }
  .case-slide-img01 {
    width: 28.75rem;
    margin: 1.875rem auto 0;
  }
  .case-slide-num01 {
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 7.9375rem;
  }
  .case-slide-num02 {
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 8.4375rem;
  }
  .case-slide-num03 {
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 8.4375rem;
  }
  .case-slide-num04 {
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 8.4375rem;
  }
}
@media screen and (min-width: 768px) {
  .case-bg {
    background: #f0ede6;
    padding: 98.9rem 0 9.5rem 0;
    margin-top: -89rem;
  }
  .case-inner {
    margin: 0 auto;
    margin-top: -5rem;
    padding-top: 5rem;
  }
  .case-ttl01 {
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #004190;
  }
  .case-ttl02 {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #004190;
    margin: 2.9375rem 0 0;
  }
  .case-slide {
    position: relative;
    margin: 3.75rem auto 0;
  }
  .case .tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 100vmax;
  }
  .case .tab {
    margin-bottom: -0.625rem;
    cursor: pointer;
  }
  .case .tab img {
    display: block;
    height: auto;
    margin: 1rem auto 0;
  }
  .case .tab01 img {
    width: 3.75rem;
  }
  .case .tab02 img {
    width: 3.9375rem;
  }
  .case .tab03 img {
    width: 3.9375rem;
  }
  .case .tab04 img {
    width: 3.9375rem;
  }
  .case .tab.active img {
    width: 18.75rem;
    margin: 0 auto;
  }
  .case .swiper-container02 {
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .case .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background: #fff;
    margin: 3.625rem auto 0;
    border-radius: 1.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.875rem 10.625rem 1.75rem 6.25rem;
  }
  .case-slide {
    position: relative;
  }
  .case-slide-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 1.25rem;
    margin: 0.75rem 0 0;
  }
  .case-slide-box-img01 {
    width: 7.5rem;
  }
  .case-slide-box-txt01 {
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-weight: 500;
    line-height: 1.8;
  }
  .case-slide-box-txt01 .big {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    font-weight: bold;
  }
  .case-slide-ttl01 {
    font-size: 1.625rem;
    letter-spacing: 0.04em;
    color: #004190;
    font-weight: bold;
    line-height: 1.73;
    margin: 0.9375rem 0 0;
  }
  .case-slide-txt01 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 2;
    margin: 0.9375rem 0 0;
  }
  .case-slide-img01 {
    width: 17.5rem;
  }
  .case-slide-num01 {
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 5.25rem;
  }
  .case-slide-num02 {
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 5.4375rem;
  }
  .case-slide-num03 {
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 5.4375rem;
  }
  .case-slide-num04 {
    position: absolute;
    top: -0.625rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 5.4375rem;
  }
}
/*==============================================================================
thought
============================================================================= */
@media screen and (max-width: 767px) {
  .thought-bg {
    background: #f0ede6;
    padding: 9.6875rem 0 14.0625rem 0;
    margin-top: -5rem;
  }
  .thought-bg02 {
    background: #e8e5db;
    border-radius: 0 6.25rem 0 0;
    padding: 6.4375rem 0 8.125rem 0;
  }
  .thought-inner02 {
    width: 40.625rem;
    margin: 0 auto;
  }
  .thought-ttl01 {
    font-size: 2.875rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    line-height: 1.58;
    color: #009a53;
  }
  .thought-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .thought-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0 3.75rem;
    margin: 2rem 0 0 0;
  }
  .thought-img01 {
    width: 16.0625rem;
  }
  .thought-txt02 {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.75;
    margin: 2.5rem 0 0;
  }
  .thought-txt02 .bold {
    font-weight: 700;
  }
  .thought-txt02.diff {
    margin: 1.4375rem 0 0;
  }
  .thought-txt01 {
    font-size: 1.75rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
    margin: 3.4375rem 0 0 0;
  }
  .thought-txt01.diff {
    margin: 1.1875rem 0 0 0;
    letter-spacing: 0.05em;
  }
  .thought-txt01.diff02 {
    margin: 1.5625rem 0 0 0;
  }
}
@media screen and (min-width: 768px) {
  .thought-bg {
    background: #f0ede6;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .thought-inner {
    position: relative;
    z-index: 1;
    width: 90rem;
    margin: 0 auto;
  }
  .thought-bg02 {
    width: 100%;
    margin: 0 calc(50% - 50vw);
    padding: 0.0625rem calc(50vw - 50%);
    background: #e8e5db;
    margin-right: auto;
    padding-right: 0rem;
    height: 38.4375rem;
    border-radius: 0 6.25rem 0 0;
  }
  .thought-inner02 {
    width: 75rem;
    margin: 0 auto;
  }
  .thought-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 5.6875rem 0 0 0;
  }
  .thought-ttl01 {
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.5;
    color: #009a53;
  }
  .thought-txt01 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    line-height: 2;
    margin: 1.6875rem 0 0 0;
    width: 52.5rem;
  }
  .thought-txt01.diff {
    margin: 0.5rem 0 0 0;
  }
  .thought-txt01.diff02 {
    margin: 1.375rem 0 0 0;
  }
  .thought-right {
    margin: 0 3.75rem 0 0;
  }
  .thought-img01 {
    width: 12.0625rem;
    margin: 0.75rem 0 0 0;
  }
  .thought-txt02 {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    line-height: 1.77;
    margin: 0.75rem 0 0;
  }
  .thought-txt02 .bold {
    font-weight: 700;
  }
}
/*==============================================================================
info
============================================================================= */
@media screen and (max-width: 767px) {
  .info-bg {
    background: #e8e5db;
    margin-top: -14rem;
  }
  .info-bg02 {
    background: #f0ede6;
    padding: 7.5rem 0 7.5625rem 0;
    border-radius: 6.25rem 0 0 0;
  }
  .info-inner02 {
    width: 40.625rem;
    margin: 0 auto;
  }
  .info-ttl01 {
    font-size: 3.75rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #333;
  }
  .info-box-img {
    width: 41.875rem;
    margin: 1.5625rem auto 0;
  }
  .info-box-ttl {
    font-size: 2.125rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-align: center;
    margin: 1.4375rem auto 0;
  }
  .info-item-btn {
    position: relative;
    font-size: 2.125rem;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background: #e83820;
    border: #fff solid 0.25rem;
    width: 40.625rem;
    border-radius: 100vmax;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 2.4375rem 0 2.375rem 0.625rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
    margin: 1.8125rem 0 0 0;
  }
  .info-item-btn::before {
    content: "";
    position: absolute;
    top: 1.5625rem;
    right: 1.5625rem;
    background: url(../images/header-arrow02.webp) no-repeat center/cover;
    width: 4.125rem;
    height: 4.125rem;
  }
  .info-top {
    display: table;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 700;
    border-bottom: 0.125rem solid #b8b6b1;
    color: #333;
    margin: 6.0625rem auto 0;
  }
  .info-insta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 1.25rem;
    margin: 1.6875rem auto 0;
  }
  .info-insta-ttl {
    font-size: 2rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-align: center;
    margin: 5rem auto 0;
  }
  .info-insta-img {
    width: 3.125rem;
  }
  .info-insta-txt {
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    font-weight: bold;
    text-align: center;
    color: #333333;
  }
}
@media screen and (min-width: 768px) {
  .info-bg {
    background: #e8e5db;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .info-inner {
    position: relative;
    z-index: 1;
    width: 90rem;
    margin: 0 auto;
  }
  .info-bg02 {
    width: 100%;
    margin: 0 calc(50% - 50vw);
    padding: 0.0625rem calc(50vw - 50%);
    background: #f0ede6;
    margin-left: auto;
    padding-left: 0rem;
    height: 42.3125rem;
    border-radius: 6.25rem 0 0 0;
  }
  .info-inner02 {
    width: 75rem;
    margin: 0 auto;
  }
  .info-ttl01 {
    font-size: 2.75rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #333;
    margin: 6.1875rem 0 0 0;
  }
  .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 6.5625rem;
    margin: 0.8125rem 0 0 0;
  }
  .info-box-img {
    width: 41.25rem;
  }
  .info-box-ttl {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    text-align: center;
  }
  .info-box-right {
    width: 22.9375rem;
  }
  .info-item-btn {
    position: relative;
    font-size: 1.375rem;
    letter-spacing: 0.06em;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background: #e83820;
    border: #fff solid 0.25rem;
    width: 22.9375rem;
    border-radius: 100vmax;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 1.1875rem 0 1.1875rem 0.625rem;
    -webkit-box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
            box-shadow: 0 0.25rem 0.5rem 0 rgba(131, 131, 131, 0.2);
    margin: 1.3125rem 0 0 0;
  }
  .info-item-btn::before {
    content: "";
    position: absolute;
    top: 0.8125rem;
    right: 0.9375rem;
    background: url(../images/header-arrow02.webp) no-repeat center/cover;
    width: 2.25rem;
    height: 2.25rem;
  }
  .info-top {
    display: table;
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 700;
    border-bottom: 0.0625rem solid #b8b6b1;
    color: #333;
    margin: 2.375rem auto 0;
  }
  .info-insta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 0.625rem;
    margin: 0.625rem auto 0;
  }
  .info-insta-ttl {
    font-size: 1.125rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    text-align: center;
    margin: 4.3125rem auto 0;
  }
  .info-insta-img {
    width: 1.9375rem;
  }
  .info-insta-txt {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    font-weight: bold;
    text-align: center;
    color: #333333;
  }
}
/*==============================================================================
Footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer-bg {
    background: #fff;
    padding: 4.1875rem 0 3.5625rem;
  }
  .footer-logo {
    width: 25.9375rem;
    margin: 0 auto;
  }
  .footer-txt01 {
    display: table;
    margin: 2.3125rem auto 0;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 500;
    color: #333;
    border-bottom: 0.0625rem solid #999999;
  }
  .footer-copy {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 3.25rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .footer-bg {
    background: #fff;
    padding: 2.6875rem 0 2.4375rem;
  }
  .footer-logo {
    width: 17rem;
    margin: 0 auto;
  }
  .footer-txt01 {
    display: table;
    margin: 1.1875rem auto 0;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-align: center;
    font-weight: 500;
    color: #333;
    border-bottom: 0.0625rem solid #999999;
  }
  .footer-copy {
    font-size: 0.625rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 1.4375rem auto 0;
  }
}