@charset "UTF-8";
/* Color Palette */
/* Padding */
/* Heder Space */
/* Wrap */
/* Padding */
:root {
  /* デフォルト */
  --large: 8rem;
  --medium: 3rem;
  --small: 1rem;
  --section-padding: 8rem 0; }

@media screen and (max-width: 880px) {
  :root {
    --section-padding: 5rem 0; } }
@media screen and (max-width: 480px) {
  :root {
    --large: 3rem;
    --medium: 2rem;
    --small: .5rem;
    --section-padding: 3rem 0; } }
html, body {
  scroll-padding-top: 100px; }
  @media (max-width: 480px) {
    html, body {
      scroll-padding-top: 120px; } }

html {
  box-sizing: border-box; }

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

body {
  background: #ffffff; }

section {
  padding: 8rem 0; }
  @media (max-width: 880px) {
    section {
      padding: 5.5rem 0; } }
  @media (max-width: 480px) {
    section {
      padding: 4rem 0; } }

sup {
  font-weight: normal;
  font-size: 50%;
  vertical-align: super; }

h2 {
  font-size: clamp(22px, 2.5vw, 48px);
  font-weight: 600; }
  @media (max-width: 480px) {
    h2 {
      font-size: 20px; } }
  h2 + p {
    margin-top: 1rem;
    font-size: clamp(18px, 2vw, 28px); }

h3 {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 600; }
  @media (max-width: 480px) {
    h3 {
      font-size: 18px; } }

h4 {
  font-size: clamp(21px, 1.5vw, 26px);
  font-weight: 600; }
  @media (max-width: 480px) {
    h4 {
      font-size: 21px; } }

.f-600 {
  font-weight: 600; }

.section_title {
  text-align: center; }

.large-wrapper {
  width: 90%;
  max-width: 1440px;
  margin: auto; }

.small-wrapper {
  width: 90%;
  max-width: 1080px;
  margin: auto; }

/* ------------------
MAIN VISUAL
------------------*/
.mv_wrapper {
  width: 100%;
  height: calc( 100vh - 90px );
  position: relative;
  overflow: hidden;
  margin-top: 90px; }
  @media (max-width: 1024px) {
    .mv_wrapper {
      height: 52vw; } }
  @media (max-width: 640px) {
    .mv_wrapper {
      height: 106vw;
      margin-top: 52px; } }
  .mv_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom; }
    @media (max-width: 640px) {
      .mv_wrapper img {
        object-position: right 15% bottom 0%; } }

