@charset "UTF-8";
/*
Theme Name: enaga kotomi portfolio
Description: enaga kotomiのポートフォリオサイト
Version: 1.1
Author: enaga kotomi
Auther URI: https://kotomi-design.com/
*/

:root {
    --main-color: #fff8e7;
    --accent-color: #676767;
    --bg-color: #030303;
    --bg-color-white: #f9f9f9;
    --text-color: #030303;
    --text-color-white: #fafafa;
    --pic-bg-color: #FFF5DC;
}

/*--------------------------------
 全体
---------------------------------*/
/* buttonやinputをクリック・フォーカスした時の青い線 */
*:focus {
    outline: none;
}

/* buttonやlinkをタップしたときの青い四角
※cursorがpointerじゃないと効かない */
a {
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}

body {
    font-family: 'Rubik', 'Noto Sans JP', Arial, 'Hiragino Kaku Gothic ProN',
      'Hiragino Sans', Meiryo, sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-color);
    background-color: var(--main-color);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

dt {
    font-weight: 400;
}
/*--------------------------------
 ボタン
---------------------------------*/
.btn {
    display: inline-block;
    width: 233px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-color-white);
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    border-radius: 100px;
    background-color: var(--bg-color);
}

.btn:hover {
    background-color: var(--accent-color);
}
/*--------------------------------
 レイアウト
---------------------------------*/
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 70px;
}

.section {
    padding: 110px 0;
}

.section__heading {
    margin-bottom: 60px;
}

 hr.border {
    border-top: dotted 1px var(--text-color);
    max-width: 1110px;
    margin: 0 auto;
}
/*--------------------------------
 見出し
---------------------------------*/
.heading {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--text-color);
}

.heading__subtitle {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1;
    color: var(--text-color);
    margin-top: 10px;
}

/*--------------------------------
 ページネーション① ※WORKS/BLOG共通
---------------------------------*/
/* PCページネーション ----------------*/
.pagenation-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.pagenation-pc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}

.pagenation-pc__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--text-color-white);
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    border-radius: 50%;
    background-color: #D9D9D9;
    transition: all 0.8s;
}

.pagenation-pc__link:active {
    background-color: var(--accent-color);
}

.pagenation-pc__arrow {
    background-color: var(--bg-color);
}

.pagenation-pc__active {
    background-color: #A6A6A6;
}

/* wordpress用ページネーションタグ-blog_pc */
.page-numbers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--text-color-white);
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    border-radius: 50%;
    background-color: #D9D9D9;
    transition: all 0.8s;
}


.page-numbers:active {
    background-color: var(--accent-color);
}

.prev.page-numbers,
.next.page-numbers {
    background-color: var(--bg-color);
}

.page-numbers.current {
    background-color: #A6A6A6;
}

.page-numbers.dots {
    color: var(--text-color);
    font-size: 16px;
    background-color: var(--main-color);
}


/* SPページネーション -------------------------*/
.pagenation-sp__pagenum {
    font-size: 12px;
    line-height: 1;
    padding-bottom: 12px;
}

.pagenation-sp {
    width: 100%;
    text-align: center;
}

