@charset "UTF-8";
/* リキッドレイアウト対応 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap");
body.aflac {
  font-family: "Noto Sans JP", sans-serif;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

@media (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}
@media (min-width: 1366px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1416px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

/*-------------------------------------------------------------------
setting basic
-------------------------------------------------------------------*/
body.is-active {
  overflow: hidden;
}

body.aflac {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

a:hover {
  opacity: 0.9;
}

.pc-none {
  display: none;
}

.sp-none {
  display: inline-block;
}

/*-------------------------------------------------------------------
header
-------------------------------------------------------------------*/
.aflac .header {
  width: 100%;
  height: 100px;
  height: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 0 15px;
  padding: 0 1.25rem 0 0.9375rem;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 99;
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .aflac .header {
    height: 3.125rem;
    padding: 0 0.3125rem 0;
    position: static;
    position: initial;
  }
}

.aflac .header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header::after {
  content: normal;
  content: initial;
}

.header__logo-mynavi {
  max-width: 263px;
  max-width: 16.4375rem;
}
@media screen and (max-width: 768px) {
  .header__logo-mynavi {
    max-width: 7.5rem;
  }
}

.header__logo-aflac {
  max-width: 285px;
  max-width: 17.8125rem;
  margin-left: 39px;
  margin-left: 2.4375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__logo-aflac {
    width: 8.8125rem;
    margin-left: 0.8125rem;
  }
}

.header__logo-aflac::before {
  position: absolute;
  content: "";
  width: 1px;
  width: 0.0625rem;
  background: #787878;
  height: 25px;
  height: 1.5625rem;
  top: 53%;
  left: -23px;
  left: -1.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header__logo-aflac::before {
    height: 0.8125rem;
    left: -0.25rem;
  }
}

.header__nav {
  max-width: 481px;
  max-width: 30.0625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: 100;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    gap: 2.7%;
    padding: 0.5rem 1.125rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header__nav-item a {
  display: block;
  background: #98B9BC;
  padding: 10px 26px;
  padding: 0.625rem 1.625rem;
  border-radius: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #274D68;
}
@media screen and (max-width: 768px) {
  .header__nav-item a {
    font-size: 0.6875rem;
    padding: 0.625rem 1.25rem;
    letter-spacing: 0.2em;
  }
}

.header__nav-item a.HBtn {
  display: block;
  background: #98B9BC;
  padding: 10px 26px;
  padding: 0.625rem 1.625rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  border-radius: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #274D68;
}
@media screen and (max-width: 768px) {
  .header__nav-item a.HBtn {
    font-size: 0.6875rem;
    padding: 0.625rem 1.25rem;
    letter-spacing: 0.2em;
  }
}

/*-------------------------------------------------------------------
mv
-------------------------------------------------------------------*/
.mv__wrap {
  background: url(../images/mv_bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 558px;
  height: 34.875rem;
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv__wrap {
    background: url(../images/mv_bg_sp.jpg) center center no-repeat;
    background-size: cover;
    height: 33.25rem;
    margin-top: 0;
    -webkit-transform: translateX(-0.0625rem);
            transform: translateX(-0.0625rem);
  }
}

.mv__img {
  max-width: 814px;
  max-width: 50.875rem;
  width: 100%;
  margin: auto;
  position: absolute;
  top: 60%;
  left: 53.2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .mv__img {
    left: 52%;
    top: 36%;
    max-width: 24rem;
    width: 96%;
  }
}

/*-------------------------------------------------------------------
  lead
-------------------------------------------------------------------*/
.lead {
  background: url(../images/lead_bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.lead__wrap {
  padding: 230px 0 170px;
  padding: 14.375rem 0 10.625rem;
}
@media screen and (max-width: 768px) {
  .lead__wrap {
    padding: 8.1875rem 0 5.5rem;
  }
}

.lead__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .lead__inner {
    padding: 0 1.25rem;
    max-width: 29.0625rem;
  }
}

.lead__box {
  background: #fff;
  border-radius: 1.875rem;
  padding: 10px 10px 50px;
  padding: 0.625rem 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .lead__box {
    border-radius: 1rem;
    padding: 7rem 0.625rem 2.125rem;
  }
}

.lead__img {
  max-width: 789px;
  max-width: 49.3125rem;
  width: 100%;
  margin: -154px auto 0;
  margin: -9.625rem auto 0;
  -webkit-transform: translateX(1.5rem);
          transform: translateX(1.5rem);
}
@media screen and (max-width: 768px) {
  .lead__img {
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem);
    margin: -11.9375rem auto 0;
    width: 109%;
    max-width: 31.0625rem;
  }
}

.lead__texts {
  text-align: center;
  margin-left: -7px;
  margin-left: -0.4375rem;
  margin-top: -5px;
  margin-top: -0.3125rem;
}

.lead__title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .lead__title {
    font-size: 1.875rem;
    line-height: 2.3125rem;
  }
}

.lead__title span {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lead__title span {
    font-size: 0.975rem;
  }
}

.lead__text1 {
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .lead__text1 {
    font-size: 0.875rem;
    line-height: 1.53125rem;
    margin-top: 1.25rem;
  }
}

.lead__text2 {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  margin-top: 52px;
  margin-top: 3.25rem;
  margin-left: 17px;
  margin-left: 1.0625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .lead__text2 {
    font-size: 1.625rem;
    margin-left: 0;
    margin-top: 1.875rem;
  }
}

.lead__text2::before {
  content: "";
  position: absolute;
  background: url(../images/lead_arrow.png) center center no-repeat;
  background-size: contain;
  width: 581px;
  width: 36.3125rem;
  height: 242px;
  height: 15.125rem;
  top: 0;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .lead__text2::before {
    top: -2.125rem;
    width: 19.5rem;
    height: 11.375rem;
  }
}

/*-------------------------------------------------------------------
  question
-------------------------------------------------------------------*/
.question {
  background: url(../images/question_bg.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .question {
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
    background-color: #B0D1DC;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .question::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/question_bg_sp.png) center center repeat;
    background-size: cover;
    height: 50%;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .question::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/question_bg_sp.png) center center repeat;
    background-size: cover;
    height: 50%;
    width: 100%;
    z-index: -1;
  }
}

.question__wrap {
  padding: 123px 0 367px;
  padding: 7.6875rem 0 22.9375rem;
}
@media screen and (max-width: 768px) {
  .question__wrap {
    padding: 4.125rem 0 22.9375rem;
  }
}

.question__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .question__inner {
    padding: 0 1.125rem;
    max-width: 29.0625rem;
  }
}

.question__item {
  background: #fff;
  border-radius: 2.5rem;
  padding: 52px 0;
  padding: 3.25rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .question__item {
    padding: 1.75rem 0.875rem;
    border-radius: 0.625rem;
  }
}

.question__item::before {
  content: "";
  position: absolute;
  background: url(../images/clip.png) center center no-repeat;
  background-size: cover;
  width: 172px;
  width: 10.75rem;
  height: 67px;
  height: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .question__item::before {
    width: 6.4375rem;
    height: 2.5rem;
  }
}

.question__item--right::before {
  top: -48px;
  top: -3rem;
  right: 61px;
  right: 3.8125rem;
}
@media screen and (max-width: 768px) {
  .question__item--right::before {
    top: -1.9375rem;
    right: 0.6875rem;
  }
}

.question__item--left::before {
  top: -48px;
  top: -3rem;
  left: 61px;
  left: 3.8125rem;
}
@media screen and (max-width: 768px) {
  .question__item--left::before {
    top: -1.9375rem;
    left: 0.6875rem;
  }
}

.question__item + .question__item {
  margin-top: 126px;
  margin-top: 7.875rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item {
    margin-top: 4.5625rem;
  }
}

.question__item + .question__item.question__item--yellow {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--yellow {
    margin-top: 1.125rem;
  }
}

.question__item + .question__item.question__item--yellow-mt {
  margin-top: 84px;
  margin-top: 5.25rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--yellow-mt {
    margin-top: 5.75rem;
  }
}

.question__item + .question__item.question__item--yellow-mt2 {
  margin-top: 83px;
  margin-top: 5.1875rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--yellow-mt2 {
    margin-top: 16.0625rem;
  }
}

.question__item + .question__item.question__item--mt {
  margin-top: 146px;
  margin-top: 9.125rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--mt {
    margin-top: 4.875rem;
  }
}

.question__item + .question__item.question__item--mt2 {
  margin-top: 97px;
  margin-top: 6.0625rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--mt2 {
    margin-top: 5.25rem;
  }
}

.question__item + .question__item.question__item--mt3 {
  margin-top: 151px;
  margin-top: 9.4375rem;
}
@media screen and (max-width: 768px) {
  .question__item + .question__item.question__item--mt3 {
    margin-top: 5.625rem;
  }
}

.question__item + .question__item.question__summay {
  margin-top: -11px;
  margin-top: -0.6875rem;
}

.question__item--pa1 {
  padding: 52px 0 333px;
  padding: 3.25rem 0 20.8125rem;
}
@media screen and (max-width: 768px) {
  .question__item--pa1 {
    padding: 1.75rem 0.875rem 7.5625rem;
  }
}

.question__item--pa2 {
  padding: 52px 0 492px;
  padding: 3.25rem 0 30.75rem;
}
@media screen and (max-width: 768px) {
  .question__item--pa2 {
    padding: 1.75rem 0.875rem 2.1875rem;
  }
}

.question__item--pa3 {
  padding: 52px 0 273px;
  padding: 3.25rem 0 17.0625rem;
}
@media screen and (max-width: 768px) {
  .question__item--pa3 {
    padding: 1.75rem 0.875rem 1.8125rem;
  }
}

.question__item--pa4 {
  padding: 52px 0 63px;
  padding: 3.25rem 0 3.9375rem;
}
@media screen and (max-width: 768px) {
  .question__item--pa4 {
    padding: 1.75rem 0.875rem 0;
  }
}

.question__item--pa5 {
  padding: 52px 0 213px;
  padding: 3.25rem 0 13.3125rem;
}
@media screen and (max-width: 768px) {
  .question__item--pa5 {
    padding: 1.75rem 0.875rem 1.8125rem;
  }
}

@media screen and (max-width: 48rem) {
  .question__item--pa1 {
    padding: 1.75rem 0.875rem 7.5625rem;
  }
}
@media screen and (max-width: 48rem) {
  .question__item--pa2 {
    padding: 1.75rem 0.875rem 2.1875rem;
  }
}
@media screen and (max-width: 48rem) {
  .question__item--pa3 {
    padding: 1.75rem 0.875rem 1.8125rem;
  }
}
@media screen and (max-width: 48rem) {
  .question__item--pa4 {
    padding: 1.75rem 0.875rem 0;
  }
}
@media screen and (max-width: 48rem) {
  .question__item--pa5 {
    padding: 1.75rem 0.875rem 1.8125rem;
  }
}
.question__item--pa6 {
  padding: 52px 0 22em;
  padding: 3.25rem 0 22em;
}

@media screen and (max-width: 48rem) {
  .question__item--pa6 {
    padding: 1.75rem 0.875rem 7.5625rem;
  }
}
.question__item--yellow {
  background: #FFFF69;
  border-radius: 1.25rem;
  padding: 24px 191px;
  padding: 1.5rem 11.9375rem;
}
@media screen and (max-width: 768px) {
  .question__item--yellow {
    padding: 1.0625rem 1.4375rem 10.0625rem;
    border-radius: 0.625rem;
  }
}

.question__item--yellow::before {
  content: "";
  position: absolute;
  background: url(../images/question_note_img1.png) center center no-repeat;
  background-size: cover;
  max-width: 1124px;
  max-width: 70.25rem;
  width: 100%;
  height: 289px;
  height: 18.0625rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .question__item--yellow::before {
    background: url(../images/question_note_img1_sp.png) center center no-repeat;
    background-size: cover;
    width: 16.5rem;
    height: 12.625rem;
  }
}

.question__item--yellow2 {
  padding: 34px 170px;
  padding: 2.125rem 10.625rem;
}
@media screen and (max-width: 768px) {
  .question__item--yellow2 {
    padding: 1.0625rem 1.4375rem 13.875rem;
    border-radius: 0.625rem;
  }
}

.question__item--yellow2::before {
  background: url(../images/question_note_img2.png) center center no-repeat;
  background-size: cover;
  width: 103%;
}
@media screen and (max-width: 768px) {
  .question__item--yellow2::before {
    background: url(../images/question_note_img2_sp.png) center center no-repeat;
    background-size: cover;
    width: 19.25rem;
    height: 12.625rem;
  }
}

.question__item--yellow3 {
  padding: 34px 101px 34px 152px;
  padding: 2.125rem 6.3125rem 2.125rem 9.5rem;
}
@media screen and (max-width: 768px) {
  .question__item--yellow3 {
    padding: 1.0625rem 1.4375rem 10.0625rem;
    border-radius: 0.625rem;
  }
}

.question__item--yellow3::before {
  background: url(../images/question_note_img3.png) center center no-repeat;
  background-size: cover;
  width: 110%;
  height: 375px;
  height: 23.4375rem;
}
@media screen and (max-width: 768px) {
  .question__item--yellow3::before {
    background: url(../images/question_note_img3_sp.png) center center no-repeat;
    background-size: cover;
    width: 19.25rem;
    height: 12.625rem;
  }
}

.question__title-box {
  max-width: 880px;
  max-width: 55rem;
  width: 100%;
  margin: auto;
  padding: 26px 37px 14px;
  padding: 1.625rem 2.3125rem 0.875rem;
  border: 2px solid #98B9BC;
  border: 0.125rem solid #98B9BC;
}
@media screen and (max-width: 768px) {
  .question__title-box {
    padding: 1rem 1.125rem 0.3125rem;
  }
}

.question__title-box--pa {
  padding: 52px 37px 14px;
  padding: 3.25rem 2.3125rem 0.875rem;
}
@media screen and (max-width: 768px) {
  .question__title-box--pa {
    padding: 1rem 1.125rem 0.3125rem;
  }
}

.question__title-box--pa1 {
  padding: 36px 37px 14px;
  padding: 2.25rem 2.3125rem 0.875rem;
}
@media screen and (max-width: 768px) {
  .question__title-box--pa1 {
    padding: 1rem 1.125rem 0.3125rem;
  }
}

.question__title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 50px;
  line-height: 3.125rem;
  border-bottom: 2px solid #98B9BC;
  border-bottom: 0.125rem solid #98B9BC;
  padding-bottom: 13px;
  padding-bottom: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .question__title {
    font-size: 1.35rem;
    line-height: 1.875rem;
    padding-bottom: 0.4375rem;
  }
}