.mv_ttl {
  position: absolute;
  width: 92%;
  max-width: 650px;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  color: #ffffff; }
  @media (max-width: 1200px) {
    .mv_ttl {
      top: 35%;
      left: 42%;
      transform: translate(-50%, -50%); } }
  @media (max-width: 880px) {
    .mv_ttl {
      left: 50%; } }
  @media (max-width: 640px) {
    .mv_ttl {
      text-align: center;
      top: 35%; } }
  .mv_ttl h1 {
    display: inline-block;
    margin: 2rem 0 3rem;
    font-weight: 500;
    text-align: left;
    font-size: 70px;
    line-height: 1; }
    @media (max-width: 1024px) {
      .mv_ttl h1 {
        font-size: 50px;
        margin: 1rem 0 2rem; } }
    @media (max-width: 640px) {
      .mv_ttl h1 {
        font-size: 45px; } }
    @media (max-width: 480px) {
      .mv_ttl h1 {
        font-size: 36px; } }
  .mv_ttl p {
    display: inline-block;
    font-size: clamp(16px, 4vw, 30px);
    font-weight: 600;
    letter-spacing: .05rem;
    font-size: 30px; }
    .mv_ttl p span {
      font-feature-settings: 'palt'; }
    @media (max-width: 1024px) {
      .mv_ttl p {
        font-size: 21px; } }
    @media (max-width: 640px) {
      .mv_ttl p {
        font-size: 19px; } }
    @media (max-width: 480px) {
      .mv_ttl p {
        font-size: 15px; } }
  .mv_ttl a {
    line-height: 1.5;
    padding: .8rem 2rem; }
    @media (max-width: 1024px) {
      .mv_ttl a {
        font-size: 12px; } }

/* ------------------
INTRODUCTION
------------------*/
.introduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(360px, auto);
  overflow: hidden; }
  @media (max-width: 880px) {
    .introduction {
      grid-template-columns: 1fr;
      grid-auto-rows: minmax(200px, auto); } }
  .introduction .intro {
    min-height: auto; }
    .introduction .intro.left {
      background: #1414d2;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center; }
      .introduction .intro.left .intro-copy p {
        line-height: 2.3;
        font-weight: 500;
        font-size: clamp(16px, 1.5vw, 24px); }
    .introduction .intro.right {
      background: #ffffff;
      color: #1414d2;
      display: flex;
      align-items: center;
      justify-content: center; }
      .introduction .intro.right .intro-details {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 4rem;
        text-align: center; }
        @media (max-width: 640px) {
          .introduction .intro.right .intro-details {
            gap: 2rem; } }
        .introduction .intro.right .intro-details .fact {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-items: center;
          gap: 2rem; }
          @media (max-width: 640px) {
            .introduction .intro.right .intro-details .fact {
              gap: 1.5rem; } }
          .introduction .intro.right .intro-details .fact__icon {
            width: 36px;
            height: auto; }
            .introduction .intro.right .intro-details .fact__icon img {
              width: 100%;
              height: 100%;
              display: block;
              object-fit: contain; }
          .introduction .intro.right .intro-details .fact__text {
            margin: 0;
            line-height: 1;
            font-weight: 500;
            font-size: clamp(14px, 1.4vw, 22px); }
          .introduction .intro.right .intro-details .fact__text-big {
            margin: 0;
            line-height: 1;
            font-weight: 500;
            font-size: clamp(21px, 2.5vw, 40px); }
            .introduction .intro.right .intro-details .fact__text-big span {
              font-weight: 600; }

.intro-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto); }
  @media (max-width: 880px) {
    .intro-images {
      grid-auto-rows: minmax(80px, auto); } }
  .intro-images img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    /* 高さが確定しない環境向けの比率指定 */
    aspect-ratio: 5 / 3; }

