<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";


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

font-size

----------------------------------------------------------  */
@media screen and (min-width: 1040px) {
    html {
        font-size: 10px !important;
    }
}

html {
    font-size: 0.833vw;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.302vw;
    }
}

@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }
}

@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }
}

/*
@media screen and (max-width: 540px) and (min-width: 415px) {

}
*/


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

base

----------------------------------------------------------  */
:root {
    --prime-color: #D71518;
    --bg-color: #F1F4F6;
}

body {
    color: #000;
    font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2.0;
}

a {
    color: #000;
}


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

header

----------------------------------------------------------  */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5rem;
    position: relative;
    z-index: 9999;
}

header h1 {
    width: 24rem;
    line-height: 1;
}

header &gt; div {
    display: flex;
    align-items: center;
}

.header-tel {
    background: var(--bg-color);
    font-size: 1rem;
    line-height: 1;
    color: #626262;
    margin-left: 2.5rem;
    height: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
}

.header-tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 2.6rem;
    color: var(--prime-color);
    margin: 0.6rem 0;
    letter-spacing: -0.005em;
}

.header-tel a span {
    font-size: 2rem;
    margin: 0 0.3rem 0 0;
}

.header-tel dl {
    display: flex;
    justify-content: center;
}

.header-tel dl dt::after {
    content: "：";
}

.header-cv ul {
    display: flex;
    line-height: 1;
}

.header-cv a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 12rem;
    height: 10rem;
    font-size: 1.2rem;
}

.header-cv a small {
    display: block;
    font-size: 1rem;
    margin-top: 0.7rem;
}

.header-cv a span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2rem !important;
}

.header-cv ul li:first-child a {
    background: var(--prime-color);
}

.header-cv ul li:last-child a {
    background: #B61E14;
}

.header-cv ul li:first-child a:hover {
    background: #b50202;
    opacity: 1;
}

.header-cv ul li:last-child a:hover {
    background: #820402;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 6rem;
        padding: 0;
    }

    header h1 {
        width: 20rem;
    }
}


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

gnav

----------------------------------------------------------  */
ul.gnav {
    display: flex;
}

ul.gnav &gt; li {
    font-size: 1.2rem;
    font-weight: bold;
}

ul.gnav &gt; li:not(:first-child) {
    margin-left: 2.5rem;
}

ul.gnav &gt; li &gt; a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10rem;
}

ul.gnav &gt; li &gt; a:hover {
    color: var(--prime-color);
    opacity: 1;
}

.gnav-service {
    position: absolute;
    top: 10rem;
    left: 0;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
    padding: 6rem 0;
    pointer-events: none;
}

.gnav-service ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1040px;
    margin: 0 auto;
}

