@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #111;
  line-height: 1.5;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*----------------------------------------------------
Link
---------------------------------------------------- */
a {
  color: #1546C3;
  text-decoration: underline;
}

a:hover {
  color: #eee;
  text-decoration: none;
}

/*----------------------------------------------------
text textarea button
---------------------------------------------------- */
input {
  border: 1px solid #ccc;
}

.button_com, .button_send {
  padding: 7px 12px 6px;
  border-radius: 8px;
  background: #E95513;
  color: #fff;
  font-size: 1.5rem;
}

.button_com:hover, .button_send:hover {
  background: #2575f4;
}

/*----------------------------------------------------
nowrap 折返し処理
---------------------------------------------------- */
.nowrap {
  white-space: nowrap;
}

/*----------------------------------------------------
pc sm
---------------------------------------------------- */
@media screen and (min-width: 769px) {
  .pcshow {
    display: inherit !important;
  }
}

@media screen and (max-width: 480px) {
  .pcshow {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spshow {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .spshow {
    display: inherit !important;
  }
}

@use '../var' as *;
/*----------------------------------------------------
anime
---------------------------------------------------- */
.anime_txt span {
  display: inline-block;
  transform: translate(-20px, 0px) rotate(0deg) scale(2);
  animation: animeTxt .4s forwards;
  opacity: 0;
}

.anime_txt span:nth-of-type(2) {
  animation-delay: .1s;
}

.anime_txt span:nth-of-type(3) {
  animation-delay: .2s;
}

.anime_txt span:nth-of-type(4) {
  animation-delay: .3s;
}

.anime_txt span:nth-of-type(5) {
  animation-delay: .4s;
}

.anime_txt span:nth-of-type(6) {
  animation-delay: .5s;
}

.anime_txt span:nth-of-type(7) {
  animation-delay: .6s;
}

.anime_txt span:nth-of-type(8) {
  animation-delay: .7s;
}

.anime_txt span:nth-of-type(9) {
  animation-delay: .8s;
}

.anime_txt span:nth-of-type(10) {
  animation-delay: .9s;
}

@keyframes animeTxt {
  60% {
    transform: translate(0px, 0px) rotate(0deg) scale(0.6);
  }
  100% {
    transform: translate(0) rotate(0) scale(1);
    opacity: 1;
  }
}

/*----------------------------------------------------
box
---------------------------------------------------- */
.box__agreement {
  width: 100%;
  max-width: 1150px;
  margin: 15px auto;
  padding: 20px 15px;
  border: 2px solid #eee;
  border-radius: 6px;
}

@media screen and (min-width: 769px) {
  .box__agreement {
    padding: 30px 45px;
  }
}

/*----------------------------------------------------
fadein
---------------------------------------------------- */
.fadein {
  opacity: 0;
}

.show {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-name: fadeAnime;
  opacity: 0;
}

@keyframes fadeAnime {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.7s ease;
}

.fade-in.show-in {
  transform: none;
  opacity: 1;
}

/*----------------------------------------------------
footer
---------------------------------------------------- */
.footer {
  padding: 40px 4%;
  background: #E95513;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 50px 0;
  }
}

@media screen and (min-width: 769px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    max-width: 1150px;
    margin: auto;
  }
}

.footer__info {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .footer__info {
    margin-bottom: 0;
  }
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer__item {
  flex-basis: 50%;
  margin-bottom: 8px;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .footer__item {
    flex-basis: auto;
    margin-right: 10px;
    margin-bottom: 0;
  }
}

.footer__item a {
  color: #fff;
  text-decoration: none;
}

.footer__add {
  font-size: 1.6rem;
}

.footer__company {
  font-size: 1.8rem;
}

.footer__copy {
  margin-top: 30px;
  font-size: 1.5rem;
  text-align: center;
}

/*----------------------------------------------------
gnav
---------------------------------------------------- */
.gnav {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 85px 30px 0;
  background: #E95513;
}

@media screen and (min-width: 769px) {
  .gnav {
    display: block;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    background: none;
  }
}

.gnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .gnav__list {
    max-width: 1150px;
  }
}

.gnav__item {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .gnav__item {
    width: auto;
    margin: 0 15px;
    padding: 0;
    border-bottom: none;
  }
}

