@charset "utf-8";

/* animations
-------------------------------------------------------*/

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-zoomIn {
    animation: zoomIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(83, 0, 94, 0.3);
    transition: all 0.3s ease;
}

.ttl02 b {
    transition: color 0.3s ease;
}

.ttl02:hover b {
    color: #760086;
}

/* parallax effect for background images */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* scroll reveal animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* common
-------------------------------------------------------*/

#wrapper {
    overflow: hidden;
}

.sp {
    display: none;
}

.area {
    padding: 70px 20px;
    box-sizing: border-box;
}

.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.ttl01 {
    text-align: center;
    margin: 0 auto 40px;
    line-height: 1.3;
    max-width: 455px;
}

.ttl01 span {
    font-size: 30px;
    color: #53005e;
    font-weight: bold;
    margin: 0 0 10px;
    display: block;
}

.ttl02 {
    margin: 0 0 40px;
}

.ttl02 > * {
    display: block;
    line-height: 1.3;
    color: #53005e;
    font-size: 20px;
}

.ttl02 b {
    border-bottom: 1px solid #53005e;
    font-size: 40px;
    padding: 0 0 15px;
    margin: 0 0 15px;
}

.ttl02 span {
    letter-spacing: 2px;
}

.contact {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.serif {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
}

.btn {
    width: 100%;
    max-width: 800px;
    height: 100px;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top center, #FF6B35 5%, #FF6B35 20%, #D2581C 70%, #D2581C 100%);
    color: #fff;
    font-size: 30px;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    font-weight: 500;
}

.btn_purple .btn {
    margin: 0;
    max-width: 380px;
    height: 80px;
    background: radial-gradient(circle at top center, #760086 5%, #710080 20%, #53005E 70%, #53005E 100%);
    font-size: 26px;
}

.box_slash {
    background: url(../img/bg03.png);
    padding: 10px;
    box-sizing: border-box;
    max-width: 960px;
    margin: 0 auto;
}

.box_slash .wrap {
    background: #fff;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    height: 100%;
    padding: 70px 60px;
    box-sizing: border-box;
}

.box_slash .wrap .img img {
    max-width: 380px;
    min-width: 380px;
    margin: 0 40px 0 0;
}

.box_slash .wrap .txt > * {
    display: block;
    font-size: 20px;
}

.box_slash .wrap .txt > b {
    color: #b0a834;
    font-size: 25px;
    font-weight: bold;
    margin: 0 0 25px;
}

.box_slash .wrap .txt span {
    line-height: 1.8;
}

.box_slash .wrap .txt span:first-of-type {
    margin: 0 0 30px;
}

.box_slash .wrap .txt span b {
    font-weight: bold;
    display: block;
}

a {
    word-break: break-all;
}

.center{
    text-align: center;
}

.note_wrap{
    line-height: 1.4em;
}
.note_wrap .note{
    font-size: 70%;
}

@media screen and (max-width:768px) {
    /* Reduce motion for mobile */
    .animate-fadeInUp,
    .animate-slideInLeft,
    .animate-slideInRight,
    .animate-zoomIn {
        animation-duration: 0.6s;
    }
    
    .animate-delay-1 {
        animation-delay: 0.1s;
    }
    
    .animate-delay-2 {
        animation-delay: 0.2s;
    }
    
    .animate-delay-3 {
        animation-delay: 0.3s;
    }
    
    .animate-delay-4 {
        animation-delay: 0.4s;
    }
    
    /* Disable parallax on mobile */
    .parallax-bg {
        background-attachment: scroll;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .area {
        padding: 30px 20px;
    }

    .inner {
        max-width: 100%;
    }

    .ttl01 {
        margin: 0 auto 25px;
        max-width: 260px;
    }

    .ttl01 span {
        font-size: 120%;
        margin: 0 0 5px;
    }

    .ttl02 {
        margin: 0 0 20px;
    }

    .ttl02 > * {
        font-size: 100%;
    }

    .ttl02 b {
        font-size: 140%;
        padding: 0 0 10px;
        margin: 0 0 10px;
    }

    .ttl02 span {
        letter-spacing: 0;
    }

    .contact {
        flex-flow: column;
    }

    .contact li {
        width: 100%;
        height: 100%;
    }

    .btn {
        height: 60px;
        font-size: 120%;
    }

    .btn_purple .btn {
        height: 60px;
        font-size: 100%;
    }

    .box_slash {
        padding: 5px;
    }

    .box_slash .wrap {
        padding: 30px 20px;
        flex-flow: column;
        align-items: center;
    }

    .box_slash .wrap .img img {
        min-width: auto;
        margin: 0 0 20px;
    }

    .box_slash .wrap .txt > * {
        font-size: 100%;
    }

    .box_slash .wrap .txt > b {
        font-size: 120%;
        margin: 0 0 20px;
    }

    .box_slash .wrap .txt span {
        line-height: 1.4;
    }

    .box_slash .wrap .txt span:first-of-type {
        margin: 0 0 20px;
    }

    .logo {
        max-width: 220px !important;
        margin: 0 auto;
    }
}


/* header
-------------------------------------------------------*/

.header {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 106px;
    padding: 0 35px;
    display: flex;
    align-items: center;
}

.header .inner {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.header nav ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
}

.header nav ul li {
    padding: 0 0 0 30px;
    text-align: center;
    line-height: 1.2;
}

.header nav ul li a {
    color: #fff;
    font-size: 20px;
}

#header_fixed {
    position: fixed;
    top: -106px;
    width: 100%;
    transition: .3s;
    background: #53005E;
    z-index: 9;
}

#header_fixed ul li a {
    font-size: 18px;
}

#header_fixed .btn {
    height: 70px;
    width: 180px;
}

