@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
text {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 16px;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #2e0215;
    vertical-align: baseline;

}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    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-collapse: collapse;
    border-spacing: 0;
}


/* 画像のフルード化 */

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

/* 大きい枠 */

body {
    background-image: url(/takomaru/images/bg.png);
    background-attachment: fixed;
}

.container {
    margin: 0 auto;
    max-width: 960px;
    text-align: center;
}

section {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
}

/* 文字設定*/
h3 {
    font-size: 24px;
}

h3::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 22px;
    background-color: #ff842c;
    position: relative;
    bottom: -3px;
    left: -5px;
}


/* ヘッダー部分 */

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

header h1 img {
    width: 180px;
    margin-top: 13px;
    margin-bottom: 5px;
    margin: 13px 0 5px 35px;
}

header h1 img a {
    display: block;
}

/* ヘッダー部分ナビ */

header #header_gnav ul {
    display: flex;
    align-items: flex-start;
}

header #header_gnav ul li {
    display: inline-block;
    margin-top: 12.5px;
    margin-bottom: 12.5px;
}

header #header_gnav ul li a {
    background-color: rgba(255, 255, 255, 0.6);
    width: 68px;
    height: 78px;
    padding: 10px 5px;
    margin-right: 10px;
    border-radius: 15px;
    display: block;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
}

.new_line {
    display: inline-block;
    font-size: 11px;
}

header #header_gnav ul li:first-child a {
    background-image: url(/takomaru/images/ico_menu.png);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: 60% 79%;
}

header #header_gnav ul li:nth-child(2) a {
    background-image: url(/takomaru/images/ico_service.png);
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: center 76%;
}

header #header_gnav ul li:nth-child(3) a {
    background-image: url(/takomaru/images/ico_concept.png);
    background-size: 56%;
    background-repeat: no-repeat;
    background-position: center 75%;
}

header #header_gnav ul li:nth-child(4) a {
    background-image: url(/takomaru/images/ico_access.png);
    background-size: 48%;
    background-repeat: no-repeat;
    background-position: center 75%;
    margin-right: 32px;
}

/* ローディング：参考 https://web-creates.com/code/jquery-loading-sessionstorage/*/

.loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
}

.loading.is-active {
    opacity: 0;
    visibility: hidden;
}

.loading-animation {
    width: 100vw;
    height: 100vh;
    transition: all 2s;
    background-color: #FFF;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.loading-animation.is-active {
    opacity: 1;
    visibility: visible;
}

/* スライドショー*/

main .slide_show {
    max-width: 95%;
    margin: 0 auto;

}

main .slide_show img {
    box-sizing: border-box;
    border: 1px solid #fff;
    border-radius: 15px;
}

/* トップページコンセプト */

main .main_massege {
    position: relative;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: center;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main .main_massege h2 {
    position: absolute;
    top: 20%;
    left: -13%;
    font-size: 36px;
    margin: 0 auto;
    width: 130%;
    height: 130%;
}

main .main_massege p {
    position: absolute;
    top: 60%;
    left: -50%;
    margin: 0 auto;
    width: 200%;
    height: 120%;
    line-height: 130%;
    text-align: center;
}

.main_massege_bg {
    background-image: url(/takomaru/images/bg_main.png);
    background-size: 100%;
    background-attachment: fixed;
}

/* トップページお知らせ */

.main_news {
    width: 100%;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.main_news h3 {
    padding: 15px 0;
}

.main_news h3::before,
.concept:first-child h3::before {
    content: none;
}

.main_news_flex,
.main_link_flex,
.concept_flex,
#footer_flex {
    display: flex;
    justify-content: space-between;
}

.main_news p {
    padding: 10px 30px;
    border-radius: 15px;
    margin-left: 60px;
    margin-bottom: 25px;
    background-color: #cc294b;
    color: #fff;
    text-align: center;
}

.main_news ul li {
    padding: 10px 140px 10px 0;
}

.main_news ul li time {
    padding: 0 30px;
}

/* トップページメニューに遷移 */

.main_photo {
    width: 53%;
    float: left;
    border-radius: 15px;
    margin: 32px 80px 48px 48px;
    box-shadow: -9px 9px 0px 0px rgba(242, 159, 4, 0.9);
}

#menu_link {
    overflow: hidden;
    margin-bottom: 32px;
    background-image: url(/takomaru/images/ico_octopus.svg);
    background-repeat: no-repeat;
    background-position: 98% 60%;
    background-size: 13%;
}

#menu_link h3 {
    padding-top: 40px;
    padding-bottom: 27px;
    text-align: left;
}

