@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
/*  position: relative;*/
  color: #000;
  font-size: 16px;
  line-height: 1.8;
/*  font-family: 'Noto Sans JP', sans-serif;*/
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
/*  text-align: justify;*/
/*  letter-spacing: 1px;*/
}
@media (min-width: 960px) {
  .hide-l  { display: none !important; }
}
@media (max-width: 959px) and (min-width: 520px) {
  .hide-m  { display: none !important; }
}
@media (min-width: 520px) {
  .hide-ml  { display: none !important; }
}
@media (max-width: 519px) {
  .hide-s  { display: none !important; }
}

/* webfont */
.ff_Ropa {
  font-family: 'Ropa Sans', sans-serif;
}

/* .rollover  */
.rollover {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.rollover:hover {
  opacity: 0.7;
}
/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* --------------- .wrapper --------------- */
.wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #182D7B;
  border-radius: 40px;
  color: #fff;
}
.btn.w {
  background-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: #182D7B;
}
.btn .arr {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 30px;
  vertical-align: middle;
}
.btn.w .arr {
  background-color: #182D7B;
}
.btn .arr::before,
.btn .arr::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
}
.btn .arr::before {
  width: 12px;
  height: 1px;
  background-color: #182D7B;
}
.btn.w .arr::before {
  background-color: #fff;
}
.btn .arr::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #182D7B;
  border-right: 1px solid #182D7B;
  transform-origin: center;
  transform: rotate(45deg);
}
.btn.w .arr::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
#nav {
  position: fixed;
  z-index: 1000;
  left: 40px;
  top: 30px;
}
#nav .inner {
  position: relative;
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
#nav .gnavi_btn {
}
#nav .gnavi {
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  transition: all ease 0.3s;
  opacity: 0;
}
#nav .gnavi.active {
  max-width: var(--max-width);
  max-height: var(--max-height);
  opacity: 1;
}
#nav .gnavi ul {
  padding: 15px 15px 30px;
}
#nav .gnavi li:not(:first-child) {
  margin-top: 15px;
}
#nav .gnavi a {
  display: block;
  padding-right: 80px;
  color: #182D7B;
  font-size: 18px;
  font-weight: bold;
  word-break: keep-all;
}
#nav .gnavi a:hover {
  text-decoration: underline;
}
#nav .deco {
  position: absolute;
  left: 0px;
  bottom: -30px;
  pointer-events: none;
}
@media (max-width: 519px) {
  #nav {
    left: 20px;
    top: 20px;
  }
  #nav .inner {
  }
  #nav .deco {
    left: -10px;
    bottom: -27px;
    width: 58px;
  }
}

/* gnavi_btn */
.gnavi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 20px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gnavi_btn.open {
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #182D7B;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}
@media (max-width: 519px) {
  .menu-trigger {
    width: 26px;
    height: 18px;
  }
}




/* ---------------------------------------------------------
 * #header
** --------------------------------------------------------- */
#header {
  position: fixed;
  z-index: 900;
  left: 0;
  top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-left: 125px;
  padding-right: 20px;
}
#header > div {
  padding: 10px;
  background-color: #182D7B;
  border-radius: 10px;
}
#header .left {
}
#header .right {
}
@media (max-width: 1499px) {
}
@media (max-width: 519px) {
  #header {
    display: block;
    padding-left: 75px;
  }
  #header .left{
    display: none;
  }
  #header .right {
    width: fit-content;
  }
  #header .right img {
    width: 68px;
  }
}




/* ---------------------------------------------------------
 * #app_top
** --------------------------------------------------------- */
#app_top {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  transition: all ease 0.3s;
}
#app_top a:hover {
/*  background-color: #0F3568DE;*/
}
@media (max-width: 519px) {
  #app_top {
    flex-direction: row;
    justify-content: space-between;
    left: 0;
    right: 0;
    bottom: 20px;
    padding: 0 20px;
  }
  #app_top a {
    display: inline-flex;
    width: auto;
  }
}