.gnav__item a {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .gnav__item a {
    color: #614022;
  }
}

.gnav__item a:hover {
  color: #ee7800;
}

.gnav__btn {
  display: block;
  z-index: 100;
  width: 40px;
  height: 30px;
}

@media screen and (min-width: 769px) {
  .gnav__btn {
    display: none;
  }
}

.gnav__btn .position {
  position: relative;
}

.gnav__btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 38px;
  height: 5px;
  background-color: #555;
  transition: all 0.5s ease;
}

.gnav__btn .bar1 {
  top: 0;
}

.gnav__btn .bar1.open {
  top: 12px;
  transform: rotate(45deg);
}

.gnav__btn .bar2 {
  top: 12px;
}

.gnav__btn .bar2.open {
  opacity: 0;
}

.gnav__btn .bar3 {
  top: 24px;
}

.gnav__btn .bar3.open {
  top: 12px;
  transform: rotate(-45deg);
}

/*----------------------------------------------------
header
---------------------------------------------------- */
.header {
  z-index: 90;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 62px;
}

@media screen and (min-width: 769px) {
  .header {
    height: 85px;
  }
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0 8px 0 5px;
  background: white;
}

@media screen and (min-width: 769px) {
  .header__inner {
    max-width: 1150px;
    height: 100%;
    margin: auto;
    padding: 0 5px 0 30px;
    background: none;
  }
}

@media screen and (min-width: 769px) {
  .header__inner.-back {
    border-radius: 0 0 30px 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 10px 1px rgba(204, 204, 204, 0.6);
    transition: all 1.0s 0s ease;
  }
}

.header__logo {
  padding: 10px;
}

@media screen and (min-width: 769px) {
  .header__logo {
    align-items: center;
    padding: 5px 0 0 0;
  }
}

.header__tit {
  display: none;
}

@media screen and (min-width: 769px) {
  .header__tit {
    display: block;
    font-size: 1.3rem;
  }
}

.header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.header__nav__entry {
  width: 120px;
  height: 25px;
  margin-right: 12px;
  border-radius: 30px;
  background: #3097D1;
  color: #fff;
  font-size: 1.3rem;
  line-height: 25px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .header__nav__entry {
    width: 160px;
    height: 40px;
    margin-right: 10px;
    font-size: 1.5rem;
    line-height: 40px;
  }
}

.header__nav__entry a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.header__nav__entry a::before {
  margin-right: 8px;
  content: '\f15b';
  font-weight: 500;
  font-family: "Font Awesome 5 Free";
}

/*----------------------------------------------------
mainV
---------------------------------------------------- */
.mainV {
  background: url(../img/top/top_img_2.jpg) no-repeat;
  background-size: cover;
}

.mainV__inner {
  width: 100%;
  height: 400px;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .mainV__inner {
    max-width: 1150px;
    height: 100vh;
  }
}

.mainV__logo {
  padding: 150px 0 0 20px;
  color: #E95513;
  font-weight: bold;
  font-size: 2.2rem;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .mainV__logo {
    padding: 280px 0 0 20px;
    font-size: 2.4rem;
  }
}

.mainV__title {
  margin-top: 10px;
  padding: 0 0 0 20px;
  color: #222;
  font-weight: bold;
  font-size: 2.2rem;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .mainV__title {
    font-size: 4.2rem;
  }
}

.mainV__title ._inner {
  padding: 7px 22px 1px;
  border-radius: 4px;
  background-color: #E95513;
  color: #fff;
}

.mainV__subtitle {
  padding: 10px 0 0 10px;
  color: #614022;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .mainV__subtitle {
    padding: 15px 0 0 20px;
    font-size: 3.0rem;
  }
}

.mainV-page {
  background: url(../img/head.jpg) no-repeat;
  background-size: cover;
}

.mainV-page__inner {
  width: 100%;
  height: 240px;
  margin: auto;
}

@media screen and (min-width: 769px) {
  .mainV-page__inner {
    max-width: 1150px;
    height: 360px;
  }
}