#header_fixed.active {
    top: 0;
}

@media screen and (max-width:1175px) {
    .header nav ul li a span {
        display: block;
    }
}

@media screen and (max-width:1100px) {
    #header_fixed {
        padding: 0 20px;
    }

    #header_fixed nav ul li {
        padding: 0 0 0 15px;
    }

    #header_fixed ul li a {
        font-size: 100%;
    }

    #header_fixed .btn {
        width: 150px;
    }
}

@media screen and (max-width:935px) {
    .header {
        padding: 0 20px;
    }

    .header nav ul li {
        padding: 0 0 0 15px;
    }

    .header nav ul li a {
        font-size: 100%;
    }

    #header_fixed .logo {
        max-width: 180px;
    }

    #header_fixed nav ul li {
        padding: 0 0 0 10px;
    }

    #header_fixed ul li a {
        font-size: 90%;
    }

    #header_fixed .btn {
        width: 130px;
    }
}

@media screen and (max-width:768px) {
    .header {
        text-align: center;
        padding: 10px;
    }

    .header {
        height: 40px;
    }

    .header .inner {
        justify-content: center;
    }

    #header_fixed {
        display: none !important;
    }

    .row03 {
        font-size: 2.0rem;
        line-height: 2.4rem;
    }
}


/* nav
-------------------------------------------------------*/

@media screen and (max-width:768px) {
    #btn_nav {
        position: fixed;
        top: 12px;
        right: 10px;
        z-index: 999;
        cursor: pointer;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        height: 18px;
        padding: 0 0 15px;
    }

    #btn_nav span {
        display: inline-block;
        background: #53005E;
        width: 25px;
        height: 2px;
        transition: .5s;
        position: relative;
    }

    #btn_nav.active span {
        background: #fff;
        transform: translateY(8px) rotate(225deg);
    }

    #btn_nav.active span:nth-child(2) {
        transform: scaleX(0);
    }

    #btn_nav.active span:last-child {
        transform: translateY(-8px) rotate(-225deg);
    }

    #btn_nav::after {
        content: "MENU";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 75%;
        color: #53005E;
        transition: .5s;
    }

    #btn_nav.active::after {
        content: "CLOSE";
        color: #fff;
    }

    #nav_sp nav,
    #nav_sp nav::after {
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    #nav_sp nav {
        display: flex;
        flex-flow: column;
        justify-content: center;
        overflow: auto;
        text-align: center;
        background: rgba(83, 0, 94, 0.6);
        right: -100%;
        z-index: 998;
        transition: .5s;
    }

    #nav_sp nav::after {
        content: "";
        background: rgba(83, 0, 94, 0.9);
        left: -100%;
        z-index: -1;
        transition: .7s;
    }

    #nav_sp nav.active {
        right: 0;
    }

    #nav_sp nav.active::after {
        left: 0;
    }

    #nav_sp ul li:first-child {
        border-top: 1px solid #999;
    }

    #nav_sp ul li {
        border-bottom: 1px solid #999;
    }

    #nav_sp ul li a {
        display: block;
        color: #fff;
        padding: 10px;
    }
}


/* visual
-------------------------------------------------------*/

#visual {
    padding: 0;
    box-sizing: border-box;
}

#visual .inner {
    max-width: 100%;
}

@media screen and (max-width:768px) {}


/* footer
-------------------------------------------------------*/

#footer {
    text-align: center;
    padding: 0 0 70px;
}

#footer nav {
    background: #EEEEEE;
    height: 100px;
    display: flex;
    align-items: center;
}

#footer ul {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

#footer ul li {
    padding: 0 25px;
}

#footer ul li a {
    color: #53005e;
    font-size: 22px;
    font-weight: 500;
}

#footer .logo img {
    max-width: 328px;
    margin: 30px 0;
}

#footer .copy {
    color: #53005e;
}

@media screen and (max-width:768px) {
    #footer nav {
        height: 60px;
    }

    #footer ul li {
        padding: 0 5px;
    }

    #footer ul li a {
        font-size: 100%;
    }

    #footer .logo img {
        margin: 20px 0;
    }
}


