@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;
}
/*----- .link-box -----*/
.link-box {
  padding: 40px 0;
  background: #fff;
}
.link-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.link-box ul li {
    width: 33%;
    margin-bottom: 5px;
}

/*===== header =====*/
header {
}

header h1 {
  background: #4aa481;
  line-height: 1.4;
  font-size: 13px;
  color: #fff;
}

header h1 span {
    display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  padding: 3px 2%;
  margin: 0 auto;
}

header .hd-box {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 15px 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    align-items: center;
}

header .hd-box .logo {
  width: 38%;
}
header .hd-box .info {
  width: 59%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    align-items: center;
}
header .hd-box .info .tel {
  width: 46%;
}
header .hd-box .info .tel span {
    display: block;
    line-height: 1.2;
    font-size: 13px;
    margin-bottom: 7px;
}
header .hd-box .info .time {
  width: 52%;
}

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: #4aa481;
  /*動き*/
  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: #4aa481;
}

.openbtn.active {
  background-color: #31745a;
}

/*×に変化*/
.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/lp-jiko/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: #4aa481;
}

#global-nav ul {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 5px 2%;
}

#global-nav ul li {
  width: calc(100% / 7);
  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: #4aa481;
}

footer .copy {
  text-align: center;
  line-height: 1.4;
  font-size: 14px;
  color: #fff;
  padding: 15px 2%;
}
#sp-fttap {
    display: none;
}

/*==================
    main
==================*/
/*===== 共通 =====*/
.cn-hx {
    width: 80%;
    margin: 0 auto 40px;
    line-height: 1.4;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 45px 3%;/*文字回りの余白（上下左右）*/
    display: block;
    border-color: #4aa481;/*線の色*/
    position: relative;
}
.cn-hx:before,
.cn-hx:after {
    content: '';
    width: 80px;/*左右の枠線の幅*/
    height: 20px;/*左右の枠線の高さ*/
    position: absolute;
}
.cn-hx:before {
    border-left: 2px solid #4aa481;/*左枠左線（太さ 実線 色）*/
    border-top: 2px solid #4aa481;/*左枠上線（太さ 実線 色）*/
    top: 0;
    left: 0;
}
.cn-hx:after {
    border-right: 2px solid #4aa481;/*右枠右線（太さ 実線 色）*/
    border-bottom: 2px solid #4aa481;/*右枠下線（太さ 実線 色）*/
    bottom: 0;
    right: 0;
}
.cn-hx span {
    border-bottom: 2px solid #4aa481;
}
.cn-hx span span {
    border-bottom: none;
    color: #eb0000;
}
.cn-hx br {
    display: none;
}

/*===== #info =====*/
#info {
    display: none;
}

/*===== #front =====*/
#front {
    padding: 50px 0;
}
#front .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
#front .box .img {
  width: 45%;
}
#front .box .text-box {
    width: 55%;
    background-color: #ebfbf0;
    padding: 4%;
}

/*===== #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/lp-jiko/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;
}

/*===== #nayami =====*/
#nayami h2 {
    width: 100%;
    max-width: 855px;
    margin: 0 auto;
    line-height: 0;
    padding: 30px 2%;
}
#nayami .next {
    background-color: #f09c54;
    padding: 20px 2%;
}
#nayami .next .txt {
    width: 100%;
    max-width: 666px;
    margin: 0 auto;
    line-height: 0;
}
#nayami .nayami-box {
  background: #fcf4de url(../img/lp-jiko/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/lp-jiko/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;
}
#nayami .txt02 {
    background-color: #4aa481;
}
#nayami .txt02 p {
    text-align: center;
    line-height: 1.4;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 10px 0;
}

/*===== #point =====*/
#point {
  background-color: #f6fcf2;
  padding: 50px 0;
}
#point .box {
  background-color: #fff;
  padding: 3%;
  margin-bottom: 20px;
}
#point .box h3 {
    width: 65%;
    float: left;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    color: #4aa481;
    background: url(../img/lp-jiko/point-icon01.jpg) no-repeat left top;
    padding: 9px 0 7px 54px;
    margin-bottom: 15px;
}
#point .box h3.icon01 {
    background-image: url(../img/lp-jiko/point-icon01.jpg);

}
#point .box h3.icon02 {
    background-image: url(../img/lp-jiko/point-icon02.jpg);
}
#point .box h3.icon03 {
    background-image: url(../img/lp-jiko/point-icon03.jpg);
}
#point .box h3.icon04 {
    background-image: url(../img/lp-jiko/point-icon04.jpg);
}
#point .box .img {
    width: 32%;
    float: right;
}
#point .box .text-box {
    width: 65%;
    float: left;
}

