@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf{display: inline-block;}

/* キーカラー*/
.key-color{
  color:#EE4136;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  /* background-color: white; */
}

body,
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
 
a {
  text-decoration: none;
}


ul {
  list-style: none;
}


.section-title{
  color:#EE4136;
  font-size: 3em;
  font-family:'CenturyGothic';
}


main{
  margin-top: 150px;
  margin-bottom: 100px;
}
@media screen and (max-width: 460px) {
  main{
    margin-top: 100px;
    margin-bottom: 0;
  }
}

/* 必須マークを表示 */
label.required {
  display: block;
}
label.required:after {
  margin-left: 1.0em;
  padding: 0px 6px 0px 6px;
  border-radius: 4px;
  font-size: 0.6em;
  color: white;
  background-color: #C44;
  content: "必須";
}

#main{
  margin-bottom: 100px;
  display: block;
}

.spinner-box{
  text-align: center;
  color: gray;
}

.img_128 {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 10px;
}


/* ========================================
    続きを読む  URL:https://kinocolog.com/css_readmore/
========================================= */
.readmore{
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 10px;
  border: 1px solid #CCC;
}

.readmore-content{
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 50px;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 10px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

/* 続きを読むボタン */
.readmore-label{
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 10px;
  background-color: #ff7777;
  border-radius: 10px;
  color: #FFF;
}
.readmore-label:before{
  content: '続きを読む';
}

.readmore-check{
  display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
  /* display: none; */
}
.readmore-check:checked ~ .readmore-label:before{
  content: '閉じる';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
  height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}
.readmore-label:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078  続きを読む";
  cursor: pointer;
}
.readmore-check:checked ~ .readmore-label:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f077  閉じる";
  cursor: pointer;
}



/* ========================================
    フッター
========================================= */
footer {
  width: 100%;
  height: 60px;
  background-color: #474747;
  color: #fff;
  margin-top: auto;
}

.footer-item{
  margin-left: 20px;
}

footer nav {
  margin-top: 19px;
  width: 100%;
  text-align: center;

}
/* スクリーンが640px以下のCSSを適用 */
@media screen and (max-width: 640px) {
  footer nav {
    margin-top: 10px;
  }
}

footer nav ul li {
  float: left;
  font-size: 14px;
}

#payjp{
  text-align: center;
}


.matter-title{
  font-weight: bold; 
}

.profile-title{
  font-weight: bold;
}


.profile-img{
  width: 128px;
  height:128px;
  border-radius: 50%;
  object-fit:cover;
  margin-top: 10px;
}


.profile-img-list{
  width: 70px;
  height:70px;
  border-radius: 50%;
  object-fit:cover;
}

.td-profile{
  width: 50px;
  height: 50px;
}


.profile-img-width-auto{
  padding: 3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit:cover;
}

.home-title{
  font-weight: bold;
  font-size: 22px;
}

.label-title{
  font-weight: bold;
  display: block;
  font-size: 22px;
}


.gray-color{
  color: gray;
}

.description{
  min-height: 150px;;
}

.itle-style-1{
  color: gray;
  font-weight: bold;
  font-size: 22px;
}

  
.cancel-info{
  display: block; width:100%;
}


.title-block{
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.send_info{
  text-align: center;
  margin-top: 10px;
}