#menu_link p {
    text-align: left;
    line-height: 200%;
}


/* オレンジ色のボタン */

.btn_link a {
    display: block;
    width: 240px;
    height: 40px;
    line-height: 40px;
    background-color: #ff842c;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    margin-top: 50px;
    margin-left: calc(53% + 124px);
}

#menu_link p:last-child {
    display: block;
}

/* メインメニュー他リンク遷移
別箇所でまとめてflex→クラスで参照する */

#main_link {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding-top: 40px;
    padding-bottom: 45px;
    margin-bottom: 32px;
}

.main_link_flex img,
.concept ul li img {
    width: 300px;
    max-height: 200px;
    border-radius: 15px;
    border-radius: 8px;
    box-shadow: -9px 9px 0px 0px rgba(242, 159, 4, 0.9);
    margin-bottom: 17px;
    margin-left: 20px;
}

.ttle_page {
    height: 40px;
    width: 300px;
    line-height: 40px;
    border-radius: 20px;
    background-color: #cc294b;
    color: #fff;
    font-size: 24px;
    margin-left: 20px;
}


.main_link_flex p {
    margin-top: 10px;
}

.main_link_flex .btn_link a {
    margin: 0 auto;
}

.main_link_flex li .btn_link {
    margin-left: 20px;
}

/* フッター部分 */

html {
    background-color: #2e0215;
}

footer {
    background-color: #2e0215;
    overflow: hidden;
}

footer p,
footer p a,
footer li a,
footer p small {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 400;
}

#footer_logo {
    width: 160px;
    padding-right: 13px;
    padding-bottom: 90px;
    float: left;
}

#footer_flex address {
    margin-top: 45px;
}

.footer_address {
    display: block;
    width: 400px;
    text-align: left;
    line-height: 15px;
}

.footer_address p:last-child a {
    display: block;
    height: 30px;
    width: 20%;
    padding: 0 35px;
    margin-top: 7px;
    margin-left: 20px;
    border-radius: 15px;
    float: left;
    line-height: 30px;
    text-align: center;
    background-color: #35742a;
    font-size: 16px;
}

#footer_gnav {
    margin-top: 107px;
}

#footer_gnav ul li {
    display: inline-block;
    position: relative;
    margin-left: 5px;
}

#footer_gnav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: .5s;
}

#footer_gnav ul li a:hover::after {
    width: 100%;
}


footer p:last-child {
    padding-bottom: 20px;
}


/* リンク色 */
.link_color {
    color: #1a0dab;
}

/* hoverしたとき */

.footer_address p:last-child a:hover {
    background-color: #fff;
    color: #cc294b;
    font-weight: 700;
}

.btn_link a:hover {
    background-color: #fff;
    color: #ff842c;
    border: 1px solid #ff842c;
}

.link_color:hover {
    color: #100866;
}

.link_color:visited {
    color: #3F0866;
}

aside ul li a:hover {
    text-decoration-line: underline;
}

header #header_gnav ul li:nth-child(1) a:hover,
#menu #header_gnav ul li:nth-child(1) a {
    background-image: url(/takomaru/images/ico_menu.hover.png);
    text-align: center;
}

header #header_gnav ul li:nth-child(2) a:hover,
#service #header_gnav ul li:nth-child(2) a {
    background-image: url(/takomaru/images/ico_service.hover.png);
    text-align: center;
}


header #header_gnav ul li:nth-child(3) a:hover,
#concept #header_gnav ul li:nth-child(3) a {
    background-image: url(/takomaru/images/ico_concept_hover.png);
    text-align: center;
}

header #header_gnav ul li:nth-child(4) a:hover,
#access #header_gnav ul li:nth-child(4) a {
    background-image: url(/takomaru/images/ico_access_hover.png);
    text-align: center;
}

/* 各ページh2背景共通設定 */

.menu_bg,
.recruitment_bg,
.privacypolicy_bg,
.allergy_bg,
.concept_bg,
.service_bg,
.access_bg,
.contact_bg {
    background-repeat: no-repeat;
    background-size: cover;
    color: #2e0215;
    font-size: 48px;
    padding: 32px 0;
    text-align: center;
    letter-spacing: 4px;
    /* 文字間 */
    text-shadow: 2px 2px 5px #FFF,
        -2px 2px 5px #fff,
        2px -2px 5px #fff,
        -2px -2px 5px #fff;
}

/* 画面下部サイドメニュー */

aside ul {
    display: inline-block;
    display: flex;
    justify-content: space-between;
}

aside ul li a {
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    width: 460px;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    margin: 24px 0;
    padding: 12px 0;
}

