@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap);

*,
*:after,
*:before {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
}

.btn {
    background-color: #388e3c;
    border: 0.1rem solid #388e3c;
    border-radius: 2.9rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 400;
    height: 5.8rem;
    line-height: 5.6rem;
    padding: 0 6rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus,
.btn:hover {
    background-color: #2f7632;
    border-color: #2f7632;
    color: #fff;
    outline: 0;
    text-decoration: none !important;
}

@media (min-width: 960px) {
    .btn {
        padding: 0 7rem;
        border-radius: 3.25rem;
        height: 6.5rem;
        line-height: 6.3rem;
        font-size: 1.7rem;
    }
}

.btn-arrow {
    position: relative;
    min-width: 34.6rem;
}

.btn-arrow:after {
    font-family: 'icomoon';
    content: "\e90c";
    position: absolute;
    top: 0;
    right: 3.2rem;
    font-size: 1.8rem;
    height: 4.8rem;
}

@media (min-width: 960px) {
    .btn-lg {
        height: 7rem;
        border-radius: 3.5rem;
        font-size: 2rem;
        line-height: 6.8rem;
    }
}

.container {
    position: relative;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 116rem;
    width: 100%;
}

.container.one-column {
    max-width: 88rem;
}

.container.container-wide {
    max-width: 128rem;
}

.container-fluid {
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.row.row-no-padding {
    padding: 0;
}

.row.row-no-padding > .column {
    padding: 0;
}

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

.row.row-top {
    align-items: flex-start;
}

.row.row-bottom {
    align-items: flex-end;
}

.row.row-center {
    align-items: center;
}

.row.row-stretch {
    align-items: stretch;
}

.row.row-baseline {
    align-items: baseline;
}

.row .column {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}

.row .column.column-offset-10 {
    margin-left: 10%;
}

.row .column.column-offset-20 {
    margin-left: 20%;
}

.row .column.column-offset-25 {
    margin-left: 25%;
}

.row .column.column-offset-33,
.row .column.column-offset-34 {
    margin-left: 33.3333%;
}

.row .column.column-offset-40 {
    margin-left: 40%;
}

.row .column.column-offset-50 {
    margin-left: 50%;
}

.row .column.column-offset-60 {
    margin-left: 60%;
}

.row .column.column-offset-66,
.row .column.column-offset-67 {
    margin-left: 66.6666%;
}

.row .column.column-offset-75 {
    margin-left: 75%;
}

.row .column.column-offset-80 {
    margin-left: 80%;
}

.row .column.column-offset-90 {
    margin-left: 90%;
}

.row .column .column-top {
    align-self: flex-start;
}

.row .column .column-bottom {
    align-self: flex-end;
}

.row .column .column-center {
    align-self: center;
}

@media (min-width: 960px) {
    .row {
        flex-direction: row;
        margin-left: -1rem;
        width: calc(100% + 2rem);
    }

    .row.row-reverse {
        flex-direction: row-reverse;
    }

    .row .column {
        margin-bottom: inherit;
        padding: 0 1rem;
    }

    .row .column.column-10 {
        flex: 0 0 10%;
        max-width: 10%;
    }

    .row .column.column-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row .column.column-25 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row .column.column-30 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .row .column.column-33,
    .row .column.column-34 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .row .column.column-40 {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .row .column.column-50 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row .column.column-60 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .row .column.column-66,
    .row .column.column-67 {
        flex: 0 0 66.6666%;
        max-width: 66.6666%;
    }

    .row .column.column-70 {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .row .column.column-75 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .row .column.column-80 {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .row .column.column-90 {
        flex: 0 0 90%;
        max-width: 90%;
    }
}

a {
    color: #388e3c;
    text-decoration: underline;
}

a:focus,
a:hover {
    color: #388e3c;
    text-decoration: none;
}

dl,
ol,
ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

dl dl,
ol dl,
ul dl,
dl ol,
ol ol,
ul ol,
dl ul,
ol ul,
ul ul {
    margin-bottom: 0;
}

ol {
    list-style: decimal inside;
}

ul {
    list-style: disc inside;
}

ul li::marker {
    color: #388e3c;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.list-inline > li {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.list-inline > li a {
    display: inline-block;
    padding: 1rem 0.5rem;
}

dl {
    margin-top: 0;
    margin-bottom: 2rem;
}

dt,
dd {
    line-height: 1.6;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width: 960px) {
    .dl-horizontal dt {
        float: left;
        width: -2rem;
        clear: left;
    }

    .dl-horizontal dd {
        margin-left: 18rem;
    }
}

@media (max-width: 767px) {
    .dl-horizontal-sm dt {
        float: left;
        width: -2rem;
        clear: left;
    }

    .dl-horizontal-sm dd {
        margin-left: 18rem;
    }
}

b,
strong {
    font-weight: bold;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 500;
    margin-bottom: 1.4rem;
    margin-top: 0;
}

h1,
.h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2,
.h2 {
    font-size: 2.4rem;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: 2rem;
    line-height: 1.2;
}

h4,
.h4 {
    font-size: 1.8rem;
    line-height: 1.2;
}

h5,
.h5 {
    font-size: 1.4rem;
    line-height: 1.2;
}

h6,
.h6 {
    font-size: 1.2rem;
    line-height: 1.2;
}

@media (min-width: 960px) {

    h1,
    .h1 {
        font-size: 3.6rem;
    }

    h2,
    .h2 {
        font-size: 2.8rem;
    }

    h3,
    .h3 {
        font-size: 2.4rem;
    }

    h4,
    .h4 {
        font-size: 2rem;
    }
}

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

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

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

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

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #454d58;
}

.text-white {
    color: white;
}

.text-indent {
    display: inline-block;
    padding-left: 1em;
    text-indent: -1em;
}

.text-bold {
    font-weight: bold;
}

img {
    vertical-align: middle;
    max-width: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.img-circle {
    border-radius: 50%;
}

.img-rounded {
    border-radius: 0.5rem;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.media {
    display: flex;
    align-items: flex-start;
}

.media-body {
    flex: 1;
    line-height: 1.428572;
}

.media-object {
    margin-right: 2rem;
    max-width: 10rem;
}

.clearfix:after,
.dl-horizontal dd:after,
.dl-horizontal-sm dd:after {
    clear: both;
    content: ' ';
    display: table;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.visible-xs {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

.visible-sp {
    display: none !important;
}

@media (max-width: 959px) {
    .visible-sp {
        display: block !important;
    }

    table.visible-sp {
        display: table !important;
    }

    tr.visible-sp {
        display: table-row !important;
    }

    th.visible-sp,
    td.visible-sp {
        display: table-cell !important;
    }
}

@media (max-width: 959px) {
    .hidden-sp {
        display: none !important;
    }
}

/* --------------------------------------------------
  common styles
-------------------------------------------------- */
.w-auto {
    width: auto !important;
}

.h-auto {
    height: auto !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

img {
    vertical-align: middle;
}

.bg-colored {
    background-color: #F0ECDC;
}

.bg-white {
    background-color: #fff;
}

.en-font {
    font-family: ff-prater-serif-web, serif;
    font-weight: 700;
    font-style: normal;
}

.text-important {
    color: #FF1236;
}

.text-important.en-font {
    font-family: imaginaryfriend-bb, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.text-primary {
    color: #388e3c;
}

.text-underlined {
    color: #388e3c;
    font-weight: 900;
    text-decoration: underline;
}

.card {
    padding: 3rem;
    background-color: #fff;
    border-radius: 6rem;
}

.card.bordered {
    padding: 0 2.5rem 2.5rem;
    border: 0.5rem solid #388E3C;
}

.card.bordered .h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -3.5rem auto 4rem;
    width: 30.5rem;
    height: 6.2rem;
    background-color: #388e3c;
    color: #fff;
    border-radius: 3.1rem;
    font-size: 3.2rem;
    font-family: imaginaryfriend-bb, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
}

.card.bordered .lead {
    margin-bottom: 4rem;
    color: #388e3c;
    font-weight: 900;
}

.card .card-heading {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: left;
}

@media (max-width: 389px) {
    .card {
        padding-left: 2.4rem;
        padding-right: 2.4rem;
    }
}

@media (min-width: 960px) {
    .card.bordered {
        border: 1rem solid #388E3C;
    }

    .card.bordered .h2 {
        margin: -4rem auto 4rem;
        width: 48.8rem;
        height: 7.5rem;
        border-radius: 3.8rem;
        font-size: 4.5rem;
    }

    .card.bordered .h2.year {
        font-size: 5.5rem;
    }

    .card .card-heading {
        font-size: 3.5rem;
    }
}

.btn-box {
    margin-top: 5rem;
    margin-bottom: 6rem;
}

.movie {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black;
    /* in case the video doesn't fit the whole page */
    background-position: center center;
    background-size: contain;
    -o-object-fit: cover;
    object-fit: cover;
    /* cover video background */
    z-index: -1;
}

/* Hiding video controls
* See: https://css-tricks.com/custom-controls-in-html5-video-full-screen/
* --------------------------------------- */
video::-webkit-media-controls {
    display: none !important;
}

/* --------------------------------------------------
  basic structure
-------------------------------------------------- */
html,
body {
    height: 100%;
}

header {
    position: relative;
    box-sizing: content-box;
    z-index: 102;
}

.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 6rem;
}

.header.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.header .brand-logo {
    margin-left: 1.8rem;
    z-index: 103;
}

.header .brand-logo img {
    height: 3.2rem;
    width: auto;
}

@media (min-width: 960px) {
    .header {
        height: 8rem;
    }

    .header .brand-logo {
        display: block;
        margin-left: 2.8rem;
    }

    .header .brand-logo img {
        height: 3.8rem;
    }
}

.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

@media (min-width: 960px) {
    .navbar-header {
        margin-left: auto;
        margin-right: auto;
        max-width: 140rem;
        height: 8rem;
    }
}

@media (min-width: 1200px) {
    .navbar-header {
        max-width: 200rem;
    }
}



.header-layer {
    mix-blend-mode: difference;
    justify-content: flex-end;
    z-index: 120;
}

.header-layer .navbar-header {
    justify-content: flex-end;
}

.menu-open {
    overflow: hidden;
}

.menu-open .header-layer {
    mix-blend-mode: normal;
}

.g-nav {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.g-nav.active {
    display: flex;
    opacity: 1;
    z-index: 10;
}

.g-nav .row {
    margin-left: 0;
    max-width: 120rem;
}

.nav-list {
    padding-left: 0;
    list-style: none;
}

.nav-list > li a {
    color: #000;
    font-family: ff-prater-serif-web, serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.1rem;
    line-height: 1.25;
    text-decoration: none;
}

.nav-list > li a:hover,
.nav-list > li a:focus {
    text-decoration: none;
}

.nav-list > li + li {
    margin-top: 3.4rem;
}

.nav-list > li span {
    display: block;
    color: #388E3C;
    font-size: 1.2rem;
    font-weight: 900;
}

@media (max-width: 959px) {
    .nav-list {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 960px) {
    .nav-list > li a {
        font-family: ff-prater-serif-web, serif;
        font-weight: 700;
        font-style: normal;
        font-size: 6.8rem;
    }

    .nav-list > li + li {
        margin-top: 8rem;
    }

    .nav-list > li span {
        font-size: 2rem;
    }
}

main {
    position: relative;
    overflow-x: hidden;
}

section {
    position: relative;
}

footer {
    position: relative;
    margin-top: 10rem;
    text-align: center;
}

footer .footer-logo {
    height: 4.6rem;
    width: auto;
}

footer .copyright {
    margin: 6rem 0 0;
    padding: 1.3rem 0;
    line-height: 1.2;
    text-align: center;
}

@media (min-width: 960px) {
    footer .footer-logo {
        height: 5.2rem;
    }
}

.ban-campaign {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 21.3rem;
    height: auto;
    z-index: 100;
}

@media (max-width: 959px) {
    .ban-campaign {
        width: 11rem;
    }
}

/* --------------------------------------------------
  page content styles
-------------------------------------------------- */
.one-column {
    margin-left: auto;
    margin-right: auto;
    max-width: 48rem;
}

@media (min-width: 960px) {
    .one-column {
        max-width: 98rem;
    }
}

.sec-header {
    padding-top: 7rem;
    padding-bottom: 3rem;
    text-align: center;
}

.sec-header .h1 {
    position: relative;
    margin-bottom: 1.2rem;
    color: #388e3c;
    font-size: 4.4rem;
    font-family: ff-prater-serif-web, serif;
    font-weight: 700;
    font-style: normal;
}

.sec-header .sub-heading {
    font-size: 1.8rem;
    font-weight: 900;
}

@media (min-width: 960px) {
    .sec-header {
        padding-bottom: 4rem;
    }

    .sec-header .h1 {
        font-size: 6.8rem;
    }

    .sec-header .sub-heading {
        font-size: 2.5rem;
    }
}

.sec-content {
    padding-bottom: 7rem;
    font-size: 1.6rem;
    text-align: center;
}

.sec-content .lead {
    font-size: 2rem;
}

@media (min-width: 960px) {
    .sec-content {
        font-size: 1.8rem;
    }

    .sec-content .lead {
        font-size: 2.3rem;
    }
}

.bg-inverse {
    background: #142B36 url(../img/history/bg_history.gif) center top repeat-y;
    background-size: contain;
}

.bg-inverse .sec-header .h1,
.bg-inverse .sec-header .sub-heading {
    color: #fff;
}

.bg-inverse .sec-content > p,
.bg-inverse .sec-content > .container > p,
.bg-inverse .sec-content > .container > .js-animation > p {
    color: #fff;
}

@media (max-width: 959px) {
    .bg-inverse {
        background-size: 100%;
    }
}

.marquee {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, 0);
    height: 4.8rem;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 0.01em;
    white-space: nowrap;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    overflow-x: hidden;
}

.marquee .marquee-text {
    padding-left: 1.5rem;
}

@media (min-width: 960px) {
    .marquee {
        height: 8.5rem;
        font-size: 3.1rem;
    }
}

.sns-share {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8.4rem;
    background-color: #388e3c;
}

.sns-share a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.sns-share .balloon {
    position: relative;
    margin-right: 4rem;
    padding: 0.7rem 1.2rem;
    background-color: #fff;
    color: #000;
    font-size: 1.4rem;
    line-height: 1;
}

.sns-share .balloon::before {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.5px 0 4.5px 12px;
    border-color: transparent transparent transparent #fff;
}

.sns-share .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background-color: #fff;
}

.sns-share .icon .icon-twitter {
    font-size: 3rem;
}

.sns-share + .marquee {
    background-color: #2A5B67;
}

@media (min-width: 960px) {
    .sns-share + .marquee {
        height: 6.5rem;
    }
}

#hero {
    _height: calc(100vh - (8.4rem + 6.5rem));
    height: calc(100vh - (8.4rem + 0rem));
}

@media screen and (min-width:1281px) {
    #hero {
        height: 100vh;
    }
}

#hero .hero-inner {
    width: 100%;
    height: 100%;
    min-height: 45.2vw;
    color: #fff;
    z-index: 2;
}

#hero .hero-inner .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#hero .hero-inner .anniv-logo {
    margin-bottom: 4.1667vw;
    _width: 23.3vw;
    width: 23vw;
    height: auto;
}

#hero .hero-inner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.327;
}

#hero .hero-inner .lead {
    font-size: 1.5rem;
}

@media (max-width: 959px) {
    #hero {
        height: calc(100vh - (8.4rem + 4.8rem));
    }

    #hero .hero-inner {
        padding-top: 6rem;
    }

    #hero .hero-inner .anniv-logo {
        margin-bottom: 7rem;
        width: 28vh;
    }
}