/* about
-------------------------------------------------------*/

#about {
    padding-bottom: 122px;
}

#about .btn_wrap {
    padding: 0 20px;
    box-sizing: border-box;
}

#about .head {
    padding: 70px 0 0;
}

#about .head .btn {
    margin: 0 auto 70px;
}

#about .head ul li {
    padding: 0 20px 70px;
    background: url(../img/bg01_1.png)no-repeat right bottom/contain;
}

#about .head ul li.p {
    padding: 0 20px 70px;
    background: url(../img/bg01_1.jpg)no-repeat right bottom/contain;
    background-size: 27vw;
}

#about .head ul li .inner {
    position: relative;
}

#about .head ul li .inner .img {
    position: absolute;
    top: -10px;
    right: -50px;
}

#about .head ul li .inner .txt {
    padding: 0 400px 0 0;
    box-sizing: border-box;
    line-height: 2;
    font-size: 20px;
}

#about .head ul li.rev {
    padding-bottom: 150px;
    background: url(../img/bg01_2.png)no-repeat left bottom/contain;
}

#about .head ul li.rev .inner .txt {
    padding: 0 0 0 400px;
}

#about .head ul li.rev .inner .img {
    top: 30px;
    right: auto;
    left: 0;
}

#about .head ul li.rev .inner .ttl02 {
    text-align: right;
}

#about .foot {
    background: url(../img/bg02_1.png)no-repeat top center /contain #53005E;
    color: #fff;
    position: relative;
}

#about .foot .box {
    padding: 70px 20px 110px;
}

#about .foot .box:last-child {
    padding-bottom: 0;
}

#about .foot .ttl {
    font-size: 40px;
    line-height: 1.3;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 0 0 20px;
    margin: 0 0 30px;
}

#about .foot .txt_head {
    text-align: center;
    font-size: 25px;
    line-height: 1.8;
    margin: 0 0 30px;
}

/* Glass morphism effect for txt_head items */
.glass-item {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    margin: 12px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: glassItemFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.glass-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.glass-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.glass-item:hover::before {
    left: 100%;
}

.glass-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.1)
    );
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-item:hover::after {
    opacity: 1;
}

@keyframes glassItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.glass-item:nth-child(1) { animation-delay: 0.1s; }
.glass-item:nth-child(2) { animation-delay: 0.2s; }
.glass-item:nth-child(3) { animation-delay: 0.3s; }
.glass-item:nth-child(4) { animation-delay: 0.4s; }
.glass-item:nth-child(5) { animation-delay: 0.5s; }
.glass-item:nth-child(6) { animation-delay: 0.6s; }
.glass-item:nth-child(7) { animation-delay: 0.7s; }
.glass-item:nth-child(8) { animation-delay: 0.8s; }
.glass-item:nth-child(9) { animation-delay: 0.9s; }
.glass-item:nth-child(10) { animation-delay: 1.0s; }

.glass-container {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

/* SNS Icons Glass Style */
.sns-container {
    text-align: center;
    margin: 30px 0;
    padding: 0 20px;
}

.sns-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sns-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glass morphism effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    
    animation: snsIconFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.sns-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.sns-icon i {
    font-size: 32px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 2;
}

.sns-icon:hover i {
    transform: scale(1.1);
}

/* Individual SNS brand colors */
.sns-icon:nth-child(1) i {
    color: #E4405F;
}

.sns-icon:nth-child(2) i {
    color: #00B900;
}

.sns-icon:nth-child(3) i {
    color: #1877F2;
}

.sns-icon:hover:nth-child(1) {
    background: linear-gradient(135deg, 
        rgba(228, 64, 95, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
}

.sns-icon:hover:nth-child(2) {
    background: linear-gradient(135deg, 
        rgba(0, 185, 0, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
}

.sns-icon:hover:nth-child(3) {
    background: linear-gradient(135deg, 
        rgba(24, 119, 242, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
}

/* Shimmer effect */
.sns-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    border-radius: 50%;
}

.sns-icon:hover::before {
    left: 100%;
}

/* Border glow effect */
.sns-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.1)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sns-icon:hover::after {
    opacity: 1;
}

@keyframes snsIconFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.sns-icon:nth-child(1) { animation-delay: 0.2s; }
.sns-icon:nth-child(2) { animation-delay: 0.4s; }
.sns-icon:nth-child(3) { animation-delay: 0.6s; }

/* SNS Section with Background */
.sns-section {
    margin: 50px 0 30px;
    padding: 0 20px;
}

.sns-background {
    background: linear-gradient(135deg, 
        rgba(83, 0, 94, 0.95) 0%, 
        rgba(118, 0, 134, 0.9) 50%, 
        rgba(83, 0, 94, 0.95) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(83, 0, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sns-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg02_1.png') no-repeat center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.sns-title {
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin: 0 0 30px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.sns-background .sns-container {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.sns-background .sns-icons {
    justify-content: center;
    gap: 30px;
}

.sns-background .sns-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sns-background .sns-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.sns-background .sns-icon i {
    font-size: 36px;
    color: #fff;
}

.sns-background .sns-icon:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

#about .foot .ul01 {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 70px;
}

#about .foot .ul01 li {
    padding: 0 10px;
}

#about .foot .txt {
    font-size: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 70px;
}

#about .foot .ul02 {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: center;
}

#about .foot .ul02 li {
    padding: 0 30px;
}

#about .foot .box:last-child {
    background: url(../img/bg02_2.jpg)no-repeat top center/100% auto;
}

#about .foot .ul03 {
    max-width: 710px;
    margin: 0 auto 70px;
    border: 1px solid #ffffff;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.05) 100%);
    padding: 40px 40px;
    box-sizing: border-box;
}

#about .foot .ul03 li {
    font-size: 25px;
    line-height: 1.3;
}

#about .foot .ul03 li:not(:last-child) {
    margin: 0 0 30px;
}

