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

    asset css
    ・hover
    ・animation(scroll)
    ・input
    ・tab
    ・accordion
    ・modal
    ・movie
    ・calender
    ・image sizing
    ・liquid flex

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

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

    hover
    ※デフォルトカラー #4A90E2
    ※.view_switch_pcがbodyにある時だけ機能

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

[class^="ha_"] {
  position: relative;
  overflow: hidden;
  -moz-transition: opacity .2s ease, color .2s ease;
  -webkit-transition: opacity .2s ease, color .2s ease;
  transition: opacity .2s ease, color .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*==========================================================
    opacity animation

    ***sample***
    &lt;a href="#" class="ha_op"&gt;opacity&lt;/a&gt;
==========================================================*/

.ha_op:hover {
  opacity: 0.6;
}

/*==========================================================
    color animation

    ***sample***
    &lt;a href="#" class="ha_cl"&gt;color&lt;/a&gt;
==========================================================*/

.ha_cl:hover {
  color: #4A90E2;
}

/*==========================================================
    underber animation

    ***sample***
    &lt;a href="#" class="ha_ub"&gt;underbar&lt;/a&gt;
==========================================================*/

.ha_ub:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  background: #4A90E2;
  transition: width .2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_ub:hover:after {
  width: 100%;
}

/*==========================================================
    bg animation

    ***sample***
    &lt;a href="#" class="ha_bg"&gt;bg&lt;/a&gt;
==========================================================*/

.ha_bg:after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: #4A90E2;
  opacity: 0;
  -moz-transition: width .2s ease, opacity .2s ease;
  -webkit-transition: width .2s ease, opacity .2s ease;
  transition: width .2s ease, opacity .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_bg:hover {
  color: #FFF;
}

.ha_bg:hover:after {
  opacity: 1;
  width: 100%;
}

/*==========================================================
    rd animation

    ***sample***
    &lt;a href="#" class="ha_rd"&gt;bg_rd&lt;/a&gt;
==========================================================*/

.ha_rd:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 500px solid #4A90E2;
  border-radius: 50%;
  width: 200%;
  height: 200%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -moz-transition: width .3s ease, height .3s ease;
  -webkit-transition: width .3s ease, height .3s ease;
  transition: width .3s ease, height .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_rd:hover {
  color: #FFF;
}

.ha_rd:hover:before {
  width: 0;
  height: 0;
}

/*==========================================================
    icon animation

    ***sample***
    &lt;a href="#" class="ha_icon_r"&gt;icon_r&lt;div class="ht_icon"&gt;■&lt;/div&gt;&lt;/a&gt;
    &lt;a href="#" class="ha_icon_l"&gt;icon_l&lt;div class="ht_icon"&gt;■&lt;/div&gt;&lt;/a&gt;
    &lt;a href="#" class="ha_icon_t"&gt;icon_t&lt;div class="ht_icon"&gt;■&lt;/div&gt;&lt;/a&gt;
    &lt;a href="#" class="ha_icon_b"&gt;icon_b&lt;div class="ht_icon"&gt;■&lt;/div&gt;&lt;/a&gt;
==========================================================*/

[class^="ha_icon"] .ht_icon {
  -moz-transition: transform .2s ease;
  -webkit-transition: transform .2s ease;
  transition: transform .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_icon_r:hover .ht_icon {
  -ms-transform: translateX(10%);
  -moz-transform: translateX(10%);
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
}

.ha_icon_l:hover .ht_icon {
  -ms-transform: translateX(-10%);
  -moz-transform: translateX(-10%);
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
}

.ha_icon_t:hover .ht_icon {
  -ms-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
}

.ha_icon_b:hover .ht_icon {
  -ms-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
}

/*==========================================================
    scale animation

    ***sample***
    &lt;a href="#" class="ha_si"&gt;&lt;div&gt;scaleIn&lt;/div&gt;&lt;/a&gt;
    &lt;a href="#" class="ha_so"&gt;&lt;div&gt;scaleOut&lt;/div&gt;&lt;/a&gt;
==========================================================*/

/*縮小*/

.ha_si &gt; div {
  -moz-transition: transform .2s ease;
  -webkit-transition: transform .2s ease;
  transition: transform .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_si:hover div {
  -ms-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

/*拡大*/

.ha_so &gt; div {
  -moz-transition: transform .2s ease;
  -webkit-transition: transform .2s ease;
  transition: transform .2s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ha_so:hover div {
  -ms-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

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

    animation(scroll)

    ***sample***
    ※.scrollanimの高さの半分以上がwindowに写り込んだ時アニメーション
    &lt;div class="scrollanim anim_b-slide0"&gt;アニメ&lt;/div&gt;

    ※.animtrigger_wrapの高さの半分以上がwindowに写り込んだ時、triggeranimがアニメーション
    &lt;div class="animtrigger_wrap"&gt;
        &lt;div class="triggeranim anim_b-slide0"&gt;アニメ&lt;/div&gt;
    &lt;/div&gt;

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

/*下からスライド*/

.anim_b-slide0 {
  opacity: 0;
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: transform 1s ease, opacity 1s ease;
  -webkit-transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_b-slide1 {
  opacity: 0;
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: transform 1s ease .2s, opacity 1s ease .2s;
  -webkit-transition: transform 1s ease .2s, opacity 1s ease .2s;
  transition: transform 1s ease .2s, opacity 1s ease .2s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_b-slide2 {
  opacity: 0;
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: transform 1s ease .4s, opacity 1s ease .4s;
  -webkit-transition: transform 1s ease .4s, opacity 1s ease .4s;
  transition: transform 1s ease .4s, opacity 1s ease .4s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_b-slide3 {
  opacity: 0;
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: transform 1s ease .6s, opacity 1s ease .6s;
  -webkit-transition: transform 1s ease .6s, opacity 1s ease .6s;
  transition: transform 1s ease .6s, opacity 1s ease .6s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_b-slide4 {
  opacity: 0;
  -ms-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -moz-transition: transform 1s ease .8s, opacity 1s ease .8s;
  -webkit-transition: transform 1s ease .8s, opacity 1s ease .8s;
  transition: transform 1s ease .8s, opacity 1s ease .8s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*右からスライド*/

.anim_r-slide0 {
  opacity: 0;
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -moz-transition: transform 1s ease, opacity 1s ease;
  -webkit-transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_r-slide1 {
  opacity: 0;
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -moz-transition: transform 1s ease .2s, opacity 1s ease .2s;
  -webkit-transition: transform 1s ease .2s, opacity 1s ease .2s;
  transition: transform 1s ease .2s, opacity 1s ease .2s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_r-slide2 {
  opacity: 0;
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -moz-transition: transform 1s ease .4s, opacity 1s ease .4s;
  -webkit-transition: transform 1s ease .4s, opacity 1s ease .4s;
  transition: transform 1s ease .4s, opacity 1s ease .4s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_r-slide3 {
  opacity: 0;
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -moz-transition: transform 1s ease .6s, opacity 1s ease .6s;
  -webkit-transition: transform 1s ease .6s, opacity 1s ease .6s;
  transition: transform 1s ease .6s, opacity 1s ease .6s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_r-slide4 {
  opacity: 0;
  -ms-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -moz-transition: transform 1s ease .8s, opacity 1s ease .8s;
  -webkit-transition: transform 1s ease .8s, opacity 1s ease .8s;
  transition: transform 1s ease .8s, opacity 1s ease .8s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*左からスライド*/

.anim_l-slide0 {
  opacity: 0;
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition: transform 1s ease, opacity 1s ease;
  -webkit-transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_l-slide1 {
  opacity: 0;
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition: transform 1s ease .2s, opacity 1s ease .2s;
  -webkit-transition: transform 1s ease .2s, opacity 1s ease .2s;
  transition: transform 1s ease .2s, opacity 1s ease .2s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_l-slide2 {
  opacity: 0;
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition: transform 1s ease .4s, opacity 1s ease .4s;
  -webkit-transition: transform 1s ease .4s, opacity 1s ease .4s;
  transition: transform 1s ease .4s, opacity 1s ease .4s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_l-slide3 {
  opacity: 0;
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition: transform 1s ease .6s, opacity 1s ease .6s;
  -webkit-transition: transform 1s ease .6s, opacity 1s ease .6s;
  transition: transform 1s ease .6s, opacity 1s ease .6s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_l-slide4 {
  opacity: 0;
  -ms-transform: translateX(-100px);
  -moz-transform: translateX(-100px);
  -webkit-transform: translateX(-100px);
  transform: translateX(-100px);
  -moz-transition: transform 1s ease .8s, opacity 1s ease .8s;
  -webkit-transition: transform 1s ease .8s, opacity 1s ease .8s;
  transition: transform 1s ease .8s, opacity 1s ease .8s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*ただのフェードイン*/

.anim_fadein0 {
  opacity: 0;
  -moz-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_fadein1 {
  opacity: 0;
  -moz-transition: opacity 1s ease .2s;
  -webkit-transition: opacity 1s ease .2s;
  transition: opacity 1s ease .2s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_fadein2 {
  opacity: 0;
  -moz-transition: opacity 1s ease .4s;
  -webkit-transition: opacity 1s ease .4s;
  transition: opacity 1s ease .4s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_fadein3 {
  opacity: 0;
  -moz-transition: opacity 1s ease .6s;
  -webkit-transition: opacity 1s ease .6s;
  transition: opacity 1s ease .6s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_fadein4 {
  opacity: 0;
  -moz-transition: opacity 1s ease .8s;
  -webkit-transition: opacity 1s ease .8s;
  transition: opacity 1s ease .8s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*scale*/

.anim_scale0 {
  opacity: 0;
  -ms-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -moz-transition: transform 1s ease, opacity 1s ease;
  -webkit-transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_scale1 {
  opacity: 0;
  -ms-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -moz-transition: transform 1s ease .2s, opacity 1s ease .2s;
  -webkit-transition: transform 1s ease .2s, opacity 1s ease .2s;
  transition: transform 1s ease .2s, opacity 1s ease .2s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_scale2 {
  opacity: 0;
  -ms-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -moz-transition: transform 1s ease .4s, opacity 1s ease .4s;
  -webkit-transition: transform 1s ease .4s, opacity 1s ease .4s;
  transition: transform 1s ease .4s, opacity 1s ease .4s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_scale3 {
  opacity: 0;
  -ms-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -moz-transition: transform 1s ease .6s, opacity 1s ease .6s;
  -webkit-transition: transform 1s ease .6s, opacity 1s ease .6s;
  transition: transform 1s ease .6s, opacity 1s ease .6s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.anim_scale4 {
  opacity: 0;
  -ms-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -webkit-transform: scale(0.1);
  transform: scale(0.1);
  -moz-transition: transform 1s ease .8s, opacity 1s ease .8s;
  -webkit-transition: transform 1s ease .8s, opacity 1s ease .8s;
  transition: transform 1s ease .8s, opacity 1s ease .8s;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*アニメの再生*/

.animplay,
.animplay .triggeranim {
  opacity: 1;
  -ms-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
}


.anim_origin_center {
  -ms-transform-origin: center center;
  -moz-transform-origin: center center;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  transform-origin: center center;
}

.anim_origin_tl {
  -ms-transform-origin: top left;
  -moz-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transform-origin: top left;
}

.anim_origin_tr {
  -ms-transform-origin: top right;
  -moz-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
  transform-origin: top right;
}

.anim_origin_bl {
  -ms-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  transform-origin: bottom left;
}

.anim_origin_br {
  -ms-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  transform-origin: bottom right;
}



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

    input css

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

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

text type input

***sampel text***
&lt;input type="text" placeholder="sample"&gt;

***sampel password***
&lt;input type="password" placeholder="sample"&gt;

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

input[type="text"],
input[type="password"] {
  display: block;
  width: 100%;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 10px;
  color: #666666;
}

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

textarea

***sampel password***
&lt;textarea placeholder="sample"&gt;sampletext&lt;/textarea&gt;

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

textarea {
  display: block;
  width: 100%;
  height: 100%;
  resize: none;
  border-radius: 0;
}

/*==========================================================
placeholder
==========================================================*/

:placeholder-shown {
  color: #AAA;
}

::-webkit-input-placeholder {
  color: #AAA;
  opacity: 0.8;
}

:-moz-placeholder {
  color: #AAA;
  opacity: 0.8;
}

::-moz-placeholder {
  color: #AAA;
  opacity: 0.8;
}

:-ms-input-placeholder {
  color: #AAA;
  opacity: 0.8;
}

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

check type input

***sampel checkbox***
&lt;input id="check" type="checkbox"&gt;
&lt;label for="check"&gt;
    &lt;div class="marker type_check"&gt;&lt;/div&gt;
    checkbox
&lt;/label&gt;

***sampel radio***
&lt;input id="radio1" type="radio" name="sampleradio"&gt;
&lt;label for="radio1"&gt;
    &lt;div class="marker type_round"&gt;&lt;/div&gt;
    radio1
&lt;/label&gt;

&lt;input id="radio2" type="radio" name="sampleradio"&gt;
&lt;label for="radio2"&gt;
    &lt;div class="marker type_round"&gt;&lt;/div&gt;
    radio2
&lt;/label&gt;

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

label {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
  opacity: 0;
}

/*marker design*/

.marker {
  position: relative;
  margin-right: 5px;
}

.type_check {
  width: 16px;
  height: 16px;
  border: 1px solid #AAA;
  border-radius: 2px;
}

.type_check:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  -ms-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -3px;
  width: 4px;
  height: 0;
  background: #4A90E2;
  -moz-transition: height .1s ease .1s;
  -webkit-transition: height .1s ease .1s;
  transition: height .1s ease .1s;
}

.type_check:after {
  content: '';
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  -ms-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -ms-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-left: 2px;
  width: 4px;
  height: 0;
  background: #4A90E2;
  -moz-transition: height .1s ease;
  -webkit-transition: height .1s ease;
  transition: height .1s ease;
}


input[type="checkbox"]:checked + label .type_check:before,
input[type="radio"]:checked + label .type_check:before {
  height: 10px;
  -moz-transition: height .1s ease;
  -webkit-transition: height .1s ease;
  transition: height .1s ease;
}

input[type="checkbox"]:checked + label .type_check:after,
input[type="radio"]:checked + label .type_check:after {
  height: 15px;
  -moz-transition: height .1s ease .1s;
  -webkit-transition: height .1s ease .1s;
  transition: height .1s ease .1s;
}

.type_round {
  width: 16px;
  height: 16px;
  border: 1px solid #AAA;
  border-radius: 50%;
}

.type_round:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #4A90E2;
  -moz-transition: height .2s ease, width .2s ease;
  -webkit-transition: height .2s ease, width .2s ease;
  transition: height .2s ease, width .2s ease;
}


input[type="checkbox"]:checked + label .type_round:before,
input[type="radio"]:checked + label .type_round:before {
  width: calc(100% * 0.65);
  height: calc(100% * 0.65);
}

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

select

***sampel select***
&lt;div class="selectlabel"&gt;
    &lt;input type=text&gt;
    &lt;select&gt;
        &lt;option&gt;select1&lt;/option&gt;
        &lt;option&gt;select2&lt;/option&gt;
        &lt;option&gt;select3&lt;/option&gt;
        &lt;option&gt;select4&lt;/option&gt;
    &lt;/select&gt;
&lt;/div&gt;

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

.selectlabel {
  position: relative;
}

.selectlabel select {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.selectlabel .selectlabel:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #1a8dd0 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 10px;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

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

tab

***sample1***
&lt;ul class="tab" data-tabbody="sample"&gt;
    &lt;li class="selected"&gt;head1&lt;/li&gt;
    &lt;li&gt;head2&lt;/li&gt;
&lt;/ul&gt;

&lt;ul class="sample"&gt;
    &lt;li&gt;body1&lt;/li&gt;
    &lt;li&gt;body2&lt;/li&gt;
&lt;/ul&gt;

***sample2***
&lt;div class="tab2" data-tabbody="sample2"&gt;
    &lt;div class="selected"&gt;head1&lt;/div&gt;
    &lt;div&gt;head2&lt;/div&gt;
&lt;/div&gt;

&lt;div class="sample2"&gt;
    &lt;div&gt;body1&lt;/div&gt;
    &lt;div&gt;body2&lt;/div&gt;
&lt;/div&gt; 

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

.tab_body {
  position: relative;
  overflow: hidden;
}

.tab_open {
  position: relative;
  z-index: 1;
}

.tab_close {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
}

.tabanim_fade .tab_open {
  opacity: 1;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.tabanim_fade .tab_close {
  opacity: 0;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.tabanim_top .tab_open {
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease;
}

.tabanim_top .tab_close {
  -ms-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -moz-transition: transform .3s ease .3s;
  -webkit-transition: transform .3s ease .3s;
  transition: transform .3s ease .3s;
}

.tabanim_bottom .tab_open {
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -moz-transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease;
}

.tabanim_bottom .tab_close {
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -moz-transition: transform .3s ease .3s;
  -webkit-transition: transform .3s ease .3s;
  transition: transform .3s ease .3s;
}

.tabanim_left .tab_open {
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease;
}

.tabanim_left .tab_close {
  -ms-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: transform .3s ease .3s;
  -webkit-transition: transform .3s ease .3s;
  transition: transform .3s ease .3s;
}

.tabanim_right .tab_open {
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -moz-transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease;
}

.tabanim_right .tab_close {
  -ms-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-transition: transform .3s ease .3s;
  -webkit-transition: transform .3s ease .3s;
  transition: transform .3s ease .3s;
}

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

accordion

***sample1***
&lt;dl class="任意のセレクタ"&gt;
    &lt;dt&gt;タイトル1&lt;div class="acc_head_icon"&gt;&amp;gt;&lt;/div&gt;&lt;/dt&gt;
    &lt;dd&gt;コンテンツ1&lt;/dd&gt;
    &lt;dt&gt;タイトル2&lt;div class="acc_head_icon"&gt;&amp;gt;&lt;/div&gt;&lt;/dt&gt;
    &lt;dd&gt;コンテンツ2&lt;/dd&gt;
&lt;/dl&gt;

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

.acc_head {
  position: relative;
}

.acc_head_icon {
  position: absolute;
  top: 50%;
  right: 10px;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -moz-transition: transform .3s ease;
  -webkit-transition: transform .3s ease;
  transition: transform .3s ease;
}

.acc_open .acc_head_icon {
  -ms-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

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

modal css

***sample include***
&lt;div class="modal" data-include=" pass "&gt;data-includeの中身をインクルード&lt;/div&gt;

***sample***
&lt;div class="modal"&gt;空のモーダルが呼ばれる&lt;/div&gt;

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

#modal_section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 200;
  opacity: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  -moz-transition: opacity .3s ease, height 0s ease .3s;
  -webkit-transition: opacity .3s ease, height 0s ease .3s;
  transition: opacity .3s ease, height 0s ease .3s;
}

.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #FFF;
  border-radius: 5px;
  width: calc(100% - 60px);
  max-width: 800px;
  max-height: calc(100% - 60px);
  z-index: 1;
}

#modal_contents {
  position: fixed;
  top: 100%;
  opacity: 0;
  border-radius: 5px;
  width: calc(100% - 60px);
  max-width: 800px;
  max-height: calc(100% - 60px);
  z-index: 1;
}

#modal_contents &gt; div {
  width: 100%;
}

/*==========================================================
   modal open
==========================================================*/

.modal_open #modal_section {
  height: 100vh;
  opacity: 1;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/*==========================================================
   modal close btn
==========================================================*/

.modal_container .modal_close_btn {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.modal_container .modal_close_btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgb(255, 255, 255);
}

.modal_container .modal_close_btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  background: rgb(255, 255, 255);
}


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

movie

***sample1***
&lt;div class="任意のセレクタ"&gt;
    //この中味がSPの表示ないしデフォルト要素になる
    &lt;div&gt;画像やサンプルテキスト&lt;/div&gt;
&lt;/div&gt;

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

.movie_set_container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.movie_set_container.bg_movie {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}


/*SPやデフォルト用の要素保持用container*/

.movie_default_container {
  display: none;
}

/*動画の挿入位置生成用container*/

.movie_set_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/*動画のローディングアニメーション*/

.movie_load_filter {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #000;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-transition: opacity .5s ease;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}


.movie_loader,
.movie_loader:after {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.movie_loader {
  margin: 60px auto;
  position: relative;
  border-top: 10px solid rgba(255, 255, 255, 0.2);
  border-right: 10px solid rgba(255, 255, 255, 0.2);
  border-bottom: 10px solid rgba(255, 255, 255, 0.2);
  border-left: 10px solid #ffffff;
  -ms-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -ms-animation: movie_loading_anim 1.1s infinite linear;
  -moz-animation: movie_loading_anim 1.1s infinite linear;
  -webkit-animation: movie_loading_anim 1.1s infinite linear;
  animation: movie_loading_anim 1.1s infinite linear;
}

@-ms-keyframes movie_loading_anim {
  0% {
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes movie_loading_anim {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes movie_loading_anim {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes movie_loading_anim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*ボリュームのonoffボタン*/

.movie_volume_btn {
  position: absolute;
  height: 33px;
  width: 32px;
  bottom: 20px;
  left: 20px;
  overflow: hidden;
  z-index: 6;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.5);
}

.movie_volume_btn &gt; div {
  width: 10px;
  height: 10px;
  background: #FFF;
  margin: 12px 0 0 7px;
  -moz-transition: margin .2s ease;
  -webkit-transition: margin .2s ease;
  transition: margin .2s ease;
}

.movie_volume_btn &gt; div:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #FFF transparent transparent;
  border-width: 12px 16px 12px 15px;
  left: -8px;
  top: 5px;
  -moz-transition: left .2s ease;
  -webkit-transition: left .2s ease;
  transition: left .2s ease;
}

.movie_volume_btn.sound-on &gt; div {
  width: 10px;
  height: 10px;
  background: #FFF;
  margin: 12px 0 0 2px;
}

.movie_volume_btn.sound-on &gt; div:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #FFF transparent transparent;
  border-width: 12px 16px 12px 15px;
  left: -13px;
  top: 5px;
}

.movie_volume_btn.sound-on &gt; div:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-style: double;
  border-color: #FFF;
  border-width: 8px 8px 0 0;
  -moz-border-radius: 0 50px 0 0;
  -webkit-border-radius: 0 50px 0 0;
  border-radius: 0 50px 0 0;
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 19px;
  top: 11px;
}

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

calender

***sample***
&lt;div class="任意のセレクタ"&gt;&lt;/div&gt;

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

/*==========================================================
	月の表示
==========================================================*/

/*カレンダーのヘッダー*/

.calheader {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  background: #FFF;
  padding: 10px;
  border: 1px solid #888;
  border-bottom: none;
}


/*月の表示*/

.monthview {
  font-size: 16px;
}


/*前の月ボタン*/

.backcalbtn {
  position: relative;
  background: #26BAD7;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.backcalbtn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #ffffff transparent transparent;
}

/*次の月ボタン*/

.nextcalbtn {
  position: relative;
  background: #26BAD7;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.nextcalbtn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #ffffff;
}

/*==========================================================
	曜日、日にち
==========================================================*/

/*週の表示*/

.calweek {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  background: #cff;
  border-top: 1px solid #888;
  border-bottom: 1px solid #888;
}

.weekinner {
  width: calc(100% / 7);
  color: #888;
  border-left: 1px solid #888;
  padding: 10px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
}

.weekinner:last-child {
  border-right: 1px solid #888;
}

/*日付の表示*/

.calday {
  font-size: 14px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.dayinner {
  width: calc(100% / 7);
  color: #CCC;
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  box-sizing: border-box;
  background: #EEE;
  position: relative;
}

.dayinner:last-child {
  border-right: 1px solid #888;
}

.dayinner:after {
  content: '';
  display: block;
  width: 100%;
  padding-top: 100%;
}

.dayinner.activeday {
  color: #888;
  background: #FFF;
  cursor: pointer;
}

.dayinner.selectday {
  background: #26BAD7;
  color: #FFF;
}

.dayinner &gt; div {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

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

image sizing

***sample1***
&lt;div class="任意のセレクタ image_sizing"&gt;
    &lt;img src="任意のパス"&gt;
&lt;/div&gt;

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

.image_sizing img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

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

    liquid flex

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

.liqflex {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
</pre></body></html>