/* style.css */

/* 無効な入力時のスタイル */
input:user-invalid {
    border-color: #ff0000;
    background-color: #ffebee;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    /* font-family: "Helvetica", "游ゴシック", "ヒラギノ角ゴ ProN", "メイリオ", "MS Pゴシック", sans-serif; */
}
body.no-scroll {
    overflow: hidden;
}

/* ローディング要素 */
#loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
#loading.active {
    display: flex;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}


/* header nav */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem;
    border-bottom: 1px solid #e2e2e2;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    display: flex;
    align-items: center;
    will-change: transform;
}
#header .header-section {
    display: flex;
    align-items: center;
}
#header .header-section:first-child {
    width: calc(100% / 5);
    max-width: 85px;
}
#header .header-section:last-child {
    width: calc(100% / 3);
    max-width: 85px;
}
#header.nav-active {
    transform: translateX(300px);
}
#header .nav-handle {
    width: 40px;
    height: 40px;
    background-color: #eeeeee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
#header .nav-handle .nav-handle-icon {
    width: 60%;
    margin: auto;
    display: block;
}
#header .nav-handle .nav-handle-icon img {
    width: 100px;
}
#header .nav-handle .nav-handle-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #777777;
    border-radius: 2px;
    transition: 0.3s;
    border-radius: 10px;
}
#header .nav-handle.active .nav-handle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
#header .nav-handle.active .nav-handle-icon span:nth-child(2) {
    display: none;
}
#header .nav-handle.active .nav-handle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
#header .nav-handle .nav-handle-icon span:nth-child(1) {
    margin-bottom: 6px;
}
#header .nav-handle .nav-handle-icon span:nth-child(3) {
    margin-top: 6px;
}
#header .nav-logo {
    margin: auto;
    height: 46px;
}
#header .nav-logo a {
    display: block;
    height: 100%;
    margin: auto;
}
#header .nav-logo img {
    /* height: 100%; */
    width: auto;
    object-fit: contain;
    object-position: center;
    width: 140px;
}
#header .nav-notification {
    width: 26px;
    height: 26px;
    margin-left: auto;
    margin-right: 0.8rem;
    cursor: pointer;
    position: relative;
}
#header .nav-notification .notification-flag {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 100%;
    border: 2px solid #ffffff;
    display: none;
}
#header .nav-notification.active .notification-flag {
    display: block;
}
#header .nav-notification img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
#header .nav-user {
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 100%;
    border: 1px solid #d8d8d8;
	overflow: hidden;
}
#header .nav-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* ナビゲーションメニュー */
#nav-menu {
    position: fixed;
    top: 0;
    left: -100vw;
    bottom: 0;
    width: 100%;
    z-index: 200;
    transition: 0.3s;
    will-change: transform;
}
#nav-menu.nav-active {
    left: 0;
}
#nav-menu .nav-menu-bg {
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}
#nav-menu .nav-menu-wrap {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 300px;
    height: 100%;
    overflow-y: auto;
    z-index: 1;
    padding: 1rem;
}
#nav-menu .nav-menu-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#nav-menu .nav-menu-wrap ul li a {
    display: flex;
    align-items: center;
    color: #333333;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 6px;
    transition: 0.3s;
}
#nav-menu .nav-menu-wrap ul li a:hover {
    background-color: #f7f0e7;
}
#nav-menu .nav-menu-wrap ul li a.active {
    background-color: #f7f0e7;
}
#nav-menu .nav-menu-wrap ul li a .nav-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin-right: 0.5rem;
}
#nav-menu .nav-menu-wrap ul li a .nav-arrow {
    margin-left: auto;
    width: 10px;
    height: 10px;
    display: block;
    object-fit: contain;
    object-position: center;
}
#nav-menu .nav-close-wrap {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 98%;
    max-width: 350px;
}
#nav-menu .nav-close-wrap .nav-close-btn {
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    background-color: #FFFFFF;
    border-radius: 6px;
    z-index: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 0.5rem;
}
#nav-menu .nav-close-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


/* global-menu */
#global-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    background-color: #ffffff;
    z-index: 100;
    transition: 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}
