@charset "utf-8";
/* 申し込みフォーム */

/*
========================================
reset
========================================
*/

html, body, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre, img, small, strong, sub, sup, var,b, i, dl, dt, dd, ol, ul, li,fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
    font-size:100%;
}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display:block;}
nav ul, li {list-style:none;}a {margin:0;padding:0;vertical-align:baseline;background:transparent;}input, select {vertical-align:middle;}

/* form-style-reset */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
    display: none;
}

/* ---------------------------------------------------------
all
--------------------------------------------------------- */
html {
    width: 100%;
    font-size: 62.5%;
    overflow: scroll;
    -webkit-text-size-adjust: none;/*フォントの自動調整なし*/
}


body {
    width: 100%;
    line-height: 1;
    font-family:'Lucida Grande' , 'Noto Sans JP',  sans-serif;
    color:#484848;
    background: #f5f5f5;
}

.font12 {font-size: 1.2rem !important;}
.font13 {font-size: 1.3rem;}

small { font-size: smaller; }

#wrapper {width: 100%;max-width: 766px;margin: 0 auto;background: #fff;}
/* ---------------------------------------------------------
clear,clearfix
--------------------------------------------------------- */

.clear { clear:both; }

.clearfix:after {
content: "";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow:hidden;
}

.clearfix {
zoom:1;
overflow:hidden;
}

/* ---------------------------------------------------------
header
--------------------------------------------------------- */
header{
    width: 100%;
    background: #FFF;
    margin: 0;
    line-height: 130%;
    /* height: 45px; */
    z-index: 9999;
}

header .content {
    max-width: 1004px;
    margin: 0 auto;
}

header .logo{
    float: left;
    margin: 0 0 0 4px;
    padding: 0;
}

header .logo img{
    width: 100px;
    height: 37px;
    margin: 3px 0;
    display: block;
    padding: 0;
}

#top_area {
    /* padding: 24px 0 0 0; */
    background: #fdfdfd;
}

h1 {
    font-size: 2rem;
    font-weight: normal;
    /* margin: 0 auto 15px; */
    text-align: center;
    line-height: 36px;
    box-sizing: border-box;
    padding-top: 30px;
    position: relative;
}

h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    display: inline-block;
    width: 100%;
    height: 6px;
    background: linear-gradient(-90deg, #56C3F3 40%, #37A8DA 100%);
}

h1 span {
    display: inline-block;
    position: relative;
}

h1 span::before {
    content: "";
    position: absolute;
    top: -4px;
    bottom: 0;
    left: -30px;
    margin: auto;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(/images/common/logo.png);
    background-size: cover;
}

.quote {
    font-size: 1.5rem;
    margin: 10px auto 20px;
    text-align: center;
}

.step_bar {
    padding: 0 5.333%;
    margin: 5px 0 15px;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    box-sizing: border-box;
    overflow: hidden;
}

.step_bar li {
    font-size: 1.2rem;
    line-height: 1;
    color: #707070;
    position: relative;
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    padding: 10px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: center;
    height: 36px;
    box-sizing: border-box;
    width: 31%;
}

.step_bar li:first-child {
    width: 38%;
    border-left: 1px solid #ccc;
    border-right: 1px solid #fff;
}
.step_bar li:last-child {
    border-right: 1px solid #ccc;
}

.step_bar li:last-child::after {
    display: none;
}

.step_bar li.here {
    background-color: #E5006A;
    color: #fff;
    border: 1px solid #E5006A;
    font-weight: bold;
}

.step_bar li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -20px;
    border: 10px solid transparent;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-color: #fff;
    z-index: 2;
    box-sizing: border-box;
}

.step_bar li.here::before {
    border-left-color: #E5006A;
}

.complate .step_bar li:first-child::after,
.step_bar li.here + li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    margin-top: -18px;
    border: 10px solid transparent;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-color: #ccc;
    z-index: 1;
    box-sizing: border-box;
}

.step_bar li:last-child::before {
    display: none;
}

.tel {max-width: 520px;margin: 0 auto;}
.tel a {display: block; text-align: center;}
.tel a img {width: 100%;}

/*告知エリア（テキスト）*/
.campaign_txt {
    padding: 10px;
    font-size: 1.3rem;
    line-height: 1.45;
    border: 2px solid #3eb7ec;
    margin: 14px 5.333% 0;
    box-sizing: border-box;
}

