/*===================================
countdown
===================================*/
#timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    font-size: 10vw;
    width: min(100%, 700px);
}
#timer span {
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .2em;
    line-height: 1.1;
    width: calc((100% - 15px) / 4);
    height: min(100%, 130px);
}
#timer span::after {
    border-top: 1px solid var(--haze);
    content: attr(id);
    text-transform: uppercase;
    font-size: .4em;
}
@media screen and (min-width: 767px) {
    #timer {
        font-size: 6vw;
        margin-top: 0;
    }
    #timer span {
        height: 100px;
    }
}
@media screen and (min-width: 960px) {
    #timer {
        font-size: 4vw;
    }
}
@media screen and (min-width: 1200px) {
    #timer {
        font-size: 3vw;
        margin-top: .5em;
    }
    #timer span {
        height: 150px;
    }
}
/*===================================
mv
===================================*/
#mv .slider {
    height: 90vh;
    margin-inline: auto;
    overflow: hidden;
    width: 100vw;
}
#main.home #slider #mv .mv .mv_img {
    background: #fff;
    height: 90vh;
}
#mv .slick-img img {
    object-fit: cover;
    width: 100%;
    height: 90vh;
}
#main.home #slider #mv .slider {
    height: 100vh;
}
#main.home #slider #mv .slick-img img {
    height: 100vh;
}
#main.home #slider #mv video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}
@keyframes zoomUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}
.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}
#mv {
    position: relative;
    width: 100%;
    height: 90vh;
    padding: 0;
}
/*#mv::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1;
}*/
#mv .mv_title {
    display: flex;
    flex-direction: column;
    gap: .5em;
    position: absolute;
    transform: translate(-50%);
    /* top: 60%; */
    left: 50%;
    bottom: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 0, 0, 0.5);
    /* border-radius: 24px; */
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 2% 2% 4%;
    z-index: 2;
}
#mv .mv_title .title {
    color: #fff;
    font-size: 6vw;
    text-align: center;
    width: min(92%, 500px);
    margin: 0 auto;
}
/*#mv .mv_title .btns {
    margin-top: 2.5em;
}*/
#mv .mv .mv_img img {
    width: 100vw;
    height: 90vh;
    object-fit: cover;
    object-position: center center;
}
@media screen and (min-width: 767px) {
    #mv .mv_title .title {
        font-size: clamp(1rem, 5vw, 5rem);
    }
}
@media screen and (min-width: 960px) {
    #mv .mv_title .title {
        font-size: clamp(1rem, 4vw, 3rem);
    }
}
@media screen and (min-width: 1200px) {
    #main.home #slider #mv .mv .mv_img {
        height: 100vh;
    }
    #mv .slider {
        width: 50vw;
        height: 100vh;
    }
    #mv .slick-img img {
        object-fit: cover;
        width: 50vw;
        height: 100vh;
    }
    #main.home #mv .mv_title .title {
        font-size: 2vw;
    }
}
/* news */
#news {
    background: var(--blaze-shade-2);
}
#news ._container {
    padding: 8%;
}
#news ._container .heading01 {
    color: #fff;
}
#news ._container .top_news_contents {
    background: #ffd4cb;
    border-radius: 15px;
    padding: 2%;
    margin-top: 1.5em;
}
#news ._container .top_news_contents ._post_list {
    overflow: hidden;
}
#news ._container .top_news_contents ._post_list ._post {
    padding: 2%;
}
#news ._container .top_news_contents ._post_list ._post:not(:first-child) {
    border-top: 1px solid var(--saddle);
}
#news ._container .btns {
    margin-top: 2.5em;
    justify-content: flex-end;
}
#news ._container .btns .btn_type01 {
    font-weight: 400;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {}
