@charset 'UTF-8';
/*
SCSS SMACSS BEM
*/
/* Tools */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video
{
    font: inherit;
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline; 

    border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main
{
    display: block;
}

body
{
    line-height: 1;
}

ol,
ul
{
    list-style: none;
}

blockquote,
q
{
    quotes: none;
}

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

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

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

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

.clearfix:before,
.clearfix:after
{
    display: table; 

    content: '';
}

.clearfix:after
{
    clear: both;
}

.clear
{
    clear: both;
}

/* show only  SP/PC
-------------------------------*/
.hidden-lgview
{
    display: none;
}

.hidden-smview
{
    display: block;
}

@media screen and (max-width: 767px)
{
    .hidden-lgview
    {
        display: block;
    }
    .hidden-smview
    {
        display: none;
    }
}

/* font
-------------------------------*/
.bold
{
    font-weight: bold;
}

/* margin
-------------------------------*/
.mb0
{
    margin-bottom: 0 !important;
}

/* padding
-------------------------------*/
.pb0
{
    padding-bottom: 0 !important;
}

/*
  MAIN:general
--------------------------------------------- */
html
{
    font-size: 62.5%;

    min-width: 1140px;
}

body
{
    font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 1.6rem;

    min-width: 1140px;
    margin: 0 auto;

    vertical-align: top;
    letter-spacing: .1em; 
    word-wrap: break-word;

    color: #444;
    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/bg.png');

    line-break: strict;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'palt';
}

@media screen and (max-width: 767px)
{
    html
    {
        min-width: 100%;
    }
    body
    {
        font-size: 1.4rem;

        min-width: 100%;
    }
}

main
{
    overflow: hidden;
}

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

*
{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a
{
    -webkit-transition: opacity .7s;
            transition: opacity .7s; 

    color: #444;
}

a:hover
{
    text-decoration: underline;

    opacity: .7;
}

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

@-ms-viewport
{
    width: auto !important;
}

:root
{
    -ms-overflow-style: scrollbar;
}

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

    vertical-align: bottom;

    border: 0;
}

@media screen and (max-width: 767px)
{
    img
    {
        width: 100%;
        height: auto;
    }
}

p
{
    line-height: 2;
}

.note
{
    font-size: 1.0rem;

    color: #444;
}

@media screen and (min-width: 768px)
{
    a[href^='tel:']
    {
        pointer-events: none;
    }
}

/* Layout */
.l-header
{
    position: relative; 

    width: 1110px;
    margin: 0 auto;
}

.l-main
{
    width: 1110px;
    margin: 0 auto;
}

.l-footer
{
    width: 1110px;
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .l-header
    {
        width: 100%;
        height: 75px; 
        margin: 0 auto;
        padding: 0 20px;
    }
    .l-main
    {
        overflow: hidden; 

        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }
    .l-footer
    {
        width: 100%;
        margin: 0 auto; 
        padding: 0 20px;
    }
}

/* Module */
.header__inner
{
    height: 60px; 

    border-bottom: 1px solid #bfbfbf;
}
.header__inner--no-border
{
    border-bottom: none;
}

.header__logo
{
    position: absolute;
    top: -45px;
    left: 0; 

    width: 280px;
}

@media screen and (max-width: 767px)
{
    .header__inner
    {
        height: 75px; 

        border-bottom: 1px solid #bfbfbf;
    }
    .header__inner--no-border
    {
        border-bottom: none;
    }
    .header__logo
    {
        position: absolute;
        top: 20px;
        left: 20px; 

        width: 175px;
    }
}

.header-utility
{
    position: relative;

    width: 1110px;
    margin: 0 auto;
}

.header-contact
{
    width: 315px;
    margin-left: auto;
}
.header-contact__button
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-contact__button-link
{
    font-size: 1.2rem;

    display: block;

    width: 152px;
    margin-top: 15px; 
    padding: 12px 5px;

    text-align: center;
    text-decoration: none;

    color: #fff;
    background: #ff2367;
    -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .1);
            box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .1);
}
.header-contact__button-link:hover
{
    text-decoration: none;
}
.header-contact__button-link--gray
{
    background: #444;
}

@media screen and (max-width: 767px)
{
    .header-utility
    {
        position: relative;

        width: 100%;
        margin: 0 auto;
    }
    .header-contact
    {
        width: 100%;
        margin-left: auto;
    }
    .header-contact__button
    {
        width: 100%;
    }
    .header-contact__button-link
    {
        font-size: 1.2rem;

        width: 50%;
        margin-top: 0; 
        padding: 10px 5px;
    }
    .header-contact__button-link:hover
    {
        text-decoration: none;
    }
}

.header-navi
{
    text-align: right;
    letter-spacing: 2px;
}
.header-navi__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 40px;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.header-navi__item
{
    font-family: 'Bebas Neue', cursive;

    margin-left: 30px;
}
.header-navi__item:first-of-type
{
    margin-left: 0;
}
.header-navi__item--nogutter
{
    margin-left: 6px;
}
.header-navi__item--nogutter-2
{
    margin-left: 3px;
}
.header-navi__item--slash:before
{
    display: inline-block;

    margin-right: 6px;

    content: '/';
    vertical-align: sub; 

    color: #cfcfcf;
}
.header-navi__link
{
    font-size: 2rem;

    text-decoration: none;
}
.header-navi__link:hover
{
    text-decoration: none;
}
.header-navi__link--small
{
    font-size: 1.4rem;

    vertical-align: sub; 
    text-decoration: none;
}
.header-navi__link--small:hover
{
    text-decoration: none;
}
.header-navi__link--small--current
{
    border-bottom: 1px solid #737373;
}
.header-navi__link--current
{
    border-bottom: 1px solid #737373;
}
.header-navi__link--upper
{
    display: block; 

    margin-top: -1px;
}
.header-navi__ttl
{
    font-size: 2rem;

    text-decoration: none;
}

@media screen and (max-width: 767px)
{
    .header-navi
    {
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;

        display: none;

        width: 100%;
        height: 100%; 

        text-align: center;

        background-color: rgba(68, 68, 68, .95);
    }
    .header-navi__list
    {
        display: block; 

        margin-top: calc(275 / 750 * 100vw);
    }
    .header-navi__item
    {
        font-family: 'Bebas Neue', cursive;

        margin-bottom: calc(35 / 750 * 100vw); 
        margin-left: 0;
    }
    .header-navi__item--gutter-narrow
    {
        margin-bottom: calc(20 / 750 * 100vw);
    }
    .header-navi__item--nogutter
    {
        display: inline-block; 

        margin-left: 0;

        text-align: center;
    }
    .header-navi__item--en
    {
        display: inline-block;

        margin-right: 7px;
        margin-left: 7px;
    }
    .header-navi__item--nogutter-2
    {
        display: inline-block; 

        margin-left: 0;

        text-align: center;
    }
    .header-navi__item--slash
    {
        margin-right: 7px;
        margin-left: 7px;
    }
    .header-navi__item--slash:before
    {
        display: inline-block;

        margin-right: 10px;

        content: none;
        vertical-align: inherit; 

        color: #cfcfcf;
    }
    .header-navi__link
    {
        font-size: 3rem;

        color: #fff;
    }
    .header-navi__link--small
    {
        font-size: 1.6rem;

        display: block; 

        color: #fff;
    }
    .header-navi__link--small:before
    {
        content: none;
    }
    .header-navi__link--small:hover
    {
        text-decoration: none;
    }
    .header-navi__link--small--current
    {
        border-bottom: none;
    }
    .header-navi__link--current
    {
        border-bottom: none;
    }
    .header-navi__link--upper
    {
        display: block; 

        margin-top: 0;
    }
    .header-navi__ttl
    {
        font-size: 3rem; 

        color: #fff;
    }
}

@media screen and (max-width: 767px)
{
    /*メニューボタンのエフェクト*/
    .nav-button
    {
        position: absolute;
        top: 0; 
        right: 0;

        display: block;

        width: 20px;
        height: 22px;
        margin-top: 24px;
        margin-right: calc(40 / 750 * 100vw);
    }
    .nav-button--close
    {
        position: absolute;
        z-index: 20;
        top: 15px;
        right: 15px;

        width: 20px;
        height: 22px;
    }
    .nav-button span
    {
        display: inline-block;

        -webkit-box-sizing: border-box;
                box-sizing: border-box; 

        -webkit-transition: all .4s;
                transition: all .4s;
    }
    .nav-button span
    {
        position: absolute;
        left: 0;

        width: 100%;
        height: 2px;

        background-color: #444;
    }
    .nav-button--close span
    {
        position: absolute;
        left: 0;

        width: 100%;
        height: 2px;

        background-color: #fff;
    }
    .nav-button span:nth-of-type(1),
    .nav-button--close span:nth-of-type(1)
    {
        top: 0;
    }
    .nav-button span:nth-of-type(2),
    .nav-button--close span:nth-of-type(2)
    {
        top: 10px;
    }
    .nav-button span:nth-of-type(3),
    .nav-button--close span:nth-of-type(3)
    {
        bottom: 0;
    }
    .nav-button--close span:nth-of-type(1)
    {
        -webkit-transform: translateY(10px) rotate(-45deg);
            -ms-transform: translateY(10px) rotate(-45deg);
                transform: translateY(10px) rotate(-45deg);
    }
    .nav-button--close span:nth-of-type(2)
    {
        opacity: 0;
    }
    .nav-button--close span:nth-of-type(3)
    {
        -webkit-transform: translateY(-10px) rotate(45deg);
            -ms-transform: translateY(-10px) rotate(45deg);
                transform: translateY(-10px) rotate(45deg);
    }
}

@-webkit-keyframes show
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

@keyframes show
{
    from
    {
        opacity: 0;
    }
    to
    {
        opacity: 1;
    }
}

.menu-open
{
    display: block;

    -webkit-animation: show .5s linear 0s;
            animation: show .5s linear 0s;
}

.menu-close
{
    display: none;
}

body.fixed
{
    position: fixed;
    left: 0; 

    width: 100%;
    height: 100%;
}

.footer__inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-bottom: 50px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__logo
{
    width: 228px;
}

.footer__cr
{
    font-size: 1rem;

    margin-top: 15px; 

    color: #bfbfbf;
}

.footer-navi
{
    text-align: right;
    letter-spacing: 2px;
}
.footer-navi__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-navi__item
{
    font-family: 'Bebas Neue', cursive;

    margin-left: 35px;
}
.footer-navi__item:first-of-type
{
    margin-left: 0;
}
.footer-navi__item--nogutter
{
    margin-left: 5px;
}
.footer-navi__link
{
    font-size: 1.6rem;

    text-decoration: none;
}
.footer-navi__link:hover
{
    text-decoration: none;
}
.footer-navi__link--small
{
    font-size: 1.4rem;

    text-decoration: none;
}
.footer-navi__link--small:before
{
    display: inline-block;

    margin-right: 5px;

    content: '/';

    color: #cfcfcf;
}
.footer-navi__link--small:hover
{
    text-decoration: none;
}
.footer-navi__ttl
{
    font-size: 1.6rem;

    text-decoration: none;
}

