@charset "UTF-8";

:root {
    --main-color: #7E7E1D;
    --main-backcolor: #1D547D;

    --font-custom: "CustomFont", sans-serif;
    --font-custom_italic: "CustomFont-Italic", sans-serif;
    --font-jost: "Jost", sans-serif;
    --font-notosans: 'Noto Sans JP', sans-serif;
    --font-rubik: "Rubik", sans-serif;

    --serviceColor-web: #1D777E;
    --serviceColor-ec: #607E1D;
    --serviceColor-graphic: #4A1D7E;
    --serviceColor-paper: #7E1D60;
    --serviceColor-photo: #606967;
    --serviceColor-movie: #79622F;

}

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

>>> Slick 上書き

---------------------------------*/
.slick-list,
.slick-track {
    width: 100%;
    height: 100%;
}

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

>>> Base Style

---------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

*:active,
*:focus,
*:hover {
    outline: none;
}

html {
    height: 100%;
    font-size: 10px !important;
}

body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-custom);
    transition: ALL .8s ease .3s;
    opacity: 0;
    background-color: #F8F8F8;
}

body.show {
    opacity: 1;
}

body.active {
    overflow: hidden;
}

@media (max-width: 767px) {
    html {
        font-size: 2.4vw !important;
    }
}

a {
    color: #555;
    text-decoration: none;
    transition: ALL .5s ease;
    -webkit-transition: ALL .5s ease;
    -moz-transition: ALL .5s ease;
    -o-transition: ALL .5s ease;
}

p {
    line-height: 1.4;
    word-break: break-all;
    line-break: normal;
    letter-spacing: .05em;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

.grid {
    display: grid;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

.clear {
    clear: both;
}

.clear hr {
    display: none;
}

.wrap {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.wrap900 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.wrap800 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.wrap750 {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.wrap700 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.sp_hide {
    display: block;
}

.pc_hide {
    display: none;
}

br.sp {
    display: none;
}

br.pc {
    display: inline;
}

@media (max-width: 767px) {
    .sp_hide {
        display: none;
    }

    .pc_hide {
        display: block;
    }

    br.sp {
        display: inline;
    }

    br.pc {
        display: none;
    }
}


/* Font-size */
p,
li,
a,
div,
td,
th,
dt,
dd,
ol {
    font-size: 1.5rem;
}


.pos_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.spc100 {
    display: block;
    height: 100px;
}

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

>>> Animation Style

---------------------------------*/
.slideUp {
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

.slideUp.started {
    opacity: 1;
    transform: translate(0px);
}

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

>>> Intro Style

---------------------------------*/
/* イントロオーバーレイの基本スタイル */
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* お好みの背景色に変更可能 */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-out;
    /* フェードアウト用のトランジション */
}

/* イントロ内容のスタイル */
.intro-content {
    text-align: center;
    /* ここにフォントサイズやアニメーションなどの追加スタイルも記述できます */
}

.intro-content img {
    width: 200px;
    margin-inline: auto;
}

/* フェードアウト後の状態 */
#intro.fade-out {
    opacity: 0;
    pointer-events: none;
    /* クリック等の操作を無効にする */
}

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

>>> Share Style

---------------------------------*/
.base_hl {
    font-size: 4rem;
    font-family: var(--font-custom);
    letter-spacing: .05em;
    font-weight: 700;
}

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

.base_hl span {
    font-size: 1.5rem;
    font-family: var(--font-notosans);
    color: #8D8989;
    display: block;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .base_hl {
        font-size: 2.5rem;
    }

    .base_hl span {
        font-size: 1.3rem;
    }
}


.sub_h1 {
    font-size: 4rem;
    font-family: var(--font-custom);
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--main-color);
}

.sub_h1 span {
    font-size: .5em;
    font-family: var(--font-notosans);
    color: #000;
    display: block;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 767px) {
    .sub_h1 {
        font-size: 3.4rem;
    }

    .sub_h1 span {
        font-size: 2.1rem;
    }
}


/*  Btn Design ---------------------------------*/

/*Ex : <div class="link_design01 center"><a href="">Go<span>about</sapn></a></div> */
.link_design01.center {
    text-align: center;
}

.link_design01 a {
    display: inline-block;
    position: relative;
    width: 45px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 1.8rem;
    font-family: var(--font-custom);
    font-weight: 600;
    padding: 13px 10px;
    border-radius: 100vh;
    text-align: center;
    transition: all .3s ease;
    overflow: hidden;
}

.link_design01 a:hover {
    width: 250px;
}

.link_design01 a span {
    margin-left: 15px;
    transition: all .3s ease;
}

.link_design01 a:hover span {
    margin-left: 10px;
}

@media (max-width: 767px) {
    .link_design01 a {
        width: 45px;
    }

}



/*navigation*/
.navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
}

.navigation .navigation_btn {}

.navigation .navigation_btn a {
    display: block;
    width: 200px;
    color: #fff;
    background-color: #000;
    padding: 10px 30px;
    text-decoration: none;
    text-align: center;
    border-radius: 100vh;
    margin-inline: auto;
}

.navigation .navigation_btn a:hover {
    background-color: var(--main-backcolor);
    color: #fff;
}

.navigation .navigation_btn.navigation_btn_back a {
    background-color: transparent;
    color: #000;
    margin-inline: auto;
}

.navigation .navigation_btn.navigation_btn_back a:hover {
    background-color: transparent;
    color: #000;
    opacity: 0.5;
}

@media (max-width: 767px) {
    .navigation {
        padding: 0 5%;
        column-gap: 5%;
    }

    .navigation .navigation_btn {
        width: 100%;
    }

    .navigation .navigation_btn a {
        width: 100%;
        padding: 10px 5px;
    }

    .navigation .navigation_btn.navigation_btn_back {
        width: 100%;
    }
}

.logo_spacer {
    padding: 75px 0;
}

.logo_spacer .object {
    width: 95px;
    margin-inline: auto;
}

@media (max-width: 767px) {
    .logo_spacer .object {
        width: 15%;
    }
}

.spacer_bottom {
    display: block;
    height: 200px;
}

@media (max-width: 767px) {
    .spacer_bottom {
        height: 100px;
    }
}

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

>>>Header Style

---------------------------------*/
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 1000;
    transition: all .3s ease;
}

