@charset "utf-8";

/* 共通 */

body {
    font-family: 'M PLUS 1p', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #121212;
    font-feature-settings: 'palt';
}
img,svg {
    width: 100%;
    height: auto;
}
dt {
    font-weight: normal;
}
/* 
変数
 */
:root{
    --primary:#7C402E;
    --orange:#F15A22;
    --yellow:#FFC40C;
    --darkgray: #121212;
    --midgray: #414141;
    --gray: #888888;
    --white: #ffffff; 
}
/* 
背景動画
*/
.video-sec {
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 80px;
    right:0;
    left:0;
    bottom:0;
    height: 40vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-sec video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
@media screen and (min-width:480px){
    .video-sec {
        top: 0;
        height: 80vh;
    }
    .video-sec video{
        top: 65%;
    }
}
@media screen and (min-width:900px){
    .video-sec {
        top: 0;
        height: 100vh;
    }
    .video-sec video {
        top: 0;
        left: 200px;
        transform: translate(0, 0);
    }
}

/* index.html */

/* 
バンシルについて
*/
.about-sec {
    width: 100%;
    height: auto;
}
.about-content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.about-content-text {
    width: 100%;
    height: auto;
    margin: 0 auto;
    color: var(--darkgray);
    line-height: 2;
    letter-spacing: 0.08em;
    text-align: center;
}
.about-content-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}
.about-content-catch {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}
.about-content-description {
    font-size: 16px;
    font-weight: bold;
}
.about-logo {
    width: 40%;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width:875px){
    .about-content {
        flex-direction: row-reverse;
    }
    .about-logo {
        width: 40%;
        height: auto;
        max-width: none;
        margin: 0;
        margin-bottom: 0px;
    }
    .about-logo-img {
        width: 80%;
        margin-left: auto;
    }
    .about-content-text {
        width: 60%;
        padding-top: 30px;
    }
    .about-content-title {
        font-size: 20px;
        margin-bottom: 50px;
    }
    .about-content-catch {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .about-content-description {
        font-size: 18px;
        margin-bottom: 75px;
    }
}
/* 
サービス内容
*/
.service-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -40px;
}
.service-list-item {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: var(--darkgray);
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.service-list-circle {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
    position: relative;
}
.service-list-circle.sns {
    background-image: url(../images/sns_img.webp);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.service-list-circle.hp {
    background-image: url(../images/hp_img.webp);
    background-size: cover;
    background-position: 80% 50%;
    background-repeat: no-repeat;
}
.service-list-circle.video {
    background-image: url(../images/comingsoon.webp);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.service-list-circle a {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.service-list-circle a::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--gray);
    opacity: 0.3;
    transition: all .4s;
    z-index: 1;
    border-radius: 50%;
}
.service-list-circle a:hover::before {
    width: 100% ;
    height: 100%;
    transition: all .4s;
}
.service-list-heading {
    text-transform: uppercase;
}
.service-list-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 10px;
}
.service-list-title br{
    display: none;
}
@media screen and (min-width:767px){
    .service-list {
        margin-top: 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .service-list-item {
        width: calc(( 100% - 40px ) / 3);
        margin-top: 0;
    }
    .service-list-title {
        font-size: 18px;
    }
    .service-list-title br{
        display: block;
    }
}
/* 
よくある質問
*/
.faq-list {
    margin-top: -20px;
}
.faq-list-item {
    border-bottom: var(--darkgray) 1px solid;
    font-size: 15px;
    font-weight: bold;
}
.faq-list-question {
    padding: 20px 20px 20px 40px;
    position: relative;
}
.faq-list-question::before {
    content: "Q";
    font-size: 20px;
    color: var(--darkgray);
    position: absolute;
    left: 0;
    top: 13px;
}
.faq-list-question::after {
    font-family: 'Material Symbols Rounded';
    content: '\e5cf';
    color: var(--darkgray);
    font-size: 24px;
    position: absolute;
    top: 12px;
    right: 0;
}
.faq-list-question.open::after {
    content:'\e5ce';
}
.faq-list-answer {
    display: none;
    padding: 0px 0px 15px 40px;
    position: relative;
    color: #fe3506;
}
.faq-list-answer::before {
    content: "A";
    font-size: 20px;
    color: #fe3506;
    position: absolute;
    left: 0%;
    top: -6px;
}
@media screen and (min-width:767px){
    .faq-list {
        max-width: 800px;
        margin: 0 auto;
    }
}
/* 
お客様の声
*/
.voice-preparation {
    margin-top: 40px;
}
.voice-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: -10px;
}
.voice-list-item {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 40px;
    opacity: 0;
    transform: scale(0.1);
}
.voice-list-item.inview {
    opacity: 1;
    transform: scale(1);
    transition: opacity,transform .5s;
}

.voice-list-user {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}
.voice-list-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.voice-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.voice-list-info {
    text-align: center;
    font-size: 18px;
}
.voice-list-text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #E9F1FB;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}
.voice-list-text p {
    display: inline-block;
    text-align: left;
}
.left .voice-list-text {
    position: relative;
}
.left .voice-list-text::before {
    display:none; 
}
.right .voice-list-text {
    position: relative;
}
.right .voice-list-text ::after, 
.left .voice-list-text::after {
    display:block ;
    border-width: 15px 15px 0px 15px;
    content: "";
    border-color: #E9F1FB transparent transparent transparent;
    position: absolute;
    right: calc(50% - 15px);
    bottom: -12px; 
}
@media screen and (min-width:767px){
    .voice-preparation {
        margin-top: 20px;
    }
    .voice-list-item {
        margin-bottom: 60px;
        flex-direction: row;
    }
    .voice-list-item.left {
        flex-direction: row;
    }
    .voice-list-item.right {
        flex-direction: row-reverse;
    }
    .voice-list-img {
        width: 200px;
        height: 200px;
        border-radius: 50%;
    }
    .voice-list-info {
        text-align: center;
        font-size: 15px;
    }
    .voice-list-text {
        width: 60%;    
    }
    .left .voice-list-text {
        margin-left: 25px;
    }
    .left .voice-list-text::before {
        display:block ;
        border-width: 15px 15px 15px 0px;
        content: "";
        border-color: transparent #E9F1FB transparent transparent;
        position: absolute;
        top: calc(50% - 15px);
        left: -14px;

    }
    .left .voice-list-text::after {
        display:none ;
    }
    .right .voice-list-text {
        margin-right: 25px;
        position: relative;
    }
    .right .voice-list-text ::after {
        display:block ;
        border-width: 15px 0px 15px 15px;
        content: "";
        border-color: transparent transparent transparent #E9F1FB;
        position: absolute;
        right: -14px;
        bottom: calc(50% - 15px); 
    }
}
/* 
お問い合わせ（各ページ共通）
*/
.contact-sec-title {
    color: var(--darkgray);
}
.contact-sec-title::after,
.contact-sec-title::before {
    content: "";
    background-color: var(--darkgray);
    width: 18%;
    height: 0.5px;
    position: absolute;
}
.contact-sec-title::before {
    top: 50%;
    left: 0;
}
.contact-sec-title::after {
    bottom: 50%;
    right: 0;
}
.contact-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}
.contact-list-item {
    width: 70%;
    height: auto;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    position: relative;
}
.contact-list-item a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: var(--darkgray) 2px solid;
    transition: all .4s;
}
.contact-list-item a:hover {
    border: var(--yellow) 2px solid;
    text-shadow: 0px 0px 2px var(--yellow);
}
.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.material-symbols-rounded {
    font-size: 46px;
    margin: 0 auto;
    margin-bottom: 10px;
}
.line-it-button {
    margin: 0 auto;
    margin-bottom: 10px;
}
.contact-notion {
    display: block;
    text-align: center;
    margin: 50px auto;
    opacity: 1;
    transition: all .3s;
}
.contact-notion:hover {
    opacity: 0.7;
}
@media screen and (min-width:600px){
    .contact-list {
        max-width: 800px;
        margin: 0 auto;
        flex-direction: row;
        margin-top: 0px;
    }
    .contact-list-item {
        width: 35%;
        margin-top: 0px;
    }
}

