@charset "UTF-8";

@charset "UTF-8";

html {
    background: #fff;
}

body {
    font-size: 15px;
    color: #000;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Verdana, "Osaka", "ＭＳ Ｐゴシック", sans-serif;
    position: relative;
}

.mn {
    font-family: "Noto Serif JP", serif;
}

.cn-w {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 0 2%;
}

.text-nowrap {
    display: inline-block;
}

/*===== header =====*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

header .hd-box {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 9px 2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

header .hd-box h1 {
    width: 69%;
    line-height: 1.4;
    font-size: 13px;
    color: #544543;
}

header .hd-box .logo {
    width: 27%;
}

header .hd-box .hd-link {
    display: none;
}

/*---- #g-nav ----*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -10;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #e7390d;
    /*動き*/
    transition: all 0.3s;
    display: none;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 10;
    display: block;
    margin-top: 65px;
    width: 300px;
    left: auto;
    right: 0;
}

/*ナビゲーション*/
#g-nav ul.sp-nav {
    display: none;
    margin-top: 70px;
}

#g-nav.panelactive ul.sp-nav {
    display: block;
}

/*リストのレイアウト設定*/
#g-nav ul.sp-nav li {
    list-style: none;
    text-align: center;
}

#g-nav ul.sp-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0;
    right: 0;
    cursor: pointer;
    width: 65px;
    height: 65px;
    background-color: #000;
}

.openbtn.active {
    background-color: #000000;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    background-color: #ffffff;
    width: 33px;
}

.openbtn span:nth-of-type(1) {
    top: 19px;
}

.openbtn span:nth-of-type(2) {
    top: 31px;
    width: 22px;
    margin: 0 16px 0 auto;
}

.openbtn span:nth-of-type(3) {
    top: 43px;
}

.openbtn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
    top: 26px;
    width: 44%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
    top: 38px;
    width: 45%;
}

/*==プルダウンメニューの設定==*/
#g-nav-list {
    margin-top: 40px;
    margin-bottom: 25px;
}

/*ナビゲーションを横並びに*/
#g-nav-list ul {
    text-align: left;
    margin: 0 7%;
    line-height: 1.4;
}

#g-nav-list li.has-child ul {
    border-bottom: none;
    position: relative;
    margin: 0;
    margin-bottom: 10px;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
}

/*2階層目以降は横並びにしない*/
#g-nav-list ul ul {
    display: block;
}

/*ナビゲーションのリンク設定*/
#g-nav-list ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 13px 15px 13px 10px;
    transition: all 0.3s;
    background: url(../img/icon02.png) no-repeat center right;
    background-size: 8px;
    border-bottom: 1px solid #fff;
}

#g-nav-list ul li a.icon-plus {
    background: url(../img/common/icon09.jpg) no-repeat center right;
    background-size: 17px;
}

#g-nav-list ul li a .icon {
    background: url(../img/common/icon01b.png) no-repeat right center;
    background-size: 17px;
    padding-right: 25px;
}

#g-nav-list li.has-child ul.sp-sub-nav li {
    width: 100%;
    margin-bottom: 0;
    margin-left: 8%;
}

#g-nav-list li.has-child ul.sp-sub-nav li a {
    padding: 10px 35px 10px 15px;
    border: none;
    font-weight: normal;
    background: url(../img/common/icon08.png) no-repeat left center;
}

/*hoverしたら表示*/
#g-nav-list li.has-child:hover>ul,
#g-nav-list li.has-child ul li:hover>ul,
#g-nav-list li.has-child:active>ul,
#g-nav-list li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

/*===== #mv =====*/
/*===== #global-nav =====*/
#global-nav {
    background-color: #e7390d;
}

#global-nav ul {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 5px 2%;
}

#global-nav ul li {
    width: 16.6666666667%;
    display: table-cell;
    border-right: 1px solid #fff;
    text-align: center;
    vertical-align: middle;
}

#global-nav ul li.first {
    border-left: 1px solid #fff;
}

#global-nav ul li a {
    display: flex;
    width: 100%;
    min-height: 50px;
    flex-direction: column;
    justify-content: center;
    padding: 0 3%;
    text-decoration: none;
}

#global-nav ul li a span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}

