/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

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

audio,
canvas,
video {
    display: block;
    filter: drop-shadow(0px 0px #000);
    width: 100%;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}


/* ==========================================================================
            Base
            ========================================================================== */

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    font-size: 67.5%;
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--main-r);
    font-family: "NotosansJP-R", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

body {
    margin: 0;
    position: relative;
    z-index: 0;
    -webkit-font-smoothing: antialiased;
    color: var(--txt2);
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
    counter-reset: number 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}


/* ==========================================================================
              Links
              ========================================================================== */

a {
    background: transparent;
}

a:focus {
    outline: 0;
}

a:active,
a:hover {
    outline: 0;
}

a,
a:visited {
    color: inherit;
    transition: all 0.3s;
    text-decoration: none;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
    opacity: 1;
}

a:link,
a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}


/* ==========================================================================
              Typography
              ========================================================================== */
@font-face {
    font-family: "NotosansJP-Black";
    src: url('../fonts/NotosansJP-Black.ttf') format('truetype'),
        url('../fonts/NotosansJP-Black.woff') format('woff');
}

@font-face {
    font-family: "NotosansJP-B";
    src: url('../fonts/NotosansJP-B.ttf') format('truetype'),
        url('../fonts/NotosansJP-B.woff') format('woff');
}

@font-face {
    font-family: "NotosansJP-R";
    src: url('../fonts/NotosansJP-R.ttf') format('truetype'),
        url('../fonts/NotosansJP-R.woff') format('woff');
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
}

#services_item h2 {
    color: var(--main);
}

address {
    font-style: normal;
}

.ani {
    opacity: 0;
}

.ani.is-active {
    opacity: 1;
}

.ani p,
.ani span {
    overflow: hidden;
}

.ani.is-active span {
    animation: posY-110per-up 0.6s ease-out both;
}

.ani.is-active p:first-child,
.ani.is-active span:first-child {
    margin: 0;
}

@keyframes posY-110per-up {
    from {
        opacity: 0;
        transform: translateY(110%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ani span {
    display: block;
}

@keyframes posY-100-up {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    overflow: hidden;
    display: block;
}

.slide-in_inner {
    display: block;
}

.leftAnime {
    opacity: 0;
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fadeTrigger {
    transition-duration: 0.5s;
    transition-property: opacity, transform;
    transform: translate3d(0, 50px, 0);
    opacity: 0;
}

.fadeTextAppear {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* ==========================================================================
             Lists
           ========================================================================== */

dl,
ol,
ul {
    margin: 0;
}

dd {
    margin: 0;
}

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

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}

ul,
li {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}


/* ==========================================================================
             Embedded content
           ========================================================================== */

img:not(.post-contents img) {
    width: 100%;
    height: 100%;
    border: 0;
    image-rendering: -webkit-optimize-contrast;
    display: block;
    object-fit: cover;
}

svg:not(:root) {
    overflow: hidden;
}


/* ==========================================================================
              Figures
              ========================================================================== */

figure {
    margin: 0;
}


/*********************
           GENERAL STYLES
           *********************/

:root {
    --main: #145d3a;
    --main-r: #ffffff;
    --accent: #111111;
    --txt: #111111;
    --txt2: #333333;
    --bg: #F8F8F8;
    --bg2: #F6FFFA;
    --bg3: #E9FFF3;
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --sm: 1.2rem;
    --md: 1.4rem;
    --lg: 1.8rem;
    --x2: 2rem;
    --x25: 2.5rem;
    --x3: 3rem;
    --x35: 3.5rem;
    --x4: 4rem;
    --x5: 5rem;
    --en: "Montserrat", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
    --width: 1400;
}


/*html,
   body,
   a {
       cursor: none;
   }
   */

#cursor {
    pointer-events: none;
    position: fixed;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--main);
    transform: translate(-100px, -100px);
    border-radius: 50%;
    z-index: 999;
}

#stalker {
    pointer-events: none;
    position: fixed;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    background: rgba(88, 88, 88, 0.5);
    border-radius: 50%;
    transform: translate(-100px, -100px);
    transition: .15s;
    transition-timing-function: ease-out;
    z-index: 998;
}

#stalker.is-stalker {
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    transition: .15s;
    background: rgba(88, 88, 88, 0.5);
}

/*********************
           LAYOUT & GRID STYLES
           *********************/

.ib {
    display: inline-block;
}

.m-none {
    margin: 0 !important;
}

.pc-hide {
    display: none !important;
}

.l-lr {
    padding-right: 8.33333vw;
    padding-left: 8.33333vw;
}

.l-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.l-tb {
    margin-top: 10rem;
    margin-bottom: 10rem;
}

.l-tb-p {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.l-t {
    margin-top: 10rem;
}

.l-b {
    margin-bottom: 10rem;
}

.l-h {
    line-height: 2;
}

.bg {
    background: var(--bg);
}

.bg2 {
    background: var(--bg2);
}

.bg3 {
    background: var(--bg3);
}

.reverse {
    flex-direction: row-reverse;
}

.accent-chenge {
    color: var(--accent);
}

.accent-bottom {
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
}

.align-c {
    text-align: center;
}

.align-l {
    text-align: left;
}

.align-r {
    text-align: right;
}

.overlay {
    position: relative;
    display: block;
}

.overlay:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(88, 88, 88, 0.5);
    z-index: 1;
}

.st-l,
.st-l span {
    font-size: 3rem;
}

.st-m,
.st-m span {
    font-size: 2rem;
}

.sec-title-jp,
.sec-title-jp p,
.sec-title-jp span {
    font-size: 4rem;
    color: var(--main);
    margin-bottom: 2rem;
    font-family: "NotosansJP-Black", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1.5;
}

.sec-title,
.hero-content .page-subtitle-en {
    color: #82BA9F;
    font-size: 1.8rem;
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

#page__material .hero-content #services_item .slide-in_inner {
    height: 100%;
}

.hero-content #services_item .slide-in_inner {
    height: 50rem;
}

.sec-text {
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 2rem;
}

.header-text {
    margin-top: 2rem;
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.l-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    align-items: center;
}

.l-flex .flex-l,
.l-flex .flex-r {
    width: calc(100% / 2 - 2.5rem);
}

.l-flex .flex-r .btn-wrap a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.article-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.article-wrap article {
    width: calc(100% / 3 - 3.3333333rem);
}

.article-wrap article,
.services-wrap .services-item,
.tab__item {
    transition: all .3s;
}

.article-wrap article:hover,
.services-wrap .services-item:hover,
.tab__item:hover {
    opacity: .6;
}

.btn-wrap {
    text-align: center;
    margin-top: 5rem;
}

