@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&family=Source+Serif+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Sawarabi+Mincho');
@import url('https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c');
@import url('https://pro.fontawesome.com/releases/v5.13.0/css/all.css');

/*** RESET ***/

*,
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,
input,
select,
textarea,
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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;
}

body {
    -webkit-text-size-adjust: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input,
select,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}


/*** BASE ***/

*,
*:visited,
*:focus,
*:active,
*:link {
    text-decoration: none;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

h1 {
    margin-top: -0.5rem;
    font-size: 2em;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

h2 {
    margin-bottom: 2rem;
    font-size: 4em;
    font-family: 'Source Serif Pro', serif;
    color: #fff;
}

h3 {
    font-size: 1.5em;
    font-family: "M PLUS Rounded 1c";
    font-weight: 400;
    color: #fff;
}

h4 {
    margin-bottom: 2rem;
    font-size: 2em;
    font-weight: 400;
    font-family: 'Saira Condensed', sans-serif;
}

h5 {
    font-size: 1.5em;
}

h6 {
    font-size: 1.2em;
}

a {
    color: currentColor;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    color: #000000;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
}

@media screen and (max-width: 980px) {
    h1 {
        margin-top: -2rem;
        font-size: 6vw;
    }
}

@media screen and (max-width: 767px) {
    h2 {
        width: 100vw;
        font-size: 12vw;
        line-height: 1.5;
    }
    h3 {
        margin: auto;
        width: 80vw;
        font-size: 6vw;
        line-height: 2;
    }
}


/*** STYLE ***/


/* Site Common */


/* Site Header Common */

header {
    margin: 0 calc(50vw - 50%);
    padding: 0 calc(50% - 50vw);
    width: 100vw;
    height: 8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

header h1 {
    margin: 0 0 0 calc(100vw - 95%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

header h1 a span {
    font-weight: 100;
}

header nav {
    margin: 0 calc(100vw - 95%) 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav ul {
    margin-bottom: -0.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

header nav ul li {
    margin-left: 2rem;
}

header nav ul li a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2rem;
}

@media screen and (max-width: 980px) {
    header h1 {
        height: 3rem;
        position: absolute;
        top: .5rem;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    header h1 a {
        line-height: 3rem;
    }
    header nav ul {
        width: 100vw;
        height: 100vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 100vw;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        background-color: rgba(0, 0, 0, 0.8);
    }
    header nav ul li {
        margin: 0 auto;
        width: 10rem;
        height: 5rem;
        line-height: 5rem;
        text-align: center;
    }
    header nav ul li:first-child {
        margin-top: 2rem;
    }
    header nav ul li:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    header nav ul li a {
        width: 100%;
        height: 100%;
        display: inline-block;
    }
    header nav ul li a:hover {
        border: none !important;
    }
}

#container {
    width: 100vw;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: hidden;
    z-index: 1;
}

main {
    position: relative;
    z-index: 3;
}

main section {
    margin: 0 auto;
    padding-bottom: 8rem;
    max-width: 980px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* Top Container */

body#top_page #container {
    position: relative;
    background: url(../images/top_image_or.jpg) center top/cover fixed no-repeat;
}


/* Top Header */

body#top_page header h1 a,
body#top_page header nav ul li a {
    color: #fff;
}

body#top_page header nav ul li a:hover {
    border-bottom: #fff solid 1px;
}


/* Common Header */

body.common_page header nav ul li a:hover {
    border-bottom: #000 solid 1px;
}


/* Scroll Fixed Animation */

header.is-animation {
    padding: 1rem 0;
    height: 2.5rem;
    background: #fff;
    -webkit-box-shadow: 0 1px 5px #666;
    box-shadow: 0 1px 5px #666;
}

body#top_page header.is-animation h1 a,
body#top_page header.is-animation nav ul li a {
    color: #000;
}

body#top_page header.is-animation nav ul li a:hover {
    border-bottom: #000 solid 1px;
}

@media screen and (max-width: 980px) {
    header.is-animation {
        padding: 0;
        height: 4rem;
        background: #000;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    header.is-animation h1 a,
    header.is-animation nav ul li a {
        color: #fff !important;
    }
    header.is-animation nav ul li a:hover {
        border-bottom: #fff solid 1px;
    }
}


/* Drawer Manu */

#drawer_button {
    width: 3rem;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: .5rem;
    right: 50vw;
    transform: translateX(46vw);
    visibility: hidden;
    z-index: 6;
}

#drawer_button span,
#drawer_button span::before,
#drawer_button span::after {
    width: 2rem;
    height: 2px;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    background: #ccc;
}

#drawer_button span {
    margin: auto;
    position: relative;
    display: block;
}

