@charset "UTF-8";
/*
Theme Name:  防除研究所LP
Template: twentynineteen
Author:  防除研究所
Author URI:
Description:
Version: 1.0.0
Updated: 2024-09-26
*/

/* Color Scheme
-----------------------------------------------------

	=THEME COLOR = #16358f, #c8a551

-----------------------------------------------------
*/

@import url(reset.css);
@import url(wordpress.css);

/* CSS Variable
----------------------------------------------------- */
:root {
    --color-primary: #16358f;
    /* --color-primary-rgb: 24, 119, 242; */
    --color-secondary: #c8a551;
    /* --color-secondary-rgb: 229, 0, 18; */
}


/*
-----------------------------------------------------

	=GLOBAL LAYOUT

-----------------------------------------------------
*/
* {
    margin: 0;
    padding: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif, serif;
    -webkit-font-smoothing: antialiased !important;
    -webkit-text-stroke: 1px transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    line-height: 2.0;
    word-wrap: break-word;
    letter-spacing: 0.05em;
}
body {
    font-size: 1.6rem;
    background-color: #fff;
}
body::before {
    content: "";
    position: fixed;
    z-index: -99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
dt,
dd,
li {
    line-height: 1.8;
}
p,
ul,
ol,
dl,
table {
    margin-bottom: 2em;
}
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child {
    margin-bottom: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.8;
    text-align: left;
}
th,
td {
    padding: 1em 1.5em;
    vertical-align: top;
    border: none;
}
th {
    font-weight: bold;
    text-align: justify;
}
tr {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
tr:last-child {
    border-bottom: none;
}
hr {
    clear: both;
    border: none;
}
img {
    display: inline-block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}
a img {
    border: none;
}
a {
    color: var(--color-primary);
    color: #000;
    text-decoration: underline;
}
a {
    cursor: pointer;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
a:hover {
    opacity: 0.5;
    text-decoration: none;
}
/*::selection {
	background-color: rgba(0,0,0,0.25);
}*/
em {}
ol {
    counter-reset: number;
    list-style: none;
}
ol li {
    position: relative;
    padding-left: 2.5em;
}
ol li:not( :last-child) {
    margin-bottom: 1.5em;
}
ol li::before {
    position: absolute;
    left: 0;
    counter-increment: number;
    content: "("counter(number)")";
    margin: 0 1.0em 0 0;
}
ol li ol:last-child {
    margin-bottom: 2em;
}
ol li ol li::before {
    content: "("counter(number, lower-roman)")";
}

ol li ol li:not( :last-child) {
    margin-bottom: .5em;
}

strong {
    font-weight: bold;
}

iframe {
    display: block;
    max-width: 100%;
}

form {}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea {
    padding: 5px;
    font-size: 16px;
    font-weight: inherit;
    color: inherit;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    background-color: #eee;
    color: #555;
    border: 1px solid #eee;
    line-height: 1;
    vertical-align: middle;
    max-width: 100%;
    border-radius: 5px;
}

textarea {}

input[type=text] {
    margin-bottom: 0.5em;
}

input[type=text]:last-child {
    margin-bottom: 0;
}

input[type=email] {}

input[type=submit] {
    cursor: pointer;
}

input[type=text]:focus,
textarea:focus {
    color: #555;
}

form ul {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

form ul li {
    display: inline-block !important;
}

form label {
    margin-right: 1.4em;
}

form input[type*="submit"] {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 1em 2em;
    border: none;
    background-color: #e45539;
    color: #fff;
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all ease-out 0.1s;
    -moz-transition: all ease-out 0.1s;
    -ms-transition: all ease-out 0.1s;
    transition: all ease-out 0.1s;
}

form input[type*="submit"]:hover {
    opacity: 0.7;
}

::placeholder {
    color: #ddd;
}



/*
-----------------------------------------------------

	=GLOBAL STYLE

-----------------------------------------------------
*/
#container {
    overflow: hidden;
}
.c-wrapper {
    width: 1200px;
    max-width: 100%;
    margin: auto;
}
.u-wrapper-1120 {
    width: 1120px;
}
.u-wrapper-1080 {
    width: 1080px;
}
.u-wrapper-1000 {
    width: 1000px;
}
.u-wrapper-960 {
    width: 960px;
}
.u-wrapper-900 {
    width: 960px;
}
.u-wrapper-840 {
    width: 800px;
}
.u-wrapper-800 {
    width: 800px;
}
.u-wrapper-720 {
    width: 720px;
}
#cont {}
#main {}
#main main {}

/*
-----------------------------------------------------

	=MEDIA QUERIES RESPONSIVE STRUCTURE

-----------------------------------------------------
*/

/* DESKTOP
----------------------------------------------------- */
@media screen and (min-width: 800px) {
    .sp {
        display: none !important;
    }

    body {
        min-width: 1200px;
    }
}

/* SMARTPHONE
----------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 799px) {
    .pc {
        display: none !important;
    }

    html {
        font-size: 10px;
    }

    body {
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    /* APPERANCE
	--------------------------------------------------*/
    input[type="button"],
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="submit"],
    select {
        -webkit-appearance: none;
        border-radius: 0;
    }

    iframe {
        width: 100%;
        max-height: 240px;
    }

    th,
    td {
        font-size: 1.2rem;
        padding: 1em 0.5em;
    }

    /* =GLOBAL STYLE
	-------------------------------------------------- */
    .c-wrapper {
        width: auto;
        padding: 0 6.25vw;
        margin: auto;
    }
}



/* =ANIMATION - INVIEW.JS (jquery.inview.js)
----------------------------------------------------- */
.js-inview {
    transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -webkit-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -moz-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -ms-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;
    -o-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.4s;

    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -webkit-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -moz-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -ms-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -o-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
.js-inview.inview-fadein {
    opacity: 0;
}
.js-inview.inview-fadein.is-show {
    opacity: 1;
}

.js-inview.inview-zoomin {
    opacity: 0;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    -o-filter: blur(5px);
}
.js-inview.inview-zoomin.is-show {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -ms-filter: blur(0);
    -o-filter: blur(0);
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.js-inview.inview-zoom {
    opacity: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.js-inview.inview-zoom.is-show {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.js-inview.inview-blur {
    opacity: 0;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    -moz-filter: blur(100px);
    -ms-filter: blur(100px);
    -o-filter: blur(100px);
}
.js-inview.inview-blur.is-show {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -ms-filter: blur(0);
    -o-filter: blur(0);
}

.js-inview.inview-floatup {
    transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    -webkit-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    -moz-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    -ms-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    -o-transition: 1.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;

    opacity: 0;
    transform: translate3d(0px, 200px, 0px);
    -webkit-transform: translate3d(0px, 200px, 0px);
    -moz-transform: translate3d(0px, 200px, 0px);
    -ms-transform: translate3d(0px, 200px, 0px);
    -o-transform: translate3d(0px, 200px, 0px);
}
.js-inview.inview-floatup.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

.js-inview.inview-floatintoright {
    opacity: 0;
    transform: translate3d(-40px, 0px, 0px);
    -webkit-transform: translate3d(-40px, 0px, 0px);
    -moz-transform: translate3d(-40px, 0px, 0px);
    -ms-transform: translate3d(-40px, 0px, 0px);
    -o-transform: translate3d(-40px, 0px, 0px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.js-inview.inview-floatintoright.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

.js-inview.inview-floatintoleft {
    opacity: 0;
    transform: translate3d(40px, 0px, 0px);
    -webkit-transform: translate3d(40px, 0px, 0px);
    -moz-transform: translate3d(40px, 0px, 0px);
    -ms-transform: translate3d(40px, 0px, 0px);
    -o-transform: translate3d(40px, 0px, 0px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
}
.js-inview.inview-floatintoleft.is-show {
    opacity: 1;
    transform: translate3d(0px, 0, 0px);
    -webkit-transform: translate3d(0px, 0, 0px);
    -moz-transform: translate3d(0px, 0, 0px);
    -ms-transform: translate3d(0px, 0, 0px);
    -o-transform: translate3d(0px, 0, 0px);
}

/*
-----------------------------------------------------

	=HEADER

-----------------------------------------------------
*/
/* =HEADER
----------------------------------------------------- */
#cont {
    padding-top: 120px;
}
.top #cont {
    padding-top: 120px;
}
.header-global {
    position: fixed;
    z-index: 9991;
    top: inherit;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background-color: #fff;
}
.header-global,
.header-global * {
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
.header-global>.inner {
    padding: 20px 40px;
    align-items: center;
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
.header-global>.inner .header-left,
.header-global>.inner .header-right {
    display: flex;
    align-items: center;
}
.header-global>.inner .header-left {}
.header-global>.inner .header-right {}
.header-global>.inner .header-right .nav-pc {}
.header-global>.inner .header-right .nav-sp {}

.logo-corporatesite {
    width: 453px;
}
.header-global>.inner .header-left>.logo {
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    margin: 0 30px 0 20px;
}
.header-global>.inner .header-left>.logo img {}
.header-global>.inner .header-right .nav-pc ul.nav-main li a {}
.header-global>.inner .header-right .nav-pc ul.nav-main li a:hover {}

/* 全ページ共通 - 画面スクロール時 */
.scrolled .header-global {
    background-color: #fff;
    box-shadow: 15px 25.981px 30px 0px rgba(108, 108, 108, 0.05);
}

/* 下層ページ共通
.sub .header-global {
	background-color: #000;
	background-color: #041f39;
	border-bottom: solid 0 rgba(83,91,104,0.1);
}
.sub .header-global>.inner .header-left .logo img {
	opacity: 1;
}
.sub .header-global>.inner .header-left .logo:after {
	color: #fff;
}
.sub .header-global>.inner .header-right .nav-pc ul.nav-main li,
.sub .header-global>.inner .header-right .nav-pc ul.nav-main li a {
	color: #fff;
}
.sub .header-global>.inner .header-right .nav-pc ul.nav-main li ul {
	background-color: #000;
}
.sub .header-global>.inner .header-right .nav-pc ul.nav-main li.recruit a {
	color: #fff;
}
.sub .header-global>.inner .header-right .nav-pc ul.nav-main li.recruit a:hover {}
 */

@media screen and (min-width: 800px) {
    #cont {}
    .top #cont {}
    .header-global>.inner {
        min-width: 1280px;
    }

    /* トップページのみ背景透過 - ヘッダー初期位置
    .top .header-global {
        background-color: transparent;
    } */

    /* トップページのみ背景透過 - 画面スクロール時 */
    .top.scrolled .header-global {
        height: auto;
        position: fixed;
        background-color: #fff;
        box-shadow: 15px 25.981px 30px 0px rgba(108, 108, 108, 0.05);
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    #cont {
        padding-top: 60px;
    }
    .top #cont {
        padding-top: 60px;
    }

    .header-global {
        height: 60px;
        background-color: transparent;
    }
    .header-global>.inner {
        padding: 0 3.125vw;
        height: 100%;
    }
    .header-global>.inner {
        align-items: center;
    }
    .header-global>.inner .header-left {
        width: auto;
        padding: 0;
    }
    .header-global>.inner .header-right {
        width: 100%;
        text-align: right;
        flex-direction: row-reverse;
    }

    .header-global>.inner .header-left .logo {
        margin: 0 10px 0 3.125vw;
    }
    .logo-corporatesite {
        width: 155px;
    }
    .header-global>.inner .header-right ul.c-list-sns {
        text-align: right;
    }
    .header-global>.inner .header-right ul.c-list-sns li {
        margin: 0 0 0 6px;
    }

    /* トップページのみ背景透過 - ヘッダー初期位置 */
    .top .header-global {}

    /* トップページのみ背景透過 - 画面スクロール時 */
    .top.scrolled .header-global {
        background-color: #fff;
    }
}

@media screen and (min-width: 800px) and (max-width: 1399px) {
    .logo-corporatesite {
        width: 190px;
    }
    .header-global>.inner .header-right .nav-pc ul.nav-main li {
        font-size: 1.6rem;
    }
    .header-global>.inner .header-right .nav-pc ul.nav-main li:not(:last-child) {}
    .header-global>.inner .header-right .nav-pc ul.nav-main li a {}
}


/*
-----------------------------------------------------

	=NAVIGATION - PC

-----------------------------------------------------
*/

@media screen and (min-width: 800px) {
    /* =NAVIGATION - PC
	----------------------------------------------------- */
    .nav-pc {}
    .nav-pc .inner {
        line-height: 0;
    }
    .nav-pc * {
        -webkit-transition: all ease-out 0.2s;
        -moz-transition: all ease-out 0.2s;
        -ms-transition: all ease-out 0.2s;
        transition: all ease-out 0.2s;
    }
    .nav-pc ul.nav-main {
        display: flex;
        align-items: center;
        letter-spacing: 0;
        font-size: 0;
    }
    .nav-pc ul.nav-main li {
        font-size: 1.8rem;
        font-weight: bold;
        line-height: 1.5;
        letter-spacing: 0.00em;
    }
    .nav-pc ul.nav-main li:not(:last-child) {
        margin: 0 0 0 0;
        margin: 0 1em 0 0;
    }
    .nav-pc ul.nav-main li a {
        position: relative;
        display: block;
        color: #000;
        text-decoration: none;
    }
    .nav-pc ul.nav-main li a:hover {
        opacity: 0.35;
    }

    /* 第1階層 */
    .nav-pc ul.nav-main>li>a {
        padding: 0.25em 0;
    }
    .nav-pc ul.nav-main>li>a:hover {
        opacity: 0.8;
    }
    .nav-pc ul.nav-main>li>a:hover::before {
        width: 100%;
    }

    /* 第2階層 (子要素にさらにulがある場合) */
    /* .nav-pc ul.nav-main li {
        position: relative;
    }
    .nav-pc ul.nav-main li.has-child {}
    .nav-pc ul.nav-main li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 16em;
        padding-top: 2em;
        padding: 0.75em;
        background-color: #faf9ea;
        border-radius: 0 0 5px 5px;
    }
    .nav-pc ul.nav-main li:hover ul {
        display: block;
    }
    .nav-pc ul.nav-main li ul li {
        display: block;
        padding: 0.5em;
        font-size: 95%;
        text-align: left;
        text-transform: none;
    }
    .nav-pc ul.nav-main li ul li a {
        padding: 0;
        color: #000;
    }
    .nav-pc ul.nav-main li ul li a::before {}
    .nav-pc ul.nav-main li ul li a:hover {}  */
}

/*
-----------------------------------------------------

	=NAVIGATION - SP

-----------------------------------------------------
*/

@media screen and (min-width: 0px) and (max-width: 799px) {

    /* =NAVIGATION - SP
	----------------------------------------------------- */
    .nav-sp {
        position: fixed;
        z-index: 9992;
        top: 0;
        left: 0;
        bottom: auto;
        width: 80vw;
        height: 100vh;
        padding: 0;
        border-radius: 0;
        background-color: rgba(255, 255, 255, 1);
        background-color: #faf9ea;
        box-shadow: 5px 8.66px 20px 0px rgba(0, 0, 0, 0.07);
        box-shadow: 15px 25.981px 50px 0px rgba(126, 126, 126, 0.2);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        -webkit-transform: translate3d(0, -100%, 0);
        -moz-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        -webkit-transition: opacity ease-out 0.25s;
        -moz-transition: opacity ease-out 0.25s;
        -ms-transition: opacity ease-out 0.25s;
        transition: opacity ease-out 0.25s;
        opacity: 0;
    }
    .nav-sp.on {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .nav-sp.on .inner {}
    .nav-sp .inner {
        padding: 6.25vw;
        padding-bottom: 20vw;
    }
    .nav-sp .inner .logo {
        margin: 0 0 6.25vw;
    }
    .nav-sp .inner .heading {
        margin: 2em 0 0.75em;
        font-family: "urw-din", sans-serif;
        color: #000;
        font-size: 1.125em;
        font-weight: 600;
    }
    .nav-sp ul.nav-main {
        margin: 0 0 2em 0;
    }
    .nav-sp ul.nav-main li {
        display: block;
        color: #000;
        font-family: "urw-din", sans-serif;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.00em;
    }
    .nav-sp ul.nav-main li a:not([class]) {
        display: block;
        color: #000;
        line-height: 1;
        text-decoration: none;
    }
    .nav-sp ul.nav-main li a:not([class]) :hover {
        opacity: 0.25;
    }

    /* ナビゲーション - 第1階層 */
    .nav-sp ul.nav-main>li:not(:last-child) {
        margin: 0 0 20px;
    }
    .nav-sp ul.nav-main>li>a:not([class]) {}

    /* ナビゲーション - 第2階層 */
    .nav-sp ul.nav-main ul {
        margin: 1.0em 0 0 0;
    }
    .nav-sp ul.nav-main ul li {
        margin: 1.0em 0 0 0;
        position: relative;
        padding-left: 1em;
        font-size: 1.2rem;
    }
    .nav-sp ul.nav-main ul li:before {
        position: absolute;
        left: 0.25em;
        top: -0.5em;
        content: "-";
        opacity: 0.5;
    }
    .nav-sp ul.nav-main ul li a {}

    /* =TOGGLER
	----------------------------------------------------- */
    ul.nav-icon {
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        text-align: right;
        font-size: 0;
        letter-spacing: 0;
    }
    ul.nav-icon li {
        display: inline-block;
        vertical-align: top;
        z-index: 9999;
        top: 0;
        right: 6.25vw;
        width: 80px;
        height: 60px;
        border-radius: 0;
        background-color: #000;
        text-align: center;
        -webkit-transition: all ease-out 0.4s;
        -moz-transition: all ease-out 0.4s;
        -ms-transition: all ease-out 0.4s;
        transition: all ease-out 0.4s;
        cursor: pointer;
    }

    ul.nav-icon li:not(:last-child) {
        margin-right: 0;
    }

    ul.nav-icon li a {
        display: block;
        text-decoration: none;
    }

    ul.nav-icon li.toggler {
        padding: 22px 0;
        background-color: transparent;
    }
    .scrolled ul.nav-icon li.toggler {}

    ul.nav-icon li.toggler a.trigger-bars {
        display: inline-block;
    }
    a.trigger-bars,
    a.trigger-bars span {
        box-sizing: border-box;
        display: inline-block;
        -webkit-transition: all ease-out 0.4s;
        -moz-transition: all ease-out 0.4s;
        -ms-transition: all ease-out 0.4s;
        transition: all ease-out 0.4s;
    }
    a.trigger-bars {
        position: relative;
        z-index: 9999;
        width: 28px;
        height: 16px;
        color: #000000;
    }
    a.trigger-bars::after {
        position: absolute;
        width: 200%;
        left: -50%;
        top: 27px;
        display: block;
        letter-spacing: 0em;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        line-height: 1;
    }
    a.trigger-bars span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        background-color: #000;
        border-radius: 0;
        -webkit-transition: all ease-out 0.14s;
        -moz-transition: all ease-out 0.14s;
        -ms-transition: all ease-out 0.14s;
        transition: all ease-out 0.14s;
    }
    a.trigger-bars span:nth-of-type(1) {
        top: 0;
    }
    a.trigger-bars span:nth-of-type(2) {
        top: 7px;
    }
    a.trigger-bars span:nth-of-type(3) {
        bottom: 0;
    }

    /*ul.nav-icon li.toggler.active { background-color: #fff;}*/
    .active a.trigger-bars {
        color: var(--color-primary);
        color: #000;
    }
    .active a.trigger-bars span {
        background-color: var(--color-primary);
        background-color: #000;
    }
    .active a.trigger-bars span:nth-of-type(1) {
        -webkit-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg);
    }
    .active a.trigger-bars span:nth-of-type(2) {
        opacity: 0;
    }
    .active a.trigger-bars span:nth-of-type(3) {
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg);
    }
}

/*
-----------------------------------------------------

	=FOOTER

-----------------------------------------------------
*/
.footer-global {
    position: relative;
    z-index: 90;
    text-align: center;
    background-color: var(--color-primary);
}
.footer-global,
.footer-global a {
    color: #fff;
}
.footer-global a {
    color: inherit;
    text-decoration: none;
}
.footer-global p {
    line-height: 1.8;
}
.footer-global hr:not([class]) {
    height: 2em;
}
.footer-global .logo {
    margin: 0 auto 30px;
}
.footer-global .logo img {
    display: inline-block;
}
.footer-global ul.c-list-sns {
    margin: 0 0 30px;
    text-align: center;
}
.footer-global .copyright {
    font-size: 1.1rem;
}
@media screen and (min-width: 800px) {
    .footer-global .c-section {
        padding: 50px 0;
    }
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .footer-global {
        font-size: 1.0rem;
    }
    .footer-global .logo {
        width: 80px;
    }
}

/* フッター - ナビゲーションなどのエリア */
.footer-global.u-vertical {
    text-align: center;
}
.footer-global .footer-area {}
.footer-global .footer-area .inner {
    position: relative;
}
@media screen and (min-width: 800px) {
}
@media screen and (min-width: 0px) and (max-width: 799px) {
}


/*
-----------------------------------------------------

	=COMMON PARTS

-----------------------------------------------------
*/

/* =SECTION
----------------------------------------------------- */
.anchor {
    visibility: hidden;
    height: 0;
    display: block;
    padding-top: 160px;
    margin-top: -160px;
    pointer-events: none;
}
.c-block:not( :last-child) {
    margin-bottom: 100px;
}
.c-section {
    padding: 100px 0;
}
hr {
    clear: both;
    border: none;
    height: 50px;
}
hr.sep {
    background-color: #dcdcdc;
    height: 1px;
}
hr.hr-border {
    margin: 2em auto;
    height: 1px;
    background-color: #dcdcdc;
}
.zoom-x2 {
    zoom: 0.5;
}
.c-section-header {
    text-align: center;
}

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

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-block:not( :last-child) {
        margin: 0 auto 8vw;
    }
    .c-section {
        padding: 8vw 0;
    }
    hr {
        height: 8vw;
    }
}

/* =DECORATION
----------------------------------------------------- */
.c-whitebox {
    padding: 80px;
    background-color: #fff;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-whitebox {
        padding: 6.25vw;
    }
}
.u-fc-theme {
    color: var(--color-primary);
}
.u-radius {
    overflow: hidden;
    border-radius: 10px;
}
.c-frame {
    padding: 2.0em;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-frame {
        padding: 6.25vw;
    }
}


/* =HEADING
----------------------------------------------------- */
/* テキストちょっと大きめ */
.c-text-20 {
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-text-20 {
        font-size: 1.3em;
    }
}

/* 見出し - 汎用 */
.c-title-32 {
    margin: 0 0 1.25em;
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-32 {
        font-size: 1.8rem;
    }
}

.c-title-section {
    position: relative;
    margin: 0 0 1.25em;
    padding: 60px 0;
    color: var(--color-primary);
    font-size: 5.4rem;
    font-weight: bold;
    line-height: 1.5;
}
.c-title-section>* {
    display: block;
}
.c-title-section .japanese {}
.c-title-section .english {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline;
    font-family: "futura-pt", sans-serif;
    font-weight: bold;
    font-size: 28.0rem;
    opacity: 0.06;
    font-style: italic;
    text-align: center;
    line-height: .7;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-section {
        margin: 0 0 1.25em;
        padding: 0 0;
    }
    .c-title-section .english {
        position: relative;
        font-size: 4.0rem;
        opacity: 0.25;
        line-height: 1.2;
    }
    .c-title-section {
        font-size: 2.0rem;
    }
}


.c-title-26 {
    margin: 0 0 1.25em;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-26 {
        font-size: 1.2em;
    }
}

/* .c-title-section {
    margin: 0 0 2.0em;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
}
.c-title-section>* {
    display: block;
}
.c-title-section .japanese {}
.c-title-section .english {
    font-family: "futura-pt", sans-serif;
    font-weight: bold;
    font-size: 6.4rem;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-section .english {
        font-size: 2.8rem;
    }
    .c-title-section {
        font-size: 1.8rem;
    }
} */



/* 
.c-title-28 {
    margin: 0 0 1.25em;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-28 {
        font-size: 1.9rem;
    }
}

.c-title-24 {
    margin: 0 0 1.25em;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-24 {
        font-size: 1.2em;
    }
}

.c-title-bar {
    margin: 0 0 1.5em;
    padding: 1.0em 1.5em;
    border-radius: 3em;
    text-align: center;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.35em;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-title-bar {}
} */



/* =BUTTON
----------------------------------------------------- */
/* 共通CTAボタンエリア */
.c-button-cta {
    text-align: center;
}


/* ボタン - メイン */
/* .c-button-main {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0em 1.5em;
    padding-right: 3em;
    background-color: var(--color-secondary);
    color: #000;
    font-size: 2.0rem;
    font-family: "neue-haas-grotesk-display", "source-han-sans-japanese", sans-serif;
    font-weight: 600;
    letter-spacing: 0.00em;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 3em;
    width: auto;
    max-width: 400px;
    min-width: 160px;
    height: 80px;
}
.c-button-main,
.c-button-main * {
    -webkit-transition: all ease-out 0.2s;
    -moz-transition: all ease-out 0.2s;
    -ms-transition: all ease-out 0.2s;
    transition: all ease-out 0.2s;
}
.c-button-main:hover {
    opacity: 1;
}
.c-button-main>* {
    position: relative;
    z-index: 1;
}
.c-button-main .arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 1.25em;
    margin: auto 0;
    width: 14px;
    height: 14px;
    background: url(assets/images/icon-arrow-button-main.svg) no-repeat;
    background-size: contain;
}
.c-button-main:hover {
    box-shadow: none;
}
.c-button-main:hover .arrow {
    right: 1.0em;
}
    
    .u-ta-c .c-button-main {
        margin: auto;
    }
    .c-button-main.u-line {
        background-color: #00b900;
        color: #fff;
    }
    .c-button-main.u-line .arrow {
        background-image: url(assets/images/icon-arrow-button-main-white.svg);
    }
    .c-button-main.u-yellow {
        background-color: var(--color-primary);
    }

@media screen and (min-width: 800px) {
    .c-button-main.u-small {
        max-width: 240px;
        min-width: 200px;
        height: 60px;
        border-radius: 30px;
        font-size: 1.8rem;
    }
    .c-button-main.u-small .arrow {}
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .c-button-main {
        font-size: 1.4rem;
        height: 60px;
        max-width: 300px;
        min-width: 160px;
    }
    .c-button-main .arrow {
        width: 28px;
        height: 9px;
    }
    .c-button-main .arrow::after {
        bottom: -5px;
        right: 2px;
        width: 9px;
        height: 9px;
    }
} */


/* リスト - ボタン横並びリスト */
ul.c-list-button {
    font-size: 0;
    letter-spacing: 0;
    text-align: center;
}
ul.c-list-button li {
    display: inline-block;
    margin: 0 10px 10px 0;
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-button li {
        display: block;
    }
}


/* =LIST
----------------------------------------------------- */
/* リスト - SNSロゴのみ VER. */
ul.c-list-sns {
    margin: 0;
    display: block;
    font-size: 0;
    letter-spacing: 0;
    text-align: right;
}
ul.c-list-sns li {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    line-height: 1;
}
ul.c-list-sns li:not( :last-child) {
    margin: 0 1em 0 0;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-sns {
        text-align: center;
    }
    ul.c-list-sns li {
        width: 40px;
        font-size: .9rem;
    }
}

/* リスト - SNS円形アイコン */
/* ul.c-list-sns-circle {
    display: flex;
}
ul.c-list-sns-circle li {}
ul.c-list-sns-circle li:not( :last-child) {
    margin: 0 10px 0 0;
}
ul.c-list-sns-circle li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-secondary);
}
@media screen and (min-width: 800px) {
    ul.c-list-sns-circle.u-large li:not( :last-child) {
        margin: 0 20px 0 0;
    }
    ul.c-list-sns-circle.u-large li a {
        width: 80px;
        height: 80px;
    }
}
@media screen and (min-width: 0px) and (max-width: 799px) {} */

/* リスト - SNSシェアボタン */
/* ul.c-list-share {
    margin: 0 0 2rem;
    font-size: 0;
    letter-spacing: 0;
}
ul.c-list-share.u-with-heading::before {
    content: "SHARE";
    display: inline-block;
    vertical-align: text-bottom;
    margin: 0 1em 0 0;
    font-family: "urw-din", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
    opacity: 0.5;
}
ul.c-list-share li {
    display: inline-block;
    margin: 0 5px 10px;
    font-size: 1.6rem;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    ul.c-list-share li {
        margin: 0 3px 5px;
        width: 35px;
    }
} */

/* リスト - 箇条書きリスト */
ul.c-list-simple {}
ul.c-list-simple li {
    margin: 0 0 0.35em;
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
}
ul.c-list-simple li::before {
    content: "・";
    position: absolute;
    left: 0;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 0;
}

/* リスト - 箇条書きリスト（丸型） */
ul.c-list-circle {}
ul.c-list-circle li {
    margin: 0 0 0.35em;
    position: relative;
    padding-left: 1.2em;
    line-height: 1.8;
    letter-spacing: 0.00em;
}
ul.c-list-circle li::before {
    content: "● ";
    position: absolute;
    left: 0;
    top: 0.6em;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 0;
    color: var(--color-primary);
    color: #aaa;
    font-size: 0.9rem;
}

/* =BANNER
----------------------------------------------------- */


/*
-----------------------------------------------------

	=FRONTPAGE (TOP)

-----------------------------------------------------
*/
.top#container {
    overflow: hidden;
}
.top #cont {}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 1600px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}

/* =TOP - FIRSTVIEW
----------------------------------------------------- */
.top-fv {
    position: relative;
    z-index: 9;
    width: calc(100%);
    height: auto;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 1600px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}



/* =TOP - COMMON PARTS
----------------------------------------------------- */
.c-radius10 {
    border-radius: 10px;
    overflow: hidden;
}
.c-radius15 {
    border-radius: 15px;
    overflow: hidden;
}
.c-radius25 {
    border-radius: 25px;
    overflow: hidden;
}


/* =TOP - INTRO
----------------------------------------------------- */
.top-intro {
	position: relative;
	z-index: 11;
    border: solid 1px #c8a551;
    background-color: #f6f1e7;
}
.top-intro .intro-heading {
    display: inline-block;
    position: relative;
    top: -30px;
    margin: 0 0 30px;
    border-radius: 3em;
    padding: 1.05em 2.5em;
    background-color: #c8a551;
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: 0.10em;
    text-align: center;
}
.top-intro .intro-content {
    text-align: center;
}
.top-intro .intro-content .image-animals {}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-intro {
        margin-top: 15px;
    }
    .top-intro .intro-heading {
        display: block;
        top: -15px;
        margin: 0;
    }
}



/* =TOP - MEDIA
----------------------------------------------------- */
/* メディア出演多数 */
.top-media {
	position: relative;
	z-index: 2;
}
.l-top-media-lineup {}
.l-top-media-lineup .lineup {}
.l-top-media-lineup .lineup .image {
    margin: 0 0 15px;
    border-radius: 10px;
    overflow: hidden;
    border: solid 0 #dcdcdc;
}
.l-top-media-lineup .lineup .header {
    text-align: center;
}
.l-top-media-lineup .lineup .header .meta {
    font-size: 0.9em;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}

    /* メディア出演多数 - SWIPER.JS */
    .top-media .swiper-parent {
        position: relative;
    }
    .top-media .swiper-grandparent .swiper-parent .swiper-container {}
    .top-media .swiper-grandparent .swiper-parent .swiper-container .swiper-wrapper {}
    .top-media .swiper-container {
        /* Prev & Next をフル画面にしたいとき */
        position: static !important;
    }
    .top-media .swiper-slide {}
    .top-media .swiper-slide-active { opacity: 1; }

    .top-media .swiper-button-prev,
    .top-media .swiper-container-rtl .swiper-button-next,
    .top-media .swiper-button-next,
    .top-media .swiper-container-rtl .swiper-button-prev {
        background-size: 100% auto !important;
        top: 0 !important;
        bottom: 0 !important;
        margin: auto !important;
        width: 50px !important;
        height: 100% !important;
    }
    .top-media .swiper-button-prev,
    .top-media .swiper-container-rtl .swiper-button-next {
        left: -30px;
        background-image: url(assets/images/icon-arrow-slider-left.webp) !important;
    }
    .top-media .swiper-button-next,
    .top-media .swiper-container-rtl .swiper-button-prev {
        right: -30px;
        background-image: url(assets/images/icon-arrow-slider-right.webp) !important;
    }

    .top-media .swiper-container .swiper-pagination {
        bottom: 0;
        right: 0;
        left: auto;
        padding: 0;
        text-align-last: right;
    }
    .top-media .swiper-container .swiper-pagination-bullet {
        background-color: #000 !important; 
        opacity: 0.5 !important;
    }
    .top-media .swiper-container .swiper-pagination-bullet-active { 
        background-color: #000 !important; 
        opacity: 1 !important;
    }
    @media screen and (min-width: 0px) and (max-width: 799px) {
        .top-media .swiper-container {}
        .top-media .swiper-slide {}
        .top-media .swiper-slide-active { opacity: 1; }

        /* センタリング ver. */
        .top-media .swiper-grandparent {}
        .top-media .swiper-grandparent .wrapper { padding: 0 !important; }
        .top-media .swiper-grandparent .swiper-parent .swiper-container {
            overflow: hidden !important;
        }
        .top-media .swiper-button-next,
        .top-media .swiper-button-prev {}

        .top-media .swiper-button-prev,
        .top-media .swiper-container-rtl .swiper-button-next,
        .top-media .swiper-button-next,
        .top-media .swiper-container-rtl .swiper-button-prev {
            top: 0 !important;
            width: 36px !important;
            height: 100% !important;
            margin-top: 0 !important;
        }
        .top-media .swiper-button-prev,
        .top-media .swiper-container-rtl .swiper-button-next {
            left: -15px !important;
            background-size: 100% auto !important;
        }
        .top-media .swiper-button-next,
        .top-media .swiper-container-rtl .swiper-button-prev {
            right: -15px !important;
            background-size: 100% auto !important;
        }
    }



/* =TOP - ONAYAMI
----------------------------------------------------- */
/* こんなお悩みありませんか...？ */
.top-onayami {
	position: relative;
	z-index: 2;
    background-color: #182341;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-onayami .c-section,
    .top-onayami .c-wrapper {
        padding: 0 !important;
    }
}


/* =TOP - GAIJYU
----------------------------------------------------- */
/* それ、害獣被害かもしれません！ */
.top-gaijyu {
	position: relative;
	z-index: 2;
    background-color: #f6f1e7;
}
.top-gaijyu .arrow {
    margin-bottom: -50px;
    text-align: center;
}
.l-gaiju-lineup {}
.l-gaiju-lineup .lineup {
    margin-bottom: 70px;
}
.l-gaiju-lineup .lineup:last-child {
    margin-bottom: 0;
}
.l-gaiju-lineup .lineup .image {
    margin: 0 0 10px;
}
.l-gaiju-lineup .lineup .header {}
.l-gaiju-lineup .lineup .header .title {
    text-align: center;
}
.l-gaiju-lineup .lineup .header .desc-box {
    position: relative;
    padding: 50px 30px 30px;
    border: solid 4px var(--color-secondary);
    background-color: #fff;
    border-radius: 25px;
}
.l-gaiju-lineup .lineup .header .desc-box .heading-round {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    display: inline-block;
    border-radius: 3em;
    padding: 0.6em 1.5em;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 1.0em;
    font-weight: bold;
    text-align: center;
}
.l-gaiju-lineup .lineup .header .desc-box ul li {
    font-size: 0.8em;
    font-weight: bold;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-gaijyu .arrow {
        margin: 0;
    }
    .top-gaijyu .arrow img {
        width: 25%;
    }
    .l-gaiju-lineup.c-flex-row.u-col-3>.c-flex-child {
        margin-bottom: 6.25vw;
    }
    .l-gaiju-lineup.c-flex-row.u-col-3>.c-flex-child {
        margin-bottom: 0;
    }
    .l-gaiju-lineup .lineup .header .title {
        margin: 0 0 30px;
    }
    .l-gaiju-lineup .lineup .header .desc-box {
        position: relative;
        padding: 6.25vw;
    }
    .l-gaiju-lineup .lineup .header .desc-box ul li {
        font-size: 1.0em;
    }
}



/* =TOP - SONOMAMA
----------------------------------------------------- */
/* 害獣・害虫被害をそのままにすると... */
.top-sonomama {
	position: relative;
	z-index: 2;
    background: url(assets/images/bg-arch-navy.webp) no-repeat;
    background-size: 100% auto;
    background-color: #182341;
    background-color: #f6f1e7;
    text-align: center;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-sonomama {
        background-color: #182341;
    }
}



/* =TOP - OMAKASE
----------------------------------------------------- */
/* それ、害獣被害かもしれません！ */
.top-omakase {
	position: relative;
	z-index: 2;
    background-color: #ededed;
}
.top-omakase .arrow {
    margin-bottom: -50px;
    text-align: center;
}
.top-omakase .omakase-header {}
.top-omakase .omakase-lineup {}
.top-omakase .omakase-lineup .lineup {
    position: relative;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
}
.top-omakase .omakase-lineup .lineup .image {
    position: relative;
    height: 240px;
}
.top-omakase .omakase-lineup .lineup .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.top-omakase .omakase-lineup .lineup .header {
    position: relative;
    padding: 35px;
} 
.top-omakase .omakase-lineup .lineup .header .numbering {
    position: relative;
    z-index: 2;
    top: -50px;
    width: auto;
    display: inline-block;
    padding: 0.5em 2em;
    border-radius: 2em;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
}
.top-omakase .omakase-lineup .lineup .numbering>* {
    display: inline-block;
}
.top-omakase .omakase-lineup .lineup .numbering .sub {}
.top-omakase .omakase-lineup .lineup .numbering .num {
    font-size: 1.2em;
    font-family: futura-pt, sans-serif;
}
.top-omakase .omakase-lineup .lineup .header .title {
    margin: 0 0 0.75em;
    margin-top: -25px;
    font-size: 2.1rem;
    color: var(--color-primary);
    font-weight: bold;
    line-height: 1.5;
    min-height: 3em;
}
.top-omakase .omakase-lineup .lineup .header .text {
    line-height: 1.7;
}

@media screen and (min-width: 800px) {
    .top-omakase .omakase-lineup {}
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-omakase .c-section {}
    .top-omakase .arrow {
        margin: 0;
    }
    .top-omakase .arrow img {
        width: 25%;
    }
    .top-omakase .omakase-header {
        margin: 0 0 6.25vw;
    }
    .top-omakase .omakase-lineup .lineup .header .title {
        font-size: 1.3em;
        min-height: auto;
    }
}



/* =TOP - CASE
----------------------------------------------------- */
.top-case {
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.top-case .case-lineup {}
.top-case .case-lineup .lineup {
    position: relative;
    border-radius: 15px;
    border: solid 4px var(--color-secondary);
    background-color: #fff;
    box-shadow: 40px 40px 0 rgba(0, 0, 0, 0.1);
    padding: 80px;
}
.top-case .case-lineup .lineup .case-header {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 650px;
    max-width: 100%;
    background-color: var(--color-secondary);
    color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
}
.top-case .case-lineup .lineup .case-header .title {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.5;
}


.top-case .case-lineup .lineup .case-main {}
.top-case .case-lineup .lineup .case-main .case-header-onayami {
    position: relative;
    margin: 0 0 3em;
}
.top-case .case-lineup .lineup .case-main .case-header-onayami>* {}
.top-case .case-lineup .lineup .case-main .case-header-onayami .text {
    display: block;
    padding: 0.5em 2em;
    border-radius: 3em;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
}
.top-case .case-lineup .lineup .case-main .case-header-onayami .icon {
    position: absolute;
    top: -45px;
    right: -10px;
}
.top-case .case-lineup .lineup .case-main .title {
    color: var(--color-primary);
}
.top-case .case-lineup .lineup .case-main .comment {
    font-weight: bold;
    font-size: 1.1em;
}
.top-case .case-lineup .lineup .case-main .comment .sub {
    color: var(--color-primary);
    font-size: 1.2em;
}
@media screen and (min-width: 800px) {
    .top-case .case-lineup .lineup {
        margin: 0 0 100px;
    }
    .top-case .case-lineup .lineup:last-child {
        margin: 0;
    }
	.top-case .case-lineup .lineup .case-main {
        padding-top: 40px;
    }
	.top-case .case-lineup .lineup .case-main .c-image-content {
		align-items: flex-start;
	}
	.top-case .case-lineup .lineup .case-main .c-image-content>.c-image {
		width: calc(100% - 400px - 60px);
        padding-right: 60px;
        border-right: solid 2px #000;
	}
	.top-case .case-lineup .lineup .case-main .c-image-content>.c-content {
		width: 400px;
	}
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-case .case-lineup .lineup {
        padding: 6.25vw;
        overflow: hidden;
        margin: 0 0 6.25vw;
        box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.1);
    }
    .top-case .case-lineup .lineup:last-child {
        margin: 0;
    }
    .top-case .case-lineup .lineup .case-header {
        position: relative;
        left: 0;
        top: 0;
        margin: -6.25vw;
        margin-bottom: 6.25vw;
        padding: 3.125vw;
        width: calc(100vw - 12.5vw);
        max-width: calc(100vw - 12.5vw);
        border-radius: 0;
        text-align: center;
    }
    .top-case .case-lineup .lineup .case-header .title {
        font-size: 2.8rem;
    }
    .top-case .case-lineup .lineup .comment {
        font-size: 1.3rem;
    }
    .top-case .case-lineup .lineup .c-image {
        margin-bottom: 50px;
    }
    .top-case .case-lineup .lineup .case-main .case-header-onayami .icon {
        top: -30px;
        width: 100px;
    }
}



/* =TOP - PLACE
----------------------------------------------------- */
/* 対応箇所の一例 */
.top-place {
	position: relative;
	z-index: 2;
    background: url(assets/images/bg-arch-gray.webp) no-repeat;
    background-size: 100% auto;
    background-color: #fff;
    text-align: center;
}
.top-place .title {
    color: var(--color-primary);
}
.l-place-lineup {}
.l-place-lineup .lineup {}
.top-place .desc {}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-place {
        background-color: #eee;
    }
    .l-place-lineup.c-flex-row.u-col-6>.c-flex-child {
        width: calc(33.33% - 3.125vw);
    }
}