.footer-utility
{
    width: 460px;
    margin-left: auto;
}
.footer-utility__link
{
    font-size: 1rem;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.footer-utility__link--external:after
{
    display: inline-block;

    width: 11px;
    height: 8px;
    margin-left: 8px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
    background-size: contain;
}
.footer-utility__link--internal:after
{
    display: inline-block;

    width: 11px;
    height: 8px;
    margin-left: 8px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_s.png') 0 0 no-repeat;
    background-size: contain;
}
.footer-utility__item
{
    margin-left: 20px; 
    padding-top: 25px;
}
.footer-utility__item--fb
{
    width: 18px;
    height: auto;
    margin-top: -5px;
    margin-right: 25px;
}
.footer-utility a
{
    text-decoration: none;
}

@media screen and (max-width: 767px)
{
    .footer__inner
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        padding-bottom: calc(75 / 750 * 100vw); 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .footer__logo
    {
        margin: 0 auto; 

        text-align: center;
    }
    .footer__logo img
    {
        width: calc(454 / 750 * 100vw);
    }
    .footer__cr
    {
        font-size: 1rem;

        margin-top: calc(20 / 750 * 100vw);
        margin-bottom: calc(30 / 750 * 100vw); 

        color: #bfbfbf;
    }
    .footer-navi
    {
        text-align: center;
        letter-spacing: 2px;
    }
    .footer-navi__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: calc(580 / 750 * 100vw);
        margin: 0 auto calc(60 / 750 * 100vw); 

        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .footer-navi__item
    {
        font-family: 'Bebas Neue', cursive;

        margin-top: calc(50 / 750 * 100vw);
        margin-right: calc(30 / 750 * 100vw);
        margin-left: 0;
        margin-left: calc(30 / 750 * 100vw);
    }
    .footer-navi__item:first-of-type
    {
        margin-left: calc(35 / 750 * 100vw);
    }
    .footer-navi__item--nogutter
    {
        margin-left: 0;
    }
    .footer-navi__link
    {
        font-size: 1.6rem;

        text-decoration: none;
    }
    .footer-navi__link:hover
    {
        text-decoration: none;
    }
    .footer-navi__link--small
    {
        font-size: 1.4rem;

        text-decoration: none;
    }
    .footer-navi__link--small:before
    {
        display: inline-block;

        margin-right: 10px;

        content: '/';

        color: #cfcfcf;
    }
    .footer-navi__link--small:hover
    {
        text-decoration: none;
    }
    .footer-navi__ttl
    {
        font-size: 1.6rem;

        text-decoration: none;
    }
    .footer-utility
    {
        width: calc(700 / 750 * 100vw);
        margin: 0 auto;
    }
    .footer-utility__link
    {
        font-size: 1rem;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .footer-utility__link--external:after
    {
        display: inline-block;

        width: 11px;
        height: 8px;
        margin-left: 8px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .footer-utility__link--internal:after
    {
        display: inline-block;

        width: 11px;
        height: 8px;
        margin-left: 8px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_s.png') 0 0 no-repeat;
        background-size: contain;
    }
    .footer-utility__item
    {
        margin-left: 20px; 
        padding-top: 25px;
    }
    .footer-utility__item--fb
    {
        width: 22px;
        height: auto;
        margin-top: 0;
        margin-right: 0;
        margin-left: 0;
    }
    .footer-utility__item:nth-of-type(2)
    {
        margin-left: 0;
    }
    .footer-utility a
    {
        text-decoration: none;
    }
    .spacer
    {
        width: 100%;
    }
}

.button-basic
{
    position: relative; 

    width: 350px;

    text-align: center;
}
.button-basic a
{
    font-size: 1.6rem;
    font-weight: bold;

    display: block;

    padding: 20px 8px;

    text-decoration: none; 

    color: #fff;
    background: #444;
}
.button-basic a:after
{
    position: absolute;
    top: 21px;
    right: 15px;

    display: inline-block;

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
    background-size: contain;
}
.button-basic--external a:after
{
    position: absolute;
    top: 24px;
    right: 15px;

    display: inline-block;

    width: 11px;
    height: 8px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_extenal_white.png') 0 0 no-repeat;
    background-size: contain;
}
.button-basic--center
{
    margin: 0 auto;
}
.button-basic--gutter-bottom
{
    margin-bottom: 20px;
}
.button-basic--contact-branch
{
    width: 343px;
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .button-basic
    {
        width: calc(670 / 750 * 100vw);
    }
    .button-basic a
    {
        font-size: 1.4rem; 

        padding: 20px 8px;
    }
    .button-basic a:after
    {
        position: absolute;
        top: 20px;
        right: 20px;

        display: inline-block;

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .button-basic--external a:after
    {
        position: absolute;
        top: 24px;
        right: 15px;

        display: inline-block;

        width: 11px;
        height: 8px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_extenal_white.png') 0 0 no-repeat;
        background-size: contain;
    }
    .button-basic--center
    {
        margin: 0 auto;
    }
    .button-basic--contact-branch
    {
        width: 100%;
        margin: 0 auto;
    }
}

.button-pink
{
    position: relative; 

    width: 350px;

    text-align: center;
}
.button-pink--small
{
    width: 283px;
}
.button-pink a
{
    font-size: 1.6rem;
    font-weight: bold;

    display: block;

    padding: 25px 8px;

    text-decoration: none; 

    color: #fff;
    background: #ff2367;
}
.button-pink a:after
{
    position: absolute;
    top: 25px;
    right: 20px;

    display: inline-block;

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
    background-size: contain;
}
.button-pink--center
{
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .button-pink
    {
        width: calc(670 / 750 * 100vw);
    }
    .button-pink--100
    {
        width: 100%;
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .button-pink a
    {
        font-size: 1.6rem; 

        padding: 28px 8px;
    }
    .button-pink a:after
    {
        position: absolute;
        top: 28px;
        right: 15px;

        display: inline-block;

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .button-pink--center
    {
        margin: 0 auto;
    }
}

.button-tel
{
    position: relative; 

    width: 350px;

    text-align: center;
}
.button-tel a
{
    font-weight: bold;

    display: block;

    padding: 17px 8px;

    text-decoration: none; 

    background: whitesmoke;
}
.button-tel__number
{
    font-size: 1.6rem;

    display: block;

    margin-top: 2px; 

    color: #444;
}
.button-tel--center
{
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .button-tel
    {
        width: 100%;
    }
    .button-tel a
    {
        font-size: 1.6rem; 
        font-weight: bold;

        display: block;

        padding: 20px 8px;

        text-decoration: none;

        background: whitesmoke;
    }
    .button-tel__number
    {
        font-size: 1.6rem;

        display: block;

        margin-top: 2px; 

        color: #444;
    }
    .button-tel--center
    {
        margin: 0 auto;
    }
}

.breadcrumb
{
    font-size: 1rem;
    line-height: 1.6; 

    margin: 30px 0 28px;
}
.breadcrumb__item
{
    display: inline-block;
    display: inline; 

    margin-left: 13px;
}
.breadcrumb__item a
{
    text-decoration: none;
}
.breadcrumb__item:first-of-type
{
    margin-left: 0;
}
.breadcrumb__item:first-of-type:before
{
    content: none;
}
.breadcrumb__item:before
{
    display: inline-block;

    margin-right: 13px;

    content: '>';

    color: #b3b3b3;
}
.breadcrumb__current
{
    color: #b3b3b3;
}

@media screen and (max-width: 767px)
{
    .breadcrumb
    {
        margin: calc(35 / 750 * 100vw) 0 calc(60 / 750 * 100vw);
    }
    .breadcrumb__item
    {
        display: inline; 

        margin-left: 10px;
    }
    .breadcrumb__item a
    {
        text-decoration: none;
    }
    .breadcrumb__item:first-of-type
    {
        margin-left: 0;
    }
    .breadcrumb__item:first-of-type:before
    {
        content: none;
    }
    .breadcrumb__item:before
    {
        display: inline-block;

        margin-right: 10px; 

        content: '>';
    }
}

.contents__lead
{
    margin-bottom: 55px;
}

@media screen and (max-width: 767px)
{
    .contents__lead
    {
        margin-bottom: calc(100 / 750 * 100vw);
    }
}

.wp-pagenavi
{
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;

    padding-top: 50px;

    text-align: center;

    border-top: 1px solid #bfbfbf;
}
.wp-pagenavi a
{
    text-decoration: none;
}
.wp-pagenavi .page
{
    padding: 0 12px;
}
.wp-pagenavi .current
{
    padding: 0 12px;

    text-decoration: underline;
}

.previouspostslink
{
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;

    margin-right: 20px;
}
.previouspostslink:before
{
    display: inline-block;

    width: 8px;
    height: 13px;
    margin-right: 10px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
    background-size: contain;
}

.nextpostslink
{
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;

    margin-left: 20px;
}
.nextpostslink:after
{
    display: inline-block;

    width: 8px;
    height: 13px;
    margin-left: 10px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .wp-pagenavi
    {
        font-size: 1.6rem; 

        position: relative;
    }
    .wp-pagenavi .page
    {
        padding: 0 15px;
    }
    .wp-pagenavi .current
    {
        padding: 0 15px;
    }
    .previouspostslink
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 1.6rem; 

        position: absolute;
        left: 0;

        margin-top: calc(80 / 750 * 100vw);
    }
    .previouspostslink:before
    {
        display: inline-block;

        width: 8px;
        height: 13px;
        margin-right: 10px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .nextpostslink
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 1.8rem; 

        position: absolute;
        right: 0;

        margin-top: calc(80 / 750 * 100vw);
    }
    .nextpostslink:after
    {
        display: inline-block;

        width: 8px;
        height: 13px;
        margin-left: 10px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.pagenation-02
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 60px;
    margin-bottom: 140px;
    padding-top: 40px;

    border-top: 1px solid #bfbfbf;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.pagenation-02__prev-link:before
{
    display: inline-block;

    width: 13px;
    height: 8px;
    margin-right: 8px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
    background-size: contain;
}
.pagenation-02__next-link:after
{
    display: inline-block;

    width: 8px;
    height: 13px;
    margin-left: 8px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .pagenation-02
    {
        line-height: 1.8; 

        display: block;

        margin-top: 60px;
        margin-bottom: 130px;
        padding-top: 35px;

        border-top: 1px solid #bfbfbf;
    }
    .pagenation-02__prev-link:before
    {
        display: inline-block;

        width: 13px;
        height: 8px;
        margin-right: 8px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .pagenation-02__next
    {
        margin-top: 20px; 

        text-align: right;
    }
    .pagenation-02__next-link:after
    {
        display: inline-block;

        width: 8px;
        height: 13px;
        margin-left: 8px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.heading-level2
{
    margin-bottom: 50px;
}
.heading-level2__en
{
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;

    letter-spacing: 5px;
}
.heading-level2__jp
{
    font-size: 1.4rem;
    font-weight: bold;

    display: block;

    letter-spacing: 2px;
}

.heading-level2__mid
{
    font-size: 3.0rem;
    font-weight: bold; 
    line-height: 1.5;

    margin-bottom: 30px;
}
.heading-level2__mid--sm
{
    font-size: 2.2rem;
}

.heading-level3
{
    font-size: 2.6rem;
    font-weight: bold; 

    margin-bottom: 28px;
}
.heading-level3--no-gutter-bottom
{
    margin-bottom: 18px;
}

.heading-level3--large
{
    font-size: 3rem;
    font-weight: bold; 

    margin-bottom: 28px;
}
.heading-level3--large--no-gutter-bottom
{
    margin-bottom: 18px;
}

.heading-level3--small
{
    font-size: 2rem;
    font-weight: bold;

    margin-bottom: 30px;

    text-align: center;
}
.heading-level3--small--no-gutter-bottom
{
    margin-bottom: 18px;
}

.heading-level3--sub
{
    font-size: 2.2rem;
}

.heading-level2-lower-directory__en
{
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;

    letter-spacing: 5px;
}

.heading-level2-lower-directory__en-2
{
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;

    letter-spacing: 5px;
}
.heading-level2-lower-directory__en-2:before
{
    font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 4rem; 

    display: inline-block;

    margin: 0 15px;

    content: '/';

    color: #cfcfcf;
}

.heading-level2-lower-directory__jp
{
    font-size: 1.4rem;
    font-weight: bold; 

    display: block;

    margin: 10px 0 50px;
}

@media screen and (max-width: 767px)
{
    .heading-level2
    {
        margin-bottom: calc(100 / 750 * 100vw);
    }
    .heading-level2__en
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 6rem;

        letter-spacing: 2px;
    }
    .heading-level2__jp
    {
        font-size: 1.4rem;

        letter-spacing: 2px;
    }
    .heading-level2__mid
    {
        font-size: 2.0rem;
        font-weight: bold; 
        line-height: 1.5;

        margin-bottom: 30px;
    }
    .heading-level2__mid--sm
    {
        font-size: 1.6rem;
    }
    .heading-level3
    {
        font-size: 2rem;

        margin-bottom: calc(70 / 750 * 100vw);
    }
    .heading-level3--no-gutter-bottom
    {
        margin-bottom: calc(30 / 750 * 100vw);
    }
    .heading-level3--large
    {
        font-size: 2rem;
        line-height: 1.6; 

        margin-bottom: 30px;
    }
    .heading-level3--large--no-gutter-bottom
    {
        margin-bottom: 18px;
    }
    .heading-level3--small
    {
        font-size: 1.6rem;

        margin-bottom: 20px;
    }
    .heading-level3--small--no-gutter-bottom
    {
        margin-bottom: 18px;
    }
    .heading-level3--sub
    {
        font-size: 1.6rem;
        line-height: 1.6;

        display: block;
    }
    .heading-level2-lower-directory__en
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 5rem;

        letter-spacing: 5px;
    }
    .heading-level2-lower-directory__en-2
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 3rem;

        letter-spacing: 3px;
    }
    .heading-level2-lower-directory__en-2:before
    {
        font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
        font-size: 3rem; 

        display: inline-block;

        margin: 0 9px;

        content: '/';

        color: #cfcfcf;
    }
    .heading-level2-lower-directory__jp
    {
        font-size: 1.4rem;

        margin: calc(30 / 750 * 100vw) 0 calc(110 / 750 * 100vw);
    }
}

.article__inner
{
    width: 655px;
    margin: 0 auto;
}
.article__inner p
{
    margin-bottom: 30px;
}

.article__lead
{
    line-height: 2; 

    margin-bottom: 60px;
    padding-bottom: 60px;

    border-bottom: 1px solid #bfbfbf;
}

.article__heading
{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5;

    margin-top: 60px; 
    margin-bottom: 40px;
}

.article__photo
{
    position: relative;
    left: 50%;

    width: 1080px;
    margin-top: 60px;
    margin-bottom: 60px; 

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
}

@media screen and (max-width: 767px)
{
    .article__inner
    {
        width: 100%;
        margin: 0 auto;
    }
    .article__inner p
    {
        margin-bottom: 25px;
    }
    .article__lead
    {
        line-height: 2; 

        margin-bottom: calc(110 / 750 * 100vw);
        padding-bottom: calc(50 / 750 * 100vw);
    }
    .article__heading
    {
        font-size: 2.2rem;
        font-weight: bold;

        margin-top: calc(110 / 750 * 100vw); 
        margin-bottom: calc(60 / 750 * 100vw);
    }
    .article__photo
    {
        position: relative;
        left: 50%;

        width: 100vw;
        margin-top: calc(110 / 750 * 100vw);
        margin-bottom: calc(110 / 750 * 100vw); 

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        text-align: center;
    }
}

.article-mv
{
    position: relative;

    margin-bottom: 60px;
}
.article-mv__pic img
{
    width: 100%;
}
.article-mv__pic:before
{
    position: absolute;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';

    background: #000;
    background: #444;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 68, 68, .595676)), to(rgba(68, 68, 68, 0)));
    background: linear-gradient(0deg, rgba(68, 68, 68, .595676) 0%, rgba(68, 68, 68, 0) 100%);
}
.article-mv__detail
{
    position: absolute;
    z-index: 2;
    bottom: 55px;
    left: 40px;

    color: #fff;
}
.article-mv__heading
{
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.3; 

    margin-bottom: 18px;
    padding-right: 15px;
}
.article-mv__company
{
    font-size: 1.6rem;
    font-weight: bold; 

    margin-bottom: 20px;
}
.article-mv__business
{
    font-size: 1rem;
}

@media screen and (max-width: 767px)
{
    .article-mv
    {
        position: relative;

        margin-bottom: calc(55 / 750 * 100vw);
    }
    .article-mv a
    {
        display: block;
    }
    .article-mv a:after
    {
        position: absolute;
        top: 50%;
        left: 50%;

        display: inline-block;

        width: calc(120 / 750 * 100vw);
        height: calc(120 / 750 * 100vw);

        content: '';
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); 

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/producer/icon_play.png') 0 0 no-repeat;
        background-size: contain;
    }
    .article-mv__pic
    {
        width: 100vw; 
        margin: 0 calc(50% - 50vw);
    }
    .article-mv__pic:before
    {
        content: none;
    }
    .article-mv__detail
    {
        position: relative;
        z-index: 2;
        bottom: inherit;
        left: inherit;

        margin-bottom: calc(110 / 750 * 100vw); 

        color: #444;
    }
    .article-mv__heading
    {
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.5;

        margin-bottom: calc(40 / 750 * 100vw); 
        padding-right: 0;
    }
    .article-mv__company
    {
        font-size: 1.6rem;

        margin-bottom: calc(36 / 750 * 100vw);
    }
    .article-mv__business
    {
        font-size: 1rem;
    }
}

.horizontal-image
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.horizontal-image__item
{
    width: 50%;
}
.horizontal-image__item img
{
    width: 100%;
}

@media screen and (max-width: 767px)
{
    .horizontal-image
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .horizontal-image__item
    {
        width: 100%;
    }
    .horizontal-image__item img
    {
        width: 100%;
    }
}

.lineup__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-bottom: 55px; 

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.lineup__item
{
    width: calc((100% - 80px) / 3);
    margin-top: 50px;
    margin-right: 40px;
}
.lineup__item:nth-child(3n)
{
    margin-right: 0;
}
.lineup__item:nth-child(-n+3)
{
    margin-top: 0;
}
.lineup__item a
{
    display: block;

    text-decoration: none;
}

.lineup__ttl
{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.5; 

    margin-top: 25px;
    margin-bottom: 20px;
}

.lineup__company
{
    line-height: 1.6;
}

@media screen and (max-width: 767px)
{
    .lineup__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        padding-bottom: calc(80 / 750 * 100vw); 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .lineup__item
    {
        width: 100%;
        margin-top: calc(100 / 750 * 100vw);
        margin-right: 0;
    }
    .lineup__item:nth-child(3n)
    {
        margin-right: 0;
    }
    .lineup__item:nth-child(-n+3)
    {
        margin-top: calc(100 / 750 * 100vw);
    }
    .lineup__item:first-of-type
    {
        margin-top: 0;
    }
    .lineup__ttl
    {
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1.5; 

        margin-top: calc(40 / 750 * 100vw);
        margin-bottom: calc(35 / 750 * 100vw);
    }
    .lineup__company
    {
        line-height: 1.6;
    }
}

.craftsman-lineup__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-bottom: 55px; 

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.craftsman-lineup__item
{
    width: calc((100% - 160px) / 5);
    margin-top: 50px;
    margin-right: 40px;
}
.craftsman-lineup__item:nth-child(5n)
{
    margin-right: 0;
}
.craftsman-lineup__item:nth-child(-n+5)
{
    margin-top: 0;
}
.craftsman-lineup__item a
{
    display: block;

    cursor: pointer; 
    text-decoration: none;
}

.craftsman-lineup__pic-circle
{
    width: 150px;
    margin: 0 auto;
}
.craftsman-lineup__pic-circle img
{
    width: 150px;
    height: 150px;

    border-radius: 50%; 

    object-fit: cover;
}

.craftsman-lineup__ttl
{
    font-weight: bold;

    margin-top: 8px;

    text-align: center;
}

.craftsman-lineup__position
{
    font-size: 1.0rem;

    text-align: center; 

    color: #b3b3b3;
}

@media screen and (max-width: 767px)
{
    .craftsman-lineup__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        padding-bottom: calc(100 / 750 * 100vw); 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .craftsman-lineup__item
    {
        width: calc(300 / 750 * 100vw);
        margin-top: calc(70 / 750 * 100vw);
        margin-right: calc(40 / 750 * 100vw);
    }
    .craftsman-lineup__item:nth-child(5n)
    {
        margin-right: calc(40 / 750 * 100vw);
    }
    .craftsman-lineup__item:nth-child(-n+5)
    {
        margin-top: calc(70 / 750 * 100vw);
    }
    .craftsman-lineup__item:nth-child(2n)
    {
        margin-right: 0;
    }
    .craftsman-lineup__item:nth-child(-n+2)
    {
        margin-top: 0;
    }
    .craftsman-lineup__item a
    {
        display: block;

        text-decoration: none;
    }
    .craftsman-lineup__pic-circle
    {
        width: calc(150 / 750 * 100vw);
        margin: 0 auto;
    }
    .craftsman-lineup__pic-circle img
    {
        width: calc(150 / 750 * 100vw);
        height: calc(150 / 750 * 100vw);

        border-radius: 50%; 

        object-fit: cover;
    }
    .craftsman-lineup__ttl
    {
        font-size: 1.6rem;

        margin-top: 14px;
    }
}

.modal-detail
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-y: scroll;

    width: 1000px;
    max-height: 500px;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.modal-detail__slider
{
    position: absolute !important;
    top: 0;
    left: 0; 

    width: 500px;
}
.modal-detail__text
{
    width: 420px;
    margin-right: 30px;
    margin-left: 530px; 

    text-align: left;
}
.modal-detail__text p
{
    padding-bottom: 30px;
}
.modal-detail__ttl-wrap
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.modal-detail__ttl
{
    font-size: 2.2rem;
    font-weight: bold;

    margin-bottom: 25px; 
    padding-top: 40px;
}
.modal-detail__url
{
    font-size: 1.2rem; 

    padding-top: 40px;
}
.modal-detail__url:after
{
    display: inline-block;

    width: 11px;
    height: 8px;
    margin-left: 10px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .modal-detail
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-y: scroll;
            flex-direction: column; 

        width: calc(670 / 750 * 100vw);
        max-height: 500px;

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .modal-detail__slider
    {
        position: relative !important; 

        width: 100%;
    }
    .modal-detail__text
    {
        width: calc(560 / 750 * 100vw);
        margin: 0 auto;
    }
    .modal-detail__text p
    {
        padding-bottom: 30px;
    }
    .modal-detail__ttl-wrap
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .modal-detail__ttl
    {
        font-size: 2.2rem;
        font-weight: bold;

        margin-bottom: 25px; 
        padding-top: 40px;
    }
    .modal-detail__url
    {
        font-size: 1.2rem; 

        padding-top: 40px;
    }
    .modal-detail__url:after
    {
        display: inline-block;

        width: 11px;
        height: 8px;
        margin-left: 10px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.producer-lineup__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding-bottom: 55px; 

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.producer-lineup__item
{
    width: calc((100% - 80px) / 3);
    margin-top: 50px;
    margin-right: 40px;
}
.producer-lineup__item:nth-child(3n)
{
    margin-right: 0;
}
.producer-lineup__item:nth-child(-n+3)
{
    margin-top: 0;
}

.producer-lineup__pic-circle
{
    width: 150px;
    margin: 0 auto;
}
.producer-lineup__pic-circle img
{
    width: 150px;
    height: 150px;

    border-radius: 50%; 

    object-fit: cover;
}

.producer-lineup__ttl
{
    font-size: 2.2rem;
    font-weight: bold;

    margin-top: 18px;

    text-align: center;
}

.producer-lineup__position
{
    font-size: 1.2rem;

    margin-bottom: 28px; 

    text-align: center;

    color: #b3b3b3;
}

.producer-lineup__lead
{
    margin-bottom: 20px;
}

.producer-lineup__heading
{
    font-family: 'Bebas Neue', cursive;
    font-size: 1.6rem;

    margin-bottom: 28px;

    text-align: center;
    letter-spacing: 1px; 

    color: #999;
}

.producer-lineup__button a
{
    position: relative;

    display: block;

    text-decoration: none;

    background: #fff;
    -webkit-box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
            box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
}
.producer-lineup__button a:after
{
    position: absolute;
    top: 38px;
    right: 17px;

    display: inline-block;

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_grey.svg') 0 0 no-repeat;
    background-size: contain;
}

.producer-lineup__button-inner
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.producer-lineup__button-pic
{
    width: 160px;
}
.producer-lineup__button-pic img
{
    vertical-align: bottom;
}

.producer-lineup__button-text
{
    font-size: 1.2rem;
    font-weight: bold;

    width: calc(100% - 160px);
    padding: 8px 30px 8px 12px;
}

@media screen and (max-width: 767px)
{
    .producer-lineup__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        padding-bottom: calc(80 / 750 * 100vw); 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .producer-lineup__item
    {
        width: 100%;
        margin-top: calc(100 / 750 * 100vw);
        margin-right: 0;
    }
    .producer-lineup__item:nth-child(3n)
    {
        margin-right: 0;
    }
    .producer-lineup__item:nth-child(-n+3)
    {
        margin-top: calc(100 / 750 * 100vw);
    }
    .producer-lineup__item:first-of-type
    {
        margin-top: 0;
    }
    .producer-lineup__pic-circle
    {
        width: calc(300 / 750 * 100vw);
        margin: 0 auto;
    }
    .producer-lineup__pic-circle img
    {
        width: calc(300 / 750 * 100vw);
        height: calc(300 / 750 * 100vw);

        border-radius: 50%; 

        object-fit: cover;
    }
    .producer-lineup__ttl
    {
        font-size: 1.8rem;

        margin-top: calc(38 / 750 * 100vw);
    }
    .producer-lineup__position
    {
        font-size: 1.0rem;

        margin-bottom: calc(40 / 750 * 100vw);
    }
    .producer-lineup__lead
    {
        margin-bottom: calc(34 / 750 * 100vw);
    }
    .producer-lineup__heading
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 1.6rem;

        margin-bottom: calc(36 / 750 * 100vw);

        letter-spacing: 1px;
    }
    .producer-lineup__button a
    {
        position: relative;

        display: block;

        text-decoration: none;

        background: #fff;
        -webkit-box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
                box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
    }
    .producer-lineup__button a:after
    {
        position: absolute;
        top: 38px;
        right: 17px;

        display: inline-block;

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_grey.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .producer-lineup__button-inner
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .producer-lineup__button-pic
    {
        width: 160px;
    }
    .producer-lineup__button-pic img
    {
        vertical-align: bottom;
    }
    .producer-lineup__button-text
    {
        font-size: 1.2rem;
        font-weight: bold;

        width: calc(100% - 160px);
        padding: 8px 30px 8px 12px;
    }
}

.producer-mv
{
    position: relative;

    margin-bottom: 60px;
}
.producer-mv a
{
    display: block;
}
.producer-mv a:after
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: inline-block;

    width: 60px;
    height: 60px;

    content: '';
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); 

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/producer/icon_play.png') 0 0 no-repeat;
    background-size: contain;
}
.producer-mv__pic:before
{
    position: absolute;

    display: inline-block;

    width: 100%;
    height: 100%;

    content: '';

    background: #000;
    background: #444;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(68, 68, 68, .595676)), to(rgba(68, 68, 68, 0)));
    background: linear-gradient(0deg, rgba(68, 68, 68, .595676) 0%, rgba(68, 68, 68, 0) 100%);
}
.producer-mv__detail
{
    position: absolute;
    z-index: 2;
    bottom: 55px;
    left: 40px;

    color: #fff;
}
.producer-mv__ttl
{
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;

    margin-bottom: 27px; 

    letter-spacing: 3px;
}
.producer-mv__heading
{
    font-size: 3rem;
    font-weight: bold;

    margin-bottom: 18px; 
    padding-right: 15px;
}
.producer-mv__name
{
    font-size: 1.6rem;

    margin-bottom: 20px;
}
.producer-mv__company
{
    font-size: 1rem;
}

@media screen and (max-width: 767px)
{
    .producer-mv
    {
        position: relative;

        margin-bottom: calc(55 / 750 * 100vw);
    }
    .producer-mv a
    {
        display: block;
    }
    .producer-mv a:after
    {
        position: absolute;
        top: 50%;
        left: 50%;

        display: inline-block;

        width: calc(120 / 750 * 100vw);
        height: calc(120 / 750 * 100vw);

        content: '';
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); 

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/producer/icon_play.png') 0 0 no-repeat;
        background-size: contain;
    }
    .producer-mv__pic
    {
        width: 100vw; 
        margin: 0 calc(50% - 50vw);
    }
    .producer-mv__pic:before
    {
        content: none;
    }
    .producer-mv__detail
    {
        position: relative;
        z-index: 2;
        bottom: inherit;
        left: inherit;

        margin-bottom: calc(110 / 750 * 100vw); 

        color: #444;
    }
    .producer-mv__ttl
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 3rem;

        margin-bottom: calc(50 / 750 * 100vw); 

        letter-spacing: 3px;
    }
    .producer-mv__heading
    {
        font-size: 2rem;
        font-weight: bold;
        line-height: 1.5;

        margin-bottom: calc(40 / 750 * 100vw); 
        padding-right: 0;
    }
    .producer-mv__name
    {
        font-size: 1.6rem;

        margin-bottom: calc(36 / 750 * 100vw);
    }
    .producer-mv__company
    {
        font-size: 1rem;
    }
}

.producer-article-profile
{
    margin-bottom: 60px; 

    background: #f1f1f1;
}
.producer-article-profile__inner
{
    width: 655px;
    margin: 0 auto;
    padding: 40px 0;
}
.producer-article-profile__pic
{
    float: left;

    width: 150px;
    height: 150px; 
    margin-right: 20px;
}
.producer-article-profile__pic img
{
    width: 150px;
    height: 150px;

    border-radius: 50%; 

    object-fit: cover;
}
.producer-article-profile__text
{
    float: left;
    overflow: hidden;

    width: calc(100% - 170px);
}
.producer-article-profile p
{
    font-size: 1.2rem;

    overflow: hidden;

    margin-bottom: 12px;
}
.producer-article-profile__name
{
    font-weight: bold;

    margin-bottom: 12px;
}
.producer-article-profile__company
{
    font-size: 1rem;

    overflow: hidden;

    margin-bottom: 12px; 

    color: #b3b3b3;
}
.producer-article-profile__note
{
    font-size: 1rem;
    line-height: 2;

    margin-bottom: 12px;
    margin-left: 170px; 

    color: #b3b3b3;
}
.producer-article-profile__url
{
    font-size: 1.2rem;

    margin-left: 170px;
}
.producer-article-profile__url:after
{
    display: inline-block;

    width: 11px;
    height: 8px;
    margin-left: 8px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .producer-article-profile
    {
        margin-bottom: calc(110 / 750 * 100vw);
        padding-bottom: 0; 

        background: #f1f1f1;
    }
    .producer-article-profile__inner
    {
        width: 100%;
        margin: 0 auto;
        padding: 15px;
    }
    .producer-article-profile__pic
    {
        width: 79px;
        height: 79px;
    }
    .producer-article-profile__pic img
    {
        width: 79px;
        height: 79px;

        border-radius: 50%; 

        object-fit: cover;
    }
    .producer-article-profile__text
    {
        width: calc(100% - 79px);
    }
    .producer-article-profile p
    {
        font-size: 1.2rem;

        clear: both;

        width: 100%;
        margin-bottom: 12px;
        padding-top: 20px;
    }
    .producer-article-profile__name
    {
        font-weight: bold;

        margin-top: 20px; 
        margin-bottom: 12px;
    }
    .producer-article-profile__company
    {
        font-size: 1rem;

        margin-bottom: 12px; 

        color: #b3b3b3;
    }
    .producer-article-profile__note
    {
        font-size: 1rem;
        line-height: 2;

        margin-bottom: 12px;
        margin-left: 0; 

        color: #b3b3b3;
    }
    .producer-article-profile__url
    {
        margin-left: 0;
    }
}

.embed-container
{
    position: relative;

    width: 100%;
    padding-top: 56.25%;
}

.embed-container iframe
{
    position: absolute;
    top: 0;
    right: 0;

    width: 100% !important;
    height: 100% !important;
}

.gift-detail
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    padding: 37px; 

    background: #f5f5f5;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.gift-detail__text
{
    width: 830px;
}
.gift-detail__logo
{
    margin-top: -70px;
}
.gift-detail__logo img
{
    -webkit-box-shadow: -1px 1px 6px -3px rgba(0, 0, 0, .75);
            box-shadow: -1px 1px 6px -3px rgba(0, 0, 0, .75);
}
.gift-detail__ttl
{
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;

    margin-bottom: 30px;
}
.gift-detail__description
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 38px;
}
.gift-detail__description:last-of-type
{
    margin-bottom: 0;
}
.gift-detail__description-item
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.gift-detail__description-ttl
{
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    line-height: 2; 

    margin-right: 12px;

    color: #999;
}
.gift-detail__description-txt
{
    font-size: 1.4rem;
    line-height: 2; 

    margin-right: 68px;
}

@media screen and (max-width: 767px)
{
    .gift-detail
    {
        position: relative;

        display: block;

        padding: calc(55 / 750 * 100vw) calc(40 / 750 * 100vw); 

        background: #f5f5f5;
    }
    .gift-detail__text
    {
        width: 100%;
    }
    .gift-detail__logo
    {
        position: absolute;
        top: calc((90 / 750 * 100vw) * -1);
        right: calc(45 / 750 * 100vw);

        width: 26.66667vw;
        margin-top: 0;
    }
    .gift-detail__logo img
    {
        -webkit-box-shadow: -1px 1px 6px -3px rgba(0, 0, 0, .75);
                box-shadow: -1px 1px 6px -3px rgba(0, 0, 0, .75);
    }
    .gift-detail__ttl
    {
        font-size: 2rem;

        margin-bottom: calc(40 / 750 * 100vw);
    }
    .gift-detail__description
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: 0; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .gift-detail__description:last-of-type
    {
        margin-bottom: 0;
    }
    .gift-detail__description-item
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        margin-bottom: calc(30 / 750 * 100vw);
    }
    .gift-detail__description-ttl
    {
        font-size: 1.4rem;

        margin-right: 11px;
    }
    .gift-detail__description-txt
    {
        font-size: 1.4rem;

        margin-right: 0;
    }
}

.horizontal-step-wrap
{
    margin-bottom: 40px;
}

.horizontal-step-pic-left
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.horizontal-step-pic-left__pic
{
    width: 312px;
}
.horizontal-step-pic-left__text
{
    position: relative;
    z-index: -1;

    width: 372px;
    min-height: 312px;
    margin-top: 30px;
    margin-left: -30px; 
    padding: 60px 30px 30px 60px;

    background: #f5f5f5;
}
.horizontal-step-pic-left__ttl
{
    font-weight: bold;
    line-height: 2;

    margin-bottom: 30px;
}

.horizontal-step-pic-right
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.horizontal-step-pic-right__pic
{
    width: 312px;
    margin-left: -30px; 

    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.horizontal-step-pic-right__text
{
    position: relative;
    z-index: -1;

    width: 372px;
    min-height: 312px;
    margin-top: 30px;
    margin-left: 0; 
    padding: 60px 60px 30px 30px;

    background: #f5f5f5;
}
.horizontal-step-pic-right__ttl
{
    font-weight: bold;
    line-height: 2;

    margin-bottom: 30px;
}

.notation
{
    font-size: 1.0rem;
    line-height: 2; 

    margin-top: 20px;
    margin-bottom: 30px;

    color: #b2b2b2;
}

@media screen and (max-width: 767px)
{
    .horizontal-step-wrap
    {
        margin-bottom: calc(80 / 750 * 100vw);
    }
    .horizontal-step-pic-left
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        margin-bottom: calc(30 / 750 * 100vw);
    }
    .horizontal-step-pic-left__pic
    {
        width: calc(312 / 750 * 100vw);
    }
    .horizontal-step-pic-left__text
    {
        width: calc(388 / 750 * 100vw);
        min-height: calc(312 / 750 * 100vw);
        margin-top: calc(30 / 750 * 100vw);
        margin-left: calc((30 / 750 * 100vw) * -1); 
        padding: calc(80 / 750 * 100vw) calc(60 / 750 * 100vw) calc(80 / 750 * 100vw) calc(80 / 750 * 100vw);
    }
    .horizontal-step-pic-left__ttl
    {
        margin-bottom: 0;
    }
    .horizontal-step-pic-right
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        margin-bottom: calc(30 / 750 * 100vw);
    }
    .horizontal-step-pic-right__pic
    {
        width: calc(312 / 750 * 100vw);
        margin-left: calc((30 / 750 * 100vw) * -1);
    }
    .horizontal-step-pic-right__text
    {
        width: calc(388 / 750 * 100vw);
        min-height: calc(312 / 750 * 100vw);
        margin-top: calc(30 / 750 * 100vw);
        margin-left: 0; 
        padding: calc(80 / 750 * 100vw) calc(80 / 750 * 100vw) calc(80 / 750 * 100vw) calc(60 / 750 * 100vw);
    }
    .horizontal-step-pic-right__ttl
    {
        margin-bottom: 0;
    }
    .notation
    {
        font-size: 1.0rem;

        margin-bottom: 30px; 

        color: #b2b2b2;
    }
}

.news__list
{
    padding-bottom: 55px;
}

.news__item
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 25px;
}
.news__item a
{
    text-decoration: none;
}