#drawer_button span::before,
#drawer_button span::after {
    content: "";
    position: absolute;
}

#drawer_button span::before {
    top: -0.6rem;
}

#drawer_button span::after {
    top: 0.6rem;
}

@media screen and (max-width: 980px) {
    #drawer_button {
        visibility: visible;
    }
}


/* Drawer Button Push */

#drawer_button.open span {
    background: transparent;
}

#drawer_button.open span::before {
    -webkit-transform: translateY(0.6rem) rotate(45deg);
    -ms-transform: translateY(0.6rem) rotate(45deg);
    transform: translateY(0.6rem) rotate(45deg);
}

#drawer_button.open span::after {
    -webkit-transform: translateY(-0.6rem) rotate(-45deg);
    -ms-transform: translateY(-0.6rem) rotate(-45deg);
    transform: translateY(-0.6rem) rotate(-45deg);
}

.drawer_menu.open {
    top: 0;
    left: calc(100vw - 95vw);
}

.drawer_menu.open li a {
    color: #fff;
}

.open {
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}


/*** COMMON STYLE ***/


/* Top Main */

main#top_main {
    background: -o-linear-gradient(transparent 500px, #fff 500px);
    background: linear-gradient(transparent 500px, #fff 500px);
    text-align: center;
}

main#top_main section:nth-of-type(n+2) {
    margin: 0 2rem;
}

main#top_main section.main_cont {
    position: relative;
}

main#top_main section.main_cont h4 {
    width: 100%;
}

main#top_main section.main_cont h4 span {
    display: block;
    font-size: .8em;
    line-height: 2;
}

main#top_main section.main_cont p.main_cont_summary {
    margin: 0 2rem 0 auto;
    width: calc(100% - 27.75rem);
    height: auto;
    text-align: left;
    line-height: 1.6;
}

main#top_main section.main_cont p.main_cont_summary span {
    margin-top: 2rem;
    display: inline-block;
}

main#top_main section.main_cont p.view_all {
    margin: auto;
    height: 3rem;
    background-color: #a909be;
    border-radius: .3rem;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}

main#top_main section.main_cont p.view_all a {
    padding: 0 2rem;
    height: 100%;
    line-height: 3rem;
    display: inline-block;
    color: #fff;
}

main#top_main section.main_cont p.view_all:hover {
    opacity: .5;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}


/* Main Img */

main#top_main section#main_img {
    padding: 12rem 0 18rem;
    text-align: center;
}


/* Main Top */

main#top_main section#main_top img {
    margin: auto;
    width: 18rem;
    display: block;
    position: absolute;
    top: 8rem;
    left: 3rem;
    border: rgb(255, 255, 255) solid .5rem;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 #000;
    box-shadow: 0 0 5px 0 #000;
}

main#top_main section#main_top p#mama_name {
    padding: .5rem;
    width: auto;
    height: auto;
    position: absolute;
    top: 21rem;
    left: 8rem;
    border-radius: .3rem;
    background-color: rgba(255, 255, 255, 0.6);
    color: #000;
}


/* Main System */

main#top_main section#main_system p#pub_system {
    max-width: 100%;
}

main#top_main section#main_system p#pub_system span {
    margin-top: 1rem;
    display: block;
}