/*===== footer =====*/
footer {
    background-color: #e6e5e3;
}

footer .copy {
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    padding: 15px 0;
}

/*==================
    main
==================*/
/*===== 共通 =====*/
.line-box {
    background-color: #fff;
}

.line-box .txt {
    background-color: #62c303;
}

.line-box .txt p {
    text-align: center;
    line-height: 1.4;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 10px 0;
}

.line-box .tel {
    width: 100%;
    max-width: 700px;
    margin: 15px auto 0;
}

.line-box .link-box {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-box .link-box p {
    width: 50%;
    line-height: 1.4;
    color: #62c303;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.line-box .link-box .link {
    width: 50%;
}

.line-box .link-box .link a {
    display: block;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #62c303;
    background-color: #fff;
    color: #62c303;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    padding: 5px 15px;
}

.line-box .link-box .link a:hover {
    background-color: #edfddd;
}

.line-box .link-box .link a span {
    display: block;
    background: url(../img/icon01.png) no-repeat center right;
    background-size: 12px;
}

/*===== #what =====*/
#what h2 {
    line-height: 1.4;
    text-align: center;
    padding: 18px 2%;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background-color: #2eb600;
    border-top: 3px double #fff;
    border-bottom: 3px double #fff;
    margin-bottom: 20px px;
}

#what .text-box {
    padding: 20px 0;
    font-size: 17px;
}

/*===== #aisatu =====*/
#aisatu {
    background-color: #62c303;
}

#aisatu .bg {
    position: relative;
}

#aisatu .bg:after {
    width: 50%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/aisatu.jpg) no-repeat center top;
    background-size: cover;
    z-index: 0;
}

#aisatu .text-box {
    position: relative;
    z-index: 1;
    width: 50%;
    margin-left: auto;
    padding: 35px 3%;
    color: #fff;
}

#aisatu .text-box h2 {
    line-height: 1.6;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

#aisatu .text-box .text a {
    color: #fff;
    text-decoration: underline;
}

#aisatu .text-box .text a:hover {
    color: #254703;
}

#aisatu .text-box .name {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

/*===== #riyu =====*/
#riyu h2 {
    line-height: 0;
}

#riyu .bg {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(../img/riyu-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 50px 0;
}

#riyu dl {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    text-shadow: #fff 1px 0 10px;
    margin-bottom: 20px;
}

#riyu dl dt {
    width: 45px;
}

#riyu dl dd {
    width: calc(100% - 45px);
}

#riyu .txt {
    text-align: center;
    line-height: 1.6;
    font-size: 25px;
    font-weight: bold;
    text-shadow: #fff 1px 0 10px;
    margin-top: 35px;
}

/*===== #intyo =====*/
#intyo {
    background-color: #f5f0e2;
    padding: 50px 0;
}

#intyo .box {
    position: relative;
}

#intyo .box .text-box {
    width: 55%;
    background-color: #fff;
    border: 2px solid #e7390d;
    padding: 3% 3% 1%;
    box-shadow: 6px 4px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

#intyo .box .text-box .text span {
    color: #f70b10;
    font-weight: bold;
}

#intyo .box .img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    z-index: 0;
}

/*===== #nayami =====*/
#nayami h2 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 0;
    padding: 30px 2% 0;
}

#nayami .next {
    background-color: #f6aa00;
    padding: 20px 2%;
}

#nayami .next .txt {
    width: 100%;
    max-width: 671px;
    margin: 0 auto;
    line-height: 0;
}

#nayami .nayami-box {
    background: #b4b4b4 url(../img/nayami-next.png) no-repeat top center;
    background-size: 150px;
}

#nayami .cn-w {
    position: relative;
}

#nayami .nayami-box .text-box {
    width: 55%;
    background-color: #fff;
    border: 3px solid #a4760e;
    border-radius: 10px;
    padding: 15px 2%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

#nayami .nayami-box .text-box ul {
    line-height: 1.4;
}

#nayami .nayami-box .text-box ul li {
    background: url(../img/icon-check.png) no-repeat top left;
    font-size: 18px;
    font-weight: bold;
    padding: 1px 0 3px 32px;
    margin-bottom: 15px;
}