.news__date
{
    font-size: 1.1rem;
    line-height: 1.8;

    padding-top: 5px; 
    padding-right: 30px;

    color: #b3b3b3;
}

.news__ttl
{
    line-height: 1.8;
}

@media screen and (max-width: 767px)
{
    .news__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        padding-bottom: calc(80 / 750 * 100vw); 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .news__item
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: 30px; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .news__item a
    {
        text-decoration: none;
    }
    .news__date
    {
        font-size: 1.1rem;
        line-height: 1.8;

        margin-bottom: 15px; 
        padding-top: 0;
        padding-right: 0;
    }
    .news__ttl
    {
        line-height: 1.8;
    }
}

.heading-news-article
{
    margin-bottom: 55px;
    padding: 40px; 

    background: #f1f1f1;
}
.heading-news-article__date
{
    font-size: 1.1rem;

    display: block; 

    margin-bottom: 17px;

    color: #b3b3b3;
}
.heading-news-article__heading
{
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}

strong
{
    font-weight: bold;
}

.news-article ul li,
.producer-article ul li
{
    line-height: 2; 

    margin-bottom: 30px;
    margin-left: 20px;

    list-style-type: disc;
}
.news-article ul li ul,
.producer-article ul li ul
{
    margin-top: 30px;
}

.news-article ol li,
.producer-article ol li
{
    line-height: 2; 

    margin-bottom: 30px;
    margin-left: 20px;

    list-style-type: decimal;
}
.news-article ol li ul,
.producer-article ol li ul
{
    margin-top: 30px;
}