/* =TOP - AREA
----------------------------------------------------- */
/* 対応エリア */
.top-area {
	position: relative;
	z-index: 2;
}
.top-area .c-image-content>.c-image {
    position: relative;
}
.top-area .c-image-content>.c-image .icon-emblem {
    position: absolute;
    right: 0;
    bottom: 0;
}
.l-area-lineup {}
.l-area-lineup .lineup {
    margin: 0 0 1em;
}
.l-area-lineup .lineup .title {
    color: var(--color-primary);
    font-size: 1.1em;
    font-weight: bold;
} 
@media screen and (min-width: 800px) {
	.top-area .c-image-content {
		align-items: flex-start;
	}
	.top-area .c-image-content>.c-content {
        position: relative;
        z-index: 2;
		width: 50%;
	}
	.top-area .c-image-content>.c-image {
        position: relative;
        z-index: 1;
		width: calc(50% + 100px);
        margin: 0 0 -100px;
	}
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-area .c-image-content>.c-image .icon-emblem {
        width: 40%;
    }
}



/* =TOP - ATTENTION
----------------------------------------------------- */
/* こんな業者にはご注意ください */
.top-attention {
	position: relative;
	z-index: 2;
    background: url(assets/images/top-attention-bg.webp) no-repeat;
    background-size: cover;
}
.l-attention-lineup {}
.l-attention-lineup .lineup {
    padding: 3em;
    border-radius: 25px;
    background-color: #fff;
    border: solid 1px #a80707;
}
.c-title-attention {
    margin: 0 0 25px;
    padding: 0 0;
    padding-left: 60px;
    min-height: 50px;
    background: url(assets/images/icon-attention-red.webp) no-repeat left center;
    background-size: 49px auto;
    color: #a80707;
    font-size: 3.6rem;
    font-weight: bold;
}
@media screen and (min-width: 800px) {
    .l-attention-lineup .lineup {
        margin: 0 0 50px;
    }
    .l-attention-lineup .lineup:last-child {
        margin: 0;
    }
	.l-attention-lineup .c-image-content {
		align-items: center;
	}
	.l-attention-lineup .c-image-content>.c-content {
        width: 750px;
	}
	.l-attention-lineup .c-image-content>.c-image {
        width: 300px;
	}
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .l-attention-lineup .lineup {
        margin: 0 0 6.25vw;
    }
    .l-attention-lineup .lineup:last-child {
        margin: 0;
    }
    .c-title-attention {
        padding-left: 40px;
        min-height: 30px;
        background-size: 29px auto;
        color: #a80707;
        font-size: 2.1rem;
    }
}