.mainV-page__logo {
  padding: 100px 0 0 20px;
  color: #E95513;
  font-weight: bold;
  font-size: 2.2rem;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .mainV-page__logo {
    padding: 180px 0 0 20px;
    font-size: 2.4rem;
  }
}

/*----------------------------------------------------
GO TO TOP
---------------------------------------------------- */
#areaPagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 20px;
  cursor: pointer;
}

/*----------------------------------------------------
parts
---------------------------------------------------- */
/*下向き矢印*/
.arrow-down {
  box-sizing: border-box;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  transform: translateY(-25%) rotate(135deg);
  border: 0.1em solid #aaa;
  border-bottom: 0;
  border-left: 0;
  color: #333;
  line-height: 1;
  vertical-align: middle;
}

/*----------------------------------------------------
sec
---------------------------------------------------- */
.sec {
  padding: 40px 0;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .sec {
    padding: 60px 0;
  }
}

.sec-bg {
  background: #f4f4ef;
}

.sec__inner {
  margin: auto;
  padding: 0 4%;
}

@media screen and (min-width: 769px) {
  .sec__inner {
    max-width: 1150px;
    padding: 0;
  }
}

/*----------------------------------------------------
TOP sec tit,txt
---------------------------------------------------- */
.topSec__tit {
  margin: 30px 0 15px;
  color: #222;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width: 769px) {
  .topSec__tit {
    margin: 40px 0 15px;
    font-size: 3.2rem;
  }
}

.topSec__tit02 {
  margin: 0 0 5px;
  color: #333;
  font-weight: bold;
  font-size: 2.2rem;
}

@media screen and (min-width: 769px) {
  .topSec__tit02 {
    font-size: 2.4rem;
  }
}

.topSec__tit03 {
  margin: 0 0 5px;
  color: #333;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .topSec__tit03 {
    font-size: 2.6rem;
  }
}

.topSec__tit-agreement {
  margin: 30px auto 15px;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
  color: #333;
  font-weight: 600;
  font-size: 2.0rem;
}

@media screen and (min-width: 769px) {
  .topSec__tit-agreement {
    font-size: 2.0rem;
  }
}

span.tit__underline {
  background: linear-gradient(transparent 60%, #fff584 60%);
}

.sec__txt {
  margin-bottom: 25px;
  font-size: 1.6rem;
  line-height: 3.0rem;
}

@media screen and (min-width: 769px) {
  .sec__txt {
    font-size: 1.8rem;
    line-height: 3.6rem;
  }
}

/*----------------------------------------------------
casepage Fbox
---------------------------------------------------- */
.caseFbox {
  margin-top: 30px;
  padding: 0 1.5%;
}

@media screen and (min-width: 769px) {
  .caseFbox {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    padding: 0;
  }
}

.caseFbox__tit {
  position: relative;
  padding-left: 20px;
  font-weight: 550;
  font-size: 2.4rem;
}

.caseFbox__tit::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #E95513;
  content: '';
}

.caseFbox__item-img {
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .caseFbox__item-img {
    width: 320px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .caseFbox__item-txt {
    width: 720px;
  }
}

.caseFboxIndex {
  margin-top: 30px;
  padding: 0 1.5%;
}

@media screen and (min-width: 769px) {
  .caseFboxIndex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    padding: 0;
  }
}

.caseFboxIndex__item {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .caseFboxIndex__item {
    width: calc(100% / 3.15);
  }
}

.caseFboxIndex__item a {
  color: #000;
  text-decoration: none;
}

.caseFboxIndex__item-img {
  width: 80%;
  margin: 0 auto 15px;
}

.caseFboxIndex__item-txt {
  font-size: 1.6rem;
  text-align: center;
}

/*----------------------------------------------------
casepage tit
---------------------------------------------------- */
.case__tit {
  position: relative;
  margin: 30px auto;
  padding: 0 4%;
  padding-left: 20px;
  font-size: 2.4rem;
}

@media screen and (min-width: 769px) {
  .case__tit {
    margin: 60px auto;
    font-size: 2.8rem;
  }
}

.case__tit::before {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: #E95513;
  content: '';
}

.case__tit-q {
  margin: 30px auto 15px;
  color: #ce480a;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.7;
}

.case__tit-q::before {
  padding-right: 6px;
  content: '-';
}

