@charset "utf-8";
/*
Theme Name: OSHATEN!2
Theme URL: https://oshaten10.com/
Description: OSHATEN!オリジナルWordpressテーマです。
Author: ASA
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://oshaten10.com/
*/

/* -----------------------------------------------------------------------
root
---------------------------------------------------------------------- */
:root {
    --color-text: #333333;
    --color-brand: #E27447;
    --color-base: #F3F1EF;
    --color-bk: #1a1a1a;
    --color-dgrey: #767676;
    --color-grey: #999;
    --color-mgrey: #d3d3d3;
    --color-lgrey: #f5f5f5;
    --color-wh: #ffffff;
}

/* -----------------------------------------------------------------------
reset
---------------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}

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

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

a {
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
}

ins {
    text-decoration: none;
    color: var(--color-text);
    background-color: var(--color-wh);
}

mark {
    color: var(--color-text);
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}

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

hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}

/* -----------------------------------------------------------------------
page design
---------------------------------------------------------------------- */
html {
    font-size: 16px;
}

body {
    font-family: "Lato", "Noto Sans JP", sans-serif;
    color: var(--color-text);
    letter-spacing: .1em;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
    word-break: break-all;
    background-color: var(--color-base);
    scroll-padding-top: calc((var(--headerHeight, 95px)) + 20px);
    /* 95px：変数が取得できなかった場合の初期値 */
    /* 20px：スクロール時の上部のゆとり */
}

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