@media (max-width: 399px) {
    #hero {
        height: calc(100vh - (8.4rem + 0rem));
    }

    #hero .hero-inner .anniv-logo {
        margin-bottom: 4rem;
    }

    #hero .hero-inner .lead {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:375px) {
    #hero .hero-inner .anniv-logo {
        margin-bottom: 4rem;
    }

    #hero .hero-inner h1 {
        font-size: 3.25rem;
    }

    #hero .hero-inner .lead {
        font-size: 1.35rem;
    }
}


@media (min-width: 960px) {
    #hero {
        _min-height: 44vw;
        min-height: 70vw;
    }

    #hero .hero-inner h1 {
        font-size: 5.2rem;
    }

    #hero .hero-inner .lead {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    #hero .hero-inner h1 {
        margin-bottom: 40px;
    }
}


#ceos-note {
    padding-bottom: 4rem;
}

#ceos-note::after {
    content: "";
    position: absolute;
    bottom: -1.4vw;
    left: 0;
    width: 94%;
    height: 7.4rem;
    background: url(../img/type_5th_secondary.png) left bottom no-repeat;
    background-size: contain;
}

#ceos-note .img-circle {
    margin-bottom: 4rem;
}

@media (max-width: 959px) {
    #ceos-note .img-circle {
        width: 26.4rem;
    }
}