.case__txt {
  margin-bottom: 18px;
  color: #000;
  font-size: 1.7rem;
  line-height: 1.6;
}

/*----------------------------------------------------
casepage table
---------------------------------------------------- */
.tCase {
  width: 100%;
}

.tCase.back-gray {
  border-radius: 8px;
  background: #f1f0f0;
}

.tCase.back-cream {
  border-radius: 8px;
  background: #F8F3E1;
}

.tCase tr.underline th {
  color: #E95513;
}

.tCase th {
  padding: 25px 10px 25px;
  color: #aaa;
  font-size: 2.8rem;
  vertical-align: middle;
}

@media screen and (min-width: 769px) {
  .tCase th {
    width: 250px;
    padding: 25px 40px 25px 25px;
    font-size: 3.4rem;
  }
}

.tCase td {
  padding: 20px 10px;
  font-size: 1.7rem;
  line-height: 2.0;
  vertical-align: middle;
}

@media screen and (min-width: 769px) {
  .tCase td {
    padding: 20px 20px 20px 10px;
    font-size: 1.8rem;
  }
}

.tCase02 {
  font-size: 1.6rem;
}

.tCase02 tr {
  border-bottom: 1px dotted #bbb;
}

.tCase02 th {
  padding: 7px;
}

.tCase02 td {
  padding: 7px;
}

/*----------------------------------------------------
table
---------------------------------------------------- */
.companytable {
  width: 100%;
  margin: 20px auto;
}

.companytable th {
  padding: 12px 5px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
  text-align: center;
  white-space: nowrap;
}

.companytable td {
  padding: 12px 7px;
  border: 1px solid #ccc;
  font-size: 1.6rem;
}

/*----------------------------------------------------
Servicepage topFbox
---------------------------------------------------- */
.serviceFbox {
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0 4% 20px;
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 769px) {
  .serviceFbox {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    padding: 0;
    border-bottom: none;
  }
}

.serviceFbox-02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.serviceFbox__item {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .serviceFbox__item {
    width: 45%;
  }
}

.serviceFbox__item02 {
  width: 48%;
  margin-bottom: 20px;
  padding: 25px 5px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .serviceFbox__item02 {
    width: 23%;
  }
}

.serviceFbox__tit {
  margin-bottom: 14px;
  color: #d84f10;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .serviceFbox__tit {
    margin-bottom: 20px;
    font-size: 2.6rem;
    text-align: left;
  }
}

.serviceFbox__tit02 {
  margin-bottom: 14px;
  color: #000;
  font-weight: 600;
  font-size: 2.0rem;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .serviceFbox__tit02 {
    margin-bottom: 20px;
    font-size: 2.0rem;
  }
}

.serviceFbox__txt {
  font-size: 1.7rem;
}

/*----------------------------------------------------
btn
---------------------------------------------------- */
.-----topbtn {
  display: inline-block;
  width: 70%;
  max-width: 100%;
  margin: 40px auto 20px;
  padding: 20px 10px;
  border: 2px solid transparent;
  border: 2px solid #eee;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1.8rem;
  font-size: 2.0rem;
  text-align: center;
  text-decoration: none;
  transition: .25s;
}

.-----topbtn:hover, .-----topbtn:focus {
  border-color: currentColor;
  background-color: #333;
  color: #fff;
}