main#top_main section#main_system ul {
    margin: 2rem 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

main#top_main section#main_system ul li {
    margin: auto;
    width: calc(20% - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

main#top_main section#main_system ul li i {
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 5em;
}

main#top_main section#main_system ul li p {
    font-weight: bold;
}

main#top_main section#main_system ul li p span {
    display: block;
    background: -o-linear-gradient(transparent 50%, yellow 50%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, yellow));
    background: linear-gradient(transparent 50%, yellow 50%);
}

@media screen and (max-width: 767px) {
    main#top_main section#main_system ul li {
        margin-bottom: 3rem;
        width: calc(100% - 2rem);
    }
}


/* Main Menu */

main#top_main section#main_menu p#pub_menu {
    max-width: 100%;
}

main#top_main section#main_menu p#pub_menu span {
    margin-top: 1rem;
    display: block;
}

main#top_main section#main_menu ul {
    margin: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

main#top_main section#main_menu ul li {
    margin: 0 auto 3rem;
    width: calc(33.33333% - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

main#top_main section#main_menu ul li img {
    margin: 0 auto 1rem;
    width: 80%;
    display: inline-block;
    border: #ccc solid 5px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

main#top_main section#main_menu ul li h5 {
    margin-top: .5rem;
    font-size: 1.2em;
}

main#top_main section#main_menu ul li h5 span {
    margin-top: .5rem;
    display: block;
    font-size: .8em;
}

main#top_main section#main_menu ul li p {
    margin-top: 1rem;
}

@media screen and (max-width: 767px) {
    main#top_main section#main_menu ul {
        margin-bottom: 1rem;
    }
    main#top_main section#main_menu ul li {
        width: calc(100% - 2rem);
    }
}


/* Main Event */

main#top_main section#main_event img {
    margin: auto;
    width: 18rem;
    display: block;
    position: absolute;
    top: 8rem;
    right: 3rem;
    border: rgb(255, 255, 255) solid .5rem;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 #000;
    box-shadow: 0 0 5px 0 #000;
}

main#top_main section#main_event p#pub_event {
    margin: 0 auto 3rem 2rem;
    text-align: right;
}

@media screen and (max-width: 767px) {
    main#top_main section#main_event img {
        width: 60vw;
        position: unset;
        -ms-grid-column-align: center;
        justify-self: center;
    }
    main#top_main section#main_event p#pub_event {
        margin: 2rem 0 5rem 0;
        text-align: center;
    }
}


/* Main Gallery */

main#top_main section#main_gallery p#pub_gallery {
    max-width: 100%;
}

main#top_main section#main_gallery p#pub_gallery span {
    margin-top: 1rem;
    display: block;
}

main#top_main section#main_gallery ul {
    margin: 2rem 0 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

main#top_main section#main_gallery ul li {
    margin-bottom: 2rem;
    width: calc(100% * 1 / 3 - 2rem);
    height: auto;
}

main#top_main section#main_gallery ul li img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    main#top_main section#main_gallery ul li {
        width: 100%;
    }
}


/* Main Recruit */

main#top_main section#main_recruit img {
    margin: auto;
    width: 18rem;
    display: block;
    position: absolute;
    top: 8rem;
    left: 3rem;
    border: rgb(255, 255, 255) solid .5rem;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 5px 0 #000;
    box-shadow: 0 0 5px 0 #000;
}

main#top_main section#main_recruit p#pub_recruit {
    margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
    main#top_main section#main_recruit img {
        width: 60vw;
        position: unset;
        -ms-grid-column-align: center;
        justify-self: center;
    }
    main#top_main section#main_recruit p#pub_recruit {
        margin: 2rem 0 5rem 0;
        text-align: center;
    }
}