ul.gnav &gt; li:hover &gt; .gnav-service {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

ul.gnav &gt; li:hover &gt; .gnav-service ul li a:hover {
    opacity: 1;
}

.gnav-service ul li {
    border: solid 1px rgba(255, 255, 255, 0.7);
}



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

footer

----------------------------------------------------------  */
footer {
    background: #4F4F4F;
    color: #fff;
    padding: 4rem 10rem;
}

footer a {
    color: #fff;
}

footer .logo {
    width: 24rem;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-wrap nav {
    margin-bottom: 1.5rem;
}

.footer-wrap nav + div {
    text-align: right;
}

.footer-wrap nav ul {
    display: flex;
    font-weight: bold;
}

.footer-wrap nav ul li:not(:first-child) {
    margin-left: 3rem;
}

footer small {
    display: block;
    text-align: center;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    footer {
        padding: 6rem 3rem;
    }

    footer .logo {
        width: 28rem;
        margin: 0 auto 3rem auto;
    }

    .footer-wrap {
        display: block;
        margin-bottom: 6rem;
    }

    .footer-wrap nav {
        margin-bottom: 2rem;
    }

    .footer-wrap nav + div {
        text-align: center;
    }

    .footer-wrap nav ul {
        display: block;
    }

    .footer-wrap nav ul li:not(:first-child) {
        margin-left: 0;
    }

    .footer-wrap nav ul li {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
}



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

page-ttl

----------------------------------------------------------  */
.page-ttl {
    background: url(../img/bg-page.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.page-ttl &gt; div {
    background: rgba(0, 0, 0, 0.4);
}

.page-ttl h2 {
    color: #fff;
    font-size: 3.6rem;
    letter-spacing: 0.03em;
    line-height: 1;
    text-align: center;
    padding: 11rem 0 10rem 0;
}

.page-ttl h2 span {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--prime-color);
    font-size: 1.6rem;
    display: block;
    margin-top: 1.4rem;
}

.bg-service {
    background: url(../img/bg-service.jpg) no-repeat center !important;
    background-size: cover !important;
}

.bg-service &gt; div {
    background: rgba(0, 0, 0, 0);
}

.bg-service h2 {
    padding: 13rem 0;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
    .bg-service h2 {
        padding: 10rem 0;
        font-size: 3.2rem;
    }
}



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

style

----------------------------------------------------------  */
/* serif */
.serif {
    font-family: "游明朝", "YuMincho", 'Noto Serif JP', serif;
}

/* heading */
.heading {
    line-height: 1;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    position: relative;
}

.heading span {
    display: block;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 4.8rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.heading small {
    display: block;
    position: relative;
    color: var(--prime-color);
    font-weight: normal;
}

.heading2 {
    background: var(--bg-color);
    font-size: 1.8rem;
    padding: 0.5rem 1.8rem 0.5rem 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.heading3 {
    text-align: center;
    line-height: 1;
    font-size: 2.4rem;
    position: relative;
    margin-bottom: 6rem;
}

.heading3 img {
    width: 10rem;
    margin: 0 auto 2rem auto;
    display: block;
}

.heading3::after {
    content: "";
    width: 6rem;
    height: 3px;
    background: var(--prime-color);
    margin: 2rem auto 0 auto;
    display: block;
}

.heading_text_line span {
    line-height: 1.7 !important;
    font-size: 3.2rem !important;
    margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
    .heading3 {
        font-size: 2.2rem;
    }
}

/* more */
.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: #fff;
    width: 24rem;
    padding: 2.4rem 0;
    transition: all .3s;
    position: relative;
    border-radius: 6rem;
    background: var(--prime-color);
    font-weight: bold;
}

.more .material-icons:last-of-type {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    font-size: 1.4rem !important;
    transition: all .3s;
}

.more.wh {
    border: solid 1px #fff;
    background: none;
}

.more.wh:hover {
    background: #fff;
    color: var(--prime-color);
    opacity: 1;
}

.more.wh:hover span {
    right: 1.5rem;
}

.more.red {
    color: var(--prime-color);
    border: solid 1px var(--prime-color);
    background: #fff;
}

.more.red:hover {
    background: var(--prime-color);
    color: #fff;
    opacity: 1;
}

.more.red:hover span {
    right: 1.5rem;
}

@media screen and (max-width: 767px) {
    .more {
        width: 100%;
    }
}

/* ttl */
.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    padding: 1rem 0 1.4rem 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 4px var(--prime-color);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

/* detail */
dl.detail {
    display: flex;
    flex-wrap: wrap;
}

dl.detail &gt; dt {
    font-weight: bold;
    padding: 1.5rem;
    width: 30%;
}

dl.detail &gt; dt::before {
    content: "◆";
    color: var(--prime-color);
    margin-right: 0.2rem;
}

dl.detail &gt; dd {
    padding: 1.5rem;
    width: 70%;
}

dl.bk &gt; dt,
dl.bk &gt; dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
    dl.detail {
        display: block;
    }

    dl.detail &gt; dt {
        font-weight: bold;
        padding: 1.2rem 1.2rem 1.2rem 1.2rem;
        width: 100%;
        background: #fafafa;
    }

    dl.detail &gt; dd {
        padding: 1.2rem 1.2rem 1.2rem 1.2rem;
        width: 100%;
    }

    dl.bk &gt; dt:first-of-type {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }
}

/* note */
.note {
    font-size: 1.2rem;
    opacity: 0.85;
}



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

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: -1;
    opacity: 0;
    background: #fff;
}

.open nav.gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
}

.gnav-sp-inner {
    padding: 3rem 2.5rem 6rem 2.5rem;
}

.gnav-sp-inner .gnav-sp-nav {
    margin-bottom: 4rem;
}

.gnav-sp-inner .gnav-sp-nav &gt; li {
    font-size: 1.8rem;
    font-weight: bold;
}

.gnav-sp-inner .gnav-sp-nav &gt; li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.gnav-sp-nav-service {
    margin-left: 4rem;
}

.gnav-sp-nav-service li {
    font-weight: normal;
    font-size: 1.6rem;
}

.gnav-sp-nav-service li:not(:last-child) {
    margin-bottom: 1rem;
}

.gnav-sp-nav-service li a {
    display: flex;
    align-items: center;
}


.gnav-sp-cv {
    display: flex;
    align-items: center;
}

.gnav-sp-cv li {
    width: 50%;
}

.gnav-sp-cv li a {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem;
    line-height: 1;
    height: 10rem;
}

.gnav-sp-cv li:first-child a {
    background: #d71518;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gnav-sp-cv li:last-child a {
    background: #b50202;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gnav-sp-cv li:last-child a span {
    display: block;
    font-size: 2rem !important;
    margin-bottom: 0.3rem;
}

.gnav-sp-cv small {
    display: block;
    font-weight: normal;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.gnav-sp-tel {
    background: var(--bg-color);
    padding: 2rem 0;
    font-weight: normal;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
}

.gnav-sp-tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prime-color);
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    line-height: 1;
}

.gnav-sp-tel a span {
    font-size: 2.8rem;
    margin-top: 0.1rem;
    margin-right: 0.5rem;
}

.gnav-sp-tel dl {
    display: flex;
    justify-content: center;
}

.gnav-sp-tel dl dt::after {
    content: "：";
}

.gnav-sp-nav &gt; li &gt; a {
    display: block;
    padding: 2rem;
}

/* toggle_btn */
.toggle_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    transition: all .5s;
    cursor: pointer;
    z-index: 100000;
    background: var(--prime-color);
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 2rem;
    width: 2rem;
    height: 2px;
    background-color: #fff;
    transition: all .4s;
}

