@keyframes blur {
    0% {
        filter: blur(7px);
    }
    100% {
        filter: blur(0);
    }
}
@keyframes line {
    0% {
        stroke-dashoffset: 1500px;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes animation02 {
    0% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}
@keyframes animation03 {
    0% {
        -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    100% {
        -webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}
@keyframes animation04 {
    0% {
        opacity: 0;
        left: calc(50% - 429px);
    }
    100% {
        opacity: 1;
        left: calc(50% - 389px);
    }
}
@keyframes animation05 {
    0% {
        opacity: 0;
        left: calc(50% - 471px);
    }
    100% {
        opacity: 1;
        left: calc(50% - 431px);
    }
}
@keyframes animation06 {
    0% {
        opacity: 0;
        left: calc(50% + 220px);
    }
    100% {
        opacity: 1;
        left: calc(50% + 180px);
    }
}
@keyframes animation07 {
    0% {
        opacity: 0;
        top: -16px;
    }
    100% {
        opacity: 1;
        top: -56px;
    }
}
@keyframes animation08 {
    0% {
        opacity: 0;
        left: 557px;
    }
    100% {
        opacity: 1;
        left: 517px;
    }
}
@keyframes animation09 {
    0% {
        -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
        clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
@keyframes animation10 {
    0% {
        margin-left: 70%;
    }
    100% {
        margin-left: 50%;
    }
}
@keyframes animation11 {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes animation12 {
    0% {
        opacity: 0;
        right: -150px;
    }
    100% {
        opacity: 1;
        right: -110px;
    }
}
@keyframes animation13 {
    0% {
        opacity: 0;
        left: 565px;
    }
    100% {
        opacity: 1;
        left: 525px;
    }
}
@keyframes animation14 {
    0% {
        opacity: 0;
        left: -140px;
    }
    100% {
        opacity: 1;
        left: -100px;
    }
}
@keyframes animation15 {
    0% {
        opacity: 0;
        margin-top: 40px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}
@keyframes animation16 {
    0% {
        opacity: 0;
        top: 40px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}
@keyframes animation54 {
    0% {
        opacity: 0;
        left: calc(50% - 483px);
    }
    100% {
        opacity: 1;
        left: calc(50% - 443px);
    }
}
@keyframes animation55 {
    0% {
        opacity: 0;
        left: calc(50% + 163px);
    }
    100% {
        opacity: 1;
        left: calc(50% + 123px);
    }
}
@keyframes animation56 {
    0% {
        opacity: 0;
        left: calc(50% + 293px);
    }
    100% {
        opacity: 1;
        left: calc(50% + 253px);
    }
}
@keyframes animation57 {
    0% {
        opacity: 0;
        left: -37px;
    }
    100% {
        opacity: 1;
        left: 17px;
    }
}
@keyframes animation58 {
    0% {
        opacity: 0;
        right: -20x;
    }
    100% {
        opacity: 1;
        right: 20px;
    }
}
body {
    font-size: 1.4rem;
    line-height: 1.7em;
}
.pc-only,
.sp-only {
    display: none !important;
}
/* ドロワーメニュー*/
.drawer-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 3;
    background-color: rgba(51, 51, 51, 0.5);
    display: none;
}
.drawer-bg.open {
    display: block;
}
.drawer-menu {
    display: none;
    width: 85.77%;
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: #fff;
}
.drawer-menu.open {
    display: block;
    -webkit-transform: translate3d(0%, 0, 0);
    -moz-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}
.drawer-close {
    display: none;
    position: fixed;
    content: '';
    background-color: #000;
    /*background-image: url(../images/sp/btn-close.png);*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 14.222%;
    top: 0;
    right: 0;
    z-index: 10000;
}
.drawer-close.open {
    display: block;
}
.drawer-menu .drawer-inner {
    padding-top: 25px;
    padding-bottom: 100px;
    margin: 0 6.4%;
}
.drawer-menu .drawer-header .header ul li {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    margin-right: 2.6%;
}
.drawer-menu .drawer-header .header ul li a:before {
    content: "";
    display: block;
    padding-top: 28.58%;
}
.drawer-menu .drawer-header .header ul li:last-child {
    margin-right: 0;
}
.drawer-menu .drawer-header .header ul li a {
    display: block;
    background: url(../images/sp/side-menu01.png) no-repeat ;
    background-size: cover;
}
.drawer-menu .drawer-header .header ul li.online a {
    background-image: url(../images/sp/side-menu02.png);
}
.drawer-menu .drawer-header .search {
    padding: 16px 0 30px 0;
}
.drawer-menu .drawer-header .search form {
    height: 40px;
    border: solid 1px #e2c380;
}
.drawer-menu .drawer-header .search input[type="text"] {
    display: inline-block;
    width: 92%;
    font-size: 1.226rem;
    line-height: 34px;
    border: none;
    padding: 2px 0 2px 2rem;
    background: transparent;
}
.drawer-menu .drawer-header .search input[type="submit"] {
    display: inline-block;
    width: 8%;
    height: 1.866rem;
    border: none;
    background: transparent;
}
.drawer-menu .category-wrapper {
    margin-bottom: 2rem;
}
.drawer-menu .category-wrapper .category-title {
    padding: 1.666rem 0 1rem 0;
    border-bottom: 2px solid #e2c380;
    font-size: 1.3rem;
    font-weight: bold;
}
.drawer-menu .category-wrapper ul li {
    border-bottom: 1px solid #e2c380;
}
.drawer-menu .category-wrapper ul li:nth-child(odd) {
}
.drawer-menu .category-wrapper ul li a {
    position: relative;
    display: block;
    padding: 1rem 0;
}
.drawer-menu .category-wrapper ul li a:after {
    position: absolute;
    display: block;
    top: 2.66rem;
    right: 0;
    content: '';
    background-image: url(/images/one/arrow05.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 4px;
    height: 8px;
}
.section01 {
    background: #d14c2b;
    height: 960px;
}
.section01 .bg-white {
    position: absolute;
    width: 100%;
    height: 35vh;
    background: #fff;
}
.section01 .title {
    position: absolute;
    width: 100%;
    top: 56px;
    padding: 0 5.2%;
    z-index: 2;
}
.section01 .title:after {
    content: "";
    clear: both;
    display: block;
}
.section01 .title .logo {
    float: left;
    width: 20.3%;
}
.section01 .title .menu {
    float: right;
    width: 101px;
    /* 動画と被ってしまうため非表示にした */
    display: none;
}
.section01 .title .menu li {
    display: inline-block;
    width: 29px;
    margin-right: 7px;
}
.section01 .title .menu li:last-child {
    margin-right: 0;
}
.section01 .title .menu li img {
    width: 100%;
}
.section01 .video-area {
    position: absolute;
    width: 84.35%;
    top: 96px;
    right: 0;
    text-align: right;
}
.section01 .video-area video {
    width: 100%;
}
.section01 .scroll {
    position: absolute;
    right: 5.2%;
    bottom: 0;
    font-size: 1rem;
}
.section01 .scroll a {
    color: #fff;
}
.section01 .scroll span {
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    -ms-writing-mode: tb-rl;
}
.section01 .scroll a:after {
    content: "";
    display: block;
    background: url(../images/pc/scroll.gif) no-repeat;
    background-size: 1px 130px;
    width: 1px;
    height: 130px;
    margin: 12px 0 0 10px;
    border: none;
}
.section02 {
    display: block;
    content: "";
    width: 100%;
    height: 224px;
    background: #d14c2b url(../images/sp/img01.png) no-repeat 50% 100%;
    background-size: cover;
}
.section03 {
    height: 411px;
    margin-top: 38px;
    margin-bottom: 119px;
    overflow: hidden;
}
.section03 .animation-wrapper {
    position: relative;
}
.section03 #animation01 {
    position: absolute;
    left: calc(50% - 35px);
}
.section03 #title01 {
    content: '';
    position: absolute;
    background: url(../images/tb/title01.png) no-repeat 50% 16px;
    width: 70px;
    height: 411px;
    filter: blur(7px);
}
.section03 .animation02 {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    position: absolute;
    top: 154px;
    left: calc(50% - 345px);
}
.section03 .animation02 .cls-10 {
    fill: none;
    stroke: #f5e8e4;
    stroke-width: 1px;
    fill-rule: evenodd;
}
.section03 .animation02 .cls-11 {
    font-size: 10px;
    text-anchor: end;
    font-family: 'Noto Serif Japanese', serif;
}
.section03 .animation02.animation {
    animation: animation03 1s ease-in 1s forwards;
}
.section03 .animation03 {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    position: absolute;
    top: 154px;
    left: calc(50% + 34px);
}
.section03 .animation04 {
    opacity: 0;
    position: absolute;
    top: 110px;
    left: calc(50% - 429px);
}
.section03 .animation04.animation {
    animation: animation04 1s ease-out 2s forwards;
}
.section03 .animation05 {
    opacity: 0;
    position: absolute;
    top: 224px;
    left: calc(50% - 471px);
}
.section03 .animation05.animation {
    animation: animation05 1s ease-out 2s forwards;
}
.section03 .animation06 {
    opacity: 0;
    position: absolute;
    top: 164px;
    left: calc(50% + 180px);
}
.section03 .animation06.animation {
    animation: animation06 1s ease-out 2s forwards;
}
.section04 {
    position: relative;
    background: url(../images/tb/bg-about.png) no-repeat;
    padding-bottom: 83px;
}
.section04 .eye {
    text-align: center;
    margin-bottom: 30px;
}
.section04 .title {
    text-align: center;
    margin-bottom: 46px;
}
.section04 .left {
}
.section04 .right {
    position: absolute;
    top: 477px;
    right: 0;
    background: url(../images/pc/bg-right.png) no-repeat 50% 50%;
    width: 60px;
    height: 60px;
}
.section04 svg {
    position: absolute;
    top: 747px;
    left: 69%;
}
.section04 .description {
    display: inline-block;
    width: 49.8%;
    font-size: 1.4rem;
    line-height: 2.2em;
    margin-right: 8%;
}
.section04 .description p {
    margin-left: 12px;
}
.section04 .text1 {
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    width: 100%;
    height: 234px;
    margin-bottom: 28px;
}
.section04 .text2 {
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    width: 100%;
    height: 234px;
}
.section04 .item {
    display: inline-block;
    vertical-align: top;
    width: 239px;
}
.section04 .item img {
    width: 100%;
}
.section05 {
    background: #f5f5f5;
    padding-bottom: 110px;
    overflow: hidden;
}
.section05 .photo-box01 {
    position: relative;
    width: 89.6%;
    margin: 0 auto;
    margin-bottom: 116px;
}
.section05 .photo-box01 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 440px;
    height: 440px;
    background-image: url(../images/tb/photo01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
    margin-top: 56px;
    margin-bottom: 60px;
}
.section05 .photo-box01 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    height: 236px;
    font-size: 1.4rem;
    line-height: 2.2em;
}
.section05 .photo-box01 .description p {
    margin-left: 12px;
}
.section05 .photo-box01 .number {
    position: absolute;
    top: -96px;
    left: 397px;
    opacity: 0;
}
.section05 .photo-box01 .number.animation {
    animation: animation07 1s ease-out 0s forwards;
}
.section05 .photo-box01 .title-line01 {
    position: absolute;
    top: 392px;
    left: 392px;
}
.section05 .photo-box01 .animation07 {
    position: absolute;
    opacity: 0;
    top: 365px;
    left: 517px;
}
.section05 .photo-box01 .animation07.animation {
    animation: animation08 1s ease-out 1.5s forwards;
}
.section05 .photo-box01 .cls-17 {
    fill: none;
    stroke: #fff;
    stroke-width: 2px;
    fill-rule: evenodd;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}
.section05 .photo-box01 .cls-17.animation {
    animation: line 5s ease-out 2s forwards;
}
.section05 .photo-box02 {
    position: relative;
    width: 89.6%;
    margin: 0 auto;
    margin-bottom: 116px;
}
.section05 .photo-box02 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    vertical-align: top;
    margin-top: 56px;
    margin-bottom: 60px;
    text-align: right;
}
.section05 .photo-box02 .photo img {
    width: 440px;
}
.section05 .photo-box02 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    height: 236px;
    vertical-align: bottom;
    font-size: 1.4rem;
    line-height: 2.2em;
    width: 100%;
    padding-right: 5.2%;
}
.section05 .photo-box02 .description p {
    margin-left: 12px;
}
.section05 .photo-box02 .number {
    position: absolute;
    top: 56px;
    right: 376px;
    opacity: 0;
}
.section05 .photo-box02 .number.animation {
    animation: animation07 1s ease-out 0s forwards;
}
.section05 .photo-box02 .title-line02 {
    position: absolute;
    top: 392px;
    right: 392px;
}
.section05 .photo-box02 .animation08 {
    position: absolute;
    opacity: 0;
    top: 388px;
    left: -40px;
}
.section05 .photo-box02 .animation08.animation {
    animation: animation05 1s ease-out 1.5s forwards;
}
.section05 .photo-box02 .cls-18.animation {
    animation: line 5s ease-out 2s forwards;
}
.section05 .photo-box03 {
    position: relative;
    width: 89.6%;
    margin: 0 auto;
}
.section05 .photo-box03 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 440px;
    height: 440px;
    background-image: url(../images/tb/photo03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
    margin-top: 56px;
    margin-bottom: 60px;
}
.section05 .photo-box03 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    height: 236px;
    font-size: 1.4rem;
    line-height: 2.2em;
}
.section05 .photo-box03 .description p {
    margin-left: 12px;
}
.section05 .photo-box03 .number {
    position: absolute;
    top: -96px;
    left: 370px;
    opacity: 0;
}
.section05 .photo-box03 .number.animation {
    animation: animation07 1s ease-out 0s forwards;
}
.section05 .photo-box03 .title-line03 {
    position: absolute;
    top: 392px;
    left: 392px;
}
.section05 .photo-box03 .animation09 {
    position: absolute;
    opacity: 0;
    top: 400px;
    left: 517px;
}
.section05 .photo-box03 .animation09.animation {
    animation: animation08 1s ease-out 1.5s forwards;
}
.section05 .photo-box03 .cls-19.animation {
    animation: line 5s ease-out 2s forwards;
}
.section06 {
    margin-bottom: 118px;
}
.section06 .component {
    position: relative;
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    height: 487px;
}
.section06 .component.animation {
    animation: animation09 1s ease-in-out 1s forwards;
}
.section06 .component.animation .shadow {
    animation: animation11 1s ease-in-out 2s forwards;
}
.section06 .component.animation .title {
    animation: animation11 1s ease-in-out 2s forwards;
}
.section06 .bridge {
    overflow: hidden;
    background: #f5f5f5;
}
.section06 .bridge.animation .bridge-content {
    animation: animation10 1s ease-in-out 0.5s forwards;
}
.section06 .bridge-content {
    margin-left: 70%;
    height: 123px;
    width: 1579px;
    background: url('../images/tb/bridge.png') no-repeat;
    background-size: cover;
}
.section06 .photo {
    background-image: url(../images/tb/component.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
}
.section06 .shadow {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/tb/bg-shadow.png);
    background-size: cover;
    width: 100%;
    height: 100%;
}
.section06 .title {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/tb/component-title.png);
    background-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.section07 {
    padding-bottom: 230px;
    overflow: hidden;
}
.section07 .material-main {
    position: relative;
    width: 89.6%;
    margin: 0 auto;
}
.section07 .material-main .photo {
    float: right;
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 344px;
    height: 482px;
    background-image: url(../images/tb/material-main.png);
    background-repeat: no-repeat;
    vertical-align: top;
}
.section07 .material-main .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    display: inline-block;
    width: 45.3%;
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 2.2em;
}
.section07 .material-main .description .text1 {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    width: 100%;
    height: 230px;
    margin-bottom: 24px;
}
.section07 .material-main .description .text2 {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    width: 100%;
    height: 239px;
}
.section07 .material-main .number {
    opacity: 0;
    margin-top: 40px;
    margin-bottom: 47px;
    text-align: center;
}
.section07 .material-main .number.animation {
    animation: animation15 1s ease-out 0s forwards;
}
.section07 .material-main .line {
    position: absolute;
    top: 490px;
    left: 538px;
}
.section07 .material-main .animation10 {
    position: absolute;
    opacity: 0;
    top: 162px;
    left: -40px;
}
.section07 .material-main .animation10.animation {
    animation: animation05 1s ease-out 1.5s forwards;
}
.section07 .material-main .line.animation path {
    animation: line 5s ease-out 2s forwards;
}
.section08 {
    background: #f3f3f2;
    padding-bottom: 160px;
}
.section08 .material-content {
    overflow: hidden;
}
.section08 .material-text {
    transform: translateY(-68px);
    text-align: center;
    margin-left: -120px;
    margin-bottom: 119px;
}
.section08 .material-text img {
    width: 584px;
}
.section08 .material01 {
    position: relative;
    margin: 0 0 100px 10.4%;
}
.section08 .material01 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 240px;
    height: 342px;
    background-image: url(../images/tb/material01.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    margin-right: 160px;
}
.section08 .material01 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    display: inline-block;
    height: 230px;
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 2.2em;
    margin-top: 19px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
}
.section08 .material01 .number {
    position: absolute;
    top: 40px;
    left: 280px;
    opacity: 0;
}
.section08 .material01 .number img {
    width: 90px;
}
.section08 .material01 .number.animation {
    animation: animation16 1s ease-out 0s forwards;
}
.section08 .material01 .line {
    position: absolute;
    top: 295px;
    left: 191px;
}
.section08 .material01 .animation11 {
    position: absolute;
    opacity: 0;
    top: 298px;
    left: 525px;
}
.section08 .material01 .animation11.animation {
    animation: animation13 1s ease-out 1.5s forwards;
}
.section08 .material01 .line.animation path {
    animation: line 5s ease-out 2s forwards;
}
.section08 .material02 {
    position: relative;
    margin: 0 10.4% 100px 0;
    text-align: right;
}
.section08 .material02 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 240px;
    height: 342px;
    background-image: url(../images/tb/material02.png);
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: top;
    display: inline-block;
}
.section08 .material02 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    display: inline-block;
    height: 230px;
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 2.2em;
    margin-top: 19px;
    margin-right: 157px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    text-align: left;
}
.section08 .material02 .number {
    opacity: 0;
    position: absolute;
    top: 40px;
    right: 275px;
}
.section08 .material02 .number img {
    width: 90px;
}
.section08 .material02 .number.animation {
    animation: animation16 1s ease-out 0s forwards;
}
.section08 .material02 .line {
    position: absolute;
    top: 295px;
    right: 195px;
}
.section08 .material02 .animation12 {
    position: absolute;
    opacity: 0;
    top: 317px;
    left: -100px;
}
.section08 .material02 .animation12.animation {
    animation: animation14 1s ease-out 1.5s forwards;
}
.section08 .material02 .line.animation path {
    animation: line 5s ease-out 2s forwards;
}
.section08 .material03 {
    position: relative;
    margin: 0 0 100px 10.4%;
}
.section08 .material03 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 240px;
    height: 342px;
    background-image: url(../images/pc/material03.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
    margin-right: 160px;
}
.section08 .material03 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    display: inline-block;
    height: 230px;
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 2.2em;
    margin-top: 19px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
}
.section08 .material03 .number {
    position: absolute;
    top: 40px;
    left: 280px;
    opacity: 0;
}
.section08 .material03 .number img {
    width: 90px;
}
.section08 .material03 .number.animation {
    animation: animation16 1s ease-out 0s forwards;
}
.section08 .material03 .line {
    position: absolute;
    top: 295px;
    left: 191px;
}
.section08 .material03 .animation13 {
    position: absolute;
    opacity: 0;
    top: 307px;
    left: 525px;
}
.section08 .material03 .animation13.animation {
    animation: animation13 1s ease-out 1.5s forwards;
}
.section08 .material03 .line.animation path {
    animation: line 5s ease-out 2s forwards;
}
.section08 .material04 {
    position: relative;
    margin: 0 10.4% 0 0;
    text-align: right;
}
.section08 .material04 .photo {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    width: 240px;
    height: 342px;
    background-image: url(../images/tb/material04.png);
    background-size: cover;
    background-repeat: no-repeat;
    vertical-align: top;
    display: inline-block;
}
.section08 .material04 .description {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    display: inline-block;
    height: 230px;
    vertical-align: top;
    font-size: 1.4rem;
    line-height: 2.2em;
    margin-top: 19px;
    margin-right: 190px;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-lr;
    text-align: left;
}
.section08 .material04 .number {
    opacity: 0;
    position: absolute;
    top: 40px;
    right: 275px;
}
.section08 .material04 .number img {
    width: 126px;
}
.section08 .material04 .number.animation {
    animation: animation16 1s ease-out 0s forwards;
}
.section08 .material04 .line {
    position: absolute;
    top: 295px;
    right: 195px;
}
.section08 .material04 .animation14 {
    position: absolute;
    opacity: 0;
    top: 279px;
    left: -180px;
}
.section08 .material04 .animation14.animation {
    animation: animation14 1s ease-out 1.5s forwards;
}
.section08 .material04 .line.animation path {
    animation: line 5s ease-out 2s forwards;
}
.section09 {
    overflow: hidden;
    margin-top: -75px;
    margin-bottom: 78px;
}
.section09 .flow {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
    margin: 0 auto;
    width: 89.6%;
}
.section09 .flow img {
    width: 100%;
}
.section10 {
    text-align: center;
}
.section10 img {
    vertical-align: top;
    width: 100%;
}
.section11 {
    height: 244px;
    margin-top: 38px;
    margin-bottom: 66px;
    overflow: hidden;
}
.section11 .animation-wrapper {
    position: relative;
}
.section11 #animation15 {
    position: absolute;
    left: calc(50% - 35px);
}
.section11 #title15 {
    content: '';
    position: absolute;
    background: url(../images/pc/title15.png) no-repeat 50% 16px;
    width: 70px;
    height: 244px;
    filter: blur(7px);
}
.section11 .animation52 {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    position: absolute;
    top: 70px;
    left: calc(50% - 345px);
}
.section11 .animation52 .cls-60 {
    fill: none;
    stroke: #f5e8e4;
    stroke-width: 1px;
    fill-rule: evenodd;
}
.section11 .animation52 .cls-61 {
    font-size: 10px;
    text-anchor: end;
    font-family: 'Noto Serif Japanese', serif;
}
.section11 .animation52.animation {
    animation: animation03 1s ease-in 1s forwards;
}
.section11 .animation53 {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    position: absolute;
    top: 70px;
    left: calc(50% + 34px);
}
.section11 .animation54 {
    opacity: 0;
    position: absolute;
    top: 81px;
    left: calc(50% - 483px);
}
.section11 .animation54.animation {
    animation: animation54 1s ease-out 2s forwards;
}
.section11 .animation55 {
    opacity: 0;
    position: absolute;
    top: 28px;
    left: calc(50% + 123px);
}
.section11 .animation55.animation {
    animation: animation55 1s ease-out 2s forwards;
}
.section11 .animation56 {
    opacity: 0;
    position: absolute;
    top: 142px;
    left: calc(50% + 293px);
}
.section11 .animation56.animation {
    animation: animation56 1s ease-out 2s forwards;
}
.section12 {
    position: relative;
    background: #f5f4f4;
    padding-top: 95px;
    padding-bottom: 290px;
}
.section12:after {
    content: "";
    width: 100%;
    height: 135px;
    margin: 0 auto;
    background: url(../images/pc/bg-jinja.png) no-repeat 50% 0;
    display: block;
    position: absolute;
    bottom: 0;
}
.section12 .left {
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/pc/bg-left.png) no-repeat 50% 50%;
    width: 60px;
    height: 60px;
}
.section12 .right {
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/pc/bg-right.png) no-repeat 50% 50%;
    width: 60px;
    height: 60px;
}
.section12 .cloud01 {
    opacity: 0;
    position: absolute;
    top: 75px;
    left: 17px;
    z-index: 2;
}
.section12 .cloud01.animation {
    animation: animation57 1s ease-in-out 2s forwards;
}
.section12 .cloud02 {
    opacity: 0;
    position: absolute;
    top: 391px;
    right: 20px;
    z-index: 2;
}
.section12 .cloud02.animation {
    animation: animation58 1s ease-in-out 2s forwards;
}
.section12 .item {
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    text-align: center;
    margin-bottom: 40px;
}
.section12 .item.animation {
    animation: animation09 1s ease-in-out 1s forwards;
}
.section12 .item01 {
    display: inline-block;
    width: 42.3%;
    margin-right: 42px;
}
.section12 .item01 img {
    width: 100%;
}
.section12 .item02 {
    display: inline-block;
    width: 42.3%;
}
.section12 .item02 img {
    width: 100%;
}
.section12 .shop {
    margin-bottom: 20px;
    text-align: center;
}
.section12 .shop a {
    display: inline-block;
    background: url(../images/tb/btn-shop.png) no-repeat;
    background-size: cover;
    width: 286px;
    height: 57px;
    margin-left: 28px;
}
.section12 .show {
    text-align: center;
}
.section12 .show a {
    font-size: 1.3rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #c3c2c2;
}
footer {
    padding-bottom: 80px;
}
footer .footer-title01 {
    text-align: center;
    padding: 80px 0 30px 0;
}
footer .footer-title01:after {
    content: '';
    display: inline-block;
    background: url(../images/tb/footer-link1.png);
    background-size: cover;
    width: 215px;
    height: 37px;
}
footer .footer-menu01 {
    text-align: center;
    margin-bottom: 50px;
}
footer .footer-menu01 li {
    display: inline-block;
    margin-right: 24px;
}
footer .footer-menu01 li:last-child {
    margin-right: 0;
}
footer .footer-menu01 li img {
    width: 52px;
}
footer .footer-menu02 {
    text-align: center;
    margin-bottom: 40px;
}
footer .footer-menu02 li {
    display: inline-block;
}
footer .footer-menu02 li:after {
    content: '>';
    display: inline-block;
    padding: 0 8px;
}
footer .footer-menu02 li:last-child:after {
    content: '';
    padding: 0;
}
footer .footer-menu03 {
    text-align: center;
    margin-bottom: 16px;
}
footer .footer-menu03 li {
    display: inline-block;
    margin-right: 20px;
}
footer .footer-menu03 li:last-child {
    margin-right: 0;
}
footer .copyright {
    color: #7f7f7f;
    text-align: center;
    font-size: 1rem;
}




.global-menu {
    font-size: 1.6rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    z-index: 3;
}
.global-menu li {
    display: inline-block;
    width: 25%;
    border-right: 1px solid #4d4d4d;
}
.global-menu li:last-child {
    border-right: none;
}
.global-menu li a {
    color: #fff;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1.2rem 0;
}