/* ------------------
Services for Family / Mile Pooling
------------------*/
.f-services {
  display: flex;
  flex-wrap: wrap;
  /* 2つ目以降の .card-text は上マージンを消す */ }
  .f-services .block {
    width: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (max-width: 640px) {
      .f-services .block {
        flex-basis: 100%;
        width: 100%; } }
    .f-services .block.second-row {
      align-items: flex-start; }
    .f-services .block.text-box {
      padding: 3rem 6rem; }
      @media (max-width: 1200px) {
        .f-services .block.text-box {
          padding: 1rem 3rem; } }
      @media (max-width: 640px) {
        .f-services .block.text-box {
          padding: 0; } }
    .f-services .block__image {
      position: relative;
      width: 100%;
      height: 100%; }
      .f-services .block__image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center; }
        .f-services .block__image img.posi-right {
          object-position: right 15% top 50%; }
        .f-services .block__image img.posi-left {
          object-position: left; }
          @media (max-width: 1200px) {
            .f-services .block__image img.posi-left {
              object-position: left 20% top 50%; } }
      .f-services .block__image .caption-left {
        position: absolute;
        bottom: 1rem;
        left: 1rem; }
    .f-services .block__content {
      width: 100%;
      max-width: 560px;
      display: flex;
      flex-direction: column;
      margin-left: auto;
      padding: 2rem 0; }
      @media (max-width: 640px) {
        .f-services .block__content {
          width: 90%;
          margin: 0 auto;
          padding: 4rem 0; }
          .f-services .block__content.meal-kit {
            flex-direction: column-reverse; } }
      .f-services .block__content .note {
        position: relative;
        padding-left: .7rem;
        line-height: 1.6; }
        .f-services .block__content .note::before {
          content: "*";
          position: absolute;
          left: 0; }
      .f-services .block__content .caption {
        font-size: 80%; }
      .f-services .block__content h2, .f-services .block__content h4 {
        margin-bottom: 2rem; }
      @media (max-width: 640px) {
        .f-services .block__content h2 {
          font-size: 36px; } }
      @media (max-width: 640px) {
        .f-services .block__content h4.milepool {
          font-size: 19.5px; } }
      .f-services .block__content h4.baby {
        margin-bottom: 0; }
      .f-services .block__content .seating {
        margin: 2rem 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1rem; }
        @media (max-width: 640px) {
          .f-services .block__content .seating {
            flex-direction: column; } }
        .f-services .block__content .seating__child {
          width: calc( (100% - 1rem) / 2 );
          background: #ffffff;
          padding: 5px;
          border-radius: 10px; }
          @media (max-width: 1200px) {
            .f-services .block__content .seating__child {
              width: 100%; } }
          .f-services .block__content .seating__child p {
            padding: .7rem 1rem;
            color: #000000;
            font-size: 75%; }
          .f-services .block__content .seating__child p.label {
            background: #f7f4f2;
            border-radius: 10px 10px 0 0; }
          .f-services .block__content .seating__child p.link {
            display: grid;
            grid-template-columns: max-content 1fr;
            column-gap: 1rem;
            align-items: baseline;
            font-feature-settings: 'palt'; }
          .f-services .block__content .seating__child .cta {
            display: inline-block;
            text-indent: 0; }
      .f-services .block__content.reverse {
        margin-right: auto;
        margin-left: unset; }
        @media (max-width: 640px) {
          .f-services .block__content.reverse {
            width: 90%;
            margin: 0 auto; } }
      .f-services .block__content__image {
        position: relative;
        width: 100%;
        height: 100%;
        margin-bottom: 2rem; }
        @media (max-width: 640px) {
          .f-services .block__content__image {
            margin-bottom: 0;
            margin-top: 2rem; } }
        .f-services .block__content__image img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover;
          object-position: center; }
        .f-services .block__content__image .caption-left {
          position: absolute;
          bottom: 1rem;
          left: 1rem; }
        .f-services .block__content__image .caption-right {
          position: absolute;
          bottom: 1rem;
          right: 1rem; }
        .f-services .block__content__image .swiper-wrapper {
          display: flex;
          gap: 1rem;
          transform: none !important;
          transition: none !important; }
          .f-services .block__content__image .swiper-wrapper .swiper-slide {
            position: relative;
            width: 100%;
            height: auto; }
            .f-services .block__content__image .swiper-wrapper .swiper-slide img {
              width: 100%;
              height: 100%;
              display: block;
              object-fit: cover;
              object-position: center; }
  .f-services p.card-text {
    background: #ffffff;
    border-radius: 10px;
    padding: .7rem 1rem;
    color: #000000;
    margin-bottom: 1rem;
    margin-top: 2rem; }
    @media (max-width: 880px) {
      .f-services p.card-text {
        font-size: 80%; } }
  .f-services p.card-text + p.card-text {
    margin-top: 0; }
  .f-services .milepool-btn {
    padding-top: 2rem; }
    @media (max-width: 880px) {
      .f-services .milepool-btn {
        margin: 0 auto; } }
    .f-services .milepool-btn .btn {
      display: inline-block;
      width: auto; }

/* ------------------
Services Points
------------------*/
.service-points {
  position: relative;
  z-index: 0;
  isolation: isolate; }
  .service-points::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #1414d2;
    transform: translateX(-50%);
    z-index: -1; }
    @media (max-width: 880px) {
      .service-points::before {
        display: none; } }
  @media (max-width: 880px) {
    .service-points {
      width: 640px;
      margin: 0 auto; } }
  @media (max-width: 640px) {
    .service-points {
      width: auto; } }