/*===== #step =====*/
#step {
  background-color: #f6fcf2;
  padding: 50px 0;
}
#step .step-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#step .step-box .box {
  width: 47%;
  border: 2px solid #4aa481;
  background-color: #fff;
    padding: 2%;
  margin-bottom: 25px;
}
#step .step-box .box .img {
    width: 100%;
    max-width: 359px;
    margin: 10px auto 15px;
}
#step .step-box .box h3 {
    line-height: 1.4;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 15px;
}
#step .step-box .box .text-box {
}
#step .step-box .box .text-box .text {
  margin-bottom: 0;
}

/*===== #flow =====*/
#flow {
    padding: 50px 0 0;
}
#flow .box {
    width: 100%;
    max-width: 900px;
    border: 2px solid #4aa481;
    background-color: #fff;
    padding: 3%;
    margin: 0 auto 20px;
}
#flow .box h3 {
    width: 65%;
    float: right;
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    color: #4aa481;
    background: url(../img/lp-jiko/flow-icon01.png) no-repeat left top;
    padding: 9px 0 7px 54px;
    margin-bottom: 15px;
}
#flow .box h3.icon01 {
    background-image: url(../img/lp-jiko/flow-icon01.png);

}
#flow .box h3.icon02 {
    background-image: url(../img/lp-jiko/flow-icon02.png);
}
#flow .box h3.icon03 {
    background-image: url(../img/lp-jiko/flow-icon03.png);
}
#flow .box h3.icon04 {
    background-image: url(../img/lp-jiko/flow-icon04.png);
}
#flow .box .img {
    width: 32%;
    float: left;
}
#flow .box .text-box {
    width: 65%;
    float: right;
}

/*===== #tiryohi =====*/
#tiryohi {
  background-color: #fff6e7;
  padding: 50px 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;
    font-weight: bold;
  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 #4aa481;
  background-color: #fff;
  border-radius: 10px;
}

#tiryohi .tool_title {
  transform: translateY(-24px);
  padding: 1.5rem 1rem;
  margin: 0;
  background-color: #4aa481;
  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;
}

/*===== #clinic =====*/
#clinic {
  padding: 50px 0 0;
}
#clinic .txt {
    line-height: 1.4;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 35px;
}
#clinic ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#clinic ul li {
    width: 32%;
    margin-bottom: 35px;
}
#clinic ul li img {
}
#clinic ul li span {
    line-height: 1.4;
    text-align: center;
    display: block;
    font-size: 16px;
    margin-top: 15px;
}

/*===== #doctor =====*/
#doctor {
  padding: 50px 0 10px;
  background-color: #f6fcf2;
}
#doctor .box {
    position: relative;
    margin-bottom: 15%;
}
#doctor .box .img {
    width: 60%;
}
#doctor .box .text-box {
    position: absolute;
    top: 50%;
    left: 45%;
    background-color: #368868b8;
    color: #fff;
    padding: 3%;
}
#doctor .box .text-box .name {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
}
#doctor .box .text-box .text {
    margin-bottom: 0;
}

/*===== #access =====*/
#access {
  padding: 50px 0;
}
#access .img {
    margin-bottom: 25px;
}
#access .access-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}
#access .access-box .info {
    width: 48%;
}
#access .access-box .info h3 {
    line-height: 1.4;
    font-size: 23px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 10px;
}
#access .access-box .info .adrs {
    line-height: 1.4;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
#access .access-box .info .tel {
    width: 100%;
    max-width: 408px;
    margin-bottom: 15px;
}
#access .access-box .info .time {
    width: 100%;
    max-width: 521px;
}
#access .access-box .route {
    width: 48%;
    background-color: #e4f9f1;
    padding: 3%;
}
#access .access-box .route h3 {
    line-height: 1.4;
    font-size: 20px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 15px;
}
#access .access-box .route .hx {
    line-height: 1.4;
    font-size: 18px;
    font-weight: bold;
    color: #4aa481;
    margin-bottom: 5px;
}
#access .access-box .route .text {
}
#access .gmap {
    width: 100%;
}
#access .gmap iframe {
    width: 100%;
    height: 350px;
}