/* .app */
#app_top .app {
  position: relative;
  margin-bottom: 10px;
  padding: 30px 0;
  font-size: 15px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#app_top .app .arr {
  margin-top: 10px;
}
#app_top .app img {
  position: absolute;
  right: -35px;
  bottom: -25px;
}
@media (max-width: 519px) {
  #app_top .app {
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #app_top .app:nth-child(1) {
    width: calc(13000% / 320);
    width: 100%;
  }
  #app_top .app:nth-child(2) {
    width: calc(17500% / 320);
  }
  #app_top .app .arr {
    margin-top: 0;
    margin-left: 10px;
  }
  #app_top .app img {
    right: calc(50% - 170px);
  }
}

/* .top */
#app_top .top {
  position: relative;
  top: 0;
  height: 70px;
  border: 1px solid #fff;
  font-size: 12px;
  transition: all ease 0.3s;
}
#app_top .top.disable {
  top: 120px;
}
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
  background-image: linear-gradient(175deg, #182D7B 49.9%, #EB6100 50.1%);
}
#fv img {
  width: 100%;
  height: 882px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1499px) {
  #fv {
    position: relative;
    padding-top: 58.8%;
  }
  #fv img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 519px) {
  #fv {
    padding-top: 0;
  }
  #fv img {
    position: static;
    height: auto;
  }
}




/* ---------------------------------------------------------
 * #internal_link
** --------------------------------------------------------- */
#internal_link {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
  text-align: center;
}
#internal_link a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 70px;
  font-size: 18px;
}
#internal_link a span {
  margin-left: 15px;
  transform-origin: center;
  transform: rotate(90deg);
}
@media (max-width: 519px) {
  #internal_link {
    justify-content: space-between;
    gap: 0;
    margin-top: 40px;
  }
  #internal_link a {
    height: auto;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1px;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #internal_link a:nth-child(1) {
    width: calc(13000% / 320);
  }
  #internal_link a:nth-child(2) {
    width: calc(17500% / 320);
  }
  #internal_link a span {
    margin-left: 10px;
  }
}




/* ---------------------------------------------------------
 * #lead
** --------------------------------------------------------- */
#lead {
  display: flex;
  padding-top: 60px;
  padding-bottom: 430px;
  background-image: url("../img/lead_bg.png");
  background-repeat: no-repeat;
  background-position: left 30% bottom 0;
}
#lead .img {
  width: calc(726px + calc(50% - 750px));
}
#lead .img img {
  width: 100%;
  height: 512px;
  border-radius: 0 40px 40px 0;
  object-position: bottom left;
  object-fit: cover;
}
#lead .content {
  width: 515px;
  padding-left: 109px;
}
#lead h2 img {
  max-width: 100%;
}
#lead p {
  margin-top: 30px;
}
#lead p span {
  color: #EB6100;
  font-weight: bold;
}
#lead .btn_area {
  margin-top: 30px;
}
#lead .btn_area .btn {
  padding: 20px 35px;
  font-size: 18px;
}
#lead .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 1499px) {
  #lead {
  }
  #lead .img {
    width: calc(72600% / 1500);
  }
  #lead .img img {
    height: auto;
    border-radius: 0 40px 40px 0;
  }
  #lead .content {
    padding-left: calc(10900% /  1500);
  }
}
@media (max-width: 1199px) {
  #lead .content {
    width: calc(51500% / 1200);
    padding-left: calc(3.75rem + ((1vw - 12px) * 8.3333));
  }
}
@media (max-width: 519px) {
  #lead {
    display: block;
    padding: 80px 20px 200px;
    background-position: bottom right -40px;
    background-size: 90%;
  }
  #lead .img {
    width: 100%;
  }
  #lead .img img {
    border-radius: 20px;
  }
  #lead .content {
    width: 100%;
    padding-left: 0;
    margin-top: 45px;
  }
  #lead p {
    margin-top: 20px;
  }
  #lead .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    text-align: center;
  }
}