/* 各ステップ行 */
.point {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12rem;
  z-index: 1;
  /*交互に左右を入れ替え（PCのみ効く） */
  /* SP：写真→テキストの順で縦並び（番号は左） */ }
  .point.is-even {
    flex-direction: row-reverse; }
  .point:last-child {
    margin-bottom: 0; }
  @media (max-width: 880px) {
    .point {
      gap: 4rem;
      margin-bottom: 0;
      padding-bottom: 4rem; }
      .point::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 7.5%;
        width: 2px;
        background: #1414d2;
        z-index: -1; } }
  .point__number {
    position: absolute;
    left: 50%;
    top: 5%;
    translate: -50% -50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1414d2;
    color: #ffffff;
    font-weight: 800;
    font-size: 30px;
    display: grid;
    place-items: center; }
    @media (max-width: 1200px) {
      .point__number {
        width: 35px;
        height: 35px;
        font-size: 24px; } }
    @media (max-width: 880px) {
      .point__number {
        left: 7.5%;
        top: 0;
        translate: -50% 0; } }
  .point__block {
    width: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 6rem;
    z-index: 1; }
    @media (max-width: 1200px) {
      .point__block {
        padding: 0 3rem; } }
    @media (max-width: 880px) {
      .point__block {
        flex-basis: 100%;
        width: 100%;
        padding: 0; } }
    .point__block .text {
      width: 100%;
      max-width: 560px;
      display: flex;
      flex-direction: column;
      margin-left: auto; }
      @media (max-width: 880px) {
        .point__block .text {
          width: 90%;
          margin: 0 auto;
          padding-left: 8%; } }
      .point__block .text.reverse {
        margin-right: auto;
        margin-left: unset; }
        @media (max-width: 880px) {
          .point__block .text.reverse {
            margin: 0 auto; } }
      .point__block .text .checklist {
        margin: 0;
        padding: 0;
        list-style: none; }
        .point__block .text .checklist li {
          position: relative;
          padding-left: 9rem;
          margin-top: 3rem;
          z-index: 10; }
          @media (max-width: 1200px) {
            .point__block .text .checklist li {
              padding-left: 4rem; } }
          @media (max-width: 880px) {
            .point__block .text .checklist li {
              padding-left: 0; } }
          .point__block .text .checklist li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 25px;
            margin: 0 3rem;
            background: url("../img/family/icon_tick.svg");
            background-size: cover;
            background-position: center;
            z-index: 3; }
            @media (max-width: 1200px) {
              .point__block .text .checklist li::before {
                margin: 0; } }
            @media (max-width: 880px) {
              .point__block .text .checklist li::before {
                left: -8%;
                transform: translate(-50%, -50%); } }
            @media (max-width: 640px) {
              .point__block .text .checklist li::before {
                left: -6.8%; } }
      .point__block .text a.btn {
        display: inline-block;
        width: auto;
        margin-top: 2rem;
        align-self: flex-start; }
    .point__block .image {
      width: 100%;
      max-width: 560px;
      display: flex;
      flex-direction: column;
      margin-left: auto; }
      @media (max-width: 880px) {
        .point__block .image {
          width: 90%;
          margin: 0 auto; } }
      .point__block .image.reverse {
        margin-right: auto;
        margin-left: unset; }
        @media (max-width: 880px) {
          .point__block .image.reverse {
            margin: 0 auto; } }
      .point__block .image img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16 / 9;
        object-fit: cover; }
  @media (max-width: 880px) {
    .point {
      /* 交互指定を無効化 */ }
      .point .point__block.image {
        order: 1;
        margin-top: 8px; }
      .point .point__block.text {
        order: 2;
        margin-top: 12px; }
      .point.is-even {
        flex-direction: column; } }