/* parts-------------------- */
a:link,
a:visited {
    color: var(--color-blue);
    text-decoration: underline;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

a:hover {
    color: var(--color-brand);
}

a img {
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

a img:hover {
    opacity: 0.5;
    /* マウスホバー時に半透明に */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

/* -----------------------------------------------------------------------
layout
---------------------------------------------------------------------- */
.wrap,
main.cnt {
    overflow: clip;
}

.inner,
.post-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/* -----------------------------------------------------------------------
header
---------------------------------------------------------------------- */
header {
    position: sticky;
    top: 0px;
    z-index: 9999;
    height: fit-content;
    background-color: var(--color-wh);
    padding: 0.75em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .hdr-logocount {
    display: flex;
    align-items: center;
    gap: 1em;
}

/* ロゴ-------------------- */
header .hdr-sitelogo a {
    text-decoration: none;
}

header .hdr-sitelogo a:hover {
    color: var(--color-text);
}

header .hdr-sitelogo a h1 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.2em;
    line-height: 1;
}

header .hdr-sitelogo a h1 .subttl {
    font-size: 0.3em;
    letter-spacing: 0;
    font-weight: 400;
}

header .hdr-sitelogo a h1 .logo-text span {
    display: inline-block;
}

header .hdr-sitelogo a h1 .logo-text span {
    display: inline-block;
}

header .hdr-sitelogo a:hover .logo-text span {
    animation: single-bounce 0.4s ease-out both;
}

@keyframes single-bounce {
    0% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    70% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

/* サイト全体のダウンロード回数合計-------------------- */
header .hdr-dlcount {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.25em;
    padding: 0.75em;
    font-size: 0.75em;
    line-height: 1;
    border: 1px solid var(--color-text);
    border-radius: 0.25em;
}

header .hdr-dlcount p.total span {
    font-size: 1.5em;
    font-weight: bold;
}

header .hdr-dlcount p.since {
    font-size: 0.75em;
    color: var(--color-dgrey);
}


/* ナビゲーションメニュー-------------------- */
header .menu-wrap {
    display: flex;
    align-items: center;
    gap: 2em;
}

header .pcmenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9em;
}

header .pcmenu ul,
header .spmenu ul {
    list-style: none;
}

header .pcmenu ul {
    display: flex;
    align-items: center;
    gap: 1em;
    font-weight: bold;
}

header .pcmenu ul a {
    position: relative;
    color: var(--color-text);
    text-decoration: none;
}

header .pcmenu ul a:hover {
    color: var(--color-brand);
}

/* サブメニュー */
header .pcmenu ul.pc-submenu {
    font-size: 0.85em;
    gap: 0.5em;
}

header .pcmenu ul.pc-submenu li {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

header .pcmenu ul.pc-submenu li::after {
    content: '／';
}

header .pcmenu ul.pc-submenu li:last-of-type:after {
    display: none;
}

header .pcmenu ul.pc-submenu a {
    color: var(--color-dgrey);
}

header .pcmenu ul.pc-submenu a:hover {
    color: var(--color-text);
}

/* スマホメニュー-------------------- */
/* 表示の処理 */
header .spmenu {
    z-index: 9998;
}

header .spmenu .gnav-sp {
    position: fixed;
    z-index: 9998;
    top: 0;
    right: -200%;
    /* はじめは欄外に */
    width: calc(100% / 4);
    height: calc(100vh - 6em);
    padding: 3em;
    background-color: var(--color-base);
    border-left: 2px solid var(--color-text);
    transition: all 0.55s;
    /* 動き */
}

/* アクティブクラスがついた時の処理 */
header .spmenu .gnav-sp.panelactive {
    right: 0;
}

/* ナビゲーションボタンの処理 */
.openbtn {
    position: relative;
    z-index: 9999;
    /* ボタンを最前面に */
    cursor: pointer;
    width: 28px;
    height: 36px;
    margin: 0 0 0 auto;
}

.openbtn span {
    /* ×に変化 */
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 1px;
    background-color: var(--color-text);
    width: 100%;
}

.openbtn span:nth-of-type(1) {
    top: 10px;
}

.openbtn span:nth-of-type(2) {
    top: 18px;
}

.openbtn span:nth-of-type(3) {
    top: 26px;
}

.openbtn.active span:nth-of-type(1) {
    top: 13px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 25px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}

header .spmenu .gnav-sp .hdr-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 2em;
}

header .spmenu .gnav-sp ul,
header .spmenu .gnav-sp ul li {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

header .spmenu .gnav-sp ul li a {
    display: flex;
    align-items: center;
    gap: 0.75em;
    text-decoration: none;
    font-size: 1.5em;
}

header .spmenu ul.sub-menu {
    gap: 1em;
    font-size: 0.75em;
    background-color: var(--color-base);
}

header .spmenu ul.sub-menu li a::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(_img/icn-dot.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

/* バナー-------------------- */
header .spmenu .gnav-sp .banner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
    margin-bottom: 3em;
}

header .spmenu .gnav-sp .banner a,
header .spmenu .gnav-sp .banner img {
    display: block;
}

/* -----------------------------------------------------------------------
トップページ
---------------------------------------------------------------------- */
/* layout-------------------- */

/* トップのイントロ-------------------- */
.top-about {
    margin: 5em;
}

.top-about h2 {
    font-size: 4em;
    margin-bottom: 0.25em;
}

.char-fade span {
    opacity: 0;
    display: inline-block;
    transform: translateY(-20px);
    animation: charFadeDown 0.6s ease forwards;
}

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

/* トップのテンプレートカテゴリ一覧-------------------- */
.top-temp {
    color: var(--color-wh);
}

.top-temp a {
    color: var(--color-wh);
    text-decoration: none;
}

.top-temp .temp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.top-temp .temp-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 0.75em;
}

.top-temp .temp-item {
    position: relative;
}

/* サムネイル */
.top-temp .thumb {
    max-height: 100vh;
    overflow: hidden;
}

.top-temp .thumb a {
    display: block;
    position: relative;
}

.top-temp .thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.top-temp .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-temp .thumb a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* 記事の内容 */
.top-temp .temp-item .postbody {
    display: flex;
    align-items: end;
    gap: 1em;
    width: calc(100% - 4em);
    padding: 0 2em 2em;
    position: absolute;
    left: 0;
    bottom: 0;
}

.top-temp .temp-item .postinfo {
    width: 100%;
}

/* カテゴリラベル */
.top-temp .temp-item .postcat {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0 0.25em;
    flex-wrap: wrap;
}

.top-temp .temp-item .postcat::before,
.top-temp .temp-item .postcat::after,
.top-temp .temp-item .postcat li::after {
    display: inline-block;
}

.top-temp .temp-item .postcat::before {
    content: "（";
}

.top-temp .temp-item .postcat::after {
    content: "）";
}

.top-temp .temp-item .postcat li::after {
    content: "／";
}

.top-temp .temp-item .postcat li:last-of-type::after {
    display: none;
}

.top-temp .temp-item .postcat li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.top-temp .temp-item .postcat li a {
    text-decoration: none;
    line-height: 1;
    padding: 0.5em 0;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.top-temp .temp-item .postcat li a:hover {
    text-decoration: underline;
}

/* タイトル */
.top-temp .temp-item .postttl {
    font-size: 2em;
    line-height: 1.1;
    word-break: normal;
    text-align: left;
}

.top-temp .temp-item .postttl a {
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
}

.top-temp .temp-item .postttl a span {
    display: inline-block;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.4, 1);
}

.top-temp .temp-item .postttl a span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
}

.top-temp .temp-item .postttl a:hover span {
    transform: translateY(-100%);
}

/* ボタン */
.top-temp .temp-item .postlink a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* ← 見せたい幅を固定 */
    padding: 0.5em 1em;
    border-radius: 999px;
    background-color: var(--color-wh);
    border: 1px solid var(--color-text);
    overflow: hidden;
    /* ← マスク */
}

.top-temp .temp-item .postlink .arrow-track {
    display: flex;
    gap: 18px;
    white-space: nowrap;
}

.top-temp .temp-item .postlink img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.top-temp .temp-item .postlink a:hover img {
    opacity: 1;
}

/* hover時だけ流す */
.top-temp .temp-item .postlink a:hover .arrow-track {
    animation: arrow-loop 0.9s linear infinite;
}

/* 日付 */
.top-temp .temp-item .postdate {
    margin-top: 1em;
}

/* 左側 */
.top-temp .temp-left.temp-item .postcat li a,
.top-temp .temp-left.temp-item .postexcerpt,
.top-temp .temp-left.temp-item .postdate {
    font-size: 0.75em;
}

.top-temp .temp-left.temp-item .postbody {
    gap: 3em;
}

/* 左側抜粋 */
.top-temp .temp-left.temp-item .postexcerpt {
    margin-top: 2em;
}

.top-temp .temp-link {}

.top-temp .temp-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    gap: 0.25em;
    padding: 1em 0;
    font-size: 2.5em;
    line-height: 1;
    background-color: var(--color-brand);
}

.top-temp .temp-link a::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(_img/icn-arrow-right-wh.svg);
}

.top-temp .temp-link a:hover {
    background-color: var(--color-text);
}

/* トップのご利用にあたって-------------------- */
.top-term {
    background-color: var(--color-wh);
    padding: 5em 0;
    overflow: hidden;
    white-space: nowrap;
}

.top-term {
    overflow: hidden;
    white-space: nowrap;
}