/* ---------------------------------------------------------
 * #herbishall
** --------------------------------------------------------- */
#herbishall {
  margin-top: -300px;
  padding-bottom: calc(145px + 150px);
  background-image: linear-gradient(173deg, transparent 350px, #EB6100 352px);
  overflow: hidden;
}
/* .header */
#herbishall .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#herbishall .header .content {
}
#herbishall .header h2 {
  margin-top: 20px;
}
#herbishall .header .img {
  position: relative;
  z-index: 1;
  margin-right: -100px;
}
#herbishall .header .img img {
  border-radius: 40px;
}
@media (max-width: 519px) {
  #herbishall {
    margin-top: -100px;
    padding-bottom: 200px;
    background-image: linear-gradient(173deg, transparent 220px, #EB6100 222px);
  }
  #herbishall .header {
    display: block;
  }
  #herbishall .header h2 {
    text-align: center;
  }
  #herbishall .header h2 img {
    max-width: 100%;
  }
  #herbishall .header .img {
    margin-right: 0;
    margin-top: 35px;
  }
  #herbishall .header .img img {
    width: 100%;
    border-radius: 20px;
  }
}

/* .detail */
#herbishall .detail {
  margin-top: -50px;
}
#herbishall .detail .box {
  padding: 40px 65px 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px #0F35681A;
}
#herbishall .detail table {
  width: 100%;
}
#herbishall .detail th,
#herbishall .detail td {
  border-bottom: 1px dashed #000;
}
#herbishall .detail th {
  padding: 10px 20px 10px 0;
  vertical-align: top;
}
#herbishall .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 36px;
  background-color: #EB6100;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
#herbishall .detail td {
  padding: 13px 0;
}
#herbishall .detail td a {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/ico_linkout_b.png");
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 519px) {
  #herbishall .detail {
    margin-top: 30px;
  }
  #herbishall .detail .box {
    padding: 30px 20px;
  }
  #herbishall .detail th,
  #herbishall .detail td {
    display: block;
  }
  #herbishall .detail th {
    border-bottom: none;
    padding: 0;
  }
  #herbishall .detail th span {
    width: 100%;
    height: 36px;
  }
  #herbishall .detail td {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

/* .access */
#herbishall .access {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
#herbishall .access .map {
  width: calc(100% - 410px);
}
#herbishall .access .map iframe {
  max-width: 100%;
}
#herbishall .access .train {
  width: 370px;
}
#herbishall .access img {
}
#herbishall .access p {
  margin-top: 10px;
  font-size: 15px;
}
#herbishall .access table {
  margin-top: 20px;
}
#herbishall .access td {
  padding: 10px 0;
  font-size: 15px;
}
#herbishall .access td:nth-child(2) {
  text-align: right;
  vertical-align: bottom;
}
@media (max-width: 519px) {
  #herbishall .access {
    display: block;
    margin-top: 30px;
  }
  #herbishall .access .map {
    width: 100%;
  }
  #herbishall .access .map iframe {
    width: 100%;
    height: 200px;
  }
  #herbishall .access .train {
    width: 100%;
    margin-top: 30px;
  }
  #herbishall .access .ttl {
    text-align: center;
  }
  #herbishall .access .ttl img {
    max-width: 100%;
  }
  #herbishall .access p {
    margin-top: 10px;
    font-size: 15px;
  }
  #herbishall .access table {
    margin-top: 10px;
  }
  #herbishall .access tr {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #herbishall .access td {
    padding: 10px 0;
    font-size: 15px;
  }
  #herbishall .access td:nth-child(1) {
    display: block;
    width: calc(100% - 80px);
    padding-bottom: 5px;
    margin-bottom: 0;
    font-weight: bold;
  }
  #herbishall .access td:nth-child(2) {
    display: block;
    width: 80px;
    padding-top: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
  }
}




/* ---------------------------------------------------------
 * #contents
** --------------------------------------------------------- */
#contents {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  background: #EB6100;
  overflow: hidden;
}
#contents .inner {
  margin-left: -150px;
  margin-right: -150px;
  padding: 150px 150px 220px;
  background-color: #182D7B;
  background-image: url("../img/contents_bg_t.png"), url("../img/contents_bg_b.png");
  background-repeat: no-repeat;
  background-position: center top 80px, center bottom 120px;
  border-radius: 50% / 150px;
}
@media (max-width: 519px) {
  #contents {
  }
  #contents .inner {
    padding: 150px 150px 170px;
    background-color: #182D7B;
    background-position: center top 80px, center bottom 70px;
  }
}

