/*
Theme Name:koike-el
Theme URI:
Version: 1.0
Author: imawaka
Author URI: https://yoshida-designbu.com/
License: takami
*/


/*リセットcss*/

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: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

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

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

q, blockquote {
	quotes: none;
}

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

img {
	vertical-align: bottom;
}

a img {
	border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

input[type="button"], input[type="submit"] {
	-webkit-appearance: none;
}

br.clear {
	clear: both;
}

/*リセットcssここまで*/


/*--------------
common
--------------*/

html {
    font-size: 62.5%;
}

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

:root {
    --color-White: #fff;
    --color-Black: #666;
    --color-Base-Blue: #008ce2;
    --color-Point-Blue: #2d68ff;
    --color-Red: #ff4e4e;
    --color-Yellow: #ffee00;
    --color-Orange: #ffbe26;
    --color-Green: #00e89e;
    --font-50px: 50px;
    --font-28px: 28px;
    --font-24px: 24px;
    --font-20px: 20px;
    --font-18px: 18px;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --font-black: 800;
    --font-ZenMaru: "Zen Maru Gothic", '游ゴシック', 'YuGothic', 'Yu Gothic', sans-serif;
    --font-NotoSans: "Noto Sans JP", '游ゴシック', 'YuGothic', 'Yu Gothic', sans-serif;
    --font-ZenKakuAntique: "Zen Kaku Gothic Antique", '游ゴシック', 'YuGothic', 'Yu Gothic', sans-serif;
    --font-Jost: "Jost", '游ゴシック', 'YuGothic', 'Yu Gothic', sans-serif;
}

body {
	background-color: var(--color-Base-Blue);
	color: var(--color-Black);
	font-family: var(--font-NotoSans);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	font-feature-settings: "palt";
}

a {
    text-decoration: none;
    transition: all 0.3s;
	color: var(--color-White);
}

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

picture {
    display: block;
}

.flex-box {
	display: flex;
	justify-content: space-between;
}

.link {
    display: block;
}

@media screen and (max-width: 1024px) {

    :root {
        --font-50px: 45px;
        --font-28px: 24px;
        --font-24px: 20px;
        --font-20px: 18px;
        --font-18px: 16px;
    }

}

@media screen and (max-width: 768px) {

    :root {
        --font-50px: 32px;
        --font-28px: 20px;
        --font-24px: 18px;
        --font-20px: 16px;
        --font-18px: 14px;
    }

    body {
        font-size: 14px;
    }

}

@media screen and (max-width: 521px) {

    :root {
        --font-50px: 26px;
        --font-28px: 18px;
        --font-24px: 16px;
        --font-20px: 14px;
    }

}


/*--------------
loading
--------------*/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-Base-Blue);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    transition: opacity 1s ease;
}

.count_wrap {
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: var(--font-bold);
    font-family: var(--font-ZenMaru);
    color: var(--color-Orange);
}

.progress_bar {
    width: 100%;
    height: 3px;
    margin-top: 10px;
    position: relative;
    transition: width 0.5s ease-in-out;
}

#progress_bar_count {
    height: 100%;
    left: 0;
    position: absolute;
    background-color: var(--color-Orange);
    width: 0%;
}

.progress_text {
    display: none; /* 最初は非表示 */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 2em;
}

@media screen and (max-width: 768px) {

    .count_wrap {
        font-size: 40px;
    }

}


/*--------------
動き
--------------*/

/* ----- kv動き ----- */

div.load-bg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    height: 100%;
    background-color: var(--color-Base-Blue);
    transition: 0.4s;
}

.topKv-container.firstAnimate div.load-bg {
    animation: fadeout 0.4s forwards;
    animation-delay: 1.5s;
}
   
@keyframes fadeout {
    0% {
      transform: translate(-50%, -50%);
    }
    100% {
      transform: translate(-50%, -150%);
      display: none;
    }
}

.topKV-MainCopy img {
    opacity: 0;
}

.topKv-container.firstAnimate .topKV-MainCopy img {
    animation: slideIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 2.3s;
}

.topKv-container.firstAnimate .topKV-MainCopy img:nth-child(2) {
    animation-delay: 2.4s;
}
   
