@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif !important;
    color: #333 !important;
    font-weight: 500;
    position: relative;
}

p {
    margin-bottom: 0 !important;
}

.fv {
    background-image: url(../img/top_fv.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    height: calc(100vh - 100px);
    min-height: 720px;
    position: relative;
    z-index: 1;
}

.fv__lead {
    position: absolute;
    top: 70px;
    right: 15%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
    .fv__lead {
        right: 8%;
        font-size: 24px;
    }
}

.fv__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 110px;
}

.fv__logo-img {
    width: 400px;
}

.fv__text-block {
    display: flex;
    /* gap: 20px; */
    gap: 50px;
}

.fv__text-block a {
    width: 140px;
}

.fv__text-block img {
    width: 100%;
}

@media (max-width: 1024px) {
    .fv {
        height: calc(100vh - 70px);
    }

    .fv__logo-img {
        width: 240px;
    }

    .fv__text-block {
        gap: 15px;
    }

    .fv__text-block a {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .fv__lead {
        top: 30px;
        font-size: 20px;
    }

    .fv__block {
        padding-top: 165px;
    }

    .fv__text-block {
        gap: 10px;
    }

    .fv__logo-img {
        width: 180px;
    }

    .fv__text-block a {
        width: 120px;
    }
}

@media (max-width: 450px) {
    .fv {
        height: 450px;
        min-height: 450px;
    }

    .fv__lead {
        right: 6%;
        top: 10px;
        font-size: 16px;
    }

    .fv__block {
        /* padding-top: 120px; */
        padding-top: 80px;
        gap: 14px;
    }

    .fv__logo-img {
        width: 120px;
    }

    .fv__text-block {
        gap: 5px;
    }

    .fv__text-block a {
        width: 100px;
    }
}

.top-banner {
    margin-top: 110px;
}

.top-banner__inner.inner {
    max-width: 1440px;
}

.top-banner__inner-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.top-banner__inner-flex + .top-banner__inner-flex {
    margin-top: 50px;
}

.top-banner__img {
    width: calc(50% - 25px);
    border-radius: 15px;
    display: block;
    transition: 0.3s;
    aspect-ratio: 675 / 227;
}

.top-banner__img:hover {
    opacity: 0.7;
}

.top-banner__img img {
    width: 100%;
    border-radius: 15px;
    aspect-ratio: 675 / 227;
    object-fit: cover;
}

@media (max-width: 1260px) {
    .top-banner__inner-flex {
        gap: 30px;
    }

    .top-banner__img {
        width: calc(50% - 15px);
    }
}

@media (max-width: 1024px) {
    .top-banner {
        margin-top: 50px;
    }

    .top-banner__inner-flex {
        flex-direction: column;
        gap: 20px;
    }

    .top-banner__inner-flex + .top-banner__inner-flex {
        margin-top: 20px;
    }

    .top-banner__img {
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .top-banner__img {
        border-radius: 10px;
    }

    .top-banner__img img {
        border-radius: 10px;
    }
}

.pickup {
    margin-top: 120px;
}

.pickup__title {
    text-align: center;
}

.pickup__contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 49px;
    margin-top: 52px;
}

.pickup__button-block {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 1200px) {
    .pickup__contents {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .pickup__contents {
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .pickup__contents {
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
        max-width: 450px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .pickup {
        margin-top: 70px;
    }

    .pickup__contents {
        margin-top: 40px;
    }
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.card__img {
    aspect-ratio: 1 / 1;
    display: block;
    transition: opacity 0.3s;
}

.card__img:hover {
    opacity: 0.7;
}

.card__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__content {
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s;
}

.card__content:hover {
    opacity: 0.7;
}

.card__icon-block {
    display: flex;
    gap: 6px;
}

.card__icon {
    width: 54px;
}

.card__title {
    font-size: 20px;
    color: #21819F;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 10px;
}

.card__text {
    font-size: 15px;
    line-height: 1.7333;
    font-weight: 400;
    padding-top: 15px;
    margin-top: auto;
    margin-bottom: 0;
}

.card__info {
    color: #21819F;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    padding-top: 19px;
    margin-top: 0;
}

.card__info span {
    color: #D83030;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}

.card__button-block {
    padding-top: 30px;
    margin-top: auto;
    text-align: center;
    width: 100%;
}

@media (max-width: 850px) {
    .card {
        align-items: flex-start;
    }

    .card__button-block {
        padding-top: 7px;
    }
}

.service {
    margin-top: 120px;
    position: relative;
    z-index: 2;
    height: 606px;
}

.service__bg-img-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 50%;
    height: inherit;
}

.service__bg-img-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 50%;
    height: inherit;
}

.service__bg-img-left img,
.service__bg-img-right img {
    object-fit: cover;
    width: 100%;
    height: inherit;
}

.service__inner {
    max-width: 1200px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    height: inherit;
}

.service__contents {
    width: 460px;
    border-radius: 20px;
    padding: 45px 60px 40px 60px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.service__season {
    font-size: 20px;
    font-weight: 700;
    color: #C68A03;
    line-height: 1;
}

.service__title {
    font-size: 28px;
    color: #21819F;
    line-height: 1;
    font-weight: 700;
    margin-top: 12px;
}

.service__contents-img {
    width: 100%;
    max-width: 340px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
}

.service__text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 16px;
}

.service__button-block {
    width: 100%;
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .service {
        margin-top: 70px;
        height: 460px;
    }

    .service__contents {
        max-width: 460px;
        width: 89.3%;
        padding: 30px;
    }

    .service__season {
        font-size: 17px;
    }

    .service__title {
        font-size: 22px;
        line-height: 1.2;
    }

    .service__text {
        font-size: 15px;
    }

    .service__button-block {
        margin-top: 24px;
    }
}

.voice {
    background-image: url(../img/blog_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-top: 100px;
    padding-bottom: 166px;
    position: relative;
    margin-top: 50px;
}

.voice__circle {
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.voice__star {
    width: 120px;
}

.voice__sub-title-wrap {
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: unset;
}

.voice__sub-title {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: #21819F;
    font-weight: 700;
    margin-top: 17px;
    text-align: center;
}

.voice__title {
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #21819F;
    font-weight: 700;
    margin-top: 18px;
    text-align: center;
}

.voice__text {
    margin-top: 37px;
    font-size: 18px;
    line-height: 2.2222;
    font-weight: 500;
}

.voice__content-table01 {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    z-index: 3;
    top: 80px;
    left: -280px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 186px;
}

.voice__content-table02 {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    z-index: 3;
    top: 80px;
    right: -280px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 186px;
}

.voice__content-table01 img,
.voice__content-table02 img {
    width: 88%;
}

.voice__content {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    z-index: 3;
    bottom: 38px;
    left: -220px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.voice__content02 {
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    position: absolute;
    z-index: 3;
    bottom: 38px;
    right: -220px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.voice__content p,
.voice__content02 p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    color: #21819F;
    margin-bottom: 0;
}

.voice__content span,
.voice__content02 span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.55;
    color: #D83030;
}

.voice__inner {
    max-width: 1326px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.voice__google {
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 50px;
    padding: 50px 20px 60px;
}

.voice__button-block {
    text-align: center;
    margin-top: 40px;
}

.voice__bg {
    width: 100%;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
}

.voice__bg img {
    width: 100%;
}

@media (max-width: 1200px) {
    .voice__content-table01 {
        top: -65px;
        left: -140px;
    }

    .voice__content-table02 {
        top: -65px;
        right: -140px;
    }

    .voice__content {
        bottom: -20px;
        left: -110px;
    }

    .voice__content02 {
        bottom: -20px;
        right: -110px;
    }
}

@media (max-width: 850px) {
    .voice__circle {
        width: 380px;
        height: 380px;
    }

    .voice__sub-title {
        font-size: 18px;
        margin-top: 12px;
    }

    .voice__title {
        font-size: 24px;
        margin-top: 15px;
    }

    .voice__text {
        margin-top: 25px;
        font-size: 15px;
        line-height: 2;
    }

    .voice__content-table01 {
        width: 220px;
        height: 136px;
        top: -50px;
        left: -90px;
    }

    .voice__content-table02 {
        width: 220px;
        height: 136px;
        top: -50px;
        right: -90px;
    }

    .voice__content {
        width: 250px;
        bottom: -30px;
        left: -80px;
    }

    .voice__content02 {
        width: 250px;
        bottom: -30px;
        right: -80px;
    }

    .voice__content p,
    .voice__content02 p {
        font-size: 16px;
    }

    .voice__content span,
    .voice__content02 span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .voice {
        margin-top: 10px;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .voice__content-table01 {
        width: 200px;
        height: 120px;
        top: -50px;
        left: -20px;
    }

    .voice__content-table02 {
        width: 200px;
        height: 120px;
        top: -50px;
        right: -20px;
    }

    .voice__content {
        width: 250px;
        bottom: -50px;
        left: -70px;
    }

    .voice__content02 {
        width: 250px;
        bottom: -50px;
        right: -70px;
    }

    .voice__google {
        margin-top: 100px;
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .voice {
        padding-top: 230px;
    }

    .voice__circle {
        width: 320px;
        height: 320px;
    }

    .voice__star {
        margin-top: 12px;
    }

    .voice__content-table01,
    .voice__content-table02,
    .voice__content,
    .voice__content02 {
        position: static;
        padding: 10px;
    }

    .voice__content-table01 {
        margin-top: -60px;
    }

    .voice__content-table02,
    .voice__content,
    .voice__content02 {
        margin-top: 20px;
    }

    .voice__google {
        margin-top: 170px;
    }
}

.season {
    margin-top: 88px;
}

.season__title {
    text-align: center;
}

.season__lead {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.875;
    color: #21819F;
    text-align: center;
    font-weight: 500;
}

.season__contents {
    margin-top: 53px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.season__block01 {
    background-color: #FAE7E7;
}

.season__block02 {
    background-color: #DAEEFA;
}

.season__block03 {
    background-color: #D8E5D2;
}

.season__block04 {
    background-color: #EDE1C6;
}

@media (max-width: 768px) {
    .season {
        margin-top: 70px;
    }
}

@media (max-width: 600px) {
    .season__contents {
        margin-top: 53px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.block {
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.block:nth-of-type(2),
.block:nth-of-type(4) {
    flex-direction: row-reverse;
}

.block__img {
    aspect-ratio: 343 / 280;
    border-radius: 20px;
    width: 56.8%;
}

.block__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.block__content {
    width: calc(43.2% - 30px);
}

.block__info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.block__icon {
    width: 44.3%;
}

.block__icon img {
    width: 100%;
}

.block__season {
    width: 46.9%;
}

.block__month {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 6px;
    letter-spacing: unset;
}

.block__month01 {
    color: #EB8B8B;
    border-bottom: 2px solid #EB8B8B;
}

.block__month02 {
    color: #4CABDD;
    border-bottom: 2px solid #4CABDD;
}

.block__month03 {
    color: #6BA551;
    border-bottom: 2px solid #6BA551;
}

.block__month04 {
    color: #C68A03;
    border-bottom: 2px solid #C68A03;
}

.block__temperature {
    line-height: 1;
    font-size: 15px;
    font-weight: 500;
    margin-top: 14px;
}

.block__text {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.733;
}

@media (max-width: 1440px) {
    .block {
        padding: 50px 20px;
        gap: 20px;
    }

    .block__info {
        gap: 10px;
    }

    .block__icon {
        width: 34%;
    }

    .block__season {
        width: 61%;
    }
}

@media (max-width: 1024px) {
    .block {
        flex-direction: column;
        justify-content: flex-start;
    }

    .block:nth-of-type(2),
    .block:nth-of-type(4) {
        flex-direction: column;
    }

    .block__img {
        width: 90%;
    }

    .block__content {
        width: 100%;
    }

    .block__info {
        gap: 20px;
        max-width: 300px;
        width: 70%;
    }
}

@media (max-width: 768px) {
    .block {
        padding: 40px 20px;
    }

    .block__img {
        width: 100%;
    }

    .block__info {
        width: 100%;
        max-width: 100%;
        gap: 10px;
    }

    .block__icon {
        width: 22%;
    }

    .block__season {
        width: 75%;
    }

    .block__month {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .block__img {
        max-width: 420px;
        width: 100%;
    }
}

.blog {
    background-image: url(../img/blog_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    padding-bottom: 100px;
    padding-top: 85px;
}

.blog__title {
    text-align: center;
}

.blog__contents {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card__img {
    aspect-ratio: 13 / 9;
    width: 100%;
}

.blog-card__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 13 / 9;
}

.blog-card__title {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.5555;
    font-weight: 500;
    color: #333;
    letter-spacing: unset;
}

.blog-card__date {
    font-size: 14px;
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 400;
    padding-top: 20px;
    margin-top: auto;
    font-family: "Cabin", sans-serif;
}

.blog__button-block {
    margin-top: 40px;
    text-align: center;
}

.blog__banner {
    margin-top: 100px;
    max-width: 1080px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    transition: 0.3s;
}

.blog__banner:hover {
    opacity: 0.7;
}

.blog__banner img {
    width: 100%;
}

@media (max-width: 1024px) {
    .blog__contents {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .blog__contents {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-card__date {
        padding-top: 10px;
    }

    .blog__banner {
        margin-top: 60px;
    }
}


.memory {
    margin-top: 80px;
    padding-bottom: 308px;
    position: relative;
}

.memory__flex {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.memory__block {
    width: 50%;
}

.memory__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.875;
    color: #333;
    margin-top: 40px;
}

.memory__subtitle-block {
    width: 100%;
    padding: 6px 12px;
    margin-top: 63px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background-image: url(../img/memory_title-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .memory__subtitle {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0;
}

.memory__info-web {
  margin-top: 15px;
  width: 100%;
  border-radius: 5px;
  line-height: 73px;
  /* border: 2px solid #21819F; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content:space-between;
}

.memory__info-web:active {
  border-bottom: 2px solid;
}
.m_box{
  display: flex;
  align-items: center;
}
.m_box_txt_b{
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #22819F;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: #22819F;
  line-height: 1.2;
}

.memory__info-time {
  display: block;
  background: #21819F;
  height: 100%;
  width: 173px;
  color: #FEFF5D;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
    border-radius: 5px 0 0 5px;
}
.top_line_icion{
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding-left: 22px;
    position: relative;
}
.top_line_icion img{
    width: 51px;
}
.top_line_icion span{
        display: block;
        text-align: left;
        font-size: 22px;
        line-height: 1.36;
        color: #4CC764;
}
.top_line_icion::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 12px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/cta_icon.png) no-repeat center / contain;
  background-size: 100% 100%;
}

.memory__info-cta {
  width: calc(100% - 193px);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.memory__info-cta span {
  margin-left: 21px;
}

.memory__info-cta span img {
  width: 26px;
}

.memory__info-cta::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 12px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/cta_icon.png) no-repeat center / contain;
  background-size: 100% 100%;
}

.memory__info-tel {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.01;
}

.memory__info-tel a {
  color: #21819F;
  font-size: 24px;
  font-weight: 600;
  font-family: "Cabin", sans-serif;
}

.memory__guide-block {
    margin-top: 25px;
    background-color: #ECF7F8;
    border-radius: 5px;
    padding: 25px 23px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.memory__guide-img {
    aspect-ratio: 1 / 1;
    width: 28%;
}

.memory__guide-img img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.memory__guide-lead {
    width: 68%;
}

.memory__guide-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #21819F;
}

.memory__guide-name {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid #21819F;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.memory__guide-list {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7141;
}

.memory__guide-list:first-of-type {
    margin-top: 8px;
}

.memory__img {
    width: 43.1%;
    aspect-ratio: 5 / 6;
    border-radius: 20px;
}

.memory__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.memory__bg {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    width: 100%;
}

  @media (max-width: 1200px) {

    .memory__subtitle {
      font-size: 20px;
      line-height: 48px;
    }

    .memory__info-web {
      line-height: 60px;
    }

    .memory__info-time {
      font-size: 16px;
      width: 160px;
    }

    .memory__info-cta {
      width: calc(100% - 160px);
      font-size: 20px;
    }

    .memory__info-cta span {
      margin-left: 10px;
    }

    .memory__info-cta span img {
      width: 20px;
    }
}

@media (max-width: 1024px) {
    .memory {
        padding-bottom: 150px;
    }

    .memory__flex {
        gap: 30px;
    }

    .memory__block {
        width: 52%;
    }

    .memory__guide-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .memory__guide-lead {
        width: 100%;
    }

    .memory__guide-img {
        width: 40%;
        min-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 1080px) {
    .top_line_icion span{
        font-size: 15px;
    }
}
@media (max-width: 1024px) {
    
    .memory__info-time {
      width: 120px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* text-align: left; */
      padding-left:6px ;
      font-size: 12px;
      line-height: 1.2;
        letter-spacing: -0.4px;
    }
    .top_line_icion{
        column-gap: 4px;
        padding-left: 13px;
    }
.top_line_icion img{
    width: 36px;
}
.top_line_icion{
    padding-left: 17px;
}
}

@media (max-width: 850px) {
    .memory {
        margin-top: 60px;
        padding-bottom: 100px;
    }

    .memory__text {
        margin-top: 30px;
        font-size: 15px;
    }

    .memory__subtitle-block {
        margin-top: 40px;
    }

    .memory__subtitle {
        font-size: 15px;
        line-height: 30px;
    }

    .memory__info-web {
      margin-top: 10px;
      line-height: 50px;
    }
.top_line_icion img{
    width: 36px;
}
.top_line_icion{
    padding-left: 17px;
}
    .memory__info-time {
      width: 120px;
      height: 55px;
      display: flex;
      justify-content: center;
      align-items: center;
      /* text-align: left; */
      padding-left:6px ;
      font-size: 12px;
      line-height: 1.2;
        letter-spacing: -0.4px;
    }
    .top_line_icion{
        column-gap: 4px;
        padding-left: 13px;
    }
    .m_box_txt_b{
        font-size: 16px;
        width: 55px;
        height: 55px;
    }
    .top_line_icion span{
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -0.8px;
    }

    .memory__info-cta {
      font-size: 17px;
      width: calc(100% - 120px);
    }

    .memory__info-cta span {
      margin-left: 5px;
    }

    .memory__info-cta span img {
      width: 18px;
    }

    .memory__info-cta::after {
      width: 10px;
      height: 14px;
    }

    .top_line_icion::after {
      width: 10px;
      height: 14px;
    }
    .memory__info-tel {
      font-size: 14px;
    }

    .memory__info-tel a {
      font-size: 19px;
    }

    .memory__guide-block {
        padding: 20px;
    }

    .memory__guide-title {
        font-size: 18px;
    }

    .memory__flex {
        flex-direction: column;
    }

    .memory__block {
        width: 100%;
    }

    .memory__img {
        max-width: 450px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.benefit {
    background-color: #21819F;
    position: relative;
    z-index: 1;
    padding-bottom: 177px;
}

.benefit__bg {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.benefit__bg img {
    width: 100%;
}

.benefit__sub01 {
    width: 240px;
    position: absolute;
    top: -200px;
    left: 20%;
    z-index: 3;
}

.benefit__sub02 {
    width: 270px;
    position: absolute;
    top: -170px;
    right: 10%;
    z-index: 3;
}

.benefit__sub01 img,
.benefit__sub02 img {
    width: 100%;
}

.benefit__title-img {
    width: 309px;
    margin-left: auto;
    margin-right: auto;
}

.benefit__contents {
    margin-top: 91px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit__news {
    background: #fff;
    margin-top: 70px;
}

@media (max-width: 850px) {
    .benefit__news {
        border-top: 2px solid #21819F;
    }
}

@media (max-width: 768px) {
    .benefit__news {
        margin-top: 35px;
    }
}

.benefit__borderLine {
    border: 2px solid #21819F;
    padding: 25px 16px;
}

@media (max-width: 850px) {
    .benefit__borderLine {
        border: none;
    }
}

.benefit__news-title {
    margin-top: 0;
    margin-bottom: 0;
    color: #21819F;
    font-weight: bold;
    font-size: 28px;
    text-align: center;
}

@media (max-width: 768px) {
    .benefit__news-title {
        font-size: 24px;
    }
}

.news__contents {
    margin-top: 28px;
}

.news__content {
    display: flex;
}

.news__no-content {
    font-weight: 700;
    color: #21819F;
}

@media (max-width: 1024px) {
    .news__content {
        flex-direction: column;
    }
}

.news__content+.news__content {
    margin-top: 28px;
}

.news__date,
.news__category {
    display: inline-block;
}

.news__date {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.news__category {
    font-size: 14px;
    margin-left: 16px;
    padding: 8px 22px;
    background-color: #ECF7F8;
    color: #21819F;
    border-radius: 9999px;
    line-height: 1;
    font-weight: 400;
}

.news__block {
    margin-top: 0;
    margin-left: 16px;
    margin-bottom: 0;
    padding-top: 6px;
    max-width: 780px;
    letter-spacing: unset;
}

@media (max-width: 1024px) {
    .news__block {
        margin-top: 7px;
        margin-left: 0;
        padding-top: 0;
        max-width: 100%;
        width: 100%;
    }
}

.news__text {
    font-size: 16px;
    line-height: 1.5;
    color: #21819F;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news__text:hover {
    color: #21819F;
    opacity: 0.7;
}

.news__button-block {
    margin-top: 10px;
    text-align: right;
}

.news__button {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #21819F;
    transition: opacity 0.3s;
}

.news__button:hover {
    color: #21819F;
    opacity: 0.7;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: #fff;
    border-radius: 10px;
    padding: 56px 30px 30px 30px;
}

.item__sub {
    width: 86px;
    position: absolute;
    top: -43px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.item__img {
    width: 76.4%;
    aspect-ratio: 260 / 162;
    margin-left: auto;
    margin-right: auto;
}

.item__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
}

.item__title {
    margin-top: 18px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #21819F;
}

.item__text {
    font-size: 15px;
    line-height: 1.733;
    font-weight: 400;
    margin-top: 14px;
}

.item__button-block {
    padding-top: 39px;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .item__title {
        font-size: 18px;
    }

    .item__button-block {
        padding-top: 30px;
    }
}

.benefit__inner {
    max-width: 1326px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.benefit__info {
    margin-top: 100px;
    background: #fff;
    border-radius: 20px;
    padding: 57px 63px 60px;
}

.benefit__subtitle {
    text-align: center;
    color: #21819F;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.2142;
}

.benefit__flex {
    margin-top: 45px;
    display: flex;
    gap: 80px;
}

.benefit__content {
    width: 58.6%;
}

.summary {
    display: flex;
    gap: 20px;
}

.summary+.summary {
    margin-top: 34px;
}

.summary__img {
    width: 8.82%;
}

.summary__contents {
    width: 88.2%;
}

.summary__button-block {
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: unset;
}

.summary__button {
    width: 100%;
    background-color: #ECF7F8;
    color: #21819F;
    font-size: 20px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
    font-weight: 500;
    border-radius: 5px;
    padding: 13px 12px;
    position: relative;
    display: inline-block;
    transition: opacity 0.3s;
}

.summary__button:hover {
    opacity: 0.7;
    color: #21819F;
}

.summary__button:active {
    color: #21819F;
}

.summary__button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-image: url(../img/button-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    width: 16px;
    height: 13px;
}

.summary__text {
    margin-top: 7px;
    font-size: 15px;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.7333;
}

@media (max-width: 768px) {
    .summary__button {
        font-size: 18px;
    }
}


.benefit__img {
    aspect-ratio: 20 /23;
    border-radius: 20px;
    width: 34.2%;
}

.benefit__img img {
    max-width: 100%;
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.benefit__pay-block {
    max-width: 840px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #21819F;
    border-radius: 10px;
    text-align: center;
    padding: 40px 52px 30px;
    margin-top: 60px;
    position: relative;
}

.benefit__pay-title {
    font-size: 20px;
    font-weight: 500;
    color: #21819F;
    line-height: 1.2;
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: #fff;
    padding: 0px 10px;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: unset;
}

.benefit__pay-img {
    width: 100%;
    margin-top: 30px;
}

.benefit__pay-text {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Noto Sans JP", sans-serif;
}

@media (max-width: 1024px) {
    .benefit__sub01 {
        display: none;
    }

    .benefit__sub02 {
        display: none;
    }

    .benefit__info {
        padding: 57px 40px 60px;
    }

    .benefit__flex {
        gap: 30px;
    }

    .benefit__content {
        width: 61%;
    }
}

@media (max-width: 850px) {
    .benefit__title-img {
        width: 260px;
    }

    .benefit__contents {
        grid-template-columns: repeat(1, 1fr);
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .benefit {
        padding-bottom: 125px;
    }

    .benefit__info {
        padding: 46px 20px;
    }

    .benefit__flex {
        flex-direction: column;
    }

    .benefit__content {
        width: 100%;
    }

    .benefit__img {
        max-width: 400px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit__subtitle {
        font-size: 24px;
        line-height: 1.5;
    }

    .benefit__pay-block {
        margin-top: 40px;
        padding: 30px 20px;
    }

    .benefit__pay-title {
        font-size: 18px;
        width: 185px;
    }

    .benefit__pay-text {
        font-size: 15px;
    }

}

.u-desktop {
    display: block;
}

.u-mobile {
    display: none;
}

.section-title {
    color: #21819F;
}

.section-title__sub {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Cabin", sans-serif;
}

.section-title__main {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0 !important;
    letter-spacing: 0 !important;
}

.inner {
    max-width: 1200px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    color: #21819F;
    background-color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    padding: 17px 20px;
    border-radius: 5px;
    border: 1px solid #21819F;
    transition: opacity 0.3s;
    max-width: 350px;
    width: 100%;
    position: relative;
}

.button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 16px;
    height: 13px;
    background-image: url(../img/button-arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.button:hover {
    opacity: 0.7;
    color: #21819F;
    background-color: #fff;
}

.button:active {
    color: #21819F;
}

.button.button--color {
    color: #fff;
    background-color: #21819F;
    position: relative;
}

.button.button--color::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 16px;
    height: 13px;
    background-image: url(../img/button-arrow_white.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.button.button--color:hover {
    opacity: 0.7;
    color: #fff;
    background-color: #21819F;
}

.button.button--color:active {
    color: #fff;
    background-color: #21819F;
}

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

    .u-mobile {
        display: block;
    }

    .section-title__sub {
        font-size: 18px;
    }

    .section-title__main {
        font-size: 24px;
        line-height: 1.5;
        margin-top: 10px;
    }

    .button {
        font-size: 15px;
        padding: 15px;
    }

    .button::after {
        content: '';
        right: 15px;
    }

    .button.button--color::after {
        content: '';
        right: 15px;
    }

}

.u-sp {
    display: none;
}

.u-pc {
    display: block;
}

@media (max-width: 450px) {
    .u-sp {
        display: block;
    }

    .u-pc {
        display: none;
    }
}

.ti-header.source-Google {
    display: none !important;
}

.video {
    background-color: #ECF7F8;
    padding: 30px 0 50px;
    margin-top: 70px;
}

.video__flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.video__title {
    text-align: center;
}

.video__title-main {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
}

.video__title-main::before {
    content: '＼ ';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translate(0, -50%);
}

.video__title-main::after {
    content: ' ／';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(0, -50%);
}

.video__contents {
    margin-top: 36px;
    max-width: 460px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video__contents iframe {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.video__text {
    color: #21819F;
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .video__flex {
        flex-direction: column-reverse;
    }
    .video__text {
        margin-top: 10px;
    }
    .video__contents {
        margin-top: 0;
    }
}
.sp_feature {
    transition: 0.3s;
    margin-top: 100px;
}
.sp_feature img {
    width: 100%;
    display: block;
    max-width: 233px;
} 
.sp_feature:hover {
    opacity: 0.7;
}
.sp_feature__inner {
    display: flex;
}
.sp_feature_text {
    margin-left: 37px;
}
.sp_feature h2 {
    background-color: #ECF7F8;
    border-radius: 30px;
    margin-top: 0;
    padding: 17px 21px;
    letter-spacing: 0.01rem;
    font-size: 23px;
    margin-bottom: 20px;
    display: inline-block;
}
.sp_feature p {
    font-size: 18px;
}
.sp_feature .feature_pc_none {
    display: none;
}
@media (max-width: 768px) {
    .sp_feature_text {
        margin-left: 0;
    }
    .sp_feature h2 {
        position: absolute;
        top: 0;
        left: 20px;
        width: calc(100% - 40px);
        font-size: 20px;
        padding: 10px 15px;
        margin-bottom: 10px;
        text-align: center;
    }
    .sp_feature p {
        font-size: 15px;
        margin-top: 5px;
    }   
    .sp_feature__inner {
        display: block;
    }
    .sp_feature .feature_pc_none {
        display: block;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }
    .sp_feature img {
        max-width: unset;
    }
    .sp_feature {
        position: relative;
        margin: 70px 0 35px;
        padding-top: 52px;
    }
}