header #logo {
    width: 200px;
    margin: 0 auto 0 2.5%;
    position: relative;
    z-index: 10000;
}

header.header_hide {
    top: -100px;
}

/* header #site_description {
    text-align: center;
    margin: 5px 0;
} */
@media (max-width: 767px) {
    header #logo {
        width: 30%;
        margin: 0 auto 0 2.5%;
    }

    /* header #site_description {
        text-align: center;
        margin: 5px 0;
    } */
}

.g_nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-custom);
    letter-spacing: .05em;
    font-weight: 500;
}

.g_nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.g_nav ul li+li {
    margin-left: 30px;
}

.g_nav ul li a {
    color: #000;
}

.g_nav ul li a:hover {
    color: var(--main-backcolor);
}

@media (max-width: 767px) {
    .g_nav {
        width: 70%;
        height: 100dvh;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 100%;
        transform: translate(0%);
        z-index: 1000;
        transition: ALL 0.3s ease;
    }

    .g_nav ul {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .g_nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .g_nav ul li+li {
        margin-left: 0;
    }

    .g_nav.active {
        left: 30%;
    }
}

.header_overray {
    position: fixed;
    width: 100vw;
    height: 100svb;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: all .5s linear;
}

.header_overray.active {
    opacity: 1;
    display: block;
    animation: header_overray_show .5s ease 0s 1 alternate none;
}

@keyframes header_overray_show {
    0% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

/*バーガーメニュー PC非表示*/
.menu_trigger {
    display: none;
    z-index: 1000;
}

@media (max-width: 767px) {

    .menu_trigger,
    .menu_trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .menu_trigger {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        width: 30px;
        height: 20px;
    }

    .menu_trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
    }

    .menu_trigger span:nth-of-type(1) {
        top: 0;
    }

    .menu_trigger span:nth-of-type(2) {
        top: 9px;
        background-color: var(--main-color);
    }

    .menu_trigger span:nth-of-type(3) {
        bottom: 0;
    }

    .menu_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }

    .menu_trigger.active span:nth-of-type(2) {
        left: -20px;
        opacity: 0;
    }

    .menu_trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
}

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