/* パンくずリスト */
.breadcrumb {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: left;
    margin: 8px 0 16px 0;
    border-radius: 5px;
}

.breadcrumb ol li,
.breadcrumb ol li a {
    font-size: 12px;
    display: inline-block;
    padding: 2px 8px;
}

.breadcrumb ol li:last-child {
    position: relative;
}

.breadcrumb ol li:last-child::before {
    content: "≫";
    position: absolute;
    left: -9px;
}

.breadcrumb ol li a:visited {
    color: #100866;
}

/* メニューページ */
.menu_bg {
    background-image: url(/takomaru/images/bg_snav_menu.jpg);
}

/* メニュー詳細 */

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

.menu_flex li:nth-child(odd) {
    margin-right: 20px;
}

.menu_flex li {
    width: calc(50% - 10px);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    text-align: left;
    padding-bottom: 30px;
    margin-bottom: 25px;
}

.menu_flex li img {
    border-radius: 15px 15px 0 0;
    display: block;
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.title {
    font-size: 28px;
    padding: 12px 10px 20px 17px;
}

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

.price_flex div:first-child {
    padding-left: 17px;
    padding-right: 50px;
    border-right: 3px solid #cc294b;

}

.menu {
    font-size: 12px;
    padding-left: 0.5em;
}

.menu_price {
    font-size: 48px;
}

.price_flex div:nth-child(2) p:nth-child(2) {
    padding-right: 72px;
}

.menu_new {
    position: relative;
}

.new {
    position: absolute;
    display: block;
    width: 120px;
    height: 150px;
    top: -120px;
    right: 20px;
    z-index: 1;
}

.text_new {
    position: absolute;
    top: -100px;
    right: 45px;
    color: #fff;
    z-index: 2;
}


/* ドリンクメニュー */

#menu_drink .container img {
    display: block;
    width: 53%;
    margin: 48px 80px 48px 0;
    float: left;
    border-radius: 15px;


}

#menu_drink h3,
#menu_drink dl,
#menu_drink p {
    text-align: left;
    line-height: 20px;
}

#menu_drink h3 {
    padding-top: 58px;
    padding-bottom: 24px;
}

#menu_drink dt {
    float: left;
}

.drink_price {
    text-align: right;
}

#menu_drink dl dd:not(.drink_price) {
    text-indent: 1em;
}

.indent_line {
    padding: 1em;
}

#menu_drink .container,
#menu_drink dl {
    overflow: hidden;
}

#menu_drink p small {
    display: block;
    padding-top: 30px;
    font-size: 12px;
}

/* お子様向けサービス */
.service_bg {
    background-image: url(/takomaru/images/bg_snav_service.jpg);
}

.service:first-child .container {
    margin-bottom: 30px;
}

