/* ****************************************************** */
/* 色変更２重線 */
/* ****************************************************** */

.parts_original_line {
  position: relative;
  margin-top: min(0.5rem, 0.5vw);
}

.parts_original_line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px rgb(1, 163, 238);
  width: 35%;
}

.parts_original_line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid 2px rgb(251, 252, 252);
  width: 100%;
}

/* ****************************************************** */
/* 白矢印 */
/* ****************************************************** */
.parts_arrow {
  position: relative;
  /* padding: 0 0 0 10px; */
}

.parts_arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  /* 縦軸をセンタリングする */
  right: 0;
  /* left: 250%; */
  transform: translateY(-50%);
  /* 縦軸をセンタリングする */
  border: 5px solid transparent;
  border-left: 8px solid #f9f7f7;
  /* 好みで色を変えてください */
}

/* ****************************************************** */
/* 文字色変更 */
/* ****************************************************** */
.slideColor {
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(90deg, rgb(3, 127, 204), rgb(2, 113, 198) 50%, rgb(250, 250, 250) 50%, rgb(253, 253, 253));
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* easeOutQuartのイージング */
}

.slideColor:hover {
  background-position: 0 0;
}

/* ****************************************************** */
/* ボタン */
/* ****************************************************** */
.button {
  width: 300px;
  padding: 1.5rem;
  position: relative;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: .3s;
}

.button-text {
  font-size: min(0.8rem, 1vw);
}

.arrow-extend {
  padding: 20px;
  color: #333;
  overflow: hidden;
  position: relative;
  /* z-index: 1; */
}

.arrow-extend::before {
  content: '';
  width: 60px;
  height: 60px;
  background-color: #e7e8e7;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .4s;
  z-index: -1;
}

.arrow-extend::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.arrow-extend:hover::before {
  width: 100%;
}

/* ******************************** */
/* リンクバナー用ボタン */
/* ******************************** */
.link_bunner_btn {
  display: inline-block;
  width: 30vw;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #fbfcfc;
  background-color: #013359;
  position: relative;
  border: 1px solid #026e8f;
  transition: color 0.5s ease;
}

.link_bunner_btn:hover {
  color: #fff;
}

.link_bunner_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.link_bunner_btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #1B85FB;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.link_bunner_btn_text {
  position: relative;
}