/* =TOP - FLOW
----------------------------------------------------- */
.top-flow {
	position: relative;
	z-index: 2;
	overflow: hidden;
    background-color: #f0f0e5;
}
@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {}

/* フローチャート */
.l-flowchart-lineup {}
.l-flowchart-lineup .lineup {
	position: relative;
	padding: 0 0 50px;
}
.l-flowchart-lineup .lineup::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 49px;
	content: "";
	width: 2px;
	height: 100%;
	background-color: var(--color-primary);
}
.l-flowchart-lineup .lineup:last-child::before {
	display: none;
}
.l-flowchart-lineup .lineup .numbering {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--color-primary);
	color: #fff;
	padding: 20px 0;
	line-height: 1;
	text-align: center;
	font-size: 3.6rem;
	font-family: 'futura-pt', sans-serif;
	font-weight: 600;
	font-weight: bold;
    font-style: italic;
	color: #fff;

	display: grid;
	align-items: center;
	justify-items: center;
}
.l-flowchart-lineup .lineup .numbering::before {
	content: "STEP";
	font-size: 1.5rem;
	display: block;
	text-align: center;
}
.l-flowchart-lineup .lineup .inner {
	padding-left: 140px;
	line-height: 1.6;
}
.l-flowchart-lineup .lineup .inner * {
	overflow: hidden;
}
.l-flowchart-lineup .lineup .inner .title {
	margin: 0 0 0.75em;
	letter-spacing: 0;
	line-height: 1.5;
}
.l-flowchart-lineup .lineup .inner .text {
	font-size: .875em;
}
.l-flowchart-lineup .lineup .inner>.c-image {}
.l-flowchart-lineup .lineup .inner>.c-content {}

