/*
Theme Name: My Original Theme
Author: Osusume Card Loan
Version: 1.0
*/

@charset "UTF-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

html {

}
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
    color: #333333;
}


.accordion-003 {
    width: calc(100% - 20px);
    margin-bottom: 7px;
    border-bottom: 1px solid #d0d0d0;
    border-top: 1px solid #d0d0d0;
    height: auto;
}

.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 6px 3em;
    color: #333333;
    font-weight: 400;
    cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
    text-align: center;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0 0 5px 20px;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}


a {
    color: inherit;          /* 親要素の文字色をそのまま使う */
    text-decoration: none;   /* 下線を消す */
  }
  /* もし visited（既訪問リンク）も同じにしたいなら */
  a:visited {
    color: inherit;
    text-decoration: none;
  }