<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*==============================================================================================
●共通
==============================================================================================*/

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
:root {
    --color-black-1: #000000;

    --color-black-2: #222222;

    --color-gray-1: #f5f5f5;

    --color-white-1: #ffffff;

    --color-white-2: #fffac2;

    --color-red-1: #F8586F;

    --color-blue-1: #1b3180;

    --width-pc: 970px;
    --width-sp: 90%;
}
body {
    background-color: var(--color-white-1);
    color: var(--color-black-1);
    position: relative;
    height: 100%;
    font-weight: 500;
    overflow-x: hidden;
}

a img:hover {
    opacity: 0.8;
}



@media screen and (min-width: 1024px) {
    .hide_pc {
      display: none;
    }
    .hide_sp {
      display: block;
    }
  }
  @media screen and (max-width: 1023px) {
    .hide_pc {
      display: none;
    }
    .hide_sp {
      display: block;
    }
  }
  @media screen and (max-width: 768px) {
    .hide_pc {
      display: block;
    }
    .hide_sp {
      display: none;
    }
  }
  @media screen and (max-width: 480px) {
    .hide_pc {
      display: block;
    }
    .hide_sp {
      display: none;
    }
  }

/*/////////////////////////ヘッダー///////////////////////*/

header {
    height: 58px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: var(--width-pc);
    padding: 0 20px;
}
@media screen and (max-width: 540px) {
    header {
        height: 46px;
    }
}

.header-logo,
.header-sns {
    display: flex;
    flex-direction: row;
    align-items: center;
}
@media screen and (max-width: 449px) {
.header-sns {
    display: none;
}
}

/*/////////////////////////フッター///////////////////////*/
footer {
    width: 100%;
    padding: 80px 0 20px;
}

.footer-wrap {
    margin: auto;
    text-align: center;
}
.footer-wrap p {
    font-size: 0.8rem;
}

.footer-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 4em 0;
}

.footer-ad {
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.2);
    width: 80%;
}




/*ボタン*/
.btn-box {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 30px;
}
.btn-box:first-child {
    margin-top: 80px;
  }