.btn-wrap a,
.btn-wrap button,
.term-list a {
    display: inline-block;
    width: 250px;
    background: var(--main);
    color: var(--main-r);
    text-align: center;
    line-height: 4;
    border-radius: 200px;
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
}

.btn-wrap a,
.btn-wrap button,
.term-list a,
.contact-btn a {
    transition: all .3s;
}

.btn-wrap a:hover,
.btn-wrap button:hover,
.term-list a:hover,
.contact-btn a:hover {
    opacity: .6;
}

.term-list a {
    width: 100%;
    background: var(--main-r);
    color: var(--main);
    border: 1px solid var(--main);
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 2.5;
}

.term-list {
    gap: 1rem;
    margin-bottom: 5rem;
}

.term-list .current-cat a {
    background: var(--main);
    color: var(--main-r);
}

.column-term li a {
    padding: .5rem 2rem;
}

.column-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.column-flex-item {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.column-flex article {
    width: calc(100% / 3 - 3.3333333rem);
}

.column-flex-item article {
    width: calc(100% / 3 - 3.3333333rem);
}

.swiper-wrapper {
    user-select: none;
}

.single-template .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide,
.column-flex article a,
.column-flex-item article a,
.single-template .related-post-wrap ul li .post-thumbnail {
    transition: all .2s;
}

.column-flex article a:hover,
.column-flex-item article a:hover,
.single-template .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide:hover,
.single-template .related-post-wrap ul li .post-thumbnail:hover {
    opacity: .6;
}

.column-flex-item article .post-thumbnail img {
    object-fit: contain;
}

#ez_toc_widget_sticky-7 .ez-toc-widget-sticky-list li a,
.ez-toc-widget-sticky-container-ez_toc_widget_sticky-7 .ez-toc-widget-sticky-list li a {
    font-size: 13px !important;
}

.error404 #content {
    padding-top: 10rem;
}

#post_not_inner h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

#archive_wrap .column-flex-item article .post-thumbnail img {
    object-fit: cover;
}

article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
.related-post .post-thumbnail {
    height: 35rem;
}

#template_wrap {
    padding: 0 5rem;
}

.wp-block-list,
.wp-block-list li {
    list-style: inherit;
    margin-left: inherit;
}

.wp-block-list {
    padding-left: 2rem;
}

.template-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.post-type-archive-template .term-list,
.tax-powerpoint_category .term-list {
    margin: 0;
    width: 20%;
    border-right: 1px solid #ddd;
    padding: 5rem 0;
    position: sticky;
    top: 120px;
    overflow: auto;
    height: 100vh;
}

.post-type-archive-template .column-flex,
.tax-powerpoint_category .column-flex {
    width: 80%;
    padding: 5rem 0;
    padding-left: 5rem;
}

.post-type-archive-template .column-flex-item,
.tax-powerpoint_category .column-flex-item {
    gap: 3rem;
}


.post-type-archive-template .column-flex-item article,
.tax-powerpoint_category .column-flex-item article {
    width: calc(100% / 4 - 2.25rem);
}

.post-type-archive-template .term-list a,
.tax-powerpoint_category .term-list a {
    width: 100%;
    background: var(--main-r);
    color: var(--main);
    border: initial;
    text-align: left;
}

#template .post-thumbnail {
    height: max-content !important;
}

.bg-main {
    background: var(--main);
    color: var(--main-r);
    padding-top: 20rem;
    padding-bottom: 20rem;
}

.title-wrap {
    margin-bottom: 5rem;
}

.mb_s {
    margin-bottom: 1rem;
}

.mb_sm {
    margin-bottom: 2rem;
}

.mb_m {
    margin-bottom: 3rem;
}

.mb_mm {
    margin-bottom: 4rem;
}

.mb_l {
    margin-bottom: 5rem;
}

.mt_s {
    margin-top: 1rem;
}

.mt_sm {
    margin-top: 2rem;
}

.mt_m {
    margin-top: 3rem;
}

.mt_mm {
    margin-top: 4rem;
}

.mt_l {
    margin-top: 5rem;
}

.img-r {
    overflow: hidden;
    border-radius: 25px;
}

/******************************************************************
           TYPOGRAPHY STYLES
           ******************************************************************/

h1,
h2,
h3,
h4,
h5 {
    text-rendering: optimizelegibility;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    text-decoration: none;
}

h1 {
    font-size: 2.5rem;
    line-height: 1;
}

h2 {
    font-size: 2rem;
    line-height: 1.5;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.5;
}

h4 {
    font-size: 1.6rem;
    line-height: 1.5;
}

h5 {
    font-size: 1.6rem;
    line-height: 1.5;
}

p,
a,
span,
td,
th,
li,
address,
dt,
dd {
    font-size: 1.6rem;
    font-weight: 400;
}


/*********************
           HEADER STYLES
           *********************/
#logo_wrap,
#footer_logo {
    width: 60px;
}

#page__material #logo_wrap,
#page__template #logo_wrap,
#page__download #logo_wrap,
#page__voice #logo_wrap,
#page__column_material #logo_wrap,
#page__sample #logo_wrap,
.single-column_material #logo_wrap,
.tax-column_m_cat #logo_wrap,
.single-voice #logo_wrap,
.single-template #logo_wrap,
#page__policyl #logo_wrap,
.tax-powerpoint_category #logo_wrap,
#page__complete-download #logo_wrap,
#page__complete-material #logo_wrap {
    width: 120px;
}

#page__material #footer_logo,
#page__template #footer_logo,
#page__download #footer_logo,
#page__voice #footer_logo,
#page__column_material #footer_logo,
#page__sample #footer_logo,
.single-column_material #footer_logo,
.tax-column_m_cat #footer_logo,
.single-voice #footer_logo,
.single-template #footer_logo,
#page__policyl #footer_logo,
.tax-powerpoint_category #footer_logo,
#page__complete-download #footer_logo {
    width: 160px;
}

.logo-wrap a {
    display: block;
}

.logo-wrap a svg {
    width: 150px;
}

.logo-wrap .logo-g {
    fill: var(--main-r);
}

.logo-wrap .logo-g:not(.home .logo-wrap .logo-g),
.is-top .logo-wrap .logo-g {
    fill: var(--main);
}

.logo-wrap p {
    font-size: 1.2rem;
    line-height: 1;
}

#logo {
    margin: 0;
    width: 180px;
    height: auto;
    line-height: 1;
}

#header {
    width: calc(100% - 4rem);
    z-index: 10;
    box-sizing: border-box;
    position: fixed;
    transition: all 0.3s ease-out;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 110px;
    z-index: 99999999;
    background: var(--main-r);
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    border-radius: 10rem;
    padding: 0 5rem;
    box-shadow: 0 3px 20px 0 rgba(25, 25, 25, .2);
}