@media screen and (min-width: 800px) {
	.l-flowchart-lineup .lineup .inner>.c-image { 
		width: 220px; 
	}
	.l-flowchart-lineup .lineup .inner>.c-content { 
		width: calc(100% - 220px - 50px); 
	}
}
@media screen and (min-width: 0px) and (max-width: 799px) {
	.l-flowchart-lineup .lineup {
		padding: 0 0 5vw;
	}
	.l-flowchart-lineup .lineup::before {
		left: 34px;
		width: 1px;
	}
	.l-flowchart-lineup .lineup .numbering {
		width: 70px;
		height: 70px;
		font-size: 2.8rem;
		padding: 10px 0;
	}
	.l-flowchart-lineup .lineup .numbering::before {
		font-size: .9rem;
	}
	.l-flowchart-lineup .lineup .inner {
		width: 100%;
		padding: 0;
		padding-left: 90px;
	}
	.l-flowchart-lineup .lineup .inner .header::before {
		right: 20px;
		height: 20px;
		font-size: 20px;
		line-height: 1;
	}
	.l-flowchart-lineup .lineup .inner>.c-image {
		margin: 0 0 20px;
	}
	.l-flowchart-lineup .lineup .inner>.c-content {}
}



/* =TOP - FAQ
----------------------------------------------------- */
.top-faq {
	position: relative;
	z-index: 2;
	overflow: hidden;
    background-color: #d8e0ee;
}
.l-faq-lineup {}
.l-faq-lineup .lineup,
.l-faq-lineup .lineup .header,
.l-faq-lineup .lineup .header::before,
.l-faq-lineup .lineup .content {
	border-radius: 40px;
}
.l-faq-lineup .lineup {
	background-color: #eef1f7;
	overflow: hidden;
}
.l-faq-lineup .lineup:not( :last-child ) {
	margin: 0 0 20px;
}
.l-faq-lineup .lineup .header,
.l-faq-lineup .lineup .content {
    position: relative;
    display: flex;
    align-items: center;
	padding: 20px 40px;
	padding-left: calc(80px + 30px);
}
.l-faq-lineup .lineup .header {
	background: url(assets/images/icon-arrow-faq-down.webp) no-repeat right 40px center;
	background-size: 17px auto;
	background-color: #fff;
	margin: 0;
}
.l-faq-lineup .lineup .header.js-acc-header-on {
	background-image: url(assets/images/icon-arrow-faq-up.webp);
}
.l-faq-lineup .lineup .header::before {
	content: "Q";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
    width: 80px;
	height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: var(--color-primary);
    color: #fff;
    font-family: futura-pt, sans-serif;
	font-size: 4.0rem;
	font-weight: bold;
    text-align: center;
}
.l-faq-lineup .lineup .header .title {
	position: relative;
    font-weight: bold;
    font-size: 1.25em;
}
.l-faq-lineup .lineup .content {
	padding: 40px 40px;
	padding-left: calc(80px + 30px);
}
.l-faq-lineup .lineup .content .text {
	position: relative;
}
.l-faq-lineup .lineup .content .text::before {}

