/*
====================================================================
 Fonts
====================================================================
*/
/* Noto Serif Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-serif-jp-bold.woff2") format("woff2");
}
/* Noto Serif Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-serif-jp-medium.woff2") format("woff2");
}
/* Noto sans Bold */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("./fonts/noto-sans-jp-bold.woff2") format("woff2");
}
/* Noto sans Medium */
@font-face {
  font-display: swap;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("./fonts/noto-sans-jp-medium.woff2") format("woff2");
}
/*
====================================================================
 Colors
====================================================================
*/
/*
====================================================================
 Mixins
====================================================================
*/
/*
====================================================================
 BASIC
====================================================================
*/
html,
body {
  min-width: 1080px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans", "Hiragino Kaku Gothic Pro", sans-serif;
  text-rendering: optimizeLegibility;
  vertical-align: baseline;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  position: relative;
  color: black;
}

*, *::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
  font-weight: 800;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}

button {
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
}

.re {
  color: #c91721;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*
====================================================================
 HEADER
====================================================================
*/
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-container .consultation__button {
  display: grid;
  grid-template-columns: repeat(3, auto);
  padding: 0 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.logo {
  display: grid;
  grid-template-columns: auto 1fr;
  padding-left: 30px;
  align-items: center;
}
.logo h1 span {
  display: block;
  line-height: 1;
}
.logo__symbol img {
  height: 48px;
}
.logo__tagline {
  font-size: 12px;
  padding-left: 3px;
}
.logo__title img {
  height: 36px;
}

@media (max-width: 1219px) {
  .logo {
    padding-left: 15px;
  }
  .logo__tagline {
    font-size: 11px;
  }
}
@media (max-width: 1180px) {
  .logo__symbol img {
    max-width: 114.5px;
    height: auto;
  }
  .logo__title img {
    max-width: 213px;
    height: auto;
  }
  .logo__tagline {
    font-size: 10px;
  }
}
.logo {
  height: 48px;
}

.keyvisual {
  position: relative;
}
.keyvisual::before {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: 4px;
  background: url(../images/header_border.svg);
}
.keyvisual .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.keyvisual .keyvisual__image {
  display: flex;
  justify-content: center;
}
.keyvisual .keyvisual__image img {
  width: 100%;
}

/*
====================================================================
 COMMON
====================================================================
*/
#root {
  width: 100%;
  overflow-x: hidden;
}

section > div {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
section.in-viewport > div {
  opacity: 1;
  transform: translateY(0);
}

.container {
  margin: 0 auto;
  position: relative;
}
.sub-section .container {
  padding: 80px 0;
}

.section__header {
  background-color: #061757;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.section__header::after {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 40px;
  background-color: #061757;
  bottom: -39px;
  left: calc(50% - 40px);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.section__header p {
  color: white;
  font-size: 24px;
  margin-top: -6px;
}

h2 {
  font-size: 34px;
  font-family: "Yu Mincho", "Noto Serif", serif;
  color: white;
  line-height: 1.6;
  padding-bottom: 12px;
}
h2 > span {
  background: linear-gradient(to top, white 2px, transparent 2px);
  padding-bottom: 5px;
}
h2 > span .title__icon {
  display: inline-block;
  height: 32px;
  margin-right: 10px;
  margin-bottom: -6px;
}
h2 > span .title__icon img {
  height: 100%;
  width: auto;
}

.sub-section h3 {
  border-bottom: 2px solid #061757;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 34px;
  font-family: "Yu Mincho", "Noto Serif", serif;
  line-height: 1.6;
  color: #061757;
  position: relative;
}
.sub-section h3 .title__icon {
  display: inline-block;
  height: 33px;
  margin-bottom: -5px;
  margin-right: 10px;
}
.sub-section h3 .title__icon img {
  height: 100%;
  width: auto;
}
.sub-section h3 + p {
  text-align: center;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #061757;
}

h5 {
  font-size: 16px;
  font-weight: 600;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 0;
}
.check-list__item {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  font-size: 24px;
  font-weight: 600;
}
.check-list__item::before {
  content: "";
  display: block;
  position: static;
  width: 33px;
  height: 27.5px;
  background: url(../images/icon_checkbox.svg) left top/contain no-repeat;
  margin-top: 0.25em;
}

.common-section .container {
  width: 100%;
  padding: 30px;
  background: url(../images/bg_consultation.png) center top/cover no-repeat;
}
.common-section .container .inner__box--horizontal {
  position: relative;
}
.common-section .container .inner__box--horizontal::before, .common-section .container .inner__box--horizontal::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: url(../images/bg_gold.svg) center center/100% auto no-repeat;
}
.common-section .container .inner__box--horizontal::after {
  bottom: 0;
}
.common-section .container .inner__box--vertical {
  position: relative;
}
.common-section .container .inner__box--vertical::before, .common-section .container .inner__box--vertical::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  top: 0;
  background: url(../images/bg_gold.svg) left top/auto 100% no-repeat;
}
.common-section .container .inner__box--vertical::after {
  right: 0;
  background-position: right top;
}
.common-section__content {
  padding-top: 25px;
}
.common-section h3 {
  display: grid;
  grid-template-columns: 46px fit-content(100%) 46px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.common-section h3::before, .common-section h3::after {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  background: url(../images/deco_lines.svg) center center/contain no-repeat;
}
.common-section h3::after {
  transform: scale(-1, 1);
}
.common-section h3 span {
  display: block;
  text-align: center;
  color: white;
  font-family: "Yu Mincho", "Noto Serif", serif;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}

.consultation__button {
  padding: 25px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}

/*
====================================================================
 01
====================================================================
*/
.hero-section01 .section__body .container {
  height: 650px;
  background: url(../images/bg_01_left.png) left bottom no-repeat, url(../images/bg_01_right.jpg) right no-repeat;
  padding-top: 118px;
}
.hero-section01 .section__body .check-list {
  margin-left: 50%;
  row-gap: 30px;
}
.hero-section01 .sub-section .container {
  background: url(../images/bg_02.jpg) center top/cover no-repeat;
}
.hero-section01 .sub-section h3 {
  margin-bottom: 55px;
}
.hero-section01 .sub-section h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 75px;
  height: 37.5px;
  background-color: #061757;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: calc(50% - 37.5px);
  bottom: -37.5px;
}

.point-list {
  padding: 55px 12px 0 12px;
  background-color: white;
  position: relative;
}
.point-list::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid #a58951;
  left: 12px;
  top: 12px;
  z-index: 3;
}
.point-list::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 36px;
  background: url(../images/head_points.svg) center center/contain no-repeat;
  top: -4px;
  left: 0;
  z-index: 3;
}
.point-list__container {
  background-color: #061757;
  border-radius: 8px;
  padding: 24px;
  width: 1000px;
  margin: 40px auto 0 auto;
  position: relative;
}
.point-list h4 {
  text-align: center;
  position: relative;
}
.point-list h4 span {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  color: white;
  line-height: 1.5;
  padding: 2px 25px;
  background: url(../images/deco_checklist_lines.svg) left center no-repeat, url(../images/deco_checklist_lines.svg) right center no-repeat;
}
.point-list h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 101%;
  left: 0;
  top: 0;
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  -webkit-clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}
.point-list .check-list__container {
  padding: 40px 0 55px 38px;
  margin-right: -12px;
}
.point-list.male h4::before {
  background: url(../images/bg_dot_blue.png);
}
.point-list.male .check-list__container {
  background: white url(../images/img_checklist_male.png) right bottom no-repeat;
}
.point-list.female h4::before {
  background: url(../images/bg_dot_pink.png);
}
.point-list.female .check-list__container {
  background: white url(../images/img_checklist_female.png) right bottom no-repeat;
}