>>>Footer Style

---------------------------------*/
footer {
    background-color: #313131;
    padding: 35px 0;
}

footer .f_logo {
    width: 225px;
}

footer .footer_widet_container {
    clear: both;
    background-color: #ccc;
    padding: 0;
}

footer .footer_nav {}

footer .footer_nav ul {
    display: flex;
    justify-content: flex-start;
    row-gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0 0
}

footer .footer_nav ul li {
    font-family: var(--font-custom);
    font-size: .93rem;
    letter-spacing: .05em;
}

footer .footer_nav ul li+li {
    margin-left: 30px;
}

footer .footer_nav ul li a {
    display: block;
    padding: 0;
    color: #fff;
}

@media (max-width: 767px) {
    footer {
        background-color: #313131;
        padding: 35px 0;
    }

    footer .f_logo {
        width: 30%;
        margin-inline: auto;
    }

    footer .footer_widet_container {
        clear: both;
        background-color: #ccc;
        padding: 0;
    }

    footer .footer_nav {}

    footer .footer_nav ul {
        display: flex;
        justify-content: center;
    }

    footer .footer_nav ul li+li {
        margin-left: 20px;
    }

}

footer .footer_subnav {}

footer .footer_subnav ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 20px 0 0
}

footer .footer_subnav ul li {
    font-family: var(--font-custom);
    font-size: .8rem;
    letter-spacing: .05em;
}

footer .footer_subnav ul li+li {
    margin-left: 30px;
}

footer .footer_subnav ul li a {
    display: block;
    padding: 0;
    color: #BEBEBE;
}

@media (max-width: 767px) {
    footer .footer_subnav ul {

        justify-content: center;

    }

}

footer .copyright {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--font-custom);
    position: fixed;
    top: 50%;
    left: -2%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    letter-spacing: .1em;
    z-index: 1000;
    color: #fff;
    mix-blend-mode: difference;
}

@media (max-width: 767px) {
    footer .copyright {
        position: relative;
        top: auto;
        left: auto;
        transform: translateY(0%) rotate(0deg);
        color: #fff;
        mix-blend-mode: auto;
        text-align: center;
        font-weight: 500;
        margin-top: 25px;
    }
}

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

>>>Layout Style

---------------------------------*/
/*Main*/
main {
    width: 100%;
}

/*Side*/
aside {
    overflow: hidden;
    padding: 0 0 20px;
    margin: 0;
    width: 250px;
}

.side-widget {
    padding: 20px 0 0;
    float: left;
    width: 250px;
    overflow: hidden;
}

.side-widget .widget-title {
    margin: 0;
    font-weight: bold;
}

.side-widget ul {
    margin: 0;
}

.side-widget ul li {
    margin: 0;
    padding: 0 0 0 10px;
}

.side-widget ul li p {
    margin: 0;
}

.side-widget ul li th,
.side-widget ul li .side-widget td {
    padding: 0;
    text-align: center;
}


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

>>>Index Style

---------------------------------*/
.post_index {
    margin-top: 100px;
}

@media (max-width: 767px) {
    .post_index {
        padding: 0 2.5%;
    }
}

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

>>>Post Style

---------------------------------*/
.post_details {}

.post_details .post_body {
    padding: 75px 0;
}

.post_details .container {
    padding: 0 5%;
}

.post_details .post_head {
    padding: 5px 5%;
}

.post_details h1 {
    letter-spacing: .05em;
    line-height: 1.5;
    font-weight: 600;
    padding: 50px 5% 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 35px;
    font-size: 2.5rem;
}