.top-term-track {
    display: flex;
    width: max-content;
    animation: conveyor 20s linear infinite;
}

/* ホバーで停止 */
.top-term-inner:hover {
    animation-play-state: paused;
}

.top-term-inner {
    display: inline-flex;
    align-items: center;
    gap: 3em;
    padding-right: 3em;
    /* 2セットの境目用 */
}

.top-term-inner::after {
    content: '';
    background-image: url(_img/icn-dot.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 2em;
    height: 2em;
}

@keyframes conveyor {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-term h2 {
    font-size: 3em;
}

.top-term .termpoint {
    font-size: 2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.top-term .termpoint span {
    font-size: 1.75em;
    color: var(--color-wh);
    text-shadow: 1px 1px 0 var(--color-text), -1px -1px 0 var(--color-text), -1px 1px 0 var(--color-text), 1px -1px 0 var(--color-text), 0px 1px 0 var(--color-text), 0 -1px 0 var(--color-text), -1px 0 0 var(--color-text), 1px 0 0 var(--color-text);
}

.top-term .termbtn a {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-size: 1.25em;
    margin: 1.5em auto 0;
    padding: 1em 1.5em;
    color: var(--color-wh);
    background-color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: 0.25em;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition-duration: .4s;
    z-index: 2;
}

.top-term .termbtn a::after {
    background: var(--color-wh);
    border-radius: 50%;
    content: "";
    display: block;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 100%;
    height: 0;
    z-index: -1;
    transform: translateY(-50%) scale(0.1);
    transition: opacity .5s, transform 0s;
    transition-delay: 0s, .4s;
}

.top-term .termbtn a:hover {
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
}

.top-term .termbtn a:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    transition-delay: 0s;
    transition: opacity .8s, transform .6s ease-in-out;
}

/* トップの新着-------------------- */
.top-news {
    padding: 5em;
    border-bottom: 2px solid var(--color-text);
    display: flex;
    gap: 5em;
}

.top-news h2 {
    font-size: 4em;
    flex-shrink: 0;
}

.top-news h2 a{
	text-decoration: none;
}

.top-news .news-list {
    list-style: none;
    width: 100%;
}

.top-news .news-list li.news-item:first-of-type {
    border-top: 1px solid var(--color-grey);
}

.top-news .news-list li.news-item {
    border-bottom: 1px solid var(--color-grey);
    padding: 1.5em 0;
}

.top-news .news-list .postinfo {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

/* 投稿タイトル */
.top-news .news-list .postttl {
    font-size: 1.5em;
    line-height: 1.1;
    font-weight: bold;
}

.top-news .news-list .postttl a {
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
}

/* 投稿日 */
.top-news .news-list .postdate {
    font-size: 0.75em;
}

/* カテゴリラベル */
.top-news .news-list .postcat {
    list-style: none;
    display: flex;
    gap: 0 0.25em;
    flex-wrap: wrap;
}

.top-news .news-list .postcat::before,
.top-news .news-list .postcat::after,
.top-news .news-list .postcat li::after {
    display: inline-block;
}

.top-news .news-list .postcat::before {
    content: "（";
}

.top-news .news-list .postcat::after {
    content: "）";
}

.top-news .news-list .postcat li::after {
    content: "／";
}

.top-news .news-list .postcat li:last-of-type::after {
    display: none;
}

.top-news .news-list .postcat li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.top-news .news-list .postcat li a {
    text-decoration: none;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.5em 0;
    color: var(--color-text);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.top-news .news-list .postcat li a:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------------------------
ftr-sitename,ftr-ad
---------------------------------------------------------------------- */
.ftr-sitename {
    padding: 8em 0 3em;
}

.ftr-ad {
    padding: 3em 5em;
    background-color: var(--color-wh);
    border-top: 2px solid var(--color-text);
    border-bottom: 2px solid var(--color-text);
}

/* -----------------------------------------------------------------------
footer
---------------------------------------------------------------------- */
footer {
    padding: 3em 5em 1em;
    background-color: var(--color-wh);
}

footer a {
    text-decoration: none !important;
}

footer .ftr-top {
    padding: 0 0 3em;
    display: flex;
    justify-content: space-between;
    gap: 5em;
}

/* フッターランキング スライダー-------------------- */
.ftr-dlrank {
    overflow: hidden;
    padding: 0 5em 5em;
}

/* タイトル＋次へ前へボタン */
.ftr-dlrank-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

/* タイトル */
.ftr-dlrank-hdr .ttl {
    font-size: 5em;
    font-weight: 700;
    line-height: 1;
    color: var(--color-wh);
    text-shadow: 1px 1px 0 var(--color-text), -1px -1px 0 var(--color-text), -1px 1px 0 var(--color-text), 1px -1px 0 var(--color-text), 0px 1px 0 var(--color-text), 0 -1px 0 var(--color-text), -1px 0 0 var(--color-text), 1px 0 0 var(--color-text);
}

/* 次へ前へボタン */
.swiper-ui {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-button {
    position: relative;
    display: flex;
    gap: 24px;
}

.swiper-button .swiper-button-next,
.swiper-button .swiper-button-prev {
    position: static;
    margin: 0;
}

.swiper-button.swiper-button-next,
.swiper-button.swiper-button-prev {
    width: 56px;
    height: 30px;
}

.swiper-button.swiper-button-next:after,
.swiper-button.swiper-button-prev:after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url('_img/icn-key-arrow-right.svg');
    background-position: center center;
    background-size: 40%;
    background-repeat: no-repeat;
    background-color: var(--color-wh);
    border: 1px solid var(--color-text);
    border-radius: 999px;
    box-sizing: border-box;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.swiper-button.swiper-button-prev:after {
    background-image: url('_img/icn-key-arrow-left.svg');
}

.swiper-button.swiper-button-next:hover:after,
.swiper-button.swiper-button-prev:hover:after {
    background-color: var(--color-text);
    background-image: url('_img/icn-key-arrow-right-wh.svg');
}

.swiper-button.swiper-button-prev:hover:after {
    background-image: url('_img/icn-key-arrow-left-wh.svg');
}

/* 画像 */
.ftr-dlrank .rankimg {
    position: relative;
}

.ftr-dlrank .rankimg .rank {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: 2.5em;
    line-height: 1;
}

.ftr-dlrank .rankimg a {
    display: block;
    border-radius: 999px;
    overflow: hidden;
}

.ftr-dlrank .rankimg img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.ftr-dlrank .rankimg a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.ftr-dlrank .rankinfo {
    margin-top: 1em;
}

/* カテゴリラベル */
.ftr-dlrank .rankcat {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0 0.25em;
    flex-wrap: wrap;
}

.ftr-dlrank .rankcat::before,
.ftr-dlrank .rankcat::after,
.ftr-dlrank .rankcat li::after {
    display: inline-block;
}

.ftr-dlrank .rankcat::before {
    content: "（";
}

.ftr-dlrank .rankcat::after {
    content: "）";
}

.ftr-dlrank .rankcat li::after {
    content: "／";
}

.ftr-dlrank .rankcat li:last-of-type::after {
    display: none;
}

.ftr-dlrank .rankcat li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.ftr-dlrank .rankcat li a {
    text-decoration: none;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.5em 0;
    color: var(--color-text);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.ftr-dlrank .rankcat li a:hover {
    text-decoration: underline;
}

/* タイトル */
.ftr-dlrank .rankttl {
    text-align: center;
    font-weight: 700;
    font-size: 1.5em;
    word-break: normal;
    line-height: 1.3;
}

.ftr-dlrank .rankttl a {
    text-decoration: none;
}

/* フッターロゴ-------------------- */
footer .ftr-sitelogo {
    display: flex;
    gap: 0.25em;
}

footer .ftr-sitelogo a img {
    width: 100%;
}

/* フッターメニュー-------------------- */
.ftr-nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1em;
    flex-shrink: 0;

}

.ftr-nav nav {
    flex-grow: 1;
}

.ftr-nav ul {
    display: flex;
    gap: 1em;
}

.ftr-nav ul li {
    display: flex;
    align-items: center;
    gap: 1em;
}

.ftr-nav ul li::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-image: url(_img/icn-dot.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.ftr-nav ul li:last-of-type::after {
    display: none;
}

.ftr-nav ul li a {
    font-weight: 700;
}

.ftr-nav ul.sub-menu {
    gap: 1em;
}

.ftr-nav ul.sub-menu li a {
    font-weight: 400;
    font-size: 0.9em;
}

.ftr-nav ul.sub-menu li::after {
    display: none;
}

/* フッター トップに戻る-------------------- */
a#back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.25em;
    font-weight: 700;
    padding-bottom: 0.5em;
    border-bottom: 1px solid var(--color-text);
}

a#back-to-top::before {
    content: "";
    display: block;
    width: 1.25em;
    height: 1.25em;
    background-image: url(_img/icn-pagetop.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* フッター下段-------------------- */
footer .ftr-bottom {
    font-size: 0.75em;
    display: flex;
    justify-content: space-between;
}

/* -----------------------------------------------------------------------
WebClapのリンク
---------------------------------------------------------------------- */
.link-webclap a {
    display: block;
    width: 2em;
    height: 2em;
    background-image: url(_img/icn-heart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    transform-origin: 50% 100%;
    /* 下の真ん中を基点 */
}

/* hover中ずっとゆらゆら */
.link-webclap a:hover {
    background-image: url(_img/icn-heart-brand.svg);
    animation: yaji 1s ease-in-out infinite;
}

@keyframes yaji {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* -----------------------------------------------------------------------
subpage
---------------------------------------------------------------------- */
/* layout-------------------- */
.subpage-layout {
    display: flex;
    justify-content: space-between;
}

.subpage-layout .post {
    width: 100%;
}

/* パンくずリスト-------------------- */
.brandcrumbs-wrap {
    padding: 1em 5em;
    color: var(--color-wh);
    background-color: var(--color-text);
}

.brandcrumbs-wrap .brandcrumbs {
    list-style: none;
    font-size: 0.85em;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5em;
}

.brandcrumbs-wrap .brandcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.brandcrumbs-wrap .brandcrumbs li::after {
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(_img/icn-key-arrow-right-wh.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.brandcrumbs-wrap .brandcrumbs li:last-of-type:after {
    display: none;
}

/* -----------------------------------------------------------------------
固定ページ、投稿ページ共通（post）
---------------------------------------------------------------------- */
.post {
    padding: 5em;
    overflow: hidden;
}

/* posthdr-------------------- */
/* 投稿のタイトル */
.post .posthdr .postttl {
    font-size: 2.25em;
    font-weight: 700;
    margin-bottom: 0.9em;
}

.post .posthdr .post-datecat {
    display: flex;
    align-items: center;
    margin-bottom: 4em;
}

/* 投稿の日付 */
.post .posthdr .postdate {
    font-size: 0.75em;
}

/* カテゴリラベル */
.post .posthdr .postcat {
    list-style: none;
    display: flex;
    gap: 0 0.25em;
    flex-wrap: wrap;
}

.post .posthdr .postcat::before,
.post .posthdr .postcat::after,
.post .posthdr .postcat li::after {
    display: inline-block;
}

.post .posthdr .postcat::before {
    content: "（";
}

.post .posthdr .postcat::after {
    content: "）";
}

.post .posthdr .postcat li::after {
    content: "／";
}

.post .posthdr .postcat li:last-of-type::after {
    display: none;
}

.post .posthdr .postcat li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.post .posthdr .postcat li a {
    text-decoration: none;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.5em 0;
    color: var(--color-text);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.post .posthdr .postcat li a:hover {
    text-decoration: underline;
}

/* postbody-------------------- */
.post .postbody *:last-child {
    margin-bottom: 0;
}

/* エディタ内の別窓リンク */
.post .postbody a[target="_blank"] {
    text-decoration: underline;
}

.post .postbody a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 0.25em;
    background-image: url(_img/icn-blank.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.post .postbody a[target="_blank"]:hover::after {
    background-image: url(_img/icn-blank-bland.svg);
}

a[target="_blank"]:has(img)::after {
    display: none !important;
}

/* エディタ内の余白 */
.post .postbody .mbx2 {
    margin-bottom: 2em;
}

.post .postbody .mbx4 {
    margin-bottom: 4em;
}

/* エディタ内の見出し */
.post .postbody .wp-block-heading {
    margin: 3em 0 0.75em;
}

.post .postbody .wp-block-heading:first-child {
    margin-top: 0;
}

.post .postbody h2 {
    font-size: 2.5em;
    font-weight: 700;
}

.post .postbody h3 {
    font-size: 1.5em;
}

.post .postbody h4 {
    font-size: 1.25em;
}

.post .postbody h5 {
    font-size: 1.1em;
}

.post .postbody h6 {
    font-size: 1.1em;
}

/* エディタ内の段落 */
.post .postbody p {
    margin-bottom: 1em;
}

/* エディタ内の区切り線 */
.post .postbody hr {
    width: 100%;
    height: 2px;
    background: var(--color-mgrey);
    margin: 4em auto;
    border: 0;
}

/* エディタ内のリスト */
.post .postbody ul,
.post .postbody ol {
    list-style: revert;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.post .postbody ul li::marker {
    color: var(--color-brand);
}

/* エディタ内のテーブル */
.post .postbody .wp-block-table {
    border-radius: 0.25em;
    border: 1px solid var(--color-grey);
    margin-bottom: 2em;
}

.post .postbody table {
    font-size: 0.85em;
}

.post .postbody table td {
    padding: 1em;
    border: none;
    border-right: 1px solid var(--color-grey);
    border-bottom: 1px solid var(--color-grey);
	word-break: break-all;
}

.post .postbody table td:first-of-type {
    width: 25%;
    border-left: none;
}

.post .postbody table td:last-of-type {
    border-right: none;
}

.post .postbody table tr:last-of-type td {
    border-bottom: 0;
}

/* エディタ内の引用 */
.post .postbody blockquote {
    font-style: italic;
    padding-left: 0.5em;
    border-left: 3px solid var(--color-mgrey);
}

/* エディタ内の詳細 */
.post .postbody .wp-block-details {
    margin-bottom: 2em;
    border-bottom: 1px solid var(--color-grey);
}

.wp-block-details summary {
    color: var(--color-brand);
    margin-bottom: 1em;
}

.post .postbody .wp-block-details .wp-block-group {
    font-size: 0.85em;
    padding: 2.5em;
    background-color: var(--color-wh);
}

/* エディタ内の枠線ありボックス */
.post .postbody .blockbox-line {
    padding: 3em;
    border-radius: 0.25em;
    border: 1px solid var(--color-grey);
}

/* エディタ内の塗りつぶしボックス */
.post .postbody .blockbox-fill {
    padding: 1em;
    border-radius: 0.25em;
    background-color: var(--color-wh);
}

/* エディタ内のサイトリンク */
.post .postbody .embed-site {
    background-color: var(--color-wh);
}

/* ボタン */
.wp-block-buttons {
    margin-bottom: 1em;
}

.wp-block-button__link {
    color: var(--color-brand) !important;
    background-color: var(--color-wh) !important;
    position: relative;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    gap: 0.25em;
    padding: 1.25em !important;
    font-size: 0.95em !important;
    border-radius: 0.25em !important;
	border: 1px solid var(--color-brand);
    height: auto !important;
    text-decoration: none !important;
}

.wp-block-button__link:after {
    content: '';
    display: inline-block;
    background-image: url(_img/icn-arrow-right-brand.svg);
    width: 1.2em;
    height: 1.2em;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s;
}

.wp-block-button__link:hover {
    background-color: var(--color-brand) !important;
    color: var(--color-wh) !important;
}

.wp-block-button__link:hover::after {
    background-image: url(_img/icn-arrow-right-wh.svg);
}

/* -----------------------------------------------------------------------
single
---------------------------------------------------------------------- */
/* 左側サムネ-------------------- */
.single-mv {
    position: sticky;
    top: 73px;
    width: 50%;
    height: calc(100vh - 73px);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.single-mv .img-wrap {
    flex: 1;
    height: 100vh;
    aspect-ratio: 1 / 1;
}

.single-mv .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 下層ページのコンテンツエリア-------------------- */
main.subpage-cnt {}

/* テンプレート（single-temp.php）-------------------- */
/* 左側デモサイト、ダウンロードボタンエリア */
.single-temp .single-mv .temp-area {
    position: absolute;
    bottom: 0;
    width: 100%;
	padding: 1em 0;
    background-image: linear-gradient(0deg, #00000080, transparent);
}

.single-temp .single-mv .temp-area .btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 100%;
	margin-bottom: 0.5em;
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a,
.single-temp .single-mv .temp-area .btn-area .btn-dl button {
    font-size: 1em;
    padding: 1em 2em;
    border-radius: 0.25em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a {
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
    background-color: var(--color-wh);
    text-decoration: none;
}

.single-temp .single-mv .temp-area .btn-area .btn-dl button {
    color: var(--color-wh);
    background-color: var(--color-brand);
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a::after,
.single-temp .single-mv .temp-area .btn-area .btn-dl button::after {
    content: '';
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    background-size: 100%;
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a::after {
    background-image: url(_img/icn-blank-bland.svg);
}

.single-temp .single-mv .temp-area .btn-area .btn-dl button::after {
    background-image: url(_img/icn-dl-wh.svg);
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a:hover {
    color: var(--color-wh);
    border: 1px solid var(--color-brand);
    background-color: var(--color-brand);
}

.single-temp .single-mv .temp-area .btn-area .btn-dl button:hover {
    color: var(--color-brand);
    background-color: var(--color-wh);
}

.single-temp .single-mv .temp-area .btn-area .btn-demo a:hover::after {
    background-image: url(_img/icn-blank-wh.svg);
}

.single-temp .single-mv .temp-area .btn-area .btn-dl button:hover::after {
    background-image: url(_img/icn-dl-brand.svg);
}

.single-temp .single-mv .temp-area .dl-txt {
    text-align: center;
    font-size: 0.85em;
	color: var(--color-wh);
}

.single-temp .single-mv .temp-area .dl-txt .dl-count {
    font-size: 1.5em;
}

.single-temp .single-mv .temp-area .ofuse{
	font-size: 0.7em;
	line-height: 1.5;
	text-align: center;
	margin-top: 0.5em;
	color: var(--color-wh);
}

.single-temp .single-mv .temp-area .ofuse a{
	color: var(--color-wh);
	font-weight: bold;
}

/* 右側 */
.single-temp .post .posthdr .postcat {
    list-style: none;
    display: flex;
    gap: 0.5em;
    margin-bottom: 1.5em;
}

.single-temp .post .posthdr .postcat a {
    font-size: 0.75em;
    padding: 0.5em 1em;
    text-decoration: none;
    background-color: var(--color-wh);
    border: 1px solid var(--color-text);
    border-radius: 999px;
}

.single-temp .post .posthdr .postcat a:hover {
    color: var(--color-wh);
    background-color: var(--color-text);
    text-decoration: none;
}

.single-temp .post .posthdr .postcat::before,
.single-temp .post .posthdr .postcat::after,
.single-temp .post .posthdr .postcat li::after {
    display: none;
}

.single-temp .post .posthdr .postttl {
    font-size: 4em;
    line-height: 1.1;
    word-break: normal;
    text-align: left;
}

/* -----------------------------------------------------------------------
archive,category
---------------------------------------------------------------------- */
/* 投稿一覧タイトル-------------------- */
.archttl {
    padding: 1em 0 0.5em 1.2em;
    font-size: 4em;
    line-height: 1;
}

/* 投稿一覧-------------------- */
.arch {
    padding: 0 5em 5em;
}

/* 1投稿ごとのボックス-------------------- */
.arch .archbox {
    border-bottom: 1px solid var(--color-grey);
    padding: 1.5em 0;
}

.arch .archbox:first-of-type {
    border-top: 1px solid var(--color-grey);
}

.arch .archbox .postinfo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.5em;
}

/* 投稿タイトル */
.arch .archbox .postttl {
    font-size: 1.5em;
    line-height: 1.1;
    font-weight: bold;
}

.arch .archbox .postttl a {
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
}

.arch .archbox .postttl a:hover {
    color: var(--color-text);
}

.arch .archbox .postttl a span {
    display: inline-block;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.4, 1);
}

.arch .archbox .postttl a span::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
}

.arch .archbox .postttl a:hover span {
    transform: translateY(-100%);
}

/* 投稿日 */
.arch .archbox .postdate {
    font-size: 0.75em;
}

/* カテゴリラベル */
.arch .archbox .postcat {
    list-style: none;
    display: flex;
    gap: 0 0.25em;
    flex-wrap: wrap;
}

.arch .archbox .postcat::before,
.arch .archbox .postcat::after,
.arch .archbox .postcat li::after {
    display: inline-block;
}

.arch .archbox .postcat::before {
    content: "（";
}

.arch .archbox .postcat::after {
    content: "）";
}

.arch .archbox .postcat li::after {
    content: "／";
}

.arch .archbox .postcat li:last-of-type::after {
    display: none;
}

.arch .archbox .postcat li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.arch .archbox .postcat li a {
    text-decoration: none;
    font-size: 0.75em;
    line-height: 1;
    padding: 0.5em 0;
    color: var(--color-text);
    transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

.arch .archbox .postcat li a:hover {
    text-decoration: underline;
}

/* ページネーション-------------------- */
.archnav {
    margin-top: 2em;
}

.archnav .pagenation {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
}

.archnav .pagenation li a,
.archnav .pagenation .current {
    padding: 0.5em 1em;
}

.archnav .pagenation a {
    text-decoration: none;
}

.archnav .pagenation .current {
    background-color: var(--color-pblue);
}

/* テンプレート一覧ページ（category-temp.php）-------------------- */
.temp-arch-hdr {
    padding: 4em 5em 3em 5em;
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3em;
}

.temp-arch-hdr .archttl {
    padding: 0;
    flex-shrink: 0;
}

.temp-archcat-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.temp-archcat-menu li {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.temp-archcat-menu li a {
    font-size: 0.75em;
    padding: 0.5em 1em;
    text-decoration: none;
    background-color: var(--color-wh);
    border: 1px solid var(--color-text);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.temp-archcat-menu li a:hover {
    color: var(--color-wh);
    background-color: var(--color-text);
}

.temp-archcat-menu li a span.count {
    font-size: 0.75em;
}

.temp-archcat-menu li.current a {
    color: var(--color-wh);
    background-color: var(--color-text);
}

/* 一覧-------------------- */
.temp-arch {
    display: flex;
    justify-content: space-between;
    gap: 4em 0;
    flex-wrap: wrap;
}

/* 1投稿ごとのボックス-------------------- */
.temp-arch .archbox {
    border: none;
    width: calc(33% - 1.5em);
    padding: 0;
}

.temp-arch .archbox:first-of-type {
    border-top: none;
}

/* サムネイル */
.temp-arch .archbox .postthumb img,
.temp-arch .archbox .postthumb a {
    display: block;
    border-radius: 0.25em;
}

.temp-arch .archbox .postthumb a {
    overflow: hidden;
}

.temp-arch .archbox .postthumb a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.temp-arch .archbox .postbody {
    display: flex;
    align-items: end;
    gap: 3em;
    margin: 1em 0 0;
}

.temp-arch .archbox .postinfo {
    flex-direction: column;
    align-items: start;
    gap: 0;
}

/* 抜粋 */
.temp-arch .archbox .postexcerpt {
    margin: 1em 0 0.5em;
    font-size: 0.75em;
}

/* ボタン */
.temp-arch .archbox .postlink a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* ← 見せたい幅を固定 */
    padding: 0.5em 1em;
    border-radius: 999px;
    background-color: var(--color-wh);
    border: 1px solid var(--color-text);
    overflow: hidden;
    /* ← マスク */
}

.temp-arch .archbox .postlink .arrow-track {
    display: flex;
    gap: 18px;
    white-space: nowrap;
}

.temp-arch .archbox .postlink img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.temp-arch .archbox .postlink a:hover img {
    opacity: 1;
}

/* hover時だけ流す */
.temp-arch .archbox .postlink a:hover .arrow-track {
    animation: arrow-loop 0.9s linear infinite;
}

@keyframes arrow-loop {
    from {
        transform: translateX(-16px);
    }

    to {
        transform: translateX(16px);
    }
}

/* -----------------------------------------------------------------------
page
---------------------------------------------------------------------- */
.page-cnt .post .posthdr .postttl {
    font-size: 10em;
    line-height: 1;
    margin-bottom: 0.5em;
    word-break: normal;
    text-align: left;
}

/* -----------------------------------------------------------------------
Contact form7
---------------------------------------------------------------------- */
/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #bcbcbc;
    vertical-align: -3px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
    border: 1px solid #000;
    background: #000;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 6px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
}

/* ラジオボタン */
input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #000;
    content: '';
}

/* 送信ボタン */
input[type="submit"] {
    display: block;
    width: 260px;
    height: 60px;
    margin: 2em 0 0;
    background-color: var(--color-brand);
    color: #fff;
    font-size: 1em;
    border: 1px solid var(--color-brand);
	border-radius: 0.25em;
	transition: 0.3s;
    /* マウスホバー時のアニメーション */
}

input[type="submit"]:hover {
	background-color: var(--color-wh);
	color: var(--color-brand);
}

/* ajax-loader */
.wpcf7-spinner {
    vertical-align: middle;
}

/* reCAPTCHA消去 */
.grecaptcha-badge {
    visibility: hidden;
}

@media screen and (max-width: 600px) {
    .cf7__list {
        flex-direction: column;
    }

    .cf7__list dt {
        width: 100%;
    }

    .cf7__list dd:nth-of-type(n + 2) {
        margin-top: 0;
    }

    .cf7__list dd .wpcf7-checkbox,
    .cf7__list dd .wpcf7-radio {
        padding: 15px 0 0;
    }

    /* 送信ボタン */
    input[type="submit"] {
        width: 180px;
        height: 56px;
    }
}

.wpcf7 p{
	margin-bottom: 1.5em!important;
}

.wpcf7 span.required {
    margin-right: 8px;
    padding: 4px;
    font-size: 0.6em;
    vertical-align: middle;
    color: var(--color-wh);
    background-color: var(--color-brand);
}

.wpcf7 input,
.wpcf7 textarea {
    max-width: 50%;
	width: 100%;
    margin-top: 0.75em !important;
    padding: 0.5em;
	font-size: 1.1em;
}

.wpcf7 .box-border {
    max-width: 360px;
    padding: 24px;
}

.wpcf7 input[type="submit"]{
	width: 260px;
}

/*---------------------------------------------------------------------
WEB CLAP
----------------------------------------------------------------------*/
#webclapform{
	margin-top: 3em;
}

.wpcf7-form-control-wrap {
    display: block;
}

/* 送信のみの場合のラジオボタン */
.radio-single {
    display: none;
}

/* 送信後に表示 */
.webclapform_sent {
    display: none;
}

.sent .webclapform_sent {
    display: block;
}

.wpcf7 form .wpcf7-response-output {
    border: none!important;
    margin: 0!important;
    padding: 0!important;
}

.webclapform_sent h3 {
	font-size: 5em!important;
    line-height: 1.3;
    letter-spacing: 0;
}

#webclapform input[type="submit"]{
	margin: 0;
}

#webclapform .title p {
    display: flex;
    align-items: center;
}

/* -----------------------------------------------------------------------
フェードインアニメ
---------------------------------------------------------------------- */
.fadein {
    opacity: 0;
    transform: translateY(-32px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein.is-show {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width:1100px) {
    header .hdr-dlcount {
        display: none;
    }
}

/* -----------------------------------------------------------------------
スマホ用の処理
---------------------------------------------------------------------- */
@media screen and (max-width:600px) {
    /* ←←←消さないよう注意！ */

    body {
        font-size: 13px;
    }

    /* -----------------------------------------------------------------------
    layout
    ---------------------------------------------------------------------- */
    .subpage-layout {
        flex-direction: column;
    }

    /* -----------------------------------------------------------------------
    header
    ---------------------------------------------------------------------- */
    header .hdr-sitelogo a h1 {
        align-items: normal;
    }

    /* ナビゲーションメニュー-------------------- */
    header .pcmenu {
        display: none;
        /* PCの時は非表示 */
    }

    header .spmenu {
        display: block;
        /* スマホの時は表示 */
    }

    header .spmenu .gnav-sp {
        width: calc(100% - 6em);
        border-left: none;
    }

    /* -----------------------------------------------------------------------
    トップページ
    ---------------------------------------------------------------------- */
    .top-about {
        margin: 3em 2em;
    }

    .top-about h2 {
        font-size: 3em;
    }

    .top-temp .temp-link a {
        font-size: 1.5em;
    }

    .top-temp .temp-layout {
        grid-template-columns: 1fr;
        /* 左右を縦に */
    }

    .top-temp .temp-item .postbody {
        flex-direction: column;
        gap: 0;
    }

    .top-temp .temp-left.temp-item .postbody {
        gap: 0;
    }

    .top-term {
        padding: 3em 0;
    }

    .top-news {
        padding: 3em 2em;
        flex-wrap: wrap;
        gap: 1em;
    }

    /* -----------------------------------------------------------------------
    footer
    ---------------------------------------------------------------------- */
    .ftr-sitename {
        padding: 3em 1em 2em;
    }

    .ftr-dlrank {
        padding: 0 2em 3em;
    }

    .ftr-dlrank-hdr {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }

    .ftr-dlrank-hdr .ttl {
        font-size: 4em;
    }

    .ftr-dlrank .rankimg .rank {
        font-size: 2em;
    }

    .ftr-ad {
        padding: 3em 2em;
    }

    footer {
        padding: 3em 2em 1em;
    }

    footer .ftr-top {
        flex-direction: column;
        gap: 1em;
        padding: 0 0 2em;
    }

    .ftr-nav ul li {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25em;
    }

    .ftr-nav ul {
        justify-content: center;
        gap: 0.25em;
    }

    /* -----------------------------------------------------------------------
    subpage
    ---------------------------------------------------------------------- */
    .brandcrumbs-wrap {
        padding: 1em 2em;
    }

    .brandcrumbs-wrap .brandcrumbs {
        justify-content: normal;
    }

    /* -----------------------------------------------------------------------
    post
    ---------------------------------------------------------------------- */

    .post .postbody .embed-site .wp-block-media-text__content {
        padding: 2em;
    }

    /* -----------------------------------------------------------------------
    single
    ---------------------------------------------------------------------- */
    .subpage-layout .post {
        width: auto;
    }

    .post {
        padding: 3em 2em;
    }

    .post .posthdr .post-datecat {
        margin-bottom: 2em;
    }

    .single-mv {
        position: static;
        width: 100%;
        height: auto;
    }

    .single-temp .single-mv .temp-area {
        position: static;
        padding: 2em 0;
        background-color: var(--color-wh);
        background-image: none;
    }
	
	.single-temp .single-mv .temp-area .dl-txt,
	.single-temp .single-mv .temp-area .ofuse,
	.single-temp .single-mv .temp-area .ofuse a{
		color: var(--color-text);
	}

    /* -----------------------------------------------------------------------
    page
    ---------------------------------------------------------------------- */
    .page-cnt .post .posthdr .postttl {
        font-size: 4em;
    }

    /* -----------------------------------------------------------------------
    archive,category
    ---------------------------------------------------------------------- */
    .arch {
        padding: 0 2em 3em;
    }

    .archttl {
        padding: 0.75em 0.5em 0.5em;
    }

    .temp-arch {
        flex-direction: column;
    }

    .temp-arch-hdr {
        padding: 3em 2em 4em;
        gap: 2em;
    }

    .temp-arch-hdr .archttl {
        flex-shrink: inherit;
    }

    .temp-arch .archbox {
        width: 100%;
    }

	.wpcf7 input,
	.wpcf7 textarea {
    max-width: 90%;
	}
	
}
/* ←←←消さないよう注意！ */
/* -----------------------------------------------------------------------
スマホ用の処理ここまで
---------------------------------------------------------------------- */