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

/* =========================================================
============================================================
============================================================
registration.css
============================================================
============================================================
========================================================= */

:root{
  --container: 1008px;
  --gutter: 24px;
  --accent: #247703;   /* キーカラーグリーン */
  --sub: #b3d57d;   /* サブ明るいグリーン */
  --text: #505f52;
  --bg: #fff;
}




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

リセット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: "Noto Sans JP","メイリオ", "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: var(--text); 
}
/* -----------------------------------------------------------------------------

共通

----------------------------------------------------------------------------- */
.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 var(--accent);
}
h1{
    padding: 0px;
    margin-top: 2rem;
    color: var(--accent);
    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: var(--accent);
    text-align: center;
    position: relative;
    height: 60px;
    padding-top: 30px;
    margin-bottom: 1.0rem;
    background-color: #fefcf1;
}
h2:before {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: var(--sub);
}


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

フォーム部品

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

h3 {
  width: 900px;
  border-bottom: none;
  text-align: left;
  color: #2d3e4d;
  padding: 1rem;
  background-color: #F0F0F0;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

/* 共通設定 */
.hissu,
.ninni {
  position: relative;
}

/* 必須 */
.hissu::after {
  content: "必須";
  display: inline-block;

  margin-left: 12px;

  padding: 5px 8px; /* ← ちゃんと効く */

  font-size: 85%;
  background: #be3636;
  color: #fff;
  border-radius: 4px;
}

/* 任意 */
.ninni::after {
  content: "任意";
  display: inline-block;

  margin-left: 12px;

  padding: 5px 8px; /* ← 同様に効く */

  font-size: 85%;
  background: #6596B5;
  color: #fff;
  border-radius: 4px;
}

.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: 96%;
    margin-right: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}

form input[type="email"]{
    width: 93%;
    margin-right: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 2px solid #dfe2e3;
    background-color: #f1f4f6;
}
form input[type="password"]{
    width: 96%;
    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;
}


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

プライバシーポリシー部分

----------------------------------------------------------------------------- */
.privacy-policy-wrapper {
    background-color: #FFF9E8;
    margin-left: 10%;
    margin-right: 10%;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    text-align: center;
}

.privacy-policy-title {
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.privacy-policy-text {
    font-size: 0.9rem;
    line-height: 1.8rem;
}
/* -----------------------------------------------------------------------------

ボタン部分

----------------------------------------------------------------------------- */
.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;
}
.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: 90%;

}

form input[type="text"],[type="email"],textarea{
    width: 90%;
}
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;
}

}
/* -----------------------------------------------------------------------------
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */
@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;
}
.privacy-policy-wrapper {
    margin-left: 2%;
    margin-right: 2%;
    padding: 0.8rem;
}

}

/* ----radioボタンの表示不具合を修正する--------------------------------------------
-----------------------------------------------------------------------------
-----------------------------------------------------------------------------
----------------------------------------------------------------------------- */

.radio_col {
 display: flex;
}
.radio_col .radio_col2 {
margin-right: 24px;
}

@media (max-width:596px){/* 画面サイズが596px以下の場合*/
.radio_col .radio_col2 {
margin-right: 20px;
display: flex;
}
}

input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
  width: auto;
  height: auto;
  border: none;
  padding: 0;
  margin: 0px 6px 0 0;
  vertical-align: middle;
  background: initial;
}

label {
  cursor: pointer;
}

label input[type="radio"] {
  display: inline-block;
}