#about .txt_foot {
    text-align: center;
    font-size: 36px;
    line-height: 1.6;
    margin: 30px 0 0;
    position: relative;
    bottom: -30px;
    z-index: 1;
}

#about .foot::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -122px;
    background: url(../img/arrow.png)no-repeat center/100% 100%;
    width: 100%;
    height: 122px;
}

@media screen and (max-width:900px) {
    #about .head ul li .inner .img {
        top: 90px;
        right: 0;
    }
}

@media screen and (max-width:768px) {
    #about {
        padding-bottom: 61px;
    }

    #about .head {
        padding: 35px 0 0;
    }

    #about .head .btn {
        margin: 0 auto 35px;
    }

    #about .head ul li {
        padding: 0 20px 35px !important;
        position: relative;
    }

    #about .head ul li::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, 0.7);
        width: 100%;
        height: 100%;
    }

    #about .head ul li .inner .img {
        margin: 0 auto 15px;
        max-width: 150px;
        position: static;
    }

    #about .head ul li .inner .txt {
        padding: 0 !important;
        line-height: 1.3;
        font-size: 100%;
    }

    #about .foot .box {
        padding: 35px 20px;
    }

    #about .foot .ttl {
        font-size: 140%;
        padding: 0 0 20px;
        margin: 0 0 20px;
    }

    #about .foot .txt_head {
        font-size: 120%;
        line-height: 1.4;
        margin: 0 0 20px;
    }

    #about .foot .ul01 {
        margin: 0 0 35px;
        flex-flow: row wrap;
    }

    #about .foot .ul01 li {
        width: 50%;
        padding: 0 10px 0 0;
        box-sizing: border-box;
    }

    #about .foot .ul01 li:nth-child(even) {
        padding: 0 0 0 10px;
    }

    #about .foot .ul01 li:nth-child(n+3) {
        margin: 20px 0 0;
    }

    #about .foot .txt {
        font-size: 100%;
        line-height: 1.4;
        margin: 0 auto 35px;
    }

    #about .foot .ul02 li {
        padding: 0 5px;
    }

    #about .foot .ul03 {
        margin: 0 auto 35px;
        padding: 30px 20px;
    }

    #about .foot .ul03 li {
        font-size: 120%;
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-start;
    }

    #about .foot .ul03 li:not(:last-child) {
        margin: 0 0 20px;
    }

    /* Mobile styles for glass items */
    .glass-item {
        font-size: 18px;
        padding: 14px 18px;
        margin: 8px 0;
        border-radius: 16px;
    }
    
    .glass-container {
        padding: 0 10px;
    }

    /* Mobile styles for SNS icons */
    .sns-container {
        margin: 20px 0;
        padding: 0 10px;
    }
    
    .sns-icons {
        gap: 15px;
    }
    
    .sns-icon {
        width: 60px;
        height: 60px;
    }
    
    .sns-icon i {
        font-size: 24px;
    }
    
    .sns-icon:hover {
        transform: translateY(-2px) scale(1.05);
    }

    /* Mobile styles for SNS background section */
    .sns-section {
        margin: 30px 0 20px;
        padding: 0 10px;
    }
    
    .sns-background {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .sns-title {
        font-size: 22px;
        margin: 0 0 20px;
    }
    
    .sns-background .sns-icons {
        gap: 20px;
    }
    
    .sns-background .sns-icon {
        width: 70px;
        height: 70px;
    }
    
    .sns-background .sns-icon i {
        font-size: 28px;
    }
    
    .sns-background .sns-icon:hover {
        transform: translateY(-3px) scale(1.08);
    }

    #about .foot .box:last-child {
        padding-bottom: 30px;
    }

    #about .txt_foot {
        font-size: 120%;
        line-height: 1.3;
        margin: 0;
    }

    #about .foot::after {
        bottom: -61px;
        background: url(../img/arrow.png)no-repeat center/100% 100%;
        width: 100%;
        height: 61px;
    }
}