.toggle_btn span:nth-child(1) {
    top: 1.9rem;
}

.toggle_btn span:nth-child(2) {
    top: 2.7rem;
}

.toggle_btn span:nth-child(3) {
    top: 3.5rem;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(0.8rem) rotate(-45deg);
    transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-0.8rem) rotate(45deg);
    transform: translateY(-0.8rem) rotate(45deg);
}

/* mask */
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}



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

local menu

----------------------------------------------------------  */
ul.lcmenu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    justify-content: space-between;
}

ul.lcmenu li {
    width: 32%;
    margin-right: 0.5%;
    text-align: center;
    margin-bottom: 1%;
}

ul.lcmenu li:nth-child(3n) {
    margin-right: 0;
}

ul.lcmenu li a {
    display: block;
    padding: 1.5rem 0;
    border: solid #333 1px;
    background: #fff;
}

ul.lcmenu li.current a {
    color: #fff;
    border: none;
    background: #a6080f;
}

@media screen and (max-width: 767px) {
    ul.lcmenu li {
        width: 49%;
        margin-right: 0;
        margin-bottom: 2%;
    }
}



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

menu

----------------------------------------------------------  */
/* course */
.course dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    width: 100%;
}

.course dl dt {
    width: 14rem;
    padding: 0.5rem 0;
    font-weight: bold;
}

.course dl dd {
    width: calc(100% - 14rem);
    padding: 0.5rem 0;
}

.course dl dt.price {
    margin-top: 0.3rem;
}

.course dl dt.price + dd span:nth-child(1) {
    font-size: 2rem;
    font-weight: bold;
}

.course dl dt.price + dd span:nth-child(2) {
    font-size: 1rem;
    margin-left: 0.2rem;
    vertical-align: 1px;
}

.course dl {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    /* コース下線 */
}

.course dl dt.price + dd {
    color: #dbaf4c;
    /* コース価格カラー */
}

/* menu list */
dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.var,
dl.menu-list dt.var + dd {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー下線カラー */
}

dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー上線カラー */
}

dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd {
    background: rgba(0, 0, 0, 0.025);
    /* メニュー背景色 */
}

dl.menu-list dt.var + dd dl dt:nth-of-type(odd) {
    background: none !important;
}

dl.menu-list dt.var + dd dl dt:nth-of-type(odd) + dd {
    background: none !important;
}

dl.menu-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

dl.menu-list dt {
    padding: 1.2rem 1.5rem;
    width: 65%;
    font-weight: bold;
}

dl.menu-list dt span {
    display: block;
    font-size: 70%;
    line-height: 1.8;
    font-weight: normal;
}

dl.menu-list dd {
    padding: 1.2rem 1.5rem 0 1.2rem;
    text-align: right;
    width: 35%;
    font-weight: bold;
}

dl.menu-list dd span:nth-child(1) {
    font-weight: bold;
    font-size: 1.8rem;
}

