
.page-inner {
  background: white;
  border-radius: 0 0 100px 100px;
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 100px;
}

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

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

.page-section {
  padding: 0 60px;
  margin-top: 100px;
}


/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.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;
}


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

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

.heading-tertiary.white {
  color: white;
}

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


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

.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-square {
  position: relative;
  display: inline-block;
  text-align: left;
  background: var(--color-blue);
  border: solid 1px var(--color-blue);
  border-radius: 10px;
  width: 100%;
  color: white;
  font-weight: 500;
  padding: 20px 80px 20px 20px;
  transition: all .3s ease;
}

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

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

a.btn-type-square:hover {
  text-decoration: none;
  background: transparent;
  color: var(--color-blue);
}

a.btn-type-square:hover::after {
  background: url('../img/common/arrow.svg') no-repeat;
  background-size: 100%;
}


/*------------------------------------------*/
/* リスト 黒丸
/*------------------------------------------*/

.list-type-circle-black li {
  position: relative;
  text-align: left;
  padding-left: 1em;
}

.list-type-circle-black li::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
}


/*------------------------------------------*/
/* リスト 青丸
/*------------------------------------------*/

.list-type-circle {
  margin-top: 1em;
}

.list-type-circle li {
  position: relative;
  text-align: left;
  padding-left: 15px;
}

.list-type-circle li::before {
  content: '';
  display: inline-block;
  background: var(--color-main);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0.5em;
  left: 0;
}

.list-type-circle.pink li::before {
  background: var(--color-pink);
}

.list-type-circle li+li {
  margin-top: 0.5em;
}

@media screen and (min-width: 768px), print {
  .list-type-circle li::before {
    top: 0.6em;
  }
}

/* 入れ子になった場合の青丸スタイル解除用 */
.list-type-circle .list-type-circle-black li {
  padding-left: 1em;
}

.list-type-circle .list-type-circle-black li+li {
  margin-top: 0;
}

.list-type-circle .list-type-circle-black li::before {
  content: '・';
  display: inline;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  position: relative;
  top: auto;
  left: auto;
}



/*------------------------------------------*/
/* お問い合わせ side
/*------------------------------------------*/

.contact-container {
  position: fixed;
  bottom: 40px;
  right: 10px;
  z-index: 1000;
  cursor: pointer;
}

.contact-container a {
  display: inline-block;
  position: relative;
  background: #FE7F00;
  border: solid 10px #FF9F48;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 60px 10px 40px 10px;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.contact-container a:hover {
  text-decoration: none;
  transform: translateY(5px);
}

.contact-container a::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_phone.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 100/155;
  width: 25px;
  height: auto;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-container .catchcopy {
  font-size: 1rem;
  line-height: 1.1;
}

.contact-container .catchcopy .large {
  font-size: 1.6rem;
}

.contact-container .phone-number {
  font-family: var(--font-oswald);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.contact-container .business-hours {
  font-size: 0.8rem;
}


/*------------------------------------------*/
/* お問い合わせ page
/*------------------------------------------*/

.page-contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 540px;
  column-gap: 20px;
  align-items: center;
  background: var(--linear-gradient-orange);
  border-radius: 200px 0 200px 200px;
  padding: 100px;
  z-index: 10;
}

.page-contact .list-wrap {
  text-align: left;
}

.page-contact .list li+li {
  margin-top: 20px;
}

.page-contact .list li {
  position: relative;
  text-align: left;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 30px;
}

.page-contact .list li::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_check_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 16/14;
  width: 16px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page-contact .square {
  display: inline-block;
  border: solid 1px white;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 5px 10px;
  margin-top: 30px;
  margin-left: 60px;
}

.page-contact .content+.content {
  margin-top: 10px;
}

.page-contact .content a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px white;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  transition: all .3s ease;
}

.page-contact .content a:hover {
  text-decoration: none;
}


/* phone --------------------------------*/
.page-contact .content.phone a {
  line-height: 1.1;
  padding: 20px;
}

.page-contact .phone-number {
  position: relative;
  font-family: var(--font-oswald);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.page-contact .phone-number::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_phone.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 100/155;
  width: 15px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page-contact .phone-hours {
  text-align: left;
  line-height: 2;
}

.page-contact .phone-text {
  font-size: 1.2rem;
}

.page-contact .phone-number {
  font-size: 3rem;
  padding-left: 45px;
}

.page-contact .phone-number::before {
  width: 35px;
}

.page-contact .phone-hours {
  font-size: 0.9rem;
  margin-left: 20px;
}

/* mail --------------------------------*/
.page-contact .content.mail a {
  padding: 20px;
}

.page-contact .mail-heading::before {
  content: '';
  display: inline-block;
  background: url('../img/common/icon_mail.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 100/76;
  width: 30px;
  height: auto;
  position: absolute;
}

.page-contact .mail-text {
  font-size: 0.9rem;
}

.page-contact .mail-heading {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  padding-left: 60px;
  margin-left: 40px;
}

.page-contact .mail-heading::before {
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}


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

/* 汎用的なhoverアニメーション用クラス */
.hover-spread {
  position: relative;
  display: inline-block;
  /* カスタマイズ可能な変数 */
  --border-width: 1px;
  --border-color: white;
  --spread-distance: 15px;
  --animation-duration: 0.8s;
}

.hover-spread::before {
  content: '';
  display: block;
  border: var(--border-width) solid var(--border-color);
  position: absolute;
  inset: calc(var(--border-width) * -1);
  opacity: 0;
  pointer-events: none;
  transition: all var(--animation-duration) ease;
}

.hover-spread:hover::before {
  inset: calc((var(--spread-distance) / 2 + var(--border-width)) * -1);
  animation: fadeOut var(--animation-duration) ease forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
