@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;
}
.en {
    font-family: "Roboto", sans-serif;
}

.cn-w {
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 0 2%;
}


/*===== header =====*/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
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;
    flex-direction: row-reverse;
}
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: #f2960e;
    /*動き*/
    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 .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 .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 =====*/
#mv {
}

/*===== #access =====*/
#access {
}
#access .access_inner {
  display: flex;
}
#access .access_box {
  flex: 1;
  font-size: min(2.49688vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  padding: 0.4em 0.8em;
  border: 4px solid #ee7f25;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#access .access_box:nth-of-type(2) {
  border-left: none;
}
#access .access_text {
  color: #ee7f25;
    font-size: 18px;
}
#access .access_text span {
    font-size: 22px;
}
#access .access_tel {
  display: inline-block;
  padding-left: 1.2em;
  font-size: 1.2em;
  color: #ee7f25;
  transition: opacity 0.2s ease-out;
}
#access .access_tel span.icon {
    background: url(../img/lp-jiko/icon-phone.png) no-repeat left 4px;
    background-size: 25px;
    padding: 0 30px;
    display: inline-block;
}
#access .access_tel:hover {
  text-decoration: none;
  opacity: 0.8;
}

/*===== #global-nav =====*/
#global-nav {
    background-color: #ee7f25;
}
#global-nav ul {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 10px 2%;
}
#global-nav ul li {
    width: calc(100% / 6);
    display: table-cell;
    border-left: 1px dotted #fff;
    text-align: center;
    vertical-align: middle;
}
#global-nav ul li.first {
    border-left: 1px dotted #fff;
}
#global-nav ul li a {
    display: flex;
    width: 100%;
    min-height: 45px;
    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: #9dca32;
}
footer .copy {
    color: #fff;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    padding: 15px 0;
}

/*==================
    main
==================*/
/*===== 共通 =====*/
.line-box {
    background-color: #fff;
}
.line-box .txt {
    background-color: #f2c00e;
}
.line-box .txt p {
    text-align: center;
    line-height: 1.4;
    font-size: 24px;
    font-weight: bold;
    color: #343434;
    padding: 22px 2%;
    letter-spacing: 2px;
    text-shadow: 3px 3px 2px #ffffff, -3px 3px 2px #ffffff, 3px -3px 2px #ffffff, -3px -3px 2px #ffffff, 3px 0px 2px #ffffff, 0px 3px 2px #ffffff, -3px 0px 2px #ffffff, 0px -3px 2px #ffffff;
}
.line-box .hx-txt {
    line-height: 1.4;
    text-align: center;
    color: #d2691e;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}
.line-box .hx-txt span {
    display: inline-block;
}
.line-box .link-box {
    width: 100%;
    max-width: 800px;
    margin: 35px auto;
    border: 2px solid #d2691e;
    border-radius: 15px;
    background-color: #fffde3;
    padding: 3%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.line-box .link-box .text-box {
    width: 42%;
    margin-bottom: 20px;
}
.line-box .link-box .text-box .hx {
    line-height: 1.4;
    background-color: #d2691e;
    text-align: center;
    border-radius: 100px;
    padding: 10px 2%;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}
.line-box .link-box .text-box .text {
}
.line-box .link-box .text-box .text span {
    color: #d2691e;
    font-size: 16px;
    font-weight: bold;
}
.line-box .link-box .list-box {
    width: 56%;
    margin-bottom: 20px;
}
.line-box .link-box .list-box ul {
    line-height: 1.4;
}
.line-box .link-box .list-box ul li {
    background: url(../img/lp-jiko/icon-check.png) no-repeat left top;
    background-size: 20px;
    padding: 0 0 0 24px;
    font-size: 16px;
    font-weight: bold;
    color: #343434;
    margin-bottom: 5px;
}
.line-box .link-box .link {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.line-box .link-box .link li {
    width: 32%;
}

/*===== #what =====*/
#what {
}
#what h2 {
  line-height: 1.4;
  text-align: center;
  padding: 18px 2%;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: #f2c00e;
  border-top: 3px double #fff;
  border-bottom: 3px double #fff;
  margin-bottom: 20px px;
}

#what .text-box {
  padding: 20px 0;
  line-height: 1.8;
}