@media screen and (min-width: 769px) {
    main#top_main section#main_top {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media screen and (max-width: 767px) {
    main#top_main {
        background: -o-linear-gradient(transparent calc(100vw * 1.2), #fff calc(100vw * 1.2));
        background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
        background: linear-gradient(transparent calc(100vw * 1.2), #fff calc(100vw * 1.2));
    }
    main#top_main section#main_img {
        padding: 6rem 0 calc(100vw * 1 / 2);
    }
    main#top_main section#main_top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    main#top_main section#main_top img {
        position: unset;
        margin-bottom: 2rem;
        width: 60%;
    }
    main#top_main section#main_top p#mama_name {
        position: unset;
        border-top: #000 solid 1px;
        border-bottom: #000 solid 1px;
        border-radius: unset;
    }
    main#top_main section#main_top p#pub_introduction {
        margin: auto;
        width: 100%;
        text-align: center;
    }
    main#top_main section.main_cont p.main_cont_summary {
        width: 100%;
    }
    main#top_main section.main_cont p.view_all {
        margin-top: -3rem;
    }
}

@media screen and (max-width: 480px) {
    main#top_main section.main_cont h4 {
        font-size: calc(100vw * .07);
    }
}


/* Common Main */

main.common_main {
    margin-top: 10rem;
    padding: 0 2rem;
}

main.common_main section.main_section {
    width: 100%;
}

section.main_section h4 {
    margin-bottom: 5rem;
    text-align: center;
    font-size: 8em;
    letter-spacing: 1rem;
    text-indent: 1rem;
}

section.main_section h4 span {
    margin-top: 1rem;
    display: block;
    text-align: center;
    font-size: .25em;
}

@media screen and (max-width: 767px) {
    main.common_main {
        margin-top: 8rem;
    }
    section.main_section h4 {
        font-size: clamp(32px, calc(2rem + ((1vw - 3.2px) * 21.4765)), 128px);
        margin-bottom: 3rem;
    }
    section.main_section h4 span {
        font-size: 4vw;
    }
}


/* Footer */

footer {
    padding: 2rem 0 1rem;
    text-align: center;
    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;
    position: relative;
    background: #222;
    color: #fff;
    z-index: 4;
}

footer h4 {
    padding: 0 1.5rem;
    position: relative;
    display: inline-block;
    font-size: 1.5em;
}

footer h4:before,
footer h4:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 1rem;
    height: 1px;
    background-color: #fff;
}

footer h4:before {
    left: 0;
}

footer h4:after {
    right: 0;
}

footer a {
    border-bottom: #fff dotted 1px;
    color: #fff;
}

footer a:hover {
    border: none;
}

footer section {
    margin-bottom: 3rem;
    padding-top: 1rem;
    width: calc(33.33333% - 2rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

footer section img {
    margin-bottom: 1rem;
    display: block;
    border: #ccc solid 5px;
    border-radius: .3rem;
}

footer section address {
    font-family: "M PLUS Rounded 1c";
}

footer section address dl {
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: start;
}

footer section address dl dt {
    width: 2rem;
    line-height: 2;
}

footer section address dl dd {
    width: calc(100% - 2rem);
    line-height: 2;
}


/* Footer Map */

footer section#footer_map {
    position: relative;
}

footer section#footer_map::before,
footer section#footer_map::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 30rem;
    top: 3rem;
    background-color: #444;
}

footer section#footer_map::before {
    left: 0;
}

footer section#footer_map::after {
    right: 0;
}

footer section#footer_map iframe {
    margin-bottom: 1rem;
    width: 80%;
    height: 300px;
    border: #ccc solid 5px;
    border-radius: .3rem;
}

footer section#footer_map p {
    margin-bottom: 0;
    font-size: 1em;
}

footer section#footer_map p span {
    font-size: 1.5em;
}


/* Footer Contact */

#footer_contact form {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#footer_contact form .feedback-input {
    margin-bottom: 1rem;
    padding: .8rem;
    width: 100%;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1.15em;
    border: 2px solid #CC4949;
    border-radius: .3rem;
    line-height: 1.6;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    background-color: transparent;
    color: white;
}

