
/*------------------------------------------*/
/* section
/*------------------------------------------*/

.page-section {
  width: 1100px;
  margin: 0 auto;
  margin-top: 160px;
}

.page-section-back {
  background: white;
  border-radius: 40px;
  width: calc(100% - 120px);
  max-width: 1320px;
  padding: 100px 100px;
  margin: 0 auto;
  margin-top: 160px;
}

.page-section-back.blue {
  background: var(--color-main);
}

.page-section-back .page-section {
  width: 100%;
  margin-top: 0;
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 2;
}

.text+.text {
  margin-top: 1em;
}

/* 注意書き */
.notes {
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

.text-red {
  color: var(--color-red);
}

/*------------------------------------------*/
/* 改行
/*------------------------------------------*/

/* 強制改行 --------------------------------*/
.break-word {
  word-wrap: break-word;
}

/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: var(--color-main);
  font-weight: 500;
}

.link-blank:visited {
  color: var(--color-main);
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_blank.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 30/24;
  width: 15px;
  height: auto;
  margin-left: 3px;
}


/*------------------------------------------*/
/* PDFリンク
/*------------------------------------------*/

.link-pdf {
  color: var(--color-main);
  font-weight: 500;
}

.link-pdf:visited {
  color: var(--color-main);
}

.link-pdf::after {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
  height: auto;
  margin-left: 5px;
}

/*------------------------------------------*/
/* ボタン
/*------------------------------------------*/

.btn-type-wrap+.btn-type-wrap {
  margin-top: 40px;
}

a.btn-type-rounded {
  position: relative;
  display: inline-block;
  text-align: left;
  background: var(--color-main);
  border: solid 1px var(--color-main);
  border-radius: 40px;
  width: 800px;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 20px 100px 20px 60px;
  transition: all .5s ease;
}

.btn-type-rounded::after {
  content: '';
  display: inline-block;
  background: url('../img/common/arrow.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 48/18;
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 40px;
  transition: all .5s ease;
}

.btn-type-rounded.blank::after {
  background: url('../img/common/icon_blank_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 30/24;
  width: 20px;
  transform: translateY(-50%);
}

.btn-type-rounded.pdf::after {
  background: url('../img/common/icon_pdf.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 17/20;
  width: 17px;
  transform: translateY(-50%);
}

.btn-type-rounded:visited {
  color: white;
}

a.btn-type-rounded:hover {
  text-decoration: none;
  transform: translateY(5px);
}



/*------------------------------------------*/
/* h3
/*------------------------------------------*/

.heading-tertiary {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 80px;
}

.heading-tertiary .color {
  color: var(--color-pink);
}

.heading-tertiary .min {
  font-size: 2rem;
}

.heading-tertiary .en {
  font-size: 3.2rem;
  font-weight: 500;
}

/*------------------------------------------*/
/* h5
/*------------------------------------------*/

.heading-quinary {
  display: inline-block;
  border: solid 2px var(--color-main);
  border-radius: 10px;
  color: var(--color-main);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1;
  padding: 10px 40px;
  margin-bottom: 60px;
}

.heading-quinary.blue {
  background: var(--color-main);
  color: white;
}

.heading-quinary.black {
  background: var(--color-text);
  color: white;
}

.heading-quinary.white {
  background: transparent;
  border-color: white;
  color: white;
}