/*===== #aisatu =====*/
#aisatu {
    padding-bottom: 60px;
    overflow: hidden;
}
#aisatu .bg {
}
#aisatu .box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
#aisatu .box .img {
    width: 50%;
    margin-top: 6%;
}
#aisatu .box .text-box {
    width: 50%;
    margin-left: auto;
    padding: 35px 3%;
    color: #fff;
    background-color: #f2c00e;
}
#aisatu .box .text-box h2 {
    line-height: 1.6;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
#aisatu .box .text-box .text {
}
#aisatu .box .text-box .name {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

/*===== #riyu =====*/
#riyu {
}
#riyu h2 {
    line-height: 0;
}
#riyu .bg {
    background: 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 {
    color: #d2691e;
    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: 50%;
    background-color: #fff;
    border: 2px solid #d2691e;
    padding: 3% 3% 1%;
    box-shadow: 6px 4px 5px #0003;
    position: relative;
    z-index: 1;
}
#intyo .box .text-box .text {
}
#intyo .box .text-box .text span {
    color: #d2691e;
    font-weight: bold;
}
#intyo .box .img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    z-index: 0;
}

/*===== #nayami =====*/
#nayami {
}
#nayami h2 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    line-height: 0;
    padding: 30px 2% 0;
}
#nayami .next {
    background-color: #d2691e;
    padding: 20px 2%;
}
#nayami .next .txt {
    width: 100%;
    max-width: 671px;
    margin: 0 auto;
    line-height: 0;
}
#nayami .nayami-box {
    background: #fafafa 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: 60%;
    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 left 5px;
    background-size: 28px;
    font-size: 18px;
    font-weight: bold;
    padding: 1px 0 3px 32px;
    margin-bottom: 15px;
    color: #343434;
}
#nayami .nayami-box .text-box ul li.last {
    margin-bottom: 0;
}
#nayami .nayami-box .img {
    width: 30%;
    margin-left: auto;
    line-height: 0;
}

/*===== #point =====*/
#point {
    background-color: #f5f0e2;
    padding: 50px 0;
}
#point h2 {
    width: 100%;
    max-width: 747px;
    margin: 0 auto 35px;
    line-height: 0;
    padding: 50px 0;
}
#point .box {
    margin-bottom: 30px;
}
#point .box h3 {
    width: 62%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
#point .box h3 .icon {
    display: block;
    width: 64px;
}
#point .box h3 .hx {
    display: block;
    width: calc(97% - 64px);
    line-height: 1.2;
    font-size: 22px;
    font-weight: bold;
}
#point .box .img {
    width: 33%;
    float: right;
}
#point .box .text-box {
    width: 62%;
    float: left;
}
#point .box .text-box .text {
}
#point .box .text-box .text a {
    text-decoration: underline;
}
#point .box .text-box .text a:hover {
    color: #e7390d;
}

/*===== #step =====*/
#step {
    background-color: #f5f0e2;
    padding: 50px 0;
}
#step h2 {
    width: 100%;
    max-width: 747px;
    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 #d2691e;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 3px 6px #0003;
}
#step .step-box .box h3 {
    background-color: #d2691e;
    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: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #d2691e;
}
#step .step-box .box .text-box .text {
    margin-bottom: 0;
}

/*===== #tigai =====*/
#tigai {
    background-color: #f5f0e2;
    padding: 50px 0;
}
#tigai h2 {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 35px;
    line-height: 0;
}
#tigai table {
    line-height: 1.4;
    width: 100%;
}
#tigai table tr {
}
#tigai table tr th {
    width: 33%;
    text-align: center;
    background-color: #efd29c;
    border: 1px solid #b07630;
    padding: 15px 2%;
    font-size: 16px;
    color: #222222;
    font-weight: bold;
    vertical-align: middle;
}
#tigai table tr td {
    background-color: #fff;
    border: 1px solid #b07630;
    text-align: center;
    padding: 12px 2%;
    vertical-align: middle;
}
#tigai table tr td.hx {
    background-color: #f3e5c8;
    color: #222222;
    font-weight: bold;
}

/*===== #flow =====*/
#flow {
  padding: 50px 0;
}
#flow .flow-list {
    width: 100%;
}
#flow .flow-list .flow-box {
    padding: 0 3%;
}