.pagenation-sp__list {
    display: table;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.pagenation-sp__item:nth-child(2) {
    border-right: 0;
}

.pagenation-sp__item {
    display: table-cell;
    vertical-align: middle;
    border: solid 1px var(--text-color);
    background-color:  var(--bg-color-white);
    height: 60px;
}

.pagenation-sp__item-first {
    border-radius: 10px 0 0 10px;
    width: 60px;
    border-right: 0;
}

.pagenation-sp__item-last {
    border-radius: 0 10px 10px 0;
    width: 60px;
    border-left: 0;
}

.pagenation-sp__prev {
    display: block;
    position: relative;
}

.pagenation-sp__prev::after {
    display: block;
    font-family: "Material Icons Round";
    content: "chevron_left";
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.pagenation-sp__next {
    display: block;
    position: relative;
}

.pagenation-sp__next::after {
    display: block;
    font-family: "Material Icons Round";
    content: "chevron_right";
    position: absolute;
    font-size: 24px;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

/* wordpress用ページネーションタグ-blog_sp */
.pagenation-sp__item-noItem {
    background-color: #d5d5d5;
}

/*--------------------------------
 ページネーション② ※WORKS詳細/BLOG詳細-共通
---------------------------------*/
/* WORKS詳細ページ-PCページネーション */
.detailPage-pagenation__body {
    width: 100%;
    display: grid;
    place-items: center;
}

.detailPage-pagenation-pc__list {
    display: table;
    border-collapse: separate;
    border-spacing: 30px 0;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.detailPage-pagenation-pc__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border: solid 1px var(--text-color);
    background-color:  var(--bg-color-white);
    height: 67px;
}

/* 前後の記事がない場合 ※PHP側で制御*/
.detailPage-pagenation-pc__noItem {
    background-color: #d5d5d5;
}

.detailPage-pagenation-pc__arrow {
    width: 81px;
    border-radius: 10px;
}

.detailPage-pagenation-pc__view {
    width: 295px;
    border-radius: 10px;
}

/* WORKS詳細ページ-SPページネーション */
.detailPage-pagenation-sp {
    width: 100%;
}

.detailPage-pagenation-sp__list {
    display: table;
    width: 100%;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.detailPage-pagenation-sp__item {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    border: solid 1px var(--text-color);
    background-color:  var(--bg-color-white);
    height: 60px;
}

/* 前後の記事がない場合 ※PHP側で制御*/
.detailPage-pagenation-sp__noItem {
    background-color: #d5d5d5;
}

.detailPage-pagenation-sp__item-view {
    border-right: 0;
    border-left: 0;
}

.detailPage-pagenation-sp__item-left,
.detailPage-pagenation-sp__item-right{
    width: 65px;
}

.detailPage-pagenation-sp__item-left{
    border-radius: 10px 0 0 10px;
}

.detailPage-pagenation-sp__item-right{
    border-radius: 0 10px 10px 0;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 150px;
}

.header .container{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.header__logo--img {
    width: 185px;
    height: 91px;
}

.header__body {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 30px;
}

/*--------------------------------
 グローバルナビ
---------------------------------*/
.gnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    text-transform: uppercase;
}

.gnav__item {
    font-size: 14px;
    letter-spacing: 0.1em;
}

.gnav__link {
    color: var(--text-color);
    text-decoration: none;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.gnav__link:hover {
    color: var(--accent-color);
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 97px auto;
    position: relative;
}

.mv__innerIllust {
    width: 100%;
    max-width: 1110px;
    height: 100%;
    background-color: var(--pic-bg-color);
    border: solid 1px var(--text-color);
    border-radius: 10px;
}

.mv__titleArea {
    z-index: 2;
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.mv__title {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.08;
    color: var(--text-color);
    position: relative;
}

.mv__text-small {
    font-size: clamp(20px, 4vw, 40px);
}

/*--------------------------------
ABOUT
---------------------------------*/
.about__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.about__img-wrapper {
    width: 100%;
}

.about__description {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.about__textIndention {
    padding-bottom: 22px;
}

.about__img-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
}

.about__img-wrapper img {
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.about__btn {
    margin-top: 20px;
    text-align: right;
}

.about__info {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.about__text {
    font-size: 14px;
    line-height: 1.57;
    -ms-flex-item-align: center;
        align-self: center;
}

/*--------------------------------
WORKS
---------------------------------*/
.works__item-img {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3 / 2;
}

.works__item-title {
    font-size: 16px;
    line-height: 1;
    padding-top: 10px;
}

.works__btn {
    text-align: right;
    margin-top: 40px;
}

.works__list-item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 5px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.works__list-item-date::before {
    content: "|";
    padding: 6px;
}

.works__list-caption {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

/*--------------------------------
WORKS&BLOG共通-swiper
---------------------------------*/
.swiper-wrap {
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height:50px;
    border-radius: 50%;
    background-color: var(--bg-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.swiper-button-next:active,
.swiper-button-prev:active {
    background-color: var(--accent-color);
}

.swiper-button-next {
    top: 80px;
    right: -60px;
}

.swiper-button-prev {
    top: 80px;
    left: -60px;
}

/* worksのみ調整 */
.works-swiper-button-next,
.works-swiper-button-prev {
    top: 110px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: "Material Icons Round";
    font-size: 24px;
    color: var(--text-color-white);
}

.swiper-button-next:after {
    content: "chevron_right";
}

.swiper-button-prev:after {
    content: "chevron_left";
}
/*--------------------------------
BLOG
---------------------------------*/
.blog__item-img {
    border-radius: 10px;
}

.blog__btn {
    text-align: right;
}

.blog__list-item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    margin-bottom: 50px;
}

.blog__list-item-date {
    font-size: 14px;
    line-height: 1;
}

.blog__list-item-title::before {
    content: "|";
    padding: 6px;
}

blog__list-item-title {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
}

/*--------------------------------
BLOG-swiper
---------------------------------*/
.blog-swiper-button-prev {
    top: 70px;
}

.blog-swiper-button-next {
    top: 70px;
}
/*--------------------------------
CONTACT
---------------------------------*/
.contact {
    padding: 100px 0;
}

.contact__body {
    width: 100%;
    height: 395px;
    background-color: var(--bg-color-white);
    border-radius: 10px;
    display: grid;
    place-items: center;
    padding: 60px 30px;
}

.contact__heading {
    margin: -42px 0;
    text-align: center;
}

.contact__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.1em;
    margin-top: 60px;
}

.contact__btn {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.contact-btn {
    display: block;
    padding: 28px 100px;
    border: solid 3px var(--text-color);
    border-radius: 10px;
    background-color: var(--text-color-white);
    margin-top: 60px;
    letter-spacing: 0.1em;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    color: var(--text-color);
}

.contact-btn:hover {
    border: solid 3px var(--accent-color);
    color: var(--accent-color);
}
/*--------------------------------
 FOOTER
---------------------------------*/
.footer {
    background-color: var(--bg-color);
    color: var(--text-color-white);
}

.footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 65px 0;
}

.footer-nav__list {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
}

.footer__logo--img {
    width: 125px;
    height: 100px;
}

.footer__sns-body {
    vertical-align: middle;
}

.sns-twitter-img {
    padding-right: 10px;
    width: 36px;
    height: 30px;
}

.sns-instagram-img {
    width: 30px;
    height: 30px;
}

.footer__copyright {
    font-size: 12px;
    line-height: 1;
    padding-bottom: 15px;
    letter-spacing: 0.1em;
    text-align: center;
}

.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3;
}

.page-top__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--text-color-white);
    text-align: center;
    text-decoration: none;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    border-radius: 50%;
    background-color: var( --accent-color);
    cursor: pointer;
}

.page-top__icon {
    font-size: 24px;
    color: var(--main-color);
}

.page-top__link:hover {
    background: var(--accent-color);
}

/*--------------------------------
 WORKSページ
---------------------------------*/
.worksList__container {
    max-width: 940px;
    margin: 0 auto;
}

.worksListCategory {
    max-width: 940px;
    margin: 0 auto;
    padding: 70px 60px;
    background-color: var(--bg-color-white);
    border-radius: 10px;
}

.worksList_CategoryTitle {
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    position: relative;
    top: 18px;
    left: 20px;
}

.worksListCategory__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
}

.worksListCategory__item {
    padding: 5px 25px;
    font-size: 14px;
    line-height: 1;
    border: solid 1px var(--bg-color);
    border-radius: 50px;
    background-color: var(--text-color-white);
    color: var(--bg-color);
    margin-right: 20px;
    margin-bottom: 20px;
}

.worksListCategory__item:last-child {
    margin-right: 0px;
}

.worksListCategory__item.current {
    border: solid 1px var(--accent-color);
    color: var(--accent-color);
}

.worksListCategory__item:hover {
    border: solid 1px var(--accent-color);
    color: var(--accent-color);
}

.worksList__list {
    padding: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
}

.worksList__item {
    width: calc((100% - 80px) / 2);
    margin-right: 80px;
    margin-bottom: 80px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.worksList__item:hover {
    color: var(--accent-color);
}

.worksList__item:nth-child(2n) {
    margin-right: 0;
}

.worksList__list-item-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 5px;
    font-size: 12px;
    line-height: 1;
}

.worksList__img {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3 / 2;
}

.worksList__list-item-date::before {
    content: '|';
    padding: 6px;
}

.worksList__caption {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.1em;
}

/*--------------------------------
 WORKS詳細ページ
---------------------------------*/
.worksDerail__container {
    max-width: 940px;
    margin: 0 auto;
}

.worksDetail__titleArea {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.worksDetail__title {
    font-size: clamp(20px, 1vw, 26px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding-right: 20px;
}

.worksDetail__body {
    padding-bottom: 60px;
}

.worksDetail__img01__img {
    border-radius: 10px;
}

.worksDetail__img01_01 {
    margin-top: 10px;
}

.worksDetail__img02__img {
    border-radius: 10px;
}

.worksDetail__description {
    padding: 50px 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* row-gap: 30px; */
}

.worksDetail__description-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* row-gap: 5px; */
    margin-bottom: 30px;
}

.worksDetail__description-item:last-child {
    margin-bottom: 0;
}

.worksDetail__description-title {
    font-size: clamp(16px, 1vw, 20px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
}

.worksDetail__description-text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.1em;
}

.worksDetail__img02 {
    background-color: var(--bg-color-white);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    padding: 50px;
}

.worksDetail__img02-device {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-bottom: 8px;
    padding-left: 8px;
}

.worksDetail__img02-pc img {
    width: 100%;
}

.worksDetail__img02-sp img {
    width: 100%;
}

.worksDetail__category-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.worksDetail__date::before {
    content: "|";
    padding: 6px;
}

.worksDetail__category-dateSp {
    display: none;
}

/*--------------------------------
 BLOGページ
---------------------------------*/
.blogDetail__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin: 0 auto;
    padding-bottom: 80px;
}

.blogDetail__item {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 30px;
    /* flex: 0 1 calc((100% - 60px) / 3); */
}

.blogDetail__item:nth-child(3n) {
    margin-right: 0;
}

.blogDetail__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding-top: 10px;
}

.blogDetail__title {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.blogDetail__date {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.blogDetail__img {
    border-radius: 10px;
}

/*--------------------------------
 BLOG詳細ページ
---------------------------------*/
.blogArticle__container {
    max-width: 940px;
    margin: 0 auto;
}

.blogArticle__body {
    padding-bottom: 60px;
}

.blogArticle__titleArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-bottom: 10px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.blogArticle__title {
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
}
.blogArticle__date {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.blogArticle__text {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 20px 0;
}

/*--------------------------------
 ABOUT詳細ページ
---------------------------------*/
/* SP用html非表示 */
.aboutDetail__body.sp {
    display: none;
}

.aboutDetail.section {
    padding-bottom: 0;
}

.aboutDetail__container {
    max-width: 940px;
    margin: 0 auto;
}

.aboutDetail__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 60px;
}

.aboutDetail__img {
    width: 100%;
    border: solid 1px var(--bg-color);
    border-radius: 10px;
}

.aboutDetail__imgWrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
}

.aboutDetail__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
}

.aboutDetail__name {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.aboutDetail__snsLineWrapper {
    margin: auto 0;
}

.aboutDetail__snsLine {
    display: block;
    height: 1px;
    border-top: solid 1px var(--text-color);
    width: 72px;
}

.aboutDetail__profWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    margin: auto 0;
    padding-bottom: 10px;
}

.aboutDetail__snsfWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    margin: auto 0;
    padding-bottom: 10px;
}

.aboutDetail__snsLineWrapper {
    padding-left: 20px;
    padding-right: 7px;
}

.aboutDetail__snsTwitter {
    margin: auto 0;
    width: 30px;
    height: 25px;
    margin-right: 10px;
}

.aboutDetail__snsInstagram {
    margin: auto 0;
    width: 30px;
    height: 30px;
}

.aboutDetail__occupation {
    font-size: 18px;
    line-height: 1.4;
    text-transform: uppercase;
    padding-bottom: 40px;
    letter-spacing: 0.1em;
}

.aboutDetail__text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.aboutDetail__textIndention {
    padding-bottom: 22px;
}

.myprofile-heading {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 60px 0 45px 0;
}

.myprofile__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 70px;
       -moz-column-gap: 70px;
            column-gap: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 60px;
}

.myprofile__imgWrapper.pc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    padding-left: 47px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* SP用html非表示用 */
.myprofile__imgWrapper.sp {
    display: none;
}

.myprofile__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.myprofile__textIndention {
    padding-bottom: 22px;
}

.myprofile__text {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.myprofile-skillHeading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-bottom: 10px;
}

.myprofile__skillDetail {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.aboutDetail-favorite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 60px 0;
}

.favorite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.special-skill {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
}

.special-skill__list {
    background-color: var(--bg-color-white);
    border-radius: 10px;
    width: 100%;
    min-height: 202px;
    padding: 40px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    overflow: scroll;
    /* edge環境でのスクロール非表示 */
    -ms-overflow-style: none;
    /*Firefox対応のスクロールバー非表示コード*/
    scrollbar-width: none;
}

/* windows環境でのスクロール非表示 */
.special-skill__list::-webkit-scrollbar {
    display: none;
}

.special-skill__link {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 5px 20px;
    border-radius: 30px;
    color: var(--text-color);
    background-color: var(--bg-color-white);
    border: solid 1px var(--text-color);
}

.special-skill__item {
    display: block;
    margin-right: 10px;
    margin-bottom:  10px;
}

.special-skill__item:nth-last-child() {
    margin-right: 0;
}

.favorite-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-bottom: 10px;
}

.favorite__list {
    background-color: var(--bg-color-white);
    border-radius: 10px;
    width: 100%;
    min-height: 202px;
    padding: 40px 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    overflow: scroll;
    /* edge環境でのスクロール非表示 */
    -ms-overflow-style: none;
    /*Firefox対応のスクロールバー非表示コード*/
    scrollbar-width: none;
}
/* windows環境でのスクロール非表示 */
.favorite__list::-webkit-scrollbar {
    display: none;
}

.favorite__link {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 5px 20px;
    border-radius: 30px;
    color: var(--text-color);
    background-color: var(--bg-color-white);
    border: solid 1px var(--text-color);
}

.favorite__item {
    display: block;
    margin-right: 10px;
    margin-bottom: 20px;
}

.favorite__item:nth-last-child() {
    margin-right: 0;
}

/*--------------------------------
 CONTACT詳細ページ
---------------------------------*/
.contactDetail-sectionHeading {
    padding-bottom: 140px;
}

.contactDetail__container {
    max-width: 878px;
    margin: 0 auto;
}

.contactDetail__titleArea {
    margin-bottom: 110px;
}

.contactDetail__title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 20px;
}

