@charset "UTF-8";
/* responsive utility */
/*
@mixin screen_hh{
  @media screen and (max-width: $g_width_hh_max){
    @content;
  }
}
*/
/*
@mixin screen_sm_only{
  @media screen and (min-width: $g_width_hh_max + 1) and (max-width: $g_width_sm_max){
    @content;
  }
}
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

img {
    vertical-align: bottom;
    border: none;
}

a {
    color: #333;
    text-decoration: none;
}

html {
    overflow-x: hidden;
}

body {
    /*margin: 100px 0 0;*/
    font-family: "メイリオ", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", sans-serif;
    color: #333;
    line-height: 1;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.main {
    padding-top: 96px; /* global-bar (80px) + header (96px) */
}

@media screen and (max-width: 960px) {
    body {
        /*margin: 56px 0 0;*/
    }
    .main {
        padding-top: 56px; /* global-bar(80px) + header(56px) */
    }
}

.overlay {
    display: none;
    width: 100%;
    height: 120%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .8);
    z-index: 997;
}

/*
*
*   container
*
*/
.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/*
*
*   link
*
*/
.text-link__container {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    color: #ff3466;
}

@media screen and (max-width: 960px) {
    .text-link__container {
        font-size: 12px;
        line-height: 1.7;
    }
}

.text-link {
    color: #ff3466;
    text-decoration: underline;
}

.text-link:hover {
    text-decoration: none;
}

/* button */
.button-default {
    display: inline-block;
    width: 200px;
    background: #ff426e;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    transition: background 0.1s ease;
}

.button-default.button-txt {
    background: transparent;
    color: #ff426e;
}

.button-default.button-txt .button-default-link{
    color: #ff426e;
    text-decoration: underline;
}

.button-default.button-txt .button-default-link:hover{
    text-decoration: none;
}

@media screen and (max-width: 960px) {
    .button-default {
        width: 150px;
    }
}

.button-default-link {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

@media screen and (max-width: 960px) {
    .button-default-link {
        font-size: 11px;
    }
}

button.button-default-link {
    border: none;
    border-radius: 0;
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.button-default.-disabled {
    background: #fbb6c6;
}

.button-default.-disabled:hover {
    background: #fbb6c6;
}

.button-default.-disabled:hover .button-default-link {
    cursor: default;
}

.button-survey {
    background: #fff;
    color: #ff426e;
    padding: 10px;
    font-size: 13px;
    border: solid 2px #ff426e;
}
.button-survey:hover {
    color: #fff;
}
.button-survey:disabled {
    color: #f0f0f0;
    border: solid 2px #777;
    background-color: #8c8c8c;
    cursor: default;
}

.button-login {
    background: #fff;
    color: #ff426e;
    border: solid 2px #ff426e;
}

.button-login-link {
    color: #ff426e;
}

.button-login:hover .button-login-link {
    color: #fff;
}

.login-name {
    display: flex;
    align-items: center;
    margin: 0 0 0 32px;
    font-size: 13px;
    line-height: 1.5;
    color: #777;
}

.login-name span {
    display: inline-block;
    max-width: 118px;
    margin: 0 0.5em 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*
*
*   header
*
*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, .04);
    z-index: 999;
}

.header:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: url("../../image/header-border.png") repeat-x;
    background-size: 1200px 3px;
}

.header__container {
    display: flex;
    align-items: center;
    height: 96px;
    transition: 0.4s;
}

@media screen and (max-width: 960px) {
    .header__container {
        height: 56px;
    }
}

.header-scroll {
    height: 62px;
}

.header-logo__container {
    margin: 0 auto 0 0;
}

.header-logo__link:hover {
    opacity: 0.8;
}

.header-logo {
    width: 144px;
    height: 33px;
}

.header-nav__items {
    display: flex;
    margin: 0 18px 0 0;
}

.header-nav__item {
    margin: 0 28px 0 0;
    position: relative;
    font-size: 13px;
    line-height: 1.5;
}

.header-nav__item:after {
    content: "";
    width: 14px;
    height: 22px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -22px;
    background: url("/tenants/senden/assets/image/header-nav-item-border.png") no-repeat;
    background-size: 14px 22px;
}

.header-nav__item:last-child {
    margin: 0;
}

.header-nav__item:last-child:after {
    content: none;
}

.header-nav__link:hover {
    color: #ff426e;
}

.header-nav__item.current .header-nav__link {
    color: #7b1839;
    font-weight: bold;
}

.header-nav__item.current .header-nav__link:hover {
    color: #ff426e;
}

.header-button {
    display: flex;
    align-items: center;
    position: relative;
}

@media screen and (max-width: 960px) {
    .header-button,
    .header-nav {
        display: none;
    }
}

.header-button .button-default {
    width: 180px;
}

/*  header sp */
.header-sp__content {
    display: none;
}

@media screen and (max-width: 960px) {
    .header-sp__content {
        display: block;
        position: relative;
    }
}

.header-sp__menu-trigger,
.header-sp__menu-trigger span {
    display: inline-block;
    transition: all 0.3s;
    box-sizing: border-box;
}

.header-sp__menu-trigger {
    position: relative;
    width: 24px;
    height: 19px;
}

.header-sp__menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff426e;
}

.header-sp__menu-trigger span:nth-of-type(1) {
    top: 0;
}

.header-sp__menu-trigger span:nth-of-type(2) {
    top: 8px;
}

.header-sp__menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.header-sp__menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
}

.header-sp__menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.header-sp__menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
}

.sp-nav {
    display: none;
    width: 100%;
    padding: 18px 30px 36px;
    position: absolute;
    top: 59px;
    left: 0;
    background: #fff;
    border-top: solid 2px #f5f5f5;
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, .04);
    z-index: 998;
}

.sp-nav__item {
    font-size: 14px;
    line-height: 1.5;
    border-bottom: solid 1px #f1f1f1;
}

.sp-nav__link {
    display: block;
    padding: 18px 12px;
}

.sp-nav__link.emphasis {
    font-weight: bold;
    color: #ff426e;
}

/*
*
*   common
*
*/
@media screen and (max-width: 630px) {
    .pc-content {
        display: none!important;
    }
}

.general__link-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.general__link-item {
    margin: 0 32px 0 0;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .general__link-item {
        margin: 0 20px 10px 0;
        font-size: 12px;
        line-height: 1.7;
    }
}

.general__link-item:after {
    content: "";
    width: 12px;
    height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -24px;
    background: url("../../image/successive-item-border.png") no-repeat;
    background-size: 12px 18px;
}

@media screen and (max-width: 960px) {
    .general__link-item:after {
        width: 10px;
        height: 14px;
        right: -14px;
        background-size: 10px 14px;
    }
}

.general__link-item:last-child {
    margin: 0;
}

.general__link-item:last-child:after {
    content: none;
}

.card__list-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 -30px;
}

@media screen and (max-width: 630px) {
    .card__list-items {
        margin: 0;
    }
}

.card__list-item {
    width: 176px;
    margin: 40px 0 6px 30px;
    position: relative;
    border: solid 2px #f7f7f7;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, .04);
}

.card__list-item.is-gold {
    border: 2px solid #f4da7d;
    box-shadow: 0 6px 0 0 #f4da7d;
    background: rgba(241, 188, 3, .1);
}

@media screen and (max-width: 630px) {
    .card__list-item {
        width: 48%;
        margin: 4% 4% 6px 0;
    }
    .card__list-item:nth-child(2n) {
        margin: 4% 0 6px;
    }
}

.card__list-item a {
    display: block;
    height: 100%;
    padding: 6px 6px 14px;
}

.card__image {
    border: solid 2px #f7f7f7;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.card__image:before {
    content: "";
    display: block;
    padding: 68% 0 0;
}