/* academy
-------------------------------------------------------*/

#academy {
    padding-top: 120px;
}

#academy ul {
    margin: 100px 0 0;
}

#academy ul li .ttl {
    position: relative;
    padding: 0 0 0 246px;
    font-size: 40px;
    color: #827a0e;
    line-height: 1.1;
    margin: 0 0 20px;
}

#academy ul li .ttl > * {
    display: block;
}

#academy ul li .ttl span {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translate(0, -50%);
}

#academy ul li .ttl img {
    max-width: 181px;
}

#academy ul li:not(:last-child) {
    margin: 0 0 110px;
}

#academy ul li:nth-child(2) .ttl {
    padding: 0 246px 0 0;
    text-align: right;
}

#academy ul li:nth-child(2) .ttl span {
    left: auto;
    right: 40px;
}
#academy ul li:nth-child(4) .ttl {
    padding: 0 246px 0 0;
    text-align: right;
}

#academy ul li:nth-child(4) .ttl span {
    left: auto;
    right: 40px;
}
#academy .head {
    padding-bottom: 70px;
}

#academy .btn {
    margin: 0 auto;
}

#academy .intro {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

#academy .txt_box {
    font-size: 18px;
    line-height: 1.6;
    padding: 10px;
}

#academy .academy_scenery .ba_visual {
    margin: 0 0 50px;
    position: relative;
}

#academy .academy_scenery .ba_visual::before {
    content: "";
    background: url(../img/deco01.png)no-repeat top left/146px 146px;
    width: 146px;
    height: 146px;
    position: absolute;
    left: -30px;
    top: -30px;
}

#academy .academy_scenery .ttl {
    color: #b0a834;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #b0a834;
}

#academy .academy_scenery .ba02 .ttl span {
    font-size: 14px;
}

#academy .academy_scenery .ba01 {
    margin: 0 0 40px;
}

#academy .academy_scenery .ba01 .img {
    display: flex;
    justify-content: space-between;
}

#academy .academy_scenery .ba01 img {
    max-width: 480px;
}

#academy .academy_scenery .ba01 img:first-child {
    padding: 0 20px 0 0;
}

#academy .academy_scenery .ba02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 70px;
}

#academy .academy_scenery .ba02 .box {
    width: 48%;
}

#academy .academy_scenery .ba02 img {
    max-width: 480px;
}

#academy .academy_scenery .ba02 .box:last-child .img {
    position: relative;
}

#academy .academy_scenery .ba02 .box:last-child .img::after {
    content: "";
    background: url(../img/deco02.png)no-repeat center/146px 146px;
    width: 146px;
    height: 146px;
    position: absolute;
    bottom: -30px;
    right: -30px;
}

@media screen and (max-width:768px) {
    #academy {
        padding-top: 35px;
    }

    #academy ul {
        margin: 30px 0 0;
    }

    #academy ul li .ttl {
        padding: 0 !important;
        font-size: 140%;
        line-height: 1.3;
        text-align: center !important;
    }

    #academy ul li .ttl span {
        position: static;
        transform: none;
        margin: 0 0 20px;
    }

    #academy ul li .ttl img {
        max-width: 150px;
    }

    #academy ul li:not(:last-child) {
        margin: 0 0 30px;
    }

    #academy .head {
        padding-bottom: 35px;
    }

    #academy .btn {
        margin: 30px auto 0;
    }

    #academy .intro {
        font-size: 100%;
    }

    #academy .txt_box {
        font-size: 100%;
    }

    #academy .academy_scenery .ba_visual {
        margin: 0 0 30px;
    }

    #academy .academy_scenery .ttl {
        font-size: 100%;
        margin: 0 0 10px;
        padding: 0 0 10px;
    }

    #academy .academy_scenery .ba01 img:first-child {
        padding: 0 10px 0 0;
    }

    #academy .academy_scenery .ba02 .ttl span {
        font-size: 12px;
    }

    #academy .academy_scenery .ba01 {
        margin: 0 0 20px;
    }

    #academy .academy_scenery .ba02 {
        margin: 0 0 30px;
    }

    #academy .academy_scenery .ba_visual::before {
        background: url(../img/deco01.png)no-repeat top left/100px 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        left: -15px;
        top: -15px;
    }

    #academy .academy_scenery .ba02 .box:last-child .img::after {
        content: "";
        background: url(../img/deco02.png)no-repeat center/100px 100px;
        width: 100px;
        height: 100px;
        position: absolute;
        bottom: -15px;
        right: -15px;
    }
}


/* contests
-------------------------------------------------------*/

#contests {
    background: url(../img/bg04.png)no-repeat center top/100% auto #EEEEEE;
}

#contests .head {
    padding-bottom: 90px;
}

#contests .head ul li {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

#contests .head ul li:not(:last-child) {
    margin: 0 0 40px;
}