/* about */
#about {
    color: var(--saddle);
}
#about ._container {
    padding: 8%;
}
#about ._container .heading01 span {
    display: block;
}
#about ._container ._box {
    display: flex;
    flex-direction: column;
    gap: 2em;
}
#about ._container ._box ._text p {
    text-align: left;
    margin-top: 1.5em;
}
#about ._container ._box ._img {
    margin-right: 20%;
}
#about ._container ._box ._img img {
    width: min(100%, 500px);
    height: 300px;
    object-fit: cover;
    background: var(--blaze);
    mix-blend-mode: color-burn;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 20px 20px var(--blaze-shade-2);
}
@media screen and (min-width: 767px) {
    #about ._container ._box {
        flex-direction: row;
        gap: 2em;
    }
    #about ._container ._box ._text {
        width: 50%;
    }
    #about ._container ._box ._img {
        width: 50%;
        margin-right: 0;
    }
    #about ._container ._box ._img img {
        width: 100%;
        height: min(auto, 800px);
        object-fit: cover;
        border-bottom-right-radius: 75px;
        border-top-right-radius: 10px;
    }
}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #about ._container ._box {
        flex-direction: row;
        gap: 2em;
    }
    #about ._container ._box ._img img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-bottom-right-radius: 75px;
        border-top-right-radius: 10px;
    }
}
/* category */
#category {
    color: #fff;
}
#category ._container {
    padding: 8%;
}
#category ._container .heading01 {
    color: var(--haze);
}
#category ._container ._box ._text {
    margin-top: 1.5em;
}
#category ._container ._box ._text .cat {
    margin-top: 1em;
}
#category ._container ._box ._text .cat + .cat {
    margin-top: 2em;
}
#category ._container ._box ._text .cat .heading02 {
    background: var(--saddle);
    border-radius: 100vh;
    padding: .5em .5em .5em 1.5em;
}
#category ._container ._box ._text .cat ._list {
    margin-top: 1em;
}
#category ._container ._box ._text .cat._level ._list ._item .cat_name + ol {
    margin-top: 1em;
}
/* qualified */
#category ._container ._box ._text .cat._qualified ._list ._item {
    border: 1px solid #fff;
    border-radius: 10px;
    background: #850100;
    padding: 8%;
    width: 100%;
}
#category ._container ._box ._text .cat._qualified ._list ._item ol li {
    list-style: disc;
    margin-left: 1em;
}
/* level */
#category ._container ._box ._text .cat._level ._list ._item {
    border: 1px solid #fff;
    border-radius: 10px;
    background: #850100;
    padding: 8%;
    width: 100%;
}
#category ._container ._box ._text .cat._level ._list ._item + ._item {
    margin-top: 1em;
}
#category ._container ._box ._text .cat._level ._list ._item .cat_name {
    font-size: 8vw;
    border-bottom: 1px solid #fff;
}
#category ._container ._box ._text .cat._level ._list ._item .cat_name .sub_name {
    font-size: .4em;
    font-weight: 900;
    margin-left: 1em;
}
#category ._container ._box ._text .cat._level ._list ._item ol li {
    list-style: disc;
    margin-left: 1em;
}
/* age */
#category ._container ._box ._text .cat._age ._list {
    border: 1px solid #fff;
    border-radius: 10px;
    background: #850100;
    padding: 8%;
    width: 100%;
    margin-top: .5em;
}
#category ._container ._box ._text .cat._age ._list ._item {
    list-style: disc;
    font-size: 8vw;
    margin-left: 1em;
    line-height: 1.2;
}
#category ._container ._box ._text .cat._age ._list ._item span {
    font-size: .6em;
    display: block;
}
#category ._container ._box ._text .cat._age ._list ._item + ._item {
    margin-top: 1em;
}
/* weight */
#category ._container ._box ._text .cat._weight ._male, #category ._container ._box ._text .cat._weight ._female {
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 8%;
    width: 100%;
    margin-top: .5em;
}
#category ._container ._box ._text .cat._weight ._male {
    background: #000d58;
}
#category ._container ._box ._text .cat._weight ._female {
    background: #a60052;
}
#category ._container ._box ._text .cat._weight ._list ._item {
    font-size: 6vw;
    list-style: disc;
    line-height: 1.2;
    margin-left: 1em;
}
#category ._container ._box ._text .cat._weight ._list ._item:first-child {
    list-style: none;
    border-bottom: 1px solid #fff;
    font-size: 8vw;
    margin-left: 0;
    margin-bottom: 1em;
}
#category ._container ._box ._text .cat._weight ._list ._item span {
    font-size: .4em;
    margin-left: 1em;
}
#category ._container ._box ._text .cat._weight p {
    margin-top: 1.5em;
}
@media screen and (min-width: 767px) {
    #category ._container ._box ._text .cat._age ._list ._item {
        font-size: 5vw;
    }
    #category ._container ._box ._text .cat._level ._list ._item .cat_name {
        font-size: clamp(1rem, 8vw, 5rem);
    }
    #category ._container ._box ._text .cat._weight ._list ._item:first-child {
        font-size: clamp(1rem, 8vw, 5rem);
    }
    #category ._container ._box ._text .cat._weight .gender {
        display: flex;
        gap: 1.5em;
    }
    #category ._container ._box ._text .cat._weight ._male, #category ._container ._box ._text .cat._weight ._female {
        width: calc((100% - 1.5em) / 2)
    }
    #category ._container ._box ._text .cat._weight ._list ._item {
        font-size: 4vw;
    }
}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #category ._container ._box ._text .cat .heading02 {
        font-size: 1.5vw;
    }
    #category ._container ._box ._text .cat._level ._list {
        display: flex;
        flex-flow: wrap;
        gap: 10px;
    }
    #category ._container ._box ._text .cat._level ._list ._item {
        margin-left: 0;
    }
    #category ._container ._box ._text .cat._level ._list ._item + ._item {
        margin-top: 0;
    }
    #category ._container ._box ._text .cat._level ._list ._item .cat_name {
        line-height: 1.2;
    }
    #category ._container ._box ._text .cat._level ._list ._item .cat_name .sub_name {
        display: block;
        padding-top: 1em;
        margin-left: 0;
    }
    #category ._container ._box ._text .cat._level ._list ._item ol {
        margin-top: 1em;
    }
    #category ._container ._box ._text .cat._level ._list ._item ol li {
        font-size: 1em;
    }
    #category ._container ._box ._text .cat._level ._list ._item .cat_name {
        font-size: 3.5vw;
    }
    #category ._container ._box ._text .cat._age ._list ._item {
        font-size: 2vw;
    }
    #category ._container ._box ._text .cat._weight ._list ._item {
        font-size: 2vw;
    }
    #category ._container ._box ._text .cat._weight ._list ._item:first-child {
        font-size: 3vw;
    }
}
/* entry */
#entry ._container {
    padding: 8%;
}
#entry ._container ._box ._text {
    margin-top: 1.5em;
}
#entry ._container ._box .heading02 {
    color: #fff;
    background: var(--blaze-shade-2);
    border-radius: 100vh;
    padding: .5em .5em .5em 1.5em;
}
#entry ._container ._box ._list {
    border: 1px solid var(--blaze-shade-2);
    border-radius: 10px;
    padding: 8%;
    width: 100%;
    margin-top: 1em;
}
#entry ._container ._box ._list ._item {
    list-style: disc;
    margin-left: 1em;
    padding: .5em;
}
#entry ._container ._box ._list ._item + ._item {
    border-top: 1px dashed var(--blaze-shade-2);
}
#entry ._container ._box ._list ._item span {
    display: block;
    font-weight: bold;
}
#entry ._container ._box p {
    color: var(--saddle);
    font-size: .8em;
    margin-top: 1em;
}
#entry ._container .btns {
    margin-top: 2.5em;
    justify-content: flex-end;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {}