dl.menu-list dd span:nth-child(2) {
    font-size: 0.9rem;
    margin-left: 0.2rem;
}

dl.menu-list dt.var + dd dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

dl.menu-list dt.var + dd dl dt {
    border-bottom: none;
    border-top: none;
    font-size: 70%;
    text-align: right;
    padding: 0;
    width: 65%;
}

dl.menu-list dt.var + dd dl dd {
    border-bottom: none;
    border-top: none;
    padding: 0;
    width: 35%;
}

@media screen and (max-width: 767px) {
    dl.menu-list {
        display: block;
    }

    dl.menu-list dt {
        width: 100%;
        border-bottom: none;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }

    dl.menu-list dd {
        width: 100%;
        border-top: none;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    dl.menu-list dt:first-child + dd {
        border-top: none;
    }

    dl.menu-list dt.var {
        border-bottom: none;
    }
}



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

gallery

----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    width: 90%;
    margin: 8rem auto;
}

.gallery-list li {
    list-style: none;
    margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
    border-radius: 50%;
    height: 14vw;
    width: 14vw;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 0;
    text-align: center;
    width: 14vw;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 767px) {
    .gallery-list {
        margin: 4rem auto;
        width: 95%;
    }

    .gallery-list li {
        margin: 0 .5rem 1.5rem .5rem;
    }

    .gallery-list img {
        width: 20vw;
        height: 20vw;
    }

    .gallery-list span {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem auto 0 auto;
        width: 20vw;
    }
}



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

layout

----------------------------------------------------------  */
.container {
    margin: 8rem auto;
    width: 80%;
    max-width: 1040px;
}

.container .inner {
    display: flex;
    justify-content: space-between;
}

.container .inner &gt; div:first-of-type {
    width: 35%;
}

.container .inner &gt; div:last-of-type {
    width: 60%;
}

.container p a {
    color: var(--prime-color);
}

@media screen and (max-width: 767px) {
    .container {
        margin: 6rem 2rem;
        width: auto;
    }

    .container .inner {
        display: block;
    }

    .container .inner &gt; div:first-of-type {
        width: 100%;
        margin-bottom: 2rem;
    }

    .container .inner &gt; div:last-of-type {
        width: 100%;
    }
}



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

display

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

    .eco_p02 span {
        font-size: 12px;
    }
}

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

    .eco_p02 span {
        font-size: 12px;
    }
}



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

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
    z-index: 999;
}

#page-top a {
    background: var(--prime-color);
    color: #fff;
    width: 7rem;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 2rem;
        right: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;
    }

    #page-top a {
        width: 6rem;
        height: 6rem;
    }
}



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

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover {
    opacity: 0.4;
    filter: alpha(opacity=60);
}

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



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

margin

----------------------------------------------------------  */
.mb10 {
    margin-bottom: 1rem !important;
}

.mb15 {
    margin-bottom: 1.5rem !important;
}

.mb20 {
    margin-bottom: 2.0rem !important;
}

.mb25 {
    margin-bottom: 2.5rem !important;
}

.mb30 {
    margin-bottom: 3.0rem !important;
}

.mb35 {
    margin-bottom: 3.5rem !important;
}

.mb40 {
    margin-bottom: 4.0rem !important;
}

.mb45 {
    margin-bottom: 4.5rem !important;
}

.mb50 {
    margin-bottom: 5.0rem !important;
}

.mb55 {
    margin-bottom: 5.5rem !important;
}

.mb60 {
    margin-bottom: 6.0rem !important;
}

.mb65 {
    margin-bottom: 6.5rem !important;
}

.mb70 {
    margin-bottom: 7.0rem !important;
}

.mb75 {
    margin-bottom: 7.5rem !important;
}

.mb80 {
    margin-bottom: 8.0rem !important;
}

.mb85 {
    margin-bottom: 8.5rem !important;
}

.mb90 {
    margin-bottom: 9.0rem !important;
}

.mb95 {
    margin-bottom: 9.5rem !important;
}

.mb100 {
    margin-bottom: 10.0rem !important;
}



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

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}



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

Google翻訳

----------------------------------------------------------  */
#google_translate {
    position: absolute;
    z-index: 9999;
}