@media screen and (max-width:720px) {
  .button-text {
    font-size: min(3rem, 3vw);
  }

  .link_bunner_btn {
    width: 80vw;
  }
}
* {
    font-family: -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

body {
    /* background-color: var(--main_body_color); */
    --base_gradient_bg_color: linear-gradient(90deg, rgb(123, 124, 125), rgb(37, 49, 49) 20%, rgb(0, 12, 12));
    animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ********************************** */
/* サブページのメインビジュアル領域 */
/* 共通領域 */
/* ********************************** */
.sub_page_base {
    background-image: url(/image/image_infomation_bgimage.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    position: relative;

    h1 {
        font-size: min(2rem, 2vw);
        font-weight: 100;
        margin-top: min(1rem, 1vw);
        margin-bottom: min(1rem, 1vw);
    }

    h2 {
        font-size: min(1rem, 1vw);
    }

    p {
        font-size: min(0.9rem, 0.9vw);
    }
}

.sub_page_text_contaier {
    color: white;
    position: absolute;
    top: 20vh;
    left: 20vw;
}

/* ***************************** */
/* ニュースコンテンツ領域 */
/* ***************************** */
.news_contents_contaier {
    display: flex;
    justify-content: center;
}

.news_text_contents_box {
    width: 60vw;
    padding: 5rem 8rem 7rem 7rem;

    data {
        color: rgb(1, 110, 177);
        font-size: win(1rem, 1vw);
        padding: 1rem 0 1rem 0;
    }

    h2 {
        font-size: min(1.5rem, 1.5vw);
        border-bottom: 1px solid gray;
        font-weight: 300;
        padding: 1rem 0 1rem 0;
    }

    p {
        text-indent: 10px;
        text-align: justify;
        text-justify: inter-ideograph;
        line-height: 2;
        padding: 1rem 0 1rem 0;
    }
}

.news_other_contents_box {
    width: 50vw;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(237, 241, 248);
    padding: 2rem;
}

/* ********************************** */
/* 事務所紹介用メインビジュアル領域 */
/* ********************************** */
.whoweare_page_base {
    background-image: url(/image/image_whoweare_bgimage.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh;
    position: relative;

    h1 {
        font-size: min(2rem, 2vw);
        font-weight: 100;
        margin-top: min(1rem, 1vw);
        margin-bottom: min(1rem, 1vw);
    }

    h2 {
        font-size: min(1rem, 1vw);
    }

    p {
        font-size: min(0.9rem, 0.9vw);
    }
}

.whoweare_page_text_contaier {
    color: white;
    position: absolute;
    top: 20vh;
    left: 20vw;
}

/* ***************************** */
/* メディアクエリ */
/* ***************************** */
@media screen and (max-width:720px) {

    .sub_page_base {
        height: 40vh;

        h1 {
            font-size: min(4.5rem, 4.5vw);
            font-weight: 100;
            margin-top: min(1rem, 1vw);
            margin-bottom: min(1rem, 1vw);
        }

        h2 {
            font-size: min(3rem, 3vw);
        }

        p {
            font-size: min(3rem, 3vw);
        }
    }

    .sub_page_text_contaier {
        top: 18vh;
        left: 9vw;
    }

    /* ***************************** */
    /* ニュースコンテンツ領域 */
    /* ***************************** */
    .news_contents_contaier {
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
    }

    .news_text_contents_box {
        width: 100vw;
        padding: 1rem 1rem 1rem 1rem;

        data {
            color: rgb(1, 110, 177);
            font-size: min(4rem, 4vw);
            padding: 1rem 0 1rem 0;
        }

        h2 {
            font-size: min(4.5rem, 4.5vw);
            border-bottom: 1px solid gray;
            font-weight: 300;
            padding: 1rem 0 1rem 0;
        }

        p {
            text-indent: 10px;
            text-align: justify;
            text-justify: inter-ideograph;
            line-height: 2;
            padding: 1rem 0 1rem 0;
            font-size: min(3.3rem, 3.3vw);
        }
    }

    .news_other_contents_box {
        width: 100vw;
        height: 40vh;
        background-color: rgb(237, 241, 248);
    }

    /* ********************************** */
    /* 事務所紹介用メインビジュアル領域 */
    /* ********************************** */
    .whoweare_page_base {
        height: 50vh;
      
        h1 {
            font-size: min(4.5rem, 4.5vw);
        }

        h2 {
            font-size: min(4rem, 4vw);
        }

        p {
            font-size: min(3rem, 3vw);
        }
    }

    .whoweare_page_text_contaier {
        position: absolute;
        top: 20vh;
        left: 10vw;
    }
}
/* ***************************** */
/* プライバシー */
/* ***************************** */
.privacy_contents_contaier {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    /* flex-wrap: wrap; */
}

.privacy_text {
    width: 60vw;

    data {
        color: rgb(12, 116, 212);
        padding: 1rem 0 1rem 0;
    }

    h2 {
        font-size: min(1.2rem, 1.2vw);
        border-bottom: 1px solid gray;
        padding: 1rem 0 1rem 0;
    }

    h3 {
        font-size: min(1.1rem, 1.1vw);
        padding: 1rem 0 0.5rem 0;
        font-weight: 300;
    }

    p {
        font-size: min(0.9rem, 0.9vw);
        padding: 0 0 1rem 0;
    }
}

/* ***************************** */
/* メディアクエリ */
/* ***************************** */
@media screen and (max-width:720px) {

    .privacy_contents_contaier {
        padding: 2rem;
    }

    .privacy_text {
        width: 90vw;

        data {
            font-size: 1rem;
        }

        h2 {
            font-size: min(3rem, 3vw);
        }

        h3 {
            font-size: min(3.5rem, 3.5vw);
        }

        p {
            font-size: min(2.5rem, 2.5vw);
            line-height: 2;
        }
    }
}