@charset "UTF-8";
/* ==================
fv
=====================*/
.fv {
    margin-top: 100px;
    margin-bottom: 40px;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}

.fv-pc {
    display: none;
}

/* fv pc */
@media screen and (min-width: 769px){
    .fv {
        margin-bottom: 120px;
    }
    .fv-pc {
        display: block;
    }

    .fv-sp {
        display: none;
    }
}

/* ==================
works
=====================*/
.works-fv {
    margin-top: 100px;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}

.works {
    padding-top: 56px;
    margin-bottom: 72px;
}

.topic {
    font-size: 3.2rem;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
}

.topic::before {
    position: absolute;
    content: "";
    top: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.topic::after {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.works-topic_sub {
    margin-top: -15px;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.works-main,
.works-main_02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 6px;
    row-gap: 72px;
    margin-bottom: 120px;
}

.works-main video,
.works-main img,
.works-main_02 img {
    width: 100%;
    height: auto;
    display: block;
}

.title-topic {
    margin-top: 6px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
}

.title-category {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.9rem;
}

/* works pc */
@media screen and (min-width: 769px){
    .works-fv {
        margin-top: 120px;
    }

    .works {
        margin-bottom: 100px;
    }

    .topic {
        font-size: 5.6rem;
        font-weight: 400;
        margin-bottom: 64px;
    }

    .topic::before {
        top: -25px;
    }

    .topic::after {
        bottom: -25px;
    }

    .works-topic_sub {
        font-size: 1.6rem;
        margin-left: 5px;
    }

    .works-main,
    .works-main_02 {
        column-gap: 16px;
        row-gap: 120px;
        margin-bottom: 200px;
    }

    .title-topic {
        margin-top: 12px;
        font-size: 1.4rem;
    }
}

/* ==================
about
=====================*/
.about-img-wrap {
    position: relative;
    margin-top: 88px;
}

.about-img {
    width: 70%;
    max-width: 600px;
    height: auto;
    display: block;
    transition: top .25s .6s linear, opacity .9s .5s linear;
}

.about-circle {
    position: absolute;
    z-index: 11;
    mix-blend-mode: difference;
    top: -55px;
    left: 41%;
    width: 70%;
    max-width: 500px;
    min-width: 220px;
    transition: opacity 1s .9s linear;
}

.about-circle img {
    display:block;
    width:100%;
}

.rotate-anime {
    animation: rotate-anime 85s linear infinite;
}

@keyframes rotate-anime {

  0%{
    transform: rotate(0deg);
  }

  100%{
    transform: rotate(360deg);
  }
}

.about-profile {
    margin-top: 32px;
    margin-bottom: 120px;
}

.name-ja {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
}

.name-en {
    font-weight: normal;
    margin-left: 12px;
}

.about-txt {
    margin-top: 24px;
    font-size: 1.2rem;
    line-height: 2.0;
}

.aboutBtn {
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    font-size: 1.2rem;
}

.plus {
    margin-left: 8px;
}

/* about pc */
@media screen and (min-width: 769px){
    .about {
        margin-bottom: 200px;
    }

    .about-wrap {
        display: grid;
        grid-template-columns: 2fr 1fr; 
        column-gap: 60px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .topic {
        grid-column: 1 / 3; 
        text-align: left;
    }

    .about-img-wrap {
        grid-column: 1 / 2;
        position: relative;
        line-height: 0;
    }

    .about-img {
        width: 66%;
    }

    .about-profile {
        margin: 0;
        grid-column: 2 / 3;
        align-self: end; 
    }

    .name-ja {
        font-size: 1.6rem;
    }

    .name-en {
        margin-left: 24px;
    }

    .about-txt {
        font-size: 1.4rem;
        margin-top: 32px;
    }

    .aboutBtn {
        margin-top: 32px;
        font-size: 1.4rem;
    }  
}

/* ==================
skills
=====================*/
.skill-list {
    margin-bottom: 200px;
}

.skill-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.skill-h3 {
    font-size: 1.2rem;
    font-weight: 500;
    white-space: nowrap;
}

.skill-items {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: 24px;
}

.skill-row_item {
    display: inline-block;
    border: solid 0.8px var(--primary-black);
    padding: 2px 8px;
    white-space: nowrap;
}

.skill-content {
    margin-top: 40px;
}

.skill-txt {
    font-size: 1.2rem;
    line-height: 2.0;
}

.icon-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 45px;
    margin-top: 24px;
}

.icon-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

.icon-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    justify-items: center; 
    align-items: center;
    gap: 45px;
    padding: 0;
    margin: 45px auto 0;
}

/* skill pc */
@media screen and (min-width: 1000px){
    .skill-list {
        margin-bottom: 280px;
    }

    .skill-row {
        margin-bottom: 32px;
    }

    .skill-h3 {
        font-size: 1.8rem;
    }

    .skill-items {
        font-size: 1.6rem;
        gap: 16px;
        margin-left: 40px;
    }

    .skill-content {
        margin-top: 120px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px 100px;
        align-items: center;
    }

    .skill-txt {
        font-size: 1.6rem;
        max-width: 500px;
        margin: 0;
    }

    .icon-list,
    .icon-grid {
        display: grid;
        grid-template-columns: repeat(3,100px);
        padding: 0;
        margin: 0;
        gap: 40px 100px;
    }

    .skill-content .icon-grid {
        order: -1;
        gap: 40px 120px;
    }

    .icon-item {
        width: 100px;
        height: 100px;
    }
}

/* ==================
works pages
=====================*/
.works-fv {
    margin-bottom: 24px;
}

.works-topic_h2 {
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    margin-bottom: 8px;
}

.works-category {
    font-size: 1.2rem;
    margin-left: 3px;
}

.border-01 {
    display: block;
    margin-top: 20px;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.works-overview {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.overview-txt {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.overview-txt h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.bold {
    font-weight: 500;
}

.overview-content_list {
    margin-bottom: 32px;
}

.overview-content_item {
    margin-bottom: 8px;
}

.overview-content_item p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.overview-content_item span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.8;
}

.works-list {
    margin-top: 24px;
}

.works-column {
    margin-bottom: 48px;
}

.works-topic {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.works-txt {
    font-size: 1.2rem;
    line-height: 1.8;
}

.works-img_flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.works-img_01 {
    margin-top: 10px;
    margin-bottom: 40px;
}

.visitBtn {
    margin: 24px 0;
}

.visitBtn p {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.2;
}

.visitBtn p span {
    font-size: 1.6rem;
    font-family: sans-serif;
    display: inline-block;
    transform: rotate(-45deg);
    margin: 0 auto 0 3px;
}

.works-alllist {
    margin: 160px auto 200px;
}

.works-alllist h3 {
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 20px;
}

#works-alllist_list {
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#works-alllist_list li {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#works-alllist_list li a {
    display: flex;
    align-items: center;
    padding: 24px 0;
    position: relative;
    justify-content: space-between;
}

#works-alllist_list li a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
    display: block;
    top: 0;
}

#works__allList__list li a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
    display: block;
    top: 0;
}

.works-alllist_item p {
    font-size: 1.2rem;
}

.works-alllist_border {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

/* works page pc */
@media screen and (min-width: 769px){
    .works-fv {
        margin-bottom: 72px;
    }

    .works-topic_h2 {
        font-size: 4.0rem;
    }

    .border-01 {
        margin-top: 32px;
    }

    .works-overview {
        display: flex;
        flex-direction: row-reverse;
        margin-top: 32px;
    }

    .overview-txt {
        font-size: 1.4rem;
        margin-bottom: 0;
    }

    .overview-txt h3 {
        margin-bottom: 16px;
    }

    .overview-content_list {
        margin-bottom: 56px;
        margin-right: 9vw;
        width: 26%;
    }

    .overview-content_item  {
        margin-bottom: 24px;
    }

    .overview-content_item span {
        line-height: 1.7;
    }

    .works-content {
        padding-left: 11%;
        padding-right: 11%;
        margin-bottom: 80px;
    }

    .works-list {
        margin-top: 56px;
    }

    .works-column {
        display: flex;
        justify-content: space-between;
    }

    .works-topic {
        margin-top: 4px;
    }

    .works-txt {
        font-size: 1.4rem;
        width: 80%;
    }

    .works-img_flex {
        gap: 20px;
        flex-direction: unset;
        align-items: flex-start;
    }

    .img-flex01,
    .img-flex02 {
        flex: 1;
    }

    .img-flex01 img,
    .img-flex02 img {
        width: 100%;
        aspect-ratio: 16 / 9; 
        object-fit: cover;  
        display: block;
    }

    .works-img_01 {
        margin-top: 20px;
        margin-bottom: 160px;
    }

    .visitBtn p {
        font-size: 3.2rem;
    }

    .visitBtn p span {
        font-size: 3.0rem;
    }

    .works-alllist {
        padding: 0 9%;
        margin: 200px auto 250px;
    }

    .works-alllist h3 {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }

    #works-alllist_list li a {
        padding: 32px 0;
    }

    .works-alllist_item p {
        font-size: 1.8rem;
    }

    .works-alllist_item span {
        font-size: 1.5rem;
    }
}


/* sugutabe */
.sugutabe-img_01 {
    margin-bottom: 10px;
}

.sugutabe-img_flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sugutabe-img_flex02 img {
    width: 60%;
    height: 70vw;
    object-fit: cover;
}

/* sugutabe pc */
@media screen and (min-width: 769px) {
    .sugutabe-img_01 {
        margin-bottom: 20px;
    }

    .sugutabe-img_flex {
        gap: 20px;
        flex-direction: unset;
        align-items: flex-start;
    }

    .sugutabe-img_flex01,
    .sugutabe-img_flex02  {
        flex: 1;
    }

    .sugutabe-img_flex01 img,
    .sugutabe-img_flex02 img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; 
        object-fit: cover;  
        display: block;
    } 
}