/* Instagram */
#instagram {
    background: var(--sunset-shade-2);
}
#instagram ._container {
    padding: 8%;
}
#instagram ._container .heading01 {
    color: #fff;
}
#instagram ._container .insta_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1px;
    margin-top: 1.5em;
}
#instagram .insta_list li {
    width: calc((100% - 3px) / 3);
    overflow: hidden;
}
#instagram .insta_list li img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: .3s all;
}
#instagram .insta_list li img:hover {
    transform: scale(1.2, 1.2)
}
#instagram ._container .btns {
    margin-top: 2.5em;
    justify-content: flex-end;
}
#instagram ._container .btns .btn_type01 {
    background: transparent;
    font-weight: 400;
    border: 1px solid var(--sunset-shade-2);
}
#instagram ._container .btns .btn_type01:hover {
    background: var(--blaze-shade-1);
    border: 1px solid var(--blaze-shade-1);
    color: #fff;
}
/*===================================
subpage
===================================*/
.subpage_mv {
    position: relative;
    background: var(--saddle);
    background: url(../img/mv05.jpg) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 40vh;
    /*mix-blend-mode: color-burn;*/
}
.subpage_mv::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255, 0, 0, 0.74);
    /* filter: grayscale(70%); */
    mix-blend-mode: lighten;
    z-index: 1;
}
.subpage_mv .slider {
    height: 40vh;
}
.subpage_mv .slider .slick-img img {
    object-fit: cover;
    width: 100%;
    height: 40vh;
}
.subpage_mv_title {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 0, 0, 0.5);
    filter: grayscale(0%);
    padding: .5em .5em .9em;
    z-index: 2;
}
.subpage_mv_title .title {
    color: var(--blaze-shade-2);
    color: #fff;
    font-size: 10vw;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
}
.subpage_mv_title .title span {
    display: block;
    font-size: .4em;
    letter-spacing: .1em;
}
@media screen and (min-width: 767px) {
    .subpage_mv_title .title {
        font-size: 8vw;
    }
    .subpage_mv_title .title span {
        font-size: .2em;
    }
}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    .subpage_mv .slider {
        height: 100vh;
    }
    .subpage_mv .slider .slick-img img {
        height: 100vh;
    }
    #main #slider {
        width: 50%;
        height: 100%;
        overflow-y: auto; /* 縦スクロールのみ可能にする */
        position: fixed; /* 位置を固定する */
    }
    #main #slider .subpage_mv {
        width: 100%;
        height: 100%;
    }
    #main #slider .subpage_mv::after {
        mix-blend-mode: hue;
    }
    #main .subpage_mv .subpage_mv_title .title {
        font-size: 3vw;
    }
    .subpage_mv_title .title span {
        font-size: .3em;
    }
    #main .subpage_mv #mv .mv .mv_img {
        width: 100%;
        height: 100vh;
    }
    #main #slider .subpage_mv .mv_img img {
        height: 100vh;
    }
    #main #contents {
        width: 50%;
        margin-left: auto;
        overflow: hidden;
    }
}
/*===================================
rules
===================================*/
#rules ._container {
    padding: 8%;
}
#rules ._container ._box {
    margin-top: 1em;
}
#rules ._container ._box ._box_child {
    background: var(--sunset);
    border-radius: 10px;
    padding: 1em;
}
#rules ._container ._box ._box_child .heading02 {
    border-bottom: 1px solid var(--blaze-shade-2);
    font-size: 8vw;
}
#rules ._container ._box ._box_child ._list {
    margin-top: 1em;
}
#rules ._container ._box ._box_child ._list ._item {
    font-size: .8em;
    position: relative;
    padding-left: 1em;
}
#rules ._container ._box ._box_child ._list ._item::before {
    border-radius: 50%;
    width: 5px;
    height: 5px;
    display: block;
    position: absolute;
    left: .2em;
    top: 0.6em;
    content: "";
    background: var(--blaze-shade-2);
}
#rules ._container ._box ._box_child ._list ._item + ._item {
    margin-top: .8em;
}
#rules ._container ._box ._box_child ._list ._item span {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
}
#rules ._container ._box ._box_child ._list ._item._head::before {
    top: 0.8em;
}
#rules ._container ._box ._box_child ._list ._item span sub {
    font-size: .7em;
}
#rules ._container ._box ._box_child ._list ._item ol {}
#rules ._container ._box ._box_child ._list ._item ol li:nth-child(2) {
    margin-top: 1em;
}
#rules ._container ._box ._box_child ._list ._item ol li:not(:first-child) {
    font-weight: 600;
}
#rules ._container ._box ._box_child ._list ._item ol li span {
    display: block;
}
#rules ._container ._box ._box_child {
    overflow-x: auto;
}
#rules ._container ._box ._box_child._time {
    margin-right: -4%;
    padding-right: -4%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#rules ._container ._box ._box_child ._table {
    border-radius: 3px;
    border-collapse: separate;
    border-spacing: 3px;
    margin-top: 1em;
    width: 100%;
    min-width: 600px;
}
#rules ._container ._box ._box_child ._table thead {
    background: var(--blaze-shade-2);
    color: #fff;
    font-weight: 800;
}
#rules ._container ._box ._box_child ._table thead th {
    border-radius: 10px;
    padding: .5em;
    white-space: nowrap;
    width: calc(100% / 4);
}
#rules ._container ._box ._box_child ._table tbody {}
#rules ._container ._box ._box_child ._table tbody tr {
    background: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}