#nayami .nayami-box .text-box ul li.last {
    margin-bottom: 0;
}

#nayami .nayami-box .img {
    width: 50%;
    margin-left: auto;
    line-height: 0;
}

/*===== #point =====*/
#point {
    background-color: #f5f0e2;
    padding: 50px 0;
}

#point h2 {
    width: 100%;
    max-width: 993px;
    margin: 0 auto 35px;
    line-height: 0;
    padding: 50px 0;
}

#point .box {
    margin-bottom: 30px;
}

#point .box h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#point .box h3 .icon {
    display: block;
    width: 100px;
}

#point .box h3 .hx {
    display: block;
    width: calc(97% - 100px);
    line-height: 1.2;
    font-size: 25px;
    font-weight: bold;
}

#point .box .img {
    width: 45%;
    float: right;
}

#point .box .text-box {
    width: 50%;
    float: left;
}

#point .box .text-box .text a {
    text-decoration: underline;
}

#point .box .text-box .text a:hover {
    color: #e7390d;
}

/*===== #step =====*/
#step {
    background-color: #ecfbe6;
    padding: 50px 0;
}

#step h2 {
    width: 100%;
    max-width: 939px;
    margin: 0 auto 35px;
    line-height: 0;
}

#step .main-text {
    text-align: center;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

#step .step-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#step .step-box .box {
    width: 32%;
    border: 1px solid #e7390d;
    background-color: #fff;
    margin-bottom: 20px;
}

#step .step-box .box h3 {
    background-color: #e7390d;
    line-height: 1.4;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    padding: 8px 2%;
    margin-bottom: 15px;
}

#step .step-box .box h3 span {
    font-size: 18px;
}

#step .step-box .box .img {
    width: 100%;
    max-width: 149px;
    margin: 0 auto 15px;
}

#step .step-box .box .text-box {
    margin: 0 5%;
    padding-bottom: 15px;
}

#step .step-box .box .text-box h4 {
    line-height: 1.4;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

#step .step-box .box .text-box .text {
    margin-bottom: 0;
}

/*===== #flow =====*/
#flow {
    background-color: #f5f0e2;
    padding: 50px 0;
}

#flow h2 {
    width: 100%;
    max-width: 751px;
    margin: 0 auto 35px;
    line-height: 0;
}

#flow .box {
    margin-bottom: 25px;
}

#flow .box .img {
    width: 38%;
    float: left;
}

#flow .box .text-box {
    width: 57%;
    float: right;
}

#flow .box .text-box h3 {
    line-height: 1.4;
    margin-bottom: 12px;
}

#flow .box .text-box h3 span {
    display: inline-block;
    background-color: #f68001;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 7px 15px;
}

/*===== #tiryohi =====*/
#tiryohi {
    background-color: #ecfbe6;
    padding: 50px 0;
}

#tiryohi h2 {
    width: 100%;
    max-width: 873px;
    margin: 0 auto 35px;
    line-height: 0;
}

#tiryohi .tiryohi-box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#tiryohi .tiryohi-box .text-box {
    margin-bottom: 30px;
}

#tiryohi .tiryohi-box .text-box h3 {
    background-color: #e7390d;
    border-radius: 10px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    font-size: 25px;
    padding: 15px 2%;
    margin-bottom: 20px;
}

#tiryohi .tiryohi-box .text-box table {
    width: 100%;
    line-height: 1.4;
    margin-bottom: 15px;
}

#tiryohi .tiryohi-box .text-box table tr th {
    font-weight: bold;
    color: #e7390d;
    padding-bottom: 5px;
}

#tiryohi .tiryohi-box .text-box table tr td {
    padding-bottom: 5px;
}

#tiryohi .tiryohi-box .text-box .txt {
    text-align: center;
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

#tiryohi .tiryohi-box .text-box.n1 .text {
    text-align: center;
}

/* 交通事故の慰謝料計算ツール */
#tiryohi .tool {
    margin: 5rem auto 0;
    padding: 0 1rem 1.5rem;
    max-width: 1000px;
    border: 2px solid #62c303;
    border-radius: 10px;
}

#tiryohi .tool_title {
    transform: translateY(-24px);
    padding: 1.5rem 1rem;
    margin: 0;
    background-color: #62c303;
    border-radius: 5px;
    color: #FFF;
    text-align: center;
    font-size: 120%;
    font-weight: bold;
}