@media screen and (min-width: 800px) {
    .l-faq-lineup .lineup .header {
        min-height: 80px;
    }
}
@media screen and (min-width: 0px) and (max-width: 799px) {
	.top-faq .c-section {}
    .l-faq-lineup .lineup,
    .l-faq-lineup .lineup .header,
    .l-faq-lineup .lineup .header::before,
    .l-faq-lineup .lineup .content {
        border-radius: 20px;
    }
    .l-faq-lineup .lineup {
        border-radius: 20px;
		font-size: 1.0em;
	}
    .l-faq-lineup .lineup:not( :last-child ) {
        margin: 0 0 3.125vw;
    }
	.l-faq-lineup .lineup:not( :last-child ) {} 
	.l-faq-lineup .lineup .header::before {
		font-size: 1.5em;
        width: 40px;
        height: 100%;
    }
	.l-faq-lineup .lineup .header {
		padding: 10px 55px;
		background-position: right 3.125vw center;
		background-size: 10px auto;
		font-size: 1.4rem;
	}
	.l-faq-lineup .lineup .header .title {
		font-size: 1.0em;
	}
	.l-faq-lineup .lineup .content {
		position: relative;
		padding: 20px 6.25vw 20px;
	}
	.l-faq-lineup .lineup .content .text {
	}
}



