@charset "UTF-8";
/* ○○.css - ○○ページ個別スタイル */
body{
    background-color: var(--beige);
}

.custom-accordion {
  width: 100%;
  max-width: 600px; 
  display: flex; 
  flex-direction: column;
  align-items: center;
}


.accordion-title {
  width: 80%;
  height: 40px;
  border: 1px solid var(--skyblue);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: opacity 0.2s ease;
  color: #3e3a39;
  margin-top: 20px;
}




.accordion-content {
  height: auto; 
  width: 80%; 
  margin-left: 10%;
  padding: 15px;
  border: 1px solid var(--skyblue); 
  border-top:none;
  display: flex; 
  flex-direction: column;
  align-items: center;
  background-color: #ffffff; 
  line-height: 1.6;
  background-color: var(--white);
  font-size: 14px;
}

.accordion-title::after {
    content: "";
    position: absolute;
    right: 1em;
    width: 2px;
    height: 0.75em;
    background-color: var(--skyblue);
    transition: all 0.3s;    
}

.accordion-title:before{
    content: "";
    position: absolute;
    right: 1em;
    width: 2px;
    height: 0.75em;
    background-color: var(--skyblue);
    transition: all 0.3s;
    transform:rotate(90deg);
}
.accordion-title.close::after {
    transform: rotate(90deg);
}

.buntitle {
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-left: 13px;
}
.buntitle::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 0;
    border-left: 6px solid #205781;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 13px;
}

.gaiyo{
   background-color: var(--white);
    border: 1px solid var(--emeraldgreen);
    margin: auto 20px;
    margin-top: 50px;
    position: relative;
    color: #3e3a39;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 20px;
}


.gaiyo::before{
   position: absolute;
    content: "";
    background-color: var(--skyblue);
    height: 20px;
    width: 30%;
    top: -10px;
}


.orime1{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 0;
    border-color: var(--skyblue) transparent transparent transparent;
}

.orime2{
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent var(--beige) transparent;
}

.cheerlink {
    color: var(--emeraldgreen);
    text-decoration: underline;
    text-underline-offset: 4px;
}