.contactDetail__description {
    font-size: 16px;
}

.form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}

.form__item:not(:last-child) {
    margin-bottom: 35px;
}

.form__title {
    display: block;
    font-size: 16px;
}

.form__require {
    font-size: 12px;
    color:#BB0000;
}

.form__input {
    width: 520px;
    background-color: var(--text-color-white);
    color: var(--accent-color);
    padding: 17px 35px;
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: 0.1em;
}

.form__textarea {
    min-width: 520px;
    min-height: 237px;
    background-color: var(--text-color-white);
    color: var(--accent-color);
    padding: 17px 35px;
    border-radius: 10px;
    font-size: 16px;
    letter-spacing: 0.1em;
    resize: both;
}

.form__titleComment {
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 10px;
}

.form__btn {
    padding-top: 50px;
    text-align: right;
}

.submit-btn {
    font-size: 16px;
    padding: 25px 100px;
    background-color: var(--bg-color);
    border-radius: 10px;
    color: var(--text-color-white);
}

/*----------------------------
 サービス
----------------------------*/
.serviceIntro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.serviceIntro__imgWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    border: solid 1px var(--text-color);
    border-radius: 10px;
    background-color: var(--pic-bg-color);
}

.serviceIntro__description {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    line-height: 1.43;
    padding-left: 70px;
}