#contests .head ul li .img img {
    max-width: 386px;
    min-width: 386px;
    margin: 0 20px 0 0;
}

#contests .head ul li .txt > * {
    display: block;
}

#contests .head ul li .txt b {
    color: #6c3072;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 20px;
    font-weight: bold;
}

#contests .head ul li .txt span {
    line-height: 1.6;
}

#contests .head .img_foot {
    position: relative;
    top: -8px;
    max-width: 946px;
}

#contests .foot .box {
    background: url(../img/bg05_1.png)no-repeat center/cover;
    border: 3px solid;
    border-image: radial-gradient(circle, #C4C4C4 0%, #fff 25%, #C4C4C4 75%, #fff 100%);
    border-image-slice: 1;
    padding: 5px;
    box-sizing: border-box;
    position: relative;
}

#contests .foot .box::before,
#contests .foot .box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    background: url(../img/bg05_2_1.png.png)no-repeat center/cover;
    width: 146px;
    height: 142px;
}

#contests .foot .box::after {
    left: auto;
    right: 5px;
    background: url(../img/bg05_2_2.png.png)no-repeat center/cover;
    width: 142px;
    height: 146px;
}

#contests .foot .box .wrap {
    border: 1px solid;
    border-image: radial-gradient(circle, #C4C4C4 0%, #fff 25%, #C4C4C4 75%, #fff 100%);
    border-image-slice: 1;
    padding: 140px 90px 200px;
    box-sizing: border-box;
    position: relative;
}

#contests .foot .box .wrap::before,
#contests .foot .box .wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../img/bg05_2_3.png.png)no-repeat center/cover;
    width: 146px;
    height: 142px;
}

#contests .foot .box .wrap::after {
    left: auto;
    right: 0;
    background: url(../img/bg05_2_4.png.png)no-repeat center/cover;
    width: 142px;
    height: 146px;
}

#contests .foot .box .wrap .ttl {
    max-width: 883px;
    margin: 0 auto 40px;
    position: relative;
}

#contests .foot .box .wrap .ttl::after {
    content: "";
    display: block;
    background: url(../img/grand_prix_benefits_item.png)no-repeat center/contain;
    width: 140px;
    height: 16px;
    margin: 30px auto 0;
}

#contests .foot .box .wrap .txt > * {
    display: block;
    color: #fff;
    font-size: 25px;
}

#contests .foot .box .wrap .txt b {
    margin: 0 0 30px;
    font-weight: bold;
    line-height: 1.5;
}

#contests .foot .box .wrap .txt span:first-of-type {
    margin: 0 0 70px;
}

#contests .foot .box .wrap .txt span span {
    display: block;
    line-height: 1.3;
}

#contests .foot .box .wrap .txt span span:not(:last-child) {
    margin: 0 0 10px;
}

#contests .foot .box .wrap ul {
    margin: 50px 0 0;
    color: #fff;
}

#contests .foot .box .wrap ul li:not(:last-child) {
    margin: 0 0 50px;
}

#contests .foot .box .wrap ul li .benefit {
    font-size: 25px;
    margin: 0 0 20px;
    line-height: 1.3;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

#contests .foot .box .wrap ul li .txt {
    padding: 0 0 0 40px;
    line-height: 1.3;
}

@media screen and (max-width:768px) {
    #contests .head {
        padding-bottom: 35px;
    }

    #contests .head ul li {
        flex-flow: column-reverse;
        align-items: center;
    }

    #contests .head ul li:not(:last-child) {
        margin: 0 0 20px;
    }

    #contests .head ul li .img img {
        min-width: auto;
        margin: 20px 0 0;
    }

    #contests .head ul li .txt {
        width: 100%;
    }

    #contests .head ul li .txt b {
        font-size: 100%;
    }

    #contests .head ul li .txt span {
        line-height: 1.3;
    }

    #contests .head .img_foot {
        top: 0;
        margin: 20px 0 0;
    }

    #contests .foot .box::before,
    #contests .foot .box::after {
        width: 73px;
        height: 71px;
    }

    #contests .foot .box::after {
        width: 71px;
        height: 73px;
    }

    #contests .foot .box .wrap {
        padding: 70px 40px;
    }

    #contests .foot .box .wrap::before,
    #contests .foot .box .wrap::after {
        width: 73px;
        height: 71px;
    }

    #contests .foot .box .wrap::after {
        width: 71px;
        height: 73px;
    }

    #contests .foot .box .wrap .ttl {
        margin: 0 auto 20px;
    }

    #contests .foot .box .wrap .ttl::after {
        width: 70px;
        height: 8px;
    }

    #contests .foot .box .wrap .txt > * {
        font-size: 120%;
    }

    #contests .foot .box .wrap .txt b {
        margin: 0 0 20px;
        line-height: 1.3;
    }

    #contests .foot .box .wrap .txt span:first-of-type {
        margin: 0 0 35px;
    }

    #contests .foot .box .wrap ul {
        margin: 30px 0 0;
    }

    #contests .foot .box .wrap ul li:not(:last-child) {
        margin: 0 0 30px;
    }

    #contests .foot .box .wrap ul li {}

    #contests .foot .box .wrap ul li .benefit {
        font-size: 120%;
        margin: 0 0 15px;
    }

    #contests .foot .box .wrap ul li .txt {
        font-size: 90%;
        padding: 0 0 0 28px;
    }

    #contests .foot .box .wrap .ttl {
        max-width: 400px;
    }
}