@media screen and (max-width: 767px)
{
    .heading-news-article
    {
        width: 100vw;
        margin-bottom: calc(110 / 750 * 100vw);
        margin-left: -20px;
        padding: calc(20 / 750 * 100vw);
    }
    .heading-news-article__date
    {
        font-size: 1.1rem;

        display: block; 

        margin-bottom: 17px;
    }
    .heading-news-article__heading
    {
        font-size: 2rem;
        line-height: 1.5;
    }
    strong
    {
        font-weight: bold;
    }
    .news-article ul li
    {
        line-height: 2; 

        margin-bottom: 30px;
        margin-left: 20px;

        list-style-type: disc;
    }
    .news-article ul li ul
    {
        margin-top: 30px;
    }
    .news-article ol li
    {
        line-height: 2; 

        margin-bottom: 30px;
        margin-left: 20px;

        list-style-type: decimal;
    }
    .news-article ol li ul
    {
        margin-top: 30px;
    }
}

.wp-block-embed__wrapper
{
    position: relative;

    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed__wrapper iframe
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100% !important;
    height: 100% !important;
}

input[type='text'],
input[type='email']
{
    padding: 0;

    border: none;
    border-radius: 0;
    outline: none;
    background: none;
}

select
{
    border: none;
    outline: none;
    background: transparent; 

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

textarea
{
    padding: 0;

    resize: none;

    border: 0;
    outline: none;
    background: transparent; 

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

button,
input[type='submit']
{
    border: none;
    outline: none;
}

@media screen and (max-width: 767px)
{
    input[type='text'],
    input[type='email'],
    select,
    textarea,
    button,
    input
    {
        font-size: 1.6rem;
    }
    /* iOSでのデフォルトスタイルをリセット */
    input[type='submit'],
    input[type='button']
    {
        -webkit-box-sizing: content-box;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; 

        border: none;
        border-radius: 0;

        -webkit-appearance: button;
           -moz-appearance: button;
                appearance: button;
    }
    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;
    }
}

::-webkit-input-placeholder
{
    font-size: 1.6rem; 

    color: #b3b3b3;
}

:-ms-input-placeholder
{
    font-size: 1.6rem; 

    color: #b3b3b3;
}

::placeholder
{
    font-size: 1.6rem; 

    color: #b3b3b3;
}

.contact-form
{
    margin-bottom: 40px; 
    padding: 35px 40px;

    background: rgba(68, 68, 68, .05);
}
.contact-form__wrap
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contact-form__wrap input
{
    width: 100%;
    padding: 16px;

    border-radius: 5px; 
    background: #fff;
}
.contact-form__wrap select
{
    position: relative; 

    width: 300px;
    padding: 16px;

    border-radius: 5px;
    background: #fff;
}
.contact-form__wrap textarea
{
    line-height: 1.6; 

    width: 100%;
    min-height: 320px;
    padding: 16px;

    border-radius: 5px;
    background: #fff;
}
.contact-form__left
{
    width: 340px;
    padding-right: 40px;

    border-right: 1px solid #dfdfdf;
}
.contact-form__right
{
    width: calc(100% - 340px);
    padding-left: 40px;
}
.contact-form__ttl
{
    margin-bottom: 20px;
}
.contact-form__ttl--sm
{
    font-size: 1.2rem;
}
.contact-form__input-wrap
{
    font-weight: bold; 

    margin-bottom: 30px;
}

@media screen and (max-width: 767px)
{
    .contact-form
    {
        width: 100vw; 
        margin: 0 calc(50% - 50vw) 40px;
        padding: 35px 20px;
    }
    .contact-form__wrap
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .contact-form__wrap input
    {
        width: 100%;
        padding: 16px;

        border-radius: 5px;
    }
    .contact-form__wrap select
    {
        position: relative; 

        width: 100%;
        padding: 16px;

        border-radius: 5px;
        background: #fff;
    }
    .contact-form__wrap textarea
    {
        width: 100%;
        min-height: 220px; 
        padding: 16px;

        border-radius: 5px;
    }
    .contact-form__left
    {
        width: 100%;
        padding-right: 0;

        border-right: none;
    }
    .contact-form__right
    {
        width: 100%;
        padding-left: 0;
    }
    .contact-form__ttl
    {
        margin-bottom: 15px;
    }
    .contact-form__ttl--sm
    {
        font-size: 1.2rem;
    }
}

.select-wrap
{
    position: relative;

    width: 300px;
}
.select-wrap:after
{
    position: absolute;
    top: 20px;
    right: 15px;

    display: inline-block; 

    width: 13px;
    height: 8px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_arrow_down.png') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .select-wrap
    {
        width: 100%;
    }
    .select-wrap:after
    {
        position: absolute;
        top: 20px;
        right: 15px;

        display: inline-block; 

        width: 13px;
        height: 8px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_arrow_down.png') 0 0 no-repeat;
        background-size: contain;
    }
}

.horizotal-thirds
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.horizotal-thirds__item
{
    width: calc(100% - 80px); 
    margin-right: 40px;
}
.horizotal-thirds__item:last-of-type
{
    margin-right: 0;
}

@media screen and (max-width: 767px)
{
    .horizotal-thirds
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .horizotal-thirds__item
    {
        width: 100%; 
        margin-right: 0;
    }
    .horizotal-thirds__item:last-of-type
    {
        margin-right: 0;
    }
}

.horizotal-halves
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.horizotal-halves__item
{
    width: calc(100% - 80px); 
    margin-right: 40px;
}
.horizotal-halves__item:last-of-type
{
    margin-right: 0;
}

@media screen and (max-width: 767px)
{
    .horizotal-halves
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .horizotal-halves__item
    {
        width: 100%; 
        margin-right: 0;
        margin-bottom: 20px;
    }
    .horizotal-halves__item:last-of-type
    {
        margin-right: 0;
    }
}

.date
{
    position: relative;
}
.date:after
{
    position: absolute;
    top: 15px;
    right: 15px;

    display: inline-block; 

    width: 16px;
    height: 16px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_calendar.png') 0 0 no-repeat;
    background-size: contain;
}

.require
{
    font-size: 1.0rem;

    display: inline-block;

    margin-left: 10px; 
    padding: 5px 10px;

    color: #fff;
    border-radius: 20px;
    background: #b3b3b3;
}

.submit-button
{
    font-weight: bold;

    position: relative;

    display: block; 

    width: 343px;
    margin: 0 auto;
    padding: 15px 10px;

    color: #fff;
    background: #444;
}

.back-button
{
    font-weight: bold;

    position: relative;

    display: block;

    width: 343px;
    margin: 0 auto 20px;
    padding: 15px 10px;

    border: 1px solid #444 !important;
    background: #fff !important;
}

.submit-button-wrap
{
    position: relative; 

    width: 343px;
    margin: 0 auto 30px;
}
.submit-button-wrap:after
{
    position: absolute;
    top: 20px;
    right: 15px;

    display: inline-block; 

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
    background-size: contain;
}

.back-button-wrap
{
    position: relative; 

    width: 343px;
    margin: 0 auto 130px;
}
.back-button-wrap:after
{
    position: absolute;
    top: 20px;
    left: 15px;

    display: inline-block; 

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .submit-button
    {
        font-weight: bold;

        position: relative;

        display: block; 

        width: calc(670 / 750 * 100vw);
        margin: 0 auto;
        padding: 15px 10px;

        color: #fff;
        background: #444;
    }
    .back-button
    {
        font-weight: bold;

        position: relative;

        display: block;

        width: calc(670 / 750 * 100vw);
        margin: 0 auto 20px;
        padding: 15px 10px;

        border: 1px solid #444 !important;
        background: #fff !important;
    }
    .submit-button-wrap
    {
        position: relative; 

        width: 100%;
        margin: 0 auto 20px;
    }
    .submit-button-wrap:after
    {
        position: absolute;
        top: 20px;
        right: 15px;

        display: inline-block; 

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .back-button-wrap
    {
        position: relative; 

        width: 100%;
        margin: 0 auto 130px;
    }
    .back-button-wrap:after
    {
        position: absolute;
        top: 20px;
        left: 15px;

        display: inline-block; 

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_prev.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.mw_wp_form_input .back-button-wrap:after
{
    content: none;
}

.mw_wp_form_confirm .date:after,
.mw_wp_form_confirm .select-wrap:after
{
    content: none;
}

.mw_wp_form_confirm .mail-confirm
{
    display: none;
}

.error
{
    margin-top: 12px;
}

.mw_wp_form_complete
{
    font-size: 2.6rem;

    margin-top: 20px;
    padding-bottom: 150px; 

    text-align: center;
}

.contact-top-branch
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 140px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-top-branch__item
{
    width: calc((100% - 40px) / 2);
    padding: 40px 85px; 

    background: rgba(68, 68, 68, .05);
}
.contact-top-branch__title
{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4; 

    margin-bottom: 25px;

    text-align: center;
}
.contact-top-branch__list
{
    line-height: 2;

    margin-bottom: 30px;
    margin-left: 80px;
}
.contact-top-branch__list li
{
    list-style-type: disc;
}

@media screen and (max-width: 767px)
{
    .contact-top-branch
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: 150px; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .contact-top-branch__item
    {
        width: 100%;
        margin-bottom: 20px; 
        padding: 40px 20px;
    }
    .contact-top-branch__item:last-child
    {
        margin-bottom: 0;
    }
    .contact-top-branch__title
    {
        font-size: 1.8rem;

        margin-bottom: 20px;
    }
    .contact-top-branch__list
    {
        margin-bottom: 18px;
        margin-left: 50px;
    }
}

.utility
{
    margin-bottom: 140px;
    padding-top: 50px; 

    border-top: 1px solid #bfbfbf;
}
.utility__lead
{
    margin-bottom: 60px;
}
.utility__heading
{
    font-size: 2.2rem; 
    font-weight: bold;

    margin: 60px 0 40px;
}
.utility__heading--sm
{
    font-size: 1.6rem; 
    font-weight: bold;

    margin: 60px 0 40px;
}
.utility p
{
    margin-bottom: 30px;
}
.utility ol
{
    margin-bottom: 30px;
}
.utility ol li
{
    line-height: 2; 

    margin-bottom: 25px;
    margin-left: 28px;

    list-style-type: decimal;
}
.utility ul.indent li
{
    line-height: 2; 

    margin-bottom: 25px;
    padding-left: 2em;

    text-indent: -2em;
}
.utility ol li ul.indent
{
    margin-top: 15px;
}
.utility ol li ul.indent li
{
    padding-left: 0; 

    list-style-type: none;
}
.utility ul.disc li
{
    line-height: 2;

    margin-bottom: 20px;
    margin-left: 20px; 

    list-style-type: disc;
}

@media screen and (max-width: 767px)
{
    .utility
    {
        margin-bottom: 120px;
        padding-top: 55px;
    }
    .utility__lead
    {
        margin-bottom: 50px;
    }
    .utility__heading
    {
        font-size: 1.6rem; 
        font-weight: bold;

        margin: 50px 0 25px;
    }
    .utility__heading--sm
    {
        font-size: 1.4rem; 
        font-weight: bold;

        margin: 60px 0 40px;
    }
    .utility p
    {
        margin-bottom: 25px;
    }
    .utility ol
    {
        margin-bottom: 25px;
    }
    .utility ol li
    {
        line-height: 2; 

        margin-bottom: 20px;
        margin-left: 20px;

        list-style-type: decimal;
    }
    .utility ul.indent li
    {
        line-height: 2; 

        margin-bottom: 20px;
        padding-left: 2em;

        text-indent: -2em;
    }
    .utility ol li ul.indent
    {
        margin-top: 15px;
    }
    .utility ol li ul.indent li
    {
        padding-left: 0; 

        list-style-type: none;
    }
}

.mv
{
    padding-bottom: 120px;
}
.mv__lead
{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2; 

    margin-bottom: 50px;
    padding-top: 50px;

    text-align: center;
    letter-spacing: 4px;
}
.mv__fluid
{
    position: relative;
    left: 50%;

    width: 100vw;
    padding: 30px 30px 0 30px; 

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.mv__fluid img
{
    width: 100%;
}
.mv__logo
{
    position: absolute;
    left: 50%;

    display: inline;

    width: 195px;
    margin: 0 auto 55px;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.gutter-nagative
{
    margin-top: -30px;
}

@media screen and (max-width: 1140px)
{
    .mv__fluid
    {
        position: relative;
        left: 50%;

        width: 1140px;
        padding: 30px 30px 0 30px; 

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .gutter-nagative
    {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px)
{
    .mv
    {
        padding-bottom: calc(320 / 750 * 100vw);
    }
    .mv__lead
    {
        font-size: 1.6rem; 

        margin-bottom: 0;
        padding-top: calc(120 / 750 * 100vw);
    }
    .mv__fluid
    {
        position: relative;
        left: 50%;

        width: 100vw;
        margin-bottom: calc(50 / 750 *100vw); 
        padding: 0;

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .mv__logo
    {
        position: relative;

        display: inline-block;

        width: calc(350 / 750 * 100vw);
        margin: calc(70 / 750 * 100vw) auto calc(50 / 750 * 100vw);
    }
    .gutter-nagative
    {
        margin-top: 0;
    }
}

.top-content
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 170px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.top-content__text
{
    width: 380px;
}
.top-content__text p
{
    margin-bottom: 30px;
}
.top-content__text p:last-of-type
{
    margin-bottom: 60px;
}
.top-content__photos
{
    position: relative; 

    width: 650px;
}
.top-content__lead
{
    margin-bottom: 20px;
}
.top-content__link
{
    display: block;
}
.top-content__items
{
    position: relative;

    width: 650px;
    min-height: 650px;
    padding: 40px; 

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .top-content
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        margin-bottom: calc(400 / 750 * 100vw);

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .top-content__text
    {
        width: 100%;
        margin-bottom: calc(100 / 750 * 100vw);
    }
    .top-content__text p
    {
        margin-bottom: 15px;
    }
    .top-content__photos
    {
        width: 100%;
    }
    .top-content__lead
    {
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .top-content__link
    {
        display: block;
    }
    .top-content__linkbox
    {
        position: relative;
    }
    .top-content__linkbox a
    {
        position: absolute;
        z-index: 10; 
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;
    }
    .top-content__items
    {
        width: 100vw;
        min-height: calc(800 / 750 *100vw);
        margin-left: -20px; 
        padding: 35px 0;
    }
}

.service-lineup__wrap
{
    position: absolute;
    top: 100px;
    left: 40px;
}

.service-lineup__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 570px;
    margin-bottom: 20px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.service-lineup__item
{
    width: calc((100% - 3px) / 4); 
    margin-top: 1px;
}
.service-lineup__item:nth-child(-n+4)
{
    margin-top: 0;
}
.service-lineup__item a
{
    display: block;

    text-decoration: none;
}

.service-lineup__pic-circle
{
    width: 150px;
    margin: 0 auto;
}
.service-lineup__pic-circle img
{
    width: 150px;
    height: 150px;

    border-radius: 50%; 

    object-fit: cover;
}

.service-lineup__ttl
{
    font-size: 1.2rem;
    font-weight: bold;

    margin-top: 8px;

    text-align: center;
}

.service-lineup__position
{
    font-size: 10px;

    margin-bottom: 60px; 

    text-align: center;

    color: #b3b3b3;
}

.button-service
{
    position: absolute;
    bottom: 40px;
    left: 50%;

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

@media screen and (max-width: 767px)
{
    .service-lineup__wrap
    {
        position: absolute;
        top: 60px;
        left: 20px;
    }
    .service-lineup__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: calc(670 / 750 * 100vw);
        margin: 0 auto calc(40 / 750 * 100vw);
    }
    .service-lineup__item
    {
        width: calc((100% - 3px) / 4); 
        margin-top: 1px;
    }
    .service-lineup__item:nth-child(-n+3)
    {
        margin-top: 0;
    }
    .service-lineup__item a
    {
        display: block;

        text-decoration: none;
    }
    .service-lineup__pic-circle
    {
        width: calc(157 / 750 * 100vw);
        margin: 0 auto;
    }
    .service-lineup__pic-circle img
    {
        width: calc(157 / 750 * 100vw);
        height: calc(157 / 750 * 100vw);

        border-radius: 50%; 

        object-fit: cover;
    }
    .service-lineup__ttl
    {
        font-size: 1.4rem;

        margin-top: calc(20 / 750 * 100vw);
    }
    .service-lineup__position
    {
        font-size: 1rem;

        margin-bottom: calc(80 / 750 * 100vw);
    }
    .button-service
    {
        position: absolute;
        bottom: 20px;
        left: 50%;

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

.photo-single
{
    position: relative;
}
.photo-single a
{
    display: block;

    text-decoration: none;
}
.photo-single__pic
{
    width: 540px;
}
.photo-single__pic--right
{
    margin-left: auto; 

    text-align: right;
}
.photo-single__pic img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}
.photo-single__detail
{
    position: relative;
    z-index: -1;

    width: 540px;
    margin-top: -40px;
    margin-left: 115px;
    padding: 70px 30px 30px; 

    background: #fff;
}
.photo-single__detail--left
{
    position: relative;
    z-index: -1;

    width: 540px;
    margin-top: -40px;
    margin-right: 115px;
    padding: 70px 30px 30px; 

    background: #fff;
}
.photo-single__ttl
{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 2;

    margin-bottom: 20px; 

    letter-spacing: .1em;
}

@media screen and (max-width: 767px)
{
    .photo-single__pic
    {
        width: calc(630 / 750 * 100vw);
    }
    .photo-single__pic--right
    {
        margin-left: auto;
    }
    .photo-single__pic img
    {
        -webkit-box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .1);
                box-shadow: 0 5px 5px -2px rgba(0, 0, 0, .1);
    }
    .photo-single__detail
    {
        position: relative;
        z-index: -1;

        width: calc(630 / 750 * 100vw);
        margin-top: calc((40 / 750 * 100vw) * -1);
        margin-bottom: calc(120 / 750 * 100vw);
        margin-left: calc(40 / 750 * 100vw);
        padding: calc(70 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
    }
    .photo-single__detail--left
    {
        position: relative;
        z-index: -1;

        width: calc(630 / 750 * 100vw);
        margin-top: calc((40 / 750 * 100vw) * -1);
        margin-right: calc(40 / 750 * 100vw);
        padding: calc(70 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
    }
    .photo-single__ttl
    {
        font-size: 2rem;
        font-weight: bold;
        line-height: 2;

        margin-bottom: 20px;
    }
}

.content-inner
{
    position: relative;

    padding-bottom: 180px;
}

.content-inner--gutter-narrow
{
    position: relative;

    padding-bottom: 80px;
}

.full
{
    position: absolute;
    z-index: -2;

    width: 100vw;
    height: 770px; 
    margin: -100px calc(70% - 100vw) 0;

    background: rgba(68, 68, 68, .05);
}

.full--right
{
    position: absolute;
    z-index: -2;

    width: 70vw;
    height: 770px; 
    margin: -100px calc((50% - 20vw) - 10px) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .content-inner
    {
        position: relative;

        padding-bottom: inherit;
    }
    .content-inner--gutter-narrow
    {
        position: relative;
    }
    .full
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(400 / 750 * 100vw)); 
        margin: calc((200 / 750 * 100vw) * -1) 0 0;
    }
    .full--right
    {
        position: absolute;
        z-index: -2;
        right: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(400 / 750 * 100vw)); 
        margin: calc((200 / 750 * 100vw) * -1) 0 0;
    }
}

.top-news
{
    line-height: 2; 

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.top-news__dt
{
    font-size: 1.1rem;

    width: 90px;
    margin-bottom: 28px;
    padding-top: 6px; 

    color: #b3b3b3;
}
.top-news__dt:last-of-type
{
    margin-bottom: 0;
}
.top-news__dd
{
    width: calc(100% - 90px);
    margin-bottom: 28px;
}
.top-news__dd:last-of-type
{
    margin-bottom: 0;
}
.top-news a
{
    text-decoration: none;
}

@media screen and (max-width: 767px)
{
    .top-news
    {
        line-height: 2;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: calc(120 / 750 * 100vw); 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .top-news__dt
    {
        width: 100%;
        margin-bottom: calc(15 / 750 * 100vw);
    }
    .top-news__dd
    {
        width: 100%;
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .top-news a
    {
        text-decoration: none;
    }
}

.js-fade
{
    display: none;
}

.fade-img-box
{
    position: relative;

    width: 100%;
    min-height: 142px;
}

@media screen and (max-width: 767px)
{
    .fade-img-box
    {
        position: relative;

        width: 100%;
        min-height: calc(166 / 750 * 100vw);
    }
}

.fade-img-box img
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    -webkit-animation: slide-animation 6s linear infinite 0s;
            animation: slide-animation 6s linear infinite 0s; 

    opacity: 0;
}

.fade-img-box-2 img
{
    -webkit-animation: slide-animation 7s linear infinite 0s;
            animation: slide-animation 7s linear infinite 0s;
}

.fade-img-box-3 img
{
    -webkit-animation: slide-animation 8s linear infinite 0s;
            animation: slide-animation 8s linear infinite 0s;
}

.fade-img-box img
{
    height: auto;
}

.fade-img-box img:nth-of-type(2)
{
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
    /*2枚目の開始時間*/
}

.fade-img-box img:nth-of-type(3)
{
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    /*3枚目の開始時間*/
}

.fade-img-box-2 img:nth-of-type(2)
{
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    /*2枚目の開始時間*/
}

.fade-img-box-2 img:nth-of-type(3)
{
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
    /*3枚目の開始時間*/
}

.fade-img-box-3 img:nth-of-type(2)
{
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
    /*2枚目の開始時間*/
}

.fade-img-box-3 img:nth-of-type(3)
{
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
    /*3枚目の開始時間*/
}

@-webkit-keyframes slide-animation
{
    0%
    {
        visibility: visible;

        opacity: 0;
    }
    15%
    {
        opacity: 1;
    }
    33.3%
    {
        opacity: 1;
    }
    48.3%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}

@keyframes slide-animation
{
    0%
    {
        visibility: visible;

        opacity: 0;
    }
    15%
    {
        opacity: 1;
    }
    33.3%
    {
        opacity: 1;
    }
    48.3%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}

.mv-vision
{
    margin-bottom: 200px;
}
.mv-vision__heading
{
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.5;

    margin-bottom: 60px;

    text-align: center;
    letter-spacing: .2em;
}
.mv-vision__text p
{
    margin-bottom: 15px;

    text-align: center;
}
.mv-vision__photo
{
    position: relative;
    left: 50%;

    width: 100vw;
    padding: 45px 0 0 0; 

    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.mv-vision__photo img
{
    width: 100%;
}

@media screen and (max-width: 1170px)
{
    .mv-vision__photo
    {
        position: relative;
        left: 50%;

        width: 1170px;
        padding: 45px 0 0 0; 

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px)
{
    .mv-vision
    {
        margin-bottom: calc(120 / 750 * 100vw);
    }
    .mv-vision__heading
    {
        font-size: 2.0rem;
        font-weight: bold;
        line-height: 1.5;

        margin-bottom: 60px;

        text-align: center;
        letter-spacing: .2em;
    }
    .mv-vision__text p
    {
        margin-bottom: 20px;

        text-align: left;
    }
    .mv-vision__photo
    {
        position: relative;
        left: 50%;

        width: 100vw;
        padding: 30px 0 0 0; 

        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}

.vision-content
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.vision-content__item
{
    width: calc((100% - 40px) / 2);
}
.vision-content__item p
{
    margin-bottom: 30px;
}
.vision-content__item img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 767px)
{
    .vision-content
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .vision-content__item
    {
        width: 100%;
    }
    .vision-content__item p
    {
        margin-bottom: 30px;
    }
    .vision-content__item:last-of-type
    {
        margin-top: 60px;
        margin-bottom: 180px;
    }
    .vision-content--reverse .vision-content__item:first-of-type
    {
        margin-bottom: 230px; 

        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .vision-content--reverse .vision-content__item:last-of-type
    {
        margin-bottom: 50px;
    }
}

.full--735
{
    position: absolute;
    z-index: -2;

    width: 100vw;
    height: 735px; 
    margin: -100px calc(80% - 100vw) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--735
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(80 / 750 * 100vw)); 
        margin: calc((200 / 750 * 100vw) * -1) 0 0;
    }
}

.full--right-750
{
    position: absolute;
    z-index: -2;

    width: 70vw;
    height: 770px; 
    margin: -100px calc((50% - 20vw) - 10px) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--right-750
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(270 / 750 * 100vw)); 
        margin: calc((200 / 750 * 100vw) * -1) 0 0;
    }
}

.vision-sdgs-about
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 40px; 

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.vision-sdgs-about__logo
{
    width: 250px;
}
.vision-sdgs-about__text
{
    width: calc(100% - 290px);
}
.vision-sdgs-about__text p
{
    margin-bottom: 30px;
}

@media screen and (max-width: 767px)
{
    .vision-sdgs-about
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: 35px; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .vision-sdgs-about__logo
    {
        width: calc(495 / 750 * 100vw);
        margin: 0 auto; 
        margin-bottom: 35px;
    }
    .vision-sdgs-about__text
    {
        width: 100%;
    }
    .vision-sdgs-about__text p
    {
        margin-bottom: 30px;
    }
}

.vision-sdgs
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-right: -20px;
    margin-left: -20px; 

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.vision-sdgs__item
{
    width: 535px;
    margin-top: 50px; 
    margin-right: 20px;
    margin-left: 20px;
}
.vision-sdgs__item:nth-child(-n+2)
{
    margin-top: 0;
}
.vision-sdgs__icon
{
    min-height: 1%; 
    margin: 0 auto 25px;
}
.vision-sdgs__icon img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}
.vision-sdgs__text
{
    margin-top: 20px;
}
.vision-sdgs__heading
{
    font-size: 2.2rem;
    font-weight: bold;

    margin-bottom: 25px;
}

@media screen and (max-width: 767px)
{
    .vision-sdgs
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-right: 0;
        margin-left: 0; 

        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .vision-sdgs__item
    {
        width: 100%;
        margin-top: 35px; 
        margin-right: 0;
        margin-left: 0;
    }
    .vision-sdgs__item:nth-child(-n+2)
    {
        margin-top: 35px;
    }
    .vision-sdgs__item:first-child
    {
        margin-top: 0;
    }
    .vision-sdgs__icon
    {
        min-height: 1%; 
        margin: 0;
    }
    .vision-sdgs__icon img
    {
        -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
                box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
    }
    .vision-sdgs__text
    {
        margin-top: 20px;
    }
    .vision-sdgs__heading
    {
        font-size: 1.6rem;
        font-weight: bold;

        margin-bottom: 20px;
    }
}

.lead-copy
{
    margin-bottom: 60px;
}
.lead-copy p
{
    margin-bottom: 30px;
}
.lead-copy p:last-of-type
{
    margin-bottom: 0;
}

@media screen and (max-width: 767px)
{
    .lead-copy
    {
        margin-bottom: 60px;
    }
    .lead-copy p
    {
        margin-bottom: 25px;
    }
    .lead-copy p:last-of-type
    {
        margin-bottom: 0;
    }
}

.horizontal-step
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.horizontal-step--mb50
{
    margin-bottom: 50px !important;
}
.horizontal-step--gutter-bottom
{
    margin-top: 65px;
}
.horizontal-step__item
{
    width: calc((100% - 80px) / 3);
}
.horizontal-step__photo
{
    position: relative;

    margin-bottom: 30px;
}
.horizontal-step__photo img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}
.horizontal-step__number
{
    font-family: 'Bebas Neue', cursive;
    font-size: 6rem;

    position: absolute;
    top: -25px;
    left: 30px;

    border-bottom: 2px solid #444;
}
.horizontal-step__heading
{
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.6;

    margin-bottom: 20px;
}
.horizontal-step__text p
{
    font-size: 1.4rem; 

    margin-bottom: 15px !important;
}
.horizontal-step__text p:last-of-type
{
    margin-bottom: 0 !important;
}
.horizontal-step__text ul li
{
    font-size: 1.4rem; 
    line-height: 2;

    margin-left: 20px;

    list-style-type: disc;
}
.horizontal-step__lead
{
    font-weight: bold;
    line-height: 1.6; 

    margin-bottom: 15px;
}

@media screen and (max-width: 767px)
{
    .horizontal-step
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: 0; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .horizontal-step--gutter-bottom
    {
        margin-top: 65px;
    }
    .horizontal-step__item
    {
        width: 100%;
        margin-bottom: 40px;
    }
    .horizontal-step__item:last-of-type
    {
        margin-bottom: 0;
    }
    .horizontal-step__photo
    {
        position: relative;

        margin-bottom: 30px;
    }
    .horizontal-step__photo img
    {
        -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
                box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
    }
    .horizontal-step__number
    {
        font-family: 'Bebas Neue', cursive;
        font-size: 6rem;

        position: absolute;
        top: -25px;
        left: 20px;

        border-bottom: 2px solid #444;
    }
    .horizontal-step__heading
    {
        font-size: 1.6rem;

        margin-bottom: 20px;
    }
    .horizontal-step__text p
    {
        margin-bottom: 15px !important;
    }
    .horizontal-step__lead
    {
        font-weight: bold;
        line-height: 1.4; 

        margin-bottom: 15px;
    }
}

.full--820
{
    position: absolute;
    z-index: -2;

    width: 100vw;
    min-height: 820px; 
    margin: -80px calc(80% - 100vw) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--820
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(300 / 750 * 100vw)); 
        margin: calc((150 / 750 * 100vw) * -1) 0 0;
    }
}

.full--960
{
    position: absolute;
    z-index: -2;

    width: 100vw;
    min-height: 960px; 
    margin: -80px calc(80% - 100vw) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--960
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(300 / 750 * 100vw)); 
        margin: calc((150 / 750 * 100vw) * -1) 0 0;
    }
}

.full--right-666
{
    position: absolute;
    z-index: -2;

    width: 70vw;
    min-height: 666px; 
    margin: -100px calc((50% - 20vw) - 10px) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--right-666
    {
        position: absolute;
        z-index: -2;
        left: -20px;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(350 / 750 * 100vw));
        min-height: inherit; 
        margin: calc((200 / 750 * 100vw) * -1) 0 0;
    }
}

.full--right-1305
{
    position: absolute;
    z-index: -2;

    width: 70vw;
    min-height: 1250px; 
    margin: -100px calc((50% - 20vw) - 10px) 0;

    background: rgba(68, 68, 68, .05);
}

@media screen and (max-width: 767px)
{
    .full--right-1305
    {
        position: absolute;
        z-index: -2;

        width: calc(563 / 750 * 100vw);
        height: calc(100% + calc(350 / 750 * 100vw));
        min-height: inherit; 
        margin: -100px calc((50% - 20vw) - 10px) 0;

        background: rgba(68, 68, 68, .05);
    }
}

.service-content--pb75
{
    padding-bottom: 75px;
}

.service-content p
{
    margin-bottom: 30px;
}

.service-content__photo
{
    margin-bottom: 30px;
}
.service-content__photo img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}

@media screen and (max-width: 767px)
{
    .service-content
    {
        margin-bottom: 150px;
    }
    .service-content--pb75
    {
        padding-bottom: 0;
    }
    .service-content--spmb0
    {
        margin-bottom: 0;
    }
    .service-content p
    {
        margin-bottom: 30px;
    }
    .service-content__photo
    {
        margin-bottom: 30px;
    }
    .service-content__photo img
    {
        -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
                box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
    }
    .service-content__photo--gutter-wide
    {
        margin-bottom: 200px;
    }
}

.horizontal-halves
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.horizontal-halves__item
{
    width: calc((100% - 40px) / 2);
}
.horizontal-halves__item img
{
    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}
.horizontal-halves__heading
{
    font-size: 2.2rem;
    font-weight: bold;

    margin-bottom: 15px;
}
.horizontal-halves__text
{
    font-size: 1.4rem;
}

.shift-down
{
    margin-top: 40px;
}

@media screen and (max-width: 767px)
{
    .horizontal-halves
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .horizontal-halves--sp-horizontal
    {
            flex-direction: row; 

        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
    }
    .horizontal-halves--sp-horizontal .horizontal-halves__item
    {
        width: calc((100% - 20px) / 2);
    }
    .horizontal-halves__item
    {
        width: 100%;
        margin-bottom: 40px;
    }
    .horizontal-halves__item:last-of-type
    {
        margin-bottom: 0;
    }
    .horizontal-halves__item img
    {
        -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
                box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
    }
    .horizontal-halves__heading
    {
        font-size: 1.6rem;
        font-weight: bold;

        margin-bottom: 15px;
    }
    .shift-down
    {
        margin-top: 20px;
    }
}

.movie-wrap
{
    position: relative;

    overflow: hidden;
    /*アスペクト比 16:9の場合の縦幅*/

    height: 0;
    margin-bottom: 50px; 
    padding-bottom: 56.25%;
}

.movie-wrap iframe
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px)
{
    .movie-wrap
    {
        margin-bottom: 50px;
    }
}

.content-inner--gutter-narrow-service
{
    position: relative;

    padding-bottom: 40px;
}

.service-proposal__pic
{
    margin-bottom: 40px;

    -webkit-box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
            box-shadow: 2px 5px 5px 2px rgba(0, 0, 0, .1);
}

.search-form
{
    margin-bottom: 40px; 
    padding: 40px;

    background: rgba(68, 68, 68, .05);
}
.search-form__heading
{
    font-size: 1.6rem;
    font-weight: bold;

    margin-bottom: 40px;
}
.search-form__heading-sub
{
    font-size: 1.2rem;
    font-weight: bold;

    margin-bottom: 20px;
}
.search-form__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 20px; 

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.search-form__item
{
    margin-right: 10px;
    margin-bottom: 10px;
}
.search-form__item:last-of-type
{
    margin-right: 0;
}

@media screen and (max-width: 767px)
{
    .search-form
    {
        width: 100vw;
        margin-bottom: calc(80 / 750 * 100vw);
        margin-left: -20px; 
        padding: calc(70 / 750 * 100vw) calc(40 / 750 * 100vw);
    }
    .search-form__heading
    {
        font-size: 1.4rem;

        margin-bottom: calc(50 / 750 * 100vw);
    }
    .search-form__heading-sub
    {
        font-size: 1.2rem;

        margin-bottom: calc(40 / 750 * 100vw);
    }
    .search-form__list
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        margin-bottom: calc(40 / 750 * 100vw); 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .search-form__item
    {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .search-form__item:last-of-type
    {
        margin-right: 0;
    }
}

/* 共通 */
input[type='radio'],
input[type='checkbox']
{
    display: none;
}

input[type='radio'] + span,
input[type='checkbox'] + span
{
    font-size: 1.5rem;
    line-height: 1.5;

    position: relative;

    display: inline-block;

    margin-left: 10px;
    padding: 10px 25px;

    cursor: pointer; 

    color: #000;
    border-radius: 2px;
}

input[type='radio'] + span::before,
input[type='checkbox'] + span::before
{
    position: absolute;
    top: 50%;
    left: -10px;

    width: 24px;
    height: 24px;
    margin-top: -10px;

    content: '';

    border: 1px solid #dbdbdb;
    background: #fff;
}

input[type='radio']:checked + span::after,
input[type='checkbox']:checked + span::after
{
    position: absolute;
    top: 50%;
    left: -4px;

    width: 12px;
    height: 12px;
    margin-top: -4px;

    content: '';

    background: #ff2367;
}

/* ラジオボタン */
input[type='radio'] + span::before,
input[type='radio']:checked + span::after
{
    border-radius: 50%;
}

@media screen and (max-width: 767px)
{
    /* 共通 */
    input[type='radio'] + span,
    input[type='checkbox'] + span
    {
        font-size: 1.5rem;
        line-height: 1.5;

        position: relative;

        display: inline-block;

        margin-left: 10px;
        padding: 10px 0 10px 25px;

        cursor: pointer; 

        color: #000;
        border-radius: 2px;
    }
    input[type='radio'] + span::before,
    input[type='checkbox'] + span::before
    {
        position: absolute;
        top: 45%;
        left: -10px;

        width: 24px;
        height: 24px;
        margin-top: -10px;

        content: '';

        border: 1px solid #dbdbdb;
        background: #fff;
    }
    input[type='radio']:checked + span::after,
    input[type='checkbox']:checked + span::after
    {
        position: absolute;
        top: 45%;
        left: -4px;

        width: 12px;
        height: 12px;
        margin-top: -4px;

        content: '';

        background: #ff2367;
    }
    /* ラジオボタン */
    input[type='radio'] + span::before,
    input[type='radio']:checked + span::after
    {
        border-radius: 50%;
    }
}

.submit-button-item
{
    font-size: 1.6rem;
    font-weight: bold;

    position: relative;

    display: block;

    width: 283px;
    margin: 0 auto;
    padding: 15px 10px;

    -webkit-transition: .5s;
            transition: .5s; 

    color: #fff;
    background: #444;
}
.submit-button-item:hover
{
    opacity: .8;
}

.submit-button-item-wrap
{
    position: relative; 

    width: 283px;
    margin: 0 auto;
}
.submit-button-item-wrap:after
{
    position: absolute;
    top: 20px;
    right: 15px;

    display: inline-block; 

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .submit-button-item
    {
        font-size: 1.4rem;

        width: 100%;
        padding: 16px 10px;

        -webkit-transition: none .submit-button-item;
                transition: none .submit-button-item;
    }
    .submit-button-item :hover
    {
        opacity: 1;
    }
    .submit-button-item-wrap
    {
        width: 100%;
    }
    .submit-button-item-wrap:after
    {
        position: absolute;
        top: 20px;
        right: 15px;

        display: inline-block; 

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.button-for-pursonaluse
{
    width: 190px;
    margin-bottom: 40px;
}
.button-for-pursonaluse a
{
    font-size: 1.4rem;

    display: block;

    padding: 10px 10px 10px 18px;

    text-decoration: none; 

    border: 1px solid #bfbfbf;
}
.button-for-pursonaluse a:after
{
    display: inline-block;

    width: 11px;
    height: 8px;
    margin-left: 8px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .button-for-pursonaluse
    {
        width: calc(316 / 750 * 100vw);
        margin-bottom: 40px;
    }
    .button-for-pursonaluse a
    {
        font-size: 1.3rem;

        display: block;

        padding: 10px 5px 10px 10px;

        text-decoration: none; 

        border: 1px solid #bfbfbf;
    }
    .button-for-pursonaluse a:after
    {
        display: inline-block;

        width: 11px;
        height: 8px;
        margin-left: 8px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_external.svg') 0 0 no-repeat;
        background-size: contain;
    }
}

.item-lineup
{
    margin-bottom: 60px;
}
.item-lineup__list
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.item-lineup__item
{
    width: calc((100% - 160px) / 5);
    margin-top: 50px;
    margin-right: 40px;
}
.item-lineup__item img
{
    -webkit-box-shadow: 0 0 8px rgba(10, 10, 10, .1);
            box-shadow: 0 0 8px rgba(10, 10, 10, .1);
}
.item-lineup__item:nth-child(-n+5)
{
    margin-top: 0;
}
.item-lineup__item:nth-child(5n)
{
    margin-right: 0;
}
.item-lineup__item a
{
    display: block;

    cursor: pointer;
}
.item-lineup__item a:hover
{
    text-decoration: none;
}
.item-lineup__pic
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 190px;
    height: 190px;

    background: #ccc; 

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.item-lineup__pic span
{
    width: 190px;
}
.item-lineup__ttl
{
    font-size: 1.4rem;

    margin-top: 12px;
}

@media screen and (max-width: 767px)
{
    .item-lineup
    {
        margin-bottom: calc(75 / 750 * 100vw);
    }
    .item-lineup__item
    {
        width: calc((100% - (40 / 750 * 100vw)) / 2);
        margin-top: calc(70 / 750 * 100vw);
        margin-right: calc(40 / 750 * 100vw);
    }
    .item-lineup__item img
    {
        -webkit-box-shadow: 0 0 5px rgba(10, 10, 10, .1);
                box-shadow: 0 0 5px rgba(10, 10, 10, .1);
    }
    .item-lineup__item:nth-child(-n+5)
    {
        margin-top: calc(70 / 750 * 100vw);
    }
    .item-lineup__item:nth-child(5n)
    {
        margin-right: calc(40 / 750 * 100vw);
    }
    .item-lineup__item:nth-child(-n+2)
    {
        margin-top: 0;
    }
    .item-lineup__item:nth-child(2n)
    {
        margin-right: 0;
    }
    .item-lineup__item a
    {
        display: block;

        cursor: pointer;
    }
    .item-lineup__item a:hover
    {
        text-decoration: none;
    }
    .item-lineup__pic
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        width: calc(315 / 750 * 100vw);
        height: calc(315 / 750 * 100vw);

        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .item-lineup__pic span
    {
        width: calc(315 / 750 * 100vw);
    }
    .item-lineup__ttl
    {
        font-size: 1.4rem;

        margin-top: 14px;
    }
}

.viewall
{
    font-family: 'Bebas Neue', cursive; 
    font-size: 1.6rem;

    text-align: center;
}
.viewall a
{
    text-decoration: none;
}
.viewall a:after
{
    display: block;

    width: 13px;
    height: 8px;
    margin: 0 auto; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_arrow_down.png') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .viewall
    {
        font-size: 1.4rem;
    }
    .viewall a:after
    {
        display: block;

        width: 13px;
        height: 8px;
        margin: 0 auto; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/icon_arrow_down.png') 0 0 no-repeat;
        background-size: contain;
    }
}

.item-note
{
    font-size: 1.0rem;

    margin-top: 30px;
}
.item-note--gutter-bottom
{
    margin-bottom: 80px;
}

@media screen and (max-width: 767px)
{
    .item-note
    {
        font-size: 1.0rem;

        margin-top: calc(60 / 750 * 100vw);
    }
    .item-note--gutter-bottom
    {
        margin-bottom: 40px;
    }
}

.remodal-item
{
    max-width: 750px !important;
}

.modal-item-detail__text
{
    padding: 0 30px 30px 30px;

    text-align: left;
}

.modal-item-detail__ttl
{
    font-size: 2.2rem;
    font-weight: bold;

    margin-bottom: 12px;
}

.modal-item-detail__description
{
    line-height: 1.6;
}

.modal-item-detail__slider li
{
    background: #ccc;
}
.modal-item-detail__slider li span
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    width: 750px;
    height: 500px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    /* 子要素をflexboxにより縦方向に揃える */
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* 子要素をflexboxにより中央に配置する */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* 子要素をflexboxにより中央に配置する */
}

.modal-item-detail__slider img
{
    max-width: 100%;
    max-height: 100%; 

    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 767px)
{
    .remodal-item
    {
        max-width: 100% !important;
    }
    .modal-item-detail__text
    {
        padding: 0 15px 30px 15px;
    }
    .modal-item-detail__ttl
    {
        font-size: 1.6rem;

        margin-bottom: 12px;
    }
    .modal-item-detail__slider li span
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column;

        width: 100%;
        height: calc(447/750*100vw);

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        /* 子要素をflexboxにより縦方向に揃える */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        /* 子要素をflexboxにより中央に配置する */
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /* 子要素をflexboxにより中央に配置する */
    }
    .modal-item-detail__slider img
    {
        max-width: 100%;
        max-height: 100%;
    }
}

.search-result
{
    position: relative;

    margin-bottom: 40px; 
    padding: 40px;

    background: rgba(68, 68, 68, .05);
}
.search-result__ttl
{
    font-size: 1.2rem;
    font-weight: bold;

    margin-top: 20px;
}
.search-result__ttl:first-of-type
{
    margin-top: 0;
}
.search-result__detail
{
    font-size: 1.6rem;

    display: inline-block;

    margin-left: 15px;
}

@media screen and (max-width: 767px)
{
    .search-result
    {
        position: relative;

        width: 100vw;
        margin-bottom: calc(80 / 750 * 100vw);
        margin-left: -20px; 
        padding: calc(40 / 750 * 100vw);

        background: rgba(68, 68, 68, .05);
    }
    .search-result__ttl
    {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.6;

        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;

        margin-top: 20px;

        -webkit-box-align: top;
        -ms-flex-align: top;
        align-items: top;
    }
    .search-result__ttl:first-of-type
    {
        margin-top: 0;
    }
    .search-result__detail
    {
        font-size: 1.6rem;

        display: inline-block;

        margin-left: 15px;
    }
    .search-result__heading
    {
        display: inline-block;

        width: calc(100 / 750 * 100vw);
        padding-top: 2px; 

        white-space: nowrap;
    }
    .search-result__heading--2
    {
        display: inline-block;

        width: calc(160 / 750 * 100vw);
        margin-right: 10px; 
        padding-top: 2px;

        white-space: nowrap;
    }
}

.go-back-link
{
    margin-top: 30px;
}
.go-back-link a
{
    font-size: 1.4rem;

    text-decoration: none;
}
.go-back-link a:before
{
    display: inline-block;

    width: 8px;
    height: 13px;
    margin-right: 10px; 

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_back.png') 0 0 no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px)
{
    .go-back-link
    {
        margin-top: 30px;
    }
    .go-back-link a
    {
        font-size: 1.4rem;

        text-decoration: none;
    }
    .go-back-link a:before
    {
        display: inline-block;

        width: 8px;
        height: 13px;
        margin-right: 10px; 

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_back.png') 0 0 no-repeat;
        background-size: contain;
    }
}

.button-item-contact
{
    position: absolute;
    top: 40px; 
    right: 40px;

    width: 283px;

    text-align: center;
}
.button-item-contact a
{
    font-size: 1.6rem;
    font-weight: bold;

    display: block;

    padding: 20px 8px;

    text-decoration: none; 

    color: #fff;
    background: #ff2367;
}
.button-item-contact a:after
{
    position: absolute;
    top: 20px;
    right: 20px;

    display: inline-block;

    width: 8px;
    height: 13px;

    content: '';

    background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
    background-size: contain;
}
.button-item-contact--center
{
    margin: 0 auto;
}

@media screen and (max-width: 767px)
{
    .button-item-contact
    {
        position: relative;
        top: inherit;
        right: inherit;

        width: calc(670 / 750 * 100vw);
        margin-top: calc(40 / 750 * 100vw);
    }
    .button-item-contact--100
    {
        width: 100%;
        margin-bottom: calc(40 / 750 * 100vw);
    }
    .button-item-contact a
    {
        font-size: 1.4rem; 

        padding: 20px 20px;
    }
    .button-item-contact a:after
    {
        position: absolute;
        top: 28px;
        right: 15px;

        display: inline-block;

        width: 8px;
        height: 13px;

        content: '';

        background: url('/wp/wp-content/themes/tsukuriba/resources/img/common/arrow_white.svg') 0 0 no-repeat;
        background-size: contain;
    }
    .button-item-contact--center
    {
        margin: 0 auto;
    }
}

.item-lineup__pic img
{
    -webkit-transition: opacity .5s;
            transition: opacity .5s; 

    opacity: 0;
}

.item-lineup__pic img.lazyloaded
{
    opacity: 1;
}

.top-inquiry
{
    width: 850px;
    margin: 75px auto 0;
    margin-bottom: 55px; 
    padding: 55px 60px 40px;

    background: #fff;
    -webkit-box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
            box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
}
.top-inquiry--mt0
{
    margin-top: 0;
}
.top-inquiry__heading
{
    font-size: 2.6rem;
    font-weight: bold;

    margin-bottom: 55px; 

    text-align: center;
}
.top-inquiry__text
{
    margin-bottom: 50px;
}
.top-inquiry__buttons
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.top-inquiry__note
{
    font-size: 1.0rem; 

    margin-top: 20px;

    text-align: center;

    color: #b2b2b2;
}

.mv-vision ~ section .top-inquiry
{
    margin-top: 0;
}

@media screen and (max-width: 767px)
{
    .top-inquiry
    {
        width: calc(670 / 750 * 100vw);
        margin-top: calc(210 / 750 * 100vw); 
        margin-bottom: calc(110 / 750 * 100vw);
        padding: calc(90 / 750 * 100vw) calc(40 / 750 * 100vw) calc(90 / 750 * 100vw);

        -webkit-box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
                box-shadow: 0 8px 16px -2px rgba(10, 10, 10, .1), 10px 10px 16px 10px rgba(10, 10, 10, .02);
    }
    .top-inquiry__heading
    {
        font-size: 2rem;

        margin-bottom: calc(55 / 750 * 100vw);
    }
    .top-inquiry__text
    {
        margin-bottom: calc(60 / 750 * 100vw);
    }
    .top-inquiry__buttons
    {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
            flex-direction: column; 

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }
    .top-inquiry__note
    {
        font-size: 1.0rem; 

        margin-top: 20px;

        text-align: center;

        color: #b2b2b2;
    }
    .mv-vision ~ section .top-inquiry
    {
        margin-top: calc(210 / 750 * 100vw);
    }
}

.thanks-block
{
    font-size: 2.6rem;

    margin-bottom: 120px; 
    padding: 50px;

    text-align: center;

    background: rgba(68, 68, 68, .05);
}
.thanks-block .contents__lead
{
    margin-bottom: 0;
}
