@charset "utf-8";
/* CSS Document */

/* =========================================================
============================================================
============================================================
reception.css
============================================================
============================================================
========================================================= */

/* -----------------------------------------------------------------------------

リセットCSS

----------------------------------------------------------------------------- */
form input, select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
}
_:lang(x)+_:-webkit-full-screen-document, form input, select{/* safariのinput文字サイズを調整する*/
  font-size: 0.9rem;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    background-color: #E1E1E1;
    background-attachment: fixed;
    word-wrap: break-word;/* 英字折り返し */
    overflow-wrap: break-word;/* 英字折り返し */
    background-size: cover;
    color: #1A1A1A;
}
/* -----------------------------------------------------------------------------

共通

----------------------------------------------------------------------------- */
.mg_top_1{
    margin-top: 1rem;
}
.mg_top_2{
    margin-top: 2rem;
}
.mg_bottom_1{
    margin-bottom: 1rem;
}
.mg_sbottom_2{
    margin-bottom: 2rem;
}
.sp_bottom_1{
    margin-bottom: 0rem;
}
.sp {/* PCレイアウトでSPを消す*/
    display: none;
}
.pc {/* PCレイアウトでPCを表示*/
    display: block;
}
.center{
    text-align: center;
}
/* -----------------------------------------------------------------------------

ヘッダーエリア

----------------------------------------------------------------------------- */
#header{
    padding: 0px;
    background-color: #FFF;
    height: 104px;
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
    box-shadow: 0px 0px 10px -5px #707070;
    border-top: 3px solid #172E70;
}
h1{
    padding: 0px;
    margin-top: 2rem;
    color: #111111;
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 3rem;
}
/* -----------------------------------------------------------------------------

メイン

----------------------------------------------------------------------------- */
#wrap{
    background-color: #FFF;
    width: 920px;
    margin-left: auto;
    padding: 20px;
    border-radius: 10px;
    margin-right: auto;
    box-shadow: 0px 0px 10px -5px #707070;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}
#table-wrap{
    width: 100%;
} 
h2 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #353535;
    text-align: center;
    position: relative;
    height: 60px;
    padding-top: 30px;
    margin-bottom: 1.0rem;
    background-color: #F2F2F2;
}
h2:before {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #353535;
}



/* -----------------------------------------------------------------------------

フォーム部品

----------------------------------------------------------------------------- */
form table,form tr,form th,form td{
        display: block;
}
.col{/* 姓名などPCレイアウトで横並びの場合につかう*/
    display: inline-flex;
    line-height: 2.0rem;
}

.form h3{
    width: 900px;
    border-bottom: none;
    text-align: left;
    color: #2d3e4d;
    padding: 1rem;
    background-color: #F0F0F0;
    margin-bottom: 1rem;
    margin-top: 2rem;
}
.hissu,.ninni{
    padding-right: 0rem;
    position: relative;
}
.hissu::after,.ninni::after{
    content: "必須";
    display: inline-block;
    position: static;
    left: 10px;
    top: 24px;
    border: 1px solid #CCC;
    padding: 5px;
    font-size: 85%;
    background: #be3636;
    color: #FFF;
    margin-right: 16px;
    margin-left: 12px;
}
.hninni::after,.ninni::after{
    content: "任意";
    display: inline-block;
    position: static;
    left: 10px;
    top: 24px;
    border: 1px solid #CCC;
    padding: 5px;
    font-size: 85%;
    background-color: #6596B5;
    color: #FFF;
    margin-right: 16px;
    margin-left: 12px;
}

.td-txt{/* 姓名など表記*/
    width: 6rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 12px;
    margin-left: 10px;
}
.txt-m{/* チェック画面でのテキスト*/

}
.txt-sup{/* 補足説明*/
    padding-left: 0rem;
    padding-right: 0rem;
    margin-left: 10px;
    line-height: 1.6rem;
}
.txt-red{/* 赤文字*/
    color: #BC2427;
}

form td{
    width: 920px;
    padding-top: 0.5rem;
    padding-right: 10px;
    padding-left: 0rem;
    padding-bottom: 1rem;
}
form input[type="text"]{
    width: 70%;
    margin-right: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}

form input[type="email"]{
    width: 70%;
    margin: 10px auto;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}
form input[type="password"]{
    width:70%;
    margin-right: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}