#footer_contact form .feedback-input:hover,
#footer_contact form .feedback-input:focus {
    border: 2px solid #CC4949;
    box-shadow: 0 0 3px 2px #fff;
}

#footer_contact form textarea {
    height: 10rem;
    line-height: 1.6;
    resize: vertical;
}

#footer_contact form button {
    margin: -4px auto 0;
    padding: 10px 0;
    width: calc(50% - 1rem);
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    border: 0;
    border-radius: .3rem;
    cursor: pointer;
    font-size: 1.2em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 600;
}

#footer_contact form button[type="reset"] {
    border: #fff solid 2px;
    background: transparent;
    color: #fff;
}

#footer_contact form button[type="reset"]:hover {
    background: #fff;
    color: #222;
}

#footer_contact form button[type="submit"] {
    background: #d16e6e;
    color: #fff;
}

#footer_contact form button[type="submit"]:hover {
    background: #b42828;
    color: #fff;
}

@media screen and (max-width: 980px) {
    footer section {
        width: calc(100% - 2rem);
    }
    footer section#footer_map::before,
    footer section#footer_map::after {
        display: none;
    }
}


/*** SYSTEM PAGE ***/

#system_main #pub_system dl {
    border-radius: .3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

#system_main #pub_system dt,
#system_main #pub_system dd {
    font-weight: bold;
}

#system_main #pub_system dt {
    padding: 2rem 0 0;
}

#system_main #pub_system dd {
    padding: 1rem 0 2rem;
    font-family: 'Source Serif Pro', serif;
}

#system_main #pub_system dd small {
    margin-top: 1rem;
    padding: 0 1rem;
    display: block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: .25em;
    font-weight: 400;
}

#system_main #pub_system dt:nth-of-type(-n+2),
#system_main #pub_system dd:nth-of-type(-n+2) {
    background: #a909be;
    color: #fff;
}

#system_main #pub_system dt:first-of-type {
    padding-top: 3rem;
    border-radius: .5rem .5rem 0 0 / .5rem .5rem 0 0;
}

#system_main #pub_system dd:first-of-type {
    border-bottom: #fff dotted 1px;
}

#system_main #pub_system dd:nth-of-type(1) {
    font-size: 4rem;
}

#system_main #pub_system dd:nth-of-type(2) {
    font-size: 3rem;
}

#system_main #pub_system dt:nth-of-type(n+3),
#system_main #pub_system dd:nth-of-type(n+3) {
    border-left: #a909be solid 1px;
    border-right: #a909be solid 1px;
}

#system_main #pub_system dd:nth-of-type(n+3) {
    border-bottom: #a909be dotted 1px;
    font-size: 1.5rem;
}

#system_main #pub_system dd:last-child {
    border-bottom: #a909be solid 1px;
    border-radius: 0 0 .5rem .5rem / 0 0 .5rem .5rem;
}


/*** MENU PAGE ***/

#menu_main #pub_menu ul#menu_wrap {
    width: 100%;
    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;
}

ul#menu_wrap li.menu_list {
    margin-bottom: 8rem;
    padding: 1rem 2rem;
    width: 80%;
    position: relative;
    border: #eb75eb solid 2px;
    border-radius: .5rem;
}

ul#menu_wrap li.menu_list:last-of-type {
    margin-bottom: 0;
}

ul#menu_wrap li.menu_list h5 {
    padding: .5rem 1rem;
    width: auto;
    position: absolute;
    top: -2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    background-color: #fff;
}

ul#menu_wrap li.menu_list h5 span {
    display: block;
    line-height: 2;
    font-size: .5em;
}

ul#menu_wrap li.menu_list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.5em;
    line-height: 1.5;
}

ul#menu_wrap li.menu_list dl dt {
    padding: 1rem 0;
    width: calc(100% - 8rem);
    border-bottom: #aaa solid 1px;
}