#header.is-top {
    background: var(--main-r);
    box-shadow: 0 0 5px 0px #ddd;
}

/*********************
           NAVIGATION STYLES
           *********************/

#menu {
    width: 100%;
}

.nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
}

.nav__list li a {
    border-bottom: none;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    transition: all 1s;
}

.nav__list li a:hover {
    opacity: .5 !important;
}

.is-top #menu ul li a {
    height: 70px;
}

.toggle {
    display: none;
}

.drop-menu {
    position: relative;
    padding-right: 2rem;
}

.drop-menu::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid var(--txt);
    border-bottom: 0;
}

.sub-menu {
    background-color: var(--main-r);
    top: 5rem;
    left: 0;
    position: absolute;
    top: 100%;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform .3s;
    width: max-content;
    z-index: 1;
    padding: 2rem;
}

.sub-menu li a {
    font-size: 1.4rem;
    margin: 1rem 0;
    border-bottom: 1px solid #ddd !important;
}

.sub-menu li:last-child a {
    margin: 0;
}

.drop-menu:hover .sub-menu {
    transform: scaleY(1);
}

.contact-btn a {
    background: var(--main);
    color: var(--main-r);
    padding: 1rem 2rem;
    border-radius: 10px;
}

/*********************
           FOOTER STYLES
           *********************/

#footer_wrap {
    width: 100vw;
    height: 200px;
    position: relative;
    background: #f7f7f7;
    text-align: center;
}

#footer_wrap h3 {
    position: relative;
    top: 50%;
    transform: translate3d(0, -61%, 0);
    display: inline-block;
    font-size: 7.5rem;
}

.footer {
    position: relative;
}

#footer_inner {
    position: relative;
    background: var(--main);
    color: var(--main-r);
}

#footer_content {
    display: flex;
    padding-bottom: 100px;
    gap: 5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-item:first-child {
    width: calc(30% - 2.5rem);
    display: block;
}

.footer-item {
    width: calc(70% - 2.5rem);
    display: flex;
    gap: 5rem;
    justify-content: flex-end;
}

.footer-item .nav__list {
    display: block;
}

.footer-item .nav__list li a {
    font-size: 1.4rem;
}

.footer-item .nav__list li {
    margin-bottom: 2rem;
}

.footer-item .nav__list li:last-child {
    margin-bottom: 0;
}

#footer_logo {
    margin-bottom: 2rem;
}

#footer_bottom a,
#footer_bottom p {
    color: var(--main-r);
    font-size: 12px;
}

#copyright {
    text-align: center;
    font-size: 12px;
}

/*********************
           POSTS & CONTENT STYLES
           *********************/

#page__material #services_item.l-flex {
    gap: 0;
}

#page__material #services_item.l-flex .flex-r {
    width: 55%;
}

#page__material #services_item.l-flex .flex-l {
    width: 45%;
}

#page__material #services_item.l-flex .flex-r img {
    object-fit: contain;
}

.download-swiper {
    margin-bottom: 10rem;
}

.tab-link a {
    position: relative;
}

.tab-link a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    background: url(../images/tab-link.svg) no-repeat center center / contain;
    width: 12px;
    height: 12px;
}

.ez-toc-widget-sticky-container nav {
    max-height: initial !important;
    overflow: initial !important;
}

.ez-toc-widget-sticky-container ul li a {
    position: relative;
}

.ez-toc-widget-sticky-container ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--main);
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.ez-toc-widget-sticky-container ul li a:hover::after {
    transform: scale(1, 1);
}

.ez-toc-widget-sticky-container ul li a:hover {
    opacity: .6;
}

.footer-item .tab-link a:before {
    background: url(../images/tab-link-r.svg) no-repeat center center / contain;
}

.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}

.flow-wrap li {
    list-style-type: none;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5rem;
    padding-left: 5rem;
    margin-bottom: 5rem;
    position: relative;
}

.flow-wrap .flow-item::before {
    color: var(--main);
    counter-increment: number 1;
    content: "0" counter(number);
    display: block;
    font-size: 2rem;
    left: 0;
    position: absolute;
    top: 2px;
    font-family: "NotosansJP-Black", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1;
}

.flow-wrap .flow-item::after {
    background: var(--main);
    content: "";
    display: block;
    height: calc(100% - 40px);
    left: 11px;
    position: absolute;
    bottom: 0px;
    width: 1px;
}

.flow-wrap li:last-child .flow-item::after {
    height: 0;
}

.flow-wrap li:last-child {
    border-bottom: 0;
}

.flow-item {
    display: flex;
    flex-wrap: wrap;
}

.flow-item h5 {
    width: 30%;
}

.flow-item p {
    width: 70%;
}

#page__mvv-purpose #page_header,
#page__startup-plan #page_header,
#page__business-plan #page_header,
#page__consulting #page_header,
#page__website #page_header,
#page__logo #page_header,
#page__business-card #page_header,
#page__design #page_header,
#page__material #page_header {
    height: 100%;
    padding: 20rem 0;
    background: url(../images/mv_bg.png) no-repeat top center / cover;
}

#page__material #services_item .l-flex {
    gap: 3rem;
}

#services_item h2 p,
#services_item h2 p span {
    font-size: 5rem;
    font-family: NotosansJP-Black, 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
}

#page__material #page_header .btn-wrap a {
    padding: 0 2rem;
    border: 2px solid var(--main);
}

#page__material #page_header .btn-wrap:last-child a,
.sample-btn a,
#price_cta_button .btn-wrap:last-child a {
    background: var(--main-r);
    color: var(--main);
}

.sample-btn a,
#price_cta_button .btn-wrap a {
    border: 2px solid var(--main) !important;
}

.reasons-wrap,
.features-wrap {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reasons-item,
.features-item {
    width: calc(100% / 4 - 1.5rem);
    background: var(--main-r);
    padding: 3rem;
}

.features-item {
    width: calc(100% / 3 - 1.3333333rem);
}

.reasons-item h5,
.features-item h5 {
    font-size: 2rem;
    margin: 1rem 0;
    text-align: center;
}

.over-l {
    flex: 1;
    margin-left: calc(50% - 50vw);
}

.over-r {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

#page_header {
    padding: 20rem 0 10rem 0;
    position: relative;
}

.hero-bg {
    height: 100%;
}

.hero-content {
    width: 100%;
}

#page__contact .hero-content,
#page__column .hero-content,
.tax-column_cat .hero-content,
#page__column_material .hero-content,
.tax-column_m_cat .hero-content,
#page__voice .hero-content,
#page__complete .hero-content,
#page__template .hero-content,
#page__sample .hero-content,
#page__download .hero-content,
#page__policy .hero-content,
#page__policyl .hero-content,
.tax-powerpoint_category .hero-content,
#page__complete-download .hero-content,
#page__complete-material .hero-content {
    text-align: center;
}