/* travel */
.overview-txt_banner {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* travel pc */
@media screen and (min-width: 769px){
    .overview-txt_banner {
        font-size: 1.4rem;
        margin-bottom: 0;
        width: 80%;
    }
}

/* ==================
about pages
=====================*/
.about-content {
    padding-top: 130px;
    margin-bottom: 200px;
}

/* about pages pc */
@media screen and (min-width: 769px){
    .about-content {
        padding-top: 200px;
        margin-bottom: 250px;
    }
}

/* ==================
biography
=====================*/
.biography-group {
    position: relative;
    margin-top: 32px;
}

.biography-group:first-of-type {
    margin-bottom: 120px;
}

.biography-title {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.time {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.biography-txt {
    font-size: 1.2rem;
    line-height: 1.8;
    position: relative;
}

.biography-txt::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.past-item {
    margin-top: 24px;
}


/* biography pc */
@media screen and (min-width: 769px) {
    .biography {
        margin-top: 200px;
    }

    .biography-title,
    .biography-items {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: -40px;
    }

    .biography-title {
        margin-top: 20px;
        font-size: 2.4rem;
    }

    .biography-items {
        display: grid;
        grid-column: 1 / -1;
        grid-row: 1;
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px;
        margin-top: 40px;
        position: relative;
    }

    .item, 
    .biography-group .biography-group {
        padding-top: 20px;
    }

    .biography-items::before {
        content: "";
        position: absolute;
        top: 53px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #D9D9D9;
    }

    .biography-txt::before {
        display: none;
    }

    .time {
        font-size: 2.0rem;
    }

    .biography-txt {
        font-size: 1.4rem;
    }  

    .biography-group  .biography-group {
        display: inline-block;
        width: calc(50% - 20px); 
        vertical-align: top;
        margin-top: 60px; 
    }

    .biography-group  .biography-group::before {
        content: "";
        position: absolute;
        top: 117px; 
        left: 0;
        width: 106%; 
        height: 1px;
        background-color: #D9D9D9;
    }

    .biography-group {
        display: block;
        position: relative;
    }
    .group-wrap .biography-txt {
        display: flex; 
        flex-direction: column;
        padding-top: 15px;
    }

    .group-wrap .biography-title {
        margin-bottom: 5px; 
        line-height: 1.2;
    }

    .biography-group > .biography-group:nth-of-type(1) {
        margin-right: 50px;
    }   
}

/* ==================
strength
=====================*/
.strength-item_section {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #D9D9D9;
}

.strength-item_title {
    margin-top: 24px;
}

.strength-rubi {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.0rem;
}

.strength-title {
    font-size: 2.8rem;
    line-height: 2.0;
    letter-spacing: 0.4rem;
}

.strength-txt {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 16px;
}

/* strength pc */
@media screen and (min-width: 1280px){
    .strength {
        margin-top: 200px;
    }

    .strength-items {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .strength-item_section {
        display: flex;
        align-items: start;
        gap: 40px;
        padding-top: 20px;
    }

    .strength-img {
        flex: 0 0 300px;
    }

    .strength-img img {
        width: 100%;
        height: auto;
    }

    .strength-item_title {
        flex: 0 0 348px; 
        margin-bottom: 0;
    }

    .strength-rubi {
        font-size: 2.0rem;
    }

    .strength-title {
        font-size: 2.8rem;
        letter-spacing: 0.7rem;
    }

    .strength-txt {
        flex: 1;
        font-size: 1.4rem;
        text-align: justify
    }
}

















