@charset "UTF-8";

.section_title {
  margin-bottom: 60px;
  padding-bottom: 28px;
  color: #BC1983;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-bottom: 3px solid #BC1983;
}
/**********************************************************
 * select language
 **********************************************************/
  #language .wrapSelect {
    position: relative;
    float: right;
    display: inline-block;
    width: 120px;
    height: 30px;
    font-size: 12rem;
    border: solid 1px #b10e65;
    border-radius: 1.25em;
    box-sizing: border-box;
    margin-top: 60px;}
#language .wrapSelect::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 3.5px 0 3.5px;
      border-color: #b10e65 transparent transparent transparent;
      pointer-events: none; }
#language .wrapSelect select {
      position: absolute;
      width: 100%;
      height: 100%;
      padding: 0 1.5em;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      outline: none;
      color: #b10e65;
      background: transparent; }
/**********************************************************
 * nav_page
 **********************************************************/
#nav_page {
  padding: 60px 0 94px;
}
#nav_page nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#nav_page nav a {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
}
#nav_page nav a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background: #BC1983;
  border-radius: 50%;
}
#nav_page nav a::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 40%;
  width: 8px;
  height: 8px;
  transform: translateY(-40%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

/**********************************************************
 * what
 **********************************************************/
 #what {
   padding: 0 0 120px;
}
.what_item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.what_item:not(:last-of-type) {
  margin: 0 0 100px;
}
.text {
  padding: 45px 130px 45px 40px;
  max-width: 724px;
  background: #F8EAF3;
  z-index: -1;
  box-sizing: border-box;
}
.text h4 {
  margin: 0 0 30px;
  color: #BC1983;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.text p {
  line-height: 2;
  font-size: 1.8rem;
  font-weight: 700;
}
.image {
  margin-left: -80px;
  max-width: 560px;
  box-sizing: border-box;
  border: 10px solid #fff;
  box-shadow: 0 0 6px rgba(0,0,0,.06);
}
.image img {
  width: 100%;
  height: auto;
}
.reverse .text {
  order: 2;
  padding: 45px 40px 45px 130px;
}
.reverse .image {
  order: 1;
  margin-right: -80px;
}


/**********************************************************
 * history
 **********************************************************/
#history {
  padding: 120px 0 100px;
  background: #F4F4F4;
}

/* タイムライン本体 */
.l-timeline {
  padding: 50px 60px;
  background: #fff;
}
.timeline {
  position:relative;
  display:grid;
  grid-template-columns: 185px 14px 1fr;
  column-gap: 0;
}

/* 縦ライン */
.timeline::before {
  content:"";
  position:absolute;
  left: calc(185px + (14px / 2) - (3px / 2));
  top:0;
  bottom:0;
  width: 3px;
  background: #BC1983;
}

/* 1行 = 1イベント */
.item {
  display: contents; /* 3カラムに分けて配置しやすくする */
}

.date:not(.last),
.dot:not(.last),
.content:not(.last) {
  padding-bottom: 70px;
}
.date,
.content {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
}
.date {
  grid-column: 1;
  color: #BC1983;
  white-space: nowrap;
}

/* 丸 */
.dot {
  grid-column: 2;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}
.dot::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #BC1983;
  border-radius: 50%;
}

.content {
  grid-column: 3;
  padding-left: 26px;
}

/* 文章中のハイライト */
.hl{
  background: #F8EAF3;
  padding: 4px 6px;
}

/**********************************************************
 * qa
 **********************************************************/
#qa {
  padding: 120px 0;
}
.tabs {
  display:flex;
  gap: 40px 10px;
  justify-content:center;
  align-items:flex-end;
  margin-bottom: 40px;
  flex-wrap:wrap;
}
.tab {
  position:relative;
  width: 338px;
  height: 63px;
  padding: 0 18px;
  border: 2px solid #BC1983;
  background:#fff;
  color: #BC1983;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: .02em;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: .15s ease;
  user-select:none;
}
.tab[aria-selected="true"] {
  background: #BC1983;
  color:#fff;
}

/* 選択中の吹き出し三角 */
.tab[aria-selected="true"]::after {
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 21px solid #BC1983;
}

.panel {
  display:none;
}
.panel[hidden] { display:none; }
.panel.is-active { display:block; }

.qa {
  background: #F8EAF3;
  overflow:hidden;
}
.qa + .qa {
  margin-top: 30px;
}
.qa__btn {
  width:100%;
  border:0;
  background: transparent;
  padding: 26px 20px 26px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 25px;
  cursor:pointer;
  font-size: 2.0rem;
  font-weight: 700;
  color: #BC1983;
}
.qa[aria-expanded="true"] .qa__btn {
  padding: 26px 20px 12px 30px;
}
.qa__left {
  display:flex;
  gap: 25px;
  align-items: center;
  flex: 1;
}
.badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color:#fff;
  background: #BC1983;
  flex: 0 0 auto;
}
.qa__qtext{
  overflow-wrap:anywhere;
}
.qa__icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 3.4rem;
  color: #BC1983;
  flex: 0 0 auto;
}

.qa__body {
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}
.qa__body > .qa__inner {
  overflow:hidden;
}
.qa[aria-expanded="true"] .qa__body {
  grid-template-rows: 1fr;
  padding: 0 20px 26px 30px;
}

.answer {
  display:flex;
  gap: 25px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
.badge--a {
  background:#fff;
  color: #BC1983;
}
.answer p + p {
  margin-top: 1em;
}