#mv_item .sec-text,
#services_item .sec-text,
#mv_item .sec-text span,
#services_item .sec-text span {
    font-size: 2rem;
    margin-top: 1rem;
}

#top_section01 p,
#top_section02 p,
#top_section03 p,
#mvv_sec01 p,
#mvv_sec02 p,
#mvv_sec03 p {
    font-size: 1.8rem;
}

#top_services .services-wrap a:first-child h5 {
    position: relative;
}

#top_services .services-wrap a:first-child h5:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    background: url(../images/tab-link.svg) no-repeat center center / contain;
    width: 16px;
    height: 16px;
}

.breadcrumb__item span {
    text-transform: uppercase;
}

.breadcrumb__item {
    display: inline;
    margin-right: 2rem;
    position: relative;
}

.breadcrumb__item:after {
    content: "／";
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translatey(-50%);
    font-size: 13px;
}

.breadcrumb__item:last-child {
    padding-right: 0rem;
}

.breadcrumb__item:last-child:after {
    content: "";
}

.breadcrumb__item a {
    transition: opacity .6s;
}

.breadcrumb__item a:hover {
    opacity: .6;
}

#single_wrap {
    padding-top: 20rem;
}

#single_wrap .post-contents p {
    font-size: 1.8rem;
}

#single_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

#single_wrap #single_l {
    width: calc(70% / 1 - 25px);
}

#single_wrap #single_r {
    width: calc(30% / 1 - 25px);
}

#single_r aside,
#post_mokuji {
    background: var(--bg3);
    position: sticky;
    top: 170px;
    padding: 2rem;
}

#post_mokuji {
    margin-top: 5rem;
    position: initial;
}

.single img {
    height: auto;
    max-width: 100%;
}

#news__pager {
    margin-top: 5rem;
}

#news__pager .page-numbers {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.news-list article {
    border-top: 1px solid #CFCFCF;
}

.news-list article:last-child {
    border-bottom: 1px solid #CFCFCF;
}

.news-list article a {
    display: block;
    padding: 30px 0;
}

.news-list article a div {
    display: flex;
    gap: 3rem;
    align-items: center;
}

#blog__pager ul.page-numbers {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
    width: 50px;
    height: 50px;
    line-height: 1;
    border: 1px solid var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.pagination .page-numbers li span {
    background: var(--main);
    color: var(--main-r);
    border: 1px solid var(--main);
}

.post-title {
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: left;
    margin-bottom: 0 !important;
    font-size: 2rem;
    margin-top: 1rem;
}

.single .post-title {
    margin: 2rem 0 !important;
    -webkit-line-clamp: initial;
    font-size: 3rem;
    line-height: 1.3;
    border-bottom: 1px dotted;
    padding-bottom: 1rem;
    color: var(--main);
}

#ez_toc_widget_sticky-7 .ez-toc-widget-sticky-container ul.ez-toc-widget-sticky-list li.active,
.ez-toc-widget-sticky-container-ez_toc_widget_sticky-7 ul.ez-toc-widget-sticky-list li.active {
    background-color: initial !important;
}

.post-time {
    color: #3A3A3A;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-category {
    font-size: var(--sm);
    background: var(--main);
    color: var(--main-r);
    padding: 5px 10px;
    line-height: 1;
    display: inline-block;
}

.post-time,
.post-category {
    white-space: nowrap;
}

.single .post-contents h2,
.single .post-contents h3,
.single .post-contents h4,
.single .post-contents h5 {
    margin-top: 50px;
    margin-bottom: 10px;
}

.single .post-contents h2 {
    padding-left: 1rem;
    border-left: 3px solid var(--main);
}

.single .post-contents h3 {
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--main);
}

.single .post-contents p,
.single .post-contents figure {
    margin-bottom: 20px;
}

.post-contents a {
    color: var(--main);
    font-family: "NotosansJP-B", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;

}

.post-contents a:hover {
    border-bottom: 1px solid var(--main);
}

.related-post-wrap {
    margin-top: 20rem;
}

.related-post-wrap h4 {
    font-size: 2.5rem;
    border-left: 3px solid var(--main);
    padding-left: 1rem;
    margin-bottom: 3rem;
}

.related-post-wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.related-post-wrap ul li {
    width: calc(100% / 2 - 2.5rem);
}

.related-post .post-title {
    font-size: 2rem;
    color: var(--txt);
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    padding: 0;
    border-bottom: initial;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
}

.single-title,
.page-title,
.entry-title {
    margin: 0;
}

#archive_news_inner .news-list {
    max-width: 960px;
    margin: 0 auto;
}

#message_inner {
    align-items: initial;
}

.message-text {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 5rem;
}

#message_inner .flex-r {
    flex: 1;
    margin-right: calc(50% - 50vw);
}

#message .flex-r div {
    height: 100%;
}

.service-flex {
    align-items: initial;
    gap: 3rem;
}

.service-item {
    width: calc(100% / 4 - 2.25rem);
    background: var(--bg);
    padding: 2rem;
    border-radius: 25px;
}

.service-item h5 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.service-item ul li {
    margin: 1rem 0;
    padding-bottom: 1rem;
    color: var(--txt);
}

.service-item ul li:hover {
    border-bottom: 2px solid var(--main);
    color: var(--main);
}

.main-slider {
    display: none;
}

.main-slider--active {
    display: flex;
    flex-wrap: wrap;
}

.main-slider .swiper-slide img {
    object-fit: contain;
}

.main-slider .swiper-slide {
    border: 3px solid var(--txt);
}

#works .swiper-container {
    width: 45% !important;
    overflow: hidden !important;
    position: relative;
    padding-bottom: 10rem;
    height: max-content;
}

.swiper-button {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

#works .swiper-button-next,
#works .swiper-button-prev {
    top: initial;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0;
    position: relative;
    left: initial;
    right: initial;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--main);
    border-radius: 100px;
}

.swiper-button-prev:before,
.swiper-button-next:before {
    content: "" !important;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 20px;
    width: 20px;
}

.swiper-button-next:after {
    content: "" !important;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 20px;
    height: auto;
    background: url(../images/arrow.svg) no-repeat center / contain;
}

.swiper-button-prev:after {
    content: "" !important;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 20px;
    height: auto;
    background: url(../images/arrow_l.svg) no-repeat center / contain;
}

.arrow-wrap {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: calc(12rem + 50px);
}

.arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--main);
    line-height: 1;
    position: relative;
    width: 2px;
    height: 2px;
    background: var(--main);
}

.arrow-right::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 5px solid var(--main);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}