.topbtn {
  display: inline-block;
  z-index: 1;
  position: relative;
  width: 70%;
  max-width: 100%;
  margin: 40px auto 20px;
  padding: 40px 6px;
  border: 1px solid #222;
  border: 2px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 4px 4px 1px rgba(233, 85, 19, 0.8);
  color: #111;
  color: #000;
  font-weight: 700;
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.topbtn::after {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  border: 1px solid #fff;
  border-radius: 12px;
  background-color: #E95513;
  box-shadow: 4px 4px 1px rgba(238, 238, 238, 0.1);
  content: '';
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.topbtn:hover, .topbtn:focus {
  color: #fff;
}

.topbtn:hover::after, .topbtn:focus::after {
  transform: scale(1, 1);
}

/*----------------------------------------------------
円
---------------------------------------------------- */
.circle {
  display: inline-block;
  position: relative;
  width: 70%;
  height: 100%;
  border-radius: 50%;
  background: #E95513;
  color: #fff;
  font-size: 1.7rem;
}

@media screen and (min-width: 769px) {
  .circle {
    width: 100%;
  }
}

.circle span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
}

/*----------------------------------------------------
吹き出し
---------------------------------------------------- */
.fukidashiR {
  display: inline-block;
  position: relative;
  min-width: 200px;
  max-width: 100%;
  margin: 1.5em 0 0 40px;
  padding: 17px 15px;
  border-radius: 10px;
  background: #E95513;
  font-size: 2.4rem;
}

.fukidashiR::before {
  position: absolute;
  bottom: 0;
  left: -38px;
  width: 13px;
  height: 12px;
  border-radius: 50%;
  background: #E95513;
  content: "";
}

.fukidashiR::after {
  position: absolute;
  bottom: 3px;
  left: -24px;
  width: 20px;
  height: 18px;
  border-radius: 50%;
  background: #E95513;
  content: "";
}

.fukidashiR p {
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

.fukidashiL {
  display: inline-block;
  position: relative;
  min-width: 200px;
  max-width: 100%;
  margin: 1.5em 0 0 40px;
  padding: 17px 15px;
  border-radius: 10px;
  background: #E95513;
  font-size: 2.4rem;
}

.fukidashiL::before {
  position: absolute;
  right: -38px;
  bottom: 0;
  width: 13px;
  height: 12px;
  border-radius: 50%;
  background: #E95513;
  content: "";
}

.fukidashiL::after {
  position: absolute;
  right: -24px;
  bottom: 3px;
  width: 20px;
  height: 18px;
  border-radius: 50%;
  background: #E95513;
  content: "";
}

.fukidashiL p {
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

/*----------------------------------------------------
hr
---------------------------------------------------- */
.tophr {
  margin: 20px auto 20px;
  color: #ccc;
}

/*----------------------------------------------------
TOPpage topFbox
---------------------------------------------------- */
.topFbox {
  margin-top: 30px;
  padding: 0 4%;
}

@media screen and (min-width: 769px) {
  .topFbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    padding: 0;
  }
}

.topFbox__item, .topFbox__item-shadow {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .topFbox__item, .topFbox__item-shadow {
    width: calc(100% / 3.15);
  }
}

.topFbox__item a, .topFbox__item-shadow a {
  text-decoration: none;
}

.topFbox__item-shadow {
  padding: 20px 10px;
  background: #f7fafe;
  box-shadow: 0 5px 10px #ddd;
}

.topFbox__item02 {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .topFbox__item02 {
    width: calc(100% / 2.2);
  }
}

.topFbox__item02 a {
  text-decoration: none;
}

.topFbox__item03 {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .topFbox__item03 {
    width: calc(1150px / 4);
  }
}

.topFbox__item03 a {
  text-decoration: none;
}

.topFbox__item04-l {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .topFbox__item04-l {
    width: 320px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .topFbox__item04-r {
    width: calc(100% - 370px);
  }
}

.topFbox__img {
  overflow: hidden;
  text-align: center;
}

.topFbox__sentence {
  padding: 16px 20px;
  text-align: left;
}

.topFbox__tit {
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
  font-size: 2.4rem;
}

.topFbox__txt, .topFbox__txt04 {
  margin-top: 20px;
  color: #000;
  font-size: 1.6rem;
  line-height: 2.8rem;
}

@media screen and (min-width: 769px) {
  .topFbox__txt, .topFbox__txt04 {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}

.topFbox__tit04 {
  color: #000;
  font-weight: bold;
  font-size: 2.4rem;
}

.topFbox__item-border {
  padding: 15px 9px 8px 15px;
  border: 1px solid #ccc;
}

/*----------------------------------------------------
TOPpage topPrice
---------------------------------------------------- */
.topPrice {
  padding: 0 15px 15px 15px;
}

.topPrice_tit {
  margin-bottom: 15px;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
}

.topPrice_price {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 3.6rem;
  text-align: center;
}

.topPrice_price span {
  font-size: 2.0rem;
}

.topPrice_txt {
  font-size: 1.8rem;
}