.serviceCategory {
    padding: 85px 0;
}

.serviceCategory__text {
    text-align: center;
    padding-bottom: 30px;
}

.serviceCategory__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.serviceCategory__child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 200px;
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 500;
    border: solid 1px var(--text-color);
    border-radius: 10px;
    background-color: var(--pic-bg-color);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.serviceCategory__child:hover {
    border: solid 1px var(--accent-color);
    /* background-color: var(--accent-color); */
    color: var(--accent-color);
}

.serviceBody {
    padding: 85px 0;
}


.section__heading--serviceCenter {
    text-align: center;
    margin-bottom: 30px;
}

.serviceCategory__subheading {
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px;
}

.serviceCategory__child:nth-child(2n) {
    margin-right: 0;
}

.serviceInfo {
    padding:0;
}

.serviceBody__text {
    max-width: 540px;
    margin: 0 auto 45px;
    line-height: 1.43;
    text-align: center;
}

.accordion {
    max-width: 940px;
    width: 100%;
    margin: 0 auto 30px;
    border-radius: 10px;
    background-color: var(--pic-bg-color);
}

.serviceItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 85px;
}

.accordion__head {
    position: relative;
    cursor: pointer;
}

.accordion__head::after {
    display: block;
    content: "add";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Material Icons Round";
    font-size: 40px;
    color: var(--text-color);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-right: 30px;
}

