@charset "UTF-8";
@import url(base.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Prompt:wght@900&display=swap');
* html body {
    background: url(null) fixed;
}
html, body {
    font-size: 10px;
    width: 100%;
}
body {
    position: relative;
    margin: 0;
    padding: 0;
    color: #292703;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    background-color: #FFF;
    font-family: "Noto Sans JP", serif;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    animation: fadein 3s forwards;
}
@keyframes fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
body:before, body:after {
    content: "";
    background: #292703;
    position: fixed;
    display: block;
    z-index: 5;
}
body:before {
    width: 5px;
    top: 0;
    right: 0;
    bottom: 0;
}
body:after {
    width: 5px;
    top: 0;
    bottom: 0;
    left: 0;
}
a {
    color: #292703;
    text-decoration: underline;
    -webkit-transition: all .6s;
    transition: all .6s;
}
a:hover {
    color: #292703;
    text-decoration: none;
}
*:focus {
    outline: none;
}
img {
    -webkit-backface-visibility: hidden;
}
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
    outline-offset: -2px;
}
input[type="text"], textarea, select {
    -webkit-appearance: none;
    border-radius: 0;
}
select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}
br.cancel {
    display: none;
}
@media screen and (max-width: 896px) {
    br.cancel {
        display: block;
    }
}
.inview-text--up {
    -webkit-transition: 1.2s .2s cubic-bezier(.16, .43, .45, 1);
    transition: 1.2s .2s cubic-bezier(.16, .43, .45, 1);
    -webkit-transform: translate3d(0, 20px, 0) skewY(3deg);
    transform: translate3d(0, 20px, 0) skewY(3deg);
    -webkit-transform-origin: left;
    transform-origin: left;
    opacity: 0
}
.inview-text--up.inview {
    -webkit-transform: translate3d(0, 0, 0) skewY(0);
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1
}
.inview-img--1 {
    -webkit-transition: 1s .2s cubic-bezier(.16, .43, .45, 1);
    transition: 1s .2s cubic-bezier(.16, .43, .45, 1);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    opacity: 0
}
.inview-img--1.inview {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}
/*!------------------------------------------------------------------
[reCAPTCHAバッジ非表示]
*/
.grecaptcha-badge {
    /*	bottom: 80px!important;*/
    visibility: hidden;
}
/*!------------------------------------------------------------------
[ヘッダー]
*/
header {
    position: fixed;
    z-index: +10;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #292703;
}
header h1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 15px;
    width: 15%;
    text-align: left;
}
header h1 a {
    display: block;
    text-align: left;
}
header h1 img {
    width: 100%;
    height: auto;
    max-height: 30px;
}
header ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 5px;
}
header ul li {
    transition: .8s;
}
header ul li a {
    display: flex;
    align-items: center;
    color: #FFF;
    padding: 0 15px;
    height: 50px;
    font-size: 1.4rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    box-sizing: border-box;
}
header ul li span {
    display: none;
}
header ul li:hover {
    color: #292703;
    background-color: #FFF04F;
}
@media screen and (max-width: 896px) {
    header h1 {
        width: 40%;
    }
    header h1 img {
        height: 24px;
    }
    header ul {
        display: none;
    }
}
/*!------------------------------------------------------------------
[パンくず]
*/
.breadcrumbs {
    position: relative;
    padding: 70px 0 10px;
    color: #292703;
    font-size: 1.2rem;
    line-height: 1.8em;
    background-color: #FFF04F;
    border-bottom: solid 5px #292703;
}
.breadcrumbs a {
    position: relative;
    display: inline-block;
    padding: 0 20px 0 15px;
    color: #292703;
    text-decoration: none;
}
.breadcrumbs a::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 4px;
    height: 4px;
    border-top: solid 2px #292703;
    border-right: solid 2px #292703;
    transform: rotate(45deg);
}
@media screen and (max-width: 896px) {
    .breadcrumbs a {
        padding: 0 10px 0 10px;
    }
}
/*!------------------------------------------------------------------
[最初のエリアだよ〜]
*/
section.mainvisual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    background-color: #FFF04F;
    box-sizing: border-box;
    transition: .8s;
}
section.mainvisual h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    font-size: clamp(3.2rem, 2.24rem + 4.8vw, 8rem);
    text-align: center;
    font-weight: 900;
    letter-spacing: .1em;
}
section.mainvisual h2 b {
    font-size: clamp(5rem, 4rem + 5vw, 10rem);
}
section.mainvisual h2 span {
    color: #FFF04F;
    font-size: clamp(2.8rem, 2.16rem + 3.2vw, 6rem);
    text-shadow: 1px 1px 1px #4E4521, -1px 1px 1px #4E4521, 1px -1px 1px #4E4521, -1px -1px 1px #4E4521, 1px 0 1px #4E4521, -1px 0 1px #4E4521, 0 1px 1px #4E4521, 0 -1px 1px #4E4521;
}
section.mainvisual h3 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 10% 0;
    font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
    text-align: center;
}
section.mainvisual h3 span {
    font-size: clamp(1.6rem, 1.36rem + 1.2vw, 2.8rem);
}
section.mainvisual h3 br {
    display: block;
}
.video {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.video::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: .3;
}
.video div {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 240, 79, 0.9);
}
.video video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(-50%) translateY(-50%);
}
section.mainvisual .text {
    position: absolute;
    z-index: 1;
    right: -50px;
    bottom: -200px;
    font-size: 500px;
    line-height: 1.2em;
    letter-spacing: -0.3em;
    font-weight: 700;
    font-feature-settings: "palt";
    transform: rotate(20deg);
    opacity: .6;
}
section.mainvisual .text span {
    position: relative;
    top: -60px;
    font-size: 150px;
    letter-spacing: 0em;
}
@media screen and (max-width: 896px) {
    section.mainvisual {
        height: 100svh;
    }
    section.mainvisual h2 {
        margin-bottom: 50px;
    }
    section.mainvisual h3 {
        margin: 50px auto 0;
        width: 84%;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    section.mainvisual h3 br {
        display: none;
    }
}
/*!------------------------------------------------------------------
[お目々がギョロリ]
*/
@property --eyelid {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}
@property --eyelid2 {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}
.eyes {
    width: 100%;
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.eyes div {
    position: relative;
    width: 120px;
    aspect-ratio: 1;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eyes div:before, .eyes div:after {
    content: '';
    position: absolute;
    width: 116%;
    height: 165%;
    left: 50%;
    animation: eyelid 5s ease-in-out infinite;
    z-index: 1;
}
.eyes div:before {
    top: 0;
    border-radius: 0% 0% 40% 40%;
    transform: translateY(var(--eyelid)) translateX(-50%);
    border-bottom: 40px solid #FFF04F;
}
.eyes div:after {
    bottom: 0;
    border-radius: 40% 40% 0% 0%;
    transform: translateY(var(--eyelid2)) translateX(-50%);
    border-top: 40px solid #FFF04F;
}
.eyes div i {
    position: absolute;
    width: 10px;
    height: 10px;
    aspect-ratio: inherit;
    background: #292703;
    border-radius: 50px;
    border: 30px solid #292703;
}
@media screen and (max-width: 896px) {
    .eyes {
        gap: 60px;
    }
    .eyes div i {
        position: absolute;
        width: 10px;
        height: 10px;
        aspect-ratio: inherit;
        background: #292703;
        border-radius: 50px;
        border: 25px solid #292703;
    }
}
@keyframes eyelid {
    0% {
        --eyelid: -50%;
        --eyelid2: 50%;
    }
    3% {
        --eyelid: 0%;
        --eyelid2: 0%;
    }
    6% {
        --eyelid: -50%;
        --eyelid2: 50%;
    }
    9%, 100% {
        --eyelid: 0%;
        --eyelid2: 0%;
    }
}
/*!------------------------------------------------------------------
[オススメエリアだっ！]
*/
section.pickup {
    margin: 0 auto;
    width: 1100px;
    height: 712px;
    background: url(../img/pickup_bg.png) center bottom no-repeat;
}
section.pickup h3 {
    margin-bottom: 20px;
    padding-right: 10px;
    font-size: clamp(4rem, 2.25rem + 3.13vw, 6rem);
    text-align: right;
    background: url(../img/pickup_border.png) right 90% no-repeat;
}
section.pickup ul {
    margin-left: 430px;
}
section.pickup ul li {
    padding-left: 30px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
    line-height: 62px;
    background: url(../img/pickup_icon.png) 0 24px no-repeat;
}
@media screen and (max-width: 896px) {
    section.pickup {
        padding-top: 0;
        width: 90%;
        height: auto;
        background-image: none;
    }
    section.pickup h3 {
        margin-bottom: 20px;
        padding-right: 0;
        font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
        text-align: center;
        background-size: 100%;
    }
    section.pickup ul {
        margin-left: 0;
    }
    section.pickup ul li {
        margin-bottom: 20px;
        padding-left: 25px;
        font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
        line-height: 24px;
        background: url(../img/pickup_icon.png) 0 6px no-repeat;
    }
}
/*!------------------------------------------------------------------
[ビジョン]
*/
section.vision {
    /*	padding: 150px 0 185px;*/
    color: #FFF;
    background-color: #292703;
}
section.vision .inner {
    position: relative;
    /*
	margin: auto;
	width: 90%;
	max-width: 900px;
*/
}
section.vision h3 {
    color: #FFF04F;
    font-size: clamp(6rem, 4rem + 10vw, 16rem);
    line-height: 1em;
    text-align: justify;
    text-justify: inter-character;
    word-break: break-all;
    font-feature-settings: "palt";
}
/*
section.vision .vision_first_box {
	width: 100%;
	line-height: 2.2em;
	letter-spacing: 0.2em;
}
section.vision .vision_first_box span.marker {
	background: linear-gradient(transparent 50%, #FFF04F 50%);
}
@media screen and (max-width: 896px) {
	section.vision {
		padding: 100px 0;
	}
	section.vision .vision_first_box {
		columns: 1;
		gap: 0;
		padding-top: 300px;
		line-height: 1.8em;
		letter-spacing: 0.1em;
	}
}
*/
/*!------------------------------------------------------------------
[主なご依頼]
*/
section.service {
    padding: 130px 0 150px;
    color: #292703;
    text-align: center;
    background-color: #FFF04F;
}
section.service.main {
    padding: 130px 0 30px;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.service h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.service h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.service.front h3 {
    position: relative;
    left: -3px;
    margin-bottom: 0;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.service.front h4 {
    margin-bottom: 70px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.service {
        padding: 75px 0 50px;
    }
    section.service.main {
        padding: 75px 0 20px;
    }
    section.service h3 {
        margin-bottom: 70px;
    }
    section.service.front h4 {
        margin-bottom: 35px;
    }
}
section.service ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
}
section.service ul li {
    display: flex;
    flex-direction: column;
    width: calc(100%/4 - 15px);
}
section.service ul li img {
    margin-bottom: 10px;
    width: 40%;
    height: auto;
    object-fit: cover;
    transform-origin: center bottom;
    animation: yurayura1 3s linear infinite;
}
section.service ul li:nth-child(even) img {
    animation: yurayura2 3s linear infinite;
}
section.service ul li h5 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
}
section.service ul li p {
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.8em;
    letter-spacing: 0;
    text-align: center;
}
section.service ul li ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.service ul li li {
    display: block;
    width: calc(100% - 10px);
    color: #FFF04F;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    border: 5px solid #292703;
    background-color: #292703;
}
section.service ul li a {
    display: block;
    width: 100%;
    color: #292703;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background-color: #FFF04F;
    -webkit-transition: all .6s;
    transition: all .6s;
}
section.service ul li a:hover {
    color: #FFF04F;
    background-color: #292703;
}
section.service .flow_btn {
    margin: auto;
    padding: 60px 0 40px;
    width: 90%;
    max-width: 1100px;
}
section.service .flow_btn a {
    display: block;
    margin: auto;
    width: 60%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.service .flow_btn a:hover {
    color: #FFF04F;
    width: 65%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.service ul {
        flex-direction: column;
        width: 84%;
    }
    section.service ul li {
        margin: 0 auto 50px;
        width: 90%;
    }
    section.service ul li img {
        width: 25%;
    }
    section.service ul li h5 {
        margin-bottom: 10px;
    }
    section.service ul li p {
        margin-bottom: 10px;
    }
    section.service ul li ul {
        width: 100%;
    }
    section.service ul li li {
        margin-bottom: 0;
    }
    section.service ul li a:hover {
        color: #292703;
        background-color: #FFF04F;
    }
    section.service .flow_btn {
        padding-top: 0;
    }
    section.service .flow_btn a {
        width: calc(94% - 10px);
        line-height: 60px;
    }
    section.service .flow_btn a:hover {
        color: #292703;
        width: calc(94% - 10px);
        background-color: #FFF04F;
    }
}
@keyframes yurayura1 {
    0%, 100% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
}
@keyframes yurayura2 {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}
.service_leadtext {
    margin: 0 auto 110px;
    width: 84%;
    max-width: 900px;
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
.service_mainitem {
    margin: 0 auto 120px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
}
.service_mainitem .service_mainitem__ttl {}
.service_mainitem .service_mainitem__ttl h3 {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    font-weight: 700;
}
.service_mainitem .service_mainitem__ttl h3 span {
    margin-right: 30px;
    font-size: clamp(4.5rem, 1.438rem + 5.47vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
}
.service_mainitem .service_mainitem__ttl h4 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 0.575rem + 2.19vw, 3.2rem);
    font-weight: 700;
}
.service_mainitem .service_mainitem__ttl p {
    margin: 0 0 50px;
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
.service_mainitem__text {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
.service_mainitem___box {
    display: flex;
    width: calc(100%/2 - 30px);
    border-top: 5px solid #292703;
}
.service_mainitem___box.bttborder {
    border-bottom: 5px solid #292703;
}
.service_mainitem___box a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 30px 20px 32px;
    text-decoration: none;
    background: url(../img/service_child_icon_arrow.svg) right 20px top 38px no-repeat;
    box-sizing: border-box;
    transition: all .6s;
}
.service_mainitem___box a:hover {
    background: #FFF04F url(../img/service_child_icon_arrow.svg) right 10px top 38px no-repeat;
}
.service_mainitem___box .link_nonebox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 20px 32px;
    box-sizing: border-box;
}
.service_mainitem___box .pupupu_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}
.service_mainitem___box .pupupu_icon img {
    width: auto;
    height: 100px;
}
.service_mainitem___box .box_text {
    display: flex;
    flex-direction: column;
    width: 75%;
}
.service_mainitem___box .box_text h5 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
    font-weight: 700;
}
.service_mainitem___box .box_text p {
    flex-grow: 1;
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
@media screen and (max-width: 896px) {
    .service_leadtext {
        margin: 0 auto 60px;
        width: 84%;
    }
    .service_mainitem {
        margin: 0 auto 80px;
        width: 84%;
        border-bottom: 5px solid #292703;
    }
    .service_mainitem .service_mainitem__ttl h3 {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 30px;
        width: 100%;
        line-height: 2em;
    }
    .service_mainitem .service_mainitem__ttl h3 span {
        display: block;
        margin-right: 0;
        width: 100%;
    }
    .service_mainitem .service_mainitem__ttl h4 {
        margin: 0 0 10px;
    }
    .service_mainitem .service_mainitem__ttl p {
        margin: 0 0 40px;
    }
    .service_mainitem__text {
        flex-direction: column
    }
    .service_mainitem___box {
        width: 100%;
    }
    .service_mainitem___box.bttborder {
        border-bottom: none;
    }
    .service_mainitem___box a {
        gap: 10px;
        padding: 20px 0 22px 10px;
        background: url(../img/service_child_icon_arrow.svg) right 28px no-repeat;
        background-size: auto 12px;
    }
    .service_mainitem___box a:hover {
        background: #FFF url(../img/service_child_icon_arrow.svg) right 28px no-repeat;
        background-size: auto 12px;
    }
    .service_mainitem___box .link_nonebox {
        gap: 10px;
        padding: 20px 0 22px 10px;
    }
    .service_mainitem___box .pupupu_icon {
        width: 25%;
        height: 100%;
    }
    .service_mainitem___box .pupupu_icon img {
        height: 80px;
    }
    .service_mainitem___box .box_text {
        width: 75%;
    }
    .service_mainitem___box .box_text h5 {
        margin-bottom: 5px;
    }
}
/*!------------------------------------------------------------------
[ガヤワークスについて]
*/
section.about {
    padding: 120px 0 0;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.about h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.about h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.about.front h3 {
    position: relative;
    left: -3px;
    margin-bottom: 0;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.about.front h4 {
    margin-bottom: 50px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.about {
        padding: 85px 0 0;
    }
    section.about h3 {
        margin-bottom: 70px;
    }
    section.about.front h4 {
        margin-bottom: 30px;
    }
}
section.about h5 {
    margin: 0 auto 20px;
    width: 70%;
    max-width: 650px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
    line-height: 2em;
}
section.about p {
    margin: 0 auto 50px;
    width: 70%;
    max-width: 650px;
    line-height: 2em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.about dl {
    margin: 0 auto 20px;
    width: 70%;
    max-width: 650px;
    display: flex;
    flex-flow: wrap;
    text-align: left;
}
section.about dl dt {
    padding: 25px;
    width: 25%;
    clear: both;
    line-height: 1.8;
    border-top: 5px solid #292703;
    box-sizing: border-box;
}
section.about dl dd {
    padding: 27px 25px 25px;
    width: 75%;
    line-height: 1.8em;
    border-top: 3px solid #292703;
    box-sizing: border-box;
}
section.about dl dd span {
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
}
section.about iframe {
    display: block;
    width: 100%;
    height: 250px;
    filter: sepia(50%);
}
@media screen and (max-width: 896px) {
    section.about h5 {
        margin: 0 auto 10px;
        width: 84%;
        text-align: left;
        line-height: 1.6em;
    }
    section.about h5 b {
        display: block;
    }
    section.about p {
        margin: 0 auto 40px;
        width: 84%;
        line-height: 1.8em;
    }
    section.about dl {
        margin: 0 auto;
        width: 84%;
    }
    section.about dl dt {
        padding: 15px 0;
        width: 23%;
        text-align: right;
    }
    section.about dl dd {
        padding: 17px 15px 15px;
        width: 77%;
    }
    section.about iframe {
        height: 200px;
    }
}
/*!------------------------------------------------------------------
[制作の流れ]
*/
section.flow {
    padding: 120px 0 150px;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.flow h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.flow h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.flow {
        padding: 85px 0 100px;
    }
    section.flow h3 {
        margin-bottom: 70px;
    }
}
section.flow ul {
    margin: auto;
    width: 80%;
    max-width: 900px;
}
section.flow li {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}
section.flow li:last-child {
    padding-bottom: 0;
}
section.flow li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50px;
    width: 2px;
    height: 98%;
    background: #292703;
}
section.flow li aside {
    position: relative;
    width: 100px;
    height: 100px;
    color: #FFF;
    font-size: 4rem;
    text-align: center;
    line-height: 100px;
    font-weight: 700;
    background-color: #292703;
    border-radius: 50%;
}
section.flow li div {
    margin-top: 30px;
    width: 85%;
    text-align: left;
}
section.flow li div h4 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
}
section.flow li div h5 {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
}
section.flow li div p {
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
@media screen and (max-width: 896px) {
    section.flow ul {
        width: 84%;
    }
    section.flow li {
        padding-bottom: 30px;
    }
    section.flow li::before {
        left: 25px;
    }
    section.flow li aside {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        line-height: 50px;
    }
    section.flow li div {
        margin: 10px auto 0;
        width: 78%;
    }
    section.flow li div h5 {
        margin-bottom: 10px;
    }
}
/*!------------------------------------------------------------------
[初めてのお客様]
*/
section.user {
    margin: auto;
    padding: 140px 0 150px;
    background-color: #FFF;
}
section.user h3 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 1.75rem + 1.88vw, 4rem);
    text-align: center;
}
section.user h4 {
    margin-bottom: 60px;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    text-align: center;
    font-weight: normal;
}
section.user ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 60px;
    width: 80%;
    width: 900px;
}
section.user ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(100%/4 - 60px);
}
section.user ul li img {
    margin-bottom: 20px;
    padding: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 5px solid #292703;
    box-sizing: border-box;
}
section.user ul li h5 {
    flex-grow: 1;
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 1.75rem + 1.88vw, 4rem);
    font-feature-settings: initial !important;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
section.user ul li p {
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    line-height: 1.8em;
    letter-spacing: 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.user a {
    display: block;
    margin: auto;
    width: 50%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.user a:hover {
    color: #FFF04F;
    width: 55%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.user {
        overflow: hidden;
        padding: 90px 0 100px;
    }
    section.user h3 {
        margin-bottom: 30px;
    }
    section.user h3 br {
        display: none;
    }
    section.user h4 {
        margin: 0 auto 40px;
        width: 84%;
    }
    section.user ul {
        flex-flow: wrap;
        margin: 0 auto;
        width: 84%;
    }
    section.user ul li {
        margin: 0 0 40px;
        width: calc(100%/2 - 10px);
    }
    section.user ul li img {
        margin-bottom: 20px;
    }
    section.user ul li p {
        line-height: 1.6em;
        letter-spacing: 0.1em;
    }
    section.user a {
        width: calc(84% - 10px);
        line-height: 60px;
    }
    section.user a:hover {
        width: calc(84% - 10px);
        color: #292703;
        background-color: #FFF04F;
    }
}
.mobileslider.slick-dotted.slick-slider {
    margin-bottom: 60px !important;
}
.mobileslider .slick-prev {
    top: 50% !important;
    left: 15px !important;
    transform: translateY(-50%) !important;
    width: 27px;
    height: 55px;
}
.mobileslider .slick-next {
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%) !important;
    width: 27px;
    height: 55px;
}
.mobileslider .slick-prev:before {
    content: url(../img/icon_prev.svg);
    opacity: 1;
}
.mobileslider .slick-next:before {
    content: url(../img/icon_next.svg);
    opacity: 1;
}
.mobileslider .slick-next, .mobileslider .slick-prev {
    z-index: +1;
}
.mobileslider .slick-dots {
    display: block;
    z-index: +1;
    bottom: -20px;
}
.mobileslider .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    width: 40px;
    height: 5px;
}
.mobileslider .slick-dots button {
    cursor: pointer;
    display: block;
    padding: 0;
    color: transparent;
    width: 40px;
    height: 5px;
    background-color: #FFF04F;
    border-radius: 2px;
    transition: .6s;
    outline: none;
}
.mobileslider .slick-active button {
    background-color: #292703;
}
.mobileslider .inview-text--up {
    -webkit-transform: translate3d(0, 0, 0) skewY(0) !important;
    transform: translate3d(0, 0, 0) skewY(0) !important;
    opacity: 1 !important;
}
/*!------------------------------------------------------------------
[コンセプト]
*/
section.concept {
    padding: 100px 0 0;
    color: #292703;
    text-align: center;
    background-color: #FFF04F;
}
section.concept h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.concept h4 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.concept {
        padding: 85px 0 90px;
    }
    section.concept h4 {
        margin-bottom: 80px;
    }
}
section.concept .box_01 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin: 0 auto 120px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
}
section.concept .box_01 h3 {
    margin-bottom: 30px;
    font-size: clamp(2.8rem, 1.75rem + 1.88vw, 4rem);
}
section.concept .box_01 p {
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.concept .box_01 img {
    width: 45%;
}
@media screen and (max-width: 896px) {
    section.concept .box_01 {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 40px;
        margin: 0 auto 100px;
        width: 84%;
    }
    section.concept .box_01 h3 {
        margin-bottom: 20px;
    }
    section.concept .box_01 img {
        margin: auto;
        width: 90%;
    }
}
section.concept .box_02 {
    margin: 0 auto 180px;
    padding: 60px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    background-color: #FFF;
    box-sizing: border-box;
}
section.concept .box_02 .item_01 {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}
section.concept .box_02 .item_02 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 80px;
    margin: 100px 0;
}
section.concept .box_02 .item_01 h3, section.concept .box_02 .item_02 h3 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
}
section.concept .box_02 .item_01 aside, section.concept .box_02 .item_02 aside {
    flex-grow: 1;
}
section.concept .box_02 .item_01 p, section.concept .box_02 .item_02 p {
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.concept .box_02 .item_01 div, section.concept .box_02 .item_02 img {
    padding: 15px;
    width: 35%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.concept .box_02 .item_01 img, section.concept .box_02 .item_02 img {
    padding: 15px;
    width: 35%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
@media screen and (max-width: 896px) {
    section.concept .box_02 {
        margin: 0 auto 100px;
        padding: 100px 8%;
        width: 100%;
    }
    section.concept .box_02 .item_01 {
        flex-direction: column;
        gap: 20px;
    }
    section.concept .box_02 .item_02 {
        flex-direction: column;
        gap: 20px;
        margin: 60px 0;
    }
    section.concept .box_02 .item_01 h3, section.concept .box_02 .item_02 h3 {
        margin-bottom: 10px;
    }
    section.concept .box_02 .item_01 img, section.concept .box_02 .item_02 img {
        width: 100%;
        height: 200px;
    }
}
section.concept .box_03 {
    margin: auto;
    padding-bottom: 190px;
    width: 80%;
    max-width: 1000px;
    text-align: left;
}
section.concept .box_03 h3 {
    margin: 0 auto 60px;
    font-size: clamp(2.8rem, 1.75rem + 1.88vw, 4rem);
    text-align: center;
    transform: rotate(-5deg);
}
section.concept .box_03 h3 br {
    display: none;
}
section.concept .box_03 h3 span {
    position: relative;
    display: inline-block;
    padding: 0 80px;
}
section.concept .box_03 h3 span:before, section.concept .box_03 h3 span:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 60px;
    height: 2px;
    background-color: #292703;
}
section.concept .box_03 h3 span:before {
    left: 0;
}
section.concept .box_03 h3 span:after {
    right: 0;
}
section.concept .box_03 ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    transform: rotate(-5deg);
}
section.concept .box_03 ul li:nth-child(even) {
    flex-flow: row-reverse;
}
section.concept .box_03 ul li:last-child {
    margin-bottom: 0;
}
section.concept .box_03 ul li img {
    padding: 15px;
    width: 40%;
    height: auto;
    object-fit: cover;
    border: 5px solid #292703;
    box-sizing: border-box;
}
section.concept .box_03 ul li h4 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
}
section.concept .box_03 ul li p {
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
@media screen and (max-width: 896px) {
    section.concept .box_03 {
        padding-bottom: 0;
        width: 84%;
    }
    section.concept .box_03 h3 {
        margin: 0 auto 20px;
        text-align: left;
        transform: rotate(0deg);
    }
    section.concept .box_03 h3 span {
        padding: 0;
    }
    section.concept .box_03 h3 br {
        display: block;
    }
    section.concept .box_03 h3 span:before, section.concept .box_03 h3 span:after {
        display: none;
    }
    section.concept .box_03 ul li {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
        transform: rotate(0deg);
    }
    section.concept .box_03 ul li:nth-child(even) {
        align-items: center;
        flex-flow: wrap;
    }
    section.concept .box_03 ul li img {
        width: 100%;
        height: 200px;
    }
    section.concept .box_03 ul li h4 {
        margin-bottom: 10px;
    }
}
/*!------------------------------------------------------------------
[お問い合わせ部分だってば]
*/
section.contact {
    padding: 120px 0 150px;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.contact h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.contact h3 {
    margin-bottom: 110px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.contact {
        padding: 80px 0 100px;
    }
    section.contact .box {
        margin: 0 auto 40px;
        width: 84%;
        text-align: left;
    }
    section.contact h3 {
        margin-bottom: 70px;
    }
}
section.contact .box {
    margin-bottom: 60px;
    line-height: 1.8em;
}
section.contact h5 {
    position: relative;
    margin: 0 auto 20px;
    width: 80%;
    max-width: 900px;
    text-align: center;
}
section.contact h5:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    display: block;
    width: 100%;
    height: 1px;
    border-top: solid 5px #292703;
}
section.contact h5 span {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    background-color: #FFF;
}
section.contact dl.phone {
    margin: 0 auto 50px;
    width: 80%;
    max-width: 900px;
}
section.contact dl.phone dt {
    margin-bottom: 20px;
}
section.contact dl.phone span {
    font-size: clamp(2.4rem, 1.7rem + 1.25vw, 3.2rem);
    font-weight: 700;
}
section.contact dl.form {
    display: flex;
    flex-flow: wrap;
    margin: 0 auto 40px;
    padding: 0;
    width: 80%;
    max-width: 900px;
    text-align: left;
    border-bottom: 3px solid #292703;
}
section.contact dl.form dt {
    position: relative;
    padding: 25px 15px;
    width: 30%;
    line-height: 16px;
    border-top: 5px solid #292703;
    box-sizing: border-box;
}
section.contact dl.form dt span {
    display: block;
    margin-top: 10px;
    width: 40px;
    color: #292703;
    font-size: 10px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #FFF04F;
}
section.contact dl.form dd {
    padding: 27px 15px 25px;
    width: 70%;
    letter-spacing: 0.1em;
    border-top: 3px solid #292703;
    box-sizing: border-box;
}
section.contact dl.form dd b {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: justify;
    text-justify: inter-ideograph;
}
.wpcf7-form-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.contact dl.form dd .wpcf7-list-item {
    margin: 0 !important;
}
section.contact dl.form dd .wpcf7-list-item label {
    display: flex;
    align-items: center;
}
section.contact dl.form dd input[type="text"] {
    padding: 15px;
    width: 100%;
    box-shadow: none;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    border: none;
    background-color: #FBFABA;
    box-sizing: border-box;
}
section.contact dl.form dd input[type="email"] {
    padding: 15px;
    width: 100%;
    box-shadow: none;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    border: none;
    background-color: #FBFABA;
    box-sizing: border-box;
}
section.contact dl.form dd textarea {
    padding: 15px;
    width: 100%;
    height: 200px;
    box-shadow: none;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    border: none;
    background-color: #FBFABA;
    box-sizing: border-box;
}
section.contact dl.form dd input[type="checkbox"] {
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
}
section.contact button {
    display: block;
    position: relative;
    cursor: pointer;
    margin: 40px auto 0;
    width: 400px;
    line-height: 60px;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: .6s;
}
section.contact button:hover {
    color: #FFF04F;
    width: 420px;
    border: 5px solid #292703;
    background-color: #292703;
}
.wpcf7-mail-sent-ok, .wpcf7-mail-sent-ng, .wpcf7-spam-blocked, .wpcf7-validation-errors {
    margin: 0 auto 20px;
    width: 80%;
    max-width: 900px;
    line-height: 30px;
}
.wpcf7-response-output {
    margin: 40px auto 0 !important;
    padding: 10px 0 !important;
    width: 80%;
    max-width: 900px;
    color: #711d26;
    border: none !important;
    background: #f7d7da;
}
span.wpcf7-not-valid-tip, .wpcf7-response-output.wpcf7-validation-errors {
    margin-top: 5px;
}
@media screen and (max-width: 896px) {
    section.contact .box {
        margin-bottom: 40px;
    }
    section.contact h5 {
        margin: 0 auto 10px;
        width: 84%;
    }
    section.contact dl.phone {
        margin: 0 auto 20px;
        width: 84%;
    }
    section.contact dl.phone dt {
        margin-bottom: 20px;
    }
    section.contact dl.form {
        flex-direction: column;
        margin: 0 auto 30px;
        width: 84%;
    }
    section.contact dl.form dt {
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        padding: 15px 10px;
        width: 100%;
        border-top: 5px solid #292703;
    }
    section.contact dl.form dt span {
        display: inline-block;
        margin: 0 0 0 10px;
    }
    section.contact dl.form dd {
        padding: 0;
        width: 100%;
    }
    section.contact dl.form dd b {
        padding: 15px 10px 0;
    }
    section.contact dl.form dd .wpcf7-checkbox {
        padding: 15px 10px;
        font-size: 1.2rem;
    }
    section.contact dl.form dd .wpcf7-acceptance {
        display: flex;
        justify-content: center;
        padding: 0 10px 15px;
    }
    section.contact button {
        margin: 30px auto 0;
        width: 84%;
        line-height: 50px;
    }
    section.contact button:hover {
        width: 84%;
        color: #292703;
        background-color: #FFF04F;
    }
    .wpcf7-mail-sent-ok, .wpcf7-mail-sent-ng, .wpcf7-spam-blocked, .wpcf7-validation-errors {
        width: 84%;
        font-size: 12px;
        box-sizing: border-box;
    }
    .wpcf7-response-output {
        margin: 30px auto 0 !important;
        padding: 10px 40px !important;
        width: 84%;
        font-size: 12px;
        box-sizing: border-box;
    }
    span.wpcf7-not-valid-tip, .wpcf7-response-output.wpcf7-validation-errors {
        margin: 5px 0 10px;
        font-size: 12px;
    }
}
/*!------------------------------------------------------------------
[プライバシーポリシー]
*/
section.privacy {
    padding: 120px 0 150px;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.privacy h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(4.8rem, 0.25rem + 8.13vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.privacy h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.privacy .inner {
    margin: 0 auto;
    width: 80%;
    max-width: 800px;
    text-align: left;
}
section.privacy h4 {
    margin-top: 40px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
    line-height: 1.6em;
}
section.privacy p {
    margin-top: 20px;
    line-height: 1.6em;
}
section.privacy ul {
    list-style: circle;
}
@media screen and (max-width: 896px) {
    section.privacy {
        padding: 80px 0 100px;
    }
    section.privacy h3 {
        margin-bottom: 80px;
    }
    section.privacy .inner {
        width: 84%;
    }
    section.privacy h4 {
        margin-top: 30px;
    }
    section.privacy p {
        margin-top: 10px;
    }
}
/*!------------------------------------------------------------------
[ご質問など]
*/
section.question {
    padding: 120px 0 50px;
    color: #292703;
    text-align: center;
    background-color: #FFF;
}
section.question h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.question h2.small {
    font-size: clamp(6.4rem, 3.25rem + 5.62vw, 10rem);
}
section.question h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.question {
        padding: 80px 0 30px;
    }
    section.question h3 {
        margin-bottom: 80px;
    }
}
section.question h4 {
    margin-bottom: 50px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
}
section.question h4 span {
    position: relative;
    display: block;
    margin: auto;
    padding: 15px 0;
    width: 84%;
    max-width: 800px;
    border-top: solid 5px #292703;
    border-bottom: solid 5px #292703;
    box-sizing: border-box;
}
section.question h4 span:before, section.question h4 span:after {
    content: '';
    position: absolute;
    top: -15px;
    width: 5px;
    height: -webkit-calc(100% + 30px);
    height: calc(100% + 30px);
    background-color: #292703;
}
section.question h4 span:before {
    left: 10px;
}
section.question h4 span:after {
    right: 10px;
}
section.question ul {
    margin: 0 auto 60px;
    width: 84%;
    max-width: 800px;
}
section.question ul li {
    padding-left: 140px;
    padding-bottom: 60px;
    text-align: justify;
    text-justify: inter-ideograph;
    background: url(../img/qa_icon.png) 0 0 no-repeat;
    background-size: 100px auto;
}
section.question ul li h5 {
    margin-bottom: 10px;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    line-height: 1.6em;
}
@media screen and (max-width: 896px) {
    section.question h4 {
        margin-bottom: 40px;
    }
    section.question ul li {
        padding-left: 70px;
        padding-bottom: 40px;
        background-size: 50px auto;
    }
    section.question ul li h5 {
        margin-bottom: 10px;
    }
}
section.question .comingsoon a {
    display: block;
    margin: 40px auto 110px;
    width: 50%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.question .comingsoon a:hover {
    color: #FFF04F;
    width: 55%;
    background-color: #292703;
}
section.question .comingsoon a br {
    display: none;
}
@media screen and (max-width: 896px) {
    section.question .comingsoon a {
        margin: 20px auto 70px;
        padding: 10px 20px;
        width: calc(84% - 10px);
        line-height: 1.6em;
        box-sizing: border-box;
    }
    section.question .comingsoon a:hover {
        color: #FFF04F;
        width: calc(84% - 10px);
        background-color: #292703;
    }
    section.question .comingsoon a br {
        display: block;
    }
}
/*!------------------------------------------------------------------
[関連業務]
*/
section.others .item_box_01 {
    max-width: 100%;
    text-align: left;
    background-color: #FFD800;
}
section.others .item_box_02 {
    max-width: 100%;
    color: #FFF;
    text-align: left;
    background-color: #D44D18;
}
section.others .item_box_03 {
    max-width: 100%;
    color: #FFF;
    text-align: left;
    background-color: #0F3A5B;
}
section.others .item_box_01 aside {
    margin: 0 auto;
    padding: 60px;
    width: 80%;
    max-width: 1000px;
    background: url(../img/service_img_02.svg) right 10% center no-repeat;
    background-size: auto 140px;
    box-sizing: border-box;
}
section.others .item_box_02 aside {
    margin: 0 auto;
    padding: 60px;
    width: 80%;
    max-width: 1000px;
    background: url(../img/service_img_01.svg) right 10% center no-repeat;
    background-size: auto 240px;
    box-sizing: border-box;
}
section.others .item_box_03 aside {
    margin: 0 auto;
    padding: 60px;
    width: 80%;
    max-width: 1000px;
    background: url(../img//service_img_03.svg) right 10% center no-repeat;
    background-size: auto 240px;
    box-sizing: border-box;
}
section.others h4 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
    line-height: 1.5;
}
section.others h4 span {
    display: block;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
}
section.others h5 {
    margin-bottom: 40px;
    width: 50%;
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
    font-weight: 400;
}
section.others .btn a {
    display: inline-block;
    position: relative;
    padding: 15px 150px 15px 20px;
    color: #292703;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    font-weight: 700;
    text-decoration: none;
    border: 5px solid #292703;
    background: #FFF04F url(../img/icon_blank.svg) right 20px center no-repeat;
    background-size: 20px;
    box-sizing: border-box;
    transition: all .6s;
    -webkit-transition: all .6s;
}
section.others .btn a:hover {
    padding: 15px 180px 15px 20px;
}
@media screen and (max-width: 896px) {
    section.others .item_box_01, section.others .item_box_02, section.others .item_box_03 {
        text-align: center;
    }
    section.others .item_box_01 aside {
        padding: 130px 0 40px;
        width: 84%;
        background: url(../img/service_img_02.svg) center top 40px no-repeat;
        background-size: auto 60px;
    }
    section.others .item_box_02 aside {
        padding: 150px 0 40px;
        width: 84%;
        background: url(../img/service_img_01.svg) center top 40px no-repeat;
        background-size: auto 80px;
    }
    section.others .item_box_03 aside {
        padding: 150px 0 40px;
        width: 84%;
        background: url(../img/service_img_03.svg) center top 40px no-repeat;
        background-size: auto 80px;
    }
    section.others h4 {
        margin-bottom: 20px;
    }
    section.others h5 {
        margin-bottom: 30px;
        width: 100%;
    }
    section.others .btn a {
        display: block;
        padding: 10px 0;
        width: calc(100% - 10px);
        background-size: 16px;
    }
    section.others .btn a:hover {
        padding: 10px 0;
        width: calc(100% - 10px);
        color: #FFF04F;
        background-color: #292703;
    }
}
/*!------------------------------------------------------------------
[ガヤマガジン名付けてガヤジン]
*/
section.blog {
    margin: 0 auto;
    padding: 120px 0 70px;
    text-align: center;
    background-color: #FFF;
}
section.blog.front {
    padding: 120px 0 150px;
    background-color: #FFF04F;
}
.motionContainer {
    display: flex;
    flex-flow: wrap;
    gap: 40px;
    margin: auto;
    padding-bottom: 80px;
    width: 90%;
    max-width: 1100px;
}
section.blog h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.blog h3 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.blog.front h3 {
    position: relative;
    left: -3px;
    margin-bottom: 0;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.blog.front h4 {
    margin-bottom: 70px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.blog {
        padding: 80px 0 0;
    }
    section.blog.front {
        padding: 120px 0 100px;
    }
    .motionContainer {
        gap: 20px;
        padding-bottom: 40px;
        width: 84%;
    }
    section.blog h3 {
        margin-bottom: 80px;
    }
    section.blog.front h4 {
        margin-bottom: 40px;
    }
}
section.blog .item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 20px;
    width: calc(100%/3 - 27px);
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
    text-align: justify;
    text-justify: inter-ideograph;
    transition: all 0.6s !important;
}
section.blog .item a > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section.blog .post_date {
    flex-grow: 1;
    color: #292703;
    font-size: 12px;
}
section.blog .category_tag {
    padding: 3px 5px;
    color: #FFF;
    width: 30%;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}
section .marketing {
    background-color: #FFAD00;
}
ssection .markup {
    background-color: #73CC17;
}
section .design {
    background-color: #FC0077;
}
section .wordpress {
    background-color: #21759a;
}
section .gayaworks {
    color: #292703 !important;
    background-color: #FFF;
}
section .others {
    background-color: #bf0000;
}
section.blog .post_image {
    margin: 20px 0;
    width: 100%;
}
section.blog .post_image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
section.blog .post_title {
    margin-bottom: 15px;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    font-weight: bold;
}
section.blog .post_caption {
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
}
section.blog .item a {
    text-decoration: none;
}
section.blog .item:hover {
    color: #FFF04F;
    transform: scale(1.08) !important;
    border: 5px solid #292703;
    background-color: #292703;
}
section.blog .item:hover p.post_date, section.blog .item:hover p.post_title, section.blog .item:hover p.post_caption {
    color: #FFF04F;
}
section.blog .moreblog {
    margin: auto;
    width: 90%;
    max-width: 1100px;
}
section.blog .moreblog a {
    display: block;
    margin: auto;
    color: #292703;
    width: 30%;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    font-weight: 700;
    line-height: 60px;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    -webkit-transition: all .6s;
    transition: all .6s;
}
section.blog .moreblog a:hover {
    color: #FFF04F;
    width: 32%;
    border: 5px solid #292703;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.blog .item {
        width: 100%;
    }
    section.blog .moreblog {
        width: 84%;
    }
    section.blog .moreblog a {
        width: calc(100% - 10px);
    }
    section.blog .moreblog a:hover {
        color: #292703;
        width: calc(100% - 10px);
        background-color: #FFF04F;
    }
    section.blog .item:hover {
        color: #292703;
        background-color: #FFF04F;
        transform: scale(1) !important;
    }
    section.blog .item:hover p.post_date, section.blog .item:hover p.post_title, section.blog .item:hover p.post_caption {
        color: #292703;
    }
}
/*!------------------------------------------------------------------
[ガヤジンの記事ページ]
*/
section.blog_post {
    padding: 40px 0 150px;
    text-align: center;
    background-color: #FFF;
}
section.blog_post .inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: auto;
    width: 90%;
    max-width: 1100px;
}
section.blog_post .left {
    width: 30%;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.blog_post .left .archive {
    margin-bottom: 40px;
    padding: 30px;
    border: 5px solid #292703;
    background-color: #FFF04F;
}
section.blog_post .left .archive h3 {
    margin-bottom: 0;
    color: #FFF04F;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    text-align: center;
    line-height: 40px;
    background-color: #292703;
}
section.blog_post .left .archive ul li img {
    margin-bottom: 10px;
    width: 100%;
    height: 140px;
    object-fit: cover;
}
section.blog_post .left .archive ul li a {
    display: block;
    padding: 10px 0;
    color: #292703;
    text-decoration: none;
    border-bottom: 5px solid #292703;
}
section.blog_post .left .archive ul.year li a {
    color: #292703;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
}
section.blog_post .left .archive ul li a:hover {
    color: #FFF04F;
    background-color: #292703;
}
section.blog_post .right {
    width: 70%;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.blog_post .right .post_box {
    padding: 30px;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.blog_post .right .post_box .post_time_deta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    color: #FFF;
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
}
section.blog_post .right .post_box .post_time_deta .data {
    width: 20%;
    text-align: center;
    line-height: 40px;
    background-color: #292703;
}
section.blog_post .right .post_box .post_time_deta .category {
    color: #FFF;
    width: 20%;
    text-align: center;
    line-height: 40px;
}
section.blog_post .right .post_box h3 {
    margin-bottom: 40px;
    padding-bottom: 20px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
    font-weight: 700;
    border-bottom: 5px solid #292703;
}
section.blog_post .right .post_box h4 {
    margin-bottom: 20px;
    padding: 10px 15px;
    color: #FFF04F;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    font-weight: 700;
    background-color: #292703;
}
section.blog_post .right .post_box h5 {
    margin-bottom: 20px;
    padding-left: 10px;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    font-weight: 700;
    border-left: 5px solid #292703;
}
section.blog_post .right .post_box h6 {
    margin-bottom: 20px;
    font-size: clamp(1.4rem, 1.225rem + 0.31vw, 1.6rem);
    font-weight: 700;
}
section.blog_post .right .post_box ul {
    margin-bottom: 40px;
    line-height: 2em;
}
section.blog_post .right .post_box ul li {
    padding-left: 1em;
    text-indent: -1em;
}
section.blog_post .right .post_box ul li::before {
    content: "◎";
    margin-right: 10px;
}
section.blog_post .right .post_box table {
    margin-bottom: 60px;
    border-right: 1px solid #292703;
    border-top: 1px solid #292703;
    box-sizing: border-box;
}
section.blog_post .right .post_box table td:nth-of-type(1) {
    width: 25%;
}
section.blog_post .right .post_box table td {
    padding: 10px;
    border-left: 1px solid #292703;
    border-bottom: 1px solid #292703;
    box-sizing: border-box;
}
section.blog_post .right .post_box p {
    margin-bottom: 40px;
    line-height: 2em;
}
section.blog_post .right .post_box img {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
}
section.blog_post .right .post_box a {
    color: #292703;
    font-weight: 700;
    text-decoration: underline;
}
section.blog_post .right .post_box a:hover {
    text-decoration: none;
}
section.blog_post .right .post_box iframe {
    width: 100% !important;
    height: auto;
}
@media screen and (max-width: 896px) {
    section.blog_post {
        padding: 0;
        text-align: center;
        background-color: #FFF04F;
    }
    section.blog_post .inner {
        flex-direction: column-reverse;
        gap: 0;
        margin: auto;
        width: 100%;
    }
    section.blog_post .left {
        padding: 30px 0;
        width: 100%;
        border-bottom: 5px solid #292703;
    }
    section.blog_post .left .archive {
        margin-bottom: 0;
        padding: 0 30px;
        border: none;
    }
    section.blog_post .left .archive h3 {
        line-height: 40px;
        border-bottom: 5px solid #292703;
    }
    section.blog_post .left .archive h3.first_ttl {
        border-top: 5px solid #292703;
    }
    section.blog_post .left .archive ul li a {
        padding: 15px;
    }
    section.blog_post .left .archive ul li a:hover {
        color: #292703;
        background-color: #FFF04F;
    }
    section.blog_post .right {
        width: 100%;
    }
    section.blog_post .right .post_box {
        padding: 30px 30px 0;
        border-top: none;
        border-right: none;
        border-bottom: 5px solid #292703;
        border-left: none;
    }
    section.blog_post .right .post_box .post_time_deta {
        justify-content: space-between;
        margin-bottom: 20px;
    }
    section.blog_post .right .post_box .post_time_deta .data {
        width: 50%;
        line-height: 30px;
    }
    section.blog_post .right .post_box .post_time_deta .category {
        width: 50%;
        line-height: 30px;
    }
    section.blog_post .right .post_box h3 {
        margin-bottom: 30px;
    }
    section.blog_post .right .post_box h4 {
        margin-bottom: 20px;
        padding: 10px;
    }
    section.blog_post .right .post_box ul {
        margin-bottom: 60px;
        line-height: 2em;
    }
    section.blog_post .right .post_box table {
        margin-bottom: 40px;
    }
    section.blog_post .right .post_box p {
        margin-bottom: 40px;
        line-height: 1.8em;
    }
}
/* ブログ記事ページャー */
section.blog_post .right div.pager {
    overflow: hidden;
}
section.blog_post .right div.pager p.list a {
    display: block;
    margin: 0 0 0 auto;
    padding: 20px 30px 20px 0;
    width: calc(50% - 30px);
    color: #292703;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
    text-align: right;
    font-weight: 700;
    text-decoration: none;
    border-right: 5px solid #292703;
    border-bottom: 5px solid #292703;
    border-left: 5px solid #292703;
    background-color: #FFF04F;
    -webkit-transition: all .6s;
    transition: all .6s;
}
section.blog_post .right div.pager p.list a:hover {
    padding: 20px 50px 20px 0;
    color: #FFF04F;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.blog_post .right div.pager p.list a {
        margin: 0;
        padding: 20px 0;
        width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 5px solid #292703;
        border-left: none;
    }
    section.blog_post .right div.pager p.list a:hover {
        padding: 20px 0;
        color: #292703;
        background-color: #FFF04F;
    }
}
/*!------------------------------------------------------------------
[404ページ]
*/
section#notfound {
    padding: 100px 0;
    min-height: 800px;
    background: url(../img/img_404.png) 80px bottom no-repeat;
}
section#notfound div {
    margin: 100px 0 0 550px;
}
section#notfound div h1 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
}
section#notfound div h2 {
    margin-bottom: 20px;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
}
section#notfound div ol li {
    margin-bottom: 10px;
}
section#notfound div ol a {
    color: #292703;
    text-decoration: underline;
}
@media screen and (max-width: 896px) {
    section#notfound {
        display: none;
    }
}
/*!------------------------------------------------------------------
[固定要素]
*/
.contact_phone {
    position: fixed;
    z-index: +12;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    border-bottom: 5px solid #292703;
    transition: .8s;
}
.contact_phone a {
    display: block;
    padding: 0 15px 0 35px;
    color: #292703;
    font-size: clamp(1.2rem, 0.85rem + 0.63vw, 1.6rem);
    text-align: center;
    font-weight: 700;
    line-height: 60px;
    text-decoration: none;
    border-top: 5px solid #292703;
    border-left: 5px solid #292703;
    border-right: 5px solid #292703;
    background-color: #FFF04F;
    background-image: url(../img/icon_phone.svg);
    background-position: 15px 16px;
    background-repeat: no-repeat;
    background-size: auto 24px;
    box-sizing: border-box;
}
.contact_phone a:hover {
    padding: 0 15px 0 45px;
    background-position: 25px 16px;
}
.contact_btn {
    position: fixed;
    z-index: +12;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    border-bottom: 5px solid #292703;
    transition: .8s;
}
.contact_btn a {
    display: block;
    padding: 0 15px 0 40px;
    color: #292703;
    font-size: clamp(1.2rem, 0.85rem + 0.63vw, 1.6rem);
    text-align: center;
    font-weight: 700;
    line-height: 60px;
    text-decoration: none;
    border-top: 5px solid #292703;
    border-left: 5px solid #292703;
    border-right: 5px solid #292703;
    background-color: #FFF04F;
    background-image: url(../img/icon_mail.svg);
    background-position: 10px 21px;
    background-repeat: no-repeat;
    background-size: auto 18px;
    box-sizing: border-box;
}
.contact_btn a:hover {
    padding: 0 25px 0 40px;
}
@media screen and (max-width: 896px) {
    .contact_phone {
        width: 50%;
    }
    .contact_phone a {
        padding: 0 10px 0 30px;
        width: 100%;
        line-height: 40px;
        background-position: 15px 9px;
        background-size: auto 20px;
    }
    .contact_phone a:hover {
        padding: 0 10px 0 30px;
    }
    .contact_btn {
        width: 50%;
    }
    .contact_btn a {
        padding: 0 10px 0 35px;
        width: 100%;
        line-height: 40px;
        border-left: none;
        background-position: 13px 14px;
        background-size: auto 14px;
    }
    .contact_btn a:hover {
        padding: 0 10px 0 35px;
    }
}
/*!------------------------------------------------------------------
[ページトップ]
*/
#page-top {
    color: #FFF04F;
    width: 40px;
    height: 55px;
    font-size: 24px;
    line-height: 55px;
    text-align: center;
    text-decoration: none;
    display: block;
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: -50px;
    background: #292703;
    transition: .8s;
}
#page-top:hover {
    color: #292703;
    background: #FFF04F;
}
#page-top:hover .fa {
    transition: .6s;
}
#page-top:hover .fa {
    transform: rotateY(360deg);
}
/*!------------------------------------------------------------------
[フッター周り]
*/
footer {
    padding: 15px 8%;
    width: 100%;
    color: #292703;
    height: 70px;
    line-height: 10px;
    background-color: #FFF04F;
    box-sizing: border-box;
}
footer address {
    margin-bottom: 10px;
    font-size: 10px;
    text-align: center;
    font-style: normal;
}
footer small {
    display: block;
    /*	padding: 0 30px;*/
    font-size: 8px;
    text-align: center;
    font-feature-settings: "palt";
    word-break: keep-all;
}
#h_nav {
    display: none;
}
@media screen and (max-width: 896px) {
    footer {
        padding: 15px 8% 70px;
    }
    footer address {
        font-size: 8px;
    }
}
@media screen and (max-width: 896px) {
    .h_nav_btn {
        position: fixed;
        z-index: +12 !important;
        top: 0px;
        right: 0px;
        pointer-events: auto;
        cursor: pointer;
        width: 80px;
        height: 60px;
        background-color: #292703;
    }
    /*
	.h_nav_btn.active {
		background-color: #FFF04F;
	}
*/
    .h_nav_bar, .h_nav_bar span {
        transition: all .6s;
        box-sizing: border-box;
    }
    .h_nav_bar {
        position: relative;
        padding: 0 15px;
        width: 50px;
        height: 60px;
    }
    .h_nav_bar span {
        position: absolute;
        left: 15px;
        width: 100%;
        height: 3px;
        background-color: #FFF04F;
    }
    .h_nav_bar span:first-child {
        top: 22px;
        width: 100%;
    }
    .h_nav_bar span:last-child {
        bottom: 22px;
        left: 25px;
        width: 40px;
    }
    .active .h_nav_bar span:first-child {
        top: 27px;
        left: 15px;
        -webkit-transform: translateY(1px) rotate(-315deg);
        transform: translateY(1px) rotate(-315deg);
        background-color: #FFF;
    }
    .active .h_nav_bar span:last-child {
        bottom: 27px;
        left: 15px;
        width: 100%;
        -webkit-transform: translateY(-1px) rotate(315deg);
        transform: translateY(-1px) rotate(315deg);
        background-color: #FFF;
    }
    #h_nav {
        position: fixed;
        z-index: +11 !important;
        top: 0;
        visibility: hidden;
        overflow: scroll;
        display: block;
        width: 100%;
        height: 100%;
        list-style: none;
        pointer-events: auto;
        background-color: #292703;
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        opacity: 0;
        transition: .6s;
    }
    .active #h_nav {
        visibility: visible;
        opacity: 1;
        transition: .6s;
    }
    #h_nav .inner {
        position: relative;
        z-index: +10 !important;
        overflow: scroll;
        width: 100%;
        border-right: 5px solid #292703;
        border-left: 5px solid #292703;
        box-sizing: border-box;
    }
    #h_nav .inner h3 {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-left: 10px;
        width: 40%;
        height: 60px;
        text-align: left;
    }
    #h_nav .inner h3 a {
        display: block;
        text-align: left;
    }
    #h_nav .inner h3 img {
        width: auto;
        height: 24px;
    }
    #h_nav .inner ul {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        background-color: #FFF04F;
    }
    #h_nav .inner ul li {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    #h_nav .inner ul li a {
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-flow: row-reverse;
        align-items: center;
        padding: 0 15px;
        font-size: 16px;
        line-height: 50px;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 5px solid #292703;
        box-sizing: border-box;
    }
    #h_nav .inner ul li a span {
        font-size: 10px;
    }
    #h_nav .inner ul li ul {
        display: flex;
        flex-flow: wrap;
        gap: 5px;
        padding: 5px;
        width: 100%;
        border-bottom: 5px solid #292703;
        background-color: #FFF04F;
        box-sizing: border-box;
    }
    #h_nav .inner ul li ul li {
        width: calc(100%/2 - 2.5px);
    }
    #h_nav .inner ul li ul li a {
        flex-flow: row;
        color: #FFF04F;
        font-size: 10px;
        line-height: 40px;
        border-bottom: none;
        background: #292703 url(../img/icon_next.svg) right 15px center no-repeat;
        background-size: auto 10px;
    }
    #h_nav .inner ul li ul li b {
        padding: 0 15px;
        color: #FFF04F;
        font-size: 10px;
        line-height: 30px;
        border-bottom: none;
        background-color: #292703;
    }
}
.iframe-wrapper iframe {
    margin: 0 0 30px !important;
}
/*!------------------------------------------------------------------
[コーポレートサイト]
*/
section.corporatesite {
    padding: 100px 0 100px;
    text-align: center;
    background-color: #FFF;
}
section.corporatesite h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(6.4rem, 3.25rem + 5.62vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.corporatesite h4 {
    margin-bottom: 95px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.corporatesite {
        padding: 85px 0 65px;
    }
    section.corporatesite h4 {
        margin-bottom: 80px;
    }
}
section.corporatesite .corporatesite_box-first, section.corporatesite .corporatesite_box-second, section.corporatesite .corporatesite_box-three, section.corporatesite .corporatesite_box-four {
    margin: auto;
    padding-bottom: 60px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    font-weight: 700;
}
section.corporatesite .inner h3 {
    margin-bottom: 20px;
    font-size: clamp(3.2rem, 1.625rem + 2.81vw, 5rem);
    text-align: center;
}
section.corporatesite .inner h3 span {
    font-size: clamp(1.6rem, 0.9rem + 1.25vw, 2.4rem);
}
section.corporatesite .inner h4 {
    margin-bottom: 10px;
    font-size: clamp(2.4rem, 1rem + 2.5vw, 4rem);
}
section.corporatesite .inner p {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.corporatesite .corporatesite_box-first h3 {
    margin-bottom: 40px;
}
section.corporatesite .corporatesite_box-second h3 {
    font-size: clamp(2.4rem, 1rem + 2.5vw, 4rem);
    text-align: left;
}
section.corporatesite .corporatesite_box-three h3 span, section.corporatesite .corporatesite_box-four h3 span {
    display: block;
}
section.corporatesite .corporatesite_box-first p {
    margin: 0;
}
section.corporatesite .corporatesite_box-four p {
    margin-bottom: 100px;
}
section.corporatesite .inner p b {
    background: linear-gradient(transparent 60%, #FFF04F 60%);
}
section.corporatesite .corporatesite_box-three ul li {
    display: flex;
    gap: 60px;
}
section.corporatesite .corporatesite_box-three .point_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
section.corporatesite .corporatesite_box-three .point {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 5px;
    font-size: 24px;
}
section.corporatesite .corporatesite_box-three .point::before, section.corporatesite .corporatesite_box-three .point::after {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #292703;
}
section.corporatesite .corporatesite_box-three .point::before {
    margin-right: 0.5em;
    transform: rotate(-30deg);
}
section.corporatesite .corporatesite_box-three .point::after {
    margin-left: 0.5em;
    transform: rotate(30deg);
}
section.corporatesite .corporatesite_box-three .number {
    display: inline-block;
    padding: 0 5px;
    color: #FFF04F;
    font-size: 100px;
    line-height: 100px;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
    background: linear-gradient(transparent 60%, #FFF04F 60%);
}
section.corporatesite a {
    display: block;
    margin: auto;
    width: 60%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.corporatesite a:hover {
    color: #FFF04F;
    width: 65%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.corporatesite .corporatesite_box-first, section.corporatesite .corporatesite_box-second, section.corporatesite .corporatesite_box-three, section.corporatesite .corporatesite_box-four {
        margin: auto;
        padding-bottom: 40px;
        width: 84%;
    }
    section.corporatesite .corporatesite_box-first h3 {
        text-align: left;
        line-height: 1.4em;
    }
    section.corporatesite .inner p {
        margin-bottom: 20px;
        line-height: 1.6em;
    }
    section.corporatesite .corporatesite_box-three ul li {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    section.corporatesite .corporatesite_box-three ul li h4 {
        text-align: center;
    }
    section.corporatesite a {
        margin: 40px auto 0;
        width: calc(100% - 10px);
        line-height: 60px;
    }
    section.corporatesite a:hover {
        color: #292703;
        width: calc(100% - 10px);
        background-color: #FFF04F;
    }
}
/*!------------------------------------------------------------------
[サービスサイト]
*/
section.servicesite {
    padding: 100px 0 80px;
    text-align: center;
    background-color: #FFF;
}
section.servicesite h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.servicesite h4 {
    margin-bottom: 95px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.servicesite {
        padding: 85px 0 50px;
    }
    section.servicesite h4 {
        margin-bottom: 80px;
    }
}
section.servicesite .servicesite_box-first, section.servicesite .servicesite_box-second, section.servicesite .servicesite_box-three, section.servicesite .servicesite_box-four {
    margin: auto;
    padding-bottom: 80px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    font-weight: 700;
}
section.servicesite .inner h3 {
    margin-bottom: 40px;
    font-size: clamp(3.2rem, 1.625rem + 2.81vw, 5rem);
    text-align: center;
}
section.servicesite .servicesite_box-second h3, section.servicesite .servicesite_box-three h3 {
    font-size: clamp(4rem, 3.125rem + 1.56vw, 5rem);
    text-align: center;
}
section.servicesite .servicesite_box-second h3 {
    margin-bottom: 0;
}
section.servicesite .inner h3 span {
    display: block;
    font-size: clamp(1.6rem, 0.9rem + 1.25vw, 2.4rem);
}
section.servicesite .inner h4 {
    margin-bottom: 10px;
    font-size: clamp(2.4rem, 1.35rem + 1.88vw, 3.6rem);
}
section.servicesite .servicesite_box-three h4 {
    flex-grow: 1;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.servicesite .inner p {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.servicesite .servicesite_box-three li p {
    color: #FFF;
    font-size: clamp(1.6rem, 1.425rem + 0.31vw, 1.8rem);
}
section.servicesite .servicesite_box-four p {
    margin-bottom: 60px;
}
section.servicesite p.center {
    color: #FFF04F;
    text-align: center;
}
section.servicesite .inner p b {
    background: linear-gradient(transparent 60%, #FFF04F 60%);
}
section.servicesite .servicesite_box-three {
    margin-bottom: 50px;
    padding: 100px 100px 60px;
    color: #FFF04F;
    background-color: #292703;
    box-sizing: border-box;
}
section.servicesite .servicesite_box-second ul, section.servicesite .servicesite_box-three ul {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
section.servicesite .servicesite_box-second ul li {
    position: relative;
    margin-top: -120px;
    width: calc(100%/2 - 40px);
    text-align: center;
}
section.servicesite .servicesite_box-three ul li {
    display: flex;
    flex-direction: column;
    width: calc(100%/2 - 40px);
    text-align: center;
}
section.servicesite .servicesite_box-second .number {
    position: relative;
    bottom: -120px;
    z-index: -1;
    color: #FFF;
    font-size: 300px;
    line-height: 300px;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #FFF04F;
}
section.servicesite a {
    display: block;
    margin: auto;
    width: 60%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.servicesite a:hover {
    color: #FFF04F;
    width: 65%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.servicesite .servicesite_box-first, section.servicesite .servicesite_box-second, section.servicesite .servicesite_box-four {
        margin: auto;
        padding-bottom: 50px;
        width: 84%;
    }
    section.servicesite .servicesite_box-three {
        margin: 0 auto 30px;
        padding: 80px 30px 60px;
        width: 100%;
    }
    section.servicesite .servicesite_box-first h3 {
        margin-bottom: 20px;
        text-align: left;
        line-height: 1.4em;
    }
    section.servicesite .servicesite_box-three h3 {
        margin-bottom: 30px;
    }
    section.servicesite .servicesite_box-three h4 {
        font-size: 2rem;
        text-align: left;
    }
    section.servicesite .inner p {
        margin-bottom: 20px;
        line-height: 1.6em;
    }
    section.servicesite p.center {
        color: #FFF04F;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    section.servicesite .servicesite_box-second ul {
        flex-direction: column;
        padding-bottom: 30px;
    }
    section.servicesite .servicesite_box-second ul li {
        margin-top: -60px;
        width: 100%;
    }
    section.servicesite .servicesite_box-second ul li p {
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 0;
        width: 80%;
    }
    section.servicesite .servicesite_box-three ul li {
        width: 100%;
    }
    section.servicesite .servicesite_box-second .number {
        bottom: -60px;
        font-size: 150px;
        line-height: 150px;
    }
    section.servicesite a {
        margin: 40px auto 0;
        width: calc(100% - 10px);
        line-height: 60px;
    }
    section.servicesite a:hover {
        color: #292703;
        width: calc(100% - 10px);
        background-color: #FFF04F;
    }
}
/*!------------------------------------------------------------------
[店舗サイト]
*/
section.storesite {
    padding: 100px 0 100px;
    text-align: center;
    background-color: #FFF;
}
section.storesite h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.storesite h4 {
    margin-bottom: 95px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.storesite {
        padding: 85px 0 65px;
    }
    section.storesite h4 {
        margin-bottom: 80px;
    }
}
section.storesite .storesite_box-first, section.storesite .storesite_box-second, section.storesite .storesite_box-three {
    margin: auto;
    padding-bottom: 60px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    font-weight: 700;
}
section.storesite .inner h3 {
    margin-bottom: 40px;
    font-size: clamp(3.2rem, 1.625rem + 2.81vw, 5rem);
    text-align: center;
}
section.storesite .storesite_box-second h3 {
    margin-bottom: 60px;
}
section.storesite .inner h3 span {
    display: block;
    font-size: clamp(1.6rem, 0.9rem + 1.25vw, 2.4rem);
}
section.storesite .inner h4 {
    margin-bottom: 10px;
    font-size: clamp(2.4rem, 1rem + 2.5vw, 4rem);
}
section.storesite .inner p {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.storesite .storesite_box-three h4 {
    margin-bottom: 0;
    padding: 5px 15px 7px;
    color: #FFF04F;
    font-size: clamp(2rem, 1.3rem + 1.25vw, 2.8rem);
    background-color: #292703;
    box-sizing: border-box;
}
section.storesite .storesite_box-three p {
    padding: 5px 15px;
    color: #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.storesite .storesite_box-three aside {
    margin: 0 auto 30px;
    width: 70%;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.storesite .inner p b {
    background: linear-gradient(transparent 60%, #FFF04F 60%);
}
section.storesite .storesite_box-second ul {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
section.storesite .storesite_box-second ul li {
    position: relative;
    padding: 50px 40px 30px;
    width: calc(100%/2 - 5px);
    border: 5px solid #292703;
    background-color: #FFF04F;
    border-radius: 30px;
    box-sizing: border-box;
}
section.storesite .storesite_box-second ul li:nth-child(3), section.storesite .storesite_box-second ul li:nth-child(4) {
    padding: 50px 40px 5px;
}
section.storesite .storesite_box-second .number {
    position: absolute;
    top: -50px;
    display: block;
    color: #FFF04F;
    font-size: 100px;
    line-height: 100px;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.storesite a {
    display: block;
    margin: 100px auto 0;
    width: 60%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.storesite a:hover {
    color: #FFF04F;
    width: 65%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.storesite .storesite_box-first, section.storesite .storesite_box-second, section.storesite .storesite_box-three {
        padding-bottom: 40px;
        width: 84%;
    }
    section.storesite .inner h3 {
        margin-bottom: 20px;
        text-align: left;
    }
    section.storesite .storesite_box-second h3 {
        margin-bottom: 60px;
    }
    section.storesite .storesite_box-second ul li {
        padding: 50px 30px 20px;
        width: 100%;
    }
    section.storesite .storesite_box-second ul li:nth-child(3) {
        padding: 50px 30px 20px;
    }
    section.storesite .storesite_box-second ul li:nth-child(4) {
        padding: 50px 30px 0;
    }
    section.storesite .storesite_box-three aside {
        width: 100%;
    }
    section.storesite a {
        margin: 40px auto 0;
        width: calc(100% - 10px);
        line-height: 60px;
    }
    section.storesite a:hover {
        color: #292703;
        width: calc(100% - 10px);
        background-color: #FFF04F;
    }
}
/*!------------------------------------------------------------------
[保守メンテナンス]
*/
section.maintenance {
    padding: 100px 0 100px;
    text-align: center;
    background-color: #FFF;
}
section.maintenance h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.maintenance h2.small {
    font-size: clamp(5.8rem, 2.125rem + 6.56vw, 10rem);
}
section.maintenance h4 {
    margin-bottom: 95px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
@media screen and (max-width: 896px) {
    section.maintenance {
        padding: 85px 0 65px;
    }
    section.maintenance h4 {
        margin-bottom: 80px;
    }
}
section.maintenance .maintenance_box-first, section.maintenance .maintenance_box-second, section.maintenance .maintenance_box-three, section.maintenance .maintenance_box-four {
    margin: auto;
    padding-bottom: 60px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    font-weight: 700;
}
section.maintenance .inner h3 {
    margin-bottom: 40px;
    font-size: clamp(2.8rem, 0.875rem + 3.44vw, 5rem);
    text-align: center;
}
section.maintenance .maintenance_box-second h3 {
    margin-bottom: 60px;
}
section.maintenance .inner h3 span {
    display: block;
    font-size: clamp(1.6rem, 0.9rem + 1.25vw, 2.4rem);
}
section.maintenance .maintenance_box-four h3 span {
    display: inline-block;
}
section.maintenance .inner h4 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 0.625rem + 2.81vw, 4rem);
}
section.maintenance .maintenance_box-three h4 {
    margin-bottom: 0;
    padding: 5px 15px 7px;
    color: #FFF04F;
    font-size: clamp(1.8rem, 0.925rem + 1.56vw, 2.8rem);
    background-color: #292703;
    box-sizing: border-box;
}
section.maintenance .inner p {
    margin-bottom: 30px;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.maintenance .maintenance_box-three p {
    padding: 5px 15px 10px;
    color: #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.maintenance .inner b {
    background: linear-gradient(transparent 60%, #FFF04F 60%);
}
section.maintenance .maintenance_box-first ul {
    display: flex;
    justify-content: center;
    flex-flow: row-reverse;
    margin: 60px auto 60px;
    width: 80%;
    width: 900px;
}
section.maintenance .maintenance_box-first ul li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(100%/4);
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    font-feature-settings: initial !important;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
section.maintenance .maintenance_box-first ul li span {
    color: #FFF04F;
    font-size: clamp(6rem, 4.25rem + 3.13vw, 8rem);
    font-weight: 900;
    -webkit-text-stroke: 2px #292703;
}
section.maintenance .maintenance_box-second ul {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
section.maintenance .maintenance_box-second ul li {
    position: relative;
    padding: 50px 40px 30px;
    width: calc(100%/2 - 5px);
    border: 5px solid #292703;
    background-color: #FFF04F;
    border-radius: 30px;
    box-sizing: border-box;
}
section.maintenance .maintenance_box-second ul li:nth-child(5), section.maintenance .maintenance_box-second ul li:nth-child(6) {
    padding: 50px 40px 5px;
}
section.maintenance .maintenance_box-four ul {
    margin-bottom: 40px;
}
section.maintenance .maintenance_box-four ul li {
    margin-bottom: 15px;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
}
section.maintenance .maintenance_box-four ul li span {
    display: block;
    font-size: clamp(1.2rem, 1.025rem + 0.31vw, 1.4rem);
}
section.maintenance .maintenance_box-second .number {
    position: absolute;
    top: -50px;
    display: block;
    color: #FFF04F;
    font-size: 100px;
    line-height: 100px;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.maintenance .maintenance_box-three aside {
    margin: 0 auto 30px;
    width: 70%;
    font-size: clamp(1.6rem, 1.25rem + 0.62vw, 2rem);
    line-height: 1.8em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.maintenance a {
    display: block;
    margin: 100px auto 0;
    width: 60%;
    color: #292703;
    font-size: clamp(1.8rem, 1.625rem + 0.31vw, 2rem);
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    border: 5px solid #292703;
    background-color: #FFF04F;
    transition: all .6s;
}
section.maintenance a:hover {
    color: #FFF04F;
    width: 65%;
    background-color: #292703;
}
@media screen and (max-width: 896px) {
    section.maintenance .maintenance_box-first, section.maintenance .maintenance_box-second, section.maintenance .maintenance_box-three, section.maintenance .maintenance_box-four {
        padding-bottom: 40px;
        width: 84%;
    }
    section.maintenance .inner h3 {
        margin-bottom: 20px;
        text-align: left;
    }
    section.maintenance .maintenance_box-second h3 {
        margin-bottom: 60px;
    }
    section.maintenance .maintenance_box-first ul {
        display: flex;
        justify-content: flex-start;
        flex-flow: wrap;
        margin: 0 0 20px;
        width: 100%;
    }
    section.maintenance .maintenance_box-first ul li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
        writing-mode: horizontal-tb;
    }
    section.maintenance .maintenance_box-first ul li:nth-child(4) {
        margin-top: 30px;
    }
    section.maintenance .maintenance_box-first ul li span {
        text-align: center;
    }
    section.maintenance .maintenance_box-second ul li {
        padding: 50px 30px 20px;
        width: 100%;
    }
    section.maintenance .maintenance_box-second ul li:nth-child(5) {
        padding: 50px 30px 20px;
    }
    section.maintenance .maintenance_box-second ul li:nth-child(6) {
        padding: 50px 30px 0;
    }
    section.maintenance .maintenance_box-three aside {
        width: 100%;
    }
    section.maintenance a {
        margin: 40px auto 0;
        width: calc(100% - 10px);
        line-height: 60px;
    }
    section.maintenance a:hover {
        color: #292703;
        width: calc(100% - 10px);
        background-color: #FFF04F;
    }
}
/*!------------------------------------------------------------------
[UI/UX]
*/
section.uiux {
    padding: 100px 0 0;
    color: #292703;
    text-align: center;
    background-color: #FFF04F;
}
section.uiux h2 {
    font-size: 60px;
    font-weight: 700;
}
section.uiux h4 {
    margin-bottom: 120px;
    font-size: 24px;
}
section.uiux .box_01 {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto 60px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
}
section.uiux .box_01 img {
    padding: 15px;
    width: 40%;
    height: auto;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.uiux .box_01 h3 {
    margin-bottom: 40px;
    font-size: 50px;
}
section.uiux .box_01 p {
    line-height: 2em;
}
section.uiux .box_02 {
    padding: 60px;
    margin: 0 auto 120px;
    width: 90%;
    max-width: 1100px;
    text-align: left;
    background-color: #FFF;
    box-sizing: border-box;
}
section.uiux .box_02 .item_01 {
    display: flex;
    justify-content: space-between;
}
section.uiux .box_02 .item_02 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 100px 0 0;
}
section.uiux .box_02 .item_01 h3, section.uiux .box_02 .item_02 h3 {
    margin-bottom: 40px;
    font-size: 30px;
}
section.uiux .box_02 .item_01 h3 br, section.uiux .box_02 .item_02 h3 br {
    display: none;
}
section.uiux .box_02 .item_01 aside, section.uiux .box_02 .item_02 aside {
    width: 55%;
}
section.uiux .box_02 .item_01 p, section.uiux .box_02 .item_02 p {
    line-height: 2em;
}
section.uiux .box_02 .item_01 img, section.uiux .box_02 .item_02 img {
    padding: 15px;
    width: 40%;
    height: auto;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
section.uiux .box_03 {
    margin: auto;
    width: 90%;
    max-width: 1100px;
    text-align: left;
}
section.uiux .box_03 h3 {
    margin-bottom: 60px;
    font-size: 50px;
    text-align: center;
}
@media screen and (max-width: 896px) {
    section.uiux {
        padding: 60px 0 0;
    }
    section.uiux h2 {
        font-size: 50px;
    }
    section.uiux h4 {
        margin-bottom: 60px;
        font-size: 18px;
    }
    section.uiux .box_01 {
        display: block;
        justify-content: space-between;
        margin: 0 auto 60px;
        width: 90%;
        text-align: left;
    }
    section.uiux .box_01 h3 {
        margin-bottom: 30px;
        font-size: 24px;
        text-align: center;
    }
    section.uiux .box_01 p {
        margin-bottom: 0;
        line-height: 1.8em;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    section.uiux .box_01 img {
        display: none;
    }
    section.uiux .box_02 {
        margin: 0 auto 60px;
        padding: 60px 20px 0;
        width: 100%;
    }
    section.uiux .box_02 .item_01 {
        display: block;
    }
    section.uiux .box_02 .item_02 {
        display: block;
        flex-direction: row;
        padding: 40px 0;
    }
    section.uiux .box_02 .item_01 h3, section.uiux .box_02 .item_02 h3 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    section.uiux .box_02 .item_01 h3 br, section.uiux .box_02 .item_02 h3 br {
        display: block;
    }
    section.uiux .box_02 .item_01 aside, section.uiux .box_02 .item_02 aside {
        width: 100%;
    }
    section.uiux .box_02 .item_01 p, section.uiux .box_02 .item_02 p {
        margin-bottom: 30px;
        line-height: 1.8em;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    section.uiux .box_02 .item_01 img, section.uiux .box_02 .item_02 img {
        margin-bottom: 30px;
        width: 100%;
        height: 200px;
    }
    section.uiux .box_03 h3 {
        margin: 0 auto 40px;
        width: 90%;
        font-size: 24px;
    }
}
/*!------------------------------------------------------------------
[ホームページ制作]
*/
section.webdesign {
    padding: 130px 0 0;
    color: #292703;
    text-align: center;
    background-color: #FFF04F;
}
section.webdesign h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.webdesign h4 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.webdesign .box_01 {
    margin-bottom: 150px;
}
section.webdesign .box_01 p {
    margin: 0 auto 30px;
    padding-left: 90px;
    width: 900px;
    font-size: 24px;
    line-height: 80px;
    text-align: left;
    background: #FFF url(../img/websupport/icon_04.svg) left 30px center no-repeat;
    background-size: 36px auto;
    border-radius: 40px;
    box-shadow: 0 10px #292703;
    box-sizing: border-box;
}
section.webdesign .box_02 {
    margin: 0 auto 150px;
    width: 1100px;
    text-align: left;
    box-sizing: border-box;
}
section.webdesign .box_02 h3 {
    margin-bottom: 0;
    font-size: 50px;
    text-align: center;
}
section.webdesign .box_02 h3 br {
    display: none;
}
section.webdesign .box_02 h4 {
    margin-bottom: 80px;
    font-size: 30px;
    text-align: center;
}
section.webdesign .item_01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
section.webdesign .item_01:last-child {
    margin-bottom: 0 !important;
}
section.webdesign .item_01 h5 {
    margin-bottom: 40px;
    font-size: 30px;
}
section.webdesign .item_01 h5 br {
    display: none;
}
section.webdesign .item_01 aside {
    width: 65%;
}
section.webdesign .item_01 p {
    line-height: 2em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.webdesign .item_01 img {
    padding: 15px;
    width: 30%;
    height: 100%;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
@media screen and (max-width: 896px) {
    section.webdesign {
        padding: 60px 0 0;
    }
    section.webdesign h2 {
        font-size: 50px;
    }
    section.webdesign h4 {
        margin-bottom: 60px;
        font-size: 18px;
    }
    section.webdesign .box_01 {
        margin-bottom: 60px;
    }
    section.webdesign .box_01 p {
        margin: 0 auto 20px;
        padding: 20px;
        width: 90%;
        font-size: 18px;
        line-height: 1.6em;
        background-image: none;
        border-radius: 20px;
        box-shadow: 0 5px #292703;
    }
    section.webdesign .box_02 {
        margin: 0 auto;
        width: 90%;
    }
    section.webdesign .box_02 h3 {
        margin-bottom: 20px;
        font-size: 30px;
    }
    section.webdesign .box_02 h3 br {
        display: block;
    }
    section.webdesign .box_02 h4 {
        margin-bottom: 0;
        font-size: 18px;
    }
    section.webdesign .item_01 {
        display: block;
        margin: 40px 0 0;
    }
    section.webdesign .item_01 h5 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    section.webdesign .item_01 h5 br {
        display: block;
    }
    section.webdesign .item_01 aside {
        width: 100%;
    }
    section.webdesign .item_01 p {
        line-height: 1.8em;
    }
    section.webdesign .item_01 img {
        margin-bottom: 20px;
        width: 100%;
        height: 200px;
    }
}
/*!------------------------------------------------------------------
[WordPressカスタム]
*/
section.wordpress {
    padding: 130px 0 0;
    color: #292703;
    text-align: center;
    background-color: #FFF04F;
}
section.wordpress h2 {
    position: relative;
    left: -3px;
    color: #FFF04F;
    font-size: clamp(7rem, 4.375rem + 4.69vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.1em;
    font-family: "Prompt", serif;
    -webkit-text-stroke: 4px #292703;
}
section.wordpress h4 {
    margin-bottom: 120px;
    font-size: clamp(1.8rem, 1.275rem + 0.94vw, 2.4rem);
}
section.wordpress .box_01 {
    margin: 0 auto 150px;
    width: 1100px;
    text-align: left;
    box-sizing: border-box;
}
section.wordpress .item_01 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}
section.wordpress .item_01:last-child {
    margin-bottom: 0 !important;
}
section.wordpress .item_01 h5 {
    margin-bottom: 40px;
    font-size: 30px;
}
section.wordpress .item_01 h5 br {
    display: none;
}
section.wordpress .item_01 aside {
    width: 65%;
}
section.wordpress .item_01 p {
    line-height: 2em;
    text-align: justify;
    text-justify: inter-ideograph;
}
section.wordpress .item_01 img {
    padding: 15px;
    width: 30%;
    height: auto;
    object-fit: cover;
    border: 5px solid #292703;
    background-color: #FFF04F;
    box-sizing: border-box;
}
@media screen and (max-width: 896px) {
    section.wordpress {
        padding: 60px 0 0;
    }
    section.wordpress h2 {
        font-size: 50px;
    }
    section.wordpress h4 {
        margin: 0 auto 60px;
        width: 80%;
        font-size: 18px;
    }
    section.wordpress .box_01 {
        margin: 0 auto;
        width: 90%;
    }
    section.wordpress .item_01 {
        display: block;
        margin-bottom: 60px;
    }
    section.wordpress .item_01 h5 {
        margin-bottom: 10px;
        font-size: 20px;
    }
    section.wordpress .item_01 aside {
        width: 100%;
    }
    section.wordpress .item_01 p {
        line-height: 1.8em;
    }
    section.wordpress .item_01 img {
        margin-bottom: 20px;
        width: 100%;
        height: 200px;
    }
}

:root {
  --bg-color: #292703;     /* 背景：イエロー */
  --text-active: #FFF;  /* 点灯後：ダークブラウン */
  --text-dimmed: rgba(41, 39, 3, 0.15); /* 待機時：かなり薄い色 */
}

.scroll-section {
  background-color: var(--text-active);
    padding: -5px 5px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.text-container h2 {
  font-size: clamp(6rem, 4.8rem + 6vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-active);
}
.text-container p {
  font-size: clamp(2.4rem, 2.08rem + 1.6vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-active);
}
.tg-char-highlight span {
  display: inline-block;
  transition: color 0.3s ease;
}
.tg-char-highlight span.is-active {
  color: var(--bg-color);
}