/*-------------- font  ----------------*/
@font-face {
    font-family: 'corpo';
    src: url('../fonts/Corporate-Logo-Bold-ver2.woff') format('woff');
  }

/*-------------- all  ----------------*/
body {
    font-family: "Yu Gothic UI", "Yu Gothic UI", "メイリオ", sans-serif;
    font-weight: 500;
    }

html {
    scroll-behavior: smooth;
    }

/*-------------- header area ----------------*/

.header{
    background-color: white;
    width: 100%;
    height: 8vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  @media screen and (max-width: 768px){

    .header{
        height: 15vw;
    }
  }
  
  .header__inner {
    padding: 1vw 1vw 0vw 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }

  @media screen and (max-width: 768px){

    .header__inner {
        padding: 1vw 0vw 0vw 4vw;
        align-items: flex-end;
    }
  }

  .header::before{
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1vw;
    top: 0;
    left: 0;
    background-color: #e47538;
  }

  .icon-navi{
    display: flex;
    align-items: center;
    margin-left: 4vw;
    gap: 0.3vw;
  }

  @media screen and (max-width: 768px){

    .icon-navi{
        width: 80%;
        justify-content: center;
        gap: 4vw;
        position: absolute;
        left: 10%;
        top: 55%;
        margin-left: 0;
    }

    .icon-navi .reserve-box .reserve .br-Pc{
        display: none;
    }

    .header::before{
        height: 2vw;
    }
  }
  
  
  /* ヘッダーのロゴ部分 */
  .header__title {
    width: 43%;
    margin-top: 0vw;
    margin-bottom: 3vw;
  }
  
  
  @media screen and (min-width: 768px){
    .header__title {
      width: 20%;
      margin-top: 0;
      margin-bottom: 0;
    }
  }
  
  .header__title img {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  /* ヘッダーのナビ部分 */
  
  .header__nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
  }

  .header__nav.active{
    left: -100vw;
  }
  
  
  @media screen and (min-width: 768px){
    .header__nav {
      position: static;
      transform: initial;
      background-color: inherit;
      height: inherit;
      display: flex;
      justify-content: end;
      width: 70%;
    }
  }

.icon-navi .reserve-box{
    height: 14vw;
    width: 40%;
    text-align: center;
    padding: 4.3vw 0;
    background-color: #393e46;
}

.icon-navi .reserve-box:hover{
    background-color: #5b616b;
}

.icon-navi .reserve-box .reserve{
    color: #fff;
}

.icon-navi .mail-box{
    height: 14vw;
    width: 40%;
    text-align: center;
    padding: 3.7vw 0;
    background-color: #393e46;
}

.icon-navi .mail-box:hover{
    background-color: #5b616b;
}

.icon-navi .mail-box img{
    width: 30%;
}
  
  @media screen and (min-width: 768px){
    .nav__items {
      width: 60%;
      display: flex;
      align-items: center;
      height: initial;
      justify-content: space-between;
    }

    .icon-navi .reserve-box{
        height: 4.5vw;
        width: 4.5vw;
        padding: 0.8vw 0;
        background-color: #393e46;
    }
    
    .icon-navi .reserve-box .reserve{
        color: #fff;
        font-size: 1.2vw;
        text-align: center;
        letter-spacing: 0.1vw;
    }

    .icon-navi .mail-box{
        height: 4.5vw;
        width: 4.5vw;
        padding: 1.2vw 0;
        text-align: center;
        background-color: #393e46;
    }

    .icon-navi .mail-box img{
        width: 62%;
    }
  }
  
  .nav-items {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  
  
  
  @media screen and (min-width: 768px){
    .nav-items {
      position: inherit;
      top: 0;
      left: 0;
      transform: translate(0, 0);
  
    }
  }
  
  /* ナビのリンク */
  .nav-items__item a {
    color: black;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
    color: black;
  }
  
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }
  
  @media screen and (min-width: 768px){
    .nav-items__item a {
      margin-bottom: 0;
      font-size: 1.2vw;
      position: relative;
    }

    .nav-items__item a:before{
        content: "";
        position: absolute;
        left: 0;
        bottom: -20%;
        width: 100%;
        height: 0.2vw;
        background: #f78500;
        transform: scale(0, 1);
        transition: 0.4s;
    }
    .nav-items__item a:hover:before {
        transform: scale(1);
    }
       
  }
  
  
  /* ハンバーガーメニュー */
  
  .header__hamburger {
    width: 13vw;
    height: 13vw;
    margin-top: 1vw;
  }
  
  .hamburger {
    background-color: #393e46;
    border-color: transparent;
    z-index: 9999;
  }
  
  @media screen and (min-width: 768px){
    .hamburger {
      display: none;
    }
  }
  
  /* ハンバーガーメニューの線 */
  .hamburger span {
    width: 70%;
    height: 1px;
    background-color: #fff;
    transition: all .4s;/*アニメーションの設定*/
    position: relative;
    transition: ease .4s;
    display: block;
    margin: 0 auto;
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    margin: 8px auto;
  }
  
  .hamburger span:nth-child(3) {
    top: 0;
  }

  /*activeクラスが付与されると線が回転して×に*/

  .hamburger.active span:nth-child(1) {
    top: 8px;
    left: 0%;
    transform: translateY(0) rotate(-45deg);
    width: 80%;
}

  .hamburger.active span:nth-child(2) {
	opacity: 0;/*真ん中の線は透過*/
}

  .hamburger.active span:nth-child(3) {
    top: -10px;
    left: 0%;
    transform: translateY(0) rotate(45deg);
    width: 80%;
}

/*-------------- MV ----------------*/

.top-content{
    position: relative;
    margin-top: 8vw;
}

.mv-content{
    background-image: url(../images/mv-backcolor.jpg);
    background-repeat: no-repeat; /* 背景画像を繰り返し表示しません。 */
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2vw;
}

.left-content{
    margin-left: 9vw;
    margin-bottom: 7vw;
}

.catchcopy-box{
    position: relative;
    margin-left: 10.2vw;
    text-align: center;
}

.catchcopy-box::before{
    content: "";
    display: block;
    top: -5%;
    right: 119%;
    width: 9vw;
    height: 19vw;
    position: absolute;
    background-image: url(../images/mv-wing-left.png);
    background-size: cover;
}

.catchcopy-box::after{
    content: "";
    display: block;
    top: -5%;
    left: 118%;
    width: 9vw;
    height: 19vw;
    position: absolute;
    background-image: url(../images/mv-wing-right.png);
    background-size: cover;
}


.catchcopy-box .subtitle{
    position: relative;
    font-size: 2.8vw;
    text-align: right;
    color: #fd7013;
    margin-bottom: 1vw;
    font-family: "corpo";
    z-index: 1;
}

.catchcopy-box .subtitle span{
    background-image: url(../images/moku-fukidashi.png);
    background-size: cover;
    position: absolute;
    padding: 2.8vw 0 1vw;
    font-size: 1.8vw;
    text-align: center;
    width: 15.5vw;
    height: 7.5vw;
    font-family: "corpo";
    right: 29vw;
    bottom: -1vw;
    transform: rotate(-3deg);
}

.catchcopy-box .subtitle .catchcopy-box-subimg{
    position: absolute;
    width: 85%;
    right: -1vw;
    top: -4.5vw;
}

.catchcopy-box h1{
    position: relative;
    font-family: "corpo";
    font-size: 7vw;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1vw;
    filter: drop-shadow(0.3vw 0.3vw 0px #928475);
}

.catchcopy-box h1::before{
    position: absolute;
    content: "当院は";
    font-size: 2.7vw;
    font-weight: 700;
    color: #9eb27d;
    white-space: nowrap;
    right: 99%;
    letter-spacing: 0;
    top: 80%;
}

.catchcopy-box h1::after{
    position: absolute;
    content: "です。";
    font-size: 2.7vw;
    font-weight: 700;
    color: #9eb27d;
    bottom: 4%;
    left: 103%;
    letter-spacing: 0;
    white-space: nowrap;
}

.catchcopy-box h1 .light-green1{
    font-size: 9vw;
    font-weight: 700;
    color: #abd77a;
}

.catchcopy-box h1 .moss-green1{
    font-size: 9vw;
    font-weight: 700;
    color: #9eb27d;
}

.catchcopy-box h1 .light-green2{
    font-weight: 700;
    color: #abd77a;
}

.catchcopy-box h1 .moss-green2{
    font-weight: 700;
    color: #9eb27d;
}

.strong-box{
    margin-top: 3vw;
    position: relative;
}

.strong-box ul{
    display: flex;
    gap: 1vw;
    position: absolute;
}

.strong-box ul li{
    background-color: #ff8847;
    border-radius: 50%;
    box-shadow: 4px 4px 0px 0 rgb(146, 132, 117);
    color: #fff;
    width: 13.5vw;
    height: 13.5vw;
    text-align: center;
    font-size: 1.4vw;
    padding: 2vw 0;
    line-height: 1.4;
    letter-spacing: 0.2vw;
}

.strong-box ul li .strong{
    font-size: 2.3vw;
    line-height: 1.3;
    letter-spacing: 0.2vw;
    padding: 0.5vw 0 0.4vw;
    display: inline-block;
}

.strong-box ul li .mini-strong{
    font-size: 3.3vw;
    letter-spacing: 0;
}

.strong-box ul li .middle-strong{
    font-size: 6vw;
    line-height: 0.8;
}

.strong-box ul li .big-strong{
    font-size: 8vw;
    line-height: 0.9;
    letter-spacing: 0;
}

.right-content{
    position: relative;
}

.right-content .mv-person{
    width: 28vw;
}

.right-content .fukidashi-rectangle1{
    position: absolute;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background-color: #fff;
    font-size: 1.6vw;
    font-weight: 600;
    color: #573b1c;
    letter-spacing: 0.2vw;
    box-shadow: 4px 4px 0px 0 rgb(146 132 117);
    padding: 1vw 0.5vw;
    transform: rotate(-8deg);
    top: 9%;
    right: 71%;
    font-family: 'M PLUS 1', サンセリフ;
}

.right-content .fukidashi-rectangle2{
    position: absolute;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background-color: #fff;
    font-size: 1.6vw;
    font-weight: 600;
    letter-spacing: 0.2vw;
    color: #573b1c;
    box-shadow: 4px 4px 0px 0 rgb(146, 132, 117);
    padding: 1vw 0.5vw;
    transform:rotate(-8deg);  
    top: 5%;
    right: 84%;
    font-family: 'M PLUS 1', サンセリフ;
}

.right-content .mv-person-name{
    position: absolute;
    top: 94%;
    right: 29%;
    width: 78%;
}

@media screen and (max-width: 768px){

    .top-content{
        margin-top: 15vw;
    }

    .mv-content{
        display: block;
        padding-top: 10vw;
    }

    .left-content{
        width: 78%;
        margin: 0 auto;
    }

    .catchcopy-box{
        margin: 0;
    }

    .catchcopy-box::before{
        top: -8%;
        right: 93%;
        width: 12vw;
        height: 26vw;
    }

    .catchcopy-box::after{
        top: -8%;
        left: 94%;
        width: 12vw;
        height: 26vw;
    }

    .catchcopy-box .subtitle span{
        padding: 4.1vw 0vw 1vw 1vw;
        font-size: 2.5vw;
        width: 21vw;
        height: 10vw;
        bottom: -1vw;
        left: 4vw;
    }

    .catchcopy-box .subtitle .catchcopy-box-subimg{
        width: 53%;
        right: 14vw;
        top: -5.5vw;
    }

    .catchcopy-box h1{
        font-size: 9.5vw;
        letter-spacing: -1.5vw;
    }

    .catchcopy-box h1 .light-green1{
        font-size: 12vw;
    }

    .catchcopy-box h1 .moss-green1{
        font-size: 12vw;
    }

    .catchcopy-box h1::before{
        font-size: 4vw;
        right: 80.5%;
        top: 77%;
    }

    .catchcopy-box h1::after{
        font-size: 4vw;
        top: 77%;
        bottom: 0%;
        left: 83%;
    }

    .strong-box{
        margin-top: 0;
    }

    .strong-box ul{
        flex-wrap: wrap;
        width: 60%;
        padding-top: 4vw;
        right: 42%;
    }

    .strong-box ul li{
        width: 22vw;
        height: 22vw;
        font-size: 2.4vw;
        padding: 3vw 0;
        box-shadow: 1px 1px 0px 0 rgb(146 132 117);
    }

    .strong-box ul li .strong{
        font-size: 4vw;
    }

    .strong-box ul li .mini-strong{
        font-size: 5vw;
    }

    .strong-box ul li .big-strong{
        font-size: 13vw;
    }

    .strong-box ul li .middle-strong{
        font-size: 10vw;
    }

    .right-content{
        text-align: right;
        margin-right: 3vw;
        padding-top: 0;
    }

    .right-content .mv-person{
        width: 35vw;
        bottom: 0;
        right: 4%;
    }

    .right-content .fukidashi-rectangle1{
        font-size: 2vw;
        box-shadow: 1px 1px 0px 0 rgb(146 132 117);
        top: 18%;
        right: 27%;
    }

    .right-content .fukidashi-rectangle2{
        font-size: 2vw;
        box-shadow: 1px 1px 0px 0 rgb(146 132 117);
        right: 31.5%;
        top: 14%;
    }

    .right-content .mv-person-name{
        top: 92%;
        right: 11%;
        width: 27%;
    }
}

/*-------------- 症状のお悩み ----------------*/

.worry-content{
    position: relative;
    z-index: -1;
    background-color: #f1d28e;
    padding: 12vw 16vw 4vw;
    text-align: center;
}

.worry-content:before {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    margin-left: -7vw;
    border: 7vw solid transparent;
    border-top: 4vw solid #f1d28e;
  }

.worry-box{
    background-color: #FFF;
    border-radius: 40px;
    box-shadow:  4px 4px 0px 0 rgb(146, 132, 117);
    padding: 4vw 5vw;
}

.worry-box h2 .worry-box-h2img{
    width: 70%;
}

.check-content{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 3vw;
}

.check-box ul li{
    display: flex;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 2vw;
}

.check-box ul li img{
    width: 2vw;
    height: 2vw;
    margin-top: 0.3vw;
}

.check-box ul li p{
    font-size: 1.8vw;
    margin-left: 2vw;
    line-height: 1.4;
}

.check-box ul li p span{
    color: #dd4e00;
}

.check-content .worry-img img{
    width: 19.5vw;
}

.worry-content .applicable{
    position: relative;
    padding-bottom: 1vw;
    margin: 2vw auto 0;
    font-weight: bold;
    letter-spacing: 0.1vw;
    font-size: 1.5vw;
    text-align: center;
}

.worry-content .applicable::before{
    position: absolute;
    top: 96%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
    border: 1.55vw solid;
    border-color: transparent;
    border-top-color: #fff;
    margin-left: -1.55vw;
}

.worry-content .applicable::after{
    position: absolute;
    top: 93%;
    left: 50%;
    content: "";
    z-index: 2;
    height: 0;
    width: 0;
    border: 1.3vw solid;
    border-color: transparent;
    border-top-color: #f1d28e;
    margin-left: -1.3vw;
}

.worry-content .applicable .border-bottom{
    position: absolute;
    border-bottom: 0.2vw solid #fff;
    bottom: 0;
    right: 28%;
    width: 44%;
}

.worry-content .applicable .worry-blue{
    font-size: 2.5vw;
    letter-spacing: 0.2vw;
    color: #4070b7;
}

.worry-content .applicable .worry-red{
    font-size: 2.5vw;
    letter-spacing: 0.2vw;
    color: #dd4e00;
}

.worry-content .advice{
    position: relative;
    margin-top: 2.4vw;
    font-size: 3vw;
    letter-spacing: 0.3vw;
    color: #fff;
}

.worry-content .advice::before{
    content: "";
    position: absolute;
    right: 77%;
    bottom:47%;
    display: block;
    width: 3.7vw;
    height: 4.7vw;
    background-image: url(../images/worry-accent-left.png);
    background-size: cover;
}

.worry-content .advice::after{
    content: "";
    position: absolute;
    right: 18%;
    bottom: 47%;
    display: block;
    width: 3.7vw;
    height: 4.7vw;
    background-image: url(../images/worry-accent-right.png);
    background-size: cover;
}

.worry-content .advice span{
    color: #f7ec41;
}

@media screen and (max-width: 768px){

    .worry-content{
        padding: 17vw 0vw 4vw;
    }

    .worry-content:before{
        border: 9vw solid transparent;
        border-top: 6vw solid #f1d28e;
    }

    .worry-box{
        border-radius: 4vw;
        box-shadow: 2px 2px 0px 0 rgb(146 132 117);
        padding: 5vw 0 6vw;
        width: 87%;
        margin: 0 auto;
    }

    .worry-box h2{
        font-size: 5vw;
    }

    .check-content{
        display: block;
        margin: 4vw auto 0;
        width: 84%;
    }

    .check-box ul li img{
        width: 4vw;
        height: 4vw;
        margin-top: 0.6vw;
    }

    .check-box ul li p{
        font-size: 3.5vw;
    }

    .check-box ul li p .br-Pc{
        display: none;
    }

    .check-content .worry-img img{
        width: 35%;
    }

    .worry-content .applicable{
        margin: 8vw auto 0;
        font-size: 3vw;
        width: 100%;
        border-bottom: 0;
    }

    .worry-content .applicable .border-bottom{
        border-bottom: 0.5vw solid #fff;
        right: 20%;
        width: 61vw;
    }

    .worry-content .applicable::before{
        top: 99%;
        border: 1.7vw solid;
        border-color: transparent;
        border-top-color: #fff;
    }

    .worry-content .applicable::after{
        top: 93%;
        border: 1.4vw solid;
        border-color: transparent;
        border-top-color: #f1d28e;
    }

    .worry-content .applicable .worry-blue{
        font-size: 5vw;
    }

    .worry-content .applicable .worry-red{
        font-size: 5vw;
    }

    .worry-content .advice{
        margin-top: 4vw;
        font-size: 5.7vw;
    }

    .worry-content .advice::before{
        right: 85%;
        bottom: 55%;
        width: 6vw;
        height: 7.7vw;
    }

    .worry-content .advice::after{
        right: 9%;
        bottom: 55%;
        width: 6vw;
        height: 7.7vw;
    }
}

/*-------------- 実績紹介 ----------------*/

.performance-content{
    margin-top: 8vw;
}

.performance-box{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-start;
}

.performance-left img{
    width: 30vw;
}

.performance-right{
    margin-top: 3vw;
    margin-left: 2vw;
}

.performance-right h2{
    position: relative;
    font-size: 3.5vw;
    letter-spacing: 0.3vw;
    line-height: 1.4;
}

.performance-right h2 .thousand{
    font-size: 4vw;
    letter-spacing: 0.5vw;
    display: inline-block;
    color: #cb2228;
    font-weight: 900;
    -webkit-text-stroke: 0.3vw;
}

.performance-right h2 .pf-font-top::before{
    content: '';
    position: absolute;
    left: 0%;
    top: 20%;
    width: 33.3vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #ffce8d;
    z-index: -1;
}

.performance-right h2 .pf-font-center::before{
    content: '';
    position: absolute;
    left: 0%;
    top: 58%;
    width: 33.3vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #ffce8d;
    z-index: -1;
}

.performance-right h2 .pf-font-bottom::before{
    content: '';
    position: absolute;
    left: 0%;
    top: 90%;
    width: 27.2vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #ffce8d;
    z-index: -1;
}

.performance-right p{
    font-size: 2vw;
    margin-top: 1.5vw;
}

.owner-comment{
    position: absolute;
    z-index: -1;
    background-color: #393e46;
    padding: 3vw 3vw 3vw 9vw;
    margin-top: 3.5vw;
    border-radius: 43px;
    width: 57vw;
    text-align: right;
    left: 34%;
}

.owner-comment .viewPc{
    width: 40vw;
}

.owner-comment .viewSp{
    display: none;
}

@media screen and (max-width: 768px){
    .performance-content{
        width: 78%;
        margin: 10vw auto 0;
    }

    .performance-box{
        flex-direction: column-reverse;
        align-items: normal;
    }

    .performance-left img{
        width: 60%;
    }

    .performance-right{
        text-align: left;
        margin: 0 auto;
    }

    .performance-right h2{
        font-size: 6vw;
        font-weight: 900;
        letter-spacing: 0.5vw;
        line-height: 1.3;
    }

    .performance-right h2 .thousand{
        font-size: 6.5vw;
        letter-spacing: 1.2vw;
        -webkit-text-stroke: 1.4px;
    }

    .performance-right h2 .pf-font-top::before{
        left: -1%;
        top: 21%;
        width: 59vw;
        height: 2.6vw;
    }

    .performance-right h2 .pf-font-center::before{
        left: -1%;
        top: 88%;
        width: 48vw;
        height: 2.6vw;
    }

    .performance-right h2 .pf-font-bottom::before{
        left: -1%;
        top: 56%;
        width: 65vw;
        height: 2.6vw;
    }

    .performance-right p{
        font-size: 3.5vw;
        margin-top: 3vw;
    }

    .owner-comment{
        margin-top: 0;
        border-radius: 2vw;
        width: 67%;
        height: 48%;
        left: 34%;
        top: 42%;
    }

    .owner-comment .viewPc{
        display: none;
    }

    .owner-comment .viewSp{
        display: block;
        width: 70%;
        margin-left: 11vw;
        margin-top: 5vw;
    }
}

/*-------------- 安心のフルサポート ----------------*/

.support-content{
    position: relative;
    background-image:  url(../images/support-bg.png);
    background-size: cover;
    margin-top: 8vw;
    padding-top: 9vw;
    padding-bottom: 6vw;
}

.support-content::after{
    content: "";
    position: absolute;
    top: 99%;
    left: 42%;
    border: 8vw solid transparent;
    border-top: 5vw solid #eeeeee;
}

.support-content .h2-subtitle{
    text-align: center;
    font-size: 1.8vw;
    letter-spacing: 0.09vw;
    color: #dd4e00;
}

.support-content .support-h2{
    text-align: center;
    font-size: 3vw;
    margin-top: 0.5vw;
    position: relative;
    letter-spacing: 0.2vw;
}

.support-content .support-h2::before{
    content: "";
    position: absolute;
    z-index: 990;
    width: 6vw;
    height: 0;
    top: 190%;
    left: 47%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

.support-menu{
    width: 92%;
    display: flex;
    margin: 9vw auto 8vw;
    gap: 1.5vw;
    flex-wrap: wrap;
    justify-content: center;
    counter-reset: number 0;
}

.menu-box{
    background-color: #fff;
    width: 30%;
    text-align: center;
    position: relative;
    border-radius: 24px;
    padding: 2vw;
    overflow: hidden;
}

.menu-box::before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9vw 9vw 0 0;
    border-color: #393e46 transparent transparent transparent;
}
.menu-box::after{
    position: absolute;
    counter-increment: number 1;
    content: "0"counter(number);
    display: block;
    font-size: 3vw;
    white-space: pre;
    color: #fff;
    right: 84%;
    top: 1%;
    text-align: center;
    z-index: 2;
    line-height: 1.2;
}

.menu-box .image-icon{
    width: 50%;
}

.menu-box h3{
    margin-top: 2vw;
    margin-bottom: 2vw;
    font-size: 1.8vw;
}

.menu-box ul li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.2vw;
}

.menu-box ul li img{
    width: 2.2vw;
}

.menu-box ul li p{
    font-size: 1.3vw;
    font-weight: 400;
    margin-left: 1vw;
    margin-top: 0.1vw;
    line-height: 1.5;
    text-align: left;
}

.menu-box .under-arrow{
    width: 4vw;
    margin: 1.5vw 0;
}

.menu-box p{
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.8;
}

@media screen and (max-width: 768px){

    .support-content{
        background-image:  url(../images/support-sp-bg-bottomnone.png);
        padding-top: 12vw;
        padding-bottom: 14vw;
    }

    .support-content::after{
        top: 100%;
        left: 35%;
        border: 15vw solid transparent;
        border-top: 8vw solid #eeeeee;
    }

    .support-content .h2-subtitle{
        font-size: 4vw;
    }

    .support-content .support-h2{
        font-size: 6vw;
        margin-top: 1vw;
    }

    .support-content .support-h2::before{
        width: 10vw;
        left: 45%;
        top: 170%;
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .support-menu{
        display: block;
        width: 75%;
        gap: 5vw 2vw;
        margin: 12vw auto 8vw;
    }

    .menu-box{
        width: 100%;
        border-radius: 12px;
        padding: 7vw 2vw 4vw;
        margin-bottom: 8vw;
    }

    .menu-box::before{
        border-width: 24vw 24vw 0 0;
    }

    .menu-box::after{
        font-size: 8vw;
        right: 84%;
        top: 3%;
    }

    .menu-box .image-icon{
        width: 45%;
    }

    .menu-box h3{
        margin-top: 5vw;
        margin-bottom: 5vw;
        font-size: 4.5vw;
        letter-spacing: 0;
    }

    .menu-box ul li{
        margin: 0 auto 0.2vw;
        width: 90%;
    }

    .menu-box ul li img{
        width: 4vw;
        margin-top: 0.8vw;
    }

    .menu-box ul li p{
        font-size: 3.5vw;
    }

    .menu-box .under-arrow{
        width: 8vw;
        margin: 2vw 0;
    }

    .menu-box p{
        font-size: 3.5vw;
        line-height: 1.6;
        width: 90%;
        margin: 0 auto;
    }
}

/*-------------- cta ----------------*/

.cta-content{
    text-align: center;
    width: 75%;
    border-radius: 24px;
    margin: 0 auto;
    background-color: #f1d28e;
    padding: 4vw 0 3vw;
    transition: 0.2s ease-in-out;
}

.cta-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.cta-content a .cta-h2{
    font-family: "corpo";
    font-size: 2.7vw;
    color: #fff;
    margin-bottom: 3vw;
    position: relative;
}

.cta-content a .cta-h2::before{
    content: "";
    display: block;
    bottom: -24%;
    left: 26.3%;
    width: 3vw;
    height: 5vw;
    background-size: cover;
    background-image: url(../images/cta-accent-left.png);
    position: absolute;
}

.cta-content a .cta-h2::after{
    content: "";
    display: block;
    bottom: -25%;
    right: 27%;
    background-size: cover;
    width: 3vw;
    height: 5vw;
    background-image: url(../images/cta-accent-right.png);
    position: absolute;
}

.information-box{
    display: flex;
    justify-content: center;
    gap: 1.5vw;
}

.information-box .tell-box img{
    width: 35vw;
}

.information-box .tell-box p{
    font-size: 1.4vw;
    color: #666666;
    text-align: right;
    margin-top: 0.5vw;
    letter-spacing: 0.2vw;
}

.information-box .btn-box{
    background-color: #f05805;
    padding: 2vw 5vw;
    border-radius: 18px;
    text-align: center;
}

.information-box .btn-box p{
    font-size: 2.4vw;
    letter-spacing: 0.4vw;
    color: #fff;
}

.cta-content .ex-text{
    margin-top: 2.8vw;
    font-size: 1.8vw;
    letter-spacing: 0.2vw;
}

@media screen and (max-width: 768px){
    .cta-content{
        width: 87%;
        padding: 5vw 0 7vw;
        border-radius: 4vw;
    }

    .cta-content a .cta-h2{
        font-size: 4.7vw;
    }

    .cta-content a .cta-h2::before{
        bottom: -13%;
        left: 14.3%;
        width: 5vw;
        height: 8vw;
    }

    .cta-content a .cta-h2::after{
        bottom: -13%;
        right: 15%;
        width: 5vw;
        height: 8vw;
    }

    .information-box{
        display: block;
    }

    .information-box .tell-box img{
        width: 71%;
    }

    .information-box .tell-box p{
        font-size: 2.8vw;
        text-align: center;
        margin-top: 1vw;
        letter-spacing: 0.2vw;
    }

    .information-box .btn-box{
        padding: 4vw 0vw;
        border-radius: 1.5vw;
        width: 60%;
        margin: 4vw auto;
    }

    .information-box .btn-box p{
        font-size: 4vw;
    }

    .cta-content .ex-text{
        margin-top: 0;
        font-size: 2.9vw;
    }
}

/*-------------- 症状別メニュー ----------------*/

.voice-content{
    margin-top: 10vw;
}

.voice-content .h2-subtitle{
    text-align: center;
    font-size: 1.8vw;
    letter-spacing: 0.09vw;
    color: #dd4e00;
}

.voice-content h2{
    text-align: center;
    font-size: 3vw;
    margin-top: 0.5vw;
    position: relative;
    letter-spacing: 0.2vw;
}

.voice-content h2::before{
    content: "";
    position: absolute;
    z-index: 990;
    width: 6vw;
    height: 0;
    top: 190%;
    left: 47%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

.voice-allbox{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 82%;
    gap: 16vw 2vw;
    margin: 19vw auto 6vw;
}

.voice-menu-box{
    width: 48%;
    position: relative;
    z-index: 0;
    background-color: #f6e5c5;
    border-radius: 20px;
    text-align: center;
    padding: 0 3.5vw;
}

.voice-menu-box .symptoms-img{
    width: 65%;
    position: absolute;
    bottom: 86%;
    left: 17%;
}

.voice-menu-box h3{
    position: relative;
    margin-top: 13vw;
    font-size: 2.5vw;
    color: #dd4e00;
}

.voice-menu-box h3 .font4::after{
    content: '';
    position: absolute;
    left: 29%;
    top: 58%;
    width: 13.2vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #fcf4e6;
    z-index: -1;
}

.voice-menu-box h3 .font9::after{
    content: '';
    position: absolute;
    left: 17%;
    top: 58%;
    width: 21.3vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #fcf4e6;
    z-index: -1;
}

.voice-menu-box h3 .font5::after{
    content: '';
    position: absolute;
    left: 28%;
    top: 58%;
    width: 14.2vw;
    height: 1.6vw;
    display: block;
    transform: skewX(-35deg);
    background: #fcf4e6;
    z-index: -1;
}

.voice-menu-box .symptoms{
    font-size: 1.2vw;
    margin-top: 3vw;
    line-height: 1.8;
    padding: 0 4vw;
    height: 15%;
    font-weight: 400;
}

.voice-menu-box .user-voice{
    display: flex;
    align-items: flex-start;
    margin-top: 4vw;
    margin-bottom: 10vw;
    gap: 3vw;
}

.voice-menu-box .user-voice img{
    width: 9vw;
}

.voice-menu-box .user-voice p{
    position: relative;
    font-size: 1.2vw;
    background-color: #fff;
    padding: 2.5vw;
    line-height: 1.8;
    border-radius: 40px;
    text-align: left;
    font-weight: 400;
}

.voice-menu-box .user-voice p::before{
    content: "";
    position: absolute;
    border: 1.2vw solid transparent;
    border-right: 1.7vw solid #fff;
    top: 12%;
    right: 99%;
}

.voice-menu-box .user-voice-link{
    position: absolute;
    background-color: #dd4e00;
    color: #fff;
    font-size: 1.5vw;
    letter-spacing: 0.2vw;
    padding: 1.8vw 4vw;
    border-radius: 30px;
    bottom: -3%;
    font-weight: 300;
    right: 18%;
    transition-duration: 0s;
}

.voice-menu-box .user-voice-link:hover{
    background-color: #f78a4f;
    transition-duration: 0.5s;
}

.main-symptoms{
    margin: 13vw auto 0;
    width: 79%;
    position: relative;
}

.main-symptoms h3{
    position: absolute;
    text-align: center;
    bottom: 78%;
    left: 26%;
    font-size: 2.2vw;
    width: 50%;
    margin: auto;
    padding: 2vw;
    color: #fff;
    background-color: #222831;
}

.main-symptoms h3::after{
    content: "";
    position: absolute;
    top: 99%;
    left: 47%;
    border: 1vw solid transparent;
    border-top: 1vw solid #222831;
}

.main-symptoms p{
    border: 6px solid #cacaca;
    font-size: 1.4vw;
    line-height: 1.8;
    border-radius: 35px;
    padding: 6vw 8vw 3vw;
    text-align: center;
    letter-spacing: 0.2vw;
    font-weight: 400;
}

.main-symptoms p .br-Sp{
    display: none;
}

@media screen and (max-width: 768px){

    .voice-content{
        margin-top: 14vw;
    }

    .voice-content .h2-subtitle{
        font-size: 4vw;
    }

    .voice-content h2{
        font-size: 6vw;
        margin-top: 1vw;
    }

    .voice-content h2::before{
        width: 10vw;
        left: 45%;
        top: 170%
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .voice-allbox{
        display: block;
        width: 87%;
        margin: 30vw auto 6vw;
    }

    .voice-menu-box{
        width: 100%;
        margin-top: 31vw;
    }

    .voice-menu-box .symptoms-img{
        top: -10%;
        width: 60%;
        bottom: 0;
        left: 21%;
    }

    .voice-menu-box h3{
        padding-top: 25vw;
        font-size: 4.5vw;
    }

    .voice-menu-box h3 .font4::after{
        left: 36%;
        top: 94%;
        width: 19.2vw;
        height: 2.5vw;
    }

    .voice-menu-box h3 .font9::after{
        left: 23%;
        top: 94%;
        width: 40vw;
        height: 2.5vw;
    }

    .voice-menu-box h3 .font5::after{
        left: 34%;
        top: 94%;
        width: 24vw;
        height: 2.5vw;
    }

    .voice-menu-box .symptoms{
        font-size: 3.5vw;
        margin-top: 5vw;
    }

    .voice-menu-box .user-voice{
        justify-content: center;
        gap: 4vw;
        padding-bottom: 11vw;
    }

    .voice-menu-box .user-voice img{
        width: 27%;
    }

    .voice-menu-box .user-voice p{
        width: 60%;
        font-size: 3.5vw;
        border-radius: 5vw;
        padding: 5vw;
    }

    .voice-menu-box .user-voice-link{
        width: 55%;
        font-size: 3.2vw;
        padding: 2.8vw 0;
        border-radius: 2vw;
        bottom: -2%;
        right: 21%;
    }

    .main-symptoms{
        margin: 19vw auto 0;
        width: 88%;
    }

    .main-symptoms h3{
        bottom: 80%;
        left: 14%;
        font-size: 4.5vw;
        width: 73%;
        padding: 3vw;
    }

    .main-symptoms h3::after{
        border: 2vw solid transparent;
        border-top: 2vw solid #222831;
    }

    .main-symptoms p{
        font-size: 3.2vw;
        line-height: 1.7;
        border-radius: 1vw;
        padding: 9vw 3vw 4vw;
        border: 2px solid #cacaca;
    }

    .main-symptoms p .br-Pc{
        display: none;
    }

    .main-symptoms p .br-Sp{
        display: block;
    }
}

/*-------------- 交通事故に遭ったら ----------------*/

.step-content{
    position: relative;
    background-image:  url(../images/step-bg.png);
    background-size: cover;
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding-top: 9vw;
    padding-bottom: 6vw;
}

.step-content .h2-subtitle{
    text-align: center;
    font-size: 1.8vw;
    letter-spacing: 0.09vw;
    color: #dd4e00;
}

.step-content h2{
    text-align: center;
    font-size: 3vw;
    margin-top: 0.5vw;
    position: relative;
    letter-spacing: 0.2vw;
}

.step-content h2::before{
    content: "";
    position: absolute;
    z-index: 990;
    width: 6vw;
    height: 0;
    top: 190%;
    left: 47%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

.step-box{
    position: relative;
    width: 75%;
    margin: 10vw auto 6vw;
}

.step-box::before{
    content: "";
    position: absolute;
    display: block;
    width: 0;
    top: 4%;
    right: 49.5%;
    height: 87%;
    border: 0.2vw solid #dd4e00;
}

.todo-step-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16vw;
    width: 100%;
}

.todo-box1 .number-top{
    position: absolute;
    border-radius: 50%;
    background-color: #dd4e00;
    color: #fff;
    top: 13%;
    right: -40%;
    width: 7vw;
    height: 7vw;
    font-size: 4vw;
    padding: 1vw;
}

.todo-box2 .number-bottom{
    position: absolute;
    border-radius: 50%;
    background-color: #dd4e00;
    color: #fff;
    top: 55%;
    left: -38%;
    width: 7vw;
    height: 7vw;
    font-size: 4vw;
    padding: 1vw;
}

.todo-box1{
    position: relative;
    background-color: #fff;
    text-align: center;
    width: 40%;
    margin-bottom: 9vw;
    padding: 12vw 4vw 4vw;
    border-radius: 20px;
    box-shadow: 7px 7px 0 0 #e4e4e4;
}

.todo-box1::before {
    content: "";
    position: absolute;
    border: 3vw solid transparent;
    border-left: 3vw solid #fff;
    top: 14%;
    left: 99%;
    filter: drop-shadow(6px 6px 0px #e4e4e4);
}

.todo-box2{
    position: relative;
    background-color: #fff;
    text-align: center;
    width: 40%;
    margin-top: 8vw;
    padding: 12vw 4vw 4vw;
    border-radius: 20px;
    box-shadow: 7px 7px 0 0 #e4e4e4;
}

.todo-box2::before {
    content: "";
    position: absolute;
    border: 3vw solid transparent;
    border-right: 3vw solid #fff;
    top: 57%;
    right: 99%;
}

.todo-box1 img{
    position: absolute;
    bottom: 63%;
    right: 13%;
    width: 74%;
}

.todo-box2 img{
    position: absolute;
    bottom: 63%;
    right: 13%;
    width: 74%;
}

.todo-box1 h3{
    font-size: 1.8vw;
    line-height: 1.4;
    color: #dd4e00;
    margin: 1.8vw 0;
    letter-spacing: 0.1vw;
}

.todo-box2 h3{
    font-size: 1.8vw;
    line-height: 1.4;
    color: #dd4e00;
    margin: 1.8vw 0;
    letter-spacing: 0.1vw;
}

.todo-box1 p{
    font-size: 1vw;
    line-height: 1.4;
    letter-spacing: 0.1vw;
}

.todo-box2 p{
    font-size: 1vw;
    line-height: 1.4;
    letter-spacing: 0.1vw;
}

@media screen and (max-width: 768px){
    .step-content{
        background-image: url(../images/support-sp-bg.png);
        margin-top: 9vw;
        height: 710vw;
        padding-top: 13vw;
        margin-bottom: 6vw;
        padding-bottom: 25vw;
    }

    .step-content .h2-subtitle{
        font-size: 4vw;
    }

    .step-content h2{
        font-size: 6vw;
        margin-top: 1vw;
    }

    .step-content h2::before{
        width: 10vw;
        left: 45%;
        top: 170%;
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .step-box{
        width: 100%;
        margin: 27vw 0 6vw;
    }

    .step-box::before{
        top: 3%;
        right: 85.2%;
        height: 543vw;
        border: 1.5px solid #dd4e00;
    }

    .todo-step-content{
        display: block;
    }

    .todo-box1{
        width: 65%;
        margin-bottom: 22vw;
        margin-left: 26vw;
        padding: 13vw 7vw 8vw;
        border-radius: 2vw;
        box-shadow: 2px 2px 0 0 #e4e4e4;
    }

    .todo-box1::before{
        border: 3vw solid transparent;
        border-right: 4vw solid #fff;
        top: 18%;
        left: auto;
        right: 100%;
        filter: drop-shadow(-1px 1px 0px #e4e4e4);
    }

    .todo-box1 .number-top{
        top: 15%;
        right: 110%;
        width: 10vw;
        height: 10vw;
        font-size: 6.5vw;
        padding: 1vw 1vw 1vw;
        font-weight: 400;
    }

    .todo-box1 img{
        bottom: 85%;
        right: 22%;
        width: 55%;
    }

    .todo-box1 h3{
        font-size: 4.5vw;
        margin: 4vw 0;
    }

    .todo-box1 p{
        font-size: 3.5vw;
        line-height: 1.5;
        letter-spacing: 0.5vw;
    }

    .todo-box2{
        width: 65%;
        margin-bottom: 22vw;
        margin-left: 26vw;
        padding: 13vw 7vw 8vw;
        border-radius: 2vw;
        box-shadow: 2px 2px 0 0 #e4e4e4;
    }

    .todo-box2::before{
        right: 100%;
        filter: drop-shadow(-1px 1px 0px #e4e4e4);
        border-right: 4vw solid #fff;
        top: 18%;
    }

    .todo-box2 .number-bottom{
        top: 15%;
        left: auto;
        right: 110%;
        width: 10vw;
        height: 10vw;
        font-size: 6.5vw;
        padding: 1vw 1vw 1vw;
        font-weight: 400;
    }

    .todo-box2 img{
        bottom: 86%;
        right: 22%;
        width: 55%;
    }

    .todo-box2 h3{
        font-size: 4.5vw;
        margin: 4vw 0;
    }

    .todo-box2 p{
        font-size: 3.5vw;
        line-height: 1.5;
        letter-spacing: 0.5vw;
    }
}

/*-------------- 交通事故専門顧問弁護士 ----------------*/

.specialist-content{
    position: relative;
    margin: 12vw auto 2vw;
    width: 85%;
}

.specialist-content h3{
    position: absolute;
    width: 60%;
    right: 20%;
    bottom: 84%;
    padding: 2.5vw 3vw;
    text-align: center;
    font-size: 2vw;
    line-height: 1.8;
    color: white;
    border-radius: 20px;
    background-color: #222831;
}

.specialist-content h3::after{
    content: "";
    position: absolute;
    top: 99%;
    left: 45%;
    border: 3vw solid transparent;
    border-top: 3vw solid #222831;
}

.specialist-support{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 9vw 3vw 5vw;
    border: 3px solid #222831;
    border-radius: 35px;
}

.specialist-support img{
    width: 25vw;
}

.specialist-support .detail-box{
    text-align: left;
    width: 54%;
}

.specialist-support .detail-box .h4-sub{
    font-size: 1.1vw;
    margin-bottom: 0.7vw;
}

.specialist-support .detail-box h4{
    position: relative;
    font-size: 2.1vw;
    margin-bottom: 2.4vw;
}

.specialist-support .detail-box h4::after{
    content: "";
    position: absolute;
    display: block;
    width: 40.2vw;
    height: 0;
    top: 128%;
    left: 0%;
    border: 1px solid #f78500;
}

.specialist-support .detail-box .detail{
    font-size: 1.2vw;
    line-height: 1.8;
}

@media screen and (max-width: 768px){
    .specialist-content{
        width: 92%;
        margin: 17vw auto 2vw;
    }

    .specialist-content h3{
        width: 80%;
        right: 10%;  
        bottom: 92%;
        padding: 3.5vw 2vw;
        font-size: 3.5vw;
        border-radius: 1vw;
    }

    .specialist-content h3::after{
        left: 44%;
        border: 5vw solid transparent;
        border-top: 5vw solid #222831;
    }

    .specialist-support{
        display: block;
        padding: 9vw 3vw 8vw;
        border: 2px solid #222831;
        border-radius: 3vw;
        text-align: center;
    }

    .specialist-support img{
        width: 55%;
        margin-top: 7vw;
    }

    .specialist-support .detail-box{
        width: 100%;
        margin: 3vw auto 0;
    }

    .specialist-support .detail-box .h4-sub{
        font-size: 3.5vw;
        margin-bottom: 1vw;
        font-weight: 400;
    }

    .specialist-support .detail-box h4{
        margin-bottom: 6vw;
        font-size: 4vw;
    }

    .specialist-support .detail-box h4::after{
        width: 96%;
        border: 1.5px solid #f78500;
    }

    .specialist-support .detail-box .detail{
        font-size: 3.5vw;
        font-weight: 400;
    }


}

/*-------------- お問い合わせフォーム ----------------*/

.contact-content{
    margin-top: 8vw;
}

.contact-content .h2-subtitle{
    text-align: center;
    font-size: 1.6vw;
    color: #dd4e00;
}

.contact-content h2{
    text-align: center;
    font-size: 3vw;
    margin-top: 1vw;
    position: relative;
}

.contact-content h2::before{
    content: "";
    position: absolute;
    z-index: 990;
    width: 6vw;
    height: 0;
    top: 150%;
    left: 47%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

/*-------------- footer ----------------*/

.footer-content{
    position: relative;
    margin-top: 23vw;
    height: 70vw;
}

.top-footer-content{
    position: absolute;
    width: 100%;
    bottom: 52%;
    background-image: url(../images/footer-top-bg.png);
    background-size: cover;
    height: 48vw;
    padding-top: 9vw;
    z-index: 0;
}

.top-footer-content h2{
    text-align: center;
    font-size: 3vw;
    position: relative;
    letter-spacing: 0.2vw;
}

.top-footer-content h2::before{
    content: "";
    position: absolute;
    z-index: 999;
    width: 6vw;
    height: 0;
    top: 120%;
    left: 47%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

.relation{
    margin: 1vw auto 4vw;
    display: flex;
    width: 80%;
    justify-content: center;
    align-items: flex-end;
    gap: 4vw;
}

.relation .relation-link a{
    position:relative;
    top:0;
    outline: none;
    /*アニメーションの設定*/
    transition: all .3s;
}

.relation .relation-link a:hover{
    top:-5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.relation .relation-link img{
    width: 37vw;
}

.relation .relation-link .link-h3{
    position: relative;
    text-align: center;
    font-size: 2vw;
    line-height: 1.3;
    margin-bottom: 5vw;
    letter-spacing: 0.1vw;
    height: 7vw;
}

.relation .relation-link .link-h3 .bottom-link{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.relation .relation-link .link-h3::before{
    content: "";
    position: absolute;
    z-index: 999;
    width: 6vw;
    height: 0;
    top: 128%;
    left: 42%;
    border-radius: 50px;
    display: block;
    border: 0.2vw solid #f78500;
}

.bottom-footer-content{
    position: absolute;
    bottom: 0;
    width: 100%;
    background-image: url(../images/footer-bottom-bg.png);
    background-size: cover;
    z-index: 1;
    padding-top: 12vw;
}

.footer-box{
    width: 75%;
    margin: 0 auto;
}

.footer-box .footer-logo{
    width: 32%;
}

.footer-inner-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-footer{
    background-image : linear-gradient(to right, #fff 2px, transparent 2px),linear-gradient(to bottom, #fff 2px, transparent 2px),linear-gradient(to left, #fff 2px, transparent 2px),linear-gradient(to top, #fff 2px, transparent 2px);
    background-size: 0 0,2px 17px,0 0,0 0;
    background-repeat: repeat-x,repeat-y,repeat-x,repeat-y;
    background-position:left top,right top,right bottom,left bottom;
}

.left-footer p{
    font-size: 1.2vw;
    color: #fff;
    line-height: 1.5;
    margin-right: 6vw;
    padding: 0.4vw 0 1vw;
    letter-spacing: 0.1vw;
}

.right-footer .cta-h3{
    font-family: "corpo";
    font-size: 2vw;
    color: #fff;
    text-align: center;
    margin-bottom: 3vw;
    position: relative;
}

.right-footer .cta-h3::before{
    content: "";
    display: block;
    bottom: -10%;
    left: 20.5%;
    width: 2vw;
    height: 3vw;
    background-size: cover;
    background-image: url(../images/cta-accent-left.png);
    position: absolute;
}

.right-footer .cta-h3::after{
    content: "";
    display: block;
    bottom: -10%;
    right: 23%;
    background-size: cover;
    width: 2vw;
    height: 3vw;
    background-image: url(../images/cta-accent-right.png);
    position: absolute;
}

.right-footer .information-box{
    display: flex;
    justify-content: center;
    gap: 1.5vw;
}

.right-footer .information-box .tell-box img{
    width: 25vw;
}

.right-footer .information-box .tell-box p{
    font-size: 1vw;
    color: #fff;
    text-align: right;
    margin-top: 0.5vw;
    letter-spacing: 0.1vw;
}

.right-footer .information-box .btn-box{
    background-color: #f05805;
    border: 2px solid #f05805;
    padding: 1.6vw 2vw;
    border-radius: 0.5vw;
    text-align: center;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 0;
}

.right-footer .information-box .btn-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #393e46;
    border: 2px solid #f05805;
    border-radius: 0.5vw;
    transition: .3s;
    left:0;
}
.right-footer .information-box .btn-box:hover {
    color: #FFF;
}
.right-footer .information-box .btn-box:hover:before {
    width: 100%;
    z-index: -1;
}

.right-footer .information-box .btn-box p{
    font-size: 1.8vw;
    letter-spacing: 0.2vw;
    color: #fff;
}

.right-footer .ex-text{
    text-align: center;
    margin-top: 1.5vw;
    font-size: 1.4vw;
    color: #fff;
    letter-spacing: 0.2vw;
}

.bottom-footer-content ul{
    display: flex;
    justify-content: center;
    gap: 1vw;
    margin-top: 4vw;
}

.bottom-footer-content ul li{
    font-size: 1.2vw;
    color: #fff;
    font-weight: 400;
}

.bottom-footer-content ul li a{
    position: relative;
}

.bottom-footer-content ul li a:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -20%;
    width: 100%;
    height: 0.2vw;
    background: #f78500;
    transform: scale(0, 1);
    transition: 0.4s;
}

.bottom-footer-content ul li a:hover:before {
    transform: scale(1);
}

.bottom-footer-content .copyright{
    font-size: 1.5vw;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1vw;
    margin: 3.5vw 0 2vw;
    font-weight: 400;
}

@media screen and (max-width: 768px){

    .footer-content{
        height: 140vw;
        margin-top: 100vw;
    }

    .top-footer-content{
        background-image: url(../images/support-sp-bg.png);
        height: 154vw;
        padding-top: 13vw;
    }

    .top-footer-content h2{
        font-size: 4.5vw;
    }

    .top-footer-content h2::before{
        width: 10vw;
        left: 45%;
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .relation{
        display: block;
        text-align: center;
        margin: 9vw auto 4vw;
    }

    .relation .relation-link img{
        width: 80%;
    }

    .relation .relation-link{
        margin-top: 9vw;
    }

    .relation .relation-link .link-h3{
        font-size: 4.5vw;
        margin-bottom: 9vw;
    }

    .relation .relation-link .link-h3::before{
        width: 10vw;
        height: 0;
        top: 145%;
        left: 44%;
        border: 0.3vw solid #f78500;
    }

    .bottom-footer-content{
        background-image: url(../images/footerbottom-sp-bg.png);
    }

    .footer-box{
        width: 85%;
        position: relative;
    }

    .footer-box .footer-logo{
        width: 50%;
        top: 4%;
        position: absolute;
    }

    .footer-inner-box{
        display: block;
    }

    .left-footer{
        position: relative;
        background-image: none;
    }

    .left-footer::before{
        content: "";
        display: block;
        width: 1vw;
        height: 27vw;
        right: 47%;
        position: absolute;
        background-image: linear-gradient(to right, #fff 1px, transparent 1px),linear-gradient(to bottom, #fff 1px, transparent 1px),linear-gradient(to left, #fff 1px, transparent 1px),linear-gradient(to top, #fff 1px, transparent 1px);
        background-size: 0 0,1px 7px,0 0,0 0;
        background-repeat: repeat-x,repeat-y,repeat-x,repeat-y;
        background-position: left top,right top,right bottom,left bottom;
    }

    .left-footer p{
        font-size: 2vw;
        line-height: 1.8;
        margin-left: 48vw;
        letter-spacing: 0.3vw;
        margin-right: 0;
    }

    .right-footer{
        width: 80%;
        margin: 7vw auto 0;
    }

    .right-footer .cta-h3{
        font-size: 4.5vw;
        letter-spacing: 0.7vw;
    }

    .right-footer .cta-h3::before{
        bottom: -20%;
        left: 3.5%;
        width: 4vw;
        height: 7vw;
    }

    .right-footer .cta-h3::after{
        bottom: -20%;
        right: 5%;
        width: 4vw;
        height: 7vw;
    }

    .right-footer .information-box{
        align-items: center;
    }

    .right-footer .information-box .tell-box{
        width: 57%;
    }

    .right-footer .information-box .tell-box img{
        width: 100%;
    }

    .right-footer .information-box .tell-box p{
        font-size: 1.6vw;
        margin-top: 1vw;
    }

    .right-footer .information-box .btn-box{
        width: 38%;
        padding: 3.5vw 0vw;
        border-radius: 0.8vw;
        margin: 0 auto;
    }

    .right-footer .ex-text{
        font-size: 2.3vw;
    }

    .bottom-footer-content ul{
        width: 80%;
        margin: 9vw auto 0;
        flex-wrap: wrap;
        gap: 2.5vw 2vw;
    }

    .bottom-footer-content ul li{
        font-size: 3vw;
    }

    .bottom-footer-content .copyright{
        margin: 9vw 0 2vw;
        font-size: 2.5vw;
    }
}

/*-------------- お問い合わせ ----------------*/

.mw-form{
    margin: 8vw auto 0;
    width: 60%;
}

.mw-form dl{
    margin: 3vw;
}

.mw-form dl dt{
    margin-bottom: 1.5vw;
    font-size: 1.2vw;
}
.mw-form dl dt .title{
    padding: 0.2vw 1vw;
}

.mw-form dl dt .required{
    background-color: #fd7013;
    color: #fff;
    padding: 0.2vw 1vw;
    margin-right: 0.5vw;
    font-weight: 400;
}

.mw-form dl .radio-content{
    margin-top: 2vw;
    font-size: 1.5vw;
}

.mw-form dl dd .f2{
    border: 1px solid #000;
    border-radius: 0.5vw;
    height: 3vw;
    width: 100%;
    padding: 0 1vw;
    font-size: 1.1vw;
}

.mw-form dl dd .f3{
    border: 1px solid #000;
    border-radius: 0.8vw;
    width: 100%;
    height: 12vw;
    padding: 1vw;
    font-size: 1.1vw;
}

/* ラジオボタンを隠す */
.mw-form dl dd input[type=radio].f1{
    display: none;
  }
  
  .mw-form dl dd label {
    display: inline-block;
  }
  
  /* spanの左側にボタンを配置するスペースを作る */
  .mw-form dl dd .f1 + span {
    margin-right: 2vw;
    padding-left: 2.5vw;
    font-size: 1.5vw;
    display: inline-block;
    position: relative;
  }
  
  /* 各パーツを作成 */
  .mw-form dl dd .f1 + span::after,
  .mw-form dl dd .f1 + span::before {
    content: '';
    display: block;
    position: absolute;
    border: 1px solid #AAAAAA;
    border-radius: 50%;
    width: 2vw;
    height: 2vw;
    top: 0;
    left: 0;
  }
  
  /* after上書き */
  .mw-form dl dd .f1 + span::after{
    opacity: 0;
    width: 1.5vw;
    height: 1.5vw;
    top: 15%;
    left: 2%;
    border: none;
    background: #f18800;
  }
  
  /*
    checked状態
    文字のcolorとボタンのopacityを変更
  */
  .mw-form dl dd .f1:checked + span {
    color: #f18800;
    font-size: 1.5vw;
  }
  
  .mw-form dl dd .f1:checked + span::after {
    opacity: 1;
  }

.mwform-tel-field input[type="text"], .mwform-zip-field input[type="text"]{
    display: inline-block;
    height: 2.3vw;
    width: 10% !important;
    border-radius: 0.3vw;
    border: 1px solid;
    font-size: 1.1vw;
}

.mw-form .attention{
    width: 90%;
    margin: 0 auto 1vw;
    font-size: 1vw;
    line-height: 1.3;
    letter-spacing: 0.1vw;
}

.mw-form .attention .attention-title{
    font-size: 1.3vw;
}

.confirm-btn-box{
    text-align: center;
    display: flex;
}

.confirm-btn-box .confirm-btn{
    margin: 4vw auto 0;
    width: 40%;
    height: 5vw;
    padding: 1vw;
    text-align: center;
    background-color: #222831;
    border-radius: 0.5vw;
    font-size: 2vw;
    letter-spacing: 0.1vw;
    color: #fff;
    transition-duration: 0s;
}

.confirm-btn-box .confirm-btn:hover{
    background-color: #434c5b;
    transition-duration: 0.5s;
}

.mw_wp_form .error{
    font-size: 1.4vw;
}

@media screen and (max-width: 768px){

    .contact-content{
        margin-top: 10vw;
    }

    .mw-form{
        width: 85%;
        margin: 12vw auto 0;
    }

    .contact-content .h2-subtitle{
        font-size: 4vw;
    }

    .contact-content h2{
        font-size: 6vw;
        margin-top: 1vw;
    }

    .contact-content h2::before{
        width: 10vw;
        left: 45%;
        top: 170%;
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .mw-form dl{
        margin: 5vw 0;
    }

    .mw-form dl dt{
        margin-bottom: 3vw;
    }

    .mw-form dl dt .required{
        padding: 0.7vw 2vw;
        font-size: 3.5vw;
    }

    .mw-form dl dt .title{
        font-size: 3.5vw;
    }

    .mw-form dl dd .f2{
        height: 7vw;
        font-size: 3vw;
    }

    .mw-form dl dd .f3{
        height: 25vw;
        font-size: 3vw;
    }

    .mwform-tel-field input[type="text"], .mwform-zip-field input[type="text"]{
        height: 7vw;
        width: 23% !important;
        font-size: 3vw;
    }

    .mw-form dl dd .f1 + span{
        margin-right: 0vw;
        padding-left: 4vw;
        font-size: 3.1vw;
    }

    .mw-form dl dd .f1:checked + span{
        font-size: 3.1vw;
    }

    .mw-form dl dd .f1 + span::after, .mw-form dl dd .f1 + span::before{
        width: 13px;
        height: 13px;
    }

    .mw-form dl dd .f1 + span::after{
        top: 2px;
        left: 2px;
        width: 9px;
        height: 9px;
    }

    .mw-form .attention{
        margin: 0 auto 3vw;
        font-size: 3vw;
        line-height: 1.5;
    }

    .mw-form .attention .attention-title{
        font-size: 3.5vw;
    }

    .confirm-btn-box .confirm-btn{
        width: 78%;
        height: 8vw;
        padding: 2vw 0;
        font-size: 3vw;
    }

    .mw_wp_form .error{
        font-size: 50%;
    }

    .mw-form dl .radio-content{
        font-size: 3.5vw;
    }
}

/*-------------- お問い合わせ（確認画面） ----------------*/

.confirm-content{
    width: 70%;
    margin: 15vw auto 0;
}

.confirm-content .h2-subtitle{
    text-align: center;
    font-size: 1.6vw;
    color: #dd4e00;
}

.confirm-content h2{
    text-align: center;
    font-size: 3vw;
    margin-top: 1vw;
    position: relative;
}

.confirm-content h2::before{
    content: "";
    position: absolute;
    z-index: 990;
    width: 6vw;
    height: 0;
    top: 150%;
    left: 45.5%;
    border-radius: 50px;
    display: block;
    border: 3px solid #f78500;
}

.confirm-btn-box .complete-btn{
    margin: 4vw auto 0;
    width: 40%;
    height: 5vw;
    padding: 1vw;
    text-align: center;
    background-color: #222831;
    border-radius: 0.5vw;
    font-size: 2vw;
    letter-spacing: 0.1vw;
    color: #fff;
    transition-duration: 0s;
}

.confirm-btn-box .complete-btn:hover{
    background-color: #434c5b;
    transition-duration: 0.5s;
}

@media screen and (max-width: 768px){

    .confirm-content{
        width: 80%;
        margin: 23vw auto 0;
    }

    .confirm-content .h2-subtitle{
        font-size: 2.8vw;
    }

    .confirm-content h2{
        font-size: 4.5vw;
        margin-top: 1vw;
    }

    .confirm-content h2::before{
        width: 10vw;
        left: 45%;
        border-radius: 35px;
        border: 1.3px solid #f78500;
    }

    .confirm-btn-box{
        gap: 2vw;
    }

    .mw-form dl dd{
        font-size: 3vw;
    }
}

/*-------------- お問い合わせ（完了画面） ----------------*/

.complete-content{
    margin: 15vw auto 0;
    width: 65%;
    text-align: center;
}

.complete-h1-box{
    border: 0.3vw solid #f78500;
    padding: 2vw 0;
    border-radius: 1vw;
}

.complete-h1-box h1{
    font-size: 3vw;
    letter-spacing: 0.2vw;
}

.complete-content .complete-p-box{
    margin-top: 4vw;
    font-size: 1.5vw;
    font-weight: 400;
}

.return-btn-box{
    text-align: center;
    padding: 1vw 0;
    width: 25%;
    margin: 4vw auto 0;
    background-color: #393e46;
    border-radius: 0.5vw;
    transition-duration: 0s;
}

.return-btn-box:hover{
    background-color: #434c5b;
    transition-duration: 0.5s;
}

.return-btn-box p{
    font-size: 2vw;
    color: #fff;
}

@media screen and (max-width: 768px){

    .complete-content{
        margin: 30vw auto 0;
        width: 75%;
    }

    .complete-h1-box{
        border: 0.4vw solid #f78500;
        padding: 3vw 0;
    }

    .complete-h1-box h1{
        font-size: 4vw;
    }

    .complete-content .complete-p-box{
        font-size: 3vw;
        width: 78%;
        margin: 4vw auto 0;
    }

    .return-btn-box{
        padding: 2vw 0;
        width: 30%;
        margin: 6vw auto 0;
        margin: 6vw auto 60vw;
    }

    .return-btn-box p{
        font-size: 3vw;
    }
}