ul#menu_wrap li.menu_list dl dd {
    padding: 1rem 0;
    width: 8rem;
    text-align: right;
    border-bottom: #aaa solid 1px;
}

ul#menu_wrap li.menu_list dl dt:last-of-type,
ul#menu_wrap li.menu_list dl dd:last-of-type {
    border-bottom: none;
}

@media screen and (max-width: 767px) {
    ul#menu_wrap li.menu_list {
        margin-bottom: 5rem;
        padding: 1rem 1rem;
        border: #eb75eb solid 2px;
    }
    ul#menu_wrap li.menu_list h5 {
        padding: .5rem .5rem;
        width: calc(100vw * .5);
        top: -1.5rem;
        font-size: calc(100vw * .05);
    }
    ul#menu_wrap li.menu_list dl {
        font-size: calc(100vw * .04);
    }
    ul#menu_wrap li.menu_list dl dt {
        width: calc(100% - calc(100vw * .2));
    }
    ul#menu_wrap li.menu_list dl dd {
        width: calc(100vw * .2);
    }
}


/*** EVENT PAGE ***/

#event_main #pub_event_intro h5 {
    margin-bottom: 1rem;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
}

#event_main #pub_event_intro h5:last-of-type {
    margin: 5rem 0 2rem;
    font-size: 2em;
    display: flex;
    align-items: center;
    align-self: center;
    position: relative;
    text-align: center;
    padding: 0 1rem;
    align-self: center;
    font-size: 2em;
    line-height: 2;
    border-radius: .5rem;
    background: #222;
    color: #fff;
}

#event_main #pub_event_intro p {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}

#event_main #pub_event_intro video {
    margin: 0 auto;
    width: 500px;
    height: auto;
}

@media screen and (max-width: 767px) {
    #event_main #pub_event_intro video {
        width: 80vw;
    }
}


/*** GALLERY PAGE ***/

#gallery_main #pub_gallery ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

#gallery_main #pub_gallery ul li {
    margin-bottom: 2rem;
    width: calc(100% * 1 /3 - 2rem);
    height: auto;
}

#gallery_main #pub_gallery ul li img {
    width: 100%;
    height: auto;
    display: inline-block;
    -o-object-fit: fill;
    object-fit: fill;
}

@media screen and (max-width: 767px) {
    #gallery_main #pub_gallery ul li {
        width: calc(100% - 2rem);
    }
}


/*** RECRUIT PAGE ***/

#recruit_main #pub_recruit p {
    margin-bottom: 4rem;
    padding: 0.6em;
    position: relative;
    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;
    text-align: center;
    font-size: 1.5em;
    border-radius: .3rem;
    background: #fae0ff;
}

#recruit_main #pub_recruit p::after {
    width: 0;
    height: 0;
    position: absolute;
    content: '';
    top: 100%;
    border: 15px solid transparent;
    border-top: 15px solid #fae0ff;
}

#recruit_main #pub_recruit p span {
    margin-top: .25rem;
    display: block;
    text-align: center;
    font-size: .75em;
}

#recruit_main #pub_recruit dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    text-align: center;
}

#recruit_main #pub_recruit dt,
#recruit_main #pub_recruit dd {
    margin: auto;
}

#recruit_main #pub_recruit dt {
    margin-bottom: 1rem;
    padding: 1rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    font-size: 1.5em;
}

#recruit_main #pub_recruit dt span {
    margin-top: .75rem;
    display: block;
    font-size: .6em;
    text-align: center;
}

#recruit_main #pub_recruit dt::before {
    content: '';
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 100px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black;
    border-radius: .3rem;
}

#recruit_main #pub_recruit dd {
    margin-bottom: 5rem;
    line-height: 1.6;
}

#recruit_main #pub_recruit small {
    display: block;
    text-align: center;
    font-size: 1.25em;
    line-height: 1.6;
}

#recruit_main #pub_recruit small span {
    margin-top: .75rem;
    display: block;
    font-size: .75em;
}


/*** CONTACT PAGE ***/