.tab {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.tab__item {
    width: calc(100% / 6 - 1.7rem);
    cursor: pointer;
    border: 2px solid var(--txt);
}

.tab__item img {
    object-fit: contain !important;
}

.price-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.price-item {
    width: calc(100% / 3 - 2rem);
    background: var(--main-r);
    padding: 5rem;
    text-align: center;
    position: relative;
}

.price-item h5 {
    font-size: 2rem;
    background: var(--main);
    color: var(--main-r);
    border-radius: 200px;
    display: inline-block;
    padding: 1rem 2rem;
    width: 80%;
}

.price-item h6 {
    font-size: 5rem;
    margin: 1rem 0 3rem 0;
    color: var(--main);
}

#price_cta {
    margin-top: 5rem;
    padding: 5rem;
    background: var(--main-r);
}

#price_cta_button {
    justify-content: center;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
    border-bottom: 1px solid var(--main);
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 2rem 0;
    color: var(--txt);
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--main);
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--main);
    border: 1px solid var(--main);
}

.accordion button .accordion-title {
    padding: 1rem 0;
    display: block;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--main);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    margin: 2em 0;
}

.faq-q {
    font-size: 2.5rem;
    display: inline-block;
    margin-right: 1rem;
    color: var(--main);
}

.faq-a {
    font-size: 1.6rem;
    display: inline-block;
    margin-right: 1rem;
}

.form .file {
    margin-bottom: 10px;
}

.form .file:last-child {
    margin-bottom: 2rem;
}

.single-template .slider {
    height: 80vh;
}

.single-template.slider-thumbnail {
    height: 20vh;
}

.single-template .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
    width: 25%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.single-template .btn-wrap a {
    width: 100%;
    border-radius: 10px;
}

.single-template .related-post-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 5rem;
}

.single-template .related-post-wrap ul {
    gap: 3rem;
}

.single-template .related-post-wrap ul li {
    width: calc(100% / 6 - 2.5rem);
}

.single-template .related-post-wrap ul li .post-thumbnail {
    height: auto;
}

.template-text {
    margin-top: 1rem;
}

.slider-thumbnail {
    position: relative;
    margin-top: 3rem;
}

.slider-thumbnail .swiper-button-prev,
.slider-thumbnail .swiper-button-next {
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    margin: 0;
}

#policy h2 {
    font-size: 2rem;
    margin: 3rem 0 1rem 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.sml {
    font-size: 13px;
    margin-bottom: 2rem;
}

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

    article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
    .related-post .post-thumbnail {
        height: 30rem;
    }
}

@media screen and (max-width:1600px) {
    .price-item h6 {
        font-size: 4rem;
    }

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 3.5rem;
    }

    #page__material #services_item.l-flex .flex-r,
    #page__material #services_item.l-flex .flex-l {
        width: 50%;
    }

    .service-item h5 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width:1400px) {
    .l-lr {
        padding-right: 5vw;
        padding-left: 5vw;
    }

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 3rem;
    }

    article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
    .related-post .post-thumbnail {
        height: 25rem;
    }

    .post-type-archive-template .term-list,
    .tax-powerpoint_category .term-list {
        padding: 2rem 0;
        position: initial;
    }

    .term-list a {
        padding: 0;
    }

    .price-item h6 {
        font-size: 3.5rem;
    }

    /*********************
           HEADER STYLES
           *********************/
}


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

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 3rem;
    }

    #services_item h2 p,
    #services_item h2 p span {
        font-size: 4rem;
    }

    .reasons-item h5,
    .features-item h5 {
        font-size: 1.6rem;
    }

    .post-title {
        font-size: 1.6rem;
    }

    article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
    .related-post .post-thumbnail {
        height: 20rem;
    }

    .btn-wrap a,
    .btn-wrap button,
    .term-list a {
        line-height: 3;
    }

    .footer-item:first-child {
        width: calc(30% - 2.5rem);
    }

    .footer-item {
        width: calc(70% - 2.5rem);
    }

    p,
    a,
    span,
    td,
    th,
    li,
    address,
    dt,
    dd {
        font-size: 1.4rem;
    }

    .hero-content .btn-wrap a,
    .hero-content .btn-wrap button,
    .term-list a {
        display: inline-block;
        width: 100%;
    }

    .hero-content #services_item .slide-in_inner {
        height: 35rem;
    }

    #page__material #services_item .l-flex {
        gap: 1rem;
    }

    .message-text {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .price-item h5 {
        font-size: 1.6rem;
    }

    .price-item {
        padding: 4rem;
    }

    .price-item h6 {
        font-size: 3rem;
    }

    p,
    a,
    span,
    td,
    th,
    li,
    address,
    dt,
    dd {
        font-size: 14px;
    }

    .l-tb-p {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .post-type-archive-template .column-flex,
    .tax-powerpoint_category .column-flex {
        width: 80%;
        padding: 3rem 0;
        padding-left: 3rem;
    }

    .post-type-archive-template .column-flex-item,
    .tax-powerpoint_category .column-flex-item {
        gap: 3rem;
    }

    .tab__item {
        width: calc(100% / 4 - 1.5rem);
    }

    .service-item {
        width: calc(100% / 2 - 1.5rem);
    }

    /*********************
           HEADER STYLES
           *********************/
    .nav__list {
        gap: 2rem;
    }

    .nav__list li a {
        font-size: 14px;
    }

    #logo {
        width: 150px;
    }

}

@media screen and (max-width: 1300px) {
    .nav__list li a {
        font-size: 1.4rem;
    }

    .service-item h5 {
        font-size: 1.4rem;
    }

    .service-item ul li a {
        font-size: 1.4rem;
    }
}

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

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 2.7rem;
    }

    #mv_item .sec-text,
    #services_item .sec-text,
    #mv_item .sec-text span,
    #services_item .sec-text span {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 1100px) {
    .nav__list li a {
        font-size: 13px;
    }

    .nav__list {
        gap: 1rem;
    }
}