@keyframes slideIn {
    0% {
      transform: translateX(-400px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
}


.kv-slide {
    opacity: 0;
}

.topKv-container.firstAnimate .kv-slide {
    animation: kv_slide 0.25s forwards;
}

.topKv-container.firstAnimate .kv-slide:nth-child(1) {
	animation-delay: 3.4s;
}

.topKv-container.firstAnimate .kv-slide:nth-child(2) {
	animation-delay: 3.32s;
}

.topKv-container.firstAnimate .kv-slide:nth-child(3) {
	animation-delay: 3.26s;
}

.topKv-container.firstAnimate .kv-slide:nth-child(4) {
	animation-delay: 3.18s;
}

.topKv-container.firstAnimate .kv-slide:nth-child(5) {
	animation-delay: 3.1s;
}

.topKv-container.firstAnimate .kv-slide:nth-child(6) {
	animation-delay: 3.02s;
}

@keyframes kv_slide {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ----- 共通の動き ----- */

.scroll-slideX, .scroll-slideY {
    opacity: 0;
}

.scroll-slide-inX {
    animation: scroll-slide-inX 0.3s forwards;
    animation-delay: 0.1s;
}

@keyframes scroll-slide-inX {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-slide-inY {
    animation: scroll-slide-inY 0.3s forwards;
    animation-delay: 0.1s;
}

@keyframes scroll-slide-inY {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*--------------
header
--------------*/

section.header-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    padding: 35px 0 0;
    align-items: center;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

h1 {
	width: 200px;
    position: relative;
}

h1 a {
    height: 100%;
}

h1 a:hover {
	opacity: 0.5;
}

h1 img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

/* 変化ロゴは最初透明 */
header h1 .top-logo-ChangeColor {
    opacity: 0;
}

/* logo-changeが付いたら通常ロゴを消して */
header.logo-change h1 img:not(.top-logo-ChangeColor) {
    opacity: 0;
}

/* 変化ロゴを表示 */
header.logo-change h1 .top-logo-ChangeColor {
    opacity: 1;
}

nav.header-menu ul {
    border-radius: 40px;
    padding: 0 70px;
    gap: 50px;
    background-color: #f2f9fe;
}

nav.header-menu li {
    display: flex;
	align-items: center;
}

nav.header-menu li a {
    display: block;
    padding: 15px 0;
    font-family: var(--font-ZenMaru);
    font-size: 22px;
    font-weight: var(--font-bold);
    color: var(--color-Base-Blue);
}

nav.header-menu li a:hover {
    color: var(--color-Orange);
}

nav.header-menu li.header-entry a {
    padding: 10px 30px;
    background-color: var(--color-Red);
    color: var(--color-White);
    text-align: center;
    line-height: 1.4;
}

nav.header-menu li.header-entry a:hover {
    background-color: var(--color-Orange);
}

nav.header-menu li.header-entry a span {
    display: block;
    font-size: 75%;
    line-height: 1.4;
}

.hamburger, nav.globalMenuSp {
	display: none;
}

@media screen and (max-width: 1350px) {

    h1 {
        width: 180px;
    }

    nav.header-menu ul {
        padding: 0 50px;
        gap: 30px;
    }

    nav.header-menu li a {
        font-size: 20px;
    }

}

@media screen and (max-width: 1200px) {

    h1 {
        width: 160px;
    }

    nav.header-menu ul {
        padding: 0 50px;
        gap: 26px;
    }

    nav.header-menu li a {
        font-size: 16px;
    }

}

@media screen and (max-width: 1024px) {

    h1 img {
        top: 0;
        transform: initial;
    }

    nav.header-menu {
        display: none;
    }

    div.hamburger, nav.globalMenuSp {
        display: block;
    }

    div.hamburger {
        width: 50px;
        position: fixed;
        top: 35px;
        right: 35px;
        z-index: 11;
        cursor: pointer;
    }

    div.hamburger img {
        position: absolute;
        transition: 0.5s;
    }

    .hamburger img.hamburger-close, 
    .hamburger.active img.hamburger-open {
        visibility: hidden;
        opacity: 0;
    }

    .hamburger img {
        position: relative;
    }

    .hamburger.active img.hamburger-close {
        visibility: visible;
        opacity: 1;
    }
    
    nav.globalMenuSp {
        display: block;
        position: fixed;
        z-index: 10;
        top: 0;
        left: 100%;
        background: var(--color-Base-Blue);
        width: 100%;
        height: 100%;
        visibility: hidden;
        transition: 0.4s;
    }
    nav.globalMenuSp.active {
        left: 0;
        visibility: visible;
        overflow-y: scroll;
    }

    div.globalMenuSp-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    div.globalMenuSp-inner ul {
        text-align: center;
    }

    div.globalMenuSp-inner ul li {
        margin-bottom: 40px;
        opacity: 0;
    }

    div.globalMenuSp-inner ul li:last-child {
        margin-bottom: 0;
    }

    nav.globalMenuSp.active li {
        animation: scroll-slide-inX-ham 0.2s forwards;
    }

    @keyframes scroll-slide-inX-ham {
        0% {
            opacity: 0;
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    nav.globalMenuSp.active li:nth-child(1) {
        animation-delay: 0.3s;
    }

    nav.globalMenuSp.active li:nth-child(2) {
        animation-delay: 0.4s;
    }

    nav.globalMenuSp.active li:nth-child(3) {
        animation-delay: 0.5s;
    }

    nav.globalMenuSp.active li:nth-child(4) {
        animation-delay: 0.6s;
    }

    nav.globalMenuSp.active li:nth-child(5) {
        animation-delay: 0.7s;
    }

    nav.globalMenuSp.active li:nth-child(6) {
        animation-delay: 0.8s;
    }

    nav.globalMenuSp.active li:nth-child(7) {
        animation-delay: 0.9s;
    }

    nav.globalMenuSp.active li:nth-child(8) {
        animation-delay: 1s;
    }

    div.globalMenuSp-inner ul li a {
        font-family: var(--font-ZenMaru);
        font-size: 22px;
        font-weight: var(--font-bold);
        position: relative;
    }

    div.globalMenuSp-inner ul li.globalMenuSp-link a::before {
        background: var(--color-Orange);
        content: '';
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
        margin: auto;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform .3s;
    }

    div.globalMenuSp-inner ul li.globalMenuSp-link a:hover {
        color: var(--color-Orange);
    }

    div.globalMenuSp-inner ul li.globalMenuSp-link a:hover::before {
        transform-origin: left top;
        transform: scale(1, 1);
    }

    div.globalMenuSp-inner ul li.globalMenuSp-entry a {
        display: block;
        width: 320px;
        border-radius: 41px;
        padding: 15px 0;
        background-color: var(--color-Red);
    }

    div.globalMenuSp-inner ul li.globalMenuSp-entry a:hover {
        background-color: var(--color-Orange);
    }

    div.globalMenuSp-inner ul li.globalMenuSp-entry a span {
        display: block;
        font-size: 70%;
    }

    div.globalMenuSp-inner ul li.globalMenuSp-corporate a {
        padding-right: 1.3em;
        border-bottom: 1px solid var(--color-White);
        font-size: 16px;
        background: url(./img/common/menuSP-link.png) center right no-repeat;
        background-size: 1em;
    }

    div.globalMenuSp-inner ul li.globalMenuSp-corporate a:hover {
        color: var(--color-Orange);
        border-bottom: 1px solid var(--color-Orange);
        background: url(./img/common/menuSP-link-hover.png) center right no-repeat;
        background-size: 1em;
    }

}


@media screen and (max-width: 768px) {

    div.globalMenuSp-inner ul li.globalMenuSp-corporate a {
        font-size: 14px;
    }

}


@media screen and (max-width: 521px) {

    section.header-container {
        padding: 20px 0 0;
    }

    h1 {
        width: 120px;
    }

    div.hamburger {
        width: 40px;
        top: 20px;
        right: 15px;
    }

    div.globalMenuSp-inner ul li {
        margin-bottom: 32px;
    }

    div.globalMenuSp-inner ul li a {
        font-size: 18px;
    }

    div.globalMenuSp-inner ul li.globalMenuSp-entry a {
        width: 280px;
        border-radius: 41px;
        padding: 12px 0;
        background-color: var(--color-Red);
    }

}   


/*--------------
main
--------------*/

div.main-container {
    padding-top: 110px;
}

@media screen and (max-width: 1200px) {

    div.main-container {
        padding-top: 90px;
    }

}

@media screen and (max-width: 768px) {

    div.main-container {
        padding-top: 70px;
    }

}

@media screen and (max-width: 521px) {

    div.main-container {
        padding-top: 60px;
    }

}


/*--------------
KV(キービジュアル)
--------------*/

div.topKv-container {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

div.topKV-BgImage {
    padding: 13% 0 0;
}

div.topKV-MainCopy,
div.topKV-MainImage,  
div.topKV-LeftCopy, 
div.topKV-RightCopy, 
div.topKV-RightCircle {
	position: absolute;
}

/* topKV-MainCopy */

div.topKV-MainCopy {
    /* width: 80%;フォント変更 */
    width: 90%;
    /* top: 10%;フォント変更 */
    top: 6%;
    left: 5%;
}

div.topKV-MainCopy img:nth-child(1) {
    /* padding-bottom: 2%;フォント変更 */
}

/* topKV-MainImage */

div.topKV-MainImage {
    width: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

div.topKV-MainImage-inner {
    position: relative;
}

div.topKv-imageItem {
    width: 34%;
}

div.topKv-imageItem:nth-of-type(2), 
div.topKv-imageItem:nth-of-type(3), 
div.topKv-imageItem:nth-of-type(4), 
div.topKv-imageItem:nth-of-type(5), 
div.topKv-imageItem:nth-of-type(6) {
    position: absolute;
    bottom: 0;
}

div.topKv-imageItem:nth-of-type(2) {
    right: 49%;
}

div.topKv-imageItem:nth-of-type(3) {
    right: 38%;
}

div.topKv-imageItem:nth-of-type(4) {
    right: 27%;
}

div.topKv-imageItem:nth-of-type(5) {
    right: 13%;
}

div.topKv-imageItem:nth-of-type(6) {
    right: 0%;
}

/* topKV-LeftCopy */

div.topKV-LeftCopy {
    left: 5%;
    bottom: 2%;
}

div.topKv-LeftDeco {
    width: 60%;
}

p.topKv-LeftText {
    font-size: min(32px, 1.9vw);
    font-weight: var(--font-medium);
    color: var(--color-White);
    line-height: 1.6;
    letter-spacing: 4px;
    padding-left: 100px;
}

/* topKV-RightCopy */

div.topKV-RightCopy {
	right: 22%;
	bottom: 0;
}

div.topKV-RightCopy-inner {
    position: relative;
}

div.topKV-RightText01 {
	margin-bottom: 5%;
}

div.topKV-RightText p {
    font-size: min(40px, 2.6vw);
    font-weight: var(--font-medium);
}

div.topKV-RightText p:nth-child(1) {
    display: inline-block;
    background-color: #000;
    color: var(--color-White);
    margin-bottom: 2%;
    padding: 0 10px;
}

div.topKV-RightText p:nth-child(2) span {
    display: inline-block;
    padding: 4px 10px 8px;
    line-height: 1;
}

div.topKV-RightText p:nth-child(2) span:nth-of-type(2) {
    margin-top: 2%;
}

div.topKV-RightText01 p:nth-child(2) span {
	background-color: var(--color-White);
	color: #000;
    transition: 0.5s;
}

div.topKV-RightText01 p:nth-child(2) a:hover span {
	background-color: #000;
	color: var(--color-Orange);
}

div.topKV-RightText02 p:nth-child(2) span {
	background-color: var(--color-Green);
	color: #000;
    transition: 0.5s;
}

div.topKV-RightText02 p:nth-child(2) a:hover span {
    background-color: #000;
	color: var(--color-Green);
}

div.topKV-RightDeco {
    width: 55%;
    position: absolute;
    top: -5%;
    right: 0;
}

/* div.topKV-RightCircle */

/* ↓共通 */

div.circle-inner {
	position: relative;
}

div.circle-inner p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: var(--font-medium);
    text-align: center;
    color: var(--color-White);
    line-height: 1.5;
    z-index: 1;
}

/* ↑ここまで共通 */

div.topKV-RightCircle {
    max-width: 240px;
    width: 18%;
    right: 2%;
    bottom: 8%;
}

div.topKV-RightCircle-inner p {
    font-size: min(24px, 1.7vw);
}

div.topKV-RightCircle-inner div.circle-image {
    animation: rotation 6s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* scroll */

div.scroll-bar {
    position: absolute;
    bottom: 11%;
    left: -12%;
    transform: rotate(90deg);
}

div.scroll-bar p {
    padding: 0 200px 10px 0px;
    font-size: 22px;
    color: var(--color-White);
    position: relative;
}

div.scroll-bar p::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(
    to right, 
    #ff4e4e 0%, #ff4e4e 25%, /*ピンク*/
    #ffbe26 25%, #ffbe26 50%, /*黄色*/
    #00e89e 50%, #00e89e 75%, /*緑*/
    #54f1ff 75%, #54f1ff 100% /*青*/
    );
    animation: pathmove 2.5s infinite;
}

@keyframes pathmove {
    0% {
        transform: scaleX(0); /* 横幅0の状態 */
        transform-origin: left; /* 左を基点 */
    }
    50% {
        transform: scaleX(1); /* 横幅100%に拡大 */
        transform-origin: left; /* 左を基点 */
    }
    51% {
        transform: scaleX(1); /* 基点変更のスムーズな切り替え */
        transform-origin: right; /* 右を基点に変更 */
    }
    100% {
        transform: scaleX(0); /* 横幅0に縮小 */
        transform-origin: right; /* 右を基点 */
    }
}


@media screen and (max-width: 1024px) {

    div.topKv-container {
        width: 95%;
    }

    /* div.topKV-MainCopy */

    div.topKV-MainCopy {
        width: 90%;
        left: 5%;
    }

    /* topKV-MainImage */

    div.topKV-MainImage {
        width: 100%;
    }

    /* topKV-LeftCopy */
    
    div.topKV-LeftCopy {
        left: 8%;
        bottom: 4%;
    }

    div.topKv-LeftDeco {
        width: 40%;
    }

    p.topKv-LeftText {
        padding-left: 50px;
        font-size: min(20px, 2.2vw);
    }

    /* topKV-RightCopy */

    div.topKV-RightCopy {
        bottom: 4%;
    }

    div.topKV-RightText p {
        font-size: 24px;
    }

    /* topKV-RightCircle */

    div.topKV-RightCircle-inner p {
        font-size: min(24px, 1.8vw);
    }

    /* scroll-bar */

    div.scroll-bar {
        bottom: 14%;
        left: -6%;
    }

    div.scroll-bar p {
        padding: 0 100px 6px 0px;
        font-size: 15px;
    }

}


@media screen and (max-width: 768px) {

    div.topKv-container {
        width: 100%;
        overflow: hidden;
    }

    /* topKV-BgImage */

    div.topKV-BgImage {
        width: 120%;
        padding: 8% 0 12%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    /* topKV-MainCopy */

    div.topKV-MainCopy {
        top: 8%;
    }

    /* topKV-MainImage */

    div.topKV-MainImage {
        width: 100%;
        top: 53%;
    }

    /* topKV-LeftCopy */

    div.topKV-LeftCopy {
        left: 12%;
        bottom: 0;
    }

    div.topKv-LeftDeco {
        width: 44%;
    }

    p.topKv-LeftText {
        font-size: 2.6vw;
        padding-left: 10vw;
    }

    /* topKV-RightCopy */

    div.topKV-RightCopy {
        right: 10%;
        bottom: 0;
    }

    div.topKV-RightText p {
        font-size: min(26px, 3.8vw);
    }

    div.topKV-RightText p:nth-child(1) {
        padding: 0 1.2vw;
    }

    div.topKV-RightText p:nth-child(2) span {
        padding: 0.5vw 1.2vw 0.8vw;
    }

    div.topKV-RightDeco {
        width: 60%;
        top: -6%;
        right: 0;
    }

    /* topKV-RightCircle */

    div.topKV-RightCircle {
        max-width: 130px;
        width: 18%;
        bottom: 30%;
        right: 6%;
    }

    div.topKV-RightCircle-inner p {
        font-size: min(14px, 1.9vw);
    }

    /* scroll-bar */

    div.scroll-bar {
        bottom: 10%;
        left: -4%;
    }

    div.scroll-bar p::before {
        height: 1px;
    }

}


@media screen and (max-width: 521px) {

    /* topKV-BgImage */

    div.topKV-BgImage {
        padding-bottom: 18%;
    }

    /* div.topKV-BgImage */

    div.topKv-imageItem {
        width: 36%;
    }

    /* topKV-MainCopy */

    div.topKV-MainCopy {
        top: 7%;
    }

    /* topKV-MainImage */

    div.topKV-MainImage {
        top: 50%;
    }

    /* topKV-LeftCopy */

    p.topKv-LeftText {
        font-size: 3.5vw;
        letter-spacing: 2px;
        line-height: 1.4;
        padding-left: 5vw;
    }

    /* topKV-RightCopy */

    div.topKV-RightDeco {
        width: 60%;
        top: -2%;
        right: -12%;
    }

    /* topKV-RightCircle */

    div.topKV-RightCircle {
        width: 21%;
        bottom: 28%;
    }

    div.topKV-RightCircle-inner p {
        font-size: min(14px, 2.3vw);
    }

    /* scroll-bar */

    div.scroll-bar {
        left: -7%;
        bottom: 10%;
    }

    div.scroll-bar p {
        padding: 0 60px 2px 0px;
        font-size: 12px;
    }

}


/*--------------
TOP(トップページ)
--------------*/

.topSec {
    max-width: 1440px;
    width: 85%;
    margin: 200px auto 140px;
    position: relative;
}


@media screen and (max-width: 1024px) {

    .topSec {
        margin: 150px auto 100px;
    }

}


@media screen and (max-width: 768px) {

    .topSec {
        margin: 150px auto 80px;
    }

}


@media screen and (max-width: 521px) {

    .topSec {
        margin: 100px auto 80px;
    }

}


/* topCCopy(トップキャッチコピー) */

/* ↓動き */

.topCCopy-title-box .scroll-slide {
    opacity: 0;
}

.scroll-slide-in-deray .scroll-slide {
    animation: scroll-slide-inX 0.3s forwards;
}

/* ↑ここまで動き */

section.topCCopy div.topCCopy-title-box {
    width: 58%;
    position: relative;
    z-index: 1;
}

div.topCCopy-Title img:nth-child(1) {
    padding-bottom: 2%;
}

div.topCCopy-title-box h2.topCCopy-Title img:nth-child(2) {
    padding-bottom: 2%;
    animation-delay: 0.1s;
}

/* ↓共通 */

span.band-title {
    font-size: min(36px, 2.4vw);
    letter-spacing: 3px;
    font-weight: var(--font-medium);
    color: var(--color-White);
    background-color: var(--wp--preset--color--black);
    padding: 1% 1.5%;
}

/* ↑共通ここまで */

div.topCCopy-title-box span.band-title {
    position: absolute;
    top: 35%;
    left: 15%;
    animation-delay: 0.2s;
}

div.topCCopy-title-box div.topCCopy-TitleDeco {
    width: 40%;
    position: absolute;
    left: 0;
    bottom: -10%;
    animation-delay: 0.3s;
}

p.topCCopy-text {
    width: 64%;
    margin-top: 40px;
    padding-left: 15%;
    font-size: 20px;
    color: var(--color-White);
    line-height: 2.3;
}

div.topCCopy-deco {
    width: 32%;
    position: absolute;
    top: -10%;
    right: 0;
}

div.topCCopy-deco-inner {
    position: relative;
    padding-bottom: 80%;
}

/* ↓動き */

div.topCCopy-deco-inner img {
    opacity: 0;
}

.scroll-slide-in-deray div.topCCopy-deco-inner img {
    animation: scroll-slide-inY 0.2s forwards;
}

/* ↑ここまで動き */

div.topCCopy-deco-inner img:nth-child(1) {
    display: block;
    width: 80%;
    margin-left: auto;
    animation-delay: 1.5s;
}

div.topCCopy-deco-inner img:nth-child(2), 
div.topCCopy-deco-inner img:nth-child(3),
div.topCCopy-deco-inner img:nth-child(4),
div.topCCopy-deco-inner img:nth-child(5),
div.topCCopy-deco-inner img:nth-child(6) {
    position: absolute;
}

div.topCCopy-deco-inner img:nth-child(2) {
    width: 70%;
    top: 20%;
    right: 12%;
    animation-delay: 1.4s;
}

div.topCCopy-deco-inner img:nth-child(3) {
    width: 60%;
    top: 36%;
    right: 26%;
    animation-delay: 1.3s;
}

div.topCCopy-deco-inner img:nth-child(4) {
    width: 50%;
    left: 10%;
    bottom: 26%;
    animation-delay: 1.2s;
}

div.topCCopy-deco-inner img:nth-child(5) {
    width: 40%;
    left: 6%;
    bottom: 14%;
    animation-delay: 1.1s;
}

div.topCCopy-deco-inner img:nth-child(6) {
    width: 30%;
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}


@media screen and (max-width: 1024px) {

    section.topCCopy div.topCCopy-title-box {
        width: 75%;
    }

    div.topCCopy-deco {
        width: 30%;
        top: -26%;
    }

    p.topCCopy-text {
        width: 100%;
        margin-top: 60px;
        padding-left: 0;
        font-size: 16px;
    }

}


@media screen and (max-width: 768px) {

    section.topCCopy div.topCCopy-title-box {
        width: 100%;
        position: relative;
    }

    /* ↓共通 */

    span.band-title {
        font-size: min(24px, 3.6vw);
        letter-spacing: 1px;
    }

    /* ↑共通ここまで */

    div.topCCopy-deco {
        top: -15%;
    }

    p.topCCopy-text {
        width: 100%;
        margin-top: 40px;
    }

}


@media screen and (max-width: 521px) {

    p.topCCopy-text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 2.1;
    }

    div.topCCopy-deco {
        top: -7%;
    }

}


/* 背景エリア */

div.bgTop-white {
    transform: translateY(5%);
}

div.bgBottom-white {
    transform: translateY(-5%);
}

div.top-BgArea01 {
    background-color: var(--color-White);
}


@media screen and (max-width: 521px) {

    div.top-BgArea01 {
        padding: 40px 0 50px;
    }

}


/* topInterview(社員インタビュー) */

section.topInterview {
    margin: 0 auto;
}

/* ↓動き */

.topInterview-title-box .scroll-slide, 
.topInterview-title-box .scroll-zoom {
    opacity: 0;
}

.scroll-slide-in-deray .scroll-zoom {
    animation: zoomIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale(2);
    }
  
    100% {
      opacity: 1;
      transform: scale(1);
    }
}

/* ↑ここまで動き */

section.topInterview div.topInterview-title-box {
    width: 50%;
    margin: 0 auto;
    position: relative;
}

h2.topInterview-Title {
    width: 80%;
    padding: 10% 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

div.topInterview-title-box div.topInterview-circle {
    position: absolute;
    width: 23%;
    top: 0;
    left: 1%;
    animation-delay: 0.6s;
}

div.topInterview-title-box span.band-title {
    position: absolute;
    right: -8%;
    bottom: 20%;
    animation-delay: 0.1s;
    z-index: 1;
}

div.topInterview-title-box div.topInterview-TitleDeco {
    width: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    animation-delay: 0.2s;
    z-index: 1;
}

div.topInterview-circle-inner p {
    font-size: min(40px, 2.1vw);
    letter-spacing: 1px;
}

/* ここからスライド↓↓↓ */

ul.topInterview-slide {
    margin-top: 130px;
}

ul.topInterview-slide .slick-slide {
	height: 100%;
	margin: 0 50px;
	position: relative;
	overflow: hidden;
}

ul.topInterview-slide .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
    transition: 0.5s;
}

ul.topInterview-slide .slick-slide img:nth-child(1) {
    position: relative;
    z-index: 1;
}

ul.topInterview-slide .slick-slide img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
}

ul.topInterview-slide .slick-slide a:hover img:nth-child(1) {
	visibility: hidden;
    opacity: 0;
}

ul.topInterview-slide .slick-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-Point-Blue);
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

ul.topInterview-slide .slick-arrow::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	border: 1px solid var(--color-White);
	border-width: 3px 3px 0 0;
	position: absolute;
	top: 18px;
	transform: rotate(45deg);
}

ul.topInterview-slide .slick-next {
	right: 28.5%;
}

ul.topInterview-slide .slick-prev {
	left: 28.5%;
}

ul.topInterview-slide .slick-next::before {
	left: 15px;
}

ul.topInterview-slide .slick-prev::before {
	border-width: 0 0 3px 3px;
	right: 15px;
}

/* ↑↑↑ここまでスライド */


@media screen and (max-width: 1024px) {

    section.topInterview div.topInterview-title-box {
        width: 60%;
    }

    div.topInterview-circle-inner p {
        font-size: min(40px, 2.4vw);
    }

    section.topInterview span.band-title {
        right: 0;
        bottom: 15%;
    }

    /* ここからスライド↓↓↓ */

    ul.topInterview-slide {
        margin-top: 100px;
    }

    ul.topInterview-slide .slick-slide {
        margin: 0 40px;
    }

    ul.topInterview-slide .slick-arrow {
        width: 40px;
        height: 40px;
    }

    ul.topInterview-slide .slick-arrow::before {
        width: 13px;
        height: 13px;
        top: 14px;
    }

    ul.topInterview-slide .slick-prev {
        left: 22.5%;
    }

    ul.topInterview-slide .slick-next {
        right: 22.5%;
    }

    ul.topInterview-slide .slick-prev::before {
        right: 12px;
    }

    ul.topInterview-slide .slick-next::before {
        left: 12px;
    }

    /* ↑↑↑ここまでスライド */

}


@media screen and (max-width: 768px) {

    section.topInterview div.topInterview-title-box {
        width: 80%;
    }

    div.topInterview-circle-inner p {
        font-size: min(22px, 3.3vw);
    }

    /* ここからスライド↓↓↓ */

    ul.topInterview-slide {
        margin-top: 75px;
    }

    ul.topInterview-slide .slick-prev {
        left: 11.5%;
    }

    ul.topInterview-slide .slick-next {
        right: 11.5%;
    }

    /* ↑↑↑ここまでスライド */

}


@media screen and (max-width: 521px) {

    div.topInterview-circle-inner p {
        letter-spacing: 1px;
    }

    ul.topInterview-slide {
        margin-top: 40px;
    }

    /* ここからスライド↓↓↓ */

    ul.topInterview-slide .slick-slide {
        margin: 0px 18px;
    }

    ul.topInterview-slide .slick-arrow {
        width: 25px;
        height: 25px;
    }

    ul.topInterview-slide .slick-arrow::before {
        width: 9px;
        border-width: 2px 2px 0 0;
        height: 9px;
        top: 8px;
    }

    ul.topInterview-slide .slick-prev::before {
        border-width: 0 0 2px 2px;
        right: 6.5px;
    }

    ul.topInterview-slide .slick-next::before {
        left: 6.5px;
    }

    /* ↑↑↑ここまでスライド */

}


/* topLMore(もっと詳しく(数字・FAQ・募集要項)) */

p.topLMore-subtitle {
	width: 50%;
	margin: 0 auto;
}

div.topLMore-titles h2 {
    width: 80%;
    margin: 50px auto;
}

p.topLMore-titlesText {
    font-size: 20px;
    color: var(--color-White);
    line-height: 2;
    text-align: center;
}


ul.top-Gconpany-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(60px, 5vw) min(80px, 6vw);
    margin-top: 70px;
}

ul.top-Gconpany-list li {
    width: 40%;
}

ul.top-Gconpany-list li h3 {
    padding-bottom: 20px;
}

p.top-Gconpany-copy {
    color: var(--color-White);
    font-weight: var(--font-bold);
    font-size: min(36px, 2.3vw);
    text-align: center;
    border-top: 3px solid var(--color-White);
    padding: 22px 0 10px;
}

p.top-Gconpany-copy span {
    color: var(--color-Orange);
    font-size: 130%;
    text-align: center;
}

p.top-Gconpany-text {
    color: var(--color-White);
    line-height: 2;
}


div.topLMore-arrow {
    width: 30px;
    margin: 60px auto;
    animation: arrow-downMove 2s infinite ease-in-out;
}

@keyframes arrow-downMove {
    0%, 17%, 50%, 85%, 100% { transform: translateY(0);}
    34% {transform: translateY(-20px);}
    68% {transform: translateY(-15px);}
}


div.topLMore-box {
    border: var(--color-Orange) 5px solid;
    position: relative;
    padding: 60px 10%;
    align-items: center;
}

div.topLMore-circle {
    min-width: 160px;
    width: 13%;
    position: absolute;
    top: -12%;
    left: -50px;
}

div.topLMore-circle-inner p {
    font-size: 35px;
    letter-spacing: 3px;
}

div.topLMore-circle-inner div.circle-image {
    animation: rotation 6s linear infinite;
}

div.topLMore-box h3 {
    width: 46%;
    position: relative;
}

div.topLMore-box-texts {
    width: 48%;
    align-items: center;
}

div.topLMore-box-text {
	width: 75%;
    animation-delay: 0.2s;
}

p.topLMore-box-textInner {
    font-size: 20px;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.7;
}

p.topLMore-box-button a {
    max-width: 240px;
    width: 100%;
    margin-top: 20px;
    border-radius: 28px;
    padding: 10px 22px 14px;
    font-family: var(--font-ZenMaru);
    font-size: 24px;
    font-weight: var(--font-black);
    letter-spacing: 1.5px;
    background: var(--color-Red) url(./img/top/button-WhiteArrow.png) center right 18px no-repeat;
    background-size: 1.1em;
}

p.topLMore-box-button a:hover {
    color: var(--color-Red);
    background: var(--color-White) url(./img/top/button-WhiteArrow-hover.png) center right 18px no-repeat;
    background-size: 1.1em;
}

div.topLMore-box-textDeco {
    width: 18.5%;
    animation-delay: 0.4s;
}

div.topLMore-SubSec {
    margin-top: 150px;
}

h3.topFAQ-box, h3.topRInfo-box {
	width: 46%;
}

h3.topFAQ-box a:hover, h3.topRInfo-box a:hover {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}


@media screen and (max-width: 1024px) {

    div.topLMore-titles h2 {
        width: 90%;
        margin: 35px auto;
    }
    
    p.topLMore-titlesText {
        font-size: 18px;
    }


    ul.top-Gconpany-list {
        margin-top: 50px;
    }


    div.topLMore-arrow {
        width: 25px;
        margin: 40px auto;
    }

    div.topLMore-circle {
        min-width: initial;
        width: 130px;
        top: -8%;
        left: -30px;
    }

    div.topLMore-circle-inner p {
        font-size: 28px;
    }

    p.topLMore-box-textInner {
        font-size: 16px;
    }

    p.topLMore-box-button a {
        width: 80%;
        padding: 6px 20px 10px;
        font-size: 16px;
    }

    div.topLMore-SubSec {
        margin-top: 90px;
    }

}


@media screen and (max-width: 768px) {

    section.topLMore {
        margin-top: 100px;
    }


    p.topLMore-subtitle {
        width: 65%;
    }

    div.topLMore-titles h2 {
        margin: 30px auto;
    }

    p.topLMore-titlesText {
        font-size: 16px;
        width: 100%;
    }


    ul.top-Gconpany-list {
        display: block;
        margin-top: 30px;
    }

    ul.top-Gconpany-list li {
        width: 100%;
        margin-bottom: 40px;
    }

    ul.top-Gconpany-list li:last-child {
        margin-bottom: 0;
    }

    ul.top-Gconpany-list li h3 {
        padding-bottom: 15px;
    }

    ul.top-Gconpany-list li h3 span {
        display: block;
        max-width: 320px;
        width: 80%;
        margin: 0 auto;
    }

    p.top-Gconpany-copy {
        font-size: min(32px, 6vw);
        border-top: 3px solid var(--color-White);
        padding: 15px 0 5px;
    }


    div.topLMore-box {
        display: block;
        border: var(--color-Orange) 3px solid;
    }

    div.topLMore-circle {
        width: 130px;
    }

    div.topLMore-circle-inner p {
        font-size: 24px;
    }

    div.topLMore-box h3 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    div.topLMore-box-texts {
        max-width: 400px;
        width: 100%;
        margin: 30px auto 0;
        align-items: flex-start;
    }

    div.topLMore-box-text {
        width: 75%;
    }

    div.topLMore-box-textDeco {
        width: 15%;
    }


    div.topLMore-SubSec {
        margin-top: 80px;
    }

}


@media screen and (max-width: 521px) {

    section.topLMore {
        margin-top: 90px;
    }


    p.topLMore-subtitle {
        width: 70%;
    }

    div.topLMore-titles h2 {
        margin: 20px auto 30px;
    }

    p.topLMore-titlesText {
        font-size: 14px;
        line-height: 1.8;
    }


    div.topLMore-arrow {
        width: 15px;
        margin: 40px auto 30px;
    }

    div.topLMore-circle {
        width: 100px;
        left: -20px;
    }

    div.topLMore-circle-inner p {
        font-size: 18px;
    }

    div.topLMore-box-texts {
        margin: 25px auto 0;
    }

    p.topLMore-box-textInner {
        font-size: 14px;
    }

    p.topLMore-box-button a {
        margin-top: 15px;
        padding: 6px 20px 10px;
        font-size: 14px;
    }

    div.topLMore-box-textDeco {
        width: 18%;
    }

    div.topLMore-box {
        padding: 60px 10% 40px;
    }

    div.topLMore-SubSec {
        flex-wrap: wrap;
        gap: 40px;
        margin-top: 50px;
    }

    h3.topFAQ-box, h3.topRInfo-box {
        width: 100%;
    }

}


/*--------------
下層共通
--------------*/

div.underKv, section.underSec {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

div.underKv-inner {
    max-width: 1000px;
    width: 80%;
    margin: 15% auto 10%;
}

div.underKv-Title {
    position: relative;
    margin: 0 auto 7%;
}

div.under-SubTitle {
    position: absolute;
    animation-delay: 0.25s;
}

p.underKv-text {
    color: var(--color-White);
    font-size: var(--font-20px);
    line-height: 1.8;
    animation-delay: 0.4s;
}

div.under-layer {
    background-color: var(--color-White);
}

section.underSec {
    font-family: var(--font-ZenMaru);
}


@media screen and (max-width: 1024px) {

    div.underKv-inner {
        width: 65%;
        margin: 10% auto 8%;
    }

}


@media screen and (max-width: 768px) {

    div.underKv-inner {
        width: 100%;
        margin: 18% auto 12%;
    }

    div.underKv-Title {
        width: 100%;
    }

    p.underKv-text {
        width: 100%;
        margin: 0 auto;
    }

    div.under-layer {
        padding: 4% 0;
    }

}


/*--------------
interview 社員インタビュー
--------------*/

div.interview-inner {
    max-width: initial;
    width: 100%;
    position: relative;
    margin: 12% auto 12%;
}

div.interview-KvBg {
    width: 100%;
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* ↓動き */

.interview-MainTitle .scroll-zoom {
    opacity: 0;
    animation: zoomIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* ↑ここまで動き */

div.interview-MainTitle {
    max-width: 800px;
    width: 65%;
    margin: 0 auto;
    padding-bottom: 3%;
}

div.interview-MainTitle h2 {
    width: 80%;
    margin: 0 0 0 auto;
}

div.interviewKv-Circle {
    position: absolute;
    width: 26%;
    top: -30%;
    left: 0;
    z-index: -1;
    animation-delay: 0.8s!important;
}

div.interviewKv-Circle p {
    font-size: min(36px, 2.6vw);
    letter-spacing: 2px;
}

div.interview-SubTitle {
    width: 50%;
    left: 0;
    bottom: -32%;
    animation-delay: 0.4s;
}

div.interview-MainTitle span.band-title {
    position: absolute;
    right: -5%;
    bottom: 10px;
    animation-delay: 0.25s;
}

div.interview-KvImage {
    width: 90%;
    margin: 0 auto;
    padding-top: 3%;
    position: relative;
}

div.interview-KvImage-inner01 {
    position: absolute;
    top: 5%;
    left: 8%;
    width: 45%;
    animation-delay: 1.1s;
}

div.interview-KvImage-inner02 {
    position: relative;
    width: 60%;
    margin: 0 5% 0 auto;
    animation-delay: 1.0s;
}

/* アコーディオン */

ul.interview-list li {
    margin-bottom: 130px;
}

ul.interview-list li:last-child {
    margin-bottom: 0;
}

div.interview-MainImage {
    position: relative;
    background-color: #E6E6E6;
    cursor: pointer;
    transition: 0.3s;
}

div.interview-MainImage.active {
    background-color: var(--color-Yellow);
}

div.interview-Image img {
    transition: 0.3s;
}

div.interview-Image img:nth-child(1) {
    position: relative;
    z-index: 1;
}

div.interview-MainImage.active div.interview-Image img:nth-child(1) {
    opacity: 0;
}

div.interview-Image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
}

div.interview-ClickImage {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 20%;
    z-index: 1;
}


div.interview-primary {
    display: none;
    background-image: url(./img/staff-interview/interview-Bg.png);
    background-size: 1000px;
    padding: 8% 6%;
}

/* インタビュー */

div.interview-Box {
    margin-bottom: 100px;
}

div.interview-Box:last-child {
    margin-bottom: 0;
}

/* div.interview-Box h3 img {
    width: auto;
    height: 45px;
} */

div.interview-BoxInner {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

div.interview-Box:nth-child(even) div.interview-BoxInner {
    flex-direction: row;
}

p.interview-BoxText, div.interview-BoxImage {
    width: 48%;
}

p.interview-BoxText {
    font-size: var(--font-20px);
    font-family: var(--font-ZenKakuAntique);
    line-height: 2;
    color: #231815;
}

picture.interview-flow-bubble.scroll-slide-inY2 {
    animation: scroll-slide-inY-bubble 0.5s forwards;
}

@keyframes scroll-slide-inY-bubble {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* ここまで動き */


@media screen and (min-width: 768px) {

    div.interview-MainImage:hover {
        background-color: var(--color-Yellow);
    }
    
    div.interview-MainImage:hover div.interview-Image img:nth-child(1) {
        opacity: 0;
    }

}


@media screen and (max-width: 1024px) {

    /* インタビュー */

    ul.interview-list li {
        margin-bottom: 80px;
    }

    ul.interview-flow-list li::after {
        height: 170px;
    }

    div.interview-Box {
        margin-bottom: 60px;
    }

    /* div.interview-Box h3 img {
        height: 30px;
    } */

    div.interview-BoxInner {
        margin-top: 40px;
    }

}


@media screen and (max-width: 768px) {

    div.interviewKv {
        width: 100%;
        overflow: hidden;
    }

    div.interview-inner {
        margin: 14% auto 12%;
    }

    div.interview-KvBg {
        width: 120%;
    }

    div.interview-MainTitle {
        width: 75%;
    }

    div.interview-MainTitle span.band-title {
        font-size: min(22px, 3.4vw);
        right: -3%;
        bottom: 3px;
    }

    div.interview-KvImage {
        padding-top: 5%;
    }

    div.interviewKv-Circle p {
        font-size: min(30px, 3.6vw);
        letter-spacing: 1px;
    }

    div.interview-primary {
        padding: 10% 6%;
    }

    /* インタビュー */

    ul.interview-list li {
        margin-bottom: 50px;
        padding-top: 2%;
    }

    div.interview-ClickImage {
        width: 30%;
        right: 10px;
        bottom: 10px;
    }

    div.interview-Box {
        margin-bottom: 50px;
    }

    div.interview-BoxInner {
        display: block;
        margin-top: 30px;
    }

    /* div.interview-Box h3 img {
        height: 25px;
    } */

    p.interview-BoxText, div.interview-BoxImage {
        width: 100%;
        line-height: 1.8;
    }

    div.interview-BoxImage {
        margin-bottom: 30px;
    }

}


@media screen and (max-width: 521px) {

    div.interview-MainTitle {
        width: 85%;
    }

    div.interview-MainTitle span.band-title {
        font-size: min(22px, 3.8vw);
    }

    div.interview-KvImage-inner01 {
        width: 50%;
        left: 5%;
    }

    div.interview-KvImage-inner02 {
        width: 65%;
        margin: 0 2% 0 auto;
    }

    /* インタビュー */

    ul.interview-list li {
        margin-bottom: 30px;
        padding-top: 0;
    }

    div.interview-Box {
        margin-bottom: 40px;
    }

    /* div.interview-Box h3 img {
        height: min(20px, 5.2vw);
    } */

    div.interview-BoxInner {
        margin-top: 25px;
    }

    div.interview-BoxImage {
        margin-bottom: 20px;
    }

    div.interview-primary {
        padding: 12% 6%;
    }

}


/*--------------
numbers 数字で見る
--------------*/

/* ↓動き */

.numbers-MainTitle .scroll-zoom {
    opacity: 0;
    animation: zoomIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

div.numbers-container .numbers-inner:nth-child(2), 
div.numbers-container .numbers-inner:nth-child(5), 
div.numbers-container .numbers-inner:nth-child(7) {
    animation-delay: 0.2s;
}

div.numbers-container .numbers-inner:nth-child(3), 
div.numbers-container .numbers-inner:nth-child(8) {
    animation-delay: 0.4s;
}

/* ↑ここまで */

div.numbersKv-Deco01 {
    width: 70%;
    margin-bottom: 2%;
    padding-left: 25%;
    animation-delay: 0.3s;
}

div.numbers-MainTitle h2 {
    position: relative;
}

div.numbers-MainTitle h2 span {
    position: absolute;
    width: 12%;
    top: -34%;
    right: -7%;
}

div.numbersKv-Circle {
    position: absolute;
    width: 18%;
    top: -18%;
    left: 6%;
    z-index: -1;
    animation-delay: 0.8s!important;
}

div.numbersKv-Circle p {
    font-size: min(36px, 3vw);
    letter-spacing: 2px;
}

div.numbers-SubTitle {
    position: absolute;
    width: 42%;
    top: 12%;
    left: 38%;
    animation-delay: 0.2s;
}

p.numbersKv-text {
    opacity: 0;
    animation-delay: 0.95s;
}


div.numbers-layer {
    background-color: var(--color-Base-Blue);
}

div.numbers-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: min(70px, 6vw);
}

div.numbers-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid var(--color-White);
    padding: min(70px, 6vw) 0;
    border-radius: 70px;
}

div.numbers-container div.numbers-inner01 {
    width: 31%;
}

div.numbers-container div.numbers-inner02 {
    width: 48%;
}

div.numbers-container div.numbers-inner03 {
    width: 100%;
}

div.numbers-inner dt, div.numbers-inner dd {
    color: var(--color-White);
}

div.numbers-inner dt {
    font-size: min(40px, 2.2vw);
    font-weight: var(--font-bold);
    text-align: center;
}

div.numbers-inner dt span {
    display: block;
    margin-top: 1%;
    font-size: 70%;
    font-weight: var(--font-medium);
    letter-spacing: 1px;
}

div.numbers-inner dd {
    font-size: min(42px, 3vw);
    font-weight: var(--font-bold);
    line-height: 1;
    text-align: center;
}

div.numbers-inner dd.date-note {
    margin-top: 30px;
    font-size: min(22px, 1.8vw);
    font-weight: var(--font-medium);
    line-height: 1.5;
}

div.numbers-inner dd.date-note small {
    margin-top: 2%;
    display: block;
    font-size: 75%;
}

div.numbers-inner dd span {
    font-size: min(140px, 9vw);
    font-weight: var(--font-black);
}

dd.data-group {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

p.data-itemTitle {
    font-size: min(2.6rem, 2vw);
    width: fit-content;
    margin: 0 auto;
    border: 3px solid var(--color-White);
    border-radius: 15px;
    padding: 12px 1.5em;
}

/* div.numbers-inner dd span.vertical-text {
    font-size: min(42px, 3vw);
    font-weight: var(--font-bold);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding-right: 2%;
} */

div.numbers-inner dd div.occupation {
    margin-top: 30px;
    margin-bottom: 35px;
    line-height: 1.4;
}

div.numbers-inner dd div.occupation span {
    font-size: min(60px, 5vw);
}


@media screen and (max-width: 1024px) {

    div.numbersKv-Circle p {
        font-size: min(24px, 2.2vw);
    }

    div.numbers-container {
        row-gap: 30px;
    }

    div.numbers-inner {
        border: 4px solid var(--color-White);
    }

    div.numbers-container div.numbers-inner01 {
        width: 31%;
    }

}


@media screen and (max-width: 768px) {
    
    /* ↓動き */
    
    div.numbers-container .numbers-inner:nth-child(1),
    div.numbers-container .numbers-inner:nth-child(2),
    div.numbers-container .numbers-inner:nth-child(3),
    div.numbers-container .numbers-inner:nth-child(4),
    div.numbers-container .numbers-inner:nth-child(5), 
    div.numbers-container .numbers-inner:nth-child(6), 
    div.numbers-container .numbers-inner:nth-child(7), 
    div.numbers-container .numbers-inner:nth-child(8), 
    div.numbers-container .numbers-inner:nth-child(9) {
        animation-delay: initial;
    }
    
    /* ↑ここまで */

    div.numbers-MainTitle {
        width: 80%;
    }

    div.numbersKv-Circle p {
        font-size: min(20px, 2.8vw);
    }

    div.numbers-layer {
        padding: 0;
    }


    div.numbers-container {
        row-gap: 5vw;
    }

    div.numbers-container div.numbers-inner {
        border-radius: 30px;
        border: 3px solid var(--color-White);
    }

    div.numbers-container div.numbers-inner01 {
        width: 100%;
    }

    div.numbers-container div.numbers-inner02 {
        width: 100%;
    }

    div.numbers-container div.numbers-inner02 dd {
        margin-top: 15px;
    }

    p.data-itemTitle {
        font-size: 1.8rem;
        border: 2px solid var(--color-White);
        border-radius: 10px;
    }

    div.numbers-inner dt {
        font-size: min(24px, 5.4vw);
    }

    div.numbers-inner dd {
        font-size: min(34px, 7vw);
    }

    div.numbers-inner dd.date-note {
        font-size: 18px;
    }

    div.numbers-inner dd span {
        font-size: min(100px, 20vw);
    }

    div.numbers-inner03 dd {
        font-size: min(24px, 4.4vw);
    }
    
    div.numbers-inner dd div.occupation {
        margin-top: 15px;
        margin-bottom: 15px;
    }

}


@media screen and (max-width: 521px) {

    div.numbers-MainTitle {
        width: 90%;
    }

    div.numbersKv-Circle p {
        font-size: min(16px, 3.3vw);
        letter-spacing: 1px;
    }


    div.numbers-container dl.numbers-inner {
        border: 2px solid var(--color-White);
        border-radius: 30px;
    }

    div.numbers-container dl.numbers-inner {
        padding: 30px 0;
    }

    div.numbers-container dl.numbers-inner02 dd {
        margin-top: 15px;
    }

    dd.data-group {
        gap: 25px;
    }

    div.numbers-inner dd.date-note {
        font-size: min(14px, 3.8vw);
    }

    p.data-itemTitle {
        font-size: 1.4rem;
        padding: 8px 1.5em;
    }

    dl.numbers-inner dd div.occupation {
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

}


/*--------------
faq よくある質問
--------------*/

div.faq-SubTitle {
    max-width: 200px;
    width: 22%;
    top: -40%;
    left: 10%;
}

/* ↓ここからアコーディオン */

ul.faq-list li {
    border-bottom: 3px solid var(--color-Orange);
    padding: 0 60px 45px;
    margin-bottom: 45px;
}

ul.faq-list li:last-child {
    margin-bottom: 0;
}

h3.faq-Q {
    padding-left: 2em;
    font-size: var(--font-24px);
    font-weight: var(--font-bold);
    position: relative;
    line-height: 1.8;
    cursor: pointer;
}

h3.faq-Q::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    display: block;
    width: 1em;
    height: 1.2em;
    background: url(./img/faq/faq-arrow.png) no-repeat;
    background-size: 1em;
    transition: transform 0.3s ease; /* 回転アニメーションの追加 */
}

h3.faq-Q.open::before {
    transform: rotate(90deg); /* 回転 */
}

div.faq-A {
    display: none;
    padding-top: 20px;
    margin-left: 48px;
}

div.faq-A p {
    font-size: var(--font-20px);
    line-height: 1.8;
}

/* ↑ここまでアコーディオン */


@media screen and (max-width: 1024px) {

    ul.faq-list li {
        padding: 0 50px 35px;
        margin-bottom: 35px;
    }

    div.faq-A {
        padding-top: 15px;
        margin-left: 40px;
    }

}


@media screen and (max-width: 768px) {

    ul.faq-list li {
        padding: 0 20px 30px;
        border-bottom: 2px solid var(--color-Orange);
        margin-bottom: 30px;
    }

    h3.faq-Q {
        padding-left: 2.2em;
        line-height: 1.6;
    }

    h3.faq-Q::before {
        top: 8%;
    }

    div.faq-A {
        padding-top: 10px;
        margin-left: 0;
    }

}


@media screen and (max-width: 521px) {

    ul.faq-list li {
        padding: 0 10px 20px;
        margin-bottom: 20px;
    }

    div.faq-A p {
        line-height: 1.6;
    }

}


/*--------------
recruit-info 募集要項
--------------*/

section.under-recruitinfo {
    margin-bottom: 150px;
}

section.under-recruitinfo:last-child {
    margin-bottom: 0;
}

div.recruitinfo-SubTitle {
    width: 60%;
    top: -65%;
    left: 18%;
}

section.under-recruitinfo h3 {
    max-width: 450px;
}

div.recruitinfo-list {
    padding: 6% 6%;
    border: 5px solid var(--color-Orange);
}

p.recruitinfo-noneText {
    font-size: var(--font-24px);
    font-weight: var(--font-bold);
}

div.recruitinfo-list dl {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-Black);
    margin-bottom: 40px;
}

div.recruitinfo-list dl:last-child {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

div.recruitinfo-list dl dt {
    width: 170px;
    font-size: var(--font-24px);
    font-weight: var(--font-bold);
}

div.recruitinfo-list dl dd {
    font-size: var(--font-20px);
    line-height: 1.8;
    width: calc(100% - 230px);
}

p.recruitinfo-note {
    font-size: var(--font-18px);
    font-weight: var(--font-regular);
    text-indent: -1em;
    padding-left: 1em;
}


@media screen and (max-width: 1024px) {

    section.under-recruitinfo {
        margin-bottom: 130px;
    }

    section.under-recruitinfo h3 {
        width: 40%;
    }

    div.recruitinfo-list dl {
        gap: 50px;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    div.recruitinfo-list dl dt {
        width: 140px;
    }

    div.recruitinfo-list dl dd {
        width: calc(100% - 190px);
    }

}


@media screen and (max-width: 768px) {

    section.under-recruitinfo {
        margin-bottom: 80px;
    }

    div.recruitinfo-list {
        border: 3px solid var(--color-Orange);
    }

    div.recruitinfo-list dl {
        display: block;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    div.recruitinfo-list dl dt {
        width: 100%;
        margin-bottom: 5px;
    }

    div.recruitinfo-list dl dd {
        width: 100%;
    }

}


@media screen and (max-width: 521px) {

    section.under-recruitinfo {
        margin-bottom: 50px;
    }

    div.recruitinfo-list {
        border: 2px solid var(--color-Orange);
    }

    div.recruitinfo-list dl {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    div.recruitinfo-list dl dt {
        width: 100%;
    }

}


/*--------------
entry-form エントリーフォーム
--------------*/

/* エントリーフォーム */

section.under-entry {
    max-width: 900px;
}

div.entry-SubTitle {
    max-width: 250px;
    width: 30%;
    top: -60%;
    left: -10%;
}

section.under-entry dl {
    display: flex;
    margin-bottom: 60px;
    gap: 30px;
}

section.under-entry dl:last-of-type {
    margin-bottom: 0;
}

section.under-entry dt {
    width: 235px;
    font-size: var(--font-24px);
    font-weight: var(--font-bold);
}

section.under-entry dt p {
    display: flex;
    gap: 10px;
}

section.under-entry dt span.required {
    background-color: var(--color-Orange);
    color: var(--color-Black);
    font-size: 16px;
    font-weight: var(--font-bold);
    padding: 1% 8px;
    display: flex;
    align-items: center;
}

section.under-entry dd {
    width: calc(100% - 265px);
    overflow: hidden;
}

section.under-entry dd a {
    color: var(--color-Black);
}

section.under-entry dd input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #B3B3B3;
    padding: 0 15px;
    font-size: var(--font-18px);
    font-family: var(--font-ZenMaru);
}

section.under-entry dd div.postcode p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

section.under-entry dd div.postcode p span.post-mark {
    font-size: var(--font-20px);
}

section.under-entry dd.radio input {
    width: 1em;
    height: 1em;
    padding: 0 0.5em 0 0;
}

section.under-entry dd.radio span.wpcf7-list-item-label {
    font-size: var(--font-20px);
}

section.under-entry dd.radio span.wpcf7-list-item {
    margin: 0 1em 0.5em 0;
}

section.under-entry dd.resume div.rireki-note {
    display: block;
    margin-bottom: 10px;
    font-size: var(--font-18px);
}

/* ↓ファイル(履歴書)のアップロード */

.codedropz-upload-handler {
    background-color: #FFF7EA;
}

section.under-entry .codedropz-upload-container {
    padding: 30px 20px;
}

section.under-entry .codedropz-upload-inner h3 {
    margin: 0;
    line-height: 1;
    font-size: var(--font-20px);
}

section.under-entry .codedropz-upload-inner span {
    display: block;
    padding: 8px 0;
}

section.under-entry .codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {
    display: block;
    box-sizing: border-box;
    width: 180px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 2px 10px 4px;
    font-size: var(--font-18px);
    color: var(--color-Black);
    background-color: var(--color-Orange);
}

section.under-entry .codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn:hover {
    opacity: 0.5;
}

/* ↑ここまでファイル(履歴書)のアップロード */

section.under-entry dd.text-area textarea {
    width: 100%;
    height: 300px;
    padding: 20px;
    border-radius: 5px;
    font-family: var(--font-ZenMaru);
    font-size: var(--font-18px);
    color: var(--color-Black);
    line-height: 1.6;
    border: 1px solid #B3B3B3;
}

div.submit-area {
    margin-top: 100px;
}

p.submit-text {
    text-align: center;
    margin-bottom: 25px;
    font-size: var(--font-18px);
}

input.wpcf7-submit {
    display: block;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    padding: 18px;
    font-size: var(--font-24px);
    font-weight: var(--font-bold);
    font-family: var(--font-ZenMaru);
    color: var(--color-Black);
    background-color: var(--color-Orange);
    cursor: pointer;
    transition: 0.5s;
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input.wpcf7-submit:hover {
    opacity: 0.5;
}

span.wpcf7-spinner {
    display: none;
}

/* 確認画面 */

section.under-confirm dl {
    justify-content: space-between;
    gap: 0;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-Orange);
    margin-bottom: 50px;
}

section.under-confirm dd {
    font-size: var(--font-24px);
    width: calc(100% - 280px);
}

section.under-confirm p.submit-text {
    margin-bottom: 20px;
}

section.under-confirm p.previous {
    text-align: center;
}

section.under-confirm p.previous input {
    border: 0;
    border-radius: 0;
    background-color: initial;
    font-size: var(--font-18px);
    color: var(--color-Black);
    padding: 0 0.5em;
    border-bottom: 1px solid var(--color-Orange);
    margin-bottom: 25px;
    cursor: pointer;
    transition: 0.3s;
}

section.under-confirm p.previous input:hover {
    color: var(--color-Orange);
}

/* thanksページ */

/* ↓共通 */

main.noneKv-main div.bgTop-white {
    margin-top: 150px;
}

main.noneKv-main div.under-layer {
    padding: 0 0 1%;
}

/* ↑ここまで共通 */

section.under-thanks {
    max-width: 1120px;
}

div.thanks-main h2 {
    font-size: 50px;
    font-weight: var(--font-bold);
    text-align: center;
    color: var(--color-Orange);
}

div.thanks-inner {
    margin: 50px 0;
}

div.thanks-inner p {
    margin-bottom: 10px;
    font-size: var(--font-18px);
    font-weight: var(--font-medium);
    letter-spacing: 1px;
}

div.thanks-inner p:last-child {
    margin-bottom: 0;
}

div.thanks-inner p br {
    display: none;
}

ul.thanks-note {
    border-radius: 10px;
    margin: 50px 0;
    padding: 50px;
    background-color: #FFF7EA;
}

ul.thanks-note li {
    font-size: var(--font-18px);
    font-weight: var(--font-medium);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-indent: -1em;
    padding-left: 1em;
}

ul.thanks-note li:last-child {
    margin-bottom: 0;
}

ul.thanks-note li::before {
    content: "※";
}

p.thanks-button a, p.page404-button a {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0px;
    font-size: var(--font-20px);
    font-weight: var(--font-bold);
    text-align: center;
    color: var(--color-Black);
    background-color: var(--color-Orange);
    border-radius: 10px;
}

p.thanks-button a:hover, p.page404-button a:hover {
    opacity: 0.5;
}

.wpcf7 form .wpcf7-response-output {
    margin-bottom: 0!important;
}


@media screen and (max-width: 1024px) {

    /* エントリーフォーム */

    section.under-entry dt {
        width: 195px;
    }

    section.under-entry dt span.required {
        padding: 1% 5px;
    }

    section.under-entry dd {
        width: calc(100% - 225px);
    }

    /* 確認画面 */

    section.under-confirm dd {
        width: calc(100% - 210px);
    }

    section.under-confirm div.submit-area {
        margin-top: 80px;
    }

    section.under-confirm p.submit-text {
        margin-bottom: 12px;
    }

    section.under-confirm p.previous input {
        margin-bottom: 20px;
    }

    /* thanksページ */

    /* ↓共通 */

    main.noneKv-main div.bgTop-white {
        margin-top: 100px;
    }

    /* ↑ここまで共通 */

    div.thanks-main h2 {
        font-size: 45px;
    }

}


@media screen and (max-width: 768px) {

    /* エントリーフォーム */

    div.entry-MainTitle {
        width: 80%;
    }

    div.entry-layer {
        padding: 0;
    }

    section.under-entry dl {
        display: block;
        margin-bottom: 40px;
    }

    section.under-entry dt {
        width: 100%;
        margin-bottom: 15px;
    }

    section.under-entry dt p {
        gap: 0.5em;
    }

    section.under-entry dt span.required {
        padding: 0.6% 4px 0.4%;
        font-size: 14px;
    }

    section.under-entry dd {
        width: 100%;
    }

    section.under-entry dd.radio span.wpcf7-list-item {
        display: block;
        margin: 0 0 0.8em 0;
    }

    section.under-entry dd.text-area textarea {
        height: 250px;
    }

    div.submit-area {
        margin-top: 50px;
    }

    p.submit-text {
        margin-bottom: 15px;
    }

    input.wpcf7-submit {
        padding: 12px;
    }

    /* 確認画面 */

    section.under-confirm dl {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    section.under-confirm dt {
        width: 100%;
        margin-bottom: 10px;
    }

    section.under-confirm div.submit-area {
        margin-top: 50px;
    }

    section.under-confirm p.submit-text {
        margin-bottom: 12px;
    }

    /* thanksページ */

    /* ↓共通 */

    main.noneKv-main div.bgTop-white {
        margin-top: 50px;
    }

    /* ↑ここまで共通 */

    div.thanks-main h2 {
        font-size: 32px;
    }

    div.thanks-inner {
        margin: 30px 0;
    }

    ul.thanks-note {
        margin: 30px 0;
        padding: 30px;
    }

    p.thanks-button a, p.page404-button a {
        padding: 10px 0px;
    }

}


@media screen and (max-width: 521px) {

    /* エントリーフォーム */

    section.under-entry dl {
        margin-bottom: 30px;
    }

    section.under-entry dt {
        margin-bottom: 10px;
    }

    section.under-entry dt span.required {
        padding: 1% 4px;
        font-size: 12px;
    }

    section.under-entry dd div.postcode p {
        gap: 5px;
        margin-bottom: 10px;
    }

    section.under-entry dd.text-area textarea {
        line-height: 1.4;
    }

    div.submit-area {
        margin-top: 40px;
    }

    /* 確認画面 */

    section.under-confirm dl {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    section.under-confirm div.submit-area {
        margin-top: 40px;
    }

    /* thanksページ */

    /* ↓共通 */

    main.noneKv-main div.bgTop-white {
        margin-top: 40px;
    }

    /* ↑ここまで共通 */

    div.thanks-main h2 {
        font-size: min(26px, 6.5vw);
    }

    div.thanks-inner {
        margin: 25px 0;
    }

    ul.thanks-note {
        margin: 25px 0 30px;
        padding: 25px;
    }

}


/*--------------
404
--------------*/

div.under-404-inner h2 {
    font-size: 150px;
    font-weight: var(--font-bold);
    text-align: center;
    color: var(--color-Orange);
    line-height: 1;
}

p.page404-text {
    margin: 50px 0;
    font-size: var(--font-20px);
    font-weight: var(--font-medium);
    text-align: center;
    line-height: 2;
}

p.page404-text br.sp {
    display: none;
}

@media screen and (max-width: 768px) {

    div.under-404-inner h2 {
        font-size: 100px;
    }

    p.page404-text {
        margin: 40px 0;
    }

    p.page404-text br.sp {
        display: block;
    }

}

@media screen and (max-width: 521px) {

    div.under-404-inner h2 {
        font-size: 80px;
    }

    p.page404-text {
        margin: 30px 0;
    }

}


/*--------------
/* footer
--------------*/

footer {
    position: relative;
}

div.footer-container {
    max-width: 1440px;
    width: 90%;
    margin: 150px auto 0;
}

div.footer-images {
	width: 45%;
	position: relative;
}

div.footer-image {
	width: 100%;
	padding-top: 20%;
}

div.footer-imageItem {
    position: relative;
    width: 34%;
}

/* ↓動き */

.katakata1 {
    animation: katakata1 steps(1) 10s infinite;
}
@keyframes katakata1 {
    0% {
        transform: rotate(5deg);
    }
    5%, 100% {
        transform: rotate(0);
    }
}

.katakata2 {
    animation: katakata2 steps(1) 10s infinite;
}
@keyframes katakata2 {
    16.66% {
        transform: rotate(5deg);
    }
    21.66%, 100% {
        transform: rotate(0);
    }
}

.katakata3 {
    animation: katakata3 steps(1) 10s infinite;
}
@keyframes katakata3 {
    33.33% {
        transform: rotate(5deg);
    }
    38.33%, 100% {
        transform: rotate(0);
    }
}

.katakata4 {
    animation: katakata4 steps(1) 10s infinite;
}
@keyframes katakata4 {
    50% {
        transform: rotate(5deg);
    }
    55%, 100% {
        transform: rotate(0);
    }
}

.katakata5 {
    animation: katakata5 steps(1) 10s infinite;
}
@keyframes katakata5 {
    66.66% {
        transform: rotate(5deg);
    }
    71.66%, 100% {
        transform: rotate(0);
    }
}

.katakata6 {
    animation: katakata6 steps(1) 10s infinite;
}
@keyframes katakata6 {
    83.33% {
        transform: rotate(5deg);
    }
    88.33%, 100% {
        transform: rotate(0);
    }
}

/* ↑ここまで動き */

div.footer-imageItem:nth-child(2),
div.footer-imageItem:nth-child(3),
div.footer-imageItem:nth-child(4),
div.footer-imageItem:nth-child(5),
div.footer-imageItem:nth-child(6) {
    position: absolute;
    bottom: 0;
}

div.footer-imageItem:nth-child(2) {
    right: 49%;
}

div.footer-imageItem:nth-child(3) {
    right: 38%;
}

div.footer-imageItem:nth-child(4) {
    right: 27%;
}

div.footer-imageItem:nth-child(5) {
    right: 13%;
}

div.footer-imageItem:nth-child(6) {
    right: 0;
}

div.footer-imageDeco {
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    animation: rotation 6s linear infinite;
}

p.footer-copy {
    padding: 40px 0;
    font-family: var(--font-ZenMaru);
    font-size: 14px;
    font-weight: var(--font-bold);
    color: #000;
    text-align: center;
}

/* 追尾ボタン */

/* 追従ボタンの初期設定 */
div.tracking-button {
    display: block;
    position: fixed;
    right: -35%;
    bottom: 20px; /* 初期位置を画面外に隠す */
    width: 100px;
    z-index: 1;
    transition: 0.5s;
    visibility: hidden;
}

/* ボタン内要素のスタイル */
div.tracking-button-inner div.circle-image {
    animation: rotation 6s linear infinite;
}

div.tracking-button-inner p {
    font-size: 18px;
    line-height: 1.2;
}

div.tracking-button-inner p span {
    font-size: 90%;
}

/* ボタンが表示される状態 */
div.tracking-button.chaseButtonScroll {
    right: 20px;
    transition: 0.5s;
    visibility: initial;
}

/* TOPページ追尾ボタン */
div.tracking-TopButton {
    display: none;
}

/* 下層ページ追尾ボタン */
div.pageTop-button {
    width: 100px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

div.pageTop-button p {
    width: 25%;
}

div.pageTop-button div.circle-image {
    animation: rotation 6s linear infinite;
}


@media screen and (max-width: 1024px){

    div.footer-container {
        margin: 100px auto 0;
    }

    div.footer-images {
        width: 50%;
    }

    /* TOPページ追尾ボタン */

    div.tracking-TopButton {
        display: block;
        width: 140px;
    }

}


@media screen and (max-width: 768px) {

    div.footer-container {
        margin: 150px auto 0;
    }

    div.footer-images {
        width: 60%;
    }

    /* 下層ページ追尾ボタン */

    div.pageTop-button {
        width: 80px;
        bottom: 14vw;
    }

}


@media screen and (max-width: 521px) {

    div.footer-container {
        margin: 100px auto 0;
    }

    div.footer-images {
        width: 70%;
    }

    p.footer-copy {
        padding: 20px 0;
        font-size: 10px;
    }

    /* 追尾ボタン */

    div.tracking-Button {
        bottom: 10px;
    }

    div.tracking-button-inner p {
        font-size: 12.5px;
    }

    div.tracking-button-inner p span {
        font-size: 80%;
    }

    /* ボタンが表示される状態 */
    div.tracking-button.chaseButtonScroll {
        right: 5px;
        bottom: 10px;
    }

    /* TOPページ追尾ボタン */

    div.tracking-TopButton {
        width: 100px;
    }

    /* 下層ページ追尾ボタン */

    div.pageTop-button {
        width: 65px;
    }

}