@media (min-width: 960px) {
    #ceos-note {
        padding-bottom: 12rem;
    }

    #ceos-note::after {
        bottom: -2.1rem;
    }
}

#history .card {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    margin-top: 9rem;
}

#history .card.bordered {
    padding-bottom: 5rem;
    box-shadow: 0 0.3rem 3.5rem #00000053;
}

#history .card:not(:last-of-type)::before {
    content: "";
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 9rem;
    border-left: 0.5rem dotted #388e3c;
}

#history .card .lead + p {
    margin-bottom: 3rem;
}

#history .card .column {
    margin-bottom: 3rem;
}

#history .card .column .memo {
    max-width: 80%;
}

#history .card .caption {
    padding-top: 6px;
    font-size: 1.4rem;
    font-weight: 900;
}

#history .card dl {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
}

#history .card dl dt {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2A5B67;
    color: #fff;
    border-radius: 50%;
    width: 5.9rem;
    height: 5.9rem;
    line-height: 1;
}

#history .card dl dd {
    margin-left: 3.6rem;
    padding-top: 1.5rem;
    padding-right: 3.6rem;
    width: calc(100% - 5.9rem);
    text-align: left;
}

#history .card dl dd strong {
    font-size: 2rem;
}

#history .card dl dd .text-important {
    display: inline-block;
    margin-top: -2.1rem;
    font-size: 4.6rem;
}