.btn-keijiban {
    line-height: 0.6em;
    text-align: center;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 36%;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
    padding: 20px 10px;
    background: linear-gradient(#FFACAC, #CB023E);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-width: 340px;
    
}
.btn-mail {
    line-height: 0.6em;
    text-align: center;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 36%;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
    padding: 20px 10px;
    background: linear-gradient(#3B82E6, #003E95);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-width: 340px;
}
.btn-line {
    line-height: 0.6em;
    text-align: center;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 36%;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
    padding: 20px 10px;
    background-color: #2EAC38;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-width: 340px;
}
.btn-x {
    line-height: 0.6em;
    text-align: center;
    border-radius: 9999px;
    display: inline-block;
    transition: all 0.3s ease;
    width: 36%;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 10px;
    padding: 20px 10px;
    background-color: #000000;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    max-width: 340px;
}
.btn-mail img,
.btn-keijiban img,
.btn-line img,
.btn-x img {
    width: 36px;
    padding-right: 10px;
}
.btn-mail a,
.btn-keijiban a,
.btn-line a,
.btn-x a {
    color: var(--color-white-1);
}
.btn-mail:hover,
.btn-keijiban:hover,
.btn-line:hover,
.btn-x:hover {
    transform: scale(0.9,0.9);
}

a.mbottan-red {
    color: var(--color-white-1);
    background-color: var(--color-red-1);
    text-decoration: none;
}

a.mbottan-red:link,
a.mbottan-red:visited {
    color: var(--color-white-1);
}

a.mbottan-red:hover,
a.mbottan-red:active {
    background-color: var(--color-blue-1);
    opacity: 1;
}

a.mbottan-black {
    color: var(--color-white-1);
    background-color: var(--color-black-1);
}

a.mbottan-black:link,
a.mbottan-black:visited {
    color: var(--color-white-1);
}

a.mbottan-black:hover,
a.mbottan-black:active {
    background-color: var(--color-blue-1);
    opacity: 1;
}
a.btn-keijiban {
    text-decoration: none;
}




/*/////////////////////////トップページ///////////////////////*/
main {
    width: 100%;
}

.bg1 {
    background-position: center bottom;
    background-repeat: repeat-y;
    position: relative;
}

.kv {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.kv h3 {
    color: var(--color-blue-1);
    text-align: center;
    line-height: 1.4em;
}

.kv-logo {
    position: relative;
    top: -40px;
    left: 10px;
    img {
      width: 280px;
    }
}

.intro {
    margin: 0 auto;
    text-align: center;
    position: relative;
    
}
.message-sakura {
    content: "";
    position: absolute;
    top: -8%;
    right: 4%;
    width: 174px;
    height: 151px;
    background-image: url(../../img/message-sakura.png);
    background-size: cover;
}
    

@media screen and (min-width: 1000px) {
    .message-sakura {
        content: "";
        position: absolute;
        top: -2%;
        right: 12%;
        width: 174px;
        height: 151px;
        background-image: url(../../img/message-sakura.png);
        background-size: cover;
        
    }
}
.intro p {
    margin: 1.5em 0;
}

.intro h1 {
    color: var(--color-red-1);
}

.intro span.line {
    background-color: var(--color-red-1);
    color: var(--color-white-1);
    font-size: 1.2em;
    padding: 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.intro span.tbig1 {
    font-size: 1.2em;
}
.intro span.bold {
    font-weight: bold;
    font-size: 1.2em;
    color: #CB023E;
}
@media screen and (max-width: 768px) {
    .intro span.bold {
        font-size: 1.0em;
    }
}
.guest-wrap {
    margin: 0 auto 100px auto;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.present-title {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;

}

.present h1,
.present h2,
.present-t1 span {
    color: var(--color-red-1);
}

.present-set img {
    max-width: 330px;
    margin: 10px 0;
    height: auto;
}


.redbull {
    background-image: url(../../img/bg-redbull.png);
    background-size: 100%;
    color: var(--color-white-1);
    text-align: center;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: center top;
}
@media screen and (min-width: 770px) {
    .redbull {
        background-image: url(../../img/bg-redbull.png);
        background-size: 100%;
        color: var(--color-white-1);
        text-align: center;
        background-repeat: no-repeat;
    }

}

.redbull-wrap,
.guest-wrap {
    margin: auto;
    color: var(--color-black-1);
}

.redbull-wrap h2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 40px;
}

.redbull-wrap p {
    text-align: left;
    margin: 2em 0;
    font-size: 14px;
}

.guest {
    background-position: bottom center;
    background-repeat: repeat-y;
    position: relative;
}
.guest::before {
    background: url(../../img/bg-bottom.png) center no-repeat;
    content: "";
    display: block;
    height: 260px;
    background-size: cover;
    position: relative;
    top: -10px;
}

.guest-profile {
    display: flex;
    justify-content: center;
    padding: 50px 0 220px;
}
@media screen and (min-width: 770px) {
    .guest-profile {
        display: flex;
        justify-content: center;
        padding: 80px 0;
    }

}
.guest-profile-photo {
    max-width: 320px;
}
.guest-profile-photo img {
    max-width: 280px;
}

.guest-profile-txt {
    text-align: left;
}

.guest-profile-txt h3 {
    line-height: 1.4;
    font-weight: bold;
    padding: 12px 0;
    font-size: 1.2em;
}
.guest-profile-txt h3 span {
    font-size: 0.8em;
}
.guest-profile-txt p {
    font-size: 14px;
}

a.message {
    text-decoration: underline;
    color: #CB023E;
    font-weight: bold;
}


/*==============================================================================================
●PCサイズ
==============================================================================================*/

@media screen and (min-width: 769px) {
    .pc {
        display: block;
    }

    .sp {
        display: none;
    }




    /*/////////////////////////ヘッダー///////////////////////*/
    header {
        width: 100%;
    }

    .header-logo a:first-child {
        margin-right: 20px;
    }

    .header-sns a:first-child {
        margin-right: 10px;
    }

    /*/////////////////////////フッター///////////////////////*/
    .footer-wrap {
        max-width: 770px;
    }

    .footer-link a {
        margin: 0 2em;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .bg1 {
        background-image: url("../../img/bg.jpg");
        background-size: 3140px;
    }
    .guest {
        background-image: url("../../img/bg-guest.jpg");
        background-size: 3000px;
    }

    .bg1-wrapper {
        padding: 0 70px;
    }

    .kv,
    .intro {
        width: 100%;
    }

    .kv {
        padding: 0;
    }
    .kv-logo:before {
        content: "";
        position: absolute;
        bottom: 20px;
        left: -230px;
        width: 231px;
        height: 254px;
        background-image: url(../../img/kv-ten.png);
        background-size: cover;
    }


    .kv-logo:after {
        content: "";
        position: absolute;
        top: 10px;
        right: -180px;
        width: 174px;
        height: 151px;
        background-image: url(../../img/fukidashi.png);
        background-size: cover;
    }

    .kv-sayaka {
        display: none;
    }
    .kv-redbull {
        max-width: 240px;
        position: relative;
        top: -48px;
        left: 20px;
        img {
            width: 100%;
        }
    }

    .intro {
        padding: 60px 0;
    }

    .present {
        max-width: 770px;
        padding: 50px;
    }

    h1.present-and {
        margin-bottom: -20px;
    }

    .present-book {
        position: absolute;
        top: -40px;
        right: -70px;
        transform: rotate(15deg);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    }

    .sashiire {
        padding: 50px;
    }

    .redbull-wrap,
    .guest-wrap {
        max-width: 770px;
    }

    .guest-wrap {
        padding: ;
    }

    .guest-profile-photo {
        width: 45%;
    }
    .guest-profile-txt {
        width: 50%;
        padding-left: 40px;
    }

    .guest-profile {
        flex-direction: row;
    }

}
@media screen and (min-width: 1160px) {
    .bg1 {
        background-image: url("../../img/bg.jpg");
        background-size: 3270px;
    }

}
@media screen and (min-width: 1500px) {
    .bg1 {
        background-image: url("../../img/bg.jpg");
        background-size: 3500px;
    }

}
@media screen and (min-width: 1900px) {
    .bg1 {
        background-image: url("../../img/bg.jpg");
        background-size: 3700px;
    }

}
/*==============================================================================================
●タブレットサイズ
==============================================================================================*/

@media screen and (max-width: 864px) and ( min-width:769px) {
    .present-book {
        position: absolute;
        top: -40px;
        right: -46px;
        transform: rotate(15deg);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    }

}


/*==============================================================================================
●スマホサイズ
==============================================================================================*/

@media screen and (max-width: 768px) {

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

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }



    /*/////////////////////////ヘッダー///////////////////////*/
    header {
        width: var(--width-sp);
        padding: 0;
    }

    .header-logo a:first-child,
    .header-sns a:first-child {
        margin-right: 5px;
    }

    .hd-sol {
        width: 60%;
    }

    .hd-redbull {
        width: 80%;
    }

    /*/////////////////////////フッター///////////////////////*/
    .footer-wrap {
        width: var(--width-sp);
        padding: 50px 0;
    }

    .footer-link a:first-child {
        margin-right: 1em;
    }

    .footer-link a:last-child {
        margin-left: 1em;
    }

    /*/////////////////////////共通レイアウト///////////////////////*/
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1.1em;
    }

    h4 {
        font-size: 0.9em;
    }

    h5 {
        font-size: 0.8em;
    }

    h6 {
        font-size: 0.6em;
    }


    /*/////////////////////////トップページ///////////////////////*/
    .bg1 {
        background-image: url("../../img/bg-sp.jpg");
        position: relative;
        background-size: 810px;
        background-position: center bottom;
    }
    @media screen and (max-width: 449px) {
        .bg1 {
            background-image: url("../../img/bg-sp02.jpg");
            position: relative;
            background-size: 620px;
            background-position: center bottom;
        }

    }
    @media screen and (max-width: 360px) {
        .bg1 {
            background-image: url("../../img/bg-sp02.jpg");
            position: relative;
            background-size: 640px;
            background-position: center bottom;
        }

    }
    .guest {
        background-image: url("../../img/bg-guest.jpg");
        background-size: 1000px;
        background-size: cover;
    }
    .guest::before {
        height: 200px;
    }

    .kv,
    .intro,
    .redbull-wrap,
    .guest-wrap {
        width: var(--width-sp);
    }

    .kv {
        padding: 0;
    }
    .kv-logo {
        top: -20px;
        left: 0;
    }
    .kv-logo img {
        width: 300px;
    }
    @media screen and (max-width: 540px) {
        .kv-logo img {
            width: 240px;
        }
    }

    .kv-logo:after {
        content: "";
        position: absolute;
        top: 10px;
        right: -41%;
        width: 130px;
        height: 112px;
        background-image: url(../../img/fukidashi.png);
        background-size: cover;
    }
    @media screen and (max-width: 540px) {
        .kv-logo:after {
            content: "";
            position: absolute;
            top: 10px;
            right: -40%;
            width: 110px;
            height: 95px;
            background-image: url(../../img/fukidashi.png);
            background-size: cover;
        }
    
    }
    @media screen and (max-width: 450px) {
        .kv-logo:after {
            content: "";
            position: absolute;
            top: 9%;
            right: -42%;
            width: 94px;
            height: 80px;
            background-image: url(../../img/fukidashi.png);
            background-size: cover;
        }
    }
    @media screen and (max-width: 449px) {
        .kv-logo:after {
            content: "";
            position: absolute;
            top: -9%;
            right: -23%;
            width: 97px;
            height: 84px;
            background-image: url(../../img/fukidashi.png);
            background-size: cover;
        }
    }
    @media screen and (max-width: 340px) {
        .kv-logo:after {
            content: "";
            position: absolute;
            top: -9%;
            right: -12%;
            width: 82px;
            height: 71px;
            background-image: url(../../img/fukidashi.png);
            background-size: cover;
        }
    }
    .kv-redbull {
        max-width: 210px;
        position: relative;
        top: -30px;
        left: 0;
        img {
            width: 100%;
        }
    }
    .kv-ten {
        text-align: center;
        img {
          display: block;
          width: 60%;
          margin: 0 16%;
        }
    }
    @media screen and (max-width: 370px) {
        .kv-ten {
            img {
              display: block;
              width: 70%;
              margin: 0 9%;
            }
        }
    }

    .intro {
        padding: 0 0 50px 0;
    }

    .present {
        width: var(--width-sp);
    }

    .present h1 {
        font-size: 1.7em;
        line-height: 1.4;
    }

    .present-set {
        width: 100%;
        height: auto;

    }
    .present-set img {
        width: 100%;
        height: auto;
    }
    .present-book {
        display: inline-block;
        margin-bottom: 40px;
        transform: rotate(10deg);
        box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    }

    .present {
        padding: 50px 15px;
    }
    .btn-box {
        margin: 30px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn-box:first-child {
        margin-top: 40px;
    }
    .btn-keijiban {
        font-size: 1.2em;
        margin: 30px 10px;
        padding: 20px;
        line-height: 1.2em;
        width: 90%;
        
    }
    .btn-mail {
        font-size: 1.2em;
        margin: 0 10px;
        padding: 20px;
        line-height: 1.2em;
        width: 90%;
    }
    .btn-line {
        font-size: 1.2em;
        margin: 0 10px;
        padding: 20px;
        line-height: 1.2em;
        width: 90%;
    }
    .btn-x {
        font-size: 1.2em;
        margin: 30px 10px;
        padding: 20px;
        line-height: 1.2em;
        width: 90%;
    }
    .guest-profile-txt h3 {
        text-align: center;
    }

    .redbull-logo {
        max-width: 90%;
    }

    .guest-profile {
        flex-direction: column;
        align-items: center;
        padding: 50px 0 100px;
    }

    .guest-profile-txt {
        width: 90%;
    }

    .guest-profile-photo {
        margin-bottom: 16px;
    }
    .guest-profile .title {
        margin-bottom: 30px;
    }
    .message-sakura {
        content: "";
        position: absolute;
        top: -6%;
        right: 0%;
        width: 135px;
        height: 120px;
        background-image: url(../../img/message-sakura.png);
        background-size: cover;
    }
    @media screen and (max-width: 460px) {
        .message-sakura {
            top: -5%;
            right: 0%;
            width: 105px;
            height: 90px;
        }
    }
    @media screen and (max-width: 400px) {
        .message-sakura {
            top: -5%;
            right: 0%;
            width: 100px;
            height: 88px;
        }
    }
    .redbull {
    background-image: url(../../img/bg-redbull-sp.png);
    background-size: 100%;
    text-align: center;
    padding: 40px 0;
    background-repeat: no-repeat;
    
    }
    footer {
        padding: 0;
    }
    .footer-ad {
        width: 90%;
    }
    
    .redbull-wrap h2 {
        font-size: 1.2rem;
        font-weight: bold;
        line-height: 1.8;
    }
}
</pre></body></html>