@media screen and (max-width:1024px) {
    .toggle span {
        border-bottom: solid 2px var(--main);
    }

    .toggle.active span {
        border-bottom: solid 2px var(--main);
    }

    .is-top-sp #header_inner {
        height: 50px;
    }

    .nav__list {
        display: block;
    }

    #menu ul li a {
        padding: 1rem 3rem;
        text-decoration: none;
    }

    #menu ul li {
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        margin-bottom: 2rem;
    }

    #menu ul li.contact-btn {
        border-left: 0;
        border-right: 0;
    }

    #menu ul li:last-child {
        margin-bottom: 0;
    }

    #menu #menu-nav_inner {
        display: block;
        margin: 0 auto;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        transform: translate3d(-10px, 0, 0) translate(-50%, -50%);
    }

    #nav_inner {
        text-align: center;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        height: 100vh;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        -webkit-transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
        transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
    }

    #menu.open #nav_inner {
        pointer-events: auto;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    #menu-nav_inner {
        opacity: 0;
        -webkit-transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
        transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
    }

    #menu.open #menu-nav_inner {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) translate(-50%, -50%);
        transform: translate3d(0, 0, 0) translate(-50%, -50%);
        -webkit-transition-delay: 0.7s;
        transition-delay: 0.7s;
    }

    .toggle {
        display: block;
        width: 70px;
        height: 70px;
        cursor: pointer;
        z-index: 3;
        top: 0;
        position: relative;
    }

    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .toggle span:nth-child(1) {
        top: 30px;
    }

    .toggle span:nth-child(2) {
        top: 38px;
    }

    .toggle.active span:nth-child(1) {
        top: 35px;
        transform: translateX(-50%) rotate(-45deg);
    }

    .toggle.active span:nth-child(2) {
        top: 35px;
        transform: translateX(-50%) rotate(45deg);
    }

    #logo_wrap,
    #footer_logo {
        width: 40px;
    }

    #header {
        height: 70px;
        padding: 0px 3rem;
        display: block;
        padding-right: calc(3rem - 20px);
    }

    #header_inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        width: 100%;
    }

    .sub-menu {
        position: initial;
        transform: initial;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        background: initial;
    }

    .sub-menu li {
        width: calc(100% / 2);
        margin-bottom: 0 !important;
    }

    .sub-menu li:nth-child(1),
    .sub-menu li:nth-child(2) {
        border-top: 1px solid #ddd !important;
    }

    .sub-menu li a {
        border-bottom: 0 !important;
    }

    .sub-menu li {
        border-bottom: 1px solid #ddd !important;
    }

    .sub-menu li a {
        font-size: 14px;
        margin: 0 !important;
        text-align: left;
        padding: 1rem !important;
    }

    .drop-menu {
        position: initial;
        padding-right: 0;
    }

    .drop-menu::before {
        border-right: 0;
        border-left: 0;
        border-top: 0;
    }

}

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

    /*********************
           GENERAL STYLES
           *********************/
    :root {
        --width: 540;
    }

    .pc-hide {
        display: block !important;
    }

    .bg-main {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    #cursor,
    #stalker {
        display: none;
    }

    /*********************
        NAVIGATION STYLES
        *********************/

    #page__material #logo_wrap,
    #page__template #logo_wrap,
    #page__download #logo_wrap,
    #page__voice #logo_wrap,
    #page__column_material #logo_wrap,
    #page__sample #logo_wrap,
    .single-column_material #logo_wrap,
    .tax-column_m_cat #logo_wrap,
    .single-voice #logo_wrap,
    .single-template #logo_wrap,
    #page__policyl #logo_wrap,
    .tax-powerpoint_category #logo_wrap,
    #page__complete-download #logo_wrap,
    #page__complete-material #logo_wrap,
    #page__material #footer_logo,
    #page__template #footer_logo,
    #page__download #footer_logo,
    #page__voice #footer_logo,
    #page__column_material #footer_logo,
    #page__sample #footer_logo,
    .single-column_material #footer_logo,
    .tax-column_m_cat #footer_logo,
    .single-voice #footer_logo,
    .single-template #footer_logo,
    #page__policyl #footer_logo,
    .tax-powerpoint_category #footer_logo,
    #page__complete-download #footer_logo,
    #page__complete-material #footer_logo {
        width: 100px;
    }

    #header.is-top-sp {
        background: var(--main-r);
    }

    #header.is-top-sp .logo-wrap .logo-g {
        fill: var(--main);
    }

    #mv_item .sec-text,
    #services_item .sec-text,
    #mv_item .sec-text span,
    #services_item .sec-text span {
        font-size: 1.5rem;
    }


    /*********************
           FOOTER STYLES
           *********************/
    .footer-block-inner figure:hover {
        transform: scale(1);
    }

    #footer_inner {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    /*********************
           LAYOUT & GRID STYLES
           *********************/
    .l-lr {
        padding-right: 5rem;
        padding-left: 5rem;
    }

    .l-tb {
        margin-top: 7rem;
        margin-bottom: 7rem;
    }

    .l-t {
        margin-top: 7rem;
    }

    .l-b {
        margin-bottom: 7rem;
    }

    .l-tb-p {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 2.3rem;
    }

    #page_header .sec-title-jp,
    #page_header .sec-title-jp p,
    #page_header .sec-title-jp span {
        font-size: 3rem;
    }

    .sec-text {
        font-size: 1.4rem;
    }

    .message-text {
        font-size: 1.4rem;
    }

    .hero-content #services_item .slide-in_inner {
        height: 30rem;
    }

    #mv_item .sec-text,
    #services_item .sec-text {
        font-size: 1.4rem;
    }

    .accordion .accordion-item h5 {
        font-size: 14px;
    }

    .faq-q {
        font-size: 2rem;
    }

    .accordion button .accordion-title {
        padding: 0;
    }

    .accordion button .icon {
        top: 27px;
    }

    .flow-item h5 {
        width: 40%;
    }

    .flow-item p {
        width: 60%;
    }

    .footer-item:first-child {
        width: calc(40% - 2.5rem);
    }

    .footer-item {
        width: calc(60% - 2.5rem);
    }

    .single .post-title {
        font-size: 2rem;
    }

    #page_header {
        height: 40rem;
    }

    .post-type-archive-template .column-flex-item article,
    .tax-powerpoint_category .column-flex-item article {
        width: calc(100% / 2 - 1.5rem);
    }

    .single-template .related-post-wrap ul {
        gap: 2rem;
    }

    .single-template .related-post-wrap ul li {
        width: calc(100% / 4 - 1.5rem);
    }

    .related-post-wrap h4 {
        font-size: 2rem;
    }

    article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
    .related-post .post-thumbnail {
        height: 15rem;
    }

    .post-title {
        font-size: 14px;
    }

    .related-post-wrap .post-title {
        font-size: 1.4rem;
    }

    .features-item {
        width: calc(100% / 3 - 1.333333rem);
        padding: 2rem;
    }

    .reasons-item {
        width: calc(100% / 2 - 1rem);
        padding: 2rem;
    }

    #services_item h2 p,
    #services_item h2 p span {
        font-size: 3rem;
    }

    #page__mvv-purpose #page_header,
    #page__startup-plan #page_header,
    #page__business-plan #page_header,
    #page__consulting #page_header,
    #page__website #page_header,
    #page__logo #page_header,
    #page__business-card #page_header,
    #page__design #page_header,
    #page__material #page_header {
        height: 70vh;
    }

    .footer-item .nav__list li a {
        font-size: 14px;
    }
}

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

    #mvv_sec01 .l-flex .flex-r,
    #mvv_sec02 .l-flex .flex-r,
    #mvv_sec03 .l-flex .flex-r,
    #top_section01 .l-flex .flex-r,
    #top_section02 .l-flex .flex-r,
    #top_section03 .l-flex .flex-r
    {
    width: 70% !important;
    margin-left: auto;
}