.post_details h2 {
    font-size: 2rem;
}

.post_details .meta {
    text-align: center;
    color: #808080;
    letter-spacing: .1em;
    margin-top: 15px;
    margin-top: 50px;
}

.post_details h2+h2,
.post_details h3+h2,
.post_details h4+h2,
.post_details p+h2,
.post_details .wp-block-image+h2,
.post_details ul+h2,
.post_details ol+h2,
.post_details figure+h2,
.post_details table+h2 {
    margin-top: 75px;
}

.post_details h2+h3,
.post_details h3+h3,
.post_details h4+h3,
.post_details p+h3,
.post_details .wp-block-image+h3,
.post_details ul+h3,
.post_details ol+h3,
.post_details figure+h3,
.post_details table+h3 {
    margin-top: 35px;
}

.post_details h2+h4,
.post_details h3+h4,
.post_details h4+h4,
.post_details p+h4,
.post_details .wp-block-image+h4,
.post_details ul+h4,
.post_details ol+h4,
.post_details figure+h4,
.post_details table+h4 {
    margin-top: 35px;
}

.post_details h2+p,
.post_details h3+p,
.post_details h4+p,
.post_details p+p,
.post_details .wp-block-image+p,
.post_details ul+p,
.post_details ol+p,
.post_details figure+p,
.post_details table+p {
    margin-top: 35px;
}

.post_details h2+.wp-block-image,
.post_details h3+.wp-block-image,
.post_details h4+.wp-block-image,
.post_details p+.wp-block-image,
.post_details .wp-block-image+.wp-block-image,
.post_details ul+.wp-block-image,
.post_details ol+.wp-block-image,
.post_details figure+.wp-block-image,
.post_details table+.wp-block-image {
    margin-top: 35px;
}

.post_details h2+ul,
.post_details h3+ul,
.post_details h4+ul,
.post_details p+ul,
.post_details .wp-block-image+ul,
.post_details ul+ul,
.post_details ol+ul,
.post_details figure+ul,
.post_details table+ul {
    margin-top: 35px;
}

.post_details h2+ol,
.post_details h3+ol,
.post_details h4+ol,
.post_details p+ol,
.post_details .wp-block-image+ol,
.post_details ul+ol,
.post_details ol+ol,
.post_details figure+ol,
.post_details table+ol {
    margin-top: 35px;
}

.post_details h2+table,
.post_details h3+table,
.post_details h4+table,
.post_details p+table,
.post_details .wp-block-image+table,
.post_details ul+table,
.post_details ol+table,
.post_details figure+table,
.post_details table+table {
    margin-top: 35px;
}


.post_details h2,
.post_details h3,
.post_details h4,
.post_details p,
.post_details .wp-block-image,
.post_details ul,
.post_details ol,
.post_details figure,
.post_details table {
    letter-spacing: .05em;
}

/* List li -----------------------------------------------------------------*/
.post_details ul {
    padding-left: 20px;
}

.post_details ul li {
    list-style: disc;
}

.post_details ul li+li {
    margin-top: 15px;
}



.post_details table td,
.post_details table th {
    padding: 10px 5px;
    border: .5px solid #dcdcdc;
}

.post_details .thumb {
    margin-top: 50px;
    margin-bottom: 60px;
}

.post_details p {
    line-height: 1.5;
}

.post_details p a {
    color: var(--main-backcolor);
    font-weight: 600;
}


.post_details .thumb {
    aspect-ratio: 8/5;
    background: center center/cover no-repeat;
}

@media (max-width: 767px) {
    .post_details {
        padding: 0;
    }

    .post_details .post_body {
        padding: 0 0 75px;
    }

    .post_details .thumb {
        margin-top: 35px;
    }

}

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

>>> Contact Form Style

---------------------------------*/
.form_style01 {}

.form_style01 table {
    width: 100%;
}

.form_style01 table th,
.form_style01 table td {
    padding: 10px 0;
}