/* about.html*/

/* 
about-secを転用
*/

/* 
代表挨拶
*/
.ceo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}
.ceo-content-img {
    width: 88%;
    box-shadow: 10px 10px 10px var(--darkgray);
    margin-bottom: 40px;
}
.ceo-content-message {
    width: 100%;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: var(--darkgray);
}
.ceo-message-text {
    font-size: 14px;
    font-weight: bold;
    margin-top: 0px;
}
.ceo-message-text span {
    display: block;
    margin-top: 20px;
}
@media screen and (min-width:900px){
    .ceo-content {
        max-width: 100%;
    }
    .ceo-content-img {
        width: 60%;
        margin: 0 auto;
        box-shadow: 10px 10px 10px var(--darkgray);
        margin-bottom: 0px;
        text-align: center;
    }
    .ceo-content-message {
        width: 80%;
        margin: 0 auto;
    }
    
    .ceo-message-text {
        font-size: 16px;
        margin-top: 40px;
    }
}

/* 
会社概要
*/
.summary-list {
    color: var(--darkgray);
    margin-bottom: 50px;
}
.summary-list-item {
    display: flex;
    border-bottom: 1px solid var(--darkgray);
    font-size: 14px;
    font-weight: bold;
}
.summary-list-term {
    width: 35%;
    padding: 20px 20px 20px 0px;
    font-weight: bold;
}
.summary-list-description {
    width: 65%;
    padding: 20px 0;
}
@media screen and (min-width:767px){
    .summary-list {
        max-width: 800px;
        margin: 0 auto;
    }
    .summary-list-item {
        display: flex;
        border-bottom: 1px solid var(--darkgray);
        font-size: 16px;
        font-weight: bold;
    }
    .summary-list-term {
        width: 35%;
        padding: 30px;
        font-weight: bold;
    }
    .summary-list-description {
        width: 65%;
        padding: 30px 0 30px 30px;
    }
}