/* ------------------
SWIPER LOOP
------------------*/
.swiper-loop-wrapper {
  position: relative;
  padding: 1rem 0; }
  .swiper-loop-wrapper .wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    height: 100%; }
    @media (max-width: 880px) {
      .swiper-loop-wrapper .wrap {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        height: auto; } }
  .swiper-loop-wrapper__ttl-block {
    width: 40%;
    min-width: 450px;
    padding: var(--medium);
    margin-left: auto;
    background: #ffffff;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box; }
    @media (max-width: 880px) {
      .swiper-loop-wrapper__ttl-block {
        width: 100%;
        min-width: 100%; } }
    .swiper-loop-wrapper__ttl-block h2 {
      font-size: clamp(20px, 3vw, 30px);
      margin: 2rem 0; }
    @media (max-width: 480px) {
      .swiper-loop-wrapper__ttl-block .icon {
        width: 40px;
        height: auto; } }

.swiper-loop, .swiper-loop-reverse {
  overflow: hidden; }
  .swiper-loop .swiper-wrapper, .swiper-loop-reverse .swiper-wrapper {
    transition-timing-function: linear; }
    .swiper-loop .swiper-wrapper .swiper-slide, .swiper-loop-reverse .swiper-wrapper .swiper-slide {
      width: auto;
      height: 100%;
      max-height: 600px; }
      @media (max-width: 880px) {
        .swiper-loop .swiper-wrapper .swiper-slide, .swiper-loop-reverse .swiper-wrapper .swiper-slide {
          max-height: 200px; } }
      .swiper-loop .swiper-wrapper .swiper-slide img, .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
        width: auto;
        height: 600px; }
        @media (max-width: 880px) {
          .swiper-loop .swiper-wrapper .swiper-slide img, .swiper-loop-reverse .swiper-wrapper .swiper-slide img {
            max-height: 200px; } }

/* ------------------
united app
------------------*/
#united-app {
  position: relative;
  background: #ffffff;
  overflow: clip; }
  #united-app > .large-wrapper {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0 0; }

.cloud-bg {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100vw;
  height: 620px;
  background: url("../img/family/bg_united-app.jpg") top/cover no-repeat;
  z-index: 0; }