.form_style01 table th {
    width: 150px;
    text-align: left;
    font-family: var(--font-rubik);
    font-weight: 500;
}

.form_style01 table th.textarea_th {
    vertical-align: top;
}

.form_style01 table th span.req {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: coral;
    border-radius: 100vh;
    margin-left: 5px;
    position: relative;
    top: 2px;
}

.form_style01 table td {
    width: calc(100% - 150px);
}

.form_style01 table td input,
.form_style01 table td textarea {
    width: 100%;
    background-color: #fff;
    border: 0px;
    padding: 10px;
    line-height: 1.4;
}

.form_style01 table td textarea {
    height: 300px;
}

.form_style01 table .mwform-tel-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_style01 table .mwform-tel-field input {
    width: 30%;
}

.form_style01 .consent_area {
    text-align: center;
    margin-top: 15px;
}

.form_style01 .consent_area a {
    color: var(--main-color);
}

.form_style01 .consent_area .consent {
    cursor: pointer;
}

.form_style01 form input.wpcf7-submit {
    display: block;
    margin: 50px auto 0;
    width: 250px;
    text-align: center;
    cursor: pointer;
    padding: 20px 0;
    font-size: 1.5rem;
    border-radius: 100vh;
    letter-spacing: .2em;
    border: 0px;
    background-color: var(--main-color);
    color: #fff;
    transition: ALL .5s ease;
}

.form_style01 form input.wpcf7-submit:hover {
    background-color: var(--main-backcolor);
    color: #fff;
}

.form_style01 form input.wpcf7-submit:disabled {
    opacity: 0.3;
}

.form_style01 form input.wpcf7-submit:hover:disabled {
    /* background-color: #000;
    color: #fff; */
}