#form_area {
    background: #FEFEFE;
    padding-bottom: 50px;
}

.input_ttl_cate {
    color: #3EB7EC;
    font-size: 1.6rem;
    width: 100%;
    border-bottom: 1px solid #3EB7EC;
    text-align: center;
    padding-bottom: 8px;
    margin: 20px 0;
}

.innerWrap {
    padding: 0 5.333% 6px;
    margin-top: 14px;
}

.border {
	border-top: 1px solid #ccc;
}

.form_title {
    font-size: 1.4rem;
    /* margin-top: 14px; */
    margin-bottom: 10px;
}

.soudan1, .purpose, .area ul, .desk, .term {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.purpose, .country {
    height: 172px;
    overflow: hidden;
}

.purpose.active, .country.active {
    height: auto;
}

.area {
    diaplay: none;
}

.soudan_txt, .soudan_txt2 {
    display: none;
    font-size: 1.1rem;
    color: #707070;
    line-height: 1.6;
    background: #FEFEEF;
    border-radius: 7px;
    padding: 10px;
    box-sizing: border-box;
}

.soudan_txt em, .soudan_txt2 em {color: #484848; font-weight: bold;}

/*------------------------ 
radio btn style 
------------------------*/
.radio_1c {
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    width: 100%;
}

.radio_2c {
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    margin-right: 2.816%;
    width: 48%;
}

.radio_3c {
    margin-right: 2.39%;
    width: 31.736%;
}

.radio_4c {
	margin-right: 2.816%;
	width: 48%;
}

.radio_5c {
    margin-right: 1.8%;
    width: 18.56%;
}

.radio_2c.full {
    width: 100%;
    margin-right: 0;
}

/*.radio_2c:nth-child(2n),*/
.radio_2c:nth-child(2),
.radio_2c:nth-child(4),
.radio_2c:nth-child(6),
.radio_2c:last-child,
.radio_3c:nth-child(3n),
.radio_4c:nth-child(2n),
.radio_5c:nth-child(5n){
    margin-right: 0;
}

.radio_2c.full + .radio_2c {
    /* margin-right: 10px; */
}

.radio_3c.full {
    width: 100%;
    margin-right: 0;
}

.radio_1c input,
.radio_2c input,
.radio_3c input,
.radio_4c input,
.radio_5c input{
    position: absolute !important;
}

.radio_1c input:checked + .radio_box,
.radio_2c input:checked + .radio_box,
.radio_3c input:checked + .radio_box,
.radio_4c input:checked + .radio_box,
.radio_5c input:checked + .radio_box{
    color: #fff;
    background: linear-gradient(-90deg, #56C3F3 20%, #37A8DA 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.20);
    border: none;
}

.counsel_online {
	position: relative;
}

.counsel_online::before {
	content: "おすすめ";
    font-weight: bold;
    background: #e50169;
    color: #fff;
    font-size: 9px;
	text-align: center;
    transform: rotate(-15deg);
    padding: 5px;
    width: 50px;
    height: 50px;
    line-height: 39px;
    border-radius: 50px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 2;
}

.radio_box {
    color: #707070;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #3EB7EC;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    height: 48px;
    display: block;
    border-radius: 7px;
    line-height: 48px;
    position: relative;
    cursor: pointer;
}

.radio_box.disabled, input[disabled]+.radio_box {
    border: none;
    background: #ddd;
    cursor: unset;
}


/*--もっと見る--*/
.more_purpose {
    color: #128C95;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}

.more_purpose::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -70px;
    left: 0;
    margin: auto;
    width: 4px;
    height: 4px;
    border-top: 1px solid #128C95;
    border-right: 1px solid #128C95;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.more_purpose.active::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 5px;
}

/*------------------------ 
select box style 
------------------------*/
select {
	color: #484848;
}

.s_inline {
    font-size: 1.2rem;
}

.s_inline select {
    border: 1px solid #ccc;
    background: #fff;
    height: 46px;
    width: 34%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 1.6rem;
    position: relative;
    margin-bottom: 10px;
}

.s_inline.radio_2c {
    width: 100%;
}

.term select {
    width: 56%;
}

.w_65 {
    margin-right: 10px;
}

.w_65 select {
    width: 65%;
}

.w_30 select {
    width: 30%;
}

.birth select {
    width: 26%;
}

.s_box {position: relative;}
.s_box::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    bottom: 0;
    right:10px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border: 1px solid;
    border-color:  transparent transparent #707070 #707070;
    transform: rotate(-45deg);
}

/*------------------------ 
textarea style 
------------------------*/
.textBox {
    position:relative;
}

.textBox::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 10px;
    border-color: transparent transparent #e4e4e4 transparent;
}

.textBox textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    height: 180px;
    font-size: 16px;
    border: 1px solid #ccc;
    background: #fff;
    box-sizing: border-box;
    padding: 15px;
}