#history .card dl + dl {
    margin-top: 3.8rem;
}

#history .card dl ~ .dd-indent {
    margin-top: 1.6rem;
    margin-left: calc(5.9rem + 3.6rem);
    margin-right: calc(5.9rem + 3.6rem);
    text-align: left;
}

#history .card .dd-indent > img,
#history .card .dd-indent .column {
    margin-bottom: 1.6rem;
}

#history .card .dd-indent + dl {
    margin-top: 4rem;
}

@media (max-width: 959px) {
    #history .card {
        border-radius: 2.5rem;
    }

    #history .card p,
    #history .card .lead {
        text-align: left;
    }

    #history .card .lead {
        font-size: 1.8rem;
    }

    #history .card dl dt {
        width: 4.3rem;
        height: 4.3rem;
        font-size: 1.3rem;
    }

    #history .card dl dd {
        margin-left: 1rem;
        padding-top: 0.9rem;
        padding-right: 0;
        width: calc(100% - 4.3rem);
        font-size: 1.6rem;
    }

    #history .card dl dd strong {
        font-size: 1.8rem;
    }

    #history .card dl dd .text-important {
        margin-top: -0.6rem;
        font-size: 2.6rem;
    }

    #history .card dl ~ .dd-indent {
        margin-left: calc(4.3rem + 1rem);
        margin-right: 2rem;
    }

    #history .card dl ~ .dd-indent img {
        display: block;
    }
}