@media (max-width: 767px) {

    .form_style01 table th,
    .form_style01 table td {
        display: block;
        padding: 10px 0;
    }

    .form_style01 table th {
        width: 100%;
    }

    .form_style01 table td {
        width: 100%;
    }

    .form_style01 table td input,
    .form_style01 table td textarea {
        width: 100%;
    }

    .form_style01 table td textarea {
        height: 300px;
    }

    .form_style01 table .mwform-tel-field {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .form_style01 table .mwform-tel-field input {
        width: 30%;
    }

    .form_style01 .consent_area {
        text-align: center;
        margin-top: 15px;
    }

    .form_style01 .consent_area a {
        color: var(--main-color);
    }

    .form_style01 .consent_area .consent {
        cursor: pointer;
    }
}



.grecaptcha-badge {
    display: none;
}


.block_friendship {
    padding: 0;
    margin-top: 100px;
}

.block_friendship h2 {
    text-align: center;
    margin-bottom: 30px;
}

.block_friendship .thumb {
    width: 100%;
    max-width: 900px;
    position: relative;
    margin-inline: auto;
    aspect-ratio: 10/4;
    transition: all .5s ease;
}

.block_friendship .thumb:hover {
    filter: brightness(1.2);
}

.block_friendship .thumb h3 {
    width: 100%;
    font-size: 2.33rem;
    letter-spacing: .1em;
    color: #fff;
    text-align: center;
    line-height: 2;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
}

.block_friendship .thumb::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(86, 164, 199, .25);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.block_friendship .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.block_friendship .thumb a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

@media (max-width: 520px) {
    .block_friendship {}

    .block_friendship .thumb h3 {
        font-size: 1.33rem;
    }
}

/*------------------------------------------------------------------*/
.block_contact {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

.block_contact h3 {
    letter-spacing: .05em;
    font-weight: 600;
    margin-top: 35px;
}

.block_contact h3 span {
    color: var(--main-backcolor);
}

.block_contact .container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.block_contact .container .item {
    width: 400px;
}

.block_contact .item .icon {
    width: 55px;
    height: 75px;
    display: flex;
    align-items: center;
    margin-inline: auto;
    animation: scale_up_loop 3s linear 0s infinite normal forwards;
}

.block_contact .item .icon img {
    width: 100% !important;
    margin: 0 !important;
}

.block_contact .item p {
    margin-top: 5px;
    line-height: 2;
    letter-spacing: .05em;
}

.block_contact .container .item.line img {
    display: block;
    width: 30%;
    margin-inline: auto;
    margin-top: 25px;
    transition: all .3s ease;
}

.block_contact .container .item.line img:hover {
    opacity: 0.5;
}

.block_contact .container .item.mail .in_container {
    margin-top: 40px;
}

.block_contact .container .item.mail .in_container a.e_mail {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: all .3s ease;

}

.block_contact .container .item.mail .in_container a.e_mail:hover {
    opacity: 0.5;
}

.block_contact .container .item.mail .in_container a.go_form {
    width: 50%;
    display: block;
    margin-inline: auto;
    border-radius: 100vh;
    padding: 12px 0;
    background-color: var(--main-color);
    color: #fff;
    transition: all .3s ease;
}

.block_contact .container .item.mail .in_container a.go_form:hover {
    background-color: var(--main-backcolor);
}

.block_contact .container .item.mail .in_container p {
    margin: 15px 0 !important;
}

@media (max-width: 767px) {
    .block_contact {
        margin-top: 100px;
    }

    .block_contact {
        margin-top: 100px;
        margin-bottom: 100px;
        text-align: center;
    }

    .block_contact h3 {
        letter-spacing: .05em;
        font-weight: 600;
        margin-top: 35px;
    }

    .block_contact h3 span {
        color: var(--main-backcolor);
    }

    .block_contact .container {
        flex-wrap: wrap;
        row-gap: 50px;
    }

    .block_contact .container .item {
        width: 100%;
    }

    .block_contact .item .icon {
        width: 55px;
        height: 75px;
        display: flex;
        align-items: center;
        margin-inline: auto;
        animation: scale_up_loop 3s linear 0s infinite normal forwards;
    }

    .block_contact .item .icon img {
        width: 100% !important;
        margin: 0 !important;
    }

    .block_contact .item p {
        margin-top: 5px;
        line-height: 2;
        letter-spacing: .05em;
    }

    .block_contact .container .item.line img {
        display: block;
        width: 30%;
        margin-inline: auto;
        margin-top: 25px;
        transition: all .3s ease;
    }

    .block_contact .container .item.line img:hover {
        opacity: 0.5;
    }

    .block_contact .container .item.mail .in_container {
        margin-top: 40px;
    }

    .block_contact .container .item.mail .in_container a.e_mail {
        display: block;
        font-size: 3rem;
        font-weight: 700;
        letter-spacing: .05em;
        transition: all .3s ease;

    }

    .block_contact .container .item.mail .in_container a.e_mail:hover {
        opacity: 0.5;
    }

    .block_contact .container .item.mail .in_container a.go_form {
        width: 50%;
        display: block;
        margin-inline: auto;
        border-radius: 100vh;
        padding: 12px 0;
        background-color: var(--main-color);
        color: #fff;
        transition: all .3s ease;
    }

    .block_contact .container .item.mail .in_container a.go_form:hover {
        background-color: var(--main-backcolor);
    }

    .block_contact .container .item.mail .in_container p {
        margin: 15px 0 !important;
    }
}


.belt_slider {
    overflow: hidden;
    width: 100%;
}

.belt_slider .slider-track {
    display: flex;
    width: calc(200%);
    /* アイテム数×2 */
    animation: scroll 20s linear infinite;
}

.belt_slider .slide {
    flex-shrink: 0;
    margin-right: 20px;
    text-align: center;
    line-height: 100px;
    font-size: 12rem;
    letter-spacing: .1em;
    font-weight: 700;
}

/* アニメーション */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

    /* スライド全体の半分 */
}

@media (max-width: 520px) {
    .belt_slider .slider-track {
        display: flex;
        animation: scroll 10s linear infinite;
    }

    .belt_slider .slide {
        font-size: 7rem;
    }

}