/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -webkit-tap-highlight-color: transparent;
    /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
    margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

address {
    font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: inherit;
    /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
    vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
    -webkit-appearance: none;
    /* 1 */
    -moz-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
    /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
}

[type=radio] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
    cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
    cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
    outline: auto;
}

select:disabled {
    opacity: inherit;
}

/**
 * Remove padding
 */
option {
    padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
    margin: 0;
    padding: 0;
    min-width: 0;
}

legend {
    padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
    outline-offset: -2px;
    /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
    cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
    outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
    border-color: inherit;
    /* 1 */
    border-collapse: collapse;
}

caption {
    text-align: left;
}

td,
th {
    vertical-align: top;
    padding: 0;
}

th {
    text-align: left;
    font-weight: bold;
}

@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url("../fonts/ZenKakuGothicNew-Regular.woff") format("woff"), url("./fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url("../fonts/ZenKakuGothicNew-Medium.woff") format("woff"), url("../fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Zen Kaku Gothic New";
    src: url("../fonts/ZenKakuGothicNew-Bold.woff") format("woff"), url("../fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Hina Mincho";
    src: url("../fonts/HinaMincho-Regular.woff") format("woff"), url("../fonts/HinaMincho-Regular.ttf") format("truetype");
}

:root {
    --vw: 1vw;
}

html {
    font-size: 62.5%;
}

@media screen and (max-width: 1366px) and (min-width: 1200.1px) {
    html {
        font-size: 0.7352941176vw;
    }
}

@media screen and (max-width: 1200px) and (min-width: 767.1px) {
    html {
        font-size: 55.5%;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 2.6666666667vw;
    }
}

body {
    font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0;
    color: #000;
    line-break: strict;
    min-width: 120rem;
}

@media screen and (max-width: 1200px) and (min-width: 767.1px) {
    body {
        min-width: 1200px;
    }
}

@media screen and (max-width: 767px) {
    body {
        min-width: inherit;
        font-size: 1.4rem;
    }
}

@font-face {
    font-family: "Zen Kaku Gothic New", sans-serif;
    src: url("../fonts/ZenKakuGothicNew-Regular.woff") format("woff"), url("../fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

.js-preload * {
    -webkit-transition: none !important;
    transition: none !important;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-orientation: none;
    width: 100%;
    height: auto;
}

.safari img {
    image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (max-width: 1366px) and (min-width: 1200.1px) {
    .over:hover {
        opacity: 0.6;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }
}

label {
    cursor: pointer;
}

/* main
--------------------------------------------------*/
.f-wrap {
    max-width: 164rem;
    margin: 0 auto;
    /*
  @include deviceTABmin{
  	padding: 0 2rem;
  }
  */
}

@media screen and (max-width: 767px) {
    .f-wrap {
        width: auto;
    }
}

.simplebar-content-wrapper::-webkit-scrollbar {
    display: none;
}

/* link
--------------------------------------------------*/
a {
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    will-change: transform, opacity;
}

a:link,
a:active,
a:visited {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
    a:hover {
        text-decoration: none;
        opacity: 0.8;
    }
}

a[href*="tel:"] {
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    a[href*="tel:"] {
        pointer-events: all;
    }
}

.l-header,
.l-footer{
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
}
.l-header__logo{
    display: none;
}

/* input
--------------------------------------------------*/
button {
    color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    will-change: transform;
}

button:focus {
    text-decoration: none;
}



.c-text {
    overflow: hidden;
}

.c-text-list {
    -webkit-animation: marquee-right 30s linear infinite;
    animation: marquee-right 30s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.c-text-list__item {
    list-style: none;
    padding: 0;
    width: 89rem;
}

.c-text-list__item img {
    display: block;
    width: 100%;
}

@-webkit-keyframes marquee-right {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes marquee-right {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.login .p-plan-opt {
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .login .p-plan-opt {
        margin-top: 0;
        border-radius: 1rem;
        padding: 5rem 2rem;
        margin-top: 0rem;
    }
}

.login .login-box {
    padding-bottom: 12rem;
}

@media screen and (max-width: 767px) {
    .login .login-box {
        padding: 0 2rem;
        padding-bottom: 7rem;
    }
}

.c-endnote {
    background: #fff;
}

.c-endnote-inner {
    max-width: 164rem;
    margin: 0 auto;
    padding: 8rem 10rem;
}

@media screen and (max-width: 767px) {
    .c-endnote-inner {
        padding: 5rem 2rem;
    }
}

.c-endnote-inner__indent {
    font-size: 1.2rem;
    line-height: 1.3;
    text-indent: -1em;
    padding: 0 0 0 1em;
}

.c-endnote-inner__indent+.c-endnote-inner__indent {
    margin-top: 1.6rem;
}

.c-bk {
    background-color: #3C3C3C;
}

.c-bg {
    background: #FBF1EB;
}

.c-catch {
    position: relative;
    padding: 8rem 0 14rem;
    overflow: hidden;
    /*
  &::before{
  	content: '';
  	position: absolute;
  	bottom: 7rem;
  	//left: 50%;
  	left: 0;
  	width: 100%;
  	height: 14rem;
  	background: url(../img/common/logo_bg.png) 0 0 / auto 100% no-repeat;
  	//transform: translateX(-50%);
  	@include deviceSP{
  		bottom: 3rem;
  		height: 7rem;
  	}
  }
  */
}

@media screen and (max-width: 767px) {
    .c-catch {
        padding: 5rem 2rem 6rem;
    }
}

.c-catch .c-loop {
    position: absolute;
    bottom: 7rem;
    left: 0;
    width: 100%;
    z-index: 0;
}

@media screen and (max-width: 767px) {
    .c-catch .c-loop {
        bottom: 10rem;
        height: 7rem;
    }
}

@media screen and (max-width: 767px) {
    .c-catch .c-loop-list {
        gap: 0 5rem;
    }
}

@media screen and (max-width: 767px) {
    .c-catch .c-loop-list__item {
        width: 80rem;
    }
}

@media screen and (max-width: 767px) {
    .c-catch .c-loop-list__item img {
        height: 7rem;
    }
}

.c-catch__inner {
    position: relative;
    max-width: 116.6rem;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 0 auto;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .c-catch__inner {
        display: block;
    }
}

.c-catch-content {
    width: 73.6rem;
    padding: 7rem 0 0;
}

@media screen and (max-width: 767px) {
    .c-catch-content {
        width: auto;
        padding: 0;
    }
}

.c-catch-content__en {
    color: #DB2509;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.4;
    margin: 0 0 1rem;
}

.c-catch-content__ttl {
    font-size: 4.2rem;
    line-height: 1.5;
    font-weight: 700;
}

.u-white .c-catch-content__ttl {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-catch-content__ttl {
        font-size: 2.4rem;
    }
}

.c-catch-content__txt {
    font-size: 1.8rem;
    line-height: 2.4;
    margin: 1rem 0 0;
}

.u-white .c-catch-content__txt {
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-catch-content__txt {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
}

.c-catch-img {
    position: relative;
    display: block;
    width: 35rem;
    padding: 0 0 2.2rem;
}

@media screen and (max-width: 767px) {
    .c-catch-img {
        width: 22.25rem;
        margin: 3rem auto 0;
    }
}

.c-catch-img__photo {
    display: block;
}

.c-catch-img__txt {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    .c-catch-img__txt {
        font-size: 1rem;
    }
}


.c-mv {
    position: relative;
    height: 33rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .c-mv {
        height: auto;
    }
}

.c-mv::before {
    position: absolute;
    left: 2rem;
    top: 2rem;
    content: "";
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    border-radius: 20px;
    background: rgba(60, 60, 60, 0.5);
    z-index: 1;
}

.c-mv__head {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.c-mv__ttl {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-mv__ttl {
        font-size: 1.6rem;
    }
}

.c-mv__en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 6rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    margin: 1.5rem 0 0;
}

@media screen and (max-width: 767px) {
    .c-mv__en {
        font-size: 4.5rem;
    }
}

.c-mv__photo {
    position: relative;
    max-width: 188rem;
}

.c-mv__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.c-mv__txt {
    position: absolute;
    bottom: 3.5rem;
    right: 4rem;
    text-shadow: 0 0 0.5rem rgb(0, 0, 0);
    font-size: 1.2rem;
    color: #fff;
    z-index: 5;
}

@media screen and (max-width: 767px) {
    .c-mv__txt {
        bottom: 3rem;
        right: 3rem;
    }
}

.c-mv-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-bottom-right-radius: 4rem;
    background: #fff;
}

.c-mv-block__circle,
.c-mv-block__circle2,
.c-mv-block__circle1 {
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    overflow: hidden;
}

@media screen and (max-width: 767px) {

    .c-mv-block__circle,
    .c-mv-block__circle2,
    .c-mv-block__circle1 {
        width: 2rem;
        height: 2rem;
    }
}

.c-mv-block__circle::before,
.c-mv-block__circle2::before,
.c-mv-block__circle1::before {
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    content: "";
    background: #F1F1F1;
    border-radius: 50%;
}

.c-mv-block__circle1 {
    right: 0;
    bottom: -4rem;
}

@media screen and (max-width: 767px) {
    .c-mv-block__circle1 {
        bottom: -2rem;
    }
}

.c-mv-block__circle1::before {
    right: 0;
    top: 0;
    -webkit-box-shadow: 4rem -4rem 0 0 #fff;
    box-shadow: 4rem -4rem 0 0 #fff;
}

@media screen and (max-width: 767px) {
    .c-mv-block__circle1::before {
        -webkit-box-shadow: 2rem -2rem 0 0 #fff;
        box-shadow: 2rem -2rem 0 0 #fff;
    }
}

.c-mv-block__circle2 {
    left: -4rem;
    top: 0;
}

@media screen and (max-width: 767px) {
    .c-mv-block__circle2 {
        left: -2rem;
    }
}

.c-mv-block__circle2::before {
    right: 0;
    top: 0;
    -webkit-box-shadow: 4rem -4rem 0 0 #fff;
    box-shadow: 4rem -4rem 0 0 #fff;
}

@media screen and (max-width: 767px) {
    .c-mv-block__circle2::before {
        -webkit-box-shadow: 2rem -2rem 0 0 #fff;
        box-shadow: 2rem -2rem 0 0 #fff;
    }
}

.c-lowermv {
    position: relative;
    height: 33rem;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {
    .c-lowermv {
        height: auto;
    }
}

.c-lowermv::before {
    position: absolute;
    left: 2rem;
    top: 2rem;
    content: "";
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    border-radius: 20px;
    background: rgba(60, 60, 60, 0.5);
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .c-lowermv::before {
        /*
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    */
    }
}

.c-lowermv__head {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.c-lowermv__ttl {
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .c-lowermv__ttl {
        font-size: 1.6rem;
    }
}

.c-lowermv__en {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    font-size: 6rem;
    color: #fff;
    text-align: center;
    line-height: 1;
    margin: 1.5rem 0 0;
}

@media screen and (max-width: 767px) {
    .c-lowermv__en {
        font-size: 4.5rem;
    }
}

.c-lowermv__photo {
    position: relative;
    max-width: 188rem;
}

.c-lowermv__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}

.c-lowermv__txt {
    position: absolute;
    bottom: 3.5rem;
    right: 4rem;
    text-shadow: 0 0 0.5rem rgb(0, 0, 0);
    font-size: 1.2rem;
    color: #fff;
    z-index: 5;
}

@media screen and (max-width: 767px) {
    .c-lowermv__txt {
        bottom: 3rem;
        right: 3rem;
    }
}

.c-lowermv-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-bottom-right-radius: 4rem;
    background: #fff;
}

.c-lowermv-block__circle,
.c-lowermv-block__circle2,
.c-lowermv-block__circle1 {
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    overflow: hidden;
}

@media screen and (max-width: 767px) {

    .c-lowermv-block__circle,
    .c-lowermv-block__circle2,
    .c-lowermv-block__circle1 {
        width: 2rem;
        height: 2rem;
    }
}

.c-lowermv-block__circle::before,
.c-lowermv-block__circle2::before,
.c-lowermv-block__circle1::before {
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    content: "";
    background: #F1F1F1;
    border-radius: 50%;
}

.c-lowermv-block__circle1 {
    right: 0;
    bottom: -4rem;
}

@media screen and (max-width: 767px) {
    .c-lowermv-block__circle1 {
        bottom: -2rem;
    }
}

.c-lowermv-block__circle1::before {
    right: 0;
    top: 0;
    -webkit-box-shadow: 4rem -4rem 0 0 #fff;
    box-shadow: 4rem -4rem 0 0 #fff;
}

@media screen and (max-width: 767px) {
    .c-lowermv-block__circle1::before {
        -webkit-box-shadow: 2rem -2rem 0 0 #fff;
        box-shadow: 2rem -2rem 0 0 #fff;
    }
}

.c-lowermv-block__circle2 {
    left: -4rem;
    top: 0;
}

@media screen and (max-width: 767px) {
    .c-lowermv-block__circle2 {
        left: -2rem;
    }
}

.c-lowermv-block__circle2::before {
    right: 0;
    top: 0;
    -webkit-box-shadow: 4rem -4rem 0 0 #fff;
    box-shadow: 4rem -4rem 0 0 #fff;
}

@media screen and (max-width: 767px) {
    .c-lowermv-block__circle2::before {
        -webkit-box-shadow: 2rem -2rem 0 0 #fff;
        box-shadow: 2rem -2rem 0 0 #fff;
    }
}

.c-loop {
    overflow: hidden;
}

.c-loop-list {
    -webkit-animation: marquee-loop 30s linear infinite;
    animation: marquee-loop 30s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 0 10rem;
}

.c-loop-list__item {
    list-style: none;
    padding: 0;
    width: 161.4rem;
}

.c-loop-list__item img {
    display: block;
    width: auto;
    height: 14rem;
}

@-webkit-keyframes marquee-loop {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes marquee-loop {
    from {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.f-main {
    padding-top: 0;
}

.l-inner {
    max-width: 136.6rem;
    margin: 0 auto;
}

.c-mv.-member {
    background-color: #3C3C3C;
}

.c-mv.-member .c-mv__ttl {
    color: #fff;
}

.c-mv.-member .c-mv__en {
    color: #fff;
}

.c-mv.-member .c-mv__head {
    background: #3C3C3C;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
    display: none;
}

@media screen and (max-width: 1366px) and (min-width: 1200.1px) {
    .u-sp {
        display: none;
    }
}

@media screen and (max-width: 1200px) and (min-width: 767.1px) {
    .u-sp {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .u-sp {
        display: block;
    }

    .u-pc {
        display: none;
    }
}

/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
    display: block;
    clear: both;
    content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
    text-align: left;
}

.u-alignC {
    text-align: center;
}

.u-alignR {
    text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-mt10 {
    margin-top: 1rem;
}

.u-mt15 {
    margin-top: 1.5rem;
}

.u-mt20 {
    margin-top: 2rem;
}

.u-mt30 {
    margin-top: 3rem;
}

.u-mt40 {
    margin-top: 4rem;
}

.u-mt50 {
    margin-top: 5rem;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
    padding-top: 56.25%;
}

.-ratio4-3 {
    padding-top: 75%;
}

/* --------------------------------------------------
other
-------------------------------------------------- */
.u-bold {
    /*font-weight: 700;*/
}

/*# sourceMappingURL=common.css.map */