/*===============================================
    ■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: 479px;
    margin: 0 auto;
    line-height: 0;
  }
}
/*===============================================
    ■tablet 画面の横幅が800pxまで
===============================================*/
@media screen and (max-width: 800px) {
  /*===== header =====*/
  header .hd-box .logo {
    width: 100%;
    max-width: 444px;
    margin: 0 auto 15px;
  }
  header .hd-box .info {
    width: 100%;
  }
  /*===== #front =====*/
  #front .box .img {
    width: 100%;
    max-width: 479px;
    margin: 0 auto 15px;
  }
  #front .box .text-box {
    width: 100%;
  }
  /*===== #step =====*/
  #step .step-box .box {
    width: 49%;
  }
  /*===== #doctor =====*/
  #doctor .box {
    position: static;
    margin-bottom: 25px;
  }
  #doctor .box .img {
    width: 100%;
    max-width: 661px;
    margin: 0 auto;
    line-height: 0;
  }
  #doctor .box .text-box {
    position: static;
    top: auto;
    left: auto;
  }
}
/*===============================================
    ■tablet 画面の横幅が520pxまで
===============================================*/
@media screen and (max-width: 520px) {
  .cn-hx {
    width: 100%;
    font-size: 20px;
    padding: 30px 3%;
  }
  .cn-hx br {
    display: block;
  }
  .link-box {
    padding: 30px 0;
  }
  .link-box ul li {
        width: 90%;
        margin: 0 auto 10px;
  }
  /*===== header =====*/
  header {
    position: absolute;
   top: 0;
    left: 0;
    width: 100%;
  }
  header h1 {
    display: none;
  }
  header .hd-box .logo {
    width: 70%;
    max-width: 250px;
    margin: 0;
  }
  header .hd-box .info {
    display: none;
  }
  header .hd-box .hd-link {
    display: block;
  }
  #global-nav {
    display: none;
  }
  footer {
    padding-bottom: 12%;
  }
  #sp-fttap {
    display: block;
    z-index: 500;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  #sp-fttap ul {
    padding: 0;
  }
  #sp-fttap ul li {
    width: calc(100% / 3);
        line-height: 0;
        float: left;
  }
  /*===== #info =====*/
  #info {
        display: block;
        width: 100%;
        max-width: 408px;
        margin: 0 auto;
        padding: 15px 3% 0;
  }
  #info .adrs {
        line-height: 1.4;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
  }
  #info .tel {
        margin-bottom: 15px;
  }
  #info .time {
  }
  /*===== #front =====*/
  #front {
    padding: 30px 0;
  }
  /*===== #riyu =====*/
  #riyu .bg {
    padding: 30px 0;
  }
  #riyu dl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #riyu .txt {
    font-size: 18px;
  }
  /*===== #nayami =====*/
  #nayami .txt02 p {
    font-size: 20px;
  }
  /*===== #point =====*/
  #point {
    padding: 30px 0;
  }
  #point .box h3 {
    width: 100%;
    float: none;
  }
  #point .box .img {
    width: 100%;
    float: none;
    max-width: 311px;
    margin: 0 auto 15px;
  }
  #point .box .text-box {
    width: 100%;
    float: none;
  }
  /*===== #step =====*/
  #step {
    padding: 30px 0;
  }
  #step .step-box .box {
    width: 100%;
  }
  /*===== #flow =====*/
  #flow {
    padding: 0;
  }
  #flow .box h3 {
    width: 100%;
    float: none;
  }
  #flow .box .img {
    width: 100%;
    float: none;
    max-width: 311px;
    margin: 0 auto 15px;
  }
  #flow .box .text-box {
    width: 100%;
    float: none;
  }
  /*===== #tiryohi =====*/
  #tiryohi {
    padding: 30px 0;
  }
  #tiryohi .tiryohi-box .text-box h3 {
    font-size: 18px;
  }
  #tiryohi .tiryohi-box .text-box table tr th {
    width: 110px;
  }
  /*===== #clinic =====*/
  #clinic {
    padding: 30px 0 0;
  }
  #clinic .txt br {
    display: none;
  }
  #clinic ul li {
    width: 49%;
    margin-bottom: 15px;
  }
  /*===== #access =====*/
  #access {
    padding: 0 0 30px;
  }
  #access .access-box .info {
    width: 100%;
    margin-bottom: 20px;
  }
  #access .access-box .route {
    width: 100%;
  }
}