/* =TOP - INQUIRY
----------------------------------------------------- */
.top-inquiry {
	position: relative;
	z-index: 2;
	overflow: hidden;
    background-color: #dff4ff;
}
.top-inquiry .inqury-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff;
}
.top-inquiry .inqury-box .inqury-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background-color: var(--color-primary);
    text-align: center;
}
.top-inquiry .inqury-box .inner-content {
    margin: auto;
    padding: 60px;
    width: 900px;
    max-width: 100%;
} 
@media screen and (min-width: 800px) {
    .top-inquiry .inqury-box {
        padding-top: 100px;
    }
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .top-inquiry .inqury-box .inqury-header {
        width: 100%;
        padding: 15px;
    }
    .top-inquiry .inqury-box .inqury-header img {
        width: 60%;
    }
    .top-inquiry .inqury-box .inner-content {
        margin: auto;
        padding: 6.25vw;
    }
}


/* =SUBPAGES - FORM (PLUG-IN)
----------------------------------------------------- */
/* フォーム（WPプラグイン「Contact Form 7」を使用） */
/* フォーム本体 */
.form-main {
    padding-top: 0;
    width: 900px;
    max-width: 100%;
}
.form-main * {
    line-height: 1.8;
}
.form-main table.table-form {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.75;
    text-align: left;
}
.form-main table.table-form tr,
.form-main table.table-form th,
.form-main table.table-form td {
    display: block;
    width: 100%;
    vertical-align: middle;
    text-align: left;
    border: none;
    font-weight: 600;
}