/* サービス内容（sns.html,hp.html,movie.html） */

/* 
各サービスの内容(各サービスページ共通)
*/
.service-sec-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.service-sec-text {
    width: 100%;
    margin-top: 20px;
}
.service-text-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    padding-left: 20px;
    position: relative;
}
.service-text-title::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--darkgray);
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(0, -50%);
}
.service-text-description {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}
.service-text-description span {
    display: block;
    margin-bottom: 10px;
}
.service-sec-img {
    overflow: hidden;
    width: 100%;
    box-shadow: 5px 5px 12px var(--darkgray);
}
.service-sec-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
@media screen and (min-width:880px){
    .service-wrapper {
        padding-bottom: 80px;
    }
    .service-sec-content {
        flex-direction: row;
        max-width: none;
        justify-content: space-between;
        padding: 0 3%;
    }
    .service-sec-content.i-t {
        flex-direction: row-reverse;
    }
    .service-sec-text {
        width: 54%;
        margin-top: 0;
    }
    .service-text-title {
        font-size: 22px;
        margin-top: 0px;
        padding-left: 30px;
    }
    .service-text-title::before {
        width: 20px;
    }
    .service-text-description {
        font-size: 16px;
        margin-top: 30px;
    }
    .service-text-description span {
        margin-bottom: 20px;
    }
    .service-sec-img {
        width: 40%;
    }
}

/* 各サービス内容ページ別 */

/* 
sns導入実績
*/
.sns-works-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    margin-top: -50px;
}
.sns-works-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 50px;
    text-align: center;
}
.sns-works-img {
    width: 100%;
    margin-bottom: 20px;
}
.sns-works-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.sns-works-infoList {
    width: 100%;
    padding-left: 20%;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
}
.sns-works-infoItem {
    display: flex;
    text-align: start;
}
.sns-works-infoItem dt {
    width: 29%;
    margin-right: 1%;
}
.sns-works-infoItem dd {
    width: 70%;
}
.sns-works-url {
    color: var(--darkgray);
    transition: all .2s;
    font-size: 14px;
    font-weight: bold;
}
.sns-works-url:hover {
    color: var(--yellow);
    text-shadow: 1px 1px 1px var(--darkgray);
}
@media screen and (min-width:900px){
    .sns-works-list {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
    }
    .sns-works-item {
        width: calc( ( 100% - 60px) / 3);
    }
    .sns-works-img {
        width: 100%;
        margin-bottom: 20px;
    }
    .sns-works-img img {
        width: 100%;
        aspect-ratio: 4 / 3;
        vertical-align: top;
    }
    .sns-works-infoList {
        padding-left: 10%;
    }
    .sns-works-infoItem dt {
        width: 19%;
        margin-right: 1%;
    }
    .sns-works-infoItem dd {
        width: 80%;
    }
}