#tiryohi .tool_content {
    padding: 0 1rem;
}

#tiryohi .tool dl {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 10px 0;
}

#tiryohi .tool dl dt {
    margin: 0;
    width: 50%;
}

#tiryohi .tool dl dd {
    margin: 0;
    width: 50%;
}

#tiryohi .tool dl .inner {
    padding: 0.7rem;
}

#tiryohi .tool dl .item-title {
    font-size: 150%;
    font-weight: 700;
}

#tiryohi .tool dl .item-title>.txt_s {
    display: block;
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 7px;
    line-height: 1.2;
}

#tiryohi .tool input {
    width: 90%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    font-size: 100%;
    line-height: 2.5rem;
    border: 1px solid #666;
    border-radius: 6px;
}

#tiryohi .tool .submit,
#tiryohi .tool .submit02 {
    margin: 0.5em auto;
    display: block;
    margin-bottom: 1rem;
    padding: 1rem 4rem;
    border: 0;
    border-radius: 15px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    font-size: 150%;
    color: #FFF;
    cursor: pointer;
}

#tiryohi .tool .submit {
    background-color: #0068b7;
}

#tiryohi .tool .submit02 {
    background-color: #ff0000;
}

#tiryohi .jibai_ttl,
#tiryohi .bengo_ttl {
    font-size: 150%;
    font-weight: 700;
    margin: 20px 0;
}

#tiryohi .tool #price:not(:empty),
#tiryohi .tool #price02:not(:empty) {
    text-align: center;
    padding: 2rem;
    font-size: 250%;
    font-weight: 700;
}

#tiryohi .tool #price:not(:empty) {
    color: #00467c;
}

#tiryohi .tool #price02:not(:empty) {
    color: #e91e63;
}

#tiryohi .tool .info {
    margin-top: 1.5rem;
}

#tiryohi .tool .info p {
    margin: 0.5rem 0;
    font-size: 1em;
    line-height: 1.5;
}

/*===== #renkei =====*/
#renkei {
    padding: 35px 0;
    background-color: #f5f0e2;
}

#renkei h2 {
    line-height: 1.4;
    text-align: center;
    background-color: #3280bd;
    padding: 10px 2%;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 25px;
}

#renkei .info {
    width: 49%;
    float: left;
    margin-bottom: 25px;
}

#renkei .info h3 {
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #3280bd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

#renkei .info dl {
    line-height: 1.4;
    margin-bottom: 10px;
}

#renkei .info dl dt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

#renkei .info dl dd {
    font-size: 16px;
}

#renkei .info .link {
    margin-top: 25px;
}

#renkei .info .link a {
    display: block;
    background-color: #fff;
    border: 2px solid #3280bd;
    border-radius: 10px;
    padding: 10px 2%;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #3280bd;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

#renkei .img {
    width: 49%;
    float: right;
    margin-bottom: 25px;
}

#renkei .text-box {
    clear: both;
}

/*===== #in-info =====*/
#in-info {
    padding: 35px 0;
}

#in-info .box {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#in-info .box .img {
    width: 48%;
    float: left;
}

#in-info .box .text-box {
    width: 48%;
    float: right;
}

/*===== floating-bnr =====*/
.floating-bnr {
    display: none;
}

/*===============================================
    ■tablet 画面の横幅が900pxまで
===============================================*/
@media screen and (max-width: 900px) {

    /*===== #nayami =====*/
    #nayami .nayami-box {
        padding-top: 90px;
    }

    #nayami .cn-w {
        position: static;
    }

    #nayami .nayami-box .text-box {
        width: 100%;
        position: static;
        top: auto;
        transform: none;
    }

    #nayami .nayami-box .img {
        width: 100%;
        max-width: 651px;
        margin: 0 auto;
        line-height: 0;
    }
}