.form-main table.table-form tr {
    margin: 0 0 2em;
}

.form-main table.table-form tr {}

.form-main table.table-form th,
.form-main table.table-form td {
    padding: 0.5em 0;
    font-weight: normal;
}

.form-main table.table-form th {
    font-size: 1.125em;
    font-weight: 600;
}
.form-main input[type="text"],
.form-main input[type="email"],
.form-main input[type="tel"],
.form-main select,
.form-main textarea {
    width: 100%;
    padding: 1.005em;
    border-radius: 5px;
    background-color: transparent;
    background-color: #eef1f7;
    border: solid 0 #ccc;
    font-family: inherit;
}
.mwform-tel-field input[type="text"],
.mwform-zip-field input[type="text"] {
    display: inline-block;
    vertical-align: unset;
}
.form-main textarea {
    width: 100%;
}
.form-main select {
    appearance: none;
    -webkit-appearance: none;
    max-width: 400px;
    font-size: inherit;
    background: url(assets/images/icon-form-select.webp) no-repeat right 1em center;
    background-color: #eef1f7;
    background-size: 9px auto;
}
.form-main .vertical label {
    display: block;
}
.form-main ::placeholder {
    color: #aaa;
}
.form-main em {
    display: inline-block;
    margin: 0 0 0 1em;
    padding: 0.20em 1.0em;
    border-radius: 3px;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1.2;
}
.form-main .error {
    display: block;
    margin: .5em 0 0;
    padding: .5em 1em;
    border: solid 1px #F00;
    background-color: #fff;
    color: #f00;
    border-radius: 0;
}
.form-main a {}