/* 
hp制作実績
*/
.hp-feature-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--darkgray);
    text-align: center;
    margin-bottom: 30px;
}
.hp-feature-title span {
    background: linear-gradient(transparent 60%, rgba(242,203,107,1) 60%); 
}
.hp-feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
}
.hp-feature-item {
    /* width: calc((100% - 20px)/2); */
    width: 100%;
    background-color:#FFFCF3;
    border: 3px solid var(--yellow);
    border-radius: 6px;
    padding: 15px 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.hp-works-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -20px;
}
.hp-works-item {
    width: 100%;
    height: auto;
    max-width: 500px;
    border: var(--darkgray) 1px solid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 5px var(--darkgray);
    position: relative;
    margin-top: 20px;
}
.hp-works-img {
    width: 100%;
    overflow: hidden;
}
.hp-works-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hp-works-text {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
}
.hp-works-item a {
    position:absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (min-width:767px){
    .hp-feature-title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    .hp-feature-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 20px;
    }
    .hp-feature-item {
        width: calc((100% - 20px)/2);
        font-size: 16px;
    }
    .hp-works-list {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }
    .hp-works-item {
        width: calc( (100% - 20px) / 2);
        height: auto;
        max-width: none;
    }
    .hp-works-text {
        padding: 10px;
        text-align: center;
        font-size: 16px;
        background-color: #fff;
    }
    .hp-works-item a {
        position:absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
    }
}

/*
video制作実績
*/
.video-works-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -40px;
}
.video-works-item {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}
.video-works-movie {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.video-works-movie video{
    width: 100%;
    height: auto;
}
.video-works-text {
    padding: 10px;
    text-align: center;
    font-size: 16px;
    background-color: #fff;
}
.video-works-item a {
    position:absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
@media screen and (min-width:767px){
    .video-works-text {
        padding: 10px;
        text-align: center;
        font-size: 18px;
        background-color: #fff;
    }
    .video-works-item a {
        position:absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
    }
}


/* ご利用料金*/

.service-price-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.service-price-table th,
.service-price-table td {
    border: var(--darkgray) 1px solid;
    padding: 4px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.service-price-table th {
    background-color: var(--yellow);
}
.service-price-table td {
    background-color: #fff;
}
.service-price-table .table-body th br,
.service-price-table .table-body td br {
    display: block;
}
.table-category {
    width: 40%;
}
.table-heading {
    width: 30%;
}
@media screen and (min-width:769px){
    .service-price-table th,
    .service-price-table td {
        font-size: 18px;
    }
    .service-price-table .table-body th br,
    .service-price-table .table-body td br {
        display: none;
    }
}
/*
 サービスの流れ（各サービス内容ページ共通
*/

.flow-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.flow-illustlation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
    padding-right: 15px;
    margin-bottom: 40px;
}
.flow-illustlation::after {
    content: "";
    width: calc(100% - 20px);
    height: 100px;
    background-color: #FDB933;
    position:absolute;
    top: calc( 50% - 50px );
    left: 0;
    z-index: -10;
}
.flow-illustlation-item {
    position: relative;
    width: calc( ( 100% - 120px) / 5 );
    max-width: 75px;
    height: 200px;
    background-color: var(--midgray);
    display: flex;
    justify-content: center;
    align-items: start;
}

.flow-illustlation-item::after {
    content: "";
    display: block;
    border-top: 100px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 100px solid transparent;
    border-left: 25px solid var(--midgray);
    position: absolute;
    left: calc( 100% - 0.7px);
}
.flow-illustlation-item p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    height: 100%;
    padding-top: 30px;
}
.flow-text-list {
    width: calc(100% - 50px);
    margin-left: 50px;
    counter-reset: listnum;
}
.flow-text-term {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 1px solid #121212;
    position: relative;
}
.flow-text-term::before {
    counter-increment: listnum;  /*counter-resetと同じ文字列*/ 
	content: counter(listnum);  /*カウントした数に応じて番号を表示  */
    width: 35px;
    height: 35px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    background-color: #414141;
    color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: -45px;
}
.flow-text-description {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 40px;
}  
@media screen and (min-width:1000px){
    .flow-content {
        flex-direction: row;
        justify-content: space-between;    
    }
    .flow-illustlation {
        width: 250px;
        margin-right: 5%;
        flex-direction: column;
        justify-content: center;
        padding-right: 0;
        margin-bottom: 0;
        padding-bottom: 15px;
    }
    .flow-illustlation::after {
        content: "";
        width: 120px;
        height: calc( 100% - 15px);
        background-color:#FDB933;
        position:absolute;
        top: 0;
        left: calc( 50% - 60px);
        z-index: -10;
    }
    .flow-illustlation-item {
        width: 250px;
        max-width: none;
        height: 100px;
        margin-top: 80px;
        align-items: center;
    }
    .flow-illustlation-item:first-child{
        margin-top: 0;        
    }
    .flow-illustlation-item p {
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        -webkit-text-orientation: mixed;
        width: 100%;
        height: auto;
        max-width: none;
        padding-top: 0;
        text-align: center;
        font-size: 18px;
    }

    .flow-illustlation-item::after {
        border-top: 25px solid var(--midgray);
        border-right: 125px solid transparent;
        border-bottom: 0 solid transparent;
        border-left: 125px solid transparent;
        left: 0;
        bottom: -24.3px;
    }
    .flow-text-list {
        width: calc( 95% - 250px) ;
    }
} 

/* contact.html */

/* 
フォーム
*/

.form-content {
    width: 100%;
    border-radius: 20px;
    border: var(--darkgray) 3px solid;
    padding: 20px;
    color: var(--darkgray);
}
.form-item {
    margin-bottom: 10px;
}
.form-title {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 5px;
}
.form-radio {
    margin-bottom: 3px;
    display: block;
}
.form-radio input,
.form-radio label {
    font-size: 14px;
    vertical-align: middle;
}
.form-require {
    font-size: 10px;
    color: var(--orange);
    padding-left: 5px;
}
.form-input {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 35px;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    padding: 4px;
    border: var(--darkgray) 1px solid;
}
.form-note {
    font-size: 14px;
    padding-left: 5px;
}
.form-input-tel {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 35px;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    padding: 4px;
    border: var(--darkgray) 1px solid;
}
.form-textarea {
    display: block;
    width: 100%;
    height: 200px;
    border: var(--darkgray) 1px solid;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    padding: 4px;

}
.form-select {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border: var(--darkgray) 1px solid;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    padding: 4px;
    position: relative;
}
.form-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    border: var(--darkgray) 2px solid;
    border-radius: 20px;
    font-size: 18px;
    letter-spacing: 0.2em;
    padding: 15px 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 60px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all .3s;
    position: relative;
}
.form-btn:hover {
    border-color: var(--yellow);
}

