@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@300&display=swap');

/* 以下、京都府犯罪被害者支援サイトの共通cssを再利用しています。
  ap_styles.lessなどを参照し、classの項目の修正、追加は適宜やっていただいて問題ございません。杉本。 */

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

/*リセットCSS*/

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


html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
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,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}



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

/*共通CSS*/

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

img {
  border-style: none;
  height: auto;
  width: 100%;
  vertical-align: bottom;
}

.ap_hidden {
  display: none !important;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
    cursor:pointer;
}

html {
  overflow: auto;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: black;
  overflow-wrap: break-word;
  word-break: normal;
  overflow-x: hidden;
  max-width: 100vw;
  word-wrap: break-word;
  line-height: 1.8em;
  letter-spacing:0.05em;
  background: linear-gradient(to bottom, #FFF, #CDCDCD);
  min-height: 100vh;
}

ul {
  list-style: none;
}

input:focus::-webkit-input-placeholder {
	color: transparent;
}
input:focus::-moz-placeholder {
	color: transparent;
}
input:focus::-ms-input-placeholder {
	color: transparent;
}
input:focus::placeholder {
	color: transparent;
}
/* 大枠 */
.ap_col_container {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 20px;
}

.ap_col_parent {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  
}
    
/* flexbox */
.ap_flex {
  display: flex;
}
.ap_flex.reverse {
    flex-direction: row-reverse;
  }
.ap_flex.center {
    position: relative;
    /*align-items: center;*/
  }
.ap_flex.wrap {
    flex-wrap: wrap;
  }
.ap_flex.just_center {
    justify-content: center;
  }
.ap_flex.between{
    justify-content: space-between;
  }

@media screen and (max-width: 768px) {
    .ap_flex.sm_block{
        display: block !important;
    }
}

/* テキスト */
.ap_left_text{
  text-align: left;
}
.ap_center_text{
    text-align: center;
}

.ap_right_text{
    text-align: right;
}

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

/*余白*/

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

.ap_margin-top_half {
  margin-top: 15px;
}

.ap_margin-top {
  margin-top: 30px;
}

.ap_margin-top_large {
  margin-top: 60px;
}

.ap_margin-bottom_half {
  margin-bottom: 15px;
}

.ap_margin-bottom {
  margin-bottom: 30px;
}

.ap_margin-bottom_large {
  margin-bottom: 60px;
}
.ap_margin-top-bottom {
  margin-top: 30px;
  margin-bottom: 30px;
}
.ap_margin-top-bottom_large {
  margin-top: 60px;
  margin-bottom: 60px;
}

.ap_padding_half{
    padding: 15px;
}
.ap_padding-right_half{
  padding-right: 15px;
}
.ap_padding-side_half{
  padding-right: 15px;
  padding-left: 15px;
}

.ap_padding{
    padding: 30px;
}
.ap_padding-bottom{
  padding: 30px;
}
.ap_padding-bottom_large{
  padding-bottom: 60px;
}
.ap_padding-top-bottom {
  padding: 30px 0;
}

.ap_margin-bottom {
  margin-bottom: 30px;
}

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

/*色 サイズ*/

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

.ap_font_small{
    font-size: 14px;
}

.ap_font_large{
    font-size: 18px;
}

.ap_font_xlarge{
    font-size: 20px;
}

.ap_font_mostlarge{
    font-size: 25px;
}



@media screen and ( max-width: 600px) {
    
body {
  font-size: 15px;
  line-height: normal;
  letter-spacing:0;
}

.ap_col_container {
  padding: 10px;
}
    


}

/* width */
.ap_width_50p{
  width: 50%;
}
@media screen and (max-width: 768px) {
  .ap_width_50p{
      width: 100%;
  }
}

.ap_width_30p{
  width: 30%;
}
@media screen and (max-width: 768px) {
  .ap_width_30p{
      width: 33%;
  }
}

.ap_width_30p{
  width: 30%;
}
@media screen and (max-width: 768px) {
  .ap_width_30p{
      width: 100%;
  }
}

.ap_width_25p{
  width: 25%;
}
@media screen and (max-width: 768px) {
  .ap_width_25p{
      width: 100%;
  }
}

.ap_width_10p{
  width: 10%;
}
@media screen and (max-width: 768px) {
  .ap_width_10p{
      width: 100%;
  }
}

/* メッセージ */
.message.success{
  background-color:#28a745!important;
  padding-left: 10px;
  color:#FFF;
}
.message.error{
  background-color:#dc3545!important;
  padding-left: 10px;
  margin-bottom: 20px;
  color:#FFF;
}

/* アクティブ項目 */
.active_item{
  background-color:#D5516D!important;
}
.active_item p{
  color:#FFF!important;
}