.card__image img {
    width: 100%;
    margin: auto;
    padding: 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.card__title {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

.card__text {
    font-size: 12px;
    line-height: 1.7;
}

.card__list-item a:hover .card__image {
    opacity: 0.8;
}

.card__list-item a:hover .card__title {
    color: #ff426e;
}

.modal-content-tutorial {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-content-campaign {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-height: 750px) {
    .modal-content-tutorial {
        top: 31px;
        left: 50%;
        -webkit-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
    }
}

.modal-content-team {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-content-book {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-content {
    display: none;
    width: 800px;
    max-width: 840px;
    padding: 60px 50px;
    position: fixed;
    background: #fff;
    border: solid 4px #333;
    border-radius: 10px;
    z-index: 1000;
}

@media screen and (max-width: 960px) {
    .modal-content {
        width: 84%;
        margin: 0 auto;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 630px) {
    .modal-content {
        min-width: 280px;
        padding: 30px 15px;
    }
}

.modal-content-entry-tutorial {
    padding: 30px;
}

.modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ff426e;
    position: absolute;
    top: -30px;
    right: -30px;
    border-radius: 50%;
    cursor: pointer;
}

@media screen and (max-width: 960px) {
    .modal__close {
        width: 42px;
        height: 42px;
        top: -24px;
        right: -24px;
    }
}

.modal__close img {
    width: 26px;
}

@media screen and (max-width: 960px) {
    .modal__close img {
        width: 18px;
    }
}

.modal__close a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.modal__text {
    margin: 40px 0 0;
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .modal__text {
        margin: 20px 0 0;
        font-size: 12px;
    }
}

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

.modal__button-container {
    margin: 30px 0 0;
    font-size: 0;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .modal__button-container {
        margin: 20px 0 0;
    }
}

.modal__text-gold-pencil-img {
    float: right;
    margin-left: 2em;
    margin-bottom: .5em;
    display: inline-block;
    vertical-align: top;
}

.modal__button-container .button-default {
    margin: 0 10px 0 0;
}

@media screen and (max-width: 440px) {
    .modal__button-container .button-default {
        display: block;
        margin: 0 auto 10px;
    }
    .modal__button-container .button-default:last-child {
        margin: 0 auto;
    }
}

.modal__button-container + .text-link__container {
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: -1em;
}

.modal__note {
    margin: 20px 0 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    color: #892944;
}

@media screen and (max-width: 960px) {
    .modal__note {
        margin: 10px 0 0;
        font-size: 12px;
        line-height: 1.7;
    }
}

.modal__banner {
    margin-top: 1em;
    text-align: center;
}

.modal__banner-link {
    display: block;
}

.modal__banner-img {
    max-width: 100%;
}

.js-modal-overlay {
    display: none;
    width: 100%;
    height: 120%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .8);
    z-index: 1;
}

.form-group {
    display: flex;
    padding: 40px 0;
    border-bottom: solid 1px #ebebeb;
}

@media screen and (max-width: 960px) {
    .form-group {
        padding: 20px 0;
    }
}

.form-group .button-default {
    margin: 0 auto;
}

.form-title {
    width: 20%;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .form-title {
        width: 28%;
        font-size: 12px;
        line-height: 1.7;
    }
}

.form-title br {
    display: none;
}

@media screen and (max-width: 630px) {
    .form-title br {
        display: block;
    }
}

.form-item {
    width: 80%;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .form-item {
        width: 72%;
        font-size: 12px;
        line-height: 1.7;
    }
}

.form-item br {
    display: none;
}

@media screen and (max-width: 630px) {
    .form-item br {
        display: block;
    }
}

.form-item__text {
    width: 400px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .form-item__text {
        width: 100%;
        padding: 6px;
        font-size: 12px;
        line-height: 1.7;
    }
}

.form-item__textarea {
    width: 100%;
    height: 180px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .form-item__textarea {
        font-size: 12px;
        padding: 6px;
        line-height: 1.7;
    }
}

.form-item__radio {
    margin: 0 40px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .form-item__radio {
        margin: 0 10px 0 0;
        font-size: 12px;
        line-height: 1.7;
    }
}

.form-item__radio input {
    margin: 0 6px 0 0;
}

.form-item__note {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.7;
}

.form-item img {
    max-width: 450px;
}

@media screen and (max-width: 960px) {
    .form-item img {
        width: 80%;
    }
}

input.button-default-link {
    display: inline-block;
    width: 200px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

@media screen and (max-width: 960px) {
    input.button-default-link {
        width: 150px;
    }
}

.form-require {
    margin: 0 0 0 4px;
    font-size: 12px;
    color: #ff3466;
}

@media screen and (max-width: 630px) {
    .form-require {
        display: block;
        margin: 0;
        font-size: 10px;
    }
}

.form-item__limit {
    margin: -4px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #777;
    text-align: right;
}

@media screen and (max-width: 960px) {
    .form-item__limit {
        font-size: 10px;
    }
}

.form-item__limit + .form-item__note {
    margin: 12px 0 10px;
}

/*
*
*   home
*
*/
.home__main-visual {
    background: #fdf2b3;
}

/*
.home__main-visual-container {
  max-width: 1040px;
  height: 520px;
  margin: 0 auto;
  padding: 134px 20px 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width:960px) {
  .home__main-visual-container {
    height: auto;
    padding: 42px 0 0;
    background: url("../image/home-main-visual-image-sp.jpg") no-repeat top center;
    background-size: 630px auto;
  }
}

.home__main-visual-container:after {
  content: "";
  width: 625px;
  height: 520px;
  position: absolute;
  bottom: 0;
  left: 580px;
  background: url("../image/home-main-visual-image.jpg") no-repeat;
  background-size: auto 520px;
  z-index: -1;
}
@media screen and (max-width:960px) {
  .home__main-visual-container:after {
    content: none;
  }
}
*/
.home__main-visual2 {
    background: #FFF4F6;
    background: linear-gradient(90deg, #DA3D28 30%, #0058aa 60%);
    color: #fff;
}
.home__main-visual3 {
    background: #00a1e2;
}
.home__main-visual-teaser {
    background: #fde8f0;
}

.home__main-visual-container2 {
    max-width: 1040px;
    height: 520px;
    margin: 0 auto;
    /* padding: 173px 20px 66px; */
    padding: 93px 20px 66px;
    /* padding: 43px 20px 66px; */
    background: url("/tenants/senden/assets/image/pcmain_2025.png") no-repeat;
    background-size: contain;
    position: relative;
    z-index: 0;
}

.home__main-visual-container2::after {
    content: "";
    width: 1280px;
    height: 520px;
    position: absolute;
    bottom: 0;
    left: -120px;
    background: url("/tenants/senden/assets/image/home-main-visual-61-latter-half.png") no-repeat;
    background-size: auto 520px;
    z-index: -1;
}

.home__main-visual-container2.is-teaser::after {
    background-image: url("/tenants/senden/assets/image/home-main-visual-image-teaser.png");
    left: 0;
}

.home__main-visual-container3 {
    max-width: 1040px;
    height: 430px;
    margin: 0 auto;
    padding: 15px 20px 30px 20px;
    position: relative;
    z-index: 0;
}

.home__main-visual-container3::after {
    content: "";
    width: 1048px;
    height: 460px;
    position: absolute;
    bottom: 0;
    left: 130px;
    background: url("../image/home-main-visual-image3.jpg") no-repeat;
    background-size: auto 520px;
    z-index: -1;
}

.home__main-visual-container3.is-teaser::after {
    background-image: url("../image/home-main-visual-image-teaser.png");
    left: 0;
}

.home__main-visual-container-teaser {
    max-width: 1040px;
    margin: 0 auto;
    padding: 50px 20px 10px;
    position: relative;
    z-index: 0;
    text-align: center;
}

/*
@media screen and (max-width:960px) {
  .home__main-visual-container2 {
    height: auto;
    padding: 100px 20px 45px 45px;
    &:after{
      width: 860px;
      height: 427px;
      left: 130px;
      background: url("../image/home-main-visual-image2.jpg") no-repeat;
      background-size: contain;
    }
    &.is-teaser::after{
      left:50%;
      top:20px;
      margin-left: -430px;
      background-image: url("../image/home-main-visual-image-teaser.png");
      background-position: center top;
    }
  }
}
@media screen and (max-width: 820px) {
  .home__main-visual-container2 {
    padding: 70px 20px 30px 30px;
    background: none;
    &:after{
      width: 690px;
      height: 343px;
      left: 180px;
    }
    &.is-teaser::after{
      margin-left: -345px;
    }
  }
}
*/
.home__main-title{
    font-size: 0;
    margin: 0 auto;
    padding-left: 30px;
}
.home__main-top-logo {
    width: 250px;
}
.home__main-top-tagline {
    width: 50%;
    margin: 50px 0 15px;
}
.home__main-top-winner {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    color: #666666;
    font-size: 0.85rem;
    line-height: 1.2;
}
.home__main-top-winner br{
    display: none;
}
.home__main-top-startdate{
    margin-top: 50px;
}
.home__main-top-startdate-image{
    width: 350px;
    display: inline-block;
}

@media screen and (max-width: 960px) {
    .home__main-visual-container2 {
        padding: 50px 20px 20px;
        /*background: none;*/
        background: url(/tenants/senden/assets/image/spmain2.png)center top no-repeat;
        background-size: contain;
    }
    .home__main-visual-container2:after {
        width: 100%;
        max-width: 600px;
        height: auto;
        overflow: visible;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0;
        background: url("../image/home-main-visual-61-latter-half-sp.png") center top no-repeat;
        background-size: cover;
    }
    .home__main-visual-container2.is-teaser::after {
        width: 100%;
        max-height: 340px;
        left: 0;
        top: 0;
        right: auto;
        margin-left: 0;
        background-image: url("../image/home-main-visual-image-teaser-sp.png");
        background-position: center top;
    }
}

@media screen and (min-width: 768px) and (max-width: 960px) {
    .home__main-visual-container2 {
        background: url(/tenants/senden/assets/image/pcmain_2025.png)no-repeat;
        background-position: center top;
        background-size: contain;
        padding: 50px 20px 20px;
        /*background: none;*/
        height: 380px;
    }
}

@media screen and (min-width: 481px) and (max-width:767px) {
    .home__main-visual-container2 {
        height: 300px;
        padding-top: 30px;
    }
}
@media screen and (min-width: 375px) and (max-width:480px) {
    .home__main-visual-container2 {
        height: 600px;
        padding-top: 30px;
    }
}
@media screen and (min-width: 375px) and (max-width:420px) {
    .home__main-visual-container2 {
        height: 520px;
        padding-top: 30px;
    }
}


@media screen and (max-width: 350px) {
    .home__main-visual-container2.is-teaser::after {
        top: 20px;
    }
}

@media screen and (max-width: 960px) {
    .home__main-visual-container3 {
        padding: 50px 20px 10px 20px;
        background: none;
        height: auto;
    }
    .home__main-visual-container3:after {
        width: 960px;
        max-width: 960px;
        height: auto;
        overflow: visible;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0;
        background: url("../image/home-main-visual-image-sp3.jpg") center top no-repeat;
        background-size: cover;
    }
    .home__main-visual-container3.is-teaser::after {
        width: 100%;
        max-height: 340px;
        left: 0;
        top: 0;
        right: auto;
        margin-left: 0;
        background-image: url("../image/home-main-visual-image-teaser-sp.png");
        background-position: center top;
    }
}

@media screen and (max-width: 350px) {
    .home__main-visual-container3.is-teaser::after {
        top: 20px;
    }
}

@media screen and (min-width: 960px) {
    .home__main-visual2 .button-default {
        background: #ff426e;
    }
}

.home__main-survey-container {
    position: absolute;
    right: 10px;
    bottom: 40px;
}

@media screen and (max-width: 960px) {
    .home__main-survey-container {
        position: static;
        margin-top: 10px;
        text-align: center;
        padding: 0 0 10px;
    }
}

@media screen and (max-width: 630px) {
    .home__main-survey-container {
        margin-bottom: 0;
        padding-bottom: 10px;
    }
}

.home__main-survey-link-wrap {
    background: #ff426e;
    display: block;
}

.home__main-survey-link-wrap:hover {
    background: #ff2659;
}

.home__main-survey-link {
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    padding: 20px;
    padding-right: 40px;
    display: block;
    color: #fff;
}

.home__main-survey-link:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 4px solid #fff;
    border-left: 0;
    border-bottom: 0;
    top: 50%;
    right: 15px;
    margin-top: -8px;
}

@media screen and (max-width: 960px) {
    .home__main-survey-link {
        font-size: 12px;
        padding: 10px 10px 10px 30px;
    }
    .home__main-survey-link:after {
        right: auto;
        left: 10px;
    }
    .home__main-survey-link br.hide-sp {
        display: none;
    }
}

@media screen and (max-width: 630px) {
    .home__main-survey-link {
        padding: 15px 10px 15px 30px;
        font-size: 11px;
    }
}

.home__main-survey-text-main {
    font-weight: bold;
    font-size: larger;
}

.home__main-title {
    margin-bottom: 27px;
    padding-left: 30px;
}

.home__title-grandprix-announcement-pc {
    width: 538px;
}

.home__title-grandprix-announcement-sp {
    display: none;
}

.home-primary-examination {
    display: block;
    width: 429px;
    margin-top: 66px;
    margin-left: 50px;
}

.home-maglink-button-base {
    width: 563px;
    margin-left: -40px;
}

.home-maglink-button-group {
    width: calc(50% - 28px);
    display: inline-block;
}

.home-maglink-button-group + .home-maglink-button-group {
    margin-left: 50px;
}

.home-maglink-button-container {
    background: #ff426e;
    color: #fff;
    text-align: center;
    cursor: pointer;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.home-maglink-button-container:hover {
    background: #ff2659;
}

.home-maglink-button-container > a,
.home-maglink-button-container > span {
    display: block;
    position: relative;
    padding: 15px 0;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

.home-maglink-icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.home-maglink-txt {
    display: inline-block;
    margin-left: 9px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.home-maglink-txt-sm {
    display: block;
    font-size: 13.5px;
    text-align: center;
    margin: 0 -64px 10px 35px;
    line-height: 1.3;
    color: #ff426e;
}

.home-maglink-txt-main {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.is-disabled .home-maglink-txt-sm {
    color: #000;
}

.is-disabled .home-maglink-button-container {
    background: #8c8c8c;
}

.is-disabled .home-maglink-button-container span {
    opacity: 0.8;
}

@media screen and (max-width: 960px) {
    .home__main-title {
        margin-bottom: 27px;
        padding-left: 10px;
    }
    .home__title-grandprix-announcement-pc {
        width: 462.68px;
    }
    .home-primary-examination {
        width: 368.94px;
        margin-top: 56.76px;
        margin-left: 43.5px;
    }
    .home-maglink-button-base {
        width: 484.18px;
        margin-top: 31.82px;
    }
    .home-maglink-button-group {
        width: calc(50% - 20px);
        display: inline-block;
    }
    .home-maglink-button-group + .home-maglink-button-group {
        margin-left: 30px;
    }
    .home-maglink-button-container > a {
        padding: 15px 0;
    }
    .home-maglink-txt-sm {
        font-size: 12px;
    }
    .home-maglink-txt-main {
        font-size: 18px;
    }
    .home-maglink-icon {
        width: 7px;
        left: 15px;
    }
    .home-maglink-txt {
        margin-left: 4px;
    }
}

@media screen and (max-width: 820px) {
    .home__title-grandprix-announcement-pc {
        width: 430.4px;
    }
    .home-primary-examination {
        width: 343.2px;
        margin-top: 39.6px;
        margin-left: 40.5px;
    }
    .home-maglink-button-base {
        width: 450.4px;
        margin-top: 22.2px;
        margin-left: -20px;
    }
    .home-maglink-button-group {
        width: calc(50% - 15px);
        display: inline-block;
    }
    .home-maglink-button-group + .home-maglink-button-group {
        margin-left: 20px;
    }
    .home-maglink-txt-sm {
        font-size: 11px;
    }
    .home-maglink-txt-main {
        font-size: 16px;
    }
}

@media screen and (max-width: 690px) {
    .home__main-visual-container-teaser{
        padding: 30px 20px 10px;
    }
    .home__main-top-logo{
        width: 60%;
        max-width: 250px;
    }
    .home__main-top-tagline{
        width: 80%;
        margin: 30px 0 15px;
        max-width: 400px;
    }
    .home__main-top-startdate-image{
        width: 80%;
        max-width: 300px;
    }
    .home__main-top-startdate{
        margin-top: 20px;
    }
    .home__main-top-winner br{
        display: block;
    }
    .home__title-grandprix-announcement-pc {
        display: none;
    }
    .home__title-grandprix-announcement-sp {
        display: block;
        width: 100px;
        position: absolute;
        top: 0;
        left: 15%;
    }
    .home-primary-examination {
        width: 300.3px;
        margin-top: 19.8px;
        margin-left: 35px;
    }
    .home-maglink-button-base {
        width: calc(100% + 40px);
        margin-top: 14.8px;
        background: #fff4f6;
        margin: 0 -20px;
        padding: 15px;
    }
    .home-maglink-button-group {
        width: calc(100% - 20px);
        display: block;
    }
    .home-maglink-button-group + .home-maglink-button-group {
        margin-top: 20px;
        margin-left: 0;
    }
    .home-maglink-txt-sm {
        margin: 0 0 10px 10px;
    }
    .home-maglink-txt-main {
        font-size: 15px;
        white-space: nowrap;
    }
    .home-maglink-txt-main br {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    .home__main-visual-container2:after {
        right: -120px;
    }
    .home__title-grandprix-announcement-sp {
        left: 10%;
    }
    .home-maglink-txt-sm br {
        display: block;
    }
}

@media screen and (max-width: 490px) {
    .home__main-visual-container2:after {
        right: -170px;
    }
}

@media screen and (max-width: 590px) {
    .home__main-visual-container3:after {
        width: 200%;
        right: -120px;
    }
    .home__title-grandprix-announcement-sp {
        left: 10%;
    }
    .home-maglink-txt-sm br {
        display: block;
    }
}

@media screen and (max-width: 490px) {
    .home__main-visual-container3:after {
        right: -170px;
    }
}

@media screen and (max-width: 960px) {
    .home__main-title-pc {
        display: none;
    }
}

.home__main-title-pc img {
    width: 303px;
    height: auto;
}

.home__main-title-sp {
    display: none;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

@media screen and (max-width: 960px) {
    .home__main-title-sp {
        width: 45px;
        display: block;
        margin: 0 auto;
        padding-bottom: 18.4vw;
    }
}

@media screen and (max-width: 960px) {
    .home__main-title-sp img {
        width: auto;
        height: 173px;
    }
}

@media screen and (max-width: 690px) {
    .home__main-title-sp img {
        height: 46.073vw;
    }
}

.home__main-magazine {
    position: absolute;
    left: 20px;
    top: 40px;
    font-weight: bold;
    line-height: 1.6;
    white-space: nowrap;
}

.home__main-magazine a {
    text-decoration: underline;
    color: #fff;
}

@media screen and (max-width: 960px) {
    .home__main-magazine {
        position: static;
        margin-left: 10px;
        font-size: 14px;
        white-space: normal;
        color: #fff;
    }
    .home__main-magazine a {
        color: #fff;
    }
}

/*
.home__main-magazine-logo{
  width: 225px;
  margin-bottom: 12px;

  @include screen_md{
    width: 150px;
  }
}
*/
.home__period-container {
    margin: 25px 0 0 0;
    width: 431px;
}

.home__period-container-link {
    display: inline-block;
    margin: 0px 0 16px 0;
}
.home__period-container-link.is-disbled .home__period-ceremony_btn {
    color: rgb(255 255 255 / 52%);
}

@media screen and (max-width: 960px) {
    .home__period-container {
        margin: 85px 0 0;
        padding: 0 10px 10px 10px;
        color: #fff;
    }
}

.home__period-sdkg {
    background: #fff4f6;
    color: #111;
    padding: 16px 16px;
    border: 1px solid #ccc;
    display: flex;
    align-items: flex-start;
    width: 430px;
}

.home__period-sdkg .home__period-sdkg-contents{
    font-size: 18px;
}
.home__period-sdkg .home__period-sdkg-contents span{
    display: block;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
}
.home__period-container a:hover .home__period-sdkg img,
.home__period-container a:hover .home__period-sdkg .home__period-text,
.home__period-container a:hover .home__period-ceremony .home__period-ceremony_text,
.home__period-container a:hover .home__period-ceremony .home__period-ceremony_btn {
    opacity: .8;
}
.no-link {
    opacity: .2;
}
.home__period-sdkg-title {
    display: block;
    font-size: 15px;
    background: #ff426e;
    color: #fff;
    width: 220px;
    padding: 10px 15px;
    margin: 16px auto 0 0px;
    line-height: 1.4;
    text-align: left;
}
.home__period-sdkg-small {
    font-size: 14px;
    font-weight: normal;
    padding-top: 20px;
    display: block;
}
.home__period-ceremony{
    background: #fff4f6;
    padding: 15px 15px;
    display: inline-block;
    border: 1px solid #ccc;
    display: table;
    width: 430px;
}
.home__period-ceremony_text{
    font-size: 14px;
    line-height: 1.2;
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
}
.home__period-ceremony_btn{
    font-size: 16px;
    background: #ff426e;
    color: #fff;
    padding: 15px;
    width: 220px;
    line-height: 1.4;
    font-weight: bold;
    float: right;
    text-align: center;
}

.home__period-text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 0;
    padding-left: 30px;
    width: 100%;
}
.home__period-text.is-sp {
    display: none;
}
.home__period-sdkg-contents.is-pc {
    display: block;
}

@media screen and (max-width: 960px) {
    .home__period-sdkg {
        display: inline-block;
    }
    .home__period-text {
        font-size: 14px;
        line-height: 1.5;
        padding-left: 0
    }
}

@media screen and (max-width: 690px) {
    .home__period-sdkg-small {
        padding-top: 10px;
    }
    .home__period-text {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .home__period-text.is-sp {
        display: block;
    }
    .home__period-sdkg .home__period-sdkg-contents span {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .home__period-sdkg-contents.is-pc {
        display: none;
    }
    .home__period-sdkg-contents.is-pc {
        display: none;
    }
}

.home__period-content {
    display: inline-block;
    margin: 6px 0 0;
    padding: 2px 10px 2px 0;
    /*background: #fff;*/
}

@media screen and (max-width: 960px) {
    .home__period-content {
        display: block;
        padding: 2px 6px;
    }
}

.home__period-close {
    background-image: url(../image/award-close-59-pc.png);
    background-size: contain;
    height: 80px;
    background-repeat: no-repeat;
    margin: 10px 0 0 0;
}

@media screen and (max-width: 960px) {
    .home__period-close {
        background-image: url(../image/award-close-59-sp.png);
        background-size: contain;
        height: 120px;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 690px) {
    .home__period-close {
        height: 90px;
    }
    .home__main-title {
        margin-bottom: 23px;
    }
    .home__period-sdkg .home__period-sdkg-contents {
        font-size: 16px;
    }
    .home__period-sdkg-title {
        font-size: 14px;
        width: auto;
        padding: 10px 10px 10px 15px;
    }
    .home__period-sdkg {
        display: block;
        text-align: center;
        padding: 15px;
    }
    .home__period-sdkg .home__period-sdkg-contents {
        padding-left: 0;
        margin-top: 0;
    }
    .home__period-sdkg-title {
        margin-left: 0;
        float: none;
        text-align: center;
    }
    .home__period-text {
        display: block;
    }
    .home__period-sdkg {
        width: 80%;
        margin: 0 auto;
    }
    .home__period-container {
        display: block;
        width: auto;
    }
    .home__period-container-link {
        width: 100%;
        margin: 20px 0 10px;
    }
    .home__period-ceremony{
        width: 80%;
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 15px;
    }
    .home__period-ceremony_text{
        font-size: 16px;
        display: block;
    }
    .home__period-ceremony_btn{
        width: auto;
        float: none;
        font-size: 14px;
        margin-top: 15px;
        padding: 10px;
    }
}

.home__period.accepting {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: solid 2px #e99298;
    /*#fdf2b3*/
}

@media screen and (max-width: 590px) {
    .home__period-sdkg,
    .home__period-ceremony
    {
        width: 100%;
    }
}

@media screen and (max-width: 960px) {
    .home__period.accepting {
        padding: 6px 0;
    }
}

.home__period.accepting:last-child {
    border-bottom: none;
}

.accepting-tag {
    width: 88px;
    margin: 0 10px 0 0;
    padding: 8px 0;
    background: #fff;
    font-size: 14px;
    font-weight: bold;
    color: #000715;
    text-align: center;
    border-radius: 2px;
}

@media screen and (max-width: 960px) {
    .accepting-tag {
        width: 72px;
        margin: 0 6px 0 0;
        padding: 6px 0;
        font-size: 11px;
    }
}

.accepting-period {
    padding: 0 4px 0 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .accepting-period {
        font-size: 10px;
    }
}

.accepting-period span.large {
    font-size: 20px;
    display: inline-block;
    margin: 0 .08em;
}

@media screen and (max-width: 960px) {
    .accepting-period span.large {
        font-size: 14px;
        color: #fff;
    }
}

.home__main-button-container {
    margin: 16px 0 0;
    font-size: 0;
}

@media screen and (max-width: 960px) {
    .home__main-button-container {
        margin: 0;
        padding: 20px 20px 10px;
        background: rgba(255, 244, 246, .9);
        text-align: center;
    }
}

.home__main-button-container .button-default {
    margin: 0 10px 10px 0;
}


@media screen and (max-width: 960px) {
    .home-content__section {
        padding: 30px 0 40px;
    }
}

@media screen and (max-width: 960px) {
    .home-content__section:last-child {
        padding: 30px 0 0;
    }
}

.home-content__section:nth-of-type(even) {
    background: #fff4f6;
}

.home-content__section {
    padding: 40px 0 60px;
}


/**
 * mail form
 */
.home__mail-container {
    padding: 41px 20px 45px;
    margin: 0 auto;
    text-align: center;
}

.home__mail-text {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 15px;
    font-weight: bold;
}

@media screen and (max-width: 690px) {
    .home__mail-container {
        padding: 33px 20px 45px;
    }
    .home__mail-text {
        font-size: 12px;
    }
}

.home__mail-text-sub {
    font-weight: normal;
    font-size: 13px;
    margin-top: 9px;
    display: block;
}

.home__mail-text-sub a {
    text-decoration: underline;
}

@media screen and (max-width: 690px) {
    .home__mail-text-sub {
        font-size: 11px;
        line-height: 1.6;
    }
}

.home__mail-accept {
    display: block;
}

.home__mail-form {
    display: flex;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home__mail-main {
    width: 73%;
}

.home__mail-submit {
    width: 24%;
}

.home__mail-input-wrap {
    background: #fff;
    width: 112%;
    border: 1px solid #DDD;
}

.home__mail-input {
    width: 100%;
    padding: 13px 30px 12px 10px;
    font-size: 14px;
    border: none;
    line-height: 1;
}
.home__mail-btn {
    margin-top: 20px;
}
.home__mail-btn a {
    width: 235px;
    display: block;
    margin: auto;
    background: #ff426e;
    text-align: center;
    cursor: pointer;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.home__mail-btn a span {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

@media screen and (max-width: 630px) {
    .home__mail-btn {
        margin-top: 0px;
    }
    .home__mail-btn a {
        width: 177px;
    }
    .home__mail-btn a span {
        font-size: 10px;
    }
}
@media screen and (max-width: 960px) {
    .home__mail-input {
        font-size: 14px;
        padding-top: 11px;
        padding-bottom: 11px;
    }
}

@media screen and (max-width: 480px) {
    .home__mail-input {
        font-size: 10px;
        padding: 11px 0 11px 5px;
    }
    .button-default-link {
        font-size: 10px;
    }
    .button-default-link {
        padding: 11px 0 10px 0;
    }
}

.home__mail-submit-btn {
    width: 100%;
    border: none;
}

.home-sponsor-section {
    padding-bottom: 160px;
    margin-bottom: -160px;
}


.home-news__content {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 630px) {
    .home-news__content {
        margin: 20px 0;
        padding: 0 10px;
    }
}

.home-news__list-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -28px;
}

@media screen and (max-width: 630px) {
    .home-news__list-items {
        margin: 0 0 -10px;
    }
}

.home-news__list-item {
    width: 229px;
    margin: 0 28px 34px 0;
    position: relative;
    background: #fff;
    border: solid 2px #f7f7f7;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, .04);
}

@media screen and (max-width: 630px) {
    .home-news__list-item {
        width: 48%;
        margin: 0 4% 16px 0;
    }
    .home-news__list-item:nth-child(2n) {
        margin: 0 0 16px;
    }
}

.home-news__list-item:last-child {
    margin: 0 0 34px;
}

@media screen and (max-width: 630px) {
    .home-news__list-item:last-child {
        margin: 0 0 16px;
    }
}

.home-news__list-item a {
    display: block;
    height: 100%;
    padding: 12px 12px 14px;
    cursor: pointer;
}

.home-news__image {
    overflow: hidden;
    position: relative;
}

.home-news__image:before {
    content: "";
    display: block;
    padding: 64% 0 0;
}

.home-news__image img {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.home-card__list-items {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 1100px) {
    .home-card__list-items {
        max-width: 928px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 630px) {
    .home-card__list-items {
        margin: 0 0 -10px;
    }
}

.home-card__list-item {
    margin: 0 14px 6px;
    position: relative;
    background: #fff;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, .04);
}

@media screen and (max-width: 630px) {
    .home-card__list-item {
        margin: 0 10px 6px;
    }
}

.home-card__list-item a {
    display: block;
    height: 100%;
    padding: 12px 12px 14px;
    outline: none;
}

.home-card__image {
    border: solid 2px #f7f7f7;
    overflow: hidden;
    position: relative;
}

.home-card__image:before {
    content: "";
    display: block;
    padding: 68% 0 0;
}

.home-card__image img {
    width: 100%;
    margin: auto;
    padding: 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.home-card__title {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .home-card__title {
        font-size: 12px;
    }
}

.home-card__text {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.4;
}

@media screen and (max-width: 960px) {
    .home-card__text {
        font-size: 11px;
    }
}

.home-card__list-item a:hover .home-card__image,
.home-news__list-item a:hover .home-news__image {
    opacity: 0.8;
}

.home-card__list-item a:hover .home-card__title,
.home-news__list-item a:hover .home-card__title {
    color: #ff426e;
}

.home-about__content {
    display: flex;
    max-width: 840px;
    margin: 30px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 630px) {
    .home-about__content {
        display: block;
        margin: 20px auto 0;
        padding: 0;
    }
}

.home-about__image-container {
    width: 300px;
    margin: 0 40px 0 0;
    flex: 1;
}

@media screen and (max-width: 960px) {
    .home-about__image-container {
        margin: 0 20px 0 0;
    }
}

@media screen and (max-width: 630px) {
    .home-about__image-container {
        width: 100%;
        margin: 0;
    }
}

.home-about__image-container img {
    width: 100%;
}

@media screen and (max-width: 630px) {
    .home-about__image-pc {
        display: none;
    }
}

.home-about__image-sp {
    display: none;
}

@media screen and (max-width: 630px) {
    .home-about__image-sp {
        display: block;
    }
}

.home-about__text-container {
    flex: 2;
}

@media screen and (max-width: 630px) {
    .home-about__text-container {
        margin: 20px 0 0;
        padding: 0 20px;
    }
}

.home-about__text {
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .home-about__text {
        font-size: 12px;
        line-height: 1.7;
    }
}

.home-about__button-container {
    margin: 30px 0 -10px;
    font-size: 0;
}

@media screen and (max-width: 630px) {
    .home-about__button-container {
        margin: 20px 0 -10px;
        text-align: center;
    }
}

.home-about__button-container .button-default {
    margin: 0 10px 10px 0;
}

.home-about__2nd-container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.home-about__2nd-container:after {
    content: "";
    clear: both;
    display: table;
}

@media screen and (max-width: 630px) {
    .home-about__2nd-container {
        margin-top: 40px;
    }
}

.home-about__2nd-title {
    color: #892944;
    text-align: center;
    margin-bottom: 30px;
}

.home-about__2nd-title .sp-title {
    display: none;
}

@media screen and (max-width: 400px) {
    .home-about__2nd-title {
        line-height: 1.2;
    }
    .home-about__2nd-title .sp-title {
        display: block;
    }
}

.home-about__2nd-content {
    text-align: center;
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding-right: 25px;
}

.home-about__2nd-content:last-child {
    padding-right: 0;
    padding-left: 25px;
}

@media screen and (max-width: 630px) {
    .home-about__2nd-content {
        width: auto;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .home-about__2nd-content:last-child {
        padding-left: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }
}

.home-about__2nd-content-title {
    display: inline-block;
    text-align: center;
    border: 2px solid #ff426e;
    margin-bottom: 20px;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.home-about__2nd-content-title-text {
    display: inline-block;
    padding: 6px 14px;
    font-size: 16px;
    font-weight: bold;
    color: #ff426e;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

@media screen and (max-width: 960px) {
    .home-about__2nd-content-title-text {
        font-size: 14px;
    }
}

.home-about__2nd-content-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
    .home-about__2nd-content-text {
        font-size: 12px;
        line-height: 1.7;
    }
}

.home-step__content {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .home-step__content {
        margin: 20px auto 0;
    }
}

.home-step__list-items {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 960px) {
    .home-step__list-items {
        display: block;
    }
}

.home-step__list-item {
    width: 30%;
    position: relative;
}

@media screen and (max-width: 960px) {
    .home-step__list-item {
        width: 100%;
        margin: 0 0 68px;
    }
    .home-step__list-item:last-child {
        margin: 0;
    }
}

.home-step__list-item:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 190px;
    right: -10%;
    border-style: solid;
    border-width: 7px 0 7px 10px;
    border-color: transparent transparent transparent #333;
}

@media screen and (max-width: 960px) {
    .home-step__list-item:after {
        margin: auto;
        top: auto;
        bottom: -28px;
        left: 0;
        right: 0;
        border-width: 6px 6px 0 6px;
        border-color: #333 transparent transparent transparent;
    }
}

.home-step__list-item:last-child:after {
    content: none;
}

.home-step__tag {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border: solid 3px #ff426e;
    border-radius: 50%;
}

@media screen and (max-width: 960px) {
    .home-step__tag {
        width: 45px;
        height: 45px;
        border-width: 2px;
    }
}

.home-step__tag-text {
    margin: 10px 0 0;
    font-size: 12px;
    color: #ff426e;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .home-step__tag-text {
        margin: 8px 0 0;
        font-size: 10px;
    }
}

.home-step__tag-text span {
    display: block;
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 960px) {
    .home-step__tag-text span {
        font-size: 16px;
    }
}

.home-step__title {
    margin: 16px 0 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #892944;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .home-step__title {
        margin: 12px 0 0;
        font-size: 20px;
    }
}

.home-step__image {
    width: 190px;
    margin: 24px auto 0;
}

.home-step__image img {
    width: 100%;
}

.home-step__text {
    margin: 24px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .home-step__text {
        margin: 18px 0 0;
        font-size: 12px;
        line-height: 1.7;
    }
}

.home-step__button-container {
    margin: 30px 0 -10px;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .home-step__button-container {
        margin: 20px 0 -10px;
        font-size: 0;
    }
}

.home-step__button-container .button-default {
    margin: 0 10px 10px 0;
}

.home-team__content {
    max-width: 1040px;
    margin: 60px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .home-team__content {
        margin: 30px auto 0;
        padding: 0;
    }
}

.home-team__button-container {
    padding: 30px 0;
    font-size: 0;
    text-align: center;
    border: solid 6px #f7f7f7;
}

.home-content__section:nth-of-type(even) .home-team__button-container {
    border: solid 6px #fff;
}

@media screen and (max-width: 960px) {
    .home-team__button-container {
        margin: 30px 0 0;
        padding: 20px 0 10px;
        border-left: none;
        border-right: none;
    }
}

.home-team__button-container .button-default {
    margin: 0 10px 0 0;
    width: 210px;
}

@media screen and (max-width: 960px) {
    .home-team__button-container .button-default {
        width: 175px;
        margin: 0 10px 10px 0;
    }
}

.home-theme__content {
    max-width: 1040px;
    margin: 20px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 630px) {
    .home-theme__content {
        margin: 0;
    }
}

.home-theme__slider {
    margin: 0 -14px;
}

@media screen and (max-width: 960px) {
    .home-theme__slider {
        margin: 0 6px;
    }
}

.home-theme__slider-container {
    margin: 0 0 60px;
}

.home-theme__slider-container:last-child {
    margin: 0;
}

.home-theme__slider-title {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    color: #7b1839;
}

@media screen and (max-width: 960px) {
    .home-theme__slider-title {
        font-size: 14px;
    }
}

.home-theme__slider-desc {
    font-size: 14px;
    margin-bottom: 12px;
}

@media screen and (max-width: 960px) {
    .home-theme__slider-desc {
        font-size: 12px;
    }
}

.home-theme__button-container {
    margin: 30px auto -10px;
    font-size: 0;
    text-align: center;
}
.home-theme__button-container .button-default {
    width: 210px;
}

@media screen and (max-width: 960px) {
    .home-theme__button-container .button-default {
        width: 175px;
    }
}

.home-theme__button-container .button-default {
    margin: 0 10px 10px 0;
}

.home-theme__button-container-award .button-default{
    width: 250px;
}

.home-theme__button-container-award .button-default .button-default-link {
    font-size: 15px;
    line-height: 1.3;
}

.home-know__content {
    margin: 30px 0 0;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .home-know__content {
        margin: 20px 0 0;
        padding: 0 20px;
        text-align: left;
    }
}

.home-know__text {
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .home-know__text {
        font-size: 12px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 960px) {
    .home-know__text br {
        display: none;
    }
}

.home-know__banner-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 26px 0 0;
}

@media screen and (max-width: 960px) {
    .home-know__banner-items {
        max-width: 296px;
        margin: 26px auto 0;
    }
}

.home-know__banner-item {
    width: 205px;
    margin: 0 20px 0 0;
}

@media screen and (max-width: 960px) {
    .home-know__banner-item {
        width: 143px;
        margin: 0 10px 10px 0;
    }
}

@media screen and (max-width: 630px) {
    .home-know__banner-item {
        width: 48%;
        margin: 0 4% 4% 0;
    }
}

.home-know__banner-item:last-child {
    margin: 0;
}

@media screen and (max-width: 960px) {
    .home-know__banner-item:nth-child(2n) {
        margin: 0;
    }
}

.home-know__banner-item a:hover {
    opacity: 0.8;
}

.home-know__banner-item img {
    width: 100%;
}

.home-know__sns-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 0;
}

@media screen and (max-width: 960px) {
    .home-know__sns-container {
        display: block;
        text-align: center;
    }
}

.home-know__sns-text {
    margin: 0 20px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

@media screen and (max-width: 960px) {
    .home-know__sns-text {
        margin: 0;
        font-size: 12px;
        line-height: 1.7;
    }
}

.home-know__sns-text span {
    margin: 0 0 0 1em;
}

@media screen and (max-width: 960px) {
    .home-know__sns-text span {
        display: block;
        margin: 0;
    }
}

.home-know__sns {
    margin: 0 10px 0 0;
}

@media screen and (max-width: 960px) {
    .home-know__sns {
        display: inline-block;
        margin: 20px 10px 0 0;
    }
}

.home-know__sns:last-child {
    margin: 0;
}

.home-know__sns-image {
    width: 30px;
    height: auto;
}

.home-know__sns-image:hover {
    opacity: 0.8;
}
.home-download {
    max-width: 800px;
    margin: auto;
    border: 6px solid #f7f7f7;
    padding: 55px;
    margin-top: 50px;
}
.home-download__ttl {
    font-size: 22px;
}
.home-download__txt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.4;
}
.home-download__button {
    margin-top: 35px;
}
.home-download__button a.button-default-link {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 960px) {
    .home-download {
        padding: 43px 18px 41px;
    }
    .home-download__ttl {
        text-align: center;
        font-size: 16px;
    }
    .home-download__txt {
        text-align: center;
        margin-top: 23px;
        font-size: 12px;
        line-height: 1.4;
    }
    .home-download__button {
        max-width: 150px;
        margin-top: 35px;
        margin-left: auto;
        margin-right: auto;
        display: block
    }
    .home-download__button a.button-default-link {
        color: #fff;
        text-decoration: none;
    }
}
.home-judge__content {
    max-width: 840px;
    margin: 30px auto 0;
    padding: 0 20px;
    overflow: hidden;
}

@media screen and (max-width: 960px) {
    .home-judge__content {
        margin: 20px auto 0;
    }
}

.home-judge__item {
    position: relative;
    display: flex;
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .home-judge__item {
        display: block;
        margin: 40px 0 0;
    }
}

.home-sponsor__content {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .home-sponsor__content {
        margin: 20px auto 0;
    }
}

.home-sponsor__items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 -16px -16px;
}

@media screen and (max-width: 960px) {
    .home-sponsor__items {
        margin: 0 0 -10px -10px;
    }
}

.home-sponsor__item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 111px;
    margin: 0 0 12px 16px;
    position: relative;
    border: solid 2px #f7f7f7;
    /* box-shadow: 0 6px 0 0 rgba(0, 0, 0, .04); */
    background: #fff;
}

@media screen and (max-width: 960px) {
    .home-sponsor__item a {
        width: 100px;
        margin: 0 0 16px 10px;
    }
}

.home-sponsor__item a:before {
    content: "";
    display: block;
    padding: 100% 0 0;
}

.home-sponsor__item a img {
    width: 100%;
    margin: auto;
    padding: 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.home-sponsor__item a:hover {
    opacity: 0.8;
}

.home-sponsor__item span {
    display: block;
    font-size: 11px;
    line-height: 1.3;
    font-weight: bold;
    width: 111px;
    /* margin-left: 22px; */
    padding: 0 0 0 16px;
    margin-bottom: 22px;
}

.home-sns-widgets__container {
    margin-bottom: -160px;
    padding-bottom: 160px;
}

@media screen and (max-width: 960px) {
    .home-sns-widgets__container {
        margin-bottom: -100px;
        padding-bottom: 100px !important;
    }
}

@media screen and (max-width: 630px) {
    .home-sns-widgets__container {
        padding-bottom: 30px !important;
    }
}

.home-sns-widgets {
    max-width: 960px;
    margin: 0 auto;
}

.home-sns-widgets:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 630px) {
    .home-sns-widgets {
        padding-bottom: 12px;
    }
}

.home-sns-widgets__box {
    width: 50%;
    float: left;
    box-sizing: border-box;
    padding: 0 20px;
}

@media screen and (max-width: 630px) {
    .home-sns-widgets__box {
        width: auto;
        float: none;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 26px;
    }
}

.home-sns-widgets__h {
    color: #333;
    text-align: center;
    margin-bottom: 1.2em;
}

@media screen and (max-width: 960px) {
    .home-sns-widgets__h {
        font-size: 18px;
    }
}

@media screen and (max-width: 630px) {
    .home-sns-widgets__h {
        margin-bottom: .8em;
    }
}

.home-challenge__container {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.home-content__notification-container {
    padding: 30px 20px;
    margin: 60px auto 0;
    text-align: center;
}

.home-content__notification-section {
    background: #f7f7f7;
}

.notification-section__title {
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .home-content__notification-container {
        padding: 15px 10px;
        margin: 60px auto 0;
    }
    .notification-section__title {
        font-size: 16px;
    }
}

.notification-section__link {
    text-decoration: underline;
    line-height: 1.6;
}

/*
*
*   eyecatch
*
*/
.eyecatch {
    padding: 45px 0 15px;
    background: url("/tenants/senden/assets/image/eyecatch-bg.jpg") no-repeat top center;
    background-size: cover;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .eyecatch {
        padding: 32px 0 8px;
    }
}

.eyecatch__title {
    margin: 0 0 10px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .eyecatch__title {
        margin: 0 0 4px;
        font-size: 22px;
    }
}

.eyecatch__en {
    font-family: Georgia, Times, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.7;
    color: #7b1839;
}

@media screen and (max-width: 960px) {
    .eyecatch__en {
        font-size: 12px;
    }
}

/*
*
*   award
*
*/
.award-content__container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 20px;
}

.award__link-items {
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .award__link-items {
        margin: 30px 0 -10px;
    }
}

.award__link {
    font-weight: bold;
    color: #ff3466;
    text-decoration: underline;
}

.award__link:hover {
    text-decoration: none;
}

.award-content-tab {
    display: flex;
    margin: 45px 0 130px;
}

.award-content-tabitem {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    border: 2px solid #ff426e;
    position: relative;
}

.award-content-tabitem.is-active {
    background: #ff426e;
}

.award-content-tabitem.is-active:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid #ff426e;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    bottom: -27px;
    left: 50%;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

.award-content-tabitem .award-content-tab-text {
    display: block;
    color: #ff426e;
    padding: 12px 0;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
    font-weight: bold;
}

.award-content-tabitem.is-active .award-content-tab-text {
    color: #fff;
}

.award-content {
    margin: 86px 0 0;
}
.award-content__text {
    /* border-top: 1px solid #ddd; */
    margin-top: -60px;
    /* margin-top: 60px; */
    /* padding-top: 40px; */
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}
.award-content__text a {
    color: #f00;
}

@media screen and (max-width: 960px) {
    .award-content__text {
        /*  margin-top: 20px;
    padding-top: 20px; */
        font-size: 13px;
    }
}
.award-content__inner {
    padding: 0 54px;
    position: relative;
    border: solid 6px #f7f7f7;
}

@media screen and (max-width: 960px) {
    .award-content__inner {
        padding: 0 20px;
        border-width: 3px;
    }
}

.award__budge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 105px;
    margin: auto;
    position: absolute;
    top: -52px;
    left: 0;
    right: 0;
    background: url("/tenants/senden/assets/image/award-budge.png") no-repeat;
    background-size: 110px 105px;
}

@media screen and (max-width: 960px) {
    .award__budge {
        top: -40px;
        width: 79px;
        height: 76px;
        background-size: 79px 76px;
    }
}

.award__budge-text {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    font-size: 12px;
    line-height: 1;
}

@media screen and (max-width: 960px) {
    .award__budge-text {
        font-size: 10px;
    }
}

.award__budge-text span {
    padding: 0 6px 0 4px;
    font-size: 24px;
    line-height: 1;
}

@media screen and (max-width: 960px) {
    .award__budge-text span {
        padding: 0 2px;
        font-size: 20px;
    }
}

.award__product {
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.product-none {
    margin: 120px 0;
    font-size: 36px;
    line-height: 1;
    color: #aaa;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .product-none {
        margin: 66px 0 58px;
        font-size: 22px;
    }
}

.product1 {
    margin: 120px 0 100px;
    font-size: 36px;
    line-height: 1.4;
    text-align: center;
}

.product1.grandprix {
    margin: 150px 0 100px;
}

@media screen and (max-width: 960px) {
    .product1 {
        margin: 66px 0 52px;
        font-size: 22px;
    }
}

.product2 {
    margin: 90px 0 74px;
    font-size: 18px;
    line-height: 2.2;
}

@media screen and (max-width: 960px) {
    .product2 {
        margin: 56px 0 40px;
        font-size: 12px;
    }
}

.award__product-image {
    display: block;
    max-width: 400px;
    margin: 64px auto;
}

@media screen and (max-width: 960px) {
    .award__product-image {
        max-width: auto;
        width: 100%;
        margin: 52px auto 28px;
    }
}

.award__winner-text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .award__winner-text {
        margin: 0 0 12px;
        font-size: 12px;
    }
}
.award__task-group {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.award__task-sub {
    margin: 12px 0 0;
    font-size: 11px;
}
.award__task-sub--pc {
    display: block;
}
.award__task-sub--sp {
    display: none;
}

.award__task-title {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .award__task-group {
        flex-direction: column;
    }
    .award__task-sub {
        margin: 12px 0 0;
        font-size: 10px;
        line-height: 1.7;
        text-indent: -1em;
        padding-left: 1em;

    }
    .award__task-sub--pc {
        display: none;
    }
    .award__task-sub--sp {
        display: block;
    }
    .award__task-title {
        margin: 8px 0 0;
        font-size: 12px;
    }
}

.award__task-text {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .award__task-text {
        margin: 4px 0 0;
        font-size: 12px;
    }
}

.award__task-text + .text-link__container {
    margin: 14px 0 0;
}

@media screen and (max-width: 960px) {
    .award__task-text + .text-link__container {
        margin: 8px 0 0;
    }
}

.award-content__medal1 {
    margin: 106px 0 0;
}

@media screen and (max-width: 960px) {
    .award-content__medal1 {
        margin: 80px 0 0;
    }
}

.award-content__medal2 {
    margin: 110px 0 0;
}

@media screen and (max-width: 960px) {
    .award-content__medal2 {
        margin: 72px 0 0;
    }
}

.award-content__medal3 {
    margin: 124px 0 0;
}

@media screen and (max-width: 960px) {
    .award-content__medal3 {
        margin: 70px 0 0;
    }
}

.award__medal {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
}

.medal1 {
    width: 140px;
    top: -72px;
}

@media screen and (max-width: 960px) {
    .medal1 {
        width: 80px;
        top: -42px;
    }
}

.medal2 {
    width: 132px;
    top: -70px;
}

@media screen and (max-width: 960px) {
    .medal2 {
        width: 72px;
        top: -38px;
    }
}

.medal3 {
    width: 118px;
    top: -62px;
}

@media screen and (max-width: 960px) {
    .medal3 {
        width: 68px;
        top: -34px;
    }
}

.award__medal-image {
    width: 100%;
}

/*
*
*   about
*
*/
.about-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .about-content__container {
        margin: 30px auto 0;
    }
}

.about__lead {
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about__lead {
        font-size: 12px;
    }
}

.about-tag {
    display: inline-block;
    text-align: center;
    border: solid 2px #ff426e;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.about-tag p {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: bold;
    color: #ff426e;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

@media screen and (max-width: 960px) {
    .about-tag p {
        font-size: 12px;
    }
}

.about-point__container {
    margin: 60px 0 0;
}

@media screen and (max-width: 960px) {
    .about-point__container {
        margin: 30px 0 0;
    }
}

.about-point__section {
    display: flex;
    align-items: flex-start;
    margin: 0 0 60px;
}

@media screen and (max-width: 960px) {
    .about-point__section {
        display: block;
        margin: 0 0 40px;
    }
}

.about-point__section:last-child {
    margin: 0;
}

.about-point__section .about-tag {
    margin: 0 30px 0 0;
}

@media screen and (max-width: 960px) {
    .about-point__section .about-tag {
        margin: 0;
    }
}

.about-point__content {
    flex: 1;
    padding: 4px 0 0;
}

@media screen and (max-width: 960px) {
    .about-point__content {
        padding: 0;
        margin: 10px 0 0;
    }
}

.about-point__content-title {
    font-size: 18px;
    font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
    line-height: 1.3;
}

@media screen and (max-width: 960px) {
    .about-point__content-title {
        font-size: 18px;
        line-height: 1.7;
    }
}

.about-point__content-lead {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about-point__content-lead {
        font-size: 12px;
    }
    .about-point__content-lead br {
        display: none;
    }
}

.content-title__left {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
}

@media screen and (max-width: 960px) {
    .content-title__left {
        font-size: 18px;
        line-height: 1.7;
    }
}

.content-title__center {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .content-title__center {
        font-size: 20px;
    }
}

.content-title__center:after,
.content-title__left:after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 10px 0 0;
    background: url("../../image/content-title-border.png") no-repeat;
    background-size: 40px 4px;
}

@media screen and (max-width: 960px) {
    .content-title__center:after,
    .content-title__left:after {
        margin: 6px 0 0;
    }
}

.content-title__center:after {
    margin: 10px auto 0;
}

.about-detail__container {
    margin: 100px 0 0;
}

@media screen and (max-width: 960px) {
    .about-detail__container {
        margin: 50px 0 0;
    }
}

.about-detail__section {
    padding: 20px 0 100px;
    border-top: solid 2px #f1f1f1;
}

@media screen and (max-width: 960px) {
    .about-detail__section {
        padding: 20px 0 50px;
    }
}

.about-detail__section:last-child {
    padding: 20px 0 0;
}

.about-detail__schedule {
    margin: 30px 0 0;
}

.about-detail__schedule-text {
    margin-top: 50px;
}
.about-detail__schedule-text > p {
    margin-bottom: 20px;
}
.about-detail__schedule-text .schedule-text-detail dl {
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.7;
}
.about-detail__schedule-text .schedule-text-detail dt {
    display: inline-block;
    text-align: right;
    vertical-align: top;
    width: 8rem;
}
.about-detail__schedule-text .schedule-text-detail dt:after {
    content: "・・・";
    display: inline-block;
}
.about-detail__schedule-text .schedule-text-detail dd {
    display: inline-block;
    width: calc( 100% - 9rem );
}
.about-detail__schedule-text .schedule-text-detail dd .award__link {
    display: inline-block;
}
.about-detail__schedule-text .schedule-text-detail dd .book__link {
    font-weight: bold;
    display: inline-block;
}

@media screen and (max-width: 960px) {
    .about-detail__schedule {
        overflow: auto;
    }
    .about-detail__schedule {
        padding: 0 0 10px;
    }
    .about-detail__schedule::-webkit-scrollbar {
        height: 5px;
    }
    .about-detail__schedule::-webkit-scrollbar-track {
        background: #F1F1F1;
    }
    .about-detail__schedule::-webkit-scrollbar-thumb {
        background: #BCBCBC;
    }
    .about-detail__schedule-text {
        font-size: 12px;
    }
    .about-detail__schedule-text .schedule-text-detail dt {
        width: 6rem;
    }
    .about-detail__schedule-text .schedule-text-detail dd {
        width: calc( 100% - 7rem );
    }
}

.schedule-image {
    width: 800px;
}

@media screen and (max-width: 960px) {
    .schedule-image {
        width: 600px;
    }
}

.about-detail__contents {
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .about-detail__contents {
        display: block;
        margin: 20px 0 0;
    }
}

.about-detail__content:first-child {
    margin: 0 78px 0 0;
}

@media screen and (max-width: 960px) {
    .about-detail__content:first-child {
        margin: 0 0 30px;
    }
}

.about-detail__content-list-items {
    margin: 20px 0 0;
}

@media screen and (max-width: 960px) {
    .about-detail__content-list-items {
        margin: 10px 0 0;
    }
}

.about-detail__content-list-item {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about-detail__content-list-item {
        font-size: 14px;
    }
}

.about-detail__content-list-item span {
    font-weight: bold;
}

.about-detail__note {
    margin: 40px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about-detail__note {
        margin: 20px 0 0;
        font-size: 12px;
    }
}

.about-detail__method {
    margin: 34px 0 0;
}

.about-detail__method ul {
    padding-left: 1em;
    line-height: 1.6;
}

.about-detail__method ul li {
    list-style-type: disc;
    margin-left: 1em;
    margin-top: 5px;
}

@media screen and (max-width: 960px) {
    .about-detail__method {
        margin: 20px 0 0;
    }
}

.about-detail__method p {
    font-size: 18px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about-detail__method p {
        font-size: 12px;
    }
    .about-detail__method ul {
        font-size: 12px;
    }
}

.about-detail__cautions {
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .about-detail__cautions {
        margin: 20px 0 0;
    }
}

.about-detail__caution {
    margin: 0 0 50px;
}

@media screen and (max-width: 960px) {
    .about-detail__caution {
        margin: 0 0 30px;
    }
}

.about-detail__caution:last-child {
    margin: 0;
}

.about-detail__caution-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .about-detail__caution-title {
        font-size: 12px;
    }
}

.about-detail__caution p, .about-detail__caution ul {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
}

.about-detail__caution ul {
    margin-top: 8px;
}

.about-detail__caution li {
    list-style-type: disc;
    margin-left: 1.2em;
}

.about-detail__caution ul li > ul {
    margin-top: 0;
}

.about-detail__caution ul li > ul li {
    list-style-type: circle;
}

.about-detail__caution ol > li {
    list-style-type: none;
    counter-increment: cnt;
    margin-left: 0;
}

.about-detail__caution ol > li:before {
    content: "("counter(cnt) ") ";
}

@media screen and (max-width: 960px) {
    .about-detail__caution p {
        margin: 0 0 12px;
        font-size: 12px;
    }
}

.about-detail__caution p:last-of-type {
    margin: 0;
}

/*
*
*   judge
*
*/
.judge-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .judge-content__container {
        margin: 30px auto 0;
    }
}

.judge-content__section {
    margin: 0 0 100px;
    padding: 20px 0 0;
    border-top: solid 2px #f1f1f1;
}

@media screen and (max-width: 960px) {
    .judge-content__section {
        margin: 0 0 50px;
    }
}

.judge-content__list-items.two-colmuns {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
    .judge-content__list-items.two-colmuns {
        display: block;
    }
}

.judge-content__list-item {
    position: relative;
    display: flex;
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .judge-content__list-item {
        display: block;
        margin: 40px 0 0;
    }
    .judge-content__list-item:first-child {
        margin: 20px 0 0;
    }
}

.judge-content__list-items.two-colmuns .judge-content__list-item {
    display: block;
    width: 380px;
    margin-right: 40px;
}

@media screen and (max-width: 960px) {
    .judge-content__list-items.two-colmuns .judge-content__list-item {
        width: 100%;
        margin-right: 0;
    }
}

.judge-content__list-items.two-colmuns .judge-content__list-item:nth-child(2n) {
    margin-right: 0;
}

.judge-content__thumbnail.large {
    width: 200px;
    margin: 0 40px 0 0;
}

@media screen and (max-width: 960px) {
    .judge-content__thumbnail.large {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        width: auto;
    }
}

.judge-content__thumbnail.small {
    position: absolute;
    left: 0;
    top: 0;
}

.judge-content__thumbnail.large img {
    width: 200px;
}

@media screen and (max-width: 960px) {
    .judge-content__thumbnail.large img {
        width: 120px;
    }
}

.judge-content__thumbnail.small img {
    width: 100px;
}

@media screen and (max-width: 960px) {
    .judge-content__thumbnail.small img {
        width: 80px;
    }
}

@media screen and (max-width: 960px) {
    .judge-content__meta {
        padding-left: 140px;
        min-height: 120px;
    }
}

.judge-content__list-items.two-colmuns .judge-content__meta {
    padding-left: 120px;
    min-height: 100px;
}

@media screen and (max-width: 960px) {
    .judge-content__list-items.two-colmuns .judge-content__meta {
        padding-left: 100px;
        min-height: 80px;
    }
}

.judge-content__name {
    font-size: 18px;
    line-height: 1.7;
    font-weight: bold;
}

@media screen and (max-width: 960px) {
    .judge-content__name {
        font-size: 14px;
    }
}

.judge-content__name span {
    font-size: 14px;
    font-weight: 500;
}

@media screen and (max-width: 960px) {
    .judge-content__name span {
        font-size: 12px;
    }
}

.judge-content__other {
    margin: 2px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .judge-content__other {
        margin: 0;
        font-size: 12px;
    }
}

.judge-content__introduction {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .judge-content__introduction {
        margin: 8px 0 0;
        font-size: 12px;
    }
}

@media screen and (max-width: 960px) {
    .judge-content__introduction:after {
        content: "";
        display: block;
        clear: both;
        height: 0;
        visibility: hidden;
    }
}

@media screen and (max-width: 960px) {
    span.judge-content__sns {
        font-size: 14px;
    }
}

.judge-content__sns img {
    width: 18px;
    height: auto;
    margin: 0 0 0 8px;
    vertical-align: text-bottom;
}

.judge-content__sns:hover {
    opacity: 0.8;
}

.judge-content__button-container {
    margin: 30px 0 0;
}

@media screen and (max-width: 960px) {
    .judge-content__button-container {
        margin: 20px 0 0;
        text-align: center;
    }
}

/*
*
*   theme
*
*/
.theme-content__container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.theme__header {
    display: flex;
    align-items: flex-start;
    margin-bottom: -38px;
    position: relative;
}

.theme__header:before, .theme__header:after {
    content: "";
    width: 6px;
    height: 40px;
    background: #eee;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.theme__header:before {
    height: 6px;
    width: 40px;
}

@media screen and (max-width: 960px) {
    .theme__header {
        display: block;
    }
}

.theme__entry-content {
    padding: 30px 0;
    text-align: center;
    min-width: 300px;
    position: relative;
}

.theme__entry-content:before, .theme__entry-content:after {
    content: "";
    width: 6px;
    height: 40px;
    background: #eee;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.theme__entry-content:before {
    height: 6px;
    width: 40px;
}

@media screen and (max-width: 960px) {
    .theme__entry-content {
        padding: 16px 0;
    }
}

.theme__entry-number,
.theme__entry-text {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .theme__entry-number,
    .theme__entry-text {
        display: inline-block;
        padding-left: 1em;
        padding-right: 1em;
        white-space: nowrap;
    }
}

@media screen and (max-width: 960px) {
    .theme__entry-number,
    .theme__entry-text {
        font-size: 12px;
    }
}

.theme__entry-text span {
    font-size: 22px;
}

@media screen and (max-width: 960px) {
    .theme__entry-text span {
        font-size: 16px;
    }
}

.theme__entry-number {
    display: inline-block;
    border-bottom: 5px solid #ff426e;
    line-height: 1.4;
    padding-top: 10px;
}

.theme__entry-number span {
    font-size: 32px;
}

@media screen and (max-width: 960px) {
    .theme__entry-number span {
        font-size: 26px;
    }
}

.theme-icon-description__items {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    margin-left: 30px;
    padding: 15px 0 15px 30px;
    border: 1px solid #eee;
    position: relative;
}

@media screen and (max-width: 960px) {
    .theme-icon-description__items {
        margin-left: 0;
    }
}

@media screen and (max-width: 630px) {
    .theme-icon-description__items {
        border: none;
        border-top: 1px solid #eee;
        padding: 0 0 15px;
    }
}

.theme-icon-description__item {
    display: flex;
    align-items: center;
    margin: 10px 50px 10px 0;
}

@media screen and (max-width: 630px) {
    .theme-icon-description__item {
        width: 48%;
        margin: 20px 1% 0;
    }
    .theme-icon-description__item:first-child {
        width: 100%;
    }
}

.theme-icon-description__item.is-explain {
    flex-grow: 1;
    text-align: right;
}

@media screen and (max-width: 630px) {
    .theme-icon-description__item.is-explain {
        text-align: center;
    }
}

.theme-icon-description__image {
    width: 30px;
    margin: 0 6px 0 0;
}

.theme-icon-description__image.large {
    width: 38px;
}

.theme-icon-description__image img {
    width: 100%;
}

.theme-icon-description__text {
    font-size: 12px;
    line-height: 1.4;
}

.theme-icon-description__link {
    width: 100%;
    font-size: 14px;
    font-weight: bold;
}

.theme-icon-description__link-link {
    cursor: pointer;
}

.theme-icon-description__link-link + .theme-icon-description__link-link {
    padding-left: 1em;
}

.theme__period-container {
    margin: 20px 0 20px;
    text-align: center;
}

.theme__period-text {
    font-size: 24px;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
    .theme__period-text {
        font-size: 22px;
        line-height: 1.7;
    }
}

@media screen and (max-width: 690px) {
    .theme__period-text {
        font-size: 16px;
        line-height: 1.5;
    }
}
.theme__period-close {
    background-image: url(../image/award-close-59-pc.png?20220301);
    background-size: contain;
    height: 100px;
    background-repeat: no-repeat;
    margin: 5px 0 0 0;
    background-position: center center;
}

@media screen and (max-width: 960px) {
    .theme__period-close {
        background-image: url(../image/award-close-59-sp.png?20220301);
        background-size: contain;
        height: 120px;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 690px) {
    .theme__period-close {
        height: 90px;
    }
}

.card__theme-icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 7px;
    left: -6px;
    z-index: 1;
}

.card__theme-icon.large {
    width: 38px;
    height: 39px;
    top: 2px;
    left: -8px;
}

.card__theme-icon img {
    width: 100%;
}

.card__theme-icon-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -16px;
    right: -18px;
    background: #000;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    border: solid 2px #fff;
    border-radius: 50%;
    z-index: 2;
}

.card__theme-icon-number.number1 {
    background: #298e02;
}

.card__theme-icon-number.number2 {
    background: #af770c;
}

.card__theme-icon-number.number3 {
    background: #a5a5a5;
}

.card__theme-icon-number.number4 {
    background: #f1bc03;
}

.card__theme-icon-number.number5 {
    top: -12px;
    right: -14px;
    background: #f1bc03;
}

.theme-content__anchor {
    width: 0;
    height: 0;
    position: relative;
    top: -20px;
}

.theme-content__section {
    margin: -60px 0 0;
}

@media screen and (max-width: 960px) {
    .theme-content__section {
        margin: -50px 0 0;
    }
}

#theme1,
#theme2 {
    margin-top: -130px;
    padding-top: 130px;
}

.theme__button-container {
    margin: 30px 0 -10px;
    font-size: 0;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .theme__button-container {
        margin: 20px 0 -10px;
    }
}

.theme__button-container .button-default {
    margin: 0 10px 10px 0;
}

.theme_entry-main {
    float: left;
    width: calc(50% - 3.5px);
    margin-top: 5px;
    margin-bottom: -8px;
}

.theme__campaign {
    float: left;
    width: calc(50% - 3.5px);
    background: #fff4f6;
    padding: 15px;
    margin-top: -23px;
    margin-bottom: -35px;
}

.theme__campaign-content {
    position: relative;
}

.theme__campaign-content:after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    clear: both;
}

.theme__campaign-image {
    width: 74px;
    display: block;
    float: left;
    margin-right: 13px;
}

.theme__campaign-texts {
    overflow: hidden;
    text-align: left;
    width: calc(100% - 194px);
    float: left;
}

.theme__campaign-title {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 7px;
    color: #ff426e;
}

.theme__campaign-outline {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.theme__campaign-outline {
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.theme__campaign-link {
    font-weight: bold;
    text-decoration: underline;
    color: #ff426e;
    font-size: 12px;
}

.theme__campaign-link:hover {
    text-decoration: none;
}

.theme__campaign-status {
    padding: 35px 10px;
    font-weight: bold;
    font-size: 12px;
    background: #ffe4e9;
    margin: -15px;
    width: 120px;
    height: 134px;
    float: right;
    line-height: 1.3;
}

.theme__campaign-countdown {
    font-size: 20px;
    display: inline-block;
    margin-top: 4px;
    margin-right: 1px;
    color: #ff426e;
}

.theme__news-list {
    overflow: hidden;
    border-left: solid 2px #f1f1f1;
    border-right: solid 2px #f1f1f1;
    border-bottom: 8px solid #f1f1f1;
    margin-bottom: 50px;
}

@media screen and (max-width: 960px) {
    .theme__news-list {
        margin-bottom: 30px;
    }
}

.theme__news-item {
    width: calc(25% - 1px);
    float: left;
}

.theme__news-item + .theme__news-item {
    border-left: solid 2px #f1f1f1;
}

.theme__news-item > a {
    display: block;
    overflow: hidden;
    padding: 12px 9px 9px;
}

.theme__news-item > a:hover {
    color: #ff426e;
}

.theme__news-item > a:hover .theme__news-image {
    opacity: 0.9;
}

.theme__news-image {
    display: block;
    width: 70px;
    float: left;
    margin-right: 8px;
}

.theme__news-title {
    font-size: 13px;
    line-height: 1.4;
    font-weight: normal;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    overflow: hidden;
    margin-top: -3px;
}

.theme__news-list-title {
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: bold;
    background: #f7f7f7;
    margin-top: 10px;
    position: relative;
}

@media screen and (max-width: 630px) {
    .theme__news-list-title {
        text-align: left;
    }
}

.theme__news-list-title-more {
    position: absolute;
    right: 0;
    display: inline-block;
    padding: 0 10px;
}

@media screen and (max-width: 630px) {
    .theme__news-list-title-more {
        position: static;
        float: right;
    }
}

.theme__border {
    border: none;
    width: 100%;
    height: 2px;
    background: #f1f1f1;
}

.theme__border + .theme-icon-description__items {
    margin: 35px auto -65px;
}

.theme__campaign-button {
    text-align: center;
    display: block;
    width: calc(100% - 20px);
    height: 34px;
    background: #ff426e;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    cursor: pointer;
    margin-top: 10px;
}

.theme__campaign-button:hover {
    background: #ff2659;
}

.theme__campaign-button button {
    display: block;
    color: #fff;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    width: 100%;
    height: 100%;
}

.theme__campaign-button.mode-disabled {
    background: #888;
}

.theme__campaign-button.mode-disabled:hover {
    background: #888;
}

.theme__campaign-button.mode-disabled button {
    color: #ccc;
    cursor: not-allowed;
}

@media screen and (max-width: 1031px) {
    .theme__campaign-title br {
        display: none;
    }
    .theme__campaign-outline br {
        display: none;
    }
}

@media screen and (max-width: 960px) {
    .theme__campaign {
        margin-top: -8px;
        margin-bottom: -8px;
        padding: 12px;
    }
    .theme_entry-main {
        margin-top: 25px;
    }
    .theme__campaign-title {
        margin-top: 3px;
        font-size: 14px;
    }
    .theme__campaign-texts {
        width: calc(100% - 182px);
    }
    .theme__campaign-status {
        margin: -12px;
        width: 100px;
        height: 128px;
    }
    .theme__campaign-status br {
        display: none;
    }
    .theme__news-image {
        width: 60px;
        margin-right: 7px;
    }
    .theme__news-item > a {
        padding: 7px;
    }
}

@media screen and (max-width: 888px) {
    .theme_entry-main {
        float: none;
        width: 100%;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .theme__campaign {
        float: none;
        width: calc(100% - 20px);
        margin: 0 auto -10px;
    }
    .theme__campaign-title br {
        display: block;
    }
    .theme__campaign-outline br {
        display: block;
    }
    .theme__campaign-status {
        padding: 45px 10px;
        width: 50%;
    }
    .theme__campaign-texts {
        width: calc(50% - 87px);
    }
    .theme__news-item {
        width: 100%;
        float: none;
    }
    .theme__news-item + .theme__news-item {
        border-left: none;
        border-top: solid 2px #f1f1f1;
    }
    .theme__news-title {
        margin-top: 0;
    }
    .theme__campaign-button {
        width: 160px;
        margin: 5px auto;
        position: relative;
        right: 15px;
    }
}

@media screen and (max-width: 794px) {
    .theme__campaign-title br {
        display: none;
    }
    .theme__campaign-outline br {
        display: none;
    }
}

@media screen and (max-width: 686px) {
    .theme__campaign {
        padding: 10px;
    }
    .theme__campaign-image {
        width: 54px;
        margin-right: 8px;
    }
    .theme__campaign-status {
        width: calc(100% + 20px);
        float: none;
        margin: 15px -10px -10px;
        height: auto;
        padding: 7px 10px 10px;
    }
    .theme__campaign-title {
        margin-top: 6px;
        margin-bottom: 5px;
    }
    .theme__campaign-texts {
        width: calc(100% - 62px);
        float: none;
    }
    .theme__campaign-countdown {
        font-size: 16px;
    }
    .theme__campaign-button {
        display: inline-block;
        margin: 3px 0 0 20px;
        width: 120px;
        height: 28px;
    }
}

@media screen and (max-width: 568px) {
    .theme__campaign {
        width: calc(100% - 10px);
        padding: 8px;
    }
    .theme__campaign-image {
        width: 60px;
    }
    .theme__campaign-texts {
        width: calc(100% - 68px);
    }
    .theme__campaign-title {
        font-size: 12px;
        margin-top: 0;
        line-height: 1.3;
    }
    .theme__campaign-outline {
        margin-bottom: 4px;
        line-height: 1.3;
    }
    .theme__campaign-status {
        width: calc(100% + 16px);
        margin: 7px -8px -8px;
    }
}

/*
*
*   issue
*
*/
.issue-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
}

@media screen and (max-width: 960px) {
    .issue-content__container {
        margin: 30px auto 0;
    }
}

.issue-image__container {
    margin: 40px 0 60px;
    position: relative;
}

@media screen and (max-width: 960px) {
    .issue-image__container {
        margin: 20px 0 40px;
    }
}

.issue-image {
    width: 530px;
    margin: 0 auto;
}
.issue-image--mt40 {
    margin: 40px auto 0px;
}

@media screen and (max-width: 960px) {
    .issue-image {
        width: 100%;
        padding: 0 40px;
    }
    .issue-image--mt40 {
        margin: 20px auto 0px;
    }
}

.issue-image img {
    width: 100%;
}

.issue-arrow-student {
    width: 13px;
    height: 36px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom:0;
}

.issue-arrow-student.prev {
    left: 0;
}

@media screen and (max-width: 960px) {
    .issue-arrow-student.prev {
        left: 10px;
    }
}

.issue-arrow-student.next {
    right: 0;
}

@media screen and (max-width: 960px) {
    .issue-arrow-student.next {
        right: 10px;
    }
}

.issue-arrow-student:hover {
    opacity: 0.8;
}

.issue-arrow {
    width: 13px;
    height: 36px;
    margin: auto;
    position: absolute;
    top: 0;
}

.issue-arrow.prev {
    left: 0;
}

@media screen and (max-width: 960px) {
    .issue-arrow.prev {
        left: 10px;
    }
}

.issue-arrow.next {
    right: 0;
}

@media screen and (max-width: 960px) {
    .issue-arrow.next {
        right: 10px;
    }
}

.issue-arrow:hover {
    opacity: 0.8;
}

.issue-arrow img {
    width: 100%;
}

.issue-content__section {
    margin: 0;
    padding: 20px 0 0;
}

@media screen and (max-width: 960px) {
    .issue-content__section {
        margin: 0;
    }
}

.issue-detail {
    display: flex;
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .issue-detail {
        margin: 20px 0 0;
    }
}

@media screen and (max-width: 630px) {
    .issue-detail {
        flex-wrap: wrap;
    }
}

.issue-detail__image-container {
    margin: 0 40px 0 0;
}

@media screen and (max-width: 960px) {
    .issue-detail__image-container {
        margin: 0 20px 0 0;
    }
}

.issue-detail__image {
    width: 135px;
    border: solid 2px #f7f7f7;
    overflow: hidden;
    position: relative;
}

@media screen and (max-width: 960px) {
    .issue-detail__image {
        width: 140px;
    }
}

.issue-detail__image:before {
    content: "";
    display: block;
    padding: 90% 0 0;
}

.issue-detail__image img {
    width: 100%;
    margin: auto;
    padding: 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.issue-detail__image-title {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    max-width: 400px;
}

@media screen and (max-width: 960px) {
    .issue-detail__image-title {
        font-size: 14px;
        max-width: 200px;
    }
}

.issue-detail__text-container {
    flex: 1;
    margin-right: 20px;
}

.issue-detail__text-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .issue-detail__text-title {
        font-size: 12px;
    }
}

.issue-detail__login-text {
    font-size: 18px;
    margin: 40px 0 30px;
}

.issue-detail__text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .issue-detail__text {
        font-size: 12px;
    }
}

.issue-detail__text:last-of-type {
    margin: 0;
}

.issue-detail__thumb {
    display: block;
    width: 300px;
    position: relative;
    top: -20px;
}

@media screen and (max-width: 960px) {
    .issue-detail__thumb {
        width: 250px;
    }
}

@media screen and (max-width: 630px) {
    .issue-detail__thumb {
        display: none;
    }
}

.issue-detail__thumb.is-sp {
    top: 0;
    margin-bottom: 10px;
}

.issue-detail__thumb.is-sp, .issue-detail__thumb.is-not-open {
    display: none;
}

@media screen and (max-width: 630px) {
    .issue-detail__thumb.is-sp, .issue-detail__thumb.is-not-open {
        display: block;
        width: 100% !important;
        text-align: center;
        padding-top: 20px;
    }
}

.issue-detail__thumb.is-not-open {
    display: block;
    background: #fff4f6;
    padding: 12px;
    width: 229px;
}

@media screen and (max-width: 630px) {
    .issue-detail__thumb.is-not-open {
        margin-top: 20px;
    }
}

.issue-detail__thumb-image {
    width: 100%;
}

@media screen and (max-width: 630px) {
    .issue-detail__thumb-image {
        max-width: 300px;
    }
}

.issue-detail__thumb-zoom {
    width: 32px;
    height: 32px;
    background: #fff;
    position: absolute;
    left: -16px;
    bottom: 8px;
    border: 3px solid #CCC;
    border-radius: 16px;
}

.issue-detail__thumb-zoom:before, .issue-detail__thumb-zoom:after {
    width: 20px;
    height: 4px;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    background: #CCC;
    border-radius: 2px;
}

.issue-detail__thumb-zoom:after {
    width: 4px;
    height: 20px;
}

.issue-detail__thumb-click {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}

.issue-detail__thumb-article {
    font-size: 14px;
    position: relative;
    line-height: 1.5;
    margin: 0;
    padding: 12px 0 0;
    background: rgba(255, 244, 246, .95);
    z-index: 1;
}

.issue-detail__thumb-article strong {
    font-size: 15px;
}

@media screen and (max-width: 630px) {
    .issue-detail__thumb-article {
        margin: -30px 0 0;
    }
    .issue-detail__thumb-article br {
        display: none;
    }
}

.issue-detail__thumb-article-btn {
    display: block;
    margin: 8px auto 0;
    width: 160px;
    text-align: center;
    border: 2px solid #ff426e;
    color: #ff426e;
    background: #fff;
    padding: 8px 10px;
    line-height: 1;
}

.issue-detail__thumb-article-btn::before {
    content: "› ";
}

.issue-detail__thumb-article-btn:hover {
    opacity: .8;
}

.issue-detail__action {
    /* margin-right: 280px; */
    text-align: center;
    /* margin-top: 20px; */
    /* margin-bottom: 50px; */
    margin: 50px auto 50px;
}

@media screen and (max-width: 630px) {
    .issue-detail__action {
        margin: 20px 0 30px;
    }
}

.issue-content__points {
    margin-bottom: 60px;
    background: #fff4f6;
    padding: 20px;
}

.issue-content__points .content-title__left {
    margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
    .issue-content__points {
        font-size: 14px;
    }
}

.issue-content__points-title {
    margin: 1.5em 0 .5em;
    color: #892944;
}

.issue-content__points-title:before {
    content: "● ";
}

.issue-content__points-text {
    line-height: 1.65;
}

.issue-detail__button-container {
    margin: 30px 0 -10px;
    font-size: 0;
    text-align: center;
}

.issue-detail__button-container .button-default {
    margin: 0 10px 10px 0;
}

.issue-application__number-container {
    display: flex;
    align-items: center;
    margin: 40px 0 0;
    padding: 10px 0;
    border: solid 6px #f7f7f7;
}

@media screen and (max-width: 960px) {
    .issue-application__number-container {
        margin: 20px 0 0;
    }
}

@media screen and (max-width: 630px) {
    .issue-application__number-container {
        display: block;
        padding: 0 10px;
    }
}

.issue-application__number-this {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    position: relative;
}

@media screen and (max-width: 630px) {
    .issue-application__number-this {
        width: 100%;
        padding: 10px 0;
        border-bottom: solid 4px #f7f7f7;
    }
}

.issue-application__number-this:after {
    content: "";
    width: 4px;
    height: 100%;
    background: #f7f7f7;
    position: absolute;
    top: 0;
    right: -4px;
}

@media screen and (max-width: 630px) {
    .issue-application__number-this:after {
        content: none;
    }
}

.issue-application__number-all {
    width: 30%;
    text-align: center;
}

@media screen and (max-width: 630px) {
    .issue-application__number-all {
        width: 100%;
        padding: 10px 0;
    }
}

.issue-application__number-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width: 960px) {
    .issue-application__number-text {
        font-size: 11px;
    }
}

.issue-application__number-text span {
    font-size: 24px;
}

@media screen and (max-width: 960px) {
    .issue-application__number-text span {
        font-size: 18px;
    }
}

.issue-application__number-icon {
    width: 35px;
    margin: 0 0 0 14px;
}

.issue-application__number-icon img {
    width: 100%;
}

.issue-application__tab-items {
    margin: 40px 0 0;
    padding: 0 10px;
    font-size: 0;
    border-bottom: solid 2px #f1f1f1;
}

@media screen and (max-width: 960px) {
    .issue-application__tab-items {
        margin: 20px 0 0;
    }
}

.issue-application__tab-item {
    display: inline-block;
    width: 200px;
    margin: 0 10px -2px 0;
    background: #333;
    color: #fff;
    text-align: center;
    border: solid 2px #333;
    cursor: pointer;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

@media screen and (max-width: 960px) {
    .issue-application__tab-item {
        width: 120px;
    }
}

.issue-application__tab-item:hover {
    background: #000;
}

.issue-application__tab-item.js-tab-current {
    background: #fff;
    color: #333;
    border-color: #f1f1f1;
    border-bottom-color: #fff;
    cursor: auto;
}

.issue-application__tab-text {
    display: block;
    padding: 10px 0;
    font-size: 13px;
    font-weight: bold;
    -webkit-transform: skewX(25deg);
    transform: skewX(25deg);
}

@media screen and (max-width: 960px) {
    .issue-application__tab-text {
        font-size: 11px;
    }
}

.js-tab-hide {
    display: none;
}

.issue-application__form-container:nth-child(n+2) {
    margin: 100px 0 0;
}

@media screen and (max-width: 960px) {
    .issue-application__form-container:nth-child(n+2) {
        margin: 50px 0 0;
    }
}

.issue-application__form-container:nth-child(n+2) .form-group:first-child {
    border-top: solid 1px #ebebeb;
}

.issue-application__button-container {
    margin: 30px 0 -10px;
    font-size: 0;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .issue-application__button-container {
        margin: 20px 0 -10px;
    }
}

.issue-application__button-container .button-default {
    margin: 0 10px 10px 0;
}

/*
*
*   team
*
*/
.team-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .team-content__container {
        margin: 30px auto 0;
    }
}

.team__text {
    margin: 40px 0 30px;
    font-size: 18px;
    line-height: 1.7;
}

.team__text .atten {
    color: #f00;
}

@media screen and (max-width: 960px) {
    .team__text {
        margin: 20px 0;
        font-size: 12px;
    }
}

.team__button-container {
    margin: 0 0 -10px;
    font-size: 0;
    text-align: center;
}

.team__button-container .button-default {
    margin: 0 10px 10px 0;
}

.team__note {
    margin-top:25px;
    padding-left: 1em;
    text-indent: -1em;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.7;
    color: #892944;
}

@media screen and (max-width: 960px) {
    .team__note {
        font-size: 12px;
    }
}

.team__button-container .team__note {
    margin: 20px 0 0;
}

@media screen and (max-width: 960px) {
    .team__button-container .team__note {
        margin: 10px 0 0;
    }
}

.team__form-current-items {
    width: 368px;
    display: flex;
    margin: 30px auto 0;
    position: relative;
    z-index: -1;
}

@media screen and (max-width: 960px) {
    .team__form-current-items {
        justify-content: space-between;
        margin: 20px auto 0;
    }
}

@media screen and (max-width: 630px) {
    .team__form-current-items {
        width: 100%;
    }
}

.team__form-current-items:after {
    content: "";
    width: 100%;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #ff426e;
    z-index: 0;
}

.team__form-current-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 100px 0 0;
    background: #fff;
    font-size: 14px;
    font-weight: bold;
    color: #ff426e;
    border: solid 3px #ff426e;
    border-radius: 50%;
    z-index: 1;
}

@media screen and (max-width: 960px) {
    .team__form-current-item {
        margin: 0;
        font-size: 12px;
    }
}

.team__form-current-item:last-child {
    margin: 0;
}

.team__form-current-item.current {
    background: #ff426e;
    color: #fff;
}

.team__form-section {
    margin: 40px 0 0;
}

@media screen and (max-width: 960px) {
    .team__form-section {
        margin: 20px 0 0;
    }
}

.team__form-section:nth-child(2n) {
    margin: 60px 0 0;
}

@media screen and (max-width: 960px) {
    .team__form-section:nth-child(2n) {
        margin: 40px 0 0;
    }
}

.team__form-section .form-group {
    justify-content: center;
    align-items: center;
}

.team__form-section .form-group:first-of-type {
    border-top: solid 1px #ebebeb;
}

.team__form-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
}

@media screen and (max-width: 960px) {
    .team__form-title {
        font-size: 12px;
    }
}

.form-group + .team__button-container {
    margin: 30px 0 0;
}

@media screen and (max-width: 960px) {
    .form-group + .team__button-container {
        margin: 20px 0 0;
    }
}

.team__form-link {
    color: #00f;
    text-decoration: underline;
}

/*
*
*   news
*
*/
.news-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.news__article {
    margin: 40px 0 0;
    line-height:28px;
}

.news__article p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 1.5em;
}

@media screen and (max-width: 960px) {
    .news__article p {
        font-size: 14px;
    }
}

.news__article p.large {
    margin: 0 0 1em;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .news__article p.large {
        font-size: 22px;
    }
}

.news__article img {
    display: block;
    max-width: 800px;
    margin: 0 auto 1.5em;
}

@media screen and (max-width: 630px) {
    .news__article img {
        width: 100%;
    }
}

/*
*
*   tutorial
*
*/
.tutorial__h {
    background: #ff426e;
    color: #fff;
    max-width: 400px;
    margin: 0 auto;
    font-weight: normal;
    padding: 15px;
    font-size: 18px;
}

.tutorial__list-item {
    text-align: center;
    padding: 0 20px;
}

@media screen and (max-width: 630px) {
    .tutorial__list-item {
        padding: 0 10px;
    }
}

.tutorial__subh,
.tutorial__desc,
.tutorial__pencils {
    max-width: 400px;
    box-sizing: border-box;
    padding: 0 30px 0 60px;
    margin: 20px auto;
    letter-spacing: .1em;
}

@media screen and (max-width: 630px) {
    .tutorial__subh,
    .tutorial__desc,
    .tutorial__pencils {
        padding: 0 0 0 5px;
        margin: 15px auto;
    }
}

.tutorial__subh {
    color: #ff426e;
    font-size: 18px;
    text-align: left;
}

.tutorial__desc {
    text-align: left;
    font-size: 14px;
    line-height: 1.7;
    font-weight: bold;
    margin-bottom: 0;
}

.tutorial__list-item img {
    max-width: 400px;
    margin-top: 10px;
}

.tutorial__list-item img.is-thumb {
    box-shadow: 0 0 20px 0 #b38e96;
}

@media screen and (max-width: 630px) {
    .tutorial__list-item img {
        width: 96%;
    }
}

.tutorial__pencil {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    line-height: 1.7;
    padding: 10px 0 10px 60px;
    background-repeat: no-repeat;
    background-size: 32px auto;
    background-position: left center;
}

.tutorial__pencil.is-green {
    background-image: url(../image/theme-icon1.png);
}

.tutorial__pencil.is-copper {
    background-image: url(../image/theme-icon2.png);
}

.tutorial__pencil.is-silver {
    background-image: url(../image/theme-icon3.png);
}

.tutorial__pencil.is-gold {
    background-image: url(../image/theme-icon4.png);
}

.tutorial__pencil.is-shine-gold {
    background-image: url(../image/theme-icon5.png);
    background-size: 40px auto;
}

@media screen and (max-width: 630px) {
    .tutorial__pencil {
        font-size: 12px;
        padding: 7px 0 7px 34px;
        background-size: 28px auto;
        white-space: nowrap;
    }
    .tutorial__pencil.is-shine-gold {
        background-size: 32px auto;
    }
}

/*
*   temporary-page
*/
.temporary-page-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.temporary-page-content-article {
    margin: 40px 0 0;
}

.temporary-page-content-article p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 1.5em;
}

.temporary-page-content__container .temporary-page-content-title__center {
    position: relative;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .temporary-page-content-article p {
        font-size: 14px;
    }
    .temporary-page-content__container .temporary-page-content-title__center {
        font-size: 20px;
    }
}

/*
*
*   footer
*
*/
.footer {
    margin: 160px 0 0;
    padding: 40px 0 60px;
    background: #f5f5f5;
}

@media screen and (max-width: 960px) {
    .footer {
        margin: 100px 0 0;
        padding: 30px 0;
    }
}

.footer__container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 960px) {
    .footer__container {
        max-width: auto;
    }
}

.footer__link:hover {
    color: #ff426e;
}

.footer__sns-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 0;
}

@media screen and (max-width: 960px) {
    .footer__sns-container {
        margin: 10px 0 0;
    }
}

.footer__sns {
    margin: 0 10px 0 0;
}

.footer__sns:last-child {
    margin: 0;
}

.footer__sns-image {
    width: 30px;
    height: auto;
}

.footer__sns-image:hover {
    opacity: 0.8;
}

.footer__copyright {
    margin: 60px 0 0;
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .footer__copyright {
        font-size: 12px;
    }
}

@media screen and (max-width: 960px) {
    .footer__container .general__link-item:nth-child(3):after {
        content: none;
    }
}

/* Slider */
.slick-slider {
    position: relative;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-track {
    display: flex;
}

/* Arrows */
.slick-next,
.slick-prev {
    position: absolute;
    top: 85px;
    display: block;
    width: 13px;
    height: 34px;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

@media screen and (max-width: 630px) {
    .slick-next,
    .slick-prev {
        width: 9px;
        height: 22px;
    }
}

.tutorial__slider .slick-next,
.tutorial__slider .slick-prev {
    margin: auto;
    top: 0;
    bottom: 0;
}

.slick-prev {
    background: url("/tenants/senden/assets/image/arrow-prev.png") no-repeat;
    background-size: 13px 34px;
    left: -20px;
}

@media screen and (max-width: 960px) {
    .slick-prev {
        background: url("/tenants/senden/assets/image/arrow-prev-sp.png") no-repeat;
        background-size: 9px 22px;
        left: -18px;
    }
    .tutorial__slider .slick-prev {
        left: -10px;
    }
}

.slick-next {
    background: url("/tenants/senden/assets/image/arrow-next.png") no-repeat;
    background-size: 13px 34px;
    right: -20px;
}

@media screen and (max-width: 960px) {
    .slick-next {
        background: url("/tenants/senden/assets/image/arrow-next-sp.png") no-repeat;
        background-size: 9px 22px;
        right: -18px;
    }
    .tutorial__slider .slick-next {
        right: -10px;
    }
}

.tutorial__slider .slick-disabled {
    display: none !important;
}

/* Recommend Books */
.recommend-books__content {
    padding: 3px;
    border: solid 1px #ebebeb;
    background-image: linear-gradient(45deg, #ffa752, #ff3460, #ffa752);
    margin-top: 60px;
    border-radius: 10px;
}

.recommend-books__content-inner {
    padding: 22px 20px;
    background: #fff;
    background: #fff4f6;
    border-radius: 0 0 7px 7px;
}

.recommend-books__title {
    text-align: center;
    margin: 8px auto;
    position: relative;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
}

.recommend-books__items {
    text-align: center;
    margin: auto auto -8px;
}

.recommend-book__item:not(:first-child) {
    margin-left: 20px;
}

.recommend-book__item {
    display: inline-block;
    width: calc(33.33333% - 20px);
}

.recommend-book__item > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.recommend-book__thumbnail {
    float: left;
    margin-right: 10px;
    width: 70px;
}

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

.recommend-book__item > a:hover .recommend-book__thumbnail {
    opacity: 0.85;
}

.recommend-book__title {
    font-size: 15px;
    line-height: 1.3;
}

.recommend-book__item > a:hover .recommend-book__title {
    color: #ff426e;
}

.recommend-book__description {
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.4;
}

.recommend-book__price {
    color: #c00;
    position: absolute;
    height: 16px;
    bottom: 0;
    left: 85px;
    font-weight: bold;
}

.recommend-book__price span {
    color: #333;
    font-size: 10px;
    font-weight: normal;
}

@media screen and (max-width: 944px) {
    .recommend-book__item {
        width: calc(33.33333% - 16.66667px);
    }
}

@media screen and (max-width: 860px) {
    .recommend-book__title {
        font-size: 14px;
        line-height: 1.2;
    }
    .recommend-book__description {
        line-height: 1.3;
    }
}

@media screen and (max-width: 780px) {
    .recommend-book__item {
        width: 100%;
    }
    .recommend-book__thumbnail {
        width: 60px;
    }
    .recommend-book__item:not(:first-child) {
        margin-left: 0;
        margin-top: 20px;
    }
    .recommend-book__price {
        left: 75px;
    }
}

.modal__recommend-books__content {
    border-top: 2px solid #ff426e;
    padding-top: 2px;
    width: calc(100% + 50px);
    margin: 60px -25px -38px;
    text-align: center;
}

.modal__recommend-books__content-inner {
    padding-top: 20px;
}

.modal__recommend-books__title {
    text-align: center;
    display: inline-block;
    padding: 8px;
    position: relative;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 7px 7px 0 0;
    margin-bottom: 17px;
}

.modal__recommend-books__items {
    text-align: center;
    margin: auto auto 20px;
}

.modal__recommend-book__item:not(:first-child) {
    margin-left: 8px;
}

.modal__recommend-book__item {
    display: inline-block;
    width: calc(33.33333% - 12px);
}

.modal__recommend-book__item > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.modal__recommend-book__thumbnail {
    float: left;
    margin-right: 10px;
    width: 60px;
}

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

.modal__recommend-book__item > a:hover .modal__recommend-book__thumbnail {
    opacity: 0.85;
}

.modal__recommend-book__title {
    font-size: 13px;
    line-height: 1.2;
}

.modal__recommend-book__item > a:hover .modal__recommend-book__title {
    color: #ff426e;
}

.modal__recommend-book__description {
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.3;
    color: #666;
}

.modal__recommend-book__price {
    color: #c00;
    position: absolute;
    height: 15px;
    bottom: 0;
    left: 70px;
    font-weight: bold;
    font-size: 13px;
}

.modal__recommend-book__price span {
    color: #333;
    font-size: 10px;
    font-weight: normal;
}

@media screen and (max-width: 960px) {
    .modal__recommend-books__content {
        margin: 25px 0 -5px;
        width: 100%;
    }
    .modal__recommend-book__item {
        width: 100%;
    }
    .modal__recommend-book__thumbnail {
        width: 60px;
    }
    .modal__recommend-book__item:not(:first-child) {
        margin-left: 0;
        margin-top: 20px;
    }
    .modal__recommend-book__price {
        left: 75px;
    }
}

.modal-content.adjust-height {
    top: 31px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    height: calc(100% - 60px);
}

.adjust-height .modal__close {
    z-index: 1;
}

.adjust-height .modal-content-inner {
    height: calc(100% + 60px);
    width: calc(100% + 40px);
    margin: -30px -20px;
    overflow-y: scroll;
    padding: 30px 20px;
}

/*
.expand-issue-image {
  display: block;
}

.expand-issue-image-sm {
  display: none;
}

.expand-issue-image:hover {
  opacity: 0.8;
}
@media screen and (max-width:876px) {
  .expand-issue-image {
    display: none;
  }

  .expand-issue-image-sm {
    display: block;
  }
}
*/
.univ-content__container {
    max-width: 840px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.univ-team__list {
    border-bottom: 4px solid #f7f7f7;
}

.univ-team__item {
    position: relative;
    padding-top: 3px;
    margin-bottom: 20px;
}

.univ-team__item:before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    background: #ff426e;
}

.univ-team__item:after {
    content: "";
    width: 0;
    height: 0;
    clear: both;
}

.univ-team__meta {
    background: #fafafa;
    padding: 15px 120px 15px 20px;
    position: relative;
    border-bottom: 4px solid #f7f7f7;
    margin-bottom: 20px;
}

.univ-team__name {
    font-size: 16px;
}

.univ-team__member {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 12px;
}

.univ-team__member-number {
    display: inline-block;
    margin-right: 2px;
    font-weight: bold;
    font-size: 18px;
}

.univ-team__image-bs {
    float: left;
    margin: 0 20px 0 18px;
    width: 250px;
    height: 188px;
    padding: 4px 5px;
    border: 4px solid #f7f7f7;
    text-align: center;
    position: relative;
}

.univ-team__image {
    width: auto;
    height: auto;
    max-width: 234px;
    max-height: 170px;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.univ-team__text-bs {
    float: left;
    position: relative;
    height: 200px;
    overflow: hidden;
    width: 60%;
    margin-right: 20px;
}

.univ-team__has-result .univ-team__text-bs {
    width: calc(100% - 446px);
}

.univ-team__text {
    height: 100%;
    word-break: break-word;
}

.univ-team__text p {
    font-size: 14px;
    line-height: 1.7;
}

.univ-team__progress-list {
    float: left;
    width: 138px;
    padding-right: 18px;
}

.univ-team__content {
    position: relative;
}

.univ-team__content:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    clear: both;
}

.univ-team__progress-subtit {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 8px;
    margin-top: 0;
    padding-bottom: 4px;
    border-bottom: 4px solid #f7f7f7;
    position: relative;
}

.univ-team__progress-subtit:before {
    content: "";
    display: block;
    width: 25px;
    height: 4px;
    margin: 10px 0 0;
    background: url("../image/content-title-border.png") no-repeat;
    background-size: 25px 4px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.univ-team__progress-number {
    font-size: 26px;
    font-weight: bold;
}

.univ-team__progress-unit {
    font-size: 12px;
    font-weight: normal;
    display: inline-block;
    margin-left: 3px;
}

.univ-team__progress-item {
    padding: 4px 10px 10px;
    border: 4px solid #f7f7f7;
    text-align: center;
}

.univ-team__progress-item + .univ-team__progress-item {
    margin-top: 18px;
}

.univ-progress__list {
    overflow: hidden;
    text-align: center;
    margin: 30px auto 50px;
}

.univ-progress__item {
    width: 250px;
    padding: 15px 20px 20px;
    display: inline-block;
    box-sizing: border-box;
    border: 4px solid #f7f7f7;
}

.univ-progress__item + .univ-progress__item {
    margin-left: 20px;
}

.univ-progress__subtit {
    font-size: 14px;
    text-align: center;
    padding-bottom: 12px;
    margin-bottom: 17px;
    border-bottom: 4px solid #f7f7f7;
    position: relative;
}

.univ-progress__subtit:before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 10px 0 0;
    background: url("../image/content-title-border.png") no-repeat;
    background-size: 40px 4px;
    position: absolute;
    bottom: -4px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.univ-progress__number {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
}

.univ-progress__unit {
    font-size: 14px;
    font-weight: normal;
    margin-left: 3px;
}

.univ__lead {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 50px;
    padding: 0 1em;
}

@media screen and (max-width: 960px) {
    .univ-content__container {
        margin: 30px auto 0;
    }
    .univ-team__image-bs {
        width: 230px;
        height: 173px;
    }
    .univ-team__image {
        max-width: 214px;
        max-height: 155px;
    }
    .univ-team__text-bs {
        height: 173px;
        width: 60%;
    }
    .univ-team__has-result .univ-team__text-bs {
        width: calc(100% - 426px);
    }
    .univ-team__progress-item {
        padding: 3px 10px 7px;
    }
    .univ-team__progress-subtit {
        padding-bottom: 3px;
    }
    .univ-team__progress-number {
        font-size: 25px;
    }
}

@media screen and (max-width: 860px) {
    .univ-team__image-bs {
        width: 200px;
        height: 150px;
    }
    .univ-team__image {
        max-width: 184px;
        max-height: 132px;
    }
    .univ-team__text-bs {
        height: 160px;
        width: 55%;
    }
    .univ-team__has-result .univ-team__text-bs{
        height: 160px;
        width: calc(100% - 396px);
    }
    .univ-team__progress-item {
        padding: 2px 10px 6px 8px;
        margin-bottom: 6px;
    }
    .univ-team__progress-subtit {
        padding-bottom: 2px;
        font-size: 11px;
    }
    .univ-team__progress-number {
        font-size: 20px;
    }
    .univ-team__progress-item + .univ-team__progress-item {
        margin-top: 14px;
    }
    .univ-progress__item {
        width: calc(33.33333% - 13.33333px);
        display: block;
        float: left;
    }
}

@media screen and (max-width: 640px) {
    .univ-team__image-bs {
        width: 100%;
        height: auto;
        padding-top: 75%;
        float: none;
        margin: 0 0 20px;
    }
    .univ-team__image {
        max-width: calc(100% - 16px);
        max-height: calc(100% - 18px);
    }
    .univ-team__text-bs {
        float: none;
        width: calc(100%);
        margin-right: 0;
        height: auto;
        margin-bottom: 20px;
    }
    .univ-team__has-result .univ-team__text-bs {
        float: none;
        width: 100%;
        margin-right: 0;
        height: auto;
        margin-bottom: 20px;
    }
    .univ-team__progress-list {
        float: none;
    }
    .univ-team__progress-list {
        padding-right: 0;
        width: 100%;
    }
    .univ-team__progress-item {
        width: calc(50% - 10px);
        float: left;
        padding: 4px 10px 10px;
    }
    .univ-team__progress-subtit {
        padding-bottom: 4px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    .univ-team__progress-item + .univ-team__progress-item {
        margin-left: 20px;
        margin-top: 0;
    }
    .univ-progress__item {
        padding: 15px 10px;
    }
    .univ-progress__subtit {
        font-size: 12px;
    }
    .univ-progress__number {
        font-size: 30px;
    }
    .univ-progress__unit {
        font-size: 12px;
    }
}

@media screen and (max-width: 498px) {
    .univ-progress__subtit {
        line-height: 1.4;
        height: calc(2em + 16px);
    }
    .univ-progress__number {
        font-size: 18px;
    }
    .univ-progress__item {
        padding: 12px 2px;
        width: calc(33.33333% - 10px);
    }
    .univ-progress__item + .univ-progress__item {
        margin-left: 15px;
    }
}

.conutdown__clock {
    text-align: center;
    padding: 12px 0 10px;
    background: #ffec92;
    font-size: 13px;
    font-weight: bold;
    border-bottom: 1px solid #fbd3e6;
}

.countdown__hour,
.countdown__minite,
.countdown__second {
    font-size: 22px;
    display: inline-block;
    margin-right: 2px;
    color: #ff426e;
}

.survey__container {
    max-width: 960px;
    margin: 40px auto;
}

.survey__lead, .survey__submit {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.survey__lead-text {
    margin-bottom: 1em;
}

@media screen and (max-width: 630px) {
    .survey__lead-text {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
    }
}

.survey__choices {
    border: none;
}
.survey__choices:disabled {
    opacity: .4;
}

.survey__choice-items {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 0 30px -16px;
}

@media screen and (max-width: 960px) {
    .survey__choice-items {
        margin: 0 8px 30px -8px;
    }
}

@media screen and (max-width: 630px) {
    .survey__choice-items {
        margin: 0 5px 20px -5px;
    }
}

.survey__choice-item {
    width: 33.333333%;
    margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
    .survey__choice-item {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .survey__choice-item {
        width: 100%;
    }
}

.survey__choice-chk {
    visibility: hidden;
    position: absolute;
}

.survey__choice-label {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 0 10px 16px;
    padding: 0;
    position: relative;
    border: solid 2px #f7f7f7;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, .04);
    background: #fff;
    transition: border .1s, box-shadow .1s, opacity .4s;
    cursor: pointer;
}

.survey__choice-label:hover {
    opacity: .85;
}

.survey__choice-chk:disabled:not(:checked) + .survey__choice-label {
    opacity: .4;
    cursor: default;
}

.survey__choices:disabled + .survey__choice-label {
    cursor: default;
}

.survey__choice-chk:checked + .survey__choice-label {
    border: solid 2px #ff426e;
    box-shadow: 0 6px 0 0 #ff426e;
}

.survey__choice-chk:checked:disabled + .survey__choice-label {
    cursor: default;
}

@media screen and (max-width: 630px) {
    .survey__choice-label {
        margin: 0 0 16px 10px;
    }
}

.survey__choice-img {
    width: 100%;
    padding-top: 85%;
    position: relative;
    @include screen_sm{
        padding-top:55%;
    }
}

.survey__choice-img-img {
    width: 90%;
    margin: auto;
    padding: 0 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    @include screen_sm{
        width:65%;
    }
}

.survey__choice-num {
    display: block;
    text-align: center;
    padding: 1em 0 0;
    margin-bottom: 1em;
    font-size: 13px;
}

.survey__choice-block {
    display: table;
    height: 6em;
    margin-bottom: 1em;
    width: 100%;
}

.survey__choice-work {
    display: table-cell;
    padding: 0 10px;
    line-height: 1.6;
    font-size: 1.2em;
    vertical-align: middle;
}

@media screen and (max-width: 500px) {
    .survey__choice-work {
        min-height: unset;
    }
}

.survey__choice-work-img-link {
    display: block;
    max-width: 200px;
    margin: 0 auto 10px;
    border: 1px solid #000;
    position: relative;
}

.survey__choice-work-img-wrap {
    display: block;
    max-width: 200px;
    max-height: 120px;
    overflow: hidden;
}

.survey__choice-work-img {
    width: 100%;
}

.survey__choice-work-zoom {
    width: 32px;
    height: 32px;
    background: #fff;
    position: absolute;
    right: -12px;
    bottom: -8px;
    border: 3px solid #CCC;
    border-radius: 16px;
}

.survey__choice-work-zoom:before, .survey__choice-work-zoom:after {
    width: 20px;
    height: 4px;
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    background: #CCC;
    border-radius: 2px;
}

.survey__choice-work-zoom:after {
    width: 4px;
    height: 20px;
}

.survey__choice-theme {
    padding: 0 10px 10px;
}

.survey__choice-company {
    font-size: 12px;
    display: block;
    line-height: 1.4;
}

.survey__choice-company:after {
    content: "：";
    display: inline-block;
    padding: 0 .2em;
}

.survey__choice-desc {
    font-size: 12px;
    line-height: 1.4;
}

.survey__choice-creator {
    display: block;
    font-size: 12px;
}

.survey__choice-creator strong {
    display: inline-block;
    margin-right: .1em;
}

.survey__choice-creator:before {
    content: "(";
    display: inline-block;
    padding: 0 .2em;
}

.survey__choice-creator:after {
    content: ")";
    display: inline-block;
    padding: 0 .2em;
}

@-webkit-keyframes toast_anim {
    0% {
        margin-top: -5px;
        margin-bottom: -5px;
        max-height: 200px;
    }
    10% {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    80% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        max-height: 200px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    100% {
        max-height: 0;
        opacity: 0;
    }
}

@keyframes toast_anim {
    0% {
        margin-top: -5px;
        margin-bottom: -5px;
        max-height: 200px;
    }
    10% {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    80% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        max-height: 200px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    100% {
        max-height: 0;
        opacity: 0;
    }
}

.toast {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 9999;
    text-align: center;
    display: none;
}

.toast.is-bottom {
    top: auto;
    bottom: 0;
}

.toast.is-shown {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-animation: toast_anim 8s;
    animation: toast_anim 8s;
}

.toast__content {
    background: #ff426e;
    color: #fff;
    display: inline-block;
    max-width: 100%;
    min-width: 300px;
    padding: .8em 40px .8em 2em;
    position: relative;
}

.toast__close {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    font-size: 20px;
}

.toast__chkbox {
    display: none;
}

.toast__chkbox:checked + .toast__content {
    display: none;
}

.banner__container {
    background: #fff4f6;
    margin: 40px auto 0;
    max-width: 710px;
    padding: 20px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 440px) {
    .banner__container {
        padding: 10px;
    }
}

.banner__image {
    display: block;
}

.banner__image-image {
    width: 180px;
}

.banner__container-full {
    margin: 40px auto 0;
    width: calc(100% - 40px);
    max-width: 710px;
    display: flex;
    align-items: center;
}

.banner__container-full img {
    max-width: 100%;
}

@media screen and (max-width: 630px) {
    .banner__container-full {
        margin: 20px auto 0;
    }
    .banner__image-image {
        width: 120px;
    }
}

@media screen and (max-width: 630px) {
    .banner__movie,
    .banner__movie > iframe {
        width: 120px;
    }
}

.banner__desc {
    padding: 0 0 0 20px;
    line-height: 1.6;
}

@media screen and (max-width: 630px) {
    .banner__desc {
        font-size: 13px;
    }
}

@media screen and (max-width: 440px) {
    .banner__desc {
        font-size: 10px;
        padding-left: 15px;
    }
}

.banner__action {
    margin: 0;
}

.banner__action-btn {
    display: inline-block;
    white-space: nowrap;
    border-width: 1px;
    border-style: solid;
    border-color: #d8a421;
    background: linear-gradient(to bottom, #faefbd, #fecf57);
    padding: 8px 12px;
    margin-top: .8em;
}

.challenge {
    position: relative;
}

.theme__header + .challenge {
    margin-top: 38px;
}

.challenge__limit {
    background: #fff4f6;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    padding: 10px;
    color: #892944;
    line-height: 1.4;
}

@media screen and (max-width: 680px) {
    .challenge__limit {
        font-size: 12px;
    }
}

.challenge__limit-num {
    font-size: 1.44em;
    display: inline-block;
    white-space: nowrap;
}

.challenge__h {
    font-size: 15px;
    padding: 1em 0 .5em;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 680px) {
    .challenge__h {
        font-size: 13px;
        padding-top: 0;
    }
}

.challenge__h-text {
    font-size: 28px;
    margin-left: .1em;
    display: inline-block;
}

@media screen and (max-width: 680px) {
    .challenge__h-text {
        font-size: 20px;
    }
}

.challenge__h-link {
    color: #ff426e;
    text-decoration: underline;
    position: absolute;
    right: 0;
    bottom: 10px;
}

@media screen and (max-width: 680px) {
    .challenge__h-link {
        position: static;
        display: block;
        padding: 12px 0 0;
    }
}

.challenge__items {
    margin-left: -5px;
    margin-right: -5px;
}

.challenge__items:after {
    display: table;
    content: "";
    clear: both;
}

@media screen and (max-width: 960px) {
    .challenge__items {
        margin-left: 0;
        margin-right: 0;
    }
}

.challenge__item {
    background: #f7f7f7;
    border: 5px solid #fff;
    width: 50%;
    min-height: 120px;
    box-sizing: border-box;
    float: left;
    position: relative;
    box-shadow: inset 1px 1px 0 #eee, inset -1px -1px 0 #eee;
}

.challenge__item:last-child {
    float: right;
}

@media screen and (max-width: 960px) {
    .challenge__item {
        width: auto;
        border-left: 0;
        border-right: 0;
        float: none !important;
    }
}

@media screen and (max-width: 680px) {
    .challenge__item {
        min-height: 90px;
    }
}

.challenge__item.mode-completed {
    overflow: hidden;
}

.challenge__item.mode-completed:before {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #eee;
    box-sizing: border-box;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.challenge__item.mode-completed:after {
    font-family: 'Arvo', sans-serif;
    font-style: italic;
    font-weight: bold;
    color: #d73e48;
    font-size: 32px;
    border: 5px solid #d73e48;
    padding: 7px;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    content: "Completed!!";
    display: block;
    -webkit-transform: rotate(-10deg) translate(0, -30%);
    transform: rotate(-10deg) translate(0, -30%);
}

@media screen and (max-width: 440px) {
    .challenge__item.mode-completed:after {
        font-size: 24px;
        border-width: 4px;
    }
}

.challenge__item-desc {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    position: absolute;
    width: 100%;
    padding-right: 12px;
    line-height: 1.5;
    box-sizing: border-box;
    border-left: 120px solid transparent;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 680px) {
    .challenge__item-desc {
        font-size: 16px;
        border-left-width: 85px;
    }
}

.challenge__item-status {
    width: 95px;
    height: 95px;
    position: absolute;
    left: 8px;
    top: 8px;
}

@media screen and (max-width: 680px) {
    .challenge__item-status {
        width: 65px;
        height: 65px;
    }
}

.challenge__item-status-complete {
    color: #000;
    font-size: 30px;
    position: absolute;
    text-align: center;
    width: 100%;
    left: 0;
    top: 26px;
    padding-bottom: 5px;
}

@media screen and (max-width: 680px) {
    .challenge__item-status-complete {
        font-size: 20px;
        top: 17px;
    }
}

.challenge__item-status-complete:after {
    content: '件';
    font-size: 50%;
}

.challenge__item-status-complete:before {
    content: "";
    display: block;
    background: #ccc;
    width: 50px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -25px;
}

.challenge__item-status-all {
    color: #000;
    font-size: 16px;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 64px;
}

@media screen and (max-width: 680px) {
    .challenge__item-status-all {
        font-size: 12px;
        top: 42px;
    }
}

.challenge__action {
    margin-top: 14px;
    text-align: center;
}
.challenge__action .button-default {
    width: 210px;
}

@media screen and (max-width: 960px) {
    .challenge__action .button-default {
        width: 175px;
    }
}

.error-body {
    background-image: radial-gradient(#fff 50%, #eee 100%); }

.error-base {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 806px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
    background: url(/img/bg_error.png) 0 0 no-repeat;
    background-size: contain;
    margin-left: 62px; }

.error-content {
    margin: 365px 175px 0 45px;
    text-align: center;
    color: #555; }

.error-title {
    font-size: 24px;
    margin-bottom: 20px; }
.error-title br {
    display: none; }

.error-text {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 30px; }
.error-text li {
    text-align: left;
    padding-left: 1.2em;
    position: relative;
    font-size: 15px; }
.error-text li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    display: block;
    position: absolute;
    top: 10px;
    left: 5px; }
.error-text li + li {
    margin-top: 10px; }

.error-logo {
    font-size: 15px; }
.error-logo img {
    width: 140px;
    opacity: .8;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: inline-block;
    vertical-align: bottom; }
.error-logo:hover img {
    opacity: 1; }

@media screen and (max-width: 500px) {
    .error-base {
        width: 100%;
        height: 544.489px;
        margin-left: 0;
        background: url(/img/bg_error_sm.png) center 0 no-repeat;
        background-size: cover;
        overflow-x: hidden; }
    .error-content {
        margin: 222px auto 0 auto;
        width: 290px;
        padding: 0 10px; }
    .error-title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.2; }
    .error-title br {
        display: block; }
    .error-text {
        padding: 0;
        margin-bottom: 15px; }
    .error-text li {
        font-size: 12px; }
    .error-text li:before {
        top: 7px; }
    .error-text li + li {
        margin-top: 5px; }
    .error-logo img {
        width: 100px; } }

.alert-container {
    position: relative;
    width: 100%;
    padding: .75rem 4rem .75rem 1.25rem;
}
.alert-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
.alert-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    cursor: pointer;

    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.alert-info {
    background-color: #d1ecf1;
}

.alert-success {
    background-color: #d4edda;
}

.alert-warning {
    background-color: #fef3cd;
}

.alert-danger {
    background-color: #f8d7da;
}

.u-text-center {
    text-align: center;
    margin-top: 20px;
}