/*===============================================
    ■tablet 画面の横幅が800pxまで
===============================================*/
@media screen and (max-width: 800px) {

    /*===== #aisatu =====*/
    #aisatu .bg:after {
        width: 100%;
        height: 350px;
    }

    #aisatu .text-box {
        width: 100%;
        padding-top: 380px;
    }

    /*===== #intyo =====*/
    #intyo .box {
        position: static;
    }

    #intyo .box .text-box {
        width: 100%;
    }

    #intyo .box .img {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        z-index: auto;
        margin-top: 20px;
    }

    /*===== #point =====*/
    #point .box .img {
        width: 100%;
        float: none;
        max-width: 501px;
        margin: 0 auto 20px;
    }

    #point .box .text-box {
        width: 100%;
        float: none;
    }

    /*===== #step =====*/
    #step .step-box .box {
        width: 48%;
    }
}

/*===============================================
    ■tablet 画面の横幅が520pxまで
===============================================*/
@media screen and (max-width: 520px) {
    header .hd-box h1 {
        display: none;
    }

    header .hd-box .logo {
        width: 70%;
        max-width: 250px;
    }

    header .hd-box .hd-link {
        display: block;
    }

    #global-nav {
        display: none;
    }

    #mv {
        border-bottom: 2px solid #e7390d;
    }

    /*===== #aisatu =====*/
    #aisatu .bg:after {
        height: 300px;
    }

    #aisatu .text-box {
        padding-top: 320px;
    }

    /*===== #riyu =====*/
    #riyu .bg {
        padding: 30px 0;
    }

    #riyu dl {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #riyu .txt {
        font-size: 18px;
    }

    /*===== #riyu =====*/
    .line-box .txt p {
        font-size: 18px;
    }

    .line-box .link-box {
        flex-direction: column;
    }

    .line-box .link-box p {
        width: 100%;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .line-box .link-box .link {
        width: 100%;
    }

    /*===== #point =====*/
    #point {
        padding: 20px 0;
    }

    #point h2 {
        padding: 0;
    }

    #point .box h3 {
        align-items: flex-start;
    }

    #point .box h3 .icon {
        width: 45px;
    }

    #point .box h3 .hx {
        width: calc(97% - 45px);
        font-size: 17px;
    }

    /*===== #step =====*/
    #step .step-box .box {
        width: 100%;
    }

    /*===== #flow =====*/
    #flow .box .img {
        width: 100%;
        float: none;
        max-width: 404px;
        margin: 0 auto 15px;
    }

    #flow .box .text-box {
        width: 100%;
        float: none;
    }

    /*===== #tiryohi =====*/
    #tiryohi .tiryohi-box .text-box h3 {
        font-size: 18px;
    }

    #tiryohi .tiryohi-box .text-box table tr th {
        width: 110px;
    }

    /*===== #renkei =====*/
    #renkei .info {
        width: 100%;
        float: none;
    }

    #renkei .img {
        width: 100%;
        float: none;
    }

    /*===== #in-info =====*/
    #in-info .box .img {
        width: 100%;
        float: none;
        max-width: 366px;
        margin: 0 auto 15px;
    }

    #in-info .box .text-box {
        width: 100%;
        float: none;
    }

    /*===== footer =====*/
    footer {
        position: relative;
    }

    footer::after {
        position: absolute;
        top: 100%;
        left: 0;
        content: "";
        width: 100%;
        height: 50px;
    }

    /*===== floating-bnr =====*/
    .floating-bnr {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
    }

    .floating-bnr_list {
        display: flex;
    }

    .floating-bnr_item {
        flex: 1;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }

    .floating-bnr_item._tel {
        background-color: #132f7e;
    }

    .floating-bnr_item._net {
        background-color: #e83e34;
    }

    .floating-bnr_item-link {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #fff;
        height: 50px;
        padding: 0.8em 0.5em;
    }

    .floating-bnr_item-link:visited,
    .floating-bnr_item-link:link {
        color: #fff;
    }

    .floating-bnr_item-text {
        display: inline-block;
        position: relative;
        padding-left: 1.5em;
    }

    .floating-bnr_item-text::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 1.2em;
        height: 1.2em;
    }

    .floating-bnr_item._tel .floating-bnr_item-text::before {
        background: url(../img/icon-phone.svg) center center/contain no-repeat;
    }

    .floating-bnr_item._net .floating-bnr_item-text::before {
        background: url(../img/icon-calendar.svg) center center/contain no-repeat;
    }
}