@media (min-width: 960px) {
    #history {
        padding-bottom: 12rem;
        padding-top: 4rem;
    }

    #history .card {
        padding-left: 7rem;
        padding-right: 7rem;
        margin-top: 9rem;
    }

    #history .card:not(:last-of-type)::before {
        width: 0.6rem;
        height: 9rem;
        border-left-width: 0.6rem;
    }

    #history .card .lead {
        font-size: 2.4rem;
    }

    #history .card p {
        font-size: 1.8rem;
    }

    #history .card .dd-indent > .img-rounded {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #history .card .dd-indent > .img-rounded.max-width-lg {
        max-width: 37.8rem;
    }

    #history .card .dd-indent > .img-rounded.max-width-md {
        max-width: 32rem;
    }

    #history .card .dd-indent > .img-rounded.max-width-sm {
        max-width: 15rem;
    }

    #history .card .dd-indent > .img-rounded.logo {
        max-width: 28rem;
    }

    #history .card .column {
        margin-bottom: 4rem;
    }

    #history .card .column .memo {
        max-width: 33.2rem;
    }

    #history .card .caption {
        font-size: 1.6rem;
    }
}

ol.list-logo {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 6rem;
}

ol.list-logo li {
    position: relative;
}

ol.list-logo li .caption {
    font-size: 0.9rem !important;
    font-weight: normal !important;
}

ol.list-logo li + li::before {
    font-family: 'icomoon';
    content: "\e90c";
    font-size: 4.2rem;
    position: absolute;
}

@media (max-width: 959px) {
    ol.list-logo {
        margin-top: 2rem;
    }

    ol.list-logo li img {
        max-width: 18rem;
    }

    ol.list-logo li + li {
        padding-top: 6rem;
    }

    ol.list-logo li + li::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (min-width: 960px) {
    ol.list-logo {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    ol.list-logo li img {
        max-width: 86%;
    }

    ol.list-logo li + li {
        padding-left: 5rem;
    }

    ol.list-logo li + li::before {
        left: 0.6rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (min-width: 960px) {
    #figures {
        padding: 40px 0;
    }
}

#figures::after {
    content: "";
    position: absolute;
    bottom: -1.4vw;
    right: 0;
    width: 94%;
    height: 7.4rem;
    background: url(../img/type_5th_primary.png) right bottom no-repeat;
    background-size: contain;
}

#figures .card {
    margin-bottom: 3rem;
}

#figures .card .card-heading {
    margin-bottom: 3rem;
}

#figures .card .text-underlined {
    font-size: 2.4rem;
}

#figures .card dl {
    margin-top: 3rem;
    margin-bottom: 4rem;
    text-align: left;
}

#figures .card dl dt {
    position: relative;
    padding-bottom: 1.2rem;
    color: #2A5B67;
    font-size: 1.6rem;
}

#figures .card dl dt::before {
    position: absolute;
    left: 0;
    font-family: 'icomoon';
    content: "\e913";
    font-size: 3.2rem;
}

#figures .card dl dt:not(:first-of-type) {
    margin-top: 2.8rem;
}

#figures .card dl dt,
#figures .card dl dd {
    padding-left: 4rem;
}

#figures + .marquee {
    background-color: #388e3c;
}

@media (max-width: 959px) {
    #figures .card {
        border-radius: 4rem;
    }

    #figures .card dl dt::before {
        display: flex;
        align-items: center;
        top: -0.3rem;
        height: 3.2rem;
    }

    #figures .card dl dd.text-underlined {
        font-size: 2rem;
    }

    #figures .card p.text-underlined {
        font-size: 2rem;
    }

    #figures .card > .row .column + .column {
        margin-top: 3rem;
    }
}

@media (min-width: 960px) {
    #figures::after {
        bottom: -2.1rem;
    }

    #figures .card {
        margin-bottom: 6rem;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    #figures .card .card-heading {
        margin-bottom: 2.5rem;
    }

    #figures .card .text-underlined {
        font-size: 3rem;
    }

    #figures .card dl {
        margin-top: 6rem;
        margin-bottom: 7rem;
    }

    #figures .card dl dt {
        display: flex;
        align-items: center;
        font-size: 2rem;
    }

    #figures .card dl dt::before {
        font-size: 4rem;
    }

    #figures .card dl dt:not(:first-of-type) {
        margin-top: 4rem;
    }

    #figures .card dl dt,
    #figures .card dl dd {
        padding-left: 6.5rem;
    }

    #figures .card p.text-underlined {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    #figures .card > .row.w-auto {
        display: inline-flex !important;
    }

    #figures .card > .row.w-auto .column {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    #figures .card > .row .column {
        display: flex;
        align-items: center;
    }

    #figures .row .column {
        display: flex;
    }

    #figures .row .column .card {
        padding-left: 4rem;
        padding-right: 4rem;
        width: 97%;
    }

    #figures .row .column:nth-child(2) .card {
        margin-left: auto;
    }
}