#global-menu.nav-active {
    transform: translateX(300px);
}
#global-menu a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    color: #333333;
    text-decoration: none;
    transition: 0.3s;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    text-align: center;
    font-size: 0.6em;
    font-weight: bold;
    position: relative;
}
#global-menu a:last-child {
    border-right: none;
}
#global-menu a img {
    display: block;
    margin: auto;
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 0.1rem;
}
#global-menu a.active {
    background-color: #f7f0e7;
}
#global-menu a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.5rem;
    margin: auto;
    display: block;
    width: 50%;
    max-width: 50px;
    height: 4px;
    background-color: #000000;
    border-radius: 4px;
}


/* 共通パーツ */
/* ページのメインコンテンツ */
.bold {
    font-weight: bold;
}
.pink {
    color: #BF2B9E;
}
.red {
    color: #ff0000;
}
.box-slate {
    background-color: #F1F5F9;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.btn-wrap {
    margin: 8px auto;
}
.btn-wrap .btn {
    cursor: pointer;
    user-select: none;
    background: rgb(235,241,70);
    background: linear-gradient(145deg, rgba(235,241,70,1) 0%, rgba(252,179,70,1) 100%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 10px 25px;
    color: #000000;
    font-weight: 600;
    box-shadow: 0px 4px 0px rgb(155, 107, 36);
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    overflow: hidden;
    text-decoration: none;
}
.btn-wrap .btn:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 0px rgb(155, 107, 36);
}
.btn-wrap .btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
.btn-wrap2 {
    margin: 8px auto;
}
.btn-wrap2 .btn {
    cursor: pointer;
    user-select: none;
    background: rgba(241,240,70,1.00);
    background: linear-gradient(145deg, rgba(255,0,0,1.00) 0%, rgba(255,63,0,1.00) 100%);
    border-radius: 6px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0px 4px 0px rgba(255,0,0,1.00);
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    overflow: hidden;
    text-decoration: none;
}
.btn-wrap2 .btn:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 0px rgb(155, 107, 36);
}
.btn-wrap2 .btn:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.btn_back a {
    background: #eee;
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 30px auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.btn_back a:hover {
    background: #313131;
    color: #FFF;
}
.btn_back a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.btn_back a:hover:after {
    border-color: #FFF;
}
/* grid */
.grid {
    display: grid;
}
.grid.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid.grid-cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid.grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid.grid-cols-9 { grid-template-columns: repeat(9, minmax(0, 1fr)); }

.grid.gap-0 { gap: 0; }
.grid.gap-1 { gap: 0.25rem; }
.grid.gap-2 { gap: 0.5rem; }
.grid.gap-3 { gap: 0.75rem; }
.grid.gap-4 { gap: 1rem; }
.grid.gap-5 { gap: 1.25rem; }
.grid.gap-6 { gap: 1.5rem; }
.grid.gap-7 { gap: 1.75rem; }
.grid.gap-8 { gap: 2rem; }
.grid.gap-9 { gap: 2.25rem; }

.grid .col-span-1 { grid-column: span 1 / span 1; }
.grid .col-span-2 { grid-column: span 2 / span 2; }
.gird .col-span-3 { grid-column: span 3 / span 3; }
.grid .col-span-4 { grid-column: span 4 / span 4; }
.gird .col-span-5 { grid-column: span 5 / span 5; }
.grid .col-span-6 { grid-column: span 6 / span 6; }
.gird .col-span-7 { grid-column: span 7 / span 7; }
.grid .col-span-8 { grid-column: span 8 / span 8; }
.gird .col-span-9 { grid-column: span 9 / span 9; }

/* flex */
.flex {
    display: flex;
}
.flex.flex-wrap { flex-wrap: wrap; }
.flex.flex-nowrap { flex-wrap: nowrap; }
.flex.flex-row { flex-direction: row; }

.flex.justify-center { justify-content: center; }
.flex.justify-between { justify-content: space-between; }
.flex.justify-around { justify-content: space-around; }

.flex.items-center { align-items: center; }
.flex.items-start { align-items: start; }
.flex.items-end { align-items: end; }


/* contents */
#wrap {
    overflow-x: hidden;
    width: 100%;
}
main {
    position: relative;
    transition: 0.3s;
}
main.nav-active {
    transform: translateX(300px);
}
#contents {
    padding-top: 100px;
    padding-bottom: 100px;
}