select{
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}
select {/* 右矢印復活CSS*/
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
select::-ms-expand {/* IE,Edgeの右矢印復活CSS*/
    display: block;
}
textarea{
    width: 93%;
    margin-right: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}
.post{
    background-color: #C1494B;
    width: 100%;
}
.attention{
    display: inline-block;
}
.smallinput{
    width: 100px !important;
}



/* -----------------------------------------------------------------------------

ボタン部分

----------------------------------------------------------------------------- */
.btn-wrapper {
  padding: 20px;
  text-align: center;
}
.btn-wrapper span {
    line-height: 1.8rem;
}
.check-box {
    margin-bottom: 20px;
    font-weight: bold;
}
.check {
  display: none;
}
.check + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2rem 0;
  padding: 0 0 0 2rem;
  position: relative;
}
.check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  content: "";
  display: block;
  height: 1.3rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3rem;
}
.check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(178, 34, 34, 0.8);
  border-left: 3px solid rgba(178, 34, 34, 0.8);
  content: "";
  display: block;
  height: 0.6rem;
  left: 1%;
  margin-top: -0.2rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 1rem;
}
.check:checked + span::after {
  opacity: 1;
}
.submit {
  -webkit-appearance: none;
  background-color: rgba(178, 34, 34, 0.8);
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  margin: 0 0 1rem;
  padding: 0.6rem 3rem;
  text-decoration: none;
  border-radius: 4px;
}
.submit:hover,
.submit:focus {
  outline: none;
  background-color: rgba(178, 34, 34, 1);
}
.submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}
form button {
    -webkit-appearance: none;
    background-color: rgba(90, 90, 90, 0.8);
    background-image: none;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    margin-top: 0;
    margin-right: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0.6rem 3rem;
    text-decoration: none;
}
form button:hover {
    background-color: rgba(100, 100, 100, 1.0);
}
input:disabled {
  cursor: default;
  opacity: 0.5;  
}


/* -----------------------------------------------------------------------------

フッターエリア

----------------------------------------------------------------------------- */
footer{
    margin: 2rem;
    text-align: center;
}
footer p{
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.6rem;
}
/* -----------------------------------------------------------------------------

チェック画面

----------------------------------------------------------------------------- */
#table-wrap-check td {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.under-line {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #BDBDBD;
    border-top: none;
    padding: 0;
    line-height: 1.4rem;
}
/* -----------------------------------------------------------------------------

完了画面

----------------------------------------------------------------------------- */
.center {
    text-align: center;
}
.completion-txt {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.4rem;
}
.close-button {
    -webkit-appearance: none;
    background-color: rgba(178, 34, 34, 0.8);
    background-image: none;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.2rem;
    margin-top: 0;
    margin-right: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    padding: 0.6rem 3rem;
    text-decoration: none;
}
.close-button:hover {
    background-color: rgba(178, 34, 34, 1.0);
}

/* -----------------------------------------------------------------------------

修正確認画面

----------------------------------------------------------------------------- */
.update-txt {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.4rem;
}
.input-small {
    width: 14rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* -----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */
@media (max-width:970px){/* 画面サイズが970px以下の場合*/
#wrap{
    width: 80%;
}
#table-wrap{
    width: 100%;
} 
.sp_bottom_1{
    margin-bottom: 1rem;
}

h3{
    width: 98%;

}

form input[type="text"],[type="email"],textarea{
    width: 96%;
}
form table,form tr,form th,form td{
    display: block;
    }
form tr{
    width: 78vw;
}
form th{
    width: auto;
    border-bottom: none;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
}
form td{
    width: 100%;
}
.col{/* 姓名などPCレイアウト横並びを解除*/
    display: block;
}
.td-txt{
    width: 6rem;
    padding-left: 0rem;
    padding-right: 0rem;
    padding-top: 0px;
    margin-left: 10px;
    padding-bottom: 9px;
    display: block;
    margin-top: 6px;
}
.hissu::after,.ninni::after{
    top: 14px;
    right: auto;
    left: 20px;
}
.hissu::after,.ninni::after{
    padding: 0 5px;
}
}
/* -----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */
@media (max-width:596px){/* 画面サイズが596px以下の場合*/
.sp {/* SpレイアウトでSPを表示*/
    display: block;
}
.pc {/* SPレイアウトでPCを消す*/
    display: none;
}
h1{
    padding: 0px;
    margin-top: 1.5rem;
    color: #111111;
    font-weight: normal;
    font-size: 1.0rem;
    line-height: 1.2rem;
}
.submit {
    font-size: 1.0rem;
    margin-top: 0;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.6em 1.5rem;
    text-decoration: none;
}
form button {
    font-size: 1.0rem;
    margin-top: 0;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
}



}







/* =========================================================
============================================================
===========================================================
サインインページ
===========================================================
===========================================================
========================================================= */



.signin-col{
    display: flex;
    width: 80%;
    margin: auto;
}


.signin-left{
    width: 30%;
    padding-top: 22px;
}
.signin-right{

    width: 70%;
}
.txt-box{
    width: 70%;
    margin: auto;
    text-align: center;
}

.error-txt{
    color: #AD0002;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
}