@media screen and (min-width:1000px){
    .form-content {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        border-radius: 20px;
        border: var(--darkgray) 3px solid;
        padding: 30px;
        color: var(--darkgray);
    }
    .form-item {
        margin-bottom: 30px;
    }
    .form-title {
        display: inline-block;
        font-size: 16px;
        margin-bottom: 10px;
    }
    .form-radio input,
    .form-radio label {
        font-size: 16px;
        vertical-align: middle;
    }
    .form-require {
        font-size: 12px;
        color: var(--orange);
        padding-left: 10px;
    }
    .form-input {
        display: block;
        width: 400px;
        height: 35px;
        border-radius: 6px;
        background: #fff;
        font-size: 16px;
        padding: 8px;
    }
    .form-note {
        font-size: 12px;
        padding-left: 5px;
    }
    .form-input-tel {
        display: block;
        width: 400px;
        height: 35px;
        border-radius: 6px;
        background: #fff;
        font-size: 16px;
        padding: 8px;
    }
    .form-textarea {
        display: block;
        width: 100%;
        height: 200px;
        border: var(--darkgray) 1px solid;
        border-radius: 6px;
        background: #fff;
        font-size: 16px;
        padding: 8px;

    }
    .form-select {
        display: block;
        width: 400px;
        height: auto;
        border: var(--darkgray) 1px solid;
        border-radius: 6px;
        background: #fff;
        font-size: 16px;
        padding: 8px;
        position: relative;
        margin-bottom: 50px;
    }
    .form-btn {
        width: 500px;
        border: var(--darkgray) 2px solid;
        border-radius: 20px;
        font-size: 18px;
        letter-spacing: 0.2em;
        padding: 24px 0;
        text-align: center;
        margin: 0 auto;
        background-color: #ffffff;
        transition: all .3s;
    }
    .form-btn:hover {
        border-color: var(--yellow);
    }
}
/* 
公式LINE
 */
.contact-line-wrapper {
    padding-top: 50px;
}
.contact-line-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    background-color: #fff;
}
.contact-line-button {
    margin: 0 auto;
    margin-bottom: 30px;
}
.contact-line-box a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    border: var(--darkgray) 2px solid;
    transition: all .3s;
}
.contact-line-box a:hover{
    border-color: var(--yellow);
}
.contact-line-text {
    display: inline-block;
    margin: 0 auto;
}
@media screen and (min-width:1000px){
    .contact-line-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 20px;
        padding: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    .contact-line-box a {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        border: var(--darkgray) 3px solid;
        text-align: center;
        position: absolute;
        top: 0;
        left: 0;

    }
    .contact-line-box a:hover{
        color: #ffffff;
        border-color: var(--yellow);;
    }
    .contact-line-button {
        margin: 0 auto;
        margin-bottom: 40px;
    }
}