#mvv_sec01 .l-flex.reverse .flex-r,
#mvv_sec02 .l-flex.reverse .flex-r,
#mvv_sec03 .l-flex.reverse .flex-r,
#top_section01 .l-flex.reverse .flex-r,
#top_section02 .l-flex.reverse .flex-r,
#top_section03 .l-flex.reverse .flex-r {
    margin-left: initial;
    margin-right: auto;
}

#page__mvv-purpose #page_header,
#page__startup-plan #page_header,
#page__business-plan #page_header,
#page__consulting #page_header,
#page__website #page_header,
#page__logo #page_header,
#page__business-card #page_header,
#page__design #page_header,
#page__material #page_header {
    height: 100%;
}

#page__mvv #page_header,
#page__startup-plan #page_header,
#page__business-plan #page_header,
#page__consulting #page_header,
#page__website #page_header,
#page__logo #page_header,
#page__business-card #page_header,
#page__design #page_header,
#page__material #page_header,
#page__column #page_header {
    padding-top: 15rem;
    padding-bottom: 10rem;
}

#page__material #services_item .btn-wrap {
    margin-top: 0rem;
}

#page__material #services_item .l-flex {
    margin: 3rem 0;
}

.hero-content {
    position: initial;
    transform: initial;
}

.price-item {
    width: 100%;
}

.reasons-item {
    width: calc(100% / 2 - 1rem);
}

.column-term {
    gap: 1rem !important;
}

.column-flex,
.column-flex-item {
    gap: 3rem;
}

.column-flex article,
.column-flex-item article {
    width: calc(100% / 2 - 1.5rem);
}

#single_wrap #single_l,
#single_wrap #single_r {
    width: 100%;
}

#page__material .swiper {
    margin-top: 7rem;
}

#message_inner .flex-r {
    flex: initial;
    margin-right: initial;
}

.message-text {
    font-size: 1.6rem;
    margin-top: 3rem;
}

.title-wrap {
    margin-bottom: 3rem;
}

.flow-item {
    display: block;
}

.flow-item h5,
.flow-item p {
    width: 100%;
}

.flow-item h5 {
    margin-bottom: 1rem;
}

.flow-wrap li {
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}

.post-type-archive-template .term-list,
.tax-powerpoint_category .term-list {
    width: 100%;
    border-right: initial;
    border-bottom: 1px solid #ddd;
    padding: 5rem 0;
    position: initial;
    top: initial;
    display: flex;
    flex-wrap: wrap;
    overflow: initial;
    height: auto;
    gap: 2rem;
}

.post-type-archive-template .column-flex,
.tax-powerpoint_category .column-flex {
    width: 100%;
    padding: 5rem 0;
}

.post-type-archive-template .column-flex-item,
.tax-powerpoint_category .column-flex-item {
    gap: 3rem;
}

.term-list a {
    line-height: 2;
}