.txt_size_sss {/* 極小小の文字サイズ */
	font-size: 0.6rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	padding-top: 1em;
}
.txt_size_ss {/* 極小の文字サイズ */
	font-size: 0.72rem;
	line-height: 1.4rem;
	letter-spacing: 0.1rem;
	padding-top: 1rem;

}
.txt_size_s {/* 小の文字サイズ */
	font-size: 0.85rem;
	line-height: 1.5rem;
	padding-top: 1rem;

}
.txt_size_m {/* 中の文字サイズ */
	font-size: 1.0rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_l {/* 大の文字サイズ */
	font-size: 1.2rem;
	line-height: 2.2rem;
	padding-top: 0.8rem;
	letter-spacing: 0.15rem;
}
.txt_size_ll {/* 大の文字サイズ */
	font-size: 1.4rem;
	line-height: 2.0rem;
	padding-top: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.15rem;
}






/* =========================================================
============================================================
===========================================================
  プログラム
===========================================================
===========================================================
========================================================= */
.program-h3 {
	position: relative;
	font-size: 1.5rem;
	font-weight: 500;
	border-bottom: 1px solid #D6C9D0;
	color: #1B2A43;
	line-height: 2.8rem;
	letter-spacing: 0.1rem;
	padding-top: 0.5rem;
	padding-bottom: 0.4rem;
	margin-top: 2.0rem;
}
.program-h3:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20%;
    height: 3px;
    content: '';
    background-color: #F99300;
}.program-h3 span {
    font-size: 1.2rem;
}
.program-h4 {
    position: relative;
    font-size: 1.2rem;
	font-weight: 700;
    color: #1B2A43;
    line-height: 2.8rem;
    letter-spacing: 0.1rem;
    padding: 0.5rem;
    margin-top: 2.0rem;
    background-color: #F9F9F9;
}
.program-h4 span {
    background-color: #E4E4E4;
    margin-top: 10px;
    margin-right: 10px;
    margin-left: 15px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 13px;
    border-radius: 5px;
}
.program-row {
    display: flex;
    border-bottom: 1px solid #D4D4D4;
}
.program-leftbox {
    width: 80%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-right: 1rem;
}
.program-rightbox {
    float: right;
    width: 20%;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}
.program-day {
    display: flex;
    border-bottom: 1px solid #D4D4D4;
}
.program-title-1 {
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 1.5rem;
    line-height: 2.0rem;
    color: #1E3556;
    text-indent: -1.5rem;
    margin-bottom: 0.5rem;
}
.program-title-2 {
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 0rem;
    line-height: 2.0rem;
    color: #1E3556;
    text-indent: 0rem;
    margin-bottom: 0.5rem;
}
.program-zachou {
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 2rem;
    line-height: 2.0rem;
    color: #C55600;
    margin-bottom: 1rem;
    background-color: #E9E7E7;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: 1rem;
}
.program-name1 {
    line-height: 1.4rem;
    padding-left: 3rem;
    text-indent: 0rem;
    }

.program-button {
    display: block;
    border-radius: 4px;
    color: #FFFFFF;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    align-items: center;
    text-decoration: none;
    -webkit-transition: all .5s;
    padding-right: 1.0rem;
    padding-left: 1.0rem;
    transition: all .5s;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    height: 50px;
}
.program-button a{
    color: #FFFFFF;
    text-decoration: none;
    line-height:3rem;
}
.program-button:active {
    color: #FFFFFF;
}
.program-button:visited {
    color: #FFFFFF;
}
.program-button:hover {
	opacity: 0.6 ;
	transition: 0.8s ;
}
.program-button-blue {
    background-color: #3A84F5;
}
.program-button-green {
    background-color: #34A400;
}
.program-button-orange {
    background-color: #F85C00;
}

.zoom-png {
    width: 700px;
    text-align: center;
    background-color: #C7D3E5;
    border: 1px solid #EBEBEB;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 3rem;
}
.zoom-png:hover {
    background-color: #DEE4ED;
    transition: all .5s;
}
.zoom-png img {
	width: 20%;
}




@media screen and (max-width: 960px) {
/*==========================================================
  プログラム
========================================================= */
.program-row {
    display: block;

}
.program-leftbox {
    width: 90%;
    float: none;
    margin-left: 1rem;
}
.program-rightbox {
    display: block;
    float: none;
    align-items: center;
    width: 90%;
    margin: 20px auto;
    text-align: center;
}
.program-name1 {

    padding-left: 0rem;
    text-indent: 0rem;
}
}


/*==========================================================
タブ全体
========================================================= */
.tab-wrap {
    margin:0 auto 40px;
    border-radius:6px;
    /* ← overflow を削除！ */
}

.tab-wrap input[type="radio"] {
    position:absolute;
    opacity:0;
    pointer-events:none;
}

/* タブバー（sticky設定） */
.tab-bar {
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    font-size: 1.6rem;
    background:#fff;
    border-bottom:1px solid #ddd;
}

.tab-bar label {
    flex:1;
    padding:18px;
    text-align:center;
    font-weight:bold;
    cursor:pointer;
    border-bottom:3px solid transparent;
    transition:.2s;
}

.tab-bar label:hover {
    background:#f9fafc;
}

  /* アクティブ状態 */
#tab1:checked ~ .tab-bar label[for="tab1"],
#tab2:checked ~ .tab-bar label[for="tab2"] {
    border-bottom: 3px solid #F3CC00;
    color: #FFF;
    background: #D45557;
}

/* パネル */
.panels { padding:20px; }
.panel { display:none; }
#tab1:checked ~ .panels #panel1 { display:block; }
#tab2:checked ~ .panels #panel2 { display:block; }
  
  
  