.input-xlarge {
    line-height: 1.4;
}

::placeholder {
    color: #ccc;
    font-size: 1.6rem;
    line-height: 1.4;
}

.nameBox::placeholder, .mail::placeholder, .phone::placeholder {
    
}

.name {
    display:-webkit-box;
      display:-ms-flexbox;
      display:flex;
    margin-bottom: 10px;
    -ms-flex-item-align: end;
    align-items: flex-end;
}

.name li {
    width: 48%;
}

.name li:first-child {
    margin-right: 10px;
}

.nameBox {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    width: 48%;
    height: 46px;
    box-sizing: border-box;
    /*line-height: 2;*/
    font-size: 1.6rem;
    width: 100%;
}

.notes {
    display: inline-block;
    padding-top: 8px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #707070;
    line-height: 1.4;
}

.notes.live {padding: 0;}

.txt_full {
     width: 100%;
}

.mail, .phone {
    width: 100%;
    font-size: 1.6rem;
    padding: 10px;
    box-sizing: border-box;
    height: 46px;
    background: #fff;
    border: 1px solid #ccc;
}

/*------------------------ 
Checkboxes styles mailmagazine 
------------------------*/
#m_magazine[type="checkbox"] { display: none; }

#m_magazine[type="checkbox"] + label {
  display: block;

  position: relative;
  padding-left: 24px;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #707070;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#m_magazine[type="checkbox"] + label:last-child {/* margin-bottom: 0; */}

#m_magazine[type="checkbox"] + label:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  position: absolute;
  left: 0;
  top: -2px;
  opacity: .6;
  /*-webkit-transition: all .12s, border-color .08s;
  transition: all .12s, border-color .08s;*/
}

#m_magazine[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
}

#m_magazine[type="checkbox"]:checked + label:before {
  width: 6px;
  height: 12px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-color: transparent #6dc8f0 #6dc8f0 transparent;
  border-width: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m_mag {
    margin-top: 10px;
    display: inline-block;
    font-size: 1.2rem;
}
/*--------------------------*/



.choice {
    font-size: 1.2rem;
    background: #C8E5F2;
    padding: 10px 8px 8px;
    margin-bottom: 10px;
}

.mandatory {
    display: inline-block;
    color: #fff;
    font-size: 1rem;
    background: #E83C5C;
    padding: 3px 6px 4px;
    margin-left: 10px;
    border-radius: 3px;
    box-sizing: border-box;
}

