@charset "UTF-8";

/* ========================================

- easing

======================================== */
/* ========================================

INDEX
	setAnim
	common
	not use compass

======================================== */
/* ------------------------------------

キーフレームアニメーション用mixin

■概要
↓こんな感じで書くブラウザ用の設定を書きだしてくれるmixinです
-webkit-animation-name: animation;
-moz-animation-name: animation;
-ms-animation-name: animation;
animation-name: animation;

■使い方

.class_name {
	@include setAnim(キーフレームアニメーションの名前, イージング, アニメーション時間[, 遅延時間]);
}

※遅延時間はいれなくてもいい
※keyframes ~~というのは別途書く必要があります


------------------------------------ */
/* ========================================

common

======================================== */
/* ========================================

compassを使わない場合

======================================== */
/* ========================================

INDEX
	text
	layout
	box
	hr
	video

======================================== */
/* ========================================

$text

======================================== */
.strong {
    font-weight: bold;
}

.large {
    font-size: 1.25em;
}

.x-large {
    font-size: 1.5em;
}

.mega {
    font-size: 2em;
}

.small {
    font-size: .83em;
}

.x-small {
    font-size: .75em;
}

.red {
    color: #f00;
}

.white {
    color: white;
}

.pink {
    color: #df6b81;
}

.f_pink {
    color: #fdd3db;
}

.peach {
    color: #ec7aac;
}

.yellow {
    color: #fff5ec;
}

.orange {
    color: #f18d00;
}

.f_pink {
    color: #fdd3db;
}

.blue {
    color: #00a0e9;
}

.sky {
    color: #5ec5f2;
}

.Thin {
    font-weight: 100;
}

.Light {
    font-weight: 300;
}

.Regular {
    font-weight: 400;
}

.Medium {
    font-weight: 500;
}

.Bold {
    font-weight: 700;
}

.Extrabold {
    font-weight: 800;
}

.Black {
    font-weight: 900;
}

/* ========================================

$layout

======================================== */
.hide {
    display: none;
}

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

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

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

.mb-0 {
    margin-bottom: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

.pd-0 {
    padding: 0px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.pd-5 {
    padding: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.pd-10 {
    padding: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.pd-15 {
    padding: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.pd-20 {
    padding: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.pd-25 {
    padding: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.pd-30 {
    padding: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.pd-35 {
    padding: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.pd-40 {
    padding: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.pd-45 {
    padding: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.pd-50 {
    padding: 50px !important;
}

.half {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.third {
    width: 33.333%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.quarter {
    width: 25%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent20 {
    width: 20%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.percent60 {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 60%;
}

.clear {
    clear: both;
}

/* ========================================

$box

======================================== */
.box {
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #000;
}

/* ========================================

$hr

======================================== */
hr {
    border: none;
    border-top: 1px solid #000;
}

hr.dash {
    border-top-style: dashed;
}

hr.dott {
    border-top-style: dotted;
}

/* ========================================

$video

======================================== */
.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.special_twitter {
    margin-bottom: 50px;
}

.special_twitter_header {
    text-align: center;
    font-size: 2.5em;
}

.special_twitter_text {
    font-size: 1.2em;
    margin: 20px 0px;
}

.btn_blue {
    text-decoration: none;
    color: #fff;
    background-color: #00a0e9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: block;
    width: 300px;
    margin: 30px auto 70px;
    padding: 10px;
}

.btn_blue:visited {
    color: #fff;
}

.marker_title,
.marker_title02 {
    text-align: center;
    font-size: 2em;
    color: #df6b81;
    margin-bottom: 30px;
    background-image: url(/images/common/line_dotted.png);
    background-position: bottom left;
    background-repeat: repeat-x;
}

.twitter_icon_list {
    overflow: hidden;
    padding: 0 30px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.twitter_icon_list_item {
    width: 33.3333%;
    float: left;
    display: block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 30px;
}

.twitter_icon_list_item img {
    width: 100%;
}

.twitter_icon_list_marker {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 10px;
    padding-bottom: 2px;
}

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

@media screen and (max-width: 768px) {
    .pc_elem {
        display: none;
    }

    .twitter_icon_list_item {
        width: 50%;
        padding: 20px 5px;
    }

    .twitter_icon_list_item:nth-child(2n+1) {
        clear: both;
    }

    .special_twitter_header {
        font-size: 2em;
        line-height: 1.5em;
    }

    .special_twitter_text {
        font-size: 1em;
        text-align: left;
    }

    .twitter_icon_list {
        padding: 10px 0;
    }

    .twitter_icon_list_marker {
        font-size: 1.1em;
        padding-bottom: 5px;
    }

    .btn_blue {
        width: 80%;
    }
}

/*# sourceMappingURL=special_twitter.css.map */