@media screen and (min-width: 768px) {
    #google_translate {
        right: 0;
        top: 0;
    }

    .privacy_title01 {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
    }

    .privacy_footer_contact p {
        padding: 20px 10px;
    }

    .privacy_footer_contact {
        border: solid 2px #000;
        text-align: center;
        width: 50%;
        margin: 0 auto;
        margin-top: 60px;
    }

    .privacy_footer_contact p a {
        color: #000;
        text-decoration: underline;
    }

    .privacy_title02 {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .tableprivacy_title {
        margin-top: 40px;
        font-size: 1.6rem;
    }

    .tableprivacy_title span {
        text-decoration: underline;
    }

    .privacy_table01 {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin-top: 10px;
    }

    .privacy_table01 th:first-child {
        border-radius: 5px 0 0 0;
    }

    .privacy_table01 th:last-child {
        border-radius: 0 5px 0 0;
        border-right: 1px solid #3c6690;
    }

    .privacy_table01 th {
        text-align: center;
        color: #000;
        background: #fff;
        border-left: 1px solid #000;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
        width: 25%;
        padding: 10px 0;
    }

    .privacy_table01 td {
        text-align: left;
        /*        padding-left: 15px;*/
        border-left: 1px solid #000;
        border-bottom: 1px solid #000;
        border-top: none;
        /*        box-shadow: 0px -3px 5px 1px # inset;*/
        width: 25%;
        padding: 10px 0;
        padding-left: 17px;
    }

    .first_table01 {
        border-top: 1px solid #000 !important;
    }

    .privacy_table01 td:last-child {
        border-right: 1px solid #000;
    }

    .privacy_table01 tr:last-child td:first-child {
        border-radius: 0 0 0 5px;
    }

    .privacy_table01 tr:last-child td:last-child {
        border-radius: 0 0 5px 0;
    }

    .mt10 {
        margin-top: 15rem;
    }

    .privacy_text_simple01 p {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    #google_translate {
        position: fixed;
        left: 0;
        bottom: 0;
    }

    .privacy_title01 {
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
    }

    .privacy_footer_contact p {
        padding: 20px 10px;
    }

    .privacy_footer_contact {
        border: solid 2px #000;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        margin-top: 60px;
    }

    .privacy_footer_contact p a {
        color: #000;
        text-decoration: underline;
    }

    .privacy_title02 {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .tableprivacy_title {
        margin-top: 40px;
        font-size: 1.6rem;
    }

    .tableprivacy_title span {
        text-decoration: underline;
    }

    .privacy_table01 {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin-top: 10px;
    }

    .privacy_table01 th:first-child {
        border-radius: 5px 0 0 0;
    }

    .privacy_table01 th:last-child {
        border-radius: 0 5px 0 0;
        border-right: 1px solid #3c6690;
    }

    .privacy_table01 th {
        text-align: center;
        color: #000;
        background: #fff;
        border-left: 1px solid #000;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.3) inset;
        width: 25%;
        padding: 10px 0;
    }

    .privacy_table01 td {
        text-align: left;
        /*        padding-left: 15px;*/
        border-left: 1px solid #000;
        border-bottom: 1px solid #000;
        border-top: none;
        /*        box-shadow: 0px -3px 5px 1px # inset;*/
        width: 25%;
        padding: 10px 0;
        padding-left: 10px;
    }

    .first_table01 {
        border-top: 1px solid #000 !important;
    }

    .privacy_table01 td:last-child {
        border-right: 1px solid #000;
    }

    .privacy_table01 tr:last-child td:first-child {
        border-radius: 0 0 0 5px;
    }

    .privacy_table01 tr:last-child td:last-child {
        border-radius: 0 0 5px 0;
    }

    .mt10 {
        margin-top: 15rem;
    }

    .privacy_text_simple01 p {
        font-size: 1.6rem;
    }
}

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

sns

----------------------------------------------------------  */
#social_share {
    width: 135px;
    height: 30px;
}

#social_share ul {
    display: flex;
}

#social_share li:not(:first-child) {
    margin-left: 5px;
}

#social_share li a {
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    display: block;
    height: 30px;
    overflow: hidden;
    text-indent: -999px;
    width: 30px;
}

#social_share .line a {
    background-image: url("../img/social_line.png");
    text-decoration: none;
    background-size: 30px;
}

#social_share .facebook a {
    background-image: url("../img/social_facebook.png");
    text-decoration: none;
    background-size: 30px;
}

#social_share .twitter a {
    background-image: url("../img/social_twitter.png");
    text-decoration: none;
    background-size: 30px;
}

#social_share .hatena a {
    background-image: url("../img/social_hatena.png");
    text-decoration: none;
    background-size: 30px;
}
</pre></body></html>