.red {color: #E83C5C;}

.sup_txt {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
	align-items: center;
    margin-bottom: 10px;
}

.info_icon {
    color: #3EB7EC;
    font-size: 1.6rem;
    border: 1px solid #3EB7EC;
    padding: 6px;
    border-radius: 4px;
    margin-right: 10px;
    width: 29px;
    height: 29px;
    box-sizing: border-box;
}

.info_cou {
    font-size:1.2rem;
    line-height: 1.4;
}

.info_cou i, .info_cou a {
    color: #3EB7EC;
    font-weight: bold;
}

.personal_info {
    font-size: 1.5rem;
    color: #707070;
    border-color: #707070;
}

/*------------------------ 
calendar 
------------------------*/
.slot-header{
    display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:8px;
    margin:12px 0 10px;padding:10px 12px;background:#fff;border:1px solid #e5e7eb;
  }
  #weekLabel{justify-self:center;font-weight:800;font-size:16px;letter-spacing:.02em;color:#333}
  #prevWeek,#nextWeek{
    justify-self:start;padding:8px 12px;border:1px solid #e5e7eb;border-radius:999px;background:#fff;color:#666;font-weight:700;cursor:pointer;
    transition:background .15s,border-color .15s;
  }
  #nextWeek{justify-self:end}
  #prevWeek:hover,#nextWeek:hover{background:#fff5f5;border-color:#f3b7b7;}

  .calendar-table{overflow:auto;border:1px solid #ddd;max-width:100%}
  #slot-table{table-layout: fixed;border-collapse:separate;border-spacing:0;width:100%;text-align:center;}
  :root{
    --time-col: 16%;
    --day-col: calc((100% - var(--time-col)) / 7);
  }
  #slot-colgroup .col-time{ width: var(--time-col); }
  #slot-colgroup .col-day { width: var(--day-col); }
  #slot-table th,#slot-table td{border:1px solid #e5e7eb;padding:10px 8px;font-size:1.2rem;overflow: hidden;}
  #slot-table thead th{position:sticky;top:0;background:#fafafa;padding:8px 6px;font-size:13px;line-height: 1.2; border-bottom:1px solid #ddd;z-index:2;}
  #slot-table th.time-col{background:#f8f8f8;font-weight:700;position:sticky;left:0;z-index:3; vertical-align: middle;}

  /* ◯／×／定休日 */
  td.ok{color:#c5163a;font-weight:700;background:#fff}
  td.ng{color:#9ca3af;background:#f7f7f7}
  td.rest-col{background:#f7f7f7 !important;color:#555}

  /* 週末＆祝日ヘッダ配色 */
  .d-sun{background:#fff5f5 !important;color:#c62828 !important}
  .d-sat{background:#f5f9ff !important;color:#1976d2 !important}
  .d-hol{background:#fff5f5 !important;color:#c62828 !important}

  /* 月帯（上段） */
  .month-band th{background:#fff;font-weight:800;border-bottom:0}
  .date-band th{border-top:0}

  /* モバイル */
  @media (max-width:640px){
    #slot-table{table-layout:fixed;border-collapse:collapse;font-size:12px}
    #slot-table th,#slot-table td{box-sizing:border-box}
    :root{--time-col:16%;--day-col:calc((100% - var(--time-col))/7)}
    #slot-table th.time-col{width:var(--time-col);min-width:0;padding:12px 4px}
    #slot-table thead th:not(.time-col),#slot-table td{width:var(--day-col);min-width:0;padding:8px 0;line-height:1.5;font-size: 12px;}
    .slot-header{padding:8px 10px}
    #weekLabel{font-size:14px}
    #prevWeek,#nextWeek{padding:6px 10px;font-size:13px}
  }

/*------------------------ 
submit styles 
------------------------*/
#button_area {
    text-align: center;
}

.bt_confirmation {
    color: #fff;
    background: #EB3F73;
    font-size: 2rem;
    width: 299px;
    max-width: 100%;
    height: 73px;
    border-radius: 12px;
    border-bottom: 3px solid #BC3A61;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

.bt_confirmation::before,
.bt_confirmation::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
}

.bt_confirmation::before {
    width: 24px;
    height: 24px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    right: 16px;
    margin-top: -12px;
}

.bt_confirmation::after {
    right: 24px;
    width: 6px;
    height: 6px;
    border-top: 3px solid #EB3F73;
    border-right: 3px solid #EB3F73;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
}

.bt_confirmation:hover {
    border: none;
}

.personal_info_txt,
.attention_p {
    font-size: 1rem;
    line-height: 1.6;
    color: #707070;
    width: 299px;
    margin: 20px auto;
}

.personal_info_txt a {
    color: #128C95;
}

.attention_p {
    margin: 10px auto 0;
    text-align: left;
}

.copyright {
    background: #707070;
    color: #fff;
    text-align: center;
    font-size: 1rem;
    padding: 20px 0;
}

/*------------------------ 
確認画面
------------------------*/
#top_area.confirm {
    background: #fff;
}

#confirm_area {
    background: #fff;
    padding: 0 5.333% 25px;
    margin-top: 20px;
    border-top: 1px solid #3EB7EC;
}

.selected_box {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.selected_ttl {
    font-size: 1.6rem;
    color: #3EB7EC;
    margin-bottom: 17px;
    font-weight: bold;
}

.selected_item {
    font-size: 1.6rem;
    color: #484848;
    padding-left: 5px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.form_info {
    width: 299px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px auto 0;
}

.bt_prev, .bt_submit {
    margin-top: 20px;
    height: 54px;
    border-radius: 7px;
}

.bt_prev {
    background: #cecece;
    border-bottom-color: #c2c2c2;
    height: 46px;
}

/*------------------------ 
完了画面
------------------------*/
.content_wrap {
    background: #fdfdfd;
    padding-bottom: 25px;
}

.done {
    padding: 0 5.333%;
    font-size: 1.6rem;
    line-height: 1.8;
}

.done_txt {
    padding: 30px 5%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.btn_reTOP {
    padding: 0 5.333% 20px;
}

.btn_reTOP a {
    color: #fff;
    background: linear-gradient(-90deg, #56C3F3 20%, #37A8DA 100%);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.20);
    border: none;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    height: 48px;
    display: block;
    border-radius: 7px;
    line-height: 48px;
    width: 242px;
    position: relative;
    margin: 0 auto;
}

.btn_reTOP a::after {
    position: absolute;
    content: "";
    display: inline-block;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
    }


@media print, screen and (max-width:359px) {
    .innerWrap {
    padding: 0 2.5% 6px;
}

.area .radio_box {font-size: 1.3rem;}
.font12 {font-size: 1.1rem !important;}

}

@media print, screen and (min-width:768px) {
    .pc_none {display: none;}
}

@media print, screen and (min-width:769px) {
    /*告知エリア（テキスト）*/
    .campaign_txt {
        width: 684px;
        padding: 15px;
    }
    h1 {
        font-size: 3rem;
        padding: 60px 0 30px
    }

    .quote {
        font-size: 1.5rem;
        margin: 0 auto 20px;
        text-align: center;
    }
    
    .input_ttl_cate {
        font-size: 2.2rem;
        margin: 40px 0 20px;
    }
    
    .bnr {
        width: 684px;
        margin: 15px auto;
    }
    .w_30 select {
        width: 32.8%;
    }
    .bt_confirmation {
        width: 420px;
    }
    
    .purpose {
        height: auto;
    }
    
    .purpose + .more_purpose,
    .country.wh + .more_purpose {display: none;}
    
    .personal_info_txt, .attention_p {
        width: 420px;
        font-size: 1.2rem;
    }
    .desk {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .purposeBtn,
    .soudan1 .radio_2c,
    .desk .radio_1c {
        margin-right: 2.39%;
        width: 31.736%;
        flex-grow: inherit;
    }
    /*.radio_2c.full + .radio_2c,*/
    .purposeBtn:nth-child(3n),
    .country .radio_3c:nth-child(5n),
    .soudan1 .radio_2c:nth-child(3n),
    .desk .radio_1c:nth-child(3n) {
        margin-right: 0;
    }

    .desk .radio_2c {
      width: 48%;
      margin-right: 0;
    }
    
    .term .radio_2c {
        width: 48%;
    }

    
    .radio_2c:nth-child(2n) {
        margin-right: 2.39%;
    }

    .radio_2c:nth-child(6n) {
        margin-right: 0;
    }


    .desk .radio_2c:nth-child(2n) {
        margin: 0 0 0 2%;
    }
    
    .term .radio_2c:nth-child(2n) {
        margin-right: 0;
    }

    .radio_2c.full {
        /*margin-right: 2.39%;*/
        margin-right: 0;
        width: 31.736%;
    }
    
    .country .radio_3c {
        margin-right: 1.8%;
        width: 18.56%;
    }
    
    .radio_3c.full {
        margin-right: 2.39%;
        width: 31.736%;
    }
    
    .radio_3c.full:last-child {
        margin-right: 0;
    }
	
	.radio_4c {
		margin-right: 2.39%;
		width: 23.207%;
	}
	
	.radio_4c:nth-child(2n){
		margin-right: 2.39%;
	}

	.radio_4c:nth-child(4n){
		margin-right: 0;
	}

    /*complate blog-news*/
    .ttl_blog, .ttl_news {
        margin: 0 5.333% 15px;
    }
    
    .blog-ul, #news {
        padding: 0 5.333% !important;
    }
    
}