#number-times {
    color: #388e3c;
    font-size: 3.2rem;
    font-weight: 900;
}

#number-times .countup {
    font-size: 6.3rem;
}

@media (max-width: 959px) {

    #number-times .countup,
    #number-times .text-attached {
        display: block;
    }

    #number-times .text-attached {
        text-align: right;
    }
}

@media (min-width: 960px) {
    #number-times {
        font-size: 3.8rem;
    }

    #number-times .countup {
        font-size: 13.6rem;
    }

    #number-times .text-attached {
        display: inline-block;
        padding-left: 1.5rem;
    }
}

#voices {
    padding-bottom: 9rem;
}

#voices .card {
    margin-top: 3rem;
    padding: 2.7rem 3.5rem 1rem;
}

#voices .media {
    align-items: center;
    margin-bottom: 2.5rem;
}

#voices .media .media-object {
    margin-right: 2.6rem;
    max-width: 9.4rem;
}

#voices .media .media-body {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
}

#voices .message {
    font-size: 1.5rem;
    text-align: left;
}

#voices + .marquee {
    background-color: #FF1236;
}

@media (min-width: 960px) {
    #voices {
        padding-bottom: 20rem;
        padding-top: 4rem;
    }

    #voices .card {
        padding-top: 2.5rem;
        width: 99%;
    }

    #voices .row .column {
        display: flex;
    }

    #voices .row .column:nth-child(even) .card {
        margin-left: auto;
    }

    #voices .media .media-object {
        margin-right: 3.2rem;
        max-width: 10.5rem;
    }
}

#campaign {
    padding-bottom: 2.6rem;
}

#campaign .h1 {
    padding-top: 2rem;
    padding-bottom: 1.7rem;
    color: #F8FF3E;
    line-height: 1.03;
}

#campaign .h2 {
    margin-bottom: 3rem;
    color: #fff;
    font-size: 2.6rem;
    font-weight: bold;
}

#campaign .card {
    padding: 5rem 2.5rem;
}

#campaign .card.card-sm {
    position: relative;
    padding: 2rem;
    border-radius: 2.6rem;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: left;
    z-index: 2;
}

#campaign .card .h3 {
    margin-top: 3.6rem;
    font-weight: bold;
}

#campaign .card .btn {
    margin-bottom: 5.5rem;
}

#campaign .card ~ .h2 {
    margin-top: 6rem;
}

#campaign .bg-colored {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6.5rem 2rem 5rem;
    background-color: #F8FF3E;
    border-radius: 49rem;
    text-align: left;
    z-index: 1;
}

#campaign .bg-colored .h3 {
    margin-top: 3.6rem;
    font-size: 2.8rem;
    font-weight: 900;
}

#campaign .bg-colored p {
    line-height: 1.875;
}

#campaign + .marquee {
    background-color: #FF1236;
}

@media (max-width: 959px) {
    #campaign .bg-colored {
        margin-top: -11.2rem;
        _padding-top: 20rem;
        padding-top: 17rem;
        padding-bottom: 15rem;
    }

    #campaign .card {
        border-radius: 4rem;
    }

    #campaign .card .btn {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
    }
}

@media (min-width: 960px) {
    #campaign {
        padding-bottom: 6.2rem;
        padding-top: 4rem;
    }

    #campaign .h2 {
        font-size: 2.9rem;
    }

    #campaign .card {
        padding: 6rem 4.5rem 4.2rem;
    }

    #campaign .card.card-sm {
        margin-left: auto;
        margin-right: auto;
        padding: 2rem 4.2rem;
        width: 91%;
        border-width: 0.6rem;
        font-size: 2.3rem;
    }

    #campaign .card .h3 {
        font-size: 2rem;
    }

    #campaign .card ~ .h2 {
        margin-top: 7rem;
    }

    #campaign .bg-colored {
        justify-content: flex-end;
        margin-top: -15.6rem;
        min-height: 98rem;
        text-align: center;
    }

    #campaign .bg-colored .h3 {
        margin-bottom: 5rem;
        font-size: 3.5rem;
    }
}

#event::after {
    content: "";
    position: absolute;
    bottom: -1.4vw;
    right: 0;
    width: 94%;
    height: 7.4rem;
    background: url(../img/type_5th_primary.png) right bottom no-repeat;
    background-size: contain;
}

#event .event-image {
    margin-bottom: 5rem;
}

#event .event-detail {
    margin-bottom: 7rem;
    text-align: left;
}

#event .h2 {
    margin-top: 6rem;
    color: #388e3c;
    font-weight: 900;
}

#event .timetable {
    background-color: #e6f6e8;
    color: #388e3c;
    padding: 0.7rem 1.2rem 0.8rem;
    font-weight: 900;
}

#event .timetable ~ .timetable {
    margin-top: 4rem;
}

@media (max-width: 959px) {
    #event .one-column {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: none;
    }
}