#flow h2 {
  width: 100%;
  max-width: 584px;
  margin: 0 auto 35px;
  line-height: 0;
}

#flow .box {
    margin-bottom: 25px;
    border: 1px solid #d2691e;
    border-radius: 10px;
    padding: 3%;
}

#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: #d2691e;
    text-align: center;
    width: 120px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 7px 15px;
}
#flow .flow-list .slick-prev,
#flow .flow-list .slick-next {
  z-index: 1;
  display: block;
  width: 30px;
  height: 30px;
  background: #f2c00e;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: absolute;
}
#flow .flow-list .slick-next {
  right: 1%;
}
#flow .flow-list .slick-prev {
  left: 1%;
}
#flow .flow-list .slick-next::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 5px;
  margin: auto;
  transform: rotate(45deg);
  opacity: 1;
}
#flow .flow-list .slick-prev::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 5px;
  right: 0;
  margin: auto;
  transform: rotate(225deg);
  opacity: 1;
}
#flow .flow-list .slick-prev::before,
#flow .flow-list .slick-next::before {
  color: #ff7b00;
  font-size: 20px;
}

/*===== #tiryohi =====*/
#tiryohi {
    background-color: #f5f0e2;
    padding: 50px 0;
}
#tiryohi h2 {
    width: 100%;
    max-width: 715px;
    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: #d2691e;
    border-radius: 10px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    font-size: 23px;
    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 {
}
#tiryohi .tiryohi-box .text-box table tr th {
    width: 100px;
    font-weight: bold;
    color: #d2691e;
    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 .text {
}
#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;
    background-color: #fff;
}

#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;
}

/*===== #btm-bnr =====*/
#btm-bnr {
    background-color: #f5f0e2;
    padding: 50px 0;
}
#btm-bnr .bnr {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}


/*===============================================
    ■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: 300px;
    margin: 0 auto;
    line-height: 0;
  }
}

/*===============================================
    ■tablet 画面の横幅が800pxまで
===============================================*/
@media screen and (max-width: 800px) {
  #access .access_text {
    font-size: 14px;
  }
  #access .access_text span {
    font-size: 16px;
  }
/*===== #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 h3 {
    width: 100%;
    float: none;
  }
  #point .box .img {
    width: 100%;
    float: none;
    max-width: 354px;
    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 {
    padding: 0;
    flex-direction: row;
  }
  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;
  }
  #access .access_tel span.icon {
    background-size: 17px;
    padding: 0 0 0 17px;
    display: block;
    font-size: 18px;
    margin-top: 5px;
  }
  #access .access_text {
        font-size: 12px;
  }
/*===== .line-box =====*/
  .line-box .link-box .text-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .line-box .link-box .list-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .line-box .link-box .link li {
    width: 48%;
    margin-top: 10px;
  }
  .line-box .link-box .link {
    justify-content: space-around;
  }
/*===== #aisatu =====*/
  #aisatu {
    padding-bottom: 0;
  }
  #aisatu .box .img {
    width: 100%;
    margin-top: 0;
    line-height: 0;
  }
  #aisatu .box .text-box {
    width: 100%;
    padding: 17px 3%;
  }
/*===== #riyu =====*/
  #riyu .bg {
    padding: 30px 0;
  }
  #riyu dl {
    font-size: 16px;
    margin-bottom: 10px;
  }
  #riyu .txt {
    font-size: 18px;
  }
/*===== #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;
  }
  #point .box .img {
        width: 80%;
  }
/*===== #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: 100%;
        display: block;
  }
  #tiryohi .tiryohi-box .text-box table tr td {
    padding-bottom: 10px;
    width: 100%;
    display: block;
  }
  #tiryohi .tool dl dt,
  #tiryohi .tool dl dd {
    width: 100%;
  }
  #tiryohi .tool dl .item-title {
    font-size: 18px;
    line-height: 1.4;
  }
  #tiryohi .jibai_ttl, #tiryohi .bengo_ttl {
    font-size: 18px;
    margin: 14px 0;
    line-height: 1.4;
  }
/*===== #btm-bnr =====*/
  #btm-bnr {
    padding: 20px 0;
  }
}