@media screen and (min-width: 800px) {}
@media screen and (min-width: 0px) and (max-width: 799px) {

    .form-main table.table-form,
    .form-main table.table-form tr,
    .form-main table.table-form th,
    .form-main table.table-form td {
        display: block !important;
        width: 100% !important;
        background-color: transparent;
        border: none !important;
    }

    .form-main table.table-form {}

    .form-main table.table-form tr {}

    .form-main table.table-form th,
    .form-main table.table-form td {
        padding: 5px 0 !important;
        font-size: 1em !important;
    }

    .form-main input,
    .form-main input[type="text"],
    .form-main input[type="tel"],
    .form-main input[type="email"],
    .form-main textarea,
    .form-main select,
    .form-main input[type*="submit"] {
        font-size: 14px !important;
    }

    .form-main input[type="text"],
    .form-main input[type="tel"],
    .form-main input[type="email"],
    .form-main textarea {
        width: 100%;
        padding: 0.75em;
    }

    .form-main select {
        padding: 0.5em;
        width: 100%;
    }

    .form-main input[type="radio"] {
        padding: 0 !important;
    }

    .form-main input[type="file"] {
        width: 100%;
        padding: 0;
        font-size: 12px !important;
    }

    .form-main input[type*="submit"] {
        width: 100% !important;
    }
}


/* レイアウト調整 */
.form-main .horizontal>br {
    display: none;
}

.form-main .horizontal label {
    display: block;
    padding: 1em;
    line-height: 1;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    background-color: transparent;
    background-color: #eef1f7;
    border: solid 0 #ccc;
}

.form-main .horizontal label:hover {
    border-color: #f00;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0 !important;
}

@media screen and (min-width: 800px) {
    .form-main .horizontal {
        font-size: 0;
        letter-spacing: 0;
    }
    .form-main .horizontal .wpcf7-list-item {
        display: inline-block;
        vertical-align: middle;
        font-size: 1.6rem;
    }
    .form-main .horizontal .wpcf7-list-item input[type="checkbox"] {}

    .form-main .horizontal.col-3 .wpcf7-list-item {
        width: 32.33%;
        margin: 0 1% 1% 0;
    }

    .form-main .horizontal.col-1 .wpcf7-list-item {
        width: 100%;
        margin: 0 0% 1% 0;
    }

    .form-main .horizontal label {
        padding: 1.505em;
    }

    .form-main .horizontal-half {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        flex-shrink: 0;
        justify-items: center;
        align-items: center;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form-main .horizontal-half .half-item {
        margin-bottom: 0;
        width: 50%;
    }

    .form-main .horizontal-half .half-item:nth-child(odd) {
        padding-right: 10px;
    }
}

@media screen and (min-width: 0px) and (max-width: 799px) {
    .form-main .horizontal .wpcf7-list-item,
    .form-main .horizontal-half .half-item {
        display: inline-block;
        vertical-align: middle;
        width: 100%;
        margin: 0 0 1%;
    }

    .form-main .horizontal-half .half-item {
        margin-bottom: 10px;
    }
}

/* プライバシーポリシー枠 */
.form-main .privacy-box {
    height: 270px;
    overflow: scroll;
    padding: 2em;
    background-color: #fff;
    border: solid 1px #dce2e6;
    font-size: .875em
}
.form-main .privacy-box::-webkit-scrollbar {
    width: 12px;
}
.form-main .privacy-box::-webkit-scrollbar-thumb {
    background: #ffa500;
    border-radius: 10px;
}

.form-main .privacy-box h2,
.form-main .privacy-box h3,
.form-main .privacy-box h4,
.form-main .privacy-box h5,
.form-main .privacy-box h6 {
    margin: 0 0 0.5em;
    font-size: 1.2em;
    font-weight: bold;
}

/* 送信ボタン - ボタンの全領域をクリック可能に変更 */
.form-main input[type*="submit"] {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    width: auto;
    text-align: inherit;
    margin: auto 0;
    padding: 0;
    background-color: transparent;
}
.form-main .submit-button input[type*="submit"] {
	display: block;
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	padding: 1em 2em;
    font-size: 0;
}
/* 送信ボタン - ボタンのデザイン装飾 */
.form-main .submit-button {
    position: relative;
    z-index: 1;
    display: block;
    width: 400px;
    max-width: 100%;
    height: 80px;
    border-radius: 40px;
    padding: 0 1.25em;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 3px var(--color-secondary);
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    text-decoration: none;
}
.form-main .submit-button,
.form-main .submit-button * {
    -webkit-transition: all ease-out 0.15s;
    -moz-transition: all ease-out 0.15s;
    -ms-transition: all ease-out 0.15s;
    transition: all ease-out 0.15s;
}
.form-main .submit-button>* {}
.form-main .submit-button p {
    line-height: 1.0;
}
.form-main .submit-button>.text {
    font-family: "urw-din", sans-serif;
    font-weight: bold;
    font-size: 2.0rem;
    line-height: 1.5;
}
.form-main .submit-button>.arrow {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 2em;
    width: 11px;
    height: 11px;
    margin: auto 0;
    background: url(assets/images/icon-arrow-right.webp) no-repeat;
    background-size: contain;
}
.form-main .submit-button:hover {
    opacity: 0.5;
}
.form-main .submit-button:hover>.arrow {
    right: 1.8em;
}
@media screen and (min-width: 800px) {
    .form-main .submit-button.u-small {}
    .form-main .submit-button.u-small>.text {
        font-size: 1em;
    }
}
@media screen and (min-width: 0px) and (max-width: 799px) {
    .form-main .submit-button input[type*="submit"] {
        font-size: 0 !important;
    }
    .form-main .submit-button {
        height: 70px;
    }
    .form-main .submit-button>.text {
        font-size: 1.8rem;
        line-height: 1.25;
    }
}

/* 郵便番号自動取得 */
.form-main input.zip {
    width: 10em;
}