.question__title--pb {
  padding-bottom: 37px;
  padding-bottom: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .question__title--pb {
    padding-bottom: 0.375rem;
  }
}

.question__title--pb1 {
  padding-bottom: 23px;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .question__title--pb1 {
    padding-bottom: 0.375rem;
  }
}

.question__sub-title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .question__sub-title {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }
}

.question__container {
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
}

.question__img {
  max-width: 910px;
  max-width: 56.875rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .question__img {
    width: 97%;
    margin: 0;
    margin: initial;
    margin-top: -0.375rem;
  }
}

.question__img2 {
  max-width: 950px;
  max-width: 59.375rem;
  width: 100%;
  margin: auto;
  margin-left: auto;
  -webkit-transform: translateX(2rem);
          transform: translateX(2rem);
}
@media screen and (max-width: 768px) {
  .question__img2 {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
    width: 95%;
    margin: 0;
    margin: auto;
    margin-top: 1.6875rem;
  }
}

.question__img3 {
  max-width: 934px;
  max-width: 58.375rem;
  width: 88%;
  margin: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .question__img3 {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
    width: 91%;
    margin: -0.5rem auto 0;
  }
}

.question__img4 {
  max-width: 902px;
  max-width: 56.375rem;
  width: 100%;
  margin: auto;
  -webkit-transform: translateX(0.625rem);
          transform: translateX(0.625rem);
}
@media screen and (max-width: 768px) {
  .question__img4 {
    width: 94%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.question__img5 {
  max-width: 908px;
  max-width: 56.75rem;
  width: 100%;
  margin: auto;
  -webkit-transform: translateX(-0.375rem);
          transform: translateX(-0.375rem);
}
@media screen and (max-width: 768px) {
  .question__img5 {
    width: 95.3%;
    margin: 2.1875rem auto 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.question__img6 {
  max-width: 911px;
  max-width: 56.9375rem;
  width: 100%;
  margin: auto;
  -webkit-transform: translate(0.875rem, 0.625rem);
          transform: translate(0.875rem, 0.625rem);
}
@media screen and (max-width: 768px) {
  .question__img6 {
    width: 95%;
    margin: 2.375rem auto 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.question__img7 {
  max-width: 908px;
  max-width: 56.75rem;
  width: 100%;
  margin: auto;
  -webkit-transform: translateX(-0.375rem);
          transform: translateX(-0.375rem);
}
@media screen and (max-width: 768px) {
  .question__img7 {
    width: 93%;
    margin: 1.375rem auto 0;
    -webkit-transform: translate(0.875rem, 0);
            transform: translate(0.875rem, 0);
  }
}

.question__img8 {
  max-width: 884px;
  max-width: 55.25rem;
  width: 100%;
  margin: auto;
  -webkit-transform: translate(-0.3125rem, 0.875rem);
          transform: translate(-0.3125rem, 0.875rem);
}
@media screen and (max-width: 768px) {
  .question__img8 {
    width: 96%;
    margin: 1.375rem auto 0;
    -webkit-transform: translate(0.4375rem, -0.125rem);
            transform: translate(0.4375rem, -0.125rem);
  }
}

.question__chart1 {
  width: 569px;
  width: 35.5625rem;
  height: 379px;
  height: 23.6875rem;
  margin: 53px 0 0 135px;
  margin: 3.3125rem 0 0 8.4375rem;
}
@media screen and (max-width: 768px) {
  .question__chart1 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart2 {
  width: 573px;
  width: 35.8125rem;
  height: 434px;
  height: 27.125rem;
  margin-left: auto;
  margin-right: 58px;
  margin-right: 3.625rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .question__chart2 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart3 {
  width: 499px;
  width: 31.1875rem;
  height: 297px;
  height: 18.5625rem;
  margin: 32px 0 0 65px;
  margin: 2rem 0 0 4.0625rem;
}
@media screen and (max-width: 768px) {
  .question__chart3 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart4 {
  width: 488px;
  width: 30.5rem;
  height: 414px;
  height: 25.875rem;
  margin-left: auto;
  margin-right: 117px;
  margin-right: 7.3125rem;
  margin-top: 26px;
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .question__chart4 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart5 {
  width: 548px;
  width: 34.25rem;
  height: 430px;
  height: 26.875rem;
  margin: 73px 0 0 79px;
  margin: 4.5625rem 0 0 4.9375rem;
}
@media screen and (max-width: 768px) {
  .question__chart5 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart6 {
  width: 533px;
  width: 33.3125rem;
  height: 421px;
  height: 26.3125rem;
  margin-left: auto;
  margin-right: 65px;
  margin-right: 4.0625rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .question__chart6 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart7 {
  width: 495px;
  width: 30.9375rem;
  height: 416px;
  height: 26rem;
  margin: 27px 0 0 91px;
  margin: 1.6875rem 0 0 5.6875rem;
}
@media screen and (max-width: 768px) {
  .question__chart7 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__chart8 {
  width: 418px;
  width: 26.125rem;
  height: 397px;
  height: 24.8125rem;
  margin-left: auto;
  margin-right: 80px;
  margin-right: 5rem;
  margin-top: 39px;
  margin-top: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .question__chart8 {
    width: 100%;
    height: 100%;
    margin: auto;
  }
}

.question__deco1 {
  width: 302px;
  width: 18.875rem;
  height: 294px;
  height: 18.375rem;
  margin: 18px 0 0 171px;
  margin: 1.125rem 0 0 10.6875rem;
}
@media screen and (max-width: 768px) {
  .question__deco1 {
    width: 100%;
    width: 8.875rem;
    height: 8.625rem;
    margin: 1.125rem 0 0 0;
  }
}

.question__deco2 {
  width: 299px;
  width: 18.6875rem;
  height: 299px;
  height: 18.6875rem;
  margin-left: auto;
  margin-right: 81px;
  margin-right: 5.0625rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .question__deco2 {
    width: 100%;
    width: 10.5rem;
    height: 10.5rem;
    margin-right: 0;
    margin-top: 0;
  }
}

.question__deco3 {
  width: 200px;
  width: 12.5rem;
  height: 374px;
  height: 23.375rem;
  margin: 42px 0 0 298px;
  margin: 2.625rem 0 0 18.625rem;
}
@media screen and (max-width: 768px) {
  .question__deco3 {
    width: 100%;
    width: 6.4375rem;
    height: 12.875rem;
    margin: 0;
    margin-top: 2.375rem;
    margin-left: 3.875rem;
  }
}

.question__deco4 {
  width: 434px;
  width: 27.125rem;
  height: 282px;
  height: 17.625rem;
  margin-left: auto;
  margin-right: 44px;
  margin-right: 2.75rem;
  margin-top: 1px;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 768px) {
  .question__deco4 {
    width: 100%;
    width: 11.875rem;
    height: 7.5rem;
    margin-left: auto;
    margin-right: 0.625rem;
    margin-top: 0.0625rem;
  }
}

.question__deco5 {
  width: 370px;
  width: 23.125rem;
  height: 260px;
  height: 16.25rem;
  margin-left: 41px;
  margin-left: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .question__deco5 {
    width: 100%;
    width: 11.875rem;
    height: 8.4375rem;
    margin: 0;
  }
}

.question__deco6 {
  width: 452px;
  width: 28.25rem;
  height: 452px;
  height: 28.25rem;
  margin-left: auto;
  margin-right: 30px;
  margin-right: 1.875rem;
  margin-top: -136px;
  margin-top: -8.5rem;
}
@media screen and (max-width: 768px) {
  .question__deco6 {
    width: 100%;
    width: 12.5rem;
    height: 12.5rem;
    margin-left: auto;
    margin-right: 0rem;
    margin-top: -2.25rem;
  }
}

.question__deco7 {
  width: 735px;
  width: 45.9375rem;
  height: 823px;
  height: 51.4375rem;
  margin: -384px 0 0 38px;
  margin: -24rem 0 0 2.375rem;
}
@media screen and (max-width: 768px) {
  .question__deco7 {
    width: 100%;
    width: 6.625rem;
    height: 20.875rem;
    margin: 0;
    margin-left: 0.9375rem;
  }
}

.question__deco8 {
  width: 391px;
  width: 24.4375rem;
  height: 310px;
  height: 19.375rem;
  margin-left: auto;
  margin-right: 90px;
  margin-right: 5.625rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .question__deco8 {
    width: 100%;
    width: 12.5rem;
    height: 10rem;
    margin-left: auto;
    margin-right: 0rem;
    margin-top: 0rem;
  }
}

.question__position1 {
  position: absolute;
  right: 47px;
  right: 2.9375rem;
  top: 51.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position1 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0.25rem;
  }
}

@media screen and (max-width: 768px) {
  .question__position1--sp {
    margin-top: -4.75rem;
  }
}

.question__position2 {
  position: absolute;
  left: 61px;
  left: 3.8125rem;
  top: 84.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position2 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0.5625rem;
  }
}

.question__position3 {
  position: absolute;
  right: 47px;
  right: 2.9375rem;
  top: 79%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position3 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0.5625rem;
  }
}

.question__position4 {
  position: absolute;
  left: 61px;
  left: 3.8125rem;
  top: 82.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position4 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: -1.25rem;
  }
}

.question__position5 {
  position: absolute;
  right: 47px;
  right: 2.9375rem;
  top: 58%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position5 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: -10.625rem;
  }
}

.question__position6 {
  position: absolute;
  left: 61px;
  left: 3.8125rem;
  top: 78.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position6 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0.9375rem;
  }
}

.question__position7 {
  position: absolute;
  left: 61px;
  left: 3.8125rem;
  top: 101.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .question__position7 {
    position: static;
    position: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: -0.5625rem;
  }
}

.question__description {
  position: relative;
  max-width: 431px;
  max-width: 26.9375rem;
  border-radius: 0.625rem;
  border: 2.8px solid #000;
  border: 0.175rem solid #000;
  font-size: 18px;
  font-size: 1.125rem;
  z-index: 1;
  line-height: 31.5px;
  line-height: 1.96875rem;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .question__description {
    font-size: 0.8125rem;
    line-height: 1.421875rem;
    width: 94%;
    margin: auto;
    padding: 0.9375rem 0.8125rem;
  }
}

.question__description::before {
  content: "";
  position: absolute;
  width: 2.5px;
  width: 0.15625rem;
  height: 20px;
  height: 1.25rem;
  background: #000;
  z-index: 1;
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
}
@media screen and (max-width: 768px) {
  .question__description::before {
    width: 0.125rem;
    height: 0.875rem;
  }
}

.question__description::after {
  content: "";
  position: absolute;
  background: #FFFF69;
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
}

.question__description--p1::before {
  top: -16px;
  top: -1rem;
  right: 107px;
  right: 6.6875rem;
}
@media screen and (max-width: 768px) {
  .question__description--p1::before {
    top: -0.625rem;
    right: 3.9375rem;
  }
}

.question__description--p1::after {
  top: -3px;
  top: -0.1875rem;
  right: 102px;
  right: 6.375rem;
}
@media screen and (max-width: 768px) {
  .question__description--p1::after {
    right: 3.5rem;
  }
}

.question__description--p2::before {
  top: -14px;
  top: -0.875rem;
  left: 54px;
  left: 3.375rem;
}
@media screen and (max-width: 768px) {
  .question__description--p2::before {
    top: -0.625rem;
    left: 4.0625rem;
    -webkit-transform: rotate(-13deg);
            transform: rotate(-13deg);
  }
}

.question__description--p2::after {
  top: -3px;
  top: -0.1875rem;
  left: 47px;
  left: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .question__description--p2::after {
    left: 3.75rem;
  }
}

.question__description span {
  font-size: 12px;
  font-size: 0.75rem;
}

.question__description-bg {
  position: absolute;
  top: -3px;
  top: -0.1875rem;
  left: 3px;
  left: 0.1875rem;
  width: 100%;
  height: 100%;
  background: #FFFF69;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .question__description-bg {
    width: 94%;
    top: -0.25rem;
    left: 0.8125rem;
  }
}

.question__woman1 {
  position: absolute;
  background: url(../images/text_woman.png) center center no-repeat;
  background-size: cover;
  width: 152px;
  width: 9.5rem;
  height: 216px;
  height: 13.5rem;
  top: -246px;
  top: -15.375rem;
  right: 0;
}
@media screen and (max-width: 768px) {
  .question__woman1 {
    width: 5.75rem;
    height: 8.125rem;
    top: -9.4375rem;
  }
}

.question__woman2 {
  position: absolute;
  background: url(../images/text_woman2.png) center center no-repeat;
  background-size: cover;
  width: 230px;
  width: 14.375rem;
  height: 216px;
  height: 13.5rem;
  top: -246px;
  top: -15.375rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .question__woman2 {
    width: 8.625rem;
    height: 8.4375rem;
    top: -9.4375rem;
  }
}

.question__woman3 {
  position: absolute;
  background: url(../images/text_woman3.png) center center no-repeat;
  background-size: cover;
  width: 230px;
  width: 14.375rem;
  height: 225px;
  height: 14.0625rem;
  top: -246px;
  top: -15.375rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .question__woman3 {
    width: 9.375rem;
    height: 9.375rem;
    top: -10.0625rem;
  }
}

.question__voice-box {
  position: relative;
  width: 90.6%;
  margin: 272px auto 0;
  margin: 17rem auto 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .question__voice-box {
    position: relative;
    width: 58.6%;
    margin: 0;
    margin: initial;
    z-index: 1;
    margin-top: 0.8125rem;
    margin-left: auto;
    margin-right: 0.5625rem;
  }
}

.question__voice-box--pa1 {
  margin: 298px auto 0;
  margin: 18.625rem auto 0;
}
@media screen and (max-width: 768px) {
  .question__voice-box--pa1 {
    position: relative;
    width: 58.6%;
    margin: 0;
    margin: initial;
    z-index: 1;
    margin-top: 1.5625rem;
    margin-left: auto;
    margin-right: 0.5625rem;
  }
}

.question__voice {
  border-radius: 0.625rem;
  border: 2.8px solid #000;
  border: 0.175rem solid #000;
  position: relative;
  padding: 28px 20px 36px 37px;
  padding: 1.75rem 1.25rem 2.25rem 2.3125rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .question__voice {
    padding: 0.375rem 0.8125rem;
    padding-left: 1.5rem;
    text-indent: -0.6875rem;
  }
}

.question__voice::before {
  content: "";
  position: absolute;
  width: 2.5px;
  width: 0.15625rem;
  height: 20px;
  height: 1.25rem;
  background: #000;
  z-index: 1;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
  top: -17px;
  top: -1.0625rem;
  left: 95px;
  left: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .question__voice::before {
    width: 0.125rem;
    height: 0.875rem;
    left: -0.25rem;
    top: 3.25rem;
    -webkit-transform: rotate(-76deg);
            transform: rotate(-76deg);
  }
}

.question__voice::after {
  content: "";
  position: absolute;
  background: #DFEBEF;
  width: 16px;
  width: 1rem;
  height: 4px;
  height: 0.25rem;
  top: -4px;
  top: -0.25rem;
  left: 90px;
  left: 5.625rem;
}
@media screen and (max-width: 768px) {
  .question__voice::after {
    width: 0.25rem;
    height: 0.875rem;
    top: 3.25rem;
    left: -0.1875rem;
  }
}

.question__voice-item {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 35px;
  line-height: 2.1875rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .question__voice-item {
    font-size: 0.75rem;
    line-height: 1.3125rem;
  }
}

.question__voice-item span {
  font-size: 11px;
  font-size: 0.6875rem;
}

.question__voice-bg {
  position: absolute;
  top: -3px;
  top: -0.1875rem;
  left: 3px;
  left: 0.1875rem;
  width: 100%;
  height: 100%;
  background: #DFEBEF;
  border-radius: 0.625rem;
}

.question__note {
  font-size: 33px;
  font-size: 2.0625rem;
  line-height: 50px;
  line-height: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .question__note {
    font-size: 1.125rem;
    line-height: 1.90625rem;
  }
}

.question__note--center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .question__note--center {
    text-align: left;
  }
}

.question__note--fz {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .question__note--fz {
    font-size: 1.125rem;
    line-height: 1.90625rem;
  }
}

.question__note-img {
  max-width: 409px;
  max-width: 25.5625rem;
  position: absolute;
  top: -245px;
  top: -15.3125rem;
  right: 96px;
  right: 6rem;
}
@media screen and (max-width: 768px) {
  .question__note-img {
    top: -44%;
    right: 6rem;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 15.1875rem;
    height: 9.0625rem;
  }
}

.question__note-img--center {
  right: auto;
  right: initial;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .question__note-img--center {
    top: -9.125rem;
  }
}

@media screen and (max-width: 768px) {
  .question__note-img--sp {
    top: -12rem;
    width: 20rem;
  }
}

.question__voice-woman {
  content: "";
  position: absolute;
  background: url(../images/woman3.png) center center no-repeat;
  background-size: cover;
  width: 153px;
  width: 9.5625rem;
  height: 216px;
  height: 13.5rem;
  top: -262px;
  top: -16.375rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .question__voice-woman {
    content: "";
    position: absolute;
    background: url(../images/woman3.png) center center no-repeat;
    background-size: cover;
    width: 5.875rem;
    height: 8.25rem;
    top: -1.5rem;
    left: -57%;
  }
}

.question__voice-man {
  content: "";
  position: absolute;
  background: url(../images/man.png) center center no-repeat;
  background-size: cover;
  width: 256px;
  width: 16rem;
  height: 217px;
  height: 13.5625rem;
  top: -242px;
  top: -15.125rem;
  left: -30px;
  left: -1.875rem;
}
@media screen and (max-width: 768px) {
  .question__voice-man {
    content: "";
    position: absolute;
    background: url(../images/man.png) center center no-repeat;
    background-size: cover;
    width: 9.5625rem;
    height: 8.125rem;
    top: -1.5rem;
    left: -71%;
  }
}

@media screen and (max-width: 768px) {
  .question__family-img {
    margin-top: -4.0625rem;
    position: relative;
    -webkit-transform: translate(-0.625rem, 0rem);
    transform: translate(-0.625rem, 2.6875rem);
  }
}

/*-------------------------------------------------------------------
  summary
-------------------------------------------------------------------*/
.summary {
  background: transparent;
  position: relative;
  z-index: 2;
}

.summary__wrap {
  margin-top: -326px;
  margin-top: -20.375rem;
}
@media screen and (max-width: 768px) {
  .summary__wrap {
    margin-top: -20rem;
  }
}

.summary__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .summary__inner {
    padding: 0 1.125rem;
    max-width: 29.0625rem;
  }
}

.summary__title {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 700;
  color: #FFFF69;
  margin-left: 50px;
  margin-left: 3.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .summary__title {
    font-size: 2.5rem;
    margin-left: 0;
    text-align: center;
  }
}

.summary__text {
  background: #FFFF69;
  border-radius: 1.875rem;
  color: #000;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 50px;
  line-height: 3.125rem;
  padding: 43px 143px 57px 57px;
  padding: 2.6875rem 8.9375rem 3.5625rem 3.5625rem;
  width: 84.5%;
  margin-top: -20px;
  margin-top: -1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .summary__text {
    font-size: 1.125rem;
    line-height: 1.875rem;
    width: 100%;
    padding: 1.125rem 1.375rem 11.75rem;
    margin-top: -0.8125rem;
    border-radius: 0.625rem;
  }
}

.summary__text::before {
  content: "";
  position: absolute;
  background: url(../images/woman2.png) center center no-repeat;
  background-size: cover;
  width: 290px;
  width: 18.125rem;
  height: 698px;
  height: 43.625rem;
  bottom: -154px;
  bottom: -9.625rem;
  right: -121px;
  right: -7.5625rem;
}
@media screen and (max-width: 768px) {
  .summary__text::before {
    background: url(../images/woman2_sp.png) center center no-repeat;
    background-size: cover;
    bottom: 0;
    width: 93%;
    max-width: 24.625rem;
    height: 12vh;
    min-height: 12.1875rem;
    max-height: 12.5rem;
    right: 0.9375rem;
  }
}

.summary__text span {
  background: #fff;
  color: #C86180;
}

/*-------------------------------------------------------------------
  images
-------------------------------------------------------------------*/
.images__wrap {
  margin-top: 353px;
  margin-top: 22.0625rem;
}
@media screen and (max-width: 768px) {
  .images__wrap {
    margin-top: 14rem;
  }
}

.images__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .images__inner {
    padding: 0 1.125rem;
    max-width: 29.0625rem;
  }
}

.images__img-box {
  background: #fff;
  border-radius: 1.875rem;
  padding: 82px 78px;
  padding: 5.125rem 4.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .images__img-box {
    border-radius: 0.625rem;
    padding: 1.375rem 1.125rem;
  }
}

.images__img-box::before {
  content: "";
  position: absolute;
  background: url(../images/man_woman.png) center center no-repeat;
  background-size: cover;
  top: -283px;
  top: -17.6875rem;
  left: 51%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 490px;
  width: 30.625rem;
  height: 835px;
  height: 52.1875rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .images__img-box::before {
    width: 100%;
    background: url(../images/man_woman_sp.png) center center no-repeat;
    background-size: cover;
    width: 22.3125rem;
    height: 13.25rem;
    top: -13.25rem;
  }
}

/*-------------------------------------------------------------------
  suggest
-------------------------------------------------------------------*/
.suggest__wrap {
  margin-top: 63px;
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .suggest__wrap {
    margin-top: 3rem;
  }
}

.suggest__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .suggest__inner {
    padding: 0 0.9375rem;
    max-width: 29.0625rem;
  }
}

.suggest__title {
  max-width: 908px;
  max-width: 56.75rem;
  width: 100%;
  margin: auto;
}

.suggest__list {
  margin-top: 295px;
  margin-top: 18.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7%;
}
@media screen and (max-width: 768px) {
  .suggest__list {
    display: block;
    margin-top: 12.9375rem;
  }
}

.suggest__item {
  width: 46%;
  background: #fff;
  border-radius: 1.875rem;
  padding: 20px;
  padding: 1.25rem;
  padding: 25px 25px 45px;
  padding: 1.5625rem 1.5625rem 2.8125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .suggest__item {
    width: 100%;
    padding: 1.5625rem 1.5625rem 1.8125rem;
  }
}

.suggest__item::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.suggest__item--bg1::before {
  background: url(../images/suggest_bg1.png) center center no-repeat;
  background-size: cover;
  width: 256px;
  width: 16rem;
  height: 268px;
  height: 16.75rem;
  top: -222px;
  top: -13.875rem;
}
@media screen and (max-width: 768px) {
  .suggest__item--bg1::before {
    width: 12.1875rem;
    height: 12.75rem;
    top: -10.5625rem;
  }
}

.suggest__item--bg2::before {
  background: url(../images/suggest_bg2.png) center center no-repeat;
  background-size: cover;
  width: 338px;
  width: 21.125rem;
  height: 220px;
  height: 13.75rem;
  top: -209px;
  top: -13.0625rem;
}
@media screen and (max-width: 768px) {
  .suggest__item--bg2::before {
    width: 15.5625rem;
    height: 10.125rem;
    top: -9.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .suggest__item + .suggest__item {
    margin-top: 12.8125rem;
  }
}

.suggest__s-title {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 50px;
  line-height: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .suggest__s-title {
    font-size: 1.625rem;
    line-height: 2.625rem;
  }
}

.suggest__img1 {
  max-width: 237px;
  max-width: 14.8125rem;
  width: 100%;
  margin: 30px auto 0;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .suggest__img1 {
    max-width: 10.9375rem;
    width: 100%;
    margin: 1.5625rem auto 0;
  }
}

.suggest__img2 {
  max-width: 313px;
  max-width: 19.5625rem;
  width: 100%;
  margin: 51px auto 0;
  margin: 3.1875rem auto 0;
}
@media screen and (max-width: 768px) {
  .suggest__img2 {
    width: 14.4375rem;
    height: 86x;
    margin: 1.5625rem auto 0;
  }
}

.suggest__text {
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 31.5px;
  line-height: 1.96875rem;
  padding: 0 14px;
  padding: 0 0.875rem;
}
@media screen and (max-width: 768px) {
  .suggest__text {
    font-size: 0.8125rem;
    padding: 0 0.4375rem;
    margin-top: 1.5625rem;
    line-height: 1.425rem;
  }
}

.suggest__text--mt {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .suggest__text--mt {
    margin-top: 1.8125rem;
  }
}

/*-------------------------------------------------------------------
  hear
-------------------------------------------------------------------*/
.hear__wrap {
  margin-top: 96px;
  margin-top: 6rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .hear__wrap {
    margin-top: 2.4375rem;
    padding-bottom: 2.375rem;
  }
}

.hear__inner {
  max-width: 930px;
  max-width: 58.125rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .hear__inner {
    padding: 0 1.125rem;
    max-width: 29.0625rem;
  }
}

.hear__img {
  max-width: 880px;
  max-width: 55rem;
  width: 100%;
  margin: auto;
  position: relative;
}

.hear__link {
  display: block;
  width: 611px;
  width: 38.1875rem;
  position: absolute;
  bottom: 43px;
  bottom: 2.6875rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 768px) {
  .hear__link {
    width: 80%;
    bottom: 1.875rem;
  }
}

.hear__box {
  margin-top: 48px;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  .hear__box {
    display: block;
    padding: 0 1.125rem;
    margin-top: 2.3125rem;
  }
}

.hear__text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 21px;
  line-height: 1.3125rem;
}

@media screen and (max-width: 768px) {
  .hear__text + .hear__text {
    margin-top: 1.25rem;
  }
}

/*-------------------------------------------------------------------
  bg
-------------------------------------------------------------------*/
.bg {
  position: relative;
}

.bg::before {
  content: "";
  position: absolute;
  background: url(../images/bg.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/*-------------------------------------------------------------------
  special
-------------------------------------------------------------------*/
.special__wrap {
  padding: 170px 0 100px;
  padding: 10.625rem 0 6.25rem;
  overflow: hidden;
}

.special__title {
  max-width: 393px;
  max-width: 24.5625rem;
  width: 100%;
  margin: auto;
}

.special__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px auto 0;
  margin: 3.75rem auto 0;
  max-width: 1110px;
  max-width: 69.375rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
  width: 100%;
  gap: 4.5%;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  position: relative;
}

.special__box::after {
  content: "";
  position: absolute;
  background: #30A8A9;
  width: 81vw;
  height: 93%;
  min-height: 386px;
  min-height: 24.125rem;
  z-index: -1;
  right: 0;
  top: 0;
  /* margin-right: calc(50% - 50vw + var(--scrollbar-width)); */
  margin-right: calc(50% - 50vw);
}

.special__box--left {
  margin-right: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.special__box--left::after {
  width: 81vw;
  height: 93%;
  min-height: 386px;
  min-height: 24.125rem;
  z-index: -1;
  right: auto;
  right: initial;
  left: 0;
  top: 0;
  margin-right: 0;
  margin-right: initial;
  margin-left: calc(50% - 50vw);
}

.special__box--coming-soon {
  display: none;
}

.special__box + .special__box {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.special__box--icon::before {
  content: "";
  position: absolute;
  background: url(../images/special_icon.png) center center no-repeat;
  background-size: contain;
  width: 234px;
  width: 14.625rem;
  height: 217px;
  height: 13.5625rem;
  top: -217px;
  top: -13.5625rem;
  left: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.special__img {
  max-width: 550px;
  max-width: 34.375rem;
  width: 43vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 31px;
  margin-top: 1.9375rem;
  overflow: hidden;
}

.special__img--left {
  margin-left: 0;
}

.special__img img {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.special__article {
  padding-top: 58px;
  padding-top: 3.625rem;
  /* padding-bottom: rem(50); */
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  width: 41%;
}

.special__article-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
}

.special__article-text {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 31px;
  margin-top: 1.9375rem;
  line-height: 33px;
  line-height: 2.0625rem;
}

.special__article-more {
  max-width: 152px;
  max-width: 9.5rem;
  width: 100%;
  margin-top: 34px;
  margin-top: 2.125rem;
  position: relative;
}

.special__article-more::before,
.special__article-more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -12px;
  bottom: -0.75rem;
  left: 0;
  background: #fff;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  border-radius: 0.3125rem;
}

.special__article-more::after {
  width: 0;
  background: #83CCCA;
}

.special__box:hover .special__article-more::after {
  width: 100%;
}

.special__box:hover .special__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*-------------------------------------------------------------------
  footer
-------------------------------------------------------------------*/
.footer {
  background: #232323;
  text-align: center;
  color: #fff;
  min-width: 100%;
  margin-top: 0;
}

.footer__inner {
  padding-top: 63px;
  padding-top: 3.9375rem;
  padding-bottom: 84px;
  padding-bottom: 5.25rem;
}

.footer__logo {
  display: block;
  max-width: 304px;
  max-width: 19rem;
  width: 100%;
  margin: auto;
}

.footer__about {
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.footer__pr {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer__note {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.footer__flex {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  gap: 3.75rem;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.footer__flex p {
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
}

.footer__text + .footer__text {
  margin-top: 0;
}

.footer__copyright {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 50px;
  margin-top: 3.125rem;
  letter-spacing: 0.06em;
}

/* スマホサイズ */
@media screen and (max-width: 46.875rem) {
  .footer__inner {
    padding-bottom: 2.1875rem;
    padding-top: 4.875rem;
    padding-left: 0.5rem;
  }
  .footer__about {
    margin-top: 0.3125rem;
  }
  .footer__flex {
    /* margin-top: rem(76); */
    margin-top: 3.125rem;
    letter-spacing: 0.1em;
    text-align: center;
    display: grid;
    gap: 0.125rem;
  }
  .footer__pr {
    margin-left: -1.625rem;
  }
  .footer__note {
    font-size: 0.875rem;
  }
  .footer__text + .footer__text {
    margin-top: 1rem;
  }
  .footer__copyright {
    font-size: 0.75rem;
    margin-top: 2.9375rem;
  }
}
/*# sourceMappingURL=styles.css.map */