.service .container img {
    border-radius: 15px;
    float: left;
    width: 480px;
    margin: 48px 80px 48px 0;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service .container div:last-child {
    text-align: left;
}

.service .container h3 {
    padding-top: 58px;
    padding-bottom: 24px;

}

.service .container p {
    line-height: 24px;
    padding-bottom: 16px;
}

.service .container {
    overflow: hidden;
}

.service {
    background-image: url(/takomaru/images/ico_octopus.svg);
    background-repeat: no-repeat;
    background-size: 8%;
    background-position: 80% 80%;

}

/* たこ丸の想いページ */
.concept_bg {
    background-image: url(/takomaru/images/bg_snav_concept.jpg);
}

.concept img {
    width: 95%;
    border-radius: 16px;
    margin: 24px 0;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concept {
    margin-bottom: 24px;
}

.concept p {
    text-align: left;
    line-height: 36px;
    padding-left: 2em;
}

.concept p:last-child {
    padding-bottom: 24px;
}

.concept p span {
    display: inline-block;
}

.concept p .concept_text {
    display: inline-block;
    padding: 8px 0;
    font-size: 24px;
}

.concept .container {
    background-image: url(/takomaru/images/ico_octopus.svg);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 90% 90%;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.concept_sub {
    padding-bottom: 30px;
}

.concept_sub h3 {
    text-align: left;
    padding: 30px 0;
    padding-left: 1em;
}

.concept_flex .ttle_page {
    margin-top: 27px;
}

.concept_flex li p:last-child {
    margin: 10px 0;
}

div.image_circle1 {
    margin: 0 auto;
    overflow: hidden;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-image: url(/takomaru/images/img_concept_side1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 140%;
    box-shadow: -10px 10px 0px 0px rgba(242, 159, 4, 0.9);

}

div.image_circle2 {
    margin: 0 auto;
    overflow: hidden;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-image: url(/takomaru/images/img_concept_side2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 160%;
    box-shadow: -10px 9px 0px 0px rgba(242, 159, 4, 0.9);

}

div.image_circle3 {
    margin: 0 auto;
    overflow: hidden;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-image: url(/takomaru/images/img_concept_side3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 140%;
    box-shadow: -9px 9px 0px 0px rgba(242, 159, 4, 0.9);

}

/* アクセス */


.access_bg {
    background-image: url(/takomaru/images/bg_snav_access.jpg);
}

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

.access_flex .container div {
    text-align: left;
    padding: 30px 0;
    padding-left: 1em;
}

.access_flex .container iframe {
    margin: 30px;
    border-radius: 15px;
}

.access_flex dt {
    margin-top: 20px;
}

.access_flex dl {
    padding-left: 1em;
}


.access_flex p {
    padding-left: 1em;
    margin-top: 30px;
}

iframe {
    width: 45%;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* お問い合わせページ */

.contact {
    text-align: left;
    margin-bottom: 30px;
}

.contact_bg {
    background-image: url(/takomaru/images/bg_snav_contact.jpg);
}


.contact h3 {
    padding: 30px;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact h3::before {
    content: none;
}

.contact h3 span {
    font-size: 24px;
}

.contact p {
    line-height: 22px;
}

.contact p:last-child:not(td > p) {
    padding: 30px 0;
}

.contact_explanation {
    padding: 0 30px;
}

.ast {
    color: #cc294b;
}

.tel {
    font-size: 24px;
}

.contact_time {
    margin-left: 10px;
    font-size: 14px;
}

#entry_form {
    padding-left: 30px;
}

#entry_form th::before {
    content: '';
    font-size: 15px;
    background-color: #ff842c;
    padding-left: 10px;
}

#entry_form table tr:nth-child(5) th {
    padding-top: 1em;
}

#entry_form table tr:last-child th::before {
    content: none;
}

#entry_form input[type="text"],
#entry_form input[type="tel"],
#entry_form input[type="email"],
#entry_form textarea {
    width: 75%;
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 1em;
}

#entry_form input[type="tel"],
#entry_form input[type="email"] {
    margin-bottom: 0;
}

#entry_form textarea {
    width: 100%;
}

input,
textarea {
    cursor: pointer;
}

#entry_form table tr:nth-child(5) th {
    vertical-align: top;
}

#entry_form input[type="submit"] {
    width: 200px;
    height: 40px;
    background-color: #ff842c;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    text-align: center;
    margin: 30px;
}

#entry_form input[type="submit"]:hover {
    background-color: #fff;
    color: #ff842c;
    border: 1px solid #ff842c;
}

#entry_form small {
    display: block;
    font-weight: 400;
    padding-left: 1em;
    padding-bottom: 1em;
}


/* アレルギー情報ページ */

.allergy_menu {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    padding: 0 2em 8px 2em;
}

.allergy_bg {
    background-image: url(/takomaru/images/bg_snav_allergy.jpg);
}

.allergy_flex {
    display: flex;
    justify-content: space-between;
    text-align: left;
    border-radius: 15px;
    margin-bottom: 30px;
}

.allergy_flex section {
    background: none;
}

.allergy_menu p {
    padding: 30px 0;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.allergy_menu p span {
    font-size: 24px;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.allergy_flex section dt {
    margin-top: 20px;
}


/* 採用情報ページ */
.recruitment_bg {
    background-image: url(/takomaru/images/bg_snav_recruitment.jpg);
}

.recruitment {
    text-align: left;
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    margin-bottom: 32px;
    background-image: url(/takomaru/images/ico_octopus.svg);
    background-repeat: no-repeat;
    background-size: 20%;
    background-position: 90% 90%;

}


.recruitment_title {
    text-align: left;
    padding-top: 30px;
    padding-left: 1em;

}

.recruitment dt {
    margin-top: 20px;
}

.recruitment dl {
    padding-left: 2em;
}

.recruitment img {
    width: 40%;
    height: 40%;
    border-radius: 15px;
    margin-right: 24px;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* プライバシーポリシーページ */
.privacypolicy_bg {
    background-image: url(/takomaru/images/bg_snav_privacypolicy.jpg);
}

.privacypolicy {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;

}

.privacypolicy section {
    text-align: left;
    background: none;
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacypolicy section:last-child {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.privacypolicy section h3 {
    padding-top: 30px;
    padding-left: 1em;
}

.privacypolicy section p {
    padding: 1em 2em 0;
}