@media (min-width: 960px) {
    #event {
        padding-bottom: 7rem;
    }

    #event::after {
        bottom: -2.1rem;
    }

    #event .sec-header {
        margin-bottom: 4.8rem;
    }

    #event .event-detail {
        margin-bottom: 9rem;
    }

    #event .h2 {
        margin-bottom: 4rem;
        font-size: 3rem;
    }

    #event .timetable {
        font-size: 2rem;
    }

    #event .timetable ~ .timetable {
        margin-top: 6rem;
    }
}

#closing {
    background-color: #388e3c;
    color: #fff;
}

#closing .h2 {
    font-size: 3rem;
    font-weight: bold;
}

#closing p {
    margin-bottom: 1.7em;
    font-size: 1.7rem;
    line-height: 1.7;
    font-weight: bold;
}

#closing p:last-of-type {
    margin-bottom: 0;
}

#closing + .sns-share {
    background-color: #2A5B67;
    height: 12.5rem;
}

#closing + .sns-share .balloon {
    font-size: 1.5rem;
}

#closing + .sns-share .icon-twitter {
    color: #2A5B67;
}

@media (max-width: 959px) {

    #closing .sec-header,
    #closing .sec-content {
        text-align: left;
    }

    #closing .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 960px) {
    #closing {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    #closing .sec-header {
        margin-bottom: 8rem;
    }

    #closing .h2 {
        font-size: 4.2rem;
    }

    #closing p {
        font-size: 2rem;
    }
}

/* --------------------------------------------------
  fuwafuwa
-------------------------------------------------- */
[class*="fuwa-elem"] {
    position: absolute;
}

.fuwa-left {
    right: 50%;
}

.fuwa-right {
    left: 50%;
}

#ceos-note .fuwa-elem1 {
    right: 50%;
    top: 6%;
    transform: translateX(-48%);
}

#ceos-note .fuwa-elem2 {
    left: 50%;
    top: 30%;
    transform: translateX(49%);
}

@media (max-width: 959px) {
    #ceos-note .fuwa-elem1 {
        width: 150px;
        top: -2%;
        transform: translateX(-41px);
    }

    #ceos-note .fuwa-elem2 {
        width: 126px;
        top: 37%;
        transform: translateX(59px);
    }
}

#history .fuwa-elem1 {
    right: 50%;
    top: 23%;
    transform: translateX(-110%);
}

#history .fuwa-elem2 {
    left: 50%;
    top: 32%;
    transform: translateX(166%);
}

#history .fuwa-elem3 {
    right: 50%;
    top: -7%;
    transform: translateX(-283%);
}

#history .fuwa-elem4 {
    left: 50%;
    top: -49%;
    transform: translateX(434%);
}

#history .fuwa-elem5 {
    left: 50%;
    top: -43%;
    transform: translateX(372%);
}

#history .fuwa-elem6 {
    right: 50%;
    top: -18%;
    transform: translateX(-275%);
}

#history .fuwa-elem7 {
    width: 170px;
    left: 50%;
    top: -15%;
    transform: translateX(281%);
}

#history .fuwa-elem8 {
    width: 176px;
    right: 50%;
    top: -7%;
    transform: translateX(-271%);
}

#history .fuwa-elem9 {
    left: 50%;
    top: -8%;
    transform: translateX(361%);
}

#history .fuwa-elem10 {
    right: 50%;
    top: -3%;
    transform: translateX(-246%);
}

#history .fuwa-elem11 {
    width: 164px;
    right: 50%;
    top: -7%;
    transform: translateX(-300%);
}

#history .fuwa-elem12 {
    left: 50%;
    top: -6%;
    transform: translateX(245%);
}

#history .fuwa-elem13 {
    right: 50%;
    bottom: -4%;
    transform: translateX(-286%);
}

#history .fuwa-elem14 {
    left: 50%;
    bottom: -7%;
    transform: translateX(131%);
}

@media (max-width: 959px) {
    #history .fuwa-elem1 {
        width: 106px;
        top: 33%;
        transform: translateX(-126px);
    }

    #history .fuwa-elem2 {
        width: 91px;
        top: 68%;
        transform: translateX(101px);
    }

    #history .fuwa-elem3 {
        width: 64px;
        top: -5%;
        right: auto;
        left: -40px;
        transform: translateX(0);
    }

    #history .fuwa-elem4 {
        width: 73px;
        top: -20%;
        left: auto;
        right: -10px;
        transform: translateX(0);
    }

    #history .fuwa-elem5 {
        width: 80px;
        top: -30%;
        left: auto;
        right: -13%;
        transform: translateX(0);
    }

    #history .fuwa-elem6 {
        width: 100px;
        top: -8%;
        right: auto;
        left: -62px;
        transform: translateX(0);
    }

    #history .fuwa-elem7 {
        width: 112px;
        top: -14%;
        left: auto;
        right: -17%;
        transform: translateX(0);
    }

    #history .fuwa-elem8 {
        width: 100px;
        top: -6%;
        right: auto;
        left: -15%;
        transform: translateX(0);
    }

    #history .fuwa-elem9 {
        width: 79px;
        top: -6%;
        left: auto;
        right: -15%;
        transform: translateX(0);
    }

    #history .fuwa-elem10 {
        width: 116px;
        top: -5%;
        right: auto;
        left: -14%;
        transform: translateX(0);
    }

    #history .fuwa-elem11 {
        width: 102px;
        top: -7%;
        right: auto;
        left: -14%;
        transform: translateX(0);
    }

    #history .fuwa-elem12 {
        width: 93px;
        top: -5%;
        left: auto;
        right: -10%;
        transform: translateX(0);
    }

    #history .fuwa-elem13 {
        width: 80px;
        bottom: -58px;
        right: auto;
        left: -9%;
        transform: translateX(0);
    }

    #history .fuwa-elem14 {
        width: 128px;
        bottom: -79px;
        left: auto;
        right: -60px;
        transform: translateX(0);
    }
}

