@charset "UTF-8";

/*! under/style.css */

/*! special-talk */
.special-talk {
    padding-top: 5%;
}

.special-talk img {
    border-radius: .7rem;
}

.special-talk__title {
    font-size: 1.3em;
    font-weight: 700;
    color: #4c99cb;
    padding-bottom: .5em;
    border-bottom: 1px solid #4c99cb;
}

.special-talk__sub-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #4c99cb;
    padding-left: 2.6em;
    position: relative;
}
.special-talk__sub-title::before {
    content: "";
    display: block;
    width: 2em;
    height: .1em;
    background-color: #4c99cb;
    position: absolute;
    left: 0;
    top: .9em
}

.special-talk-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.special-talk-contents__name {
    width: 15%;
}
.special-talk-contents__text {
    width: 85%;
    text-align: justify;
}

.special-talk-contents__name:nth-of-type(n+2),
.special-talk-contents__text:nth-of-type(n+2) {
    margin-top: 1em;
}

.special-talk-contents__name--A {
    color: #ed8878;
}
.special-talk-contents__name--B {
    color: #f2a41d;
}

@media screen and (max-width: 750px) {
    .special-talk {
        font-size: 1.2em;
    }
}

.profile {
    background-color: #71d9ef;
    border-radius: .7em;
    padding-top: 5%;
    padding-bottom: 5%;
}

.profile__title {
    padding-left: 5%;
    padding-right: 5%;
    color: #FFF;
    font-weight: 500;
}

.profile__title--name {
    font-size: 2em;
    font-weight: 700;
    padding-top: .75rem;
    margin-bottom: 3%;
}

.profile__items {
    margin-bottom: 5%;
}

.profile__image img {
    border-radius: 0 .7em .7em 0;
}

.profile__texts {
    padding-right: 5%;
}
.profile__texts--title {
    font-weight: 500;
    padding-bottom: 1em;
    border-bottom: 1px solid #555;
    margin-bottom: 1em;
    line-height: 1;
}

.profile__texts--text {
    font-size: .85em;
    text-align: justify;
    letter-spacing: 0;
}

.profile__button {
    padding-left: 5%;
    padding-right: 5%;
}

/*! sking-aging */
.rbox__title--img {
    position: absolute;
    width: 20%;
    right: 1em;
    top: 50%;
    transform:translateY(-50%);
}

/*! img--tank */
.img--tank {
    position: relative;
}
.img--tank>img {
    width: 140%;
    max-width: none;
    position: absolute;
    left: 0;
    top: 0
}

/*! voice-list */
.voice-list__item+.voice-list__item {
    margin-top: 7%;
    padding-top: 7%;
    border-top: .15em solid #62c8f0;
}

.voice-list__data {
    align-items: center;
    margin-bottom: 1.5em;
}
.voice-list__data--personal {
    width: 40%;
    padding: .2em 0;
    border-radius: .5em;
    text-align: center;
    font-weight: bold;
    font-size: 1.7em;
    color: #FFF;
}
.voice-list__data--personal>span {
    font-size: 1.3em;
}

.voice-list__data--detail {
    width: 55%;
    font-size: 1.3em;
    font-weight: 500;
}

.voice-list__title {
    font-weight: bold;
    font-size: 1.6em;
    margin-bottom: .5em;
}

.voice-list__texts {
    font-size: 1.2em;
    font-weight: 500;
}

.voice-list__item--f .voice-list__data--personal {
    background-color: #ed8878;
}
.voice-list__item--f .voice-list__title {
    color: #ed8878;
}

.voice-list__item--m .voice-list__data--personal {
    background-color: #4c99cb;
}
.voice-list__item--m .voice-list__title {
    color: #4c99cb;
}

/*! faq-list */
.faq-list__item {
    background-color: #62c8f0;
    border-radius: 1em;
    padding: .2em;
}

.faq-list__item+.faq-list__item {
    margin-top: 5%;
}

.faq-list__question {
    position: relative;
    color: #FFF;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.4;
    padding-top: .5em;
    padding-right: 1em;
    padding-bottom: .7em;
    padding-left: 7rem;
}
.faq-list__question::before {
    content: "Q";
    display: grid;
    width: 5rem;
    height: 5rem;
    place-items: start center;
    background-color: #FFF;
    color: #62c8f0;
    font-size: 3.5rem;
    line-height: 1;
    border-radius: 50%;
    position: absolute;
    left: 1rem;
    top: calc(50% - .1rem);
    transform: translateY(-50%);
}

.faq-list__answer {
    position: relative;
    padding: 1em;
    background-color: #FFF;
    border-radius: .8em;
    font-size: 1.25em;
}
.faq-list__answer::before {
    content: "";
    display: inline-block;
    width: 6rem;
    height: 4rem;
    float: left;
}
.faq-list__answer::after {
    content: "A";
    display: grid;
    width: 5rem;
    height: 5rem;
    place-items: start center;
    color: #ed8878;
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1;
    border-radius: 50%;
    position: absolute;
    left: 1rem;
    top: .5rem;
}