/* voice
-------------------------------------------------------*/

#voice {
    padding: 100px 20px 0;
}

#voice .box_slash {
    background: url(../img/bg06.png);
}

#voice .box_slash
/*:first-of-type*/

    {
    margin: 0 auto 60px;
}

#voice .box_slash .txt > b {
    color: #53005e;
}

#voice .box_slash .txt b {
    line-height: 1.6;
}

#voice .box_slash .txt .category {
    font-size: 18px;
    line-height: 1.6;
}

@media screen and (max-width:900px) {
    #voice .box_slash .wrap {
        padding: 30px 20px;
        flex-flow: column;
        align-items: center;
    }

    #voice .box_slash .wrap .img img {
        margin: 0 0 30px 0;
    }
}

@media screen and (max-width:768px) {
    #voice {
        padding: 35px 20px 0;
    }

    #voice .box_slash

    /*:first-of-type*/
        {
        margin: 0 auto 30px;
    }

    #voice .box_slash .txt .category {
        font-size: 100%;
    }
}


/* foot_area
-------------------------------------------------------*/

.foot_area ul li:not(:last-child) {
    margin: 0;
}

.btn_purple {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px;
}

.btn_purple li {
    padding: 0 20px 0 0;
    width: 100%;
    max-width: 380px;
}

.btn_purple li:last-child {
    padding: 0 0 0 20px;
}

@media screen and (max-width:768px) {
    .btn_purple {
        flex-flow: column;
        align-items: center;
        margin: 0;
    }

    .btn_purple li {
        padding: 0;
    }

    .btn_purple li:last-child {
        padding: 20px;
    }
}


/*エントリーボタン無効*/

.btn.noent {
    background: #727272;
}

a.noent {
    pointer-events: none;
}


/* flow
-------------------------------------------------------*/

#flow {
    background: url("../img/flow_bg.png")no-repeat center/cover;
}

#flow h3 {
    text-align: center;
    font-size: 230%;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 0 30px;
    margin: 0 auto 50px;
    border-bottom: 5px solid #53005e;
    max-width: 770px;
}

#flow ul {
    /*max-width: 850px;*/
    max-width: 1020px;
    margin: 0 auto;
}

#flow ul li {
    background: #fff;
    border: 2px solid #53005e;
    padding: 40px 0 30px;
    position: relative;
    text-align: center;
    min-height: 210px;
    box-sizing: border-box;
}

#flow ul li:not(:last-child) {
    margin: 0 0 60px;
    position: relative;
}

#flow ul li:not(:last-child)::after {
    position: absolute;
    display: block;
    content: "";
    background: url("../img/flow_arrow.png")no-repeat center/39px 34px;
    width: 39px;
    height: 34px;
    right: 50%;
    bottom: -30px;
    transform: translate(50%, 50%);
}

#flow ul li .num {
    position: absolute;
    top: -40px;
    left: -20px;
}

#flow ul li .num img {
    max-width: 73px;
}

#flow ul li .ttl {
    font-size: 160%;
    color: #53005e;
    padding: 0 0 20px;
    margin: 0 0 20px;
    position: relative;
    font-weight: 500;
    line-height: 1.4;
}

#flow ul li .ttl::after {
    position: absolute;
    display: block;
    content: "";
    width: 65px;
    height: 2px;
    background: #53005e;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 50%);
}

#flow ul li .txt {
    font-size: 110%;
    line-height: 1.6;
}

#flow ul li .caution {
    font-size: 80%;
    margin: 20px 0 0;
    line-height: 1.5;
}

#video {
    background: url("../img/video_bg.png")no-repeat center/ cover;
}

#video.area {
    padding: 80px 20px;
}

#video h3 {
    color: #fff;
    font-size: 230%;
    text-align: center;
    margin: 0 0 40px;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    #flow {
        background: url("../img/flow_bg.png")no-repeat top/cover;
    }

    #flow.area {
        padding: 30px;
    }

    #flow h3 {
        font-size: 130%;
        padding: 0 0 20px;
        margin: 0 auto 30px;
        border-bottom: 3px solid #53005e;
    }

    #flow ul li {
        padding: 20px;
        min-height: inherit;
    }

    #flow ul li .num img {
        max-width: 60px;
    }

    #flow ul li .ttl {
        font-size: 140%;
    }

    #flow ul li .ttl::after {
        width: 50px;
    }

    #flow ul li .txt {
        font-size: 90%;
    }

    #flow ul li .caution {
        line-height: 1.2;
    }

    #video.area {
        padding: 30px 20px;
    }

    #video h3 {
        font-size: 140%;
        margin: 0 0 30px;
    }
}