#contents h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 92px;
  background-image: url("../img/contents_tit_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#contents .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contents section {
  width: calc(50% - 20px);
  margin-top: 40px;
  padding: 40px 50px;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
}
#contents h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}
#contents h3 img {
  max-width: 100%;
}
#contents .photo {
  max-width: 100%;
}
#contents p {
  margin-top: 20px;
  text-align: left;
}
#contents p.note {
  margin-top: 5px;
  font-size: 14px;
}
#contents ul {
  text-align: left;
  line-height: 32px;
}
#contents ul.simple {
  color: #182D7B;
  font-size: 15px;
  font-weight: bold;
}
#contents li {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 5px 5px 5px 15px;
  background-color: #EFF0F6;
  font-size: 14px;
}
#contents ul.simple li {
  color: #182D7B;
  font-size: 15px;
  font-weight: bold;
}
#contents li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  display: block;
  width: 10px;
  height: 4px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #EB6100;
}
#contents li:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 14px;
  margin-left: auto;
  margin-right: auto;
  border-right: 1px dashed #000;
}
#contents li span {
  flex-shrink: 0;
  display: inline-block;
  width: 120px;
  margin-right: 10px;
  color: #182D7B;
  font-size: 19px;
  font-weight: bold;
}
#contents .btn_area {
  margin-top: 20px;
  text-align: center;
}
#contents .btn_area .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 55px;
  font-size: 17px;
}
#contents .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #contents h2 {
  }
  #contents h2 img {
  }
  #contents .wrapper {
    display: block;
  }
  #contents section {
    width: 100%;
    margin-top: 50px;
    padding: 30px 20px;
  }
  #contents section:first-child {
    margin-top: 20px;
  }
  #contents h3 {
    display: block;
  }
  #contents h3 img {
    max-width: none;
  }
  #contents h3 .deco {
    bottom: calc(100% + 10px);
    right: 0;
  }
  #contents section:nth-child(2) h3 .deco {
    right: -15px;
  }
  #contents p {
    font-size: 15px;
  }
  #contents ul {
  }
  #contents li {
  }
  #contents li::before {
  }
  #contents li:not(:first-child)::after {
  }
  #contents li span {
  }
  #contents .btn_area {
    margin-top: 30px;
    padding: 0 20px;
  }
  #contents .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
  }
}




/* ---------------------------------------------------------
 * #online
** --------------------------------------------------------- */
#online {
  position: relative;
  z-index: 3;
  padding-top: 10px;
  padding-bottom: 300px;
  background-image: linear-gradient(353deg, transparent 250px, #EB6100 252px);
}
/* .header */
#online .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -40px;
}
#online .header .img {
  width: calc(61500% / 1200);
}
#online .header .img img {
  max-width: 100%;
}
#online .header .content {
  width: calc(53000% / 1200);
}
#online .header h2 {
}
#online .header h2 img {
  max-width: 100%;
}
#online .header p {
  margin-top: 30px;
  color: #182D7B;
}
#online .header .note {
  margin-top: 5px;
  font-size: 14px;
}
@media (max-width: 519px) {
  #online {
    padding-top: 50px;
    padding-bottom: 200px;
    background-image: linear-gradient(353deg, transparent 150px, #EB6100 152px);
  }
  #online .header {
    position: relative;
    top: -50px;
    display: block;
    margin-bottom: -50px;
  }
  #online .header .img,
  #online .header .content {
    width: 100%;
  }
  #online .header .content img {
    max-width: 100%;
  }
  #online .header h2 {
    margin-top: 30px;
    text-align: center;
  }
  #online .header p {
    margin-bottom: 20px;
  }
}

/* .detail */
#online .detail {
  margin-top: 50px;
}
#online .detail .areas {
  display: flex;
  justify-content: space-between;
}
#online .detail section {
  position: relative;
  width: calc(58000% / 1200);
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 40px;
}
#online .detail .num {
  position: absolute;
  left: 30px;
  top: -20px;
}
#online .detail h3 {
  text-align: center;
}
#online .detail h3 img {
}
#online .detail p {
  margin-top: 15px;
}
#online .detail .box {
  margin-top: 40px;
  padding: 50px 70px;
  background-color: #fff;
  border-radius: 40px;
}
#online .detail table {
  width: 100%;
}
#online .detail th,
#online .detail td {
  border-bottom: 1px dashed #000;
}
#online .detail th {
  padding: 10px 20px 10px 0;
  vertical-align: top;
}
#online .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 36px;
  background-color: #EB6100;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
