@charset "UTF-8";

/*koufu 追記*/
h2 {
  font-size: xx-large;
  text-align: center;
  padding: 20px 0;
}

h3 {
  text-align: center;
  font-size: 24px;
}

.attention,
.attention-check {
  background: #ffe8b9ff;
  border-radius: 25px;
  padding: 10px 40px;
}

.attention-check {
  display: flex;
}

.attention span,
.attention-check span,
.attention-container span {
  font-weight: bold;
  color: red;
}

.attention-check p,
.attention-check li {
  position: relative; /* 親要素に相対位置指定 */
}

.attention-check p::before {
  content: "";
  display: inline-block;
  background-image: url(../img/point/p_check.png);
  width: 80px;
  height: 75px;
  margin-right: 6px;
}

.info-text {
  padding: 0 10px;
}

/* 中央寄せ */
.info-text2 {
  text-align: center;
  padding: 20px 10px;
}

.info-text3 {
  padding: 20px 70px;
}

.info-text span,
.info-text3 span {
  font-weight: bold;
  color: red;
}

.responsive-img {
  padding: 20px 0;
  display: block;          
  margin: 0 auto;          
  max-width: 100%;         
  height: auto;            
}

.dl-container{
  border: 5px solid #ff87a2;
  border-radius: 25px;
  padding: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.dl-container-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 5fr 3fr;
}

/*.dl-container-grid p::before {
  content: "";
  background-image: url(../img/common/icon_pdf_03.svg);
  width: 19px;
  height: 19px;
  margin-right: 6px;
}*/

  /* アイコンを設定しない場合*/
 .r6-button-primary-noicon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 375px;
  text-align: center;
  padding: 12px 16px;
  font-size: 20px;
  font-weight: bold;
  background: #ffb561;
  color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

/* ボタンホバー時のエフェクト */
.r6-button-primary-noicon:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* 影を小さくする */
  transform: translateY(2px); /* ボタンを下に少し動かす */
}

/*koufu 追記 end*/

/* susumekata 追記 */
h4 {
  font-size: xx-large;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 3px solid #FF9645;
}

.section-about-type2 {
  padding-bottom: 80px;
  border-bottom: 5px double #FFF2E0;
  width: 80%;                /* 横幅を80%に設定 */
  max-width: 1000px;         /* 最大幅を制限 */
  margin: 0 auto;  
}

.attention-title {
  font-size: 24px;
  background: #ff992f85;
  padding: 10px;
  /* border-radius: 40px 40px 0 0; */
  font-weight: bold;
  text-align: center;
}
.attention-container {
  padding: 20px 50px;
  border: 1px solid #ccc;
}

.susumekata-card-container {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  flex-wrap: nowrap;
}

.susumekata-card-container2 {
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.susumekata-card {
  display: flex;
  background: #f9dcc385;
  /*border-radius: 8px;*/
  box-shadow: 2px 2px 8px rgba(0,0,0,0.15);
  width: 500px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* アニメーション追加 */
  align-items: center;
}

.susumekata-card:hover {
  transform: translateY(3px); /* 下に沈む */
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1); /* 影も少し弱くする */
}

.susumekata-card h3 {
  line-height: normal;
}

.susumekata-card p {
  line-height: normal;
    font-size: medium;
    padding-top: 10px;
}
li.description {
  position: relative; /* 親要素に相対位置指定 */
  padding-left: 1.5em; /* マーク分の余白 */
  line-height: normal;
}

li.description::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
/* susumekata 追記　end */

/* keihi-ichiran */
 body {
    font-family: Arial, sans-serif;
  }
  table {
    border-collapse: collapse;
    width: 100%;
  }
  th, td {
    border: 1px solid #ccc;
    /*padding: 0px 15px; */
    text-align: center;
    font-size: 16px;
    /*line-height: normal;*/
  }
  th {
    width: 150px;
    max-width: 100%;
    background: #dbeeff;
  }
  .accordion-toggle {
    cursor: pointer;
    font-weight: bold;
    text-align: left;
  }
  .accordion-toggle:hover {
    background: #ffffef;
  }
  .accordion-content {
    display: none; /* 初期は閉じる */
  }

  .accordion-content td {
    color: #0066cc;
  }

  /*　point 追記　*/
  .title-default {
    /*font-size: 22px;*/
    font-size: 26px;
    line-height: 1.82;
    /*padding-left: 22px;*/
    padding-left: 40px;
  }
  .title-default:before {
    top: 17px;
    width: 22px;
    height: 22px;
    margin-left: 11px;
  }

  .item-question {
    background: #FF9645;
    margin-bottom: 20px;
    position: relative;
    padding: 5px 5px 5px 40px;
  }
  .icon-plus {
    cursor: pointer;
    padding-right: 0.22rem;
  }
  .icon-plus::after {
    content: "";
    margin-top: -6.5px;
        right: 24px;
        width: 15px;
        height: 15px;
    position: absolute;
    top: 50%;
    background: url(../img/common/icon_expand_bold.svg) no-repeat 0 0/100% auto;
  }

.icon {
  position: absolute;
  top: 25%;
  right: 16px;
  width: 30px;
  height: 30px;
  transform: rotate(45deg); /* 初期：◇ */
  transition: transform 0.4s ease;
  border: 3px solid white;
  box-sizing: border-box;
  background: transparent;
}

/* 開いたとき（□＋－） */
.accordion.active .icon {
  transform: rotate(0deg); /* □に戻す */
}

.accordion.active .icon::before {
  opacity: 0; /* 縦線を消す → ＋が－になる */
}

  .content {        
    display: none;
  }

  .accordion.active .icon-plus::after {   
    background-position: 0 bottom;
  }