#flow ul li span {
    display: block;
}

#flow ul li span.mb15 {
    margin-bottom: 15px;
}

.mrs_logo {
    display: block;
    max-width: 200px;
    padding-top: 15px;
}

.fab_logo {
    display: block;
    max-width: 160px;
    padding-top: 15px;
}

.u-body {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif !important;
}

.u-font-montserrat.u-custom-font {
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif !important;
}

@media screen and (max-width:768px) {
    .mrs_logo {
        display: block;
        max-width: 100%;
        padding-top: 15px;
    }

    .mrs_logo img {
        display: block;
        width: 160px;
        margin: 0 auto;
    }

    .fab_logo {
        display: block;
        max-width: 100%;
        padding-top: 15px;
    }

    .fab_logo img {
        display: block;
        width: 140px;
        margin: 0 auto;
    }

    #academy .academy_scenery .ba01 .img {
        display: block;
    }

    #academy .academy_scenery .ba01 img:first-child {
        padding: 0 0px 0 0;
    }

    #academy .academy_scenery .ba01 img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    #academy .academy_scenery .ba02 {
        display: block;
    }

    #academy .academy_scenery .ba02 .box {
        width: 100%;
    }

    #academy .academy_scenery .ba02 img {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

.video iframe {
    width: 100%;
    height: 600px;
}

@media screen and (max-width:768px) {
    .video iframe {
        width: 100%;
        height: 300px;
    }
}

.pg_img {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 0px 20px;
}

.topu_txt {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 30px 0px;
    border-top: 3px #bc7e00 double;
    border-bottom: 3px #bc7e00 double;
}

.topu_txt p {
    text-align: center;
    line-height: 1.5;
    font-size: 152%;
    font-weight: bolder;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    color: #53005e;
}

@media screen and (max-width:768px) {
    .topu_txt {
        margin-bottom: 30px;
        padding: 20px 4%;
    }

    .topu_txt p {
        text-align: center;
        font-size: 90%;
    }
}

p.caution_red {
    border: 1px solid #ff0000;
    padding: 15px;
    box-sizing: border-box;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    color: #ff0000;
    font-weight: bolder;
}

p.caution_red a {
    color: #53005e;
}

.left_txt {
    display: inline-block;
    text-align: left;
    margin-left: 30px;
}

@media screen and (max-width:768px) {
    .left_txt {
        display: inline-block;
        text-align: left;
        margin-left: 0px;
    }
}

.co_caution {
    text-align: center;
    color: #53005e;
    margin-bottom: 30px;
    font-size: 140%;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    .co_caution {
        font-size: 90%;
    }
}

a.btn_none {
    pointer-events: none;
}

.boshu_end {
    border-top: 3px solid #53005e;
    border-bottom: 3px solid #53005e;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
}

.boshu_end p {
    text-align: center;
    font-size: 200%;
    font-weight: bolder;
    font-weight: bolder;
    font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
    line-height: 1.5;
}

.ttl_h3 {
    font-size: 90px;
    font-weight: 400;
    color: #53005e;
}

.ttl_h3 .span {
    font-size: 2rem;
    color: #53005e;
    font-weight: bold;
    margin: 0 0 0px;
    display: block;
}

.ttl04 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    line-height: 2.6rem;
}

.row03 {
    font-size: 3.4rem;
    line-height: 3.4rem;
}

#contests .foot .box .wrap .txt span:first-of-type {
    margin: 0 0 10px;
}

@media screen and (max-width:768px) {
    .boshu_end {
        border-top: 2px solid #53005e;
        border-bottom: 2px solid #53005e;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 20px;
    }

    .boshu_end p {
        text-align: center;
        font-size: 120%;
        font-weight: bolder;
        font-weight: bolder;
        font-family: 'Noto Serif JP', 'Noto Serif KR', serif;
        line-height: 1.5;
    }

    .row03 {
        font-size: 2.0rem;
        line-height: 2.4rem;
    }

    /* 固定ボタンのスタイル */
    #submit_btn.fixed {
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 100;
        width: 100%;
        max-width: none;
    }

    #submit_btn.fixed a.btn {
        margin: 0 auto 0px !important;
    }

    .ttl_h3 {
        font-size: 30px;
        font-weight: 400;
        color: #53005e;
    }

    .ttl_h3 .span {
        font-size: 2rem;
        color: #53005e;
        font-weight: bold;
        margin: 0 0 0px;
        display: block;
    }

    .ttl04 {
        text-align: center;
        color: #ffffff;
        font-size: 20px;
        line-height: 26px;
    }
}