.ua-app-grid {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-rows: auto auto auto;
  grid-template-areas: "a d" "b d" "c d";
  align-items: stretch; }
  .ua-app-grid .app-box1 {
    grid-area: a; }
  .ua-app-grid .app-box2 {
    grid-area: b; }
  .ua-app-grid .app-box3 {
    grid-area: c; }
  .ua-app-grid .app-box4 {
    grid-area: d; }
  @media (max-width: 880px) {
    .ua-app-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 3fr auto;
      grid-template-areas: "a d" "b d" "c c"; } }
  @media (max-width: 480px) {
    .ua-app-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto 1fr auto;
      grid-template-areas: "a a" "b d" "c c"; } }
  .ua-app-grid .app-box1 {
    padding: var(--medium) 0 0; }
    @media (max-width: 880px) {
      .ua-app-grid .app-box1 {
        display: flex;
        align-items: flex-end; } }
  @media (max-width: 880px) {
    .ua-app-grid .app-box2 {
      display: flex;
      align-items: flex-start;
      margin-top: 4rem; } }
  @media (max-width: 480px) {
    .ua-app-grid .app-box2 {
      align-items: center;
      margin-top: 0; } }
  .ua-app-grid .app-points-wrap {
    width: 100%;
    padding: 2rem 2rem var(--medium) 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem; }
    @media (max-width: 880px) {
      .ua-app-grid .app-points-wrap {
        padding: 0; } }
    .ua-app-grid .app-points-wrap .app-points {
      width: calc((100% - 1rem) / 2);
      max-width: 380px;
      display: flex;
      padding: 1.5rem 0;
      background: #ffffff;
      border-radius: 10px; }
      @media (max-width: 880px) {
        .ua-app-grid .app-points-wrap .app-points {
          width: 90%; } }
      @media (max-width: 480px) {
        .ua-app-grid .app-points-wrap .app-points {
          width: 93%;
          padding: .8rem 0; } }
      .ua-app-grid .app-points-wrap .app-points__icon {
        width: 20%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center; }
        @media (max-width: 880px) {
          .ua-app-grid .app-points-wrap .app-points__icon {
            width: 30%; } }
        .ua-app-grid .app-points-wrap .app-points__icon img {
          width: 45%;
          max-width: 30px;
          max-height: 30px; }
        .ua-app-grid .app-points-wrap .app-points__icon::after {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          width: 1px;
          height: 100%;
          background: rgba(0, 0, 0, 0.25); }
      .ua-app-grid .app-points-wrap .app-points__text {
        width: 70%;
        padding-left: 2rem;
        display: flex;
        align-items: center; }
        @media (max-width: 880px) {
          .ua-app-grid .app-points-wrap .app-points__text {
            width: 100%; } }
        @media (max-width: 480px) {
          .ua-app-grid .app-points-wrap .app-points__text {
            padding-left: 1rem; } }
        .ua-app-grid .app-points-wrap .app-points__text p {
          font-size: clamp(16px, 1.5vw, 21px);
          color: #000000;
          font-weight: 700; }
          @media (max-width: 480px) {
            .ua-app-grid .app-points-wrap .app-points__text p {
              font-size: 10px; } }
  .ua-app-grid .app-box3 {
    margin: 0 0 8rem; }
    .ua-app-grid .app-box3 .to-download_wrap {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem; }
      @media (max-width: 480px) {
        .ua-app-grid .app-box3 .to-download_wrap {
          justify-content: center; } }
      .ua-app-grid .app-box3 .to-download_wrap .to-download .badges {
        width: 100%;
        margin-top: 2rem;
        display: flex;
        gap: 1rem; }
        .ua-app-grid .app-box3 .to-download_wrap .to-download .badges img {
          display: block;
          block-size: clamp(40px, 7vw, 80px);
          inline-size: auto; }
      .ua-app-grid .app-box3 .to-download_wrap .to-download p {
        font-size: 21px;
        font-weight: 600; }
        @media (max-width: 480px) {
          .ua-app-grid .app-box3 .to-download_wrap .to-download p {
            font-size: 18px;
            text-align: center; } }
      .ua-app-grid .app-box3 .to-download_wrap .qr-code {
        display: block;
        flex: 0 0 auto;
        margin-right: 2rem; }
        .ua-app-grid .app-box3 .to-download_wrap .qr-code img {
          display: block;
          inline-size: clamp(80px, 8vw, 110px);
          block-size: auto; }
        @media (max-width: 480px) {
          .ua-app-grid .app-box3 .to-download_wrap .qr-code {
            display: none; } }
  .ua-app-grid .app-box4 {
    display: flex;
    justify-content: flex-end; }
    .ua-app-grid .app-box4 .phone {
      position: relative;
      inline-size: min(375px, 100%);
      /* ベース幅。必要に応じて調整 */
      aspect-ratio: 9 / 19.5;
      margin: 0 0 var(--large); }
      .ua-app-grid .app-box4 .phone::after {
        content: '';
        position: absolute;
        inset: 0;
        background: url("../img/family/image_iphone.png") center/contain no-repeat;
        z-index: 5; }
      @media (max-width: 880px) {
        .ua-app-grid .app-box4 .phone {
          inline-size: min(44vw, 400px);
          margin: 0; } }
      @media (max-width: 480px) {
        .ua-app-grid .app-box4 .phone {
          inline-size: min(45vw, 200px);
          margin: 3rem 0; } }
      .ua-app-grid .app-box4 .phone .screen-window {
        position: absolute;
        top: 5%;
        right: 5%;
        bottom: 0;
        left: 5%;
        border-radius: 30px;
        overflow: hidden;
        z-index: 3; }
        .ua-app-grid .app-box4 .phone .screen-window video {
          display: block;
          inline-size: 99%;
          block-size: auto; }

.div-padding {
  padding: 2rem 0 8rem; }
  @media (max-width: 480px) {
    .div-padding {
      padding: 0 0 4rem; } }

.footer {
  display: flex;
  flex-direction: row;
  align-items: center; }
  @media (max-width: 880px) {
    .footer {
      flex-direction: column-reverse;
      text-align: center; } }

.sns {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 2rem; }
  .sns img {
    max-width: 32px; }
  @media (max-width: 880px) {
    .sns {
      margin-left: unset;
      margin-bottom: 4rem;
      gap: 3rem; } }