#contents .main-title {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: auto auto 2.5rem;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 90%;
}
#contents .main-title img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: center;
    margin-right: 0.5rem;
}
#contents .sub-title {
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    margin: 1rem auto 0.5rem;
    background: #f7f7f7;
    padding: 0.4rem 0.5rem;
    width: fit-content;
    border-radius: 6px;
    max-width: 90%;
    border: 1px solid #e5e7eb;
}
.event {
    margin: 0.5rem auto 1.2rem;
    width: 90%;
    max-width: 600px;
}
.event .event__label {
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    margin: 0.8rem 0;
    color: #fff;
    background: #094;
    padding: 0.4rem 0.8rem;
    width: fit-content;
    border-radius: 20px;
    margin-right: 0.6rem;
}
.event .event__title {
    font-size: 1.1em;
    font-weight: bold;
}
.event .event__title span {
    font-weight: normal;
	font-size: 0.9em;
}



/* ページネーション */
.pagination {
    display: flex;
	justify-content: center;
    align-items: center;
    margin: 1rem auto;
    width: 90%;
    max-width: 600px;
    overflow: auto;
}
.pagination .pagination-items {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #47423C;
    text-decoration: none;
    cursor: pointer;
    min-width: 50px;
    width: fit-content;
    text-align: center;
    margin-right: 0.5rem;
    white-space: nowrap;
}
.pagination .pagination-items.active {
    background-color: #625B53;
    color: #fff;
    cursor: default;
}
.pagination .pagination-items:hover:not(.active) {
    background-color: #eff6ff;
}


/* スクロールバー */
.scrollbar {
    padding-right: 6px;
    overflow-y: scroll;
    /* scrollbar-width: thin; */
}
.scrollbar::-webkit-scrollbar {
    width: 6px;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: #5f677c;
    border-radius: 8px;
}


/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding-bottom: 85px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.modal.active {
    display: flex;
}
.modal .modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}
.modal .modal__wrap {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    height: fit-content;
    z-index: 1;
    padding: 1rem;
    border-radius: 6px;
    animation: modal 0.3s ease-in-out forwards;
}
@keyframes modal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
  }
.modal .modal__closebtn {
    margin-left: auto;
    margin-bottom: 1rem;
    width: 36px;
    height: 36px;
    display: block;
    cursor: pointer;
    background-color: #F3F3F3;
    border-radius: 6px;
    z-index: 1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    padding: 0.5rem;
    border: 1px solid #d8d8d8;
}
.modal .modal__closebtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.modal .modal__contents {
    height: fit-content;
    max-height: calc(90svh - (16px + 16px + 16px + 8px + 85px));
    overflow-y: auto;
}
.modal .modal__contents .modal__category {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: #F6F4EF;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.modal .modal__contents .modal__category img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    object-position: center;
    margin-right: 0.5rem;
    border-radius: 100%;
    background-color: #ffffff;
    border: 1px solid #f1f1f1;
}
.modal .modal__contents .modal__sponsor {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    background: #f8ccfa;
    margin-bottom: 8px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: bold;
    color: #aa23af;
    border: 1px solid #d074d3;
}
.modal .modal__contents .modal__title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.modal .modal__contents .modal__title-red {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #F22929;
    filter: drop-shadow(0px 0px 6px #cbb5e7);
}
.modal .modal__contents .modal__title-sub {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 1rem;
}
.modal .modal__contents .modal__detailtext {
    font-size: 1.1rem;
    margin: 1rem auto;
    background-color: #F6F4EF;
    padding: 1rem;
    border-radius: 6px;
    line-height: 1.8;
}
.modal .modal__contents .modal__detailtext .modal__detailtext-title {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    margin: 0.8rem 0 0.5rem;
    color: #fff;
    background: #094;
    -webkit-box-shadow: 5px 5px 0 #007032;
    box-shadow: 5px 5px 0 #007032;
    padding: 0.4rem 1rem;
    /* border-radius: 6px; */
    width: 100%;
}
.modal .modal__contents .modal__detailtext .modal__detailtext-title-sub {
    font-size: 0.9em;
    margin: 0.8rem 0 0.5rem;
    background-color: #FFFFFF;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    width: fit-content;
    border: 1px solid #f1f1f1;
}
.modal .modal__contents .modal__img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #f1f1f1;
    overflow: hidden;
}
.modal .modal__contents .modal__img img {
    width: 100%;
    height: auto;
}
.modal .modal__contents .modal__stamp {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: #F8F8F8;
    border: 1px solid #F1F1F1;
    overflow: hidden;
    margin: auto;
    margin-bottom: 1rem;
}
.modal .modal__contents .modal__stamp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    
}
.modal .modal__contents .modal__stamp2 {
    width: 140px;
    height: 140px;
    border-radius: 100%;
    background-color: #F8F8F8;
    border: 1px solid #F1F1F1;
    overflow: hidden;
    margin: auto;
    margin-bottom: 1rem;
}
.modal .modal__contents .modal__stamp2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
	filter: opacity(30%);
    
}
.modal .modal__contents .after_stamp {
    position:relative;
}
.modal .modal__contents .after_stamp:after {
    content:"";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
}
@keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