.inner__frame--top {
  position: relative;
}
.inner__frame--top::before, .inner__frame--top::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 0;
  background-color: #061757;
  z-index: 1;
}
.inner__frame--top::before {
  left: 0;
  clip-path: circle(100% at 0 0);
  -webkit-clip-path: circle(100% at 0 0);
}
.inner__frame--top::after {
  right: 0;
  clip-path: circle(100% at 100% 0);
  -webkit-clip-path: circle(100% at 100% 0);
}

.inner__frame--bottom {
  position: relative;
}
.inner__frame--bottom::before, .inner__frame--bottom::after {
  content: "";
  display: block;
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 0;
  background-color: #061757;
  z-index: 1;
}
.inner__frame--bottom::before {
  clip-path: circle(100% at 0 100%);
  -webkit-clip-path: circle(100% at 0 100%);
}
.inner__frame--bottom::after {
  right: 0;
  clip-path: circle(100% at 100% 100%);
  -webkit-clip-path: circle(100% at 100% 100%);
}

/*
====================================================================
 02
====================================================================
*/
.hero-section02 .section__body .container {
  padding: 60px 0 80px 0;
}
.hero-section02 .sub-section .container {
  width: 1000px;
}

.case-panel {
  width: 1000px;
  margin: 0 auto;
}
.case-panel__item {
  display: grid;
  margin-top: 70px;
  padding-bottom: 35px;
  grid-template-rows: auto 1fr;
  background: linear-gradient(to top, #fbfbfb calc(100% - 68px), white calc(100% - 68px));
}
.case-panel__item h3 {
  padding-top: 18px;
  margin-bottom: 30px;
}
.case-panel__item h3 span {
  display: block;
}
.case-panel__item h3 span.case__title {
  padding: 0 30px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.375;
  text-indent: 0.5em;
  margin-left: -0.5em;
}
.case-panel__item h3 span.case__number {
  margin-bottom: 40px;
}
.case-panel__item h3 span.case__number img {
  width: 273px;
}
.case-panel__item figure {
  position: relative;
  padding-bottom: 30px;
}
.case-panel__item figure::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ccc;
}
.case-panel__item img {
  position: relative;
  z-index: 1;
}
.case-panel__item.case01 {
  grid-template-columns: 1fr 530px;
}
.case-panel__item.case01 .figure-wrapper {
  grid-row: 1/3;
  grid-column: 2/3;
  padding-right: 30px;
}
.case-panel__item.case01 figure {
  padding-right: 30px;
}
.case-panel__item.case01 figure::before {
  background: linear-gradient(to left, #00021e 0%, #174494 70%);
  clip-path: polygon(51.7% 22%, 100% 22%, 100% 100%, 30.6% 100%);
  -webkit-clip-path: polygon(51.7% 22%, 100% 22%, 100% 100%, 30.6% 100%);
}
.case-panel__item.case01 p {
  z-index: 20;
  padding-left: 30px;
}
.case-panel__item.case02 {
  grid-template-columns: 530px 1fr;
}
.case-panel__item.case02 h3 .case__title {
  text-align: right;
}
.case-panel__item.case02 h3 .case__number img {
  margin-right: 0;
  margin-left: auto;
}
.case-panel__item.case02 .figure-wrapper {
  grid-row: 1/3;
}
.case-panel__item.case02 figure {
  padding-left: 30px;
}
.case-panel__item.case02 figure::before {
  background: linear-gradient(to right, #00021e 0%, #174494 70%);
  clip-path: polygon(0 22%, 49.3% 22%, 69.4% 100%, 0 100%);
  -webkit-clip-path: polygon(0 22%, 49.3% 22%, 69.4% 100%, 0 100%);
}
.case-panel__item.case02 p {
  padding-right: 25px;
  margin-left: -50px;
  z-index: 201;
}

.case-panel .figure-wrapper.js-scroll.is-active {
  overflow: hidden;
  position: relative;
}

.case-panel .figure-wrapper.js-scroll.is-active::before {
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 10;
}

.case-panel .case01 .figure-wrapper.js-scroll.is-active::before {
  animation: figure-wrapper 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.case-panel .case02 .figure-wrapper.js-scroll.is-active::before {
  animation: figure-wrapper02 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes figure-wrapper {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes figure-wrapper02 {
  100% {
    transform: translateX(100%);
  }
}
.introduction {
  margin-top: 30px;
  border-top: 5px solid #061757;
  padding: 0 47.5px;
}

.media-list__item {
  padding: 35px 0;
}
.media-list__item.film figure {
  margin-top: 20px;
}
.media-list__item.tv {
  border-top: 1px dashed #061757;
}
.media-list h4 {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.media-list h4 .note {
  color: #c91721;
}
.media-list .media__category {
  background-color: #061757;
  color: white;
  padding: 7px 46px 8px 30px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}
.media-list .media__title {
  font-size: 24px;
}

.program-list__item {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 430px;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.program-list__item h5 {
  position: relative;
}
.program-list__item h5::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #a58951;
  top: 50%;
}
.program-list__item h5 span {
  display: inline-block;
  background-color: white;
  padding-right: 10px;
  position: relative;
  z-index: 1;
}
.program-list__item figure {
  grid-column: 2/3;
  grid-row: 1/3;
  padding-top: 13px;
}

.program-card {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #061757;
}
.program-card__item img {
  width: 179px;
}
.program-card__item h5 {
  order: 2;
  width: 100%;
  text-align: center;
  background-color: #061757;
  color: white;
  padding-bottom: 2px;
}
.program-card__item p {
  order: 2;
  padding: 8px;
  text-align: center;
}
.program-card__item figure {
  padding: 20px;
}

.partners-list {
  padding-bottom: 30px;
  /*
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 18px;
  */
}
.partners-list__container {
  padding-top: 35px;
  border-top: 1px dashed #061757;
}
.partners-list__container h4 {
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background-color: #a58951;
  padding: 7px 46px 8px 30px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  margin-bottom: 24px;
}
.partners-list__item {
  margin-bottom: 30px;
  padding: 20px 23px;
  background-color: white;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  border-top: 5px solid #a58951;
  /*
  display: grid;
  grid-template-rows: 66px auto auto 1fr;
  */
}
.partners-list__item__content {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}
.partners-list__item__content__left {
  width: 175px;
}
.partners-list__firm {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0;
}
.partners-list figure {
  margin-bottom: 15px;
  /*
  padding: 0 20px 14px 20px;
  */
}
.partners-list__name {
  text-align: center;
  color: white;
  background-color: #a58951;
  padding-bottom: 2px;
}
.partners-list p {
  width: 650px;
  padding: 0;
}
.partners-list p span {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-size: 14px;
  border-bottom: dotted 1px #666666;
}

.recommendation {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  border: 1px solid black;
}

/*
====================================================================
 03
====================================================================
*/
.hero-section03 {
  background: #F3F8FE;
  background: linear-gradient(90deg, rgb(243, 248, 254) 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, rgb(243, 248, 254) 100%);
}
.hero-section03 .container {
  background: linear-gradient(90deg, #f3f8fe 21%, white 41.5%, white 58.5%, #f3f8fe 79%);
  padding: 80px 0;
}

.step-list {
  width: 1000px;
  margin: 0 auto;
  padding-left: 25px;
}
.step-list__item {
  border: 1px solid #061757;
  border-radius: 8px;
  background-color: white;
  margin-bottom: 80px;
  position: relative;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 36px;
       column-gap: 36px;
  padding: 25px;
  padding-right: 0px;
}
.step-list__item::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 25px);
  height: 80px;
  background: url(../images/icon_arrow.svg) center center/68px auto no-repeat;
  bottom: -80px;
  left: -25px;
}
.step-list__item:last-child {
  margin-bottom: 40px;
}
.step-list__item:last-child::after {
  content: none;
}
.step-list__item p {
  letter-spacing: -0.015em;
}
.step-list__item:nth-last-child(-n+2) p {
  align-self: center;
}
.step-list h3 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-shrink: 0;
  width: 390px;
  padding: 3px 28px;
  margin-left: -50px;
  position: relative;
}
.step-list h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #061757;
  clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
}
.step-list h3 span {
  z-index: 1;
}
.step-list h3 span.number {
  font-family: "Yu Mincho", "Noto Serif", serif;
  font-size: 34px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.step-list h3 span.number::before {
  content: "STEP";
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  font-size: 18px;
  border-bottom: 1px solid white;
  line-height: 1.6;
}

/*
====================================================================
 04
====================================================================
*/
.hero-section04 {
  background-color: #fbfbfb;
}
.hero-section04 .container {
  background-color: #fbfbfb;
  padding: 80px 0;
}
.hero-section04 h3 {
  text-align: center;
  border: 1px solid #061757;
  background-color: white;
  color: #061757;
  font-size: 24px;
  font-weight: 600;
  width: 1000px;
  margin: 0 auto 10px auto;
}

.price-table {
  padding-bottom: 15px;
}
.price-table:first-child {
  border-bottom: 1px dashed #ccc;
  margin-bottom: 15px;
}
.price-table__container {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 70px;
  background-color: white;
}
.price-table__container .attention {
  font-size: 21px;
  color: #c91721;
  text-align: center;
  margin: 10px 0;
}
.price-table .note {
  margin-top: 5px;
}
.price-table__rows {
  display: grid;
  grid-template-columns: 33.5% 1fr 26.4%;
  gap: 10px;
}
.price-table__header {
  background-color: #061757;
  color: white;
  font-weight: 600;
  padding: 24px 20px 26px 20px;
  text-align: left;
}
.price-table__cell {
  padding: 24px 20px 26px 20px;
  background-color: #f3f8fe;
}

/*
====================================================================
 05
====================================================================
*/
.hero-section05 .section__body .container {
  width: 1000px;
  padding: 80px 0;
}
.hero-section05 .sub-section .container {
  background: url(../images/bg_05.png) center top/cover no-repeat;
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 0 16px;
}

.context-bubble {
  width: 100%;
  padding-bottom: 62.7%;
  background: url(../images/bg_voice.png) center top/contain no-repeat;
  position: relative;
}
.context-bubble p {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 20px 24px;
}

.faq-list__container {
  width: 1000px;
  margin: 40px auto 0 auto;
  background-color: white;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
  padding: 40px 30px;
}
.faq-list__item:not(:last-child) {
  margin-bottom: 40px;
}
.faq-list dt {
  display: grid;
  grid-template-columns: 65px 1fr;
  background-color: #061757;
  color: white;
  border-left: 4px solid #a58951;
  align-items: center;
  padding: 22.5px 24px;
}
.faq-list dt::before {
  content: "Q";
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  font-size: 30px;
  line-height: 1;
}
.faq-list dt span {
  font-size: 20px;
}
.faq-list dd {
  border: 1px solid #061757;
  border-top: none;
  display: grid;
  grid-template-columns: 65px 1fr;
  padding: 22.5px 29px;
}
.faq-list dd::before {
  content: "A";
  display: block;
  position: static;
  width: 100%;
  height: 100%;
  font-size: 30px;
  line-height: 1;
  color: #a58951;
}

/*
====================================================================
 06
====================================================================
*/
.hero-section06 {
  background-color: #fbfbfb;
}
.hero-section06 .container {
  background-color: #fbfbfb;
  padding: 80px 0;
}
.hero-section06 figure {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.hero-section06 .sub-content {
  width: 1000px;
  margin: 80px auto 0 auto;
  text-align: center;
}
.hero-section06 .sub-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #061757;
  margin-bottom: 30px;
}

.profile-table {
  width: 1000px;
  margin: 0 auto 30px auto;
  border: 1px solid #cbcbcb;
}
.profile-table th {
  background-color: #061757;
  color: white;
  vertical-align: top;
  text-align: left;
  padding: 24px 30px;
  border-bottom: 1px solid #cbcbcb;
}
.profile-table td {
  border-bottom: 1px solid #cbcbcb;
  padding: 24px 30px;
}
.profile-table td span {
  display: block;
}
.profile-table td span:last-of-type {
  margin-top: 1em;
}
.profile-table td a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.profile-table td a.url {
  text-decoration: none;
  display: block;
}
.profile-table tr:last-child th, .profile-table tr:last-child td {
  border-bottom: none;
}

.map {
  padding: 9px;
  background-color: white;
}
.map div {
  position: relative;
  width: 100%;
  padding-bottom: 30.24%;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

/*
====================================================================
 07
====================================================================
*/
.hero-section07 .container {
  background: url(../images/bg_consultation_bottom.jpg) left top/cover no-repeat;
  padding: 25px 0 50px 0;
}
.hero-section07 .consultation__button {
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.copy {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}

.consultation__box {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #061757;
  border-top: none;
  width: 840px;
  margin: 0 auto;
}

.title__wrapper {
  position: relative;
  padding: 0 60px;
  margin-top: 10px;
}
.title__wrapper .seals {
  position: absolute;
  right: 54px;
  bottom: 0;
}

.catch {
  transform: translateY(-49%);
}

/*
====================================================================
 FOOTER
====================================================================
*/
.page-top__button {
  position: fixed;
  bottom: 50px;
  right: 5%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  background: url(../images/btn_pagetop.svg) center center/contain no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 999;
}

footer {
  background-color: #061757;
}

.copyright {
  text-align: center;
  color: white;
  font-size: 14px;
  padding: 28px 0;
}/*# sourceMappingURL=style.css.map */