.accordion__detail {
    display: none;
}

.accordion__detail.active {
    display: block;
}

.accordion__head.active::after {
    content: "remove";
  }

h3.serviceItem__heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

p.serviceItem__recommend {
    padding-left: 90px;
    line-height: 1.43;
}

.serviceItemDetail {
    padding: 0 60px 85px;
}

.serviceItemDetail_comment {
    padding: 0 25px 35px;
    line-height: 1.43;
}

.serviceItemDetail__content {
    padding: 35px 25px;
    line-height: 1.43;
}

h4.serviceItemDetail__subheding {
    font-size: 18px;
    padding-bottom: 20px;
    font-weight: 700;
}

.serviceItemDetail_text {
    font-weight: 500;
}

.serviceItemDetail_annotation {
    font-size: 12px;
    font-weight: 400;
}

.serviceItemDetail_annotationPadding {
    padding-top: 20px;
}

/*----------------------------
 FAQ
----------------------------*/
h3.faqHeading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 30px;
}

.faqBody--website {
    margin-top: 60px;
}

.accordion--faq {
    background-color: var(--bg-color-white);
    max-width: initial;
}

p.faqQuestion {
    padding: 40px 110px;
}

p.faqAnswer {
    padding: 40px 110px;
}

hr.border.border--faq {
    max-width: 940px;
    margin: 0 85px;
}