#voices .fuwa-elem1 {
    right: 50%;
    top: 18%;
    transform: translateX(-66%);
}

#voices .fuwa-elem2 {
    left: 50%;
    top: 23%;
    transform: translateX(69%);
}

#voices .fuwa-elem3 {
    left: 50%;
    top: 25%;
    transform: translateX(437%);
}

#voices .fuwa-elem4 {
    right: 50%;
    top: 50%;
    transform: translateX(-284%);
}

#voices .fuwa-elem5 {
    left: 50%;
    top: 75%;
    transform: translateX(590%);
}

#voices .fuwa-elem6 {
    right: 50%;
    bottom: -14%;
    transform: translateX(-143%);
}

#voices .fuwa-elem7 {
    right: 50%;
    bottom: -6%;
    transform: translateX(7%);
}

#voices .fuwa-elem8 {
    left: 50%;
    bottom: -13%;
    transform: translateX(175%);
}

@media (max-width: 959px) {
    #voices .fuwa-elem1 {
        width: 136px;
        top: 4%;
        transform: translateX(-50px);
    }

    #voices .fuwa-elem2 {
        width: 120px;
        top: 67%;
        transform: translateX(71px);
    }

    #voices .fuwa-elem3 {
        width: 55px;
        top: 28%;
        left: auto;
        right: 6px;
        transform: translateX(0);
    }

    #voices .fuwa-elem4 {
        width: 88px;
        top: 56%;
        right: auto;
        left: 2px;
        transform: translateX(0);
    }

    #voices .fuwa-elem5 {
        width: 42px;
        top: 86%;
        left: auto;
        right: 6px;
        transform: translateX(0);
    }

    #voices .fuwa-elem6 {
        width: 149px;
        bottom: -140px;
        right: auto;
        left: -2%;
        transform: translateX(0);
    }

    #voices .fuwa-elem7 {
        width: 60px;
        bottom: -58px;
        transform: translateX(50px);
    }

    #voices .fuwa-elem8 {
        width: 132px;
        bottom: -116px;
        left: auto;
        right: 1%;
        transform: translateX(0);
    }
}

#campaign .fuwa-elem1 {
    right: 50%;
    top: 34%;
    transform: translateX(-111%);
}

#campaign .fuwa-elem2 {
    left: 50%;
    top: 29%;
    transform: translateX(80%);
}

#campaign .fuwa-elem3 {
    left: 50%;
    top: 16%;
    transform: translateX(343%);
}

#campaign .fuwa-elem4 {
    right: 50%;
    bottom: 6%;
    transform: translateX(-243%);
}

#campaign .fuwa-elem5 {
    left: 50%;
    top: -23%;
    transform: translateX(182%);
}

#campaign .fuwa-elem6 {
    right: 50%;
    top: -21%;
    transform: translateX(-246%);
}

#campaign .fuwa-elem7 {
    left: 50%;
    bottom: -23%;
    transform: translateX(337%);
}

@media (max-width: 959px) {
    #campaign .fuwa-elem1 {
        width: 104px;
        top: 23%;
        transform: translateX(-99px);
    }

    #campaign .fuwa-elem2 {
        width: 115px;
        top: 70%;
        transform: translateX(109px);
    }

    #campaign .fuwa-elem3 {
        width: 60px;
        top: 12%;
        left: auto;
        right: -53px;
        transform: translateX(0);
    }

    #campaign .fuwa-elem4 {
        width: 74px;
        bottom: 0;
        right: auto;
        left: -15px;
        transform: translateX(0);
    }

    #campaign .fuwa-elem5 {
        width: 106px;
        top: -11%;
        left: auto;
        right: -12px;
        transform: translateX(0);
    }

    #campaign .fuwa-elem6 {
        width: 100px;
        top: -9%;
        right: auto;
        left: -36px;
        transform: translateX(0);
    }

    #campaign .fuwa-elem7 {
        width: 70px;
        bottom: -13%;
        left: auto;
        right: -16px;
        transform: translateX(0);
    }
}