.modal .modal__contents .modal__point {
    font-size: 2.6em;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #F22929;
}
.modal .modal__contents .modal__point span {
    font-size: 0.6em;
    font-weight: bold;
}
.modal .modal__contents .modal__point2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #000000;
}
.modal .modal__contents .modal__point2 span {
    font-size: 0.6em;
    font-weight: bold;
}
.modal .modal__contents .modal__getdate {
    font-size: 0.8em;
    margin-top: 1rem;
    text-align: center;
}

.modal .modal__contents .modal__information {
    margin: 1.4rem auto;
}
.modal .modal__contents .modal__information .modal__information-wrap {
    margin-bottom: 1rem;
}
.modal .modal__contents .modal__information .modal__information-title {
    background-color: #094;
    border-radius: 12px 12px 0 0;
    color: #fff;
    padding: 0.6rem 1rem;
}
.modal .modal__contents .modal__information .modal__information-text {
    background-color: #f8f8f8;
    border-radius: 0 0 12px 12px;
    padding: 0.6rem 1rem;
}
.modal .modal__contents .modal__information .modal__information-text a {
    color: #094;
    font-weight: bold;
    text-decoration: underline;
}


.pagetop {
    position: fixed;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #606060;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;

    /*   デフォルトは非表示 */
    opacity: 0;
    bottom: -40px;
}
.pagetop.active {
    opacity: 1;
    bottom: 100px;
}
.pagetop img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    object-position: center;
    transform: rotate(90deg);
}
.btn2colum  {
    width: 90%;
	display: flex;
  align-items: center;
	justify-content: center;
	margin: 0 auto 10px auto;
}
.btn_01 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 45%;
	margin: auto;
	padding: 10px;
	font-weight: bold;
	background: #27acd9;
	color: #fff;
	border-radius: 5px;
	transition: 0.5s;
	
}
.btn_01:hover {
	color: #fff;
	background: #27acd9;
}
.flag.error { 	
border: 1px solid #ff0000; 	
background-color: #ffebee; 	
color: #c70d0d; 	
} 	
.flag.error-message { 	
color: #c70d0d; 	
font-size: 0.8rem; 	
margin-top: 0.2rem; 	
} 	
.list-8 {
    position: relative;
    padding: 1.5em 1em 1em 2.5em;
    border: 2px solid #f95846;
	margin: 40px auto;
	width: 90%;
	display: block;
}

.list-8 > div {
    position: absolute;
    top: -.75em;
    left: 1em;
    padding: 0 .5em;
    background-color: #fff;
    color: #f95846;
    font-weight: 600;
}

.list-8 ul {
    list-style-type: disc;
    margin: 0;
    padding: 0;
}
.mpread1 {
    margin: 30px auto;
	width: 90%;
	max-width: 800px;
	display: block;
}
.mpread2 {
    margin: 10px auto 20px ;
	width: 90%;
	max-width: 800px;
}