/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
    body {
        font-size: 12px;
      }

      .pc {
        display: none;
      }

      .sp {
        display: block;
      }

    /* ボタン */
    .btn {
        width: 200px;
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    /* レイアウト */
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section__heading {
        margin-bottom: 25px;
    }
    /* 見出し */
    .heading {
        font-size: 20px;
        font-weight: 700;
    }

    .heading__subtitle {
        font-size: 12px;
        margin-top: 5px;
    }

    /* ヘッダー */
   .header {
        height: 60px;
    }

    .header__logo {
        font-size: 20px;
    }

    .header__logo--img {
        width: 74px;
        height: 43px;
    }

    .header__logoSp {
        margin: 10px 0 0 20px;
    }

    .header__body {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* グローバルナビ */
    .gnav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 4;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .gnav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 25px;
        text-align: right;
        padding-top: 40px;
        padding-right: 40px;
    }

    .gnav__item {
        padding-bottom: 25px;
    }

    .gnav__item:last-child {
        padding-bottom: 0;
    }

    .gnav__link {
        color: var(--text-color-white);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .gnav__link::before {
        content: "-";
    }

    .btn-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 60px;
        height: 60px;
        text-align: center;
        padding: 21px 16px;
        border: none;
        outline: none;
        background: none;
        cursor: pointer;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
    }

    .btn-menu__line {
        display: block;
        position: relative;
        left: 0;
        width: 100%;
        height: 1px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        border-radius: 4px;
        background-color: var(--text-color);
    }

    .btn-menu__line::before,
    .btn-menu__line::after {
        display: block;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        /* 擬似要素のアニメーションを有効化 */
        -webkit-transition: inherit;
        transition: inherit;
        border-radius: 4px;
        background-color: var(--text-color);
    }

    .btn-menu__line::after {
        top: 8px;
    }

    .btn-menu.active .btn-menu__line {
        background-color: transparent;
    }

    .btn-menu.active .btn-menu__line::before,
    .btn-menu.active .btn-menu__line::after {
        top: 0;
        background-color: var(--text-color-white);
    }

    .btn-menu.active .btn-menu__line::before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }

    .btn-menu.active .btn-menu__line::after {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    /* メインビジュアル */
    .mv {
        max-width: 787px;
        margin: 45px auto;
    }

    .wrapper {
        /* mv__innerのmvのimgによってできた全体の右側余白を消す */
        overflow: hidden;
    }

    .mv__title {
        font-size: clamp(26px, 5vw, 30px);
        font-weight: 700;
        letter-spacing: 0.1em;
        line-height: 1.08;
        color: var(--text-color);
        position: relative;
    }

    .mv__text-small {
        font-size: clamp(18px, 4vw, 20px);
    }

    /* ABOUT */
    .about__body {
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .about__description {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        padding-top: 20px;
    }

    .about__img-wrapper {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 100%;
                flex: 0 1 100%;
        text-align: right;
    }

    .profile-illustSp {
        width: 100%;
        height: 100%;
    }

    .about__textIndention {
        padding-bottom: 16px;
    }

    .about__text {
        font-size: 12px;
        line-height: 1.3;
    }
    .about__info {
        display: block;
    }


    /* WORKS */
    .works__item-title {
        font-size: 12px;
        line-height: 1;
        padding-top: 8px;
    }

    .works__list-item-text {
        padding-top: 5px;
        font-size: 12px;
        line-height: 1;
    }

    .works__list-caption {
        padding-top: 5px;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    /* WORKS&BLOG共通-swiper */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .swiper-button-next {
        top: 160px;
        right: -15px;
    }

    .swiper-button-prev {
        top: 160px;
        left: -15px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    /* worksのみ調整 */
    .works-swiper-button-next,
    .works-swiper-button-prev {
        top: 120px;
    }

    /* blogのみ調整 */
    .blog-swiper-button-next,
    .blog-swiper-button-prev {
        top: 120px;
    }

    /* BLOG */
    .blog__list-item-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 25px;
        margin-top: 10px;
    }

    .blog__list-item-date {
        font-size: 12px;
        line-height: 1;
    }

    blog__list-item-title {
        font-size: 12px;
        line-height: 1.3;
        letter-spacing: 0.1em;
    }

    /* CONTACT */
    .contact {
        padding: 50px 0;
    }

    .contact__body {
        width: 100%;
        height: 260px;
        padding: 62px 20px 40px;
    }

    .contact__heading {
        margin: -21px 0;
        text-align: center;
    }

    .contact__text {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 0.1em;
        margin-top: 30px;
    }

    .contact__btn {
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
    }

    .contact-btn {
        display: block;
        padding: 30px 50px;
        border: solid 2px #333333;
        margin-top: 30px;
        letter-spacing: 0.1em;
    }

    /* FOOTER */
    .footer {
        margin-top: 0;
    }

    .footer__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-top: 60px;
        padding-bottom: 0;
    }

    .footer-nav__list {
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        padding-bottom: 45px;
    }

    .footer-nav__item {
        padding-bottom: 15px;
    }

    .footer-nav__item:last-child {
        padding-bottom: 0;
    }

    .footer__logo {
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-bottom: 50px;
    }

    .footer__logo--img {
        width: 96px;
        height: 76px;
    }

    .footer__sns-body {
        padding-bottom: 80px;
    }

    .footer__copyright {
        font-size: 8px;
        line-height: 1;
        padding-bottom: 12px;
        letter-spacing: 0.1em;
        text-align: center;
        padding-bottom: 12px;
    }

    .page-top__link {
        width: 40px;
        height: 40px;
      }

    .page-top__icon {
        font-size: 20px;
    }

    .mv__title {
        font-size: 22px;
    }

    .mv__text-small {
        font-size: 18px;
    }

    /* -----ABOUT詳細ページ ------------------------------*/
    /* SP用html非表示 */
    .aboutDetail__body.pc {
        display: none;
    }
    /* SP用html表示 */
    .aboutDetail__body.sp {
        display: block;
        padding-bottom: 35px;
    }

    .aboutDetail__desc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-column-gap: 12px;
           -moz-column-gap: 12px;
                column-gap: 12px;
        padding-bottom: 28px;
    }

    .aboutDetail__profWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-line-pack: justify;
            align-content: space-between;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 50%;
                flex: 0 1 50%;
        margin: 0;
        position: relative;
        padding-bottom: 0;
    }

    .aboutDetail__imgWrapper {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 50%;
                flex: 0 1 50%;
    }

    .aboutDetail__profArea {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .aboutDetail__name {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 0.1em;
        padding-bottom: 8px;
    }

    .aboutDetail__text {
        -webkit-box-flex: 100%;
            -ms-flex: 100%;
                flex: 100%;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .aboutDetail__snsfWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
        margin: 10px 0 0 0;
        padding-bottom: 0;
    }

    .aboutDetail__occupation {
        font-size: 12px;
        line-height: 1.5;
        padding-bottom: 0;
        letter-spacing: 0.1em;
    }

    .aboutDetail__snsTwitter {
        margin: auto 0;
        width: 25px;
        height: 20px;
        margin-right: 5px;
    }

    .aboutDetail__snsInstagram {
        margin: auto 0;
        width: 25px;
        height: 25px;
    }

    .aboutDetail__textIndention {
        padding-bottom: 18px;
    }

    .myprofile-heading {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        padding: 35px 0 25px 0;
    }

    .myprofile__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-bottom: 0;
    }

    /* PC用html非表示用 */
    .myprofile__imgWrapper.pc {
        display: none;
    }

    /* SP用html表示用 */
    .myprofile__imgWrapper.sp {
        display: block;
        width: 168px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        margin: 0 12px 12px 0;
    }

    .myprofile__text {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 50%;
                flex: 0 0 50%;
        font-size: 12px;
        line-height: 1.4;
        letter-spacing: 0.1em;
    }

    .myprofile__desc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding-bottom: 35px;
    }

    .myprofile-skillHeading {
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        padding-bottom: 10px;
    }

    .myprofile__skillDetail {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .myprofile__skills {
        padding-bottom: 35px;
    }

    .aboutDetail-favorite {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 20px;
        padding: 35px 0;
    }

    .favorite {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }

    .special-skill {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }

    .special-skill__list {
        min-height: 98px;
        padding: 35px 14px;
    }

    .special-skill__link {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.1em;
        padding: 5px 15px;
    }

    .special-skill__item {
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .special-skill__item:nth-last-child() {
        margin-right: 0;
    }

    .favorite-heading {
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        padding-bottom: 5px;
    }

    .favorite__list {
        min-height: 206px;
        padding: 35px 14px;
    }

    .favorite__link {
        font-size: 12px;
        line-height: 1;
        letter-spacing: 0.1em;
        padding: 5px 15px;
    }

    .favorite__item {
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .favorite__item:nth-last-child() {
        margin-right: 0;
    }

    /* WORKSページ */
    .worksListCategory {
        padding: 30px 30px;
    }

    .worksList_CategoryTitle {
        font-size: 24px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.1em;
        position: relative;
        top: 12px;
        left: 10px;
    }

    .worksListCategory__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    }

    .worksListCategory__item {
        padding: 5px 20px;
        font-size: 14px;
        line-height: 1;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .worksListCategory__item:last-child {
        margin-right: 0;
    }

    .worksList__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* row-gap: 45px; */
    }

    .worksList__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 45px;
    }

    .worksList__item:last-child {
        margin-bottom: 0;
    }

    .worksList__list-item-text {
        font-size: 12px;
        line-height: 1;
    }

    .worksList__caption {
        padding-top: 8px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.1em;
    }

    /* WORKS詳細ページ */
    .worksDetail__date::before {
        content: "|";
        padding: 3px;
    }

    .worksDetail__title {
        font-size: 16px;
        padding-right: 0;
    }

    .worksDetail__img02 {
        -webkit-column-gap: 0;
           -moz-column-gap: 0;
                column-gap: 0;
        padding: 25px;
    }

    .worksDetail__img02-device {
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0.1em;
        padding-bottom: 5px;
        padding-left: 5px;
    }

    .worksDetail__category-dateSp {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-bottom: 8px;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .worksDetail__img02-pc {
        padding-right: 25px;
    }

     /* BLOGページ */
     .blogDetail__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 45px;
        padding-bottom: 60px;
        padding-top: 40px;
    }

    .blogDetail__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .blogDetail__description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 8px;
           -moz-column-gap: 8px;
                column-gap: 8px;
        padding-top: 8px;
    }

    .blogDetail__title {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    .blogDetail__date {
        font-size: 14px;
        line-height: 1.2;
        letter-spacing: 0.1em;
    }

    /* BLOG詳細ページ */
    .blogArticle__body {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .blogArticle__titleArea {
        padding-bottom: 8px;
    }

    .blogArticle__title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .blogArticle__date {
        font-size: 10px;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .blogArticle__text {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.1em;
        padding: 20px 0;
    }

    /* CONTACT詳細ページ */
    .contactDetail {
        padding-bottom: 95px;
    }

    .contactDetail-sectionHeading {
        padding-bottom: 60px;
    }

    .contactDetail__titleArea {
        margin-bottom: 50px;
    }

    .contactDetail__title {
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 15px;
    }

    .contactDetail__description {
        font-size: 12px;
        line-height: 1.5;
        letter-spacing: 0.1em;
    }

    .form__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-column-gap: 0;
           -moz-column-gap: 0;
                column-gap: 0;
        row-gap: 10px;
    }

    .form__title {
        font-size: 12px;
        padding-left: 5px;
    }

    .form__require {
        font-size: 10px;
    }

    .form__input {
        width: 100%;
        padding: 13px 20px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .form__textarea {
        min-width: 0;
        width: 100%;
        min-height: 185px;
        padding: 13px 20px;
        border-radius: 10px;
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .form__btn {
        padding-top: 50px;
        text-align: center;
    }

    .submit-btn {
        font-size: 14px;
        padding: 20px 130px;
        width: 100%;
    }
}