#rules ._container ._box ._box_child ._table tbody tr th {
    padding: .5em;
    white-space: nowrap;
    border-radius: 3px;
}
#rules ._container ._box ._box_child ._table tbody tr td {
    font-weight: 700;
    text-align: center;
    padding: .5em;
    white-space: nowrap;
    border-radius: 3px;
}
@media screen and (min-width: 767px) {
    #rules ._container ._box ._box_child .heading02 {
        font-size: 4vw;
    }
    #rules ._container ._box ._box_child ._list ._item {
        font-size: 2vw;
    }
    #rules ._container ._box ._box_child._time {
        margin-right: 0;
        padding-right: 4%;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
@media screen and (min-width: 960px) {
    #rules ._container ._box ._box_child .heading02 {
        font-size: 2vw;
    }
    #rules ._container ._box ._box_child ._list ._item {
        font-size: 1vw;
    }
}
@media screen and (min-width: 1200px) {
    #rules ._container ._box ._box_child .heading02 {
        font-size: 1vw;
    }
}
/*===================================
terms
===================================*/
#terms {}
#terms ._container {
    padding: 8%;
}
#terms ._container ._box {
    margin-top: 1em;
}
#terms ._container ._box .heading03 {
    border-bottom: 1px solid var(--blaze-shade-2);
    font-size: 6vw;
    line-height: 1.2;
}
#terms ._container ._box .heading03 + ._box_child p {
    margin-top: 1em;
}
#terms ._container ._box ul {
    margin-top: 1em;
}
#terms ._container ._box ul li {
    font-size: .8em;
    list-style: disc;
    margin-left: 1.5em;
}
@media screen and (min-width: 767px) {
    #terms ._container ._box .heading03 {
        font-size: 4vw;
    }
}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #terms ._container ._box .heading03 {
        font-size: 1.5vw;
    }
    #terms ._container ._box + ._box {
        margin-top: 5em;
    }
}
/*===================================
policy
===================================*/
#policy {}
#policy ._container {
    padding: 8%;
}
#policy ._container ._box {
    margin-top: 1em;
}
#policy ._container ._box .heading03 {
    border-bottom: 1px solid var(--blaze-shade-2);
    font-size: 6vw;
    line-height: 1.3;
}
#policy ._container ._box .heading03 + ._box_child p {
    margin-top: 1em;
}
#policy ._container ._box ul {
    margin-top: 1em;
}
#policy ._container ._box ul li {
    font-size: .8em;
    list-style: disc;
    margin-left: 1.5em;
}
@media screen and (min-width: 767px) {
    #policy ._container ._box .heading03 {
        font-size: 4vw;
    }
}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #policy ._container ._box .heading03 {
        font-size: 1.5vw;
    }
    #policy ._container ._box + ._box {
        margin-top: 5em;
    }
}
/*===================================
form
===================================*/
#contact_form form {
    background: #ffd4cb;
    border-radius: 10px;
}
#contact_form ._container {
    padding: 4% 2%;
}
#contact_form ._container ._info .heading02 {
    color: #fff;
    background: var(--blaze-shade-2);
    border-radius: 100vh;
    padding: .5em .5em .5em 1.5em;
}
#contact_form ._container ._info ._list {
    border: 1px solid var(--blaze-shade-2);
    border-radius: 10px;
    padding: 8%;
    width: 100%;
    margin-top: 1em;
}
#contact_form ._container ._info ._list ._item {
    list-style: disc;
    margin-left: 1em;
    padding: .5em;
}
#contact_form ._container ._info ._list ._item + ._item {
    border-top: 1px dashed var(--blaze-shade-2);
}
#contact_form ._container ._info ._list ._item span {
    display: block;
    font-weight: bold;
}
#contact_form ._container ._info p {
    color: var(--saddle);
    font-size: .8em;
    margin-top: 1em;
}
#contact_form ._container form {
    padding: 4% 2%;
    margin-top: 30px;
}
#contact_form .form_body {
    margin-top: 1em;
}
#contact_form .form_body .form_item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#contact_form .form_body .form_item + .form_item {
    margin-top: 1.5em;
}
#contact_form .form_body .form_item .form_label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    width: 100%;
}
#contact_form .form_body .form_item .form_label .required {
    background: #b90000;
    border-radius: 100vh;
    color: #fff;
    display: inline-block;
    font-size: 10px;
    text-align: center;
    padding: .5em;
    width: 40px;
}
#contact_form .form_body .form_item .form_label.is-msg {
    margin-top: 8px;
    margin-bottom: auto;
}
#contact_form .form_body .form_item._age {
    display: flex;
    flex-direction: row;
    gap: .5em;
}
#contact_form .form_body .form_item._age ._date {
    height: 41px;
    font-size: 16px;
}
#contact_form .form_body .form_item._age div:first-child {
    width: 80%;
}
#contact_form .form_body .form_item._age div input {
    margin-top: 10px;
}
#contact_form .form_body .form_item._experience p {
    color: #282828;
    font-size: 10px;
}
#contact_form .form_body .form_item._experience #experience {
    border-radius: 10px;
}
#contact_form .form_body .input_item {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 100vh;
    font-size: 16px;
    padding: 5px 1em;
    width: 100%;
}
#contact_form .form_body .form_item .phone_nunber {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3px;
}
#contact_form .form_body .form_item .radio-buttons {
    display: flex;
    flex-direction: column;
}
#contact_form .form_body .form_item .radio-button {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}
#contact_form .form_body .form_item .radio-button input[type="radio"] {
    display: none;
}
#contact_form .form_body .form_item .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #aaa;
    position: relative;
    margin-right: 10px;
}
#contact_form .form_body .form_item .radio-circle::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.2s ease-in-out;
}
#contact_form .form_body .form_item .radio-button input[type="radio"]:checked + .radio-circle::before {
    transform: translate(-50%, -50%) scale(1);
    background-color: #ff6600;
}
#contact_form .form_body .form_item .radio-label {
    font-size: 16px;
    font-weight: bold;
}
#contact_form .form_body .form_item .radio-button:hover .radio-circle {
    border-color: #555;
}
#contact_form .form_body .form_item .radio-button:hover input[type="radio"]:checked + .radio-circle::before {
    background-color: #555;
}
#contact_form .form_body .form_item_textarea {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    height: 100px;
}
#contact_form .form_body .form_btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {}
/*===================================
confirm
===================================*/
#confirm form {
    background: #ffd4cb;
    border-radius: 10px;
}
#confirm ._container {
    padding: 8%;
}
#confirm ._container form {
    padding: 8%;
}
#confirm .confirm_footer {
    margin-top: 30px;
}
#confirm .confirm_footer .btns > * {
    width: calc((100% - 10px) / 2);
}
#confirm ._desc {
    margin-top: 3em;
}
#confirm ._desc p {
    font-size: 4vw;
    text-align: center;
}
#confirm ._desc p:nth-child(2) {
    font-size: .7em;
}
#confirm .confirm_body {
    margin-top: 3em;
}
#confirm .confirm_body .form_item {
    background: #ffe6e0;
    border-radius: 10px;
    padding: 8%;
}
#confirm .confirm_body .form_item + .form_item {
    margin-top: .5em;
}
#confirm .confirm_body .back_btn {
    border-radius: 100vh;
    background: #111;
    display: block;
    letter-spacing: 0.05em;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: .3s all;
}
#confirm .confirm_body .back_btn:hover {
    background: #333;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #confirm ._desc p {
        font-size: 1vw;
    }
}
/*===================================
thanks
===================================*/
#thanks .heading01 {
    text-align: center;
}
#thanks p {
    text-align: center;
    margin-top: 2em;
}
#thanks .btn {
    margin-top: 2em;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #thanks {
        height: 50vw;
    }
    #thanks ._container {
        position: relative;
        height: 100%;
        width: 100%;
    }
    #thanks ._container .thanks_section {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
}
/*===================================
no entry
===================================*/
#no_entry p {
    text-align: center;
}
#no_entry .btn {
    margin-top: 2em;
}
@media screen and (min-width: 1200px) {
    #no_entry {
        height: 50vw;
    }
    #no_entry ._container {
        position: relative;
        height: 100%;
        width: 100%;
    }
    #no_entry ._container .no_entry {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
}
/*===================================
404
===================================*/
#error p {
    text-align: center;
}
#error .btn {
    margin-top: 2em;
}
@media screen and (min-width: 767px) {}
@media screen and (min-width: 960px) {}
@media screen and (min-width: 1200px) {
    #error {
        height: 50vw;
    }
    #error ._container {
        position: relative;
        height: 100%;
        width: 100%;
    }
    #error ._container .error_section {
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
    }
}