#contact_main #pub_contact p {
    margin-bottom: 4rem;
    padding: 0.6em;
    position: relative;
    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;
    text-align: center;
    font-size: 1.5em;
    border-radius: .3rem;
    background: #fae0ff;
}

#contact_main #pub_contact p::after {
    width: 0;
    height: 0;
    position: absolute;
    content: '';
    top: 100%;
    border: 15px solid transparent;
    border-top: 15px solid #fae0ff;
}

#contact_main #pub_contact p span {
    margin-top: .25rem;
    display: block;
    text-align: center;
    font-size: .75em;
}


/* Contact Form */

#contact_main #pub_contact form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#contact_main #pub_contact form .form_input {
    width: calc(50% - 1rem);
}

#contact_main #pub_contact form .form_input input,
#contact_main #pub_contact form .form_input textarea {
    width: 100%;
    box-sizing: border-box;
    border: #eb75eb solid 2px;
    border-radius: .3rem;
    font-size: 1.15em;
    line-height: 1.6;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    outline: 0;
}

#contact_main #pub_contact form .form_input input:hover,
#contact_main #pub_contact form .form_input textarea:hover {
    -webkit-box-shadow: 0 0 2px 1px #eb75eb, inset 0 0 2px #eb75eb;
    box-shadow: 0 0 2px 1px #eb75eb, inset 0 0 2px #eb75eb;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#contact_main #pub_contact form .form_input input:focus,
#contact_main #pub_contact form .form_input textarea:focus {
    -webkit-box-shadow: 0 0 2px 1px #eb75eb, inset 0 0 2px #eb75eb;
    box-shadow: 0 0 2px 1px #eb75eb, inset 0 0 2px #eb75eb;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#contact_main #pub_contact form .input_left {
    height: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact_main #pub_contact form .input_left input {
    height: 3.5rem;
    text-indent: 1rem;
}

#contact_main #pub_contact form .input_right textarea {
    padding: 1rem;
    min-width: 100%;
    min-height: 100%;
}

#contact_main #pub_contact form .button_area {
    margin: 3rem auto 0;
    min-width: 24rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#contact_main #pub_contact form .button_area button {
    width: 10rem;
    line-height: 2.4;
    border-radius: .3rem;
    font-size: 1.2em;
    font-weight: bold;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
}

#contact_main #pub_contact form .button_area .reset_btn {
    border: #222 solid 2px;
    background-color: transparent;
    color: #222;
}

#contact_main #pub_contact form .button_area .reset_btn:hover {
    background-color: #222;
    color: #fff;
}

#contact_main #pub_contact form .button_area .submit_btn {
    background-color: #eb75eb;
    color: #fff;
}

#contact_main #pub_contact form .button_area .submit_btn:hover {
    background-color: #b347b3;
}

@media screen and (max-width: 767px) {
    #contact_main #pub_contact form {
        flex-direction: column;
        align-items: center;
    }
    #contact_main #pub_contact form .form_input {
        width: calc(100vw - 2rem);
    }
    #contact_main #pub_contact form .input_right textarea {
        margin-top: 2rem;
        width: 100%;
        min-height: 10rem;
    }
    #contact_main #pub_contact form .button_area {
        min-width: none;
        width: 100%;
    }
    #contact_main #pub_contact form .button_area button {
        width: calc(50vw - 3rem);
    }
}


/*** THANKS PAGE ***/

#thanks_main #pub_thanks p {
    text-align: center;
}

#thanks_main #pub_thanks p span {
    margin-top: 1rem;
    display: inline-block;
    line-height: 1.6;
}

#thanks_main #pub_thanks a {
    margin-top: 1rem;
    padding: 1rem;
    display: inline-block;
    align-self: center;
    border-radius: .5rem;
    font-size: 1.6em;
    font-weight: bold;
    background: #a909be;
    color: #fff;
    transition: .5s ease;
}

#thanks_main #pub_thanks a:hover {
    opacity: .5;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
}