#news__pager {
    margin: 2rem auto;
}

}

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

    /*********************
           GENERAL STYLES
           *********************/
    html {
        scroll-padding-top: 90px;
    }

    .mbr {
        display: inline-block;
    }

    .sp-hide {
        display: none;
    }

    .pc-hide {
        display: block !important;
    }

    .l-lr {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .l-tb {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .l-t {
        margin-top: 5rem;
    }

    .l-b {
        margin-bottom: 5rem;
    }

    .l-tb-p {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .l-flex {
        gap: 3rem;
    }

    #post_not_inner h1 {
        font-size: 2rem;
    }

    /* ==========================================================================
              Links
              ========================================================================== */

    .btn-1 a,
    .btn-1 button {
        background: var(--main);
        width: 200px;
        line-height: 50px;
        display: inline-block;
        text-align: center;
        color: var(--main-r);
        letter-spacing: .04em;
        position: relative;
        border-left: 5px solid #D13631;
        -webkit-transition: .4s;
        transition: .4s;
    }

    .btn-1 a::before,
    .btn-1 button::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 0;
        display: block;
        background: #D13631;
        z-index: 1;
        -webkit-transition: .4s;
        transition: .4s;
    }

    .btn-1 a span,
    .btn-1 button span {
        position: relative;
        z-index: 5;
    }

    .btn-1 a:hover::before,
    .btn-1 button:hover::before {
        width: 100%;
    }

    .hero-content .btn-wrap a,
    .hero-content .btn-wrap button,
    .term-list a {
        width: 220px;
    }

    /*********************
           HEADER STYLES
           *********************/
    .menu-item a {
        font-size: var(--md);
    }

    /*********************
           POSTS & CONTENT STYLES
           *********************/
    .hero-content #services_item .slide-in_inner {
        height: 20rem;
    }

    #page__material .hero-content #services_item .slide-in_inner {
        height: 100%;
    }

    #mv_item .sec-text,
    #services_item .sec-text,
    #mv_item .sec-text span,
    #services_item .sec-text span {
        font-size: 1.4rem;
    }

    .post-title {
        width: 100%;
    }

    .post-data-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .news-list article a div {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .news-list article a {
        padding: 20px 0;
    }

    .post-category {
        font-size: 12px;
    }

    .wpcf7-list-item-label,
    .wpcf7-list-item-label a {
        font-size: 13px;
    }

    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"],
    input[type="search"],
    input[type="tel"],
    input[type="color"],
    select,
    textarea,
    .field {
        height: 60px;
        padding: 10px;
    }

    /*********************
           FOOTER STYLES
           *********************/
    .footer-more-l,
    .footer-more-r {
        width: 100%;
    }

    .footer-block {
        height: 40vh;
    }

    #footer_content {
        padding-bottom: 100px;
    }

    #footer_bottom a,
    #copyright {
        font-size: 12px;
    }

    /*********************
           LAYOUT & GRID STYLES
           *********************/

    .l-flex .flex-l,
    .l-flex .flex-r {
        width: 100% !important;
    }

    textarea {
        min-height: 250px;
    }

    .sec-text {
        text-align: left;
    }


    br.sp {
        display: block;
    }

    .sec-text {
        font-size: 14px;
    }

    .sec-title-jp,
    .sec-title-jp p,
    .sec-title-jp span {
        font-size: 1.8rem;
    }

    #top_section01 p,
    #top_section02 p,
    #top_section03 p,
    #mvv_sec01 p,
    #mvv_sec02 p,
    #mvv_sec03 p {
        font-size: 14px;
    }

    .img-r {
        border-radius: 15px;
    }

    .reasons-item {
        width: 100%;
    }

    .article-wrap article {
        width: calc(100% / 2 - 1rem);
    }

    .article-wrap {
        gap: 3rem 2rem;
    }

    article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
    .related-post .post-thumbnail {
        height: 10rem;
    }

    .btn-wrap {
        margin-top: 3rem;
    }

    .footer-item {
        width: 100%;
        justify-content: initial;
    }

    .footer-item:first-child {
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    #footer_logo {
        margin: 0 auto 2rem auto;
    }

    .footer-item .nav__list li a {
        font-size: 12px;
    }

    .footer-item {
        gap: 3rem;
    }

    #logo_wrap,
    #footer_logo {
        width: 30px;
    }

    .sub-menu li a {
        font-size: 13px;
        padding: 10px !important;
    }

    #menu ul li {
        margin-bottom: 1rem;
    }

    .header-text {
        text-align: left;
    }

    #page_header {
        padding: 13rem 0 5rem 0;
    }

    #page__material #logo_wrap,
    #page__template #logo_wrap,
    #page__download #logo_wrap,
    #page__voice #logo_wrap,
    #page__column_material #logo_wrap,
    #page__sample #logo_wrap,
    .single-column_material #logo_wrap,
    .tax-column_m_cat #logo_wrap,
    .single-voice #logo_wrap,
    .single-template #logo_wrap,
    #page__policyl #logo_wrap,
    .tax-powerpoint_category #logo_wrap,
    #page__complete-download #logo_wrap,
    #page__complete-material #logo_wrap,
    #page__material #footer_logo,
    #page__template #footer_logo,
    #page__download #footer_logo,
    #page__voice #footer_logo,
    #page__column_material #footer_logo,
    #page__sample #footer_logo,
    .single-column_material #footer_logo,
    .tax-column_m_cat #footer_logo,
    .single-voice #footer_logo,
    .single-template #footer_logo,
    #page__policyl #footer_logo,
    .tax-powerpoint_category #footer_logo,
    #page__complete-download #footer_logo,
    #page__complete-material #footer_logo {
        width: 85px;
    }

    #page__mvv-purpose #page_header,
    #page__startup-plan #page_header,
    #page__business-plan #page_header,
    #page__consulting #page_header,
    #page__website #page_header,
    #page__logo #page_header,
    #page__business-card #page_header,
    #page__design #page_header,
    #page__material #page_header {
        padding-top: 13rem;
        padding-bottom: 5rem;
    }

    #page_header .sec-title-jp,
    #page_header .sec-title-jp p,
    #page_header .sec-title-jp span {
        font-size: 2.3rem;
    }

    .column-flex,
    .column-flex-item {
        gap: 2rem;
    }

    .column-flex article,
    .column-flex-item article {
        width: calc(100% / 2 - 1rem);
    }

    #single_wrap {
        padding-top: 15rem;
    }

    .related-post-wrap ul {
        gap: 2rem;
    }

    .related-post-wrap ul li {
        width: calc(100% / 2 - 1rem);
    }

    #single_wrap .post-contents p {
        font-size: 1.4rem;
    }

    .single .post-title {
        font-size: 1.8rem;
    }

    .single .post-contents h2 {
        font-size: 1.6rem;
    }

    .related-post-wrap h4 {
        font-size: 1.6rem;
    }

    .related-post-wrap .post-title {
        font-size: 1.4rem;
    }

    #page_header {
        height: 100%;
    }

    #policy h2 {
        font-size: 1.6rem;
    }

    #services_item h2 p,
    #services_item h2 p span {
        font-size: 2.3rem;
    }

    #page__material .swiper {
        margin-top: 0;
    }

    #message .title-wrap {
        text-align: center;
    }

    #message .l-flex .flex-r {
        width: 100% !important;
    }

    .service-item {
        width: 100%;
    }

    .service-item h5 {
        font-size: 1.6rem;
    }

    #works .swiper-container {
        width: 100% !important;
        padding-bottom: 0;
    }

    .swiper-button {
        margin-top: 0rem;
    }

    #works .swiper-button {
        margin-top: 2rem;
        gap: 3rem;
    }

    .arrow-wrap {
        width: 100%;
        padding-bottom: 0;
        margin: 3rem 0;
    }

    .arrow-right::before {
        border: 5px solid var(--main);
        border-left: 0;
        border-bottom: 5px solid var(--main);
        border-top: 0;
    }

    .arrow-right::before {
        transform: rotate(45deg) translateX(-50%);
        right: initial;
        left: 50%;
        box-sizing: border-box;
    }

    #works .swiper-button-next,
    #works .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .tab {
        margin-top: 3rem;
    }

    .tab__item {
        width: calc(100% / 2 - 1rem);
    }

    .reasons-item,
    .features-item {
        width: 100%;
    }

    .price-num {
        left: 2rem;
    }

    .price-item {
        margin-top: 25px;
    }

    #price_cta {
        margin-top: 3rem;
        padding: 3rem;
        text-align: left;
    }

    #price_cta .btn-wrap:last-child {
        margin-top: 1rem;
    }

    #price_cta_button {
        gap: 0;
    }

    .accordion .accordion-item h5 {
        padding-right: 3rem;
    }

    .accordion button[aria-expanded='true']+.accordion-content {
        max-height: 15em;
    }

    .flow-item>li dl dt {
        margin-bottom: 2rem;
    }

    #single_r aside {
        position: initial;
    }

    .ez-toc-widget-sticky-container nav {
        max-height: 100% !important;
    }

    #template_wrap {
        padding: 0px 2rem;
    }

    .pagination .page-numbers li a,
    .pagination .page-numbers li span {
        width: 40px;
        height: 40px;
    }

    .post-type-archive-template .column-flex-item article,
    .tax-powerpoint_category .column-flex-item article {
        width: calc(100% / 2 - 1rem);
    }

    .post-type-archive-template .column-flex-item,
    .tax-powerpoint_category .column-flex-item {
        gap: 3rem 2rem;
    }

    .post-type-archive-template .term-list,
    .tax-powerpoint_category .term-list {
        gap: 1rem 2rem;
    }

    .single-template #single_inner {
        flex-direction: initial;
    }

    .single-template .swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
        width: 40% !important;
        opacity: 0.8;
    }

    .slider-thumbnail .swiper-button-prev,
    .slider-thumbnail .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .single-template .related-post-wrap {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        margin-top: 10rem;
    }

    .single-template .related-post-wrap ul li {
        width: calc(100% / 2 - 1rem);
    }

    .tab-link a:before {
        right: 10px;
    }

    .download-swiper {
        margin-bottom: 5rem;
    }

    .sml {
        font-size: 12px;
    }

}

@media screen and (min-width:768px) {
    br.sp {
        display: none;
    }

}