#online .detail td {
  padding: 13px 0;
}
#online .detail td a {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/ico_linkout_o.png");
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 519px) {
  #online .detail .areas {
    display: block;
  }
  #online .detail section {
    width: 100%;
    padding: 40px 20px 30px;
    border-radius: 30px;
  }
  #online .detail .area2 {
    margin-top: 30px;
  }
  #online .detail .num {
    left: 10px;
    top: -20px;
  }
  #online .detail .box {
    padding: 30px 20px;
    margin-top: 30px;
  }
  #online .detail th,
  #online .detail td {
    display: block;
  }
  #online .detail th {
    border-bottom: none;
    padding: 0;
  }
  #online .detail th span {
    width: 100%;
    height: 36px;
  }
  #online .detail td {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}




/* ---------------------------------------------------------
 * #flow
** --------------------------------------------------------- */
#flow {
  margin-top: -50px;
}
#flow h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 92px;
  padding-top: 70px;
  background-image: url("../img/flow_tit_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
}
#flow .inner {
  position: relative;
  padding-top: calc(36800% / 1200);
  background-image: url("../img/flow_bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#flow .inner .btn_area {
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(17000% / 294);
  width: calc(38000% / 1200);
  text-align: center;
}
#flow .inner .btn_area .btn {
  max-width: 300px;
  width: 100%;
  padding: 20px;
  font-size: 18px;
}
#flow .inner .btn_area .btn span {
  margin-left: 15px;
}
#flow .inner .btn_area p {
  margin-top: 10px;
  font-size: 15px;
}
@media (max-width: 1199px) {
  #flow .inner .btn_area .btn {
    width: calc(23.75rem + ((1vw - 12px) * 62.5));
  }
}
@media (max-width: 519px) {
  #flow {
    margin-top: -150px;
    padding-top: 80px;
    padding-bottom: 50px;
  }
  #flow .wrapper {
  }
  #flow h2 {
    height: auto;
    padding-top: 35px;
    background-image: url("../img/flow_tit_bg_sp.png");
    background-size: 390px auto;
  }
  #flow h2 img {
    height: 30px;
  }
  #flow .inner {
    margin-top: 30px;
    padding-top: calc(160800% / 702);
    background-image: url("../img/flow_bg_sp.png");
  }
  #flow .inner .btn_area {
    top: calc(13000vw / 390);
    width: 100%;
  }
  #flow .inner .btn_area .btn {
    width: 80%;
    font-size: 15px;
  }
  #flow .inner .btn_area p {
    font-size: 14px;
  }
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  margin-top: -130px;
  color: #fff;
  overflow: hidden;
}
#footer .inner {
  margin-left: -150px;
  margin-right: -150px;
  padding: 230px 150px 10px;
  background: #182D7B;
  border-radius: 50% 50% 0 0 / 150px 150px 0 0;
}
#footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .logo {
}
#footer .logo img {
  max-width: 100%;
}
#footer .right {
  margin-top: 30px;
}
#footer .right .ttl {
  flex-shrink: 0;
  font-size: 15px;
}
#footer .right p {
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
#footer .content {
  width: 720px;
  padding-left: 20px;
}
#footer .left {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
#footer .left dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: 2;
}
#footer .left dt {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  padding-left: 10px;
}
#footer .left dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
}
#footer .left dd {
  width: calc(100% - 140px);
}
#footer .left dd span {
  font-size: 14px;
}
#footer .copy {
  margin-top: 100px;
  font-size: 11px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer .inner {
    padding-top: 150px;
    padding-bottom: 110px;
  }
  #footer .wrapper {
    display: block;
  }
  #footer .logo {
  }
  #footer .logo img {
    max-width: 100%;
  }
  #footer .content {
    max-width: 320px;
    width: 100%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .left {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  #footer .left dl {
    display: block;
  }
  #footer .left dt {
    padding-left: 15px;
    margin-top: 10px;
  }
  #footer .left dd {
    width: 100%;
  }
  #footer .right {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
  #footer .right .ttl {
    font-size: 14px;
  }
  #footer .right p {
    margin-top: 10px;
    font-size: 17px;
  }
  #footer .copy {
    margin-top: 50px;
    font-size: 10px;
  }
}