@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body {
  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;
}
@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;*/
}

.text_right {
  margin-top: 5px;
  font-size: 14px;
  text-align: right;
}

/* .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;
}


/* --------------- text class --------------- */
.bold {
  font-weight: bold;
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  display: inline-block;
  background-color: #EC6D56;
  border-radius: 40px;
  color: #fff;
}
.btn.w {
  background-color: #EC6D56;
  color: #fff;
}
.btn.coming_soon {
  background-color: #ccc;
  color: #fff;
}
.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: #fff;
}
.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: #EC6D56;
}
.btn.w .arr::before {
  background-color: #EC6D56;
}
.btn .arr::after {
  width: 9px;
  height: 9px;
  border-top: 1px solid #EC6D56;
  border-right: 1px solid #EC6D56;
  transform-origin: center;
  transform: rotate(45deg);
}
.btn.w .arr::after {
  border-top: 1px solid #EC6D56;
  border-right: 1px solid #EC6D56;
}
@media (max-width: 519px) {
}

/* .btn_contents */
.btn_contents {
  margin-top: 80px;
  text-align: center;
}
.btn_contents img {
  display: block;
  max-width: 90%;
  margin-inline: auto;
}
.btn_contents a {
  display: inline-block;
  max-width: 100%;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 60px;
  background-color: #8CD0DF;
  border: 2px solid #fff;
  border-radius: 200px;
  color: #301C17;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 519px) {
  .btn_contents {
    margin-top: 40px;
  }
  .btn_contents a {
    max-width: 300px;
    padding: 15px 40px;
    font-size: 18px;
  }
}




/* ---------------------------------------------------------
 * #nav
** --------------------------------------------------------- */
#nav {
  position: fixed;
  z-index: 1000;
  left: 30px;
  top: 30px;
}
#nav .inner {
  position: relative;
  background-color: #EC6D56;
  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: #fff;
  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: 1499px) {
  #nav {
/*    left: calc(0.9375rem + (30 - 15) * ((100vw - 1200px) / (1500 - 1200)));*/
    left: 15px;
  }
}
@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: #fff;
}
.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: 115px;
  padding-right: 20px;
  pointer-events: none;
}
#header > div {
}
#header .left {
}
#header .left .box {
  display: flex;
  align-items: center;
  padding: 8px 6px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
#header .left .box div {
  padding: 10px 18px;
}
#header .left p {
  padding-left: 40px;
  font-size: 12px;
}
#header .right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1699px) {
  #header .left .box {
    padding: 0;
  }
  #header .left .box div:nth-child(1) img {
    width: 120px;
  }
  #header .left .box div:nth-child(2) {
    padding: 5px 8px 5px 12px;
  }
  #header .right {
  }
  #header .right img:nth-child(2) {
    width: 100px;
  }
}
@media (max-width: 1499px) {
  #header {
    padding-left: 90px;
  }
  #header .left .box {
    margin-top: -10px;
  }
  #header .left .box div:nth-child(1) img {
    width: 100px;
  }
  #header .left .box div:nth-child(2) {
    padding: 0 8px 0 12px;
  }
  #header .left .box div:nth-child(2) img {
    width: 110px;
  }
  #header .left p {
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
}
@media (max-width: 519px) {
  #header .left .box {
    display: none;
  }
  #header .right img:nth-child(1) {
    display: none;
  }
  #header .right img:nth-child(2) {
    width: 80px;
  }
}




/* ---------------------------------------------------------
 * #app_top
** --------------------------------------------------------- */
#app_top {
  position: fixed;
  z-index: 1000;
/*  right: 40px;*/
  right: 15px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
#app_top a {
  display: flex;
  justify-content: center;
  align-items: center;
/*  width: 70px;*/
  width: 57px;
  transition: all ease 0.3s;
}
#app_top a:hover {
/*  background-color: #0F3568DE;*/
}
/*@media (max-width: 1499px) {
  #app_top {
    right: calc(0.9375rem + (40 - 15) * ((100vw - 1200px) / (1500 - 1200)));
  }
  #app_top a {
    width: calc(3.5625rem + (70 - 57) * ((100vw - 1200px) / (1500 - 1200)));
  }
}
@media (max-width: 1199px) {
  #app_top {
    right: 15px;
  }
  #app_top a {
    width: 57px;
  }
}*/
@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;
  font-size: 15px;
  font-size: 14px;
  letter-spacing: 3px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#app_top .app .arr {
  margin-top: 10px;
  width: 25px;
  height: 25px;
}
/*@media (max-width: 1499px) {
  #app_top .app {
    padding: calc(1.25rem + (30 - 20) * ((100vw - 1200px) / (1500 - 1200))) 0;
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  #app_top .app {
    padding: 20px 0;
  }
}*/
@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: 100%;
  }
  #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;*/
  height: 57px;
  border: 1px solid #fff;
  font-size: 12px;
  transition: all ease 0.3s;
}
#app_top .top.disable {
  top: 120px;
}
/*@media (max-width: 1499px) {
  #app_top .top {
    height: calc(3.5625rem + (70 - 57) * ((100vw - 1200px) / (1500 - 1200)));
  }
}
@media (max-width: 1199px) {
  #app_top .top {
    height: 57px;
  }
}*/
@media (max-width: 519px) {
}




/* ---------------------------------------------------------
 * #fv
** --------------------------------------------------------- */
#fv {
}
#fv img {
  width: 100%;
}
@media (max-width: 519px) {
  #fv {
  }
  #fv img {
  }
}




/* ---------------------------------------------------------
 * #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: 30px;
  }
  #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: 100px;
  padding-bottom: 170px;
  overflow: hidden;
}
#lead .img {
  width: calc(726px + calc(50% - 750px));
}
#lead .img img {
  width: 100%;
  object-position: bottom left;
  object-fit: cover;
}
#lead .content {
  width: 595px;
  padding-left: 109px;
}
#lead h2 {
  position: relative;
  height: 143px;
  margin-top: -40px;
  padding-top: 40px;
  background-image: url("../img/lead_ttl_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#lead h2 img {
  max-width: 100%;
}
#lead h2 .deco {
  position: absolute;
  top: -30px;
  right: -250px;
}
#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;
  }
  #lead .content {
    width: calc(59500% /  1500);
    padding-left: calc(10900% /  1500);
  }
  #lead h2 .deco {
    /*width: calc(10.9375rem + ((1vw - 12px) * 16.6667));*/
    /*top: calc(-7.5rem + ((1vw - 12px) * 20));*/
    /*right: calc(-8.125rem + ((1vw - 12px) * -13.3333));*/
  }
}
@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: 40px 20px 20px;
  }
  #lead .img {
    width: 100%;
  }
  #lead .img img {
  }
  #lead .content {
    width: 100%;
    padding-left: 0;
    margin-top: 45px;
  }
  #lead h2 {
    text-align: center;
    margin-top: 0;
  }
  #lead h2 img:not(.deco) {
    width: calc(28600vw / 390);
  }
  #lead h2 .deco {
    width: calc(11400vw / 390);
    top: auto;
    bottom: 103%;
    right: 0;
  }
  #lead p {
    margin-top: -20px;
  }
  #lead .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    text-align: center;
  }
}




/* ---------------------------------------------------------
 * #visitor
** --------------------------------------------------------- */
#visitor {
  padding-bottom: 55px;
  background-color: #E0F0EB;
  background-image: url("../img/visitor_bg_txt.png"), url("../img/nami_w.png"), url("../img/nami_p.png"), linear-gradient(to bottom, #fff 70px, transparent 70px, transparent calc(100% - 205px), #fff calc(100% - 205px));
  background-repeat: no-repeat;
  background-position: left top 150px, top 70px center, bottom center, top center;
  background-size: auto, auto, auto, 100%;
  overflow: hidden;
}
/* .header */
#visitor .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#visitor .header .content {
  padding-right: 50px;
}
#visitor .header h2 {
  position: relative;
  margin-top: 20px;
}
#visitor .header h2 .deco {
  position: absolute;
  bottom: 0;
  left: 230px;
}
#visitor .header p {
  margin-top: 20px;
}
#visitor .header .img {
  position: relative;
  z-index: 1;
  margin-right: -100px;
}
#visitor .header .img img {
}
@media (max-width: 519px) {
  #visitor {
    margin-top: 0;
    padding-bottom: 150px;
    background-image: url("../img/visitor_bg_txt.png"), url("../img/nami_w_sp.png"), url("../img/nami_p_sp.png"), linear-gradient(to bottom, #fff 70px, transparent 70px, transparent calc(100% - 150px), #fff calc(100% - 150px));
    background-size: auto, 520px auto, 520px auto, 100%;
  }
  #visitor .header {
    display: block;
  }
  #visitor .header h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
    text-align: center;
  }
  #visitor .header h2 img:not(.deco) {
    width: calc(11700vw / 390);
  }
  #visitor .header h2 .deco {
    bottom: 5px;
    left: 110%;
    width: calc(8200vw/ 390);
  }
  #visitor .header .img {
    margin-right: 0;
    margin-top: 35px;
  }
  #visitor .header .img img {
    width: 100%;
  }
  #visitor .header .content {
    padding-right: 0;
  }
}

/* .detail */
#visitor .detail {
  margin-top: 65px;
}
#visitor .detail .box {
  padding: 40px 65px 60px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0px 0px 10px 0px #0F35681A;
}
#visitor .detail table {
  width: 100%;
}
#visitor .detail th,
#visitor .detail td {
  border-bottom: 1px dashed #000;
}
#visitor .detail th {
  padding: 10px 20px 10px 0;
  vertical-align: top;
}
#visitor .detail th span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 42px;
  background-color: #EC6D56;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
}
#visitor .detail td {
  padding: 13px 0;
}
#visitor .detail td a {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/ico_linkout.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 14px;
}
@media (max-width: 519px) {
  #visitor .detail {
    margin-top: 30px;
  }
  #visitor .detail .box {
    padding: 30px 20px;
  }
  #visitor .detail .detail_table th,
  #visitor .detail .detail_table td {
    display: block;
  }
  #visitor .detail .detail_table th {
    border-bottom: none;
    padding: 0;
  }
  #visitor .detail .detail_table th span {
    width: 100%;
    height: 36px;
  }
  #visitor .detail .detail_table td {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 15px;
  }
}

/* .access */
#visitor .access {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
#visitor .access .map {
  width: calc(100% - 410px);
  overflow: hidden;
}
#visitor .access .map iframe {
  max-width: 100%;
  margin-top: -150px;
}
#visitor .access .train {
  width: 370px;
}
#visitor .access img {
}
#visitor .access p {
  margin-top: 10px;
  font-size: 15px;
}
#visitor .access table {
  margin-top: 20px;
}
#visitor .access th {
  padding: 5px 0;
  font-weight: normal;
}
#visitor .access td {
  padding: 5px 0;
  font-size: 15px;
}
#visitor .access td:nth-child(3) {
  text-align: right;
  vertical-align: bottom;
}
@media (max-width: 519px) {
  #visitor .access {
    display: block;
    margin-top: 30px;
  }
  #visitor .access .map {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  #visitor .access .map iframe {
    width: 100%;
    height: calc(100% + 100px);
    margin-top: -100px;
  }
  #visitor .access .train {
    width: 100%;
    margin-top: 30px;
  }
  #visitor .access .ttl {
    text-align: center;
  }
  #visitor .access .ttl img {
    width: calc(18200vw / 390);
  }
  #visitor .access p {
    margin-top: 10px;
    font-size: 15px;
  }
  #visitor .access tr.hide-ml td {
    text-align: right;
    vertical-align: bottom;
  }
}




/* ---------------------------------------------------------
 * #company
** --------------------------------------------------------- */
#company {
  padding-top: 70px;
  padding-bottom: 100px;
  text-align: center;
}
#company .header {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 579px;
  padding-top: 50px;
  background-image: url("../img/company_ttl_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
}
#company .header .ttl {
}
#company .header .deco_l {
  position: absolute;
  right: 105%;
  top: 0;
}
#company .header .deco_r {
  position: absolute;
  left: 95%;
  top: 0;
}
#company .header p {
}
#company .btn_area {
  margin-top: 30px;
}
#company .btn_area .btn {
  padding: 20px 55px;
  font-size: 18px;
}
#company .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #company {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding: 0 0 70px;
  }
  #company .header {
    display: block;
    padding-top: 30px;
    background-image: url("../img/company_ttl_bg_sp.png");
    background-size: auto 34px;
  }
  #company .header .ttl {
    width: calc(17700vw / 390);
  }
  #company .header .deco_l {
    position: absolute;
    right: auto;
    left: 7%;
    top: auto;
    bottom: 80%;
    width: calc(9500vw / 390);
  }
  #company .header .deco_r {
    position: absolute;
    left: auto;
    right: 12%;
    top: auto;
    bottom: 80%;
    width: calc(4200vw / 390);
  }
  #company .header p {
    margin-top: 15px;
    padding: 0 20px;
    text-align: left;
  }
  #company .btn_area {
    margin-left: 20px;
    margin-right: 20px;
  }
  #company .btn_area .btn {
    width: 100%;
    padding: 20px 25px;
    font-size: 15px;
  }
}




.bg_pink {
  position: relative;
  z-index: 3;
  padding-bottom: 110px;
  background-color: #FAD8C7;
  border-radius: 80px;
}
@media (max-width: 1499px) {
  .bg_pink {
    border-radius: calc(8000vw / 1500);
    padding-bottom: 70px;
  }
}
@media (max-width: 519px) {
  .bg_pink {
    border-radius: 40px;
  }
}
/* ---------------------------------------------------------
 * #contents
** --------------------------------------------------------- */
#contents {
  position: relative;
  z-index: 2;
}
#contents h2 {
  position: relative;
  display: block;
  width: fit-content;
  padding: 125px 120px 0;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/contents_ttl_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}
#contents h2 .deco {
  position: absolute;
  right: -60px;
  bottom: -30px;
}
#contents .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 70px;
}
#contents section {
  width: calc(50% - 20px);
  padding: 30px 40px;
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
}
#contents .fullwidth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  padding: 30px 40px;
}
#contents .fullwidth > .btn_area {
  margin-top: 0;
}
#contents .fullwidth.col2 {
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 80px;
}
#contents .fullwidth.col2 > div {
  position: relative;
  width: 50%;
}
#contents .fullwidth.col2 .img {
  position: absolute;
  right: -70px;
  top: -40px;
}
#contents .stamp_rally {
  background-color: #FFFDE5;
  border: 3px solid #ED6D46;
}
#contents .selftest {
  width: 100%;
  background-color: #284C7F;
  padding: 30px 40px 0;
}
#contents .selftest h3 {
  max-width: 650px;
  width: calc(65000vw / 1200);
}
#contents .selftest .inner {
  display: flex;
  align-items: flex-end;
}
#contents .selftest .contents {
  padding-bottom: 30px;
  color: #fff;
}
#contents .selftest .btn_area {
  display: flex;
  gap: 20px;
}
#contents .selftest .btn_area .btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 250px;
  padding-inline: 30px;
}
#contents .selftest .img {
  flex-shrink: 0;
}
#contents .wrapper > .btn_area {
  width: 100%;
  text-align: center;
}
#contents .wrapper > .btn_area .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 300px;
  height: 70px;
}
#contents .gyokai_tour {
  position: relative;
  width: 100%;
  border: 30px solid #4874AE;
  padding: 40px 0 40px 40px;
  border-radius: 40px;
  text-align: left;
}
#contents .gyokai_tour .obi {
  position: absolute;
  left: -40px;
  top: -50px;
}
#contents .gyokai_tour h3 {
  display: block;
}
#contents .gyokai_tour h3 img {
}
#contents .gyokai_tour .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
#contents .gyokai_tour p {
  margin-top: 0;
}
#contents .gyokai_tour dl > div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
}
#contents .gyokai_tour dt {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 32px;
  background-color: #EC6D56;
  color: #fff;
  line-height: 1;
}
#contents .gyokai_tour dd {
  font-size: 15px;
}
#contents .gyokai_tour .img {
  flex-shrink: 0;
  width: calc(47900% / 1100);
}
#contents .gyokai_tour .img img {
}
#contents .gyokai_tour .btn_area {
  text-align: left;
}
#contents .gyokai_tour .btn_area .btn {
  width: fit-content;
  padding-inline: 30px;
}
#contents .schedule {
  width: 100%;
  padding: 60px 70px;
}
#contents .schedule p {
  margin-top: 40px;
  text-align: center;
}
#contents h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}
#contents .fullwidth h3 {
  display: block;
}
#contents h3 .num {
  position: absolute;
  left: -80px;
  top: -40px;
}
#contents section:nth-child(5) h3 .num {
  left: -40px;
}
#contents section:nth-child(6) h3 .num {
  left: -40px;
}
#contents h3 .ttl {
  max-width: 100%;
}
#contents section:nth-child(1) h3 {
  max-width: calc(46100% / 500);
}
#contents section:nth-child(2) > div:first-child h3 {
  max-width: calc(30600% / 500);
  margin: 0 auto 30px;
}
#contents section:nth-child(2) > div:last-child h3 {
  max-width: calc(44800% / 500);
  margin: 0 auto 30px;
}
#contents section:nth-child(3) h3 {
  max-width: calc(49400% / 500);
}
#contents section:nth-child(4) h3 {
  max-width: calc(43500% / 500);
}
#contents section:nth-child(5) h3 {
  max-width: 100%;
}
#contents section:nth-child(6) h3 {
  max-width: calc(38000% / 500);
}
#contents section:nth-child(7) h3 {
  max-width: calc(43900vw / 1200);
}
#contents .img {
}
#contents .img img {
  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 li {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 5px 5px 15px;
  background-color: #FFF2D7;
}
#contents ul:not(.simple) 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: #EC6D56;
}
#contents ul:not(.simple) 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 li img {
  vertical-align: middle;
}
#contents ul.simple {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
#contents ul.simple li {
  margin-top: 0;
  padding: 0 0 0 15px;
  background-color: transparent;
}
#contents ul.simple li:nth-child(2n) {
  width: 45%;
}
#contents ul.simple li:nth-child(2n+1) {
  width: 55%;
}
#contents ul.simple li.fullwidth {
  width: 100%;
}
#contents ul.simple li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: #EC6D56;
  border-radius: 10px;
}
#contents .advice {
  position: relative;
  padding: 20px;
  margin-top: 50px;
  background-color: #FDD108;
  border: 1px dashed #fff;
  border-radius: 10px;
}
#contents .advice .subttl {
  position: absolute;
  left: 10px;
  top: -20px;
}
#contents section > .subttl {
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
}
#contents .label {
  display: block;
  width: fit-content;
  padding: 8px 12px;
  margin-top: 10px;
  margin-right: auto;
  background-color: #FDD108;
  color: #301C17;
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
}
#contents section .btn_area {
  margin-top: 30px;
  text-align: center;
}
#contents .fullwidth .btn_area {
  width: 100%;
}
#contents section .btn_area .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 55px;
  font-size: 17px;
}
#contents section .btn_area .btn .arr {
  margin-left: 10px;
}
@media (max-width: 519px) {
  #contents {
    padding-top: 20px;
  }
  #contents h2 {
    width: auto;
    padding: 70px 0 0;
    background-image: url("../img/contents_ttl_bg_sp.png");
    text-align: center;
  }
  #contents h2 img {
    width: calc(15000vw / 390);
  }
  #contents h2 .deco {
    width: calc(7400% / 390);
    right: 20px;
    bottom: 70px;
  }
  #contents .wrapper {
    display: block;
    margin-top: 30px;
  }
  #contents section {
    width: 100%;
    margin-top: 20px;
    padding: 30px 20px;
  }
  #contents .fullwidth {
    display: block;
    padding: 30px 20px;
  }
  #contents .fullwidth.col2 > div {
    width: 100%;
  }
  #contents .fullwidth.col2 > div:last-child {
    margin-top: 30px;
  }
  #contents .fullwidth.col2 .img {
    position: static;
    margin-bottom: 10px;
  }
  #contents .fullwidth.col2 > div:first-child .subttl {
    width: calc(30100vw / 390);
  }
  #contents .fullwidth.col2 > div:last-child .subttl {
    width: calc(25000vw / 390);
  }
  #contents .fullwidth.col2 p {
    margin-top: 10px;
  }
  #contents .stamp_rally {
  }
  #contents .stamp_rally .pre1 {
    width: calc(13300vw / 390);
  }
  #contents .stamp_rally .pre2 {
    width: calc(9900vw / 390);
  }
  #contents .selftest {
    padding: 30px 20px 0;
  }
  #contents .selftest .inner {
    display: block;
  }
  #contents .selftest .contents {
    padding-bottom: 30px;
    color: #fff;
  }
  #contents .selftest h3 {
    width: 100%;
  }
  #contents .selftest h3 img {
    width: calc(26800vw / 390);
  }
  #contents .selftest .btn_area {
    justify-content: space-between;
    /*width: calc(100% + 20px);*/
    /*margin-left: -10px;*/
    gap: 10px;
  }
  #contents .selftest .btn_area .btn {
    width: 100%;
    padding-inline: 10px;
    font-size: 15px;
    justify-content: center;
  }
  #contents .selftest .btn_area .btn:nth-child(1) {
    /*width: calc(16500% / 300);*/
  }
  #contents .selftest .btn_area .btn:nth-child(2) {
    /*width: calc(12000% / 300);*/
  }
  #contents .wrapper > .btn_area {
    margin-top: 30px;
  }
  #contents .wrapper > .btn_area .btn {
    width: 100%;
    height: 60px;
  }
  #contents .gyokai_tour {
    border: 20px solid #4874AE;
    padding: 30px 20px 0;
  }
  #contents .gyokai_tour .obi {
    left: -25px;
    top: -30px;
    width: calc(26000vw / 390);
  }
  #contents .gyokai_tour h3 {
  }
  #contents .gyokai_tour h3 img {
    width: 100%;
  }
  #contents .gyokai_tour .inner {
    display: block;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  #contents .gyokai_tour dl > div {
    display: block;
    /*padding-top: 10px;*/
  }
  #contents .gyokai_tour dt {
    width: 80px;
    height: 28px;
  }
  #contents .gyokai_tour dd {
    margin-top: 5px;
  }
  #contents .gyokai_tour .img {
    display: block;
    width: 100%;
    margin-top: 14px;
  }
  #contents .gyokai_tour .img img {
  }
  #contents .gyokai_tour .btn_area {
    text-align: left;
  }
  #contents .gyokai_tour .btn_area .btn {
    width: calc(100% + 20px);
    height: auto;
    margin-left: -10px;
    padding: 10px 20px;
  }
  #contents .schedule {
    margin-top: 30px;
    padding: 30px 20px;
  }
  #contents .schedule h3 img {
    width: calc(26000vw / 390);
  }
  #contents .schedule p {
    margin-top: 20px;
  }
  #contents .schedule p img {
    width: calc(17300vw / 390);
  }
  #contents h3 {
  }
  #contents .fullwidth h3 {
    display: block;
  }
  #contents h3 .ttl {
    width: 100%;
  }
  #contents section:nth-child(1) h3 {
    max-width: calc(29200vw / 390);
  }
  #contents section:nth-child(2) > div:first-child h3 {
    max-width: calc(21400vw / 390);
    /*margin: 0 auto 30px;*/
  }
  #contents section:nth-child(2) > div:last-child h3 {
    max-width: calc(30400vw / 390);
    margin-bottom: 10px;
  }
  #contents section:nth-child(3) h3 {
    max-width: calc(26400vw / 390);
  }
  #contents section:nth-child(4) h3 {
    max-width: calc(30400vw / 390);
  }
  #contents section:nth-child(5) h3 {
    max-width: calc(23900vw / 390);
  }
  #contents section:nth-child(6) h3 {
    max-width: calc(26600vw / 390);
  }
  #contents section:nth-child(7) h3 {
    max-width: calc(15800vw / 390);
  }
  #contents section:nth-child(8) h3 {
    max-width: calc(23300vw / 390);
  }
  #contents h3 .num {
    width: calc(4900vw / 390);
    left: -40px;
  }
  #contents section:nth-child(3) h3 .num {
    left: 10px;
  }
  #contents section:nth-child(4) h3 .num {
    left: -10px;
  }
  #contents section:nth-child(6) h3 .num {
    left: 0px;
  }
  #contents section:nth-child(7) h3 .num {
    left: -50px;
  }
  #contents section:nth-child(1) .img img {
    max-width: calc(29000vw / 390);
  }
  #contents section:nth-child(2) .img img {
    max-width: calc(6900vw / 390);
  }
  #contents section:nth-child(3) .img img {
    max-width: calc(7700vw / 390);
  }
  #contents section:nth-child(4) .img img {
    max-width: calc(10300vw / 390);
  }
  #contents section:nth-child(5) .img img {
    max-width: calc(7700vw / 390);
  }
  #contents section:nth-child(6) .img img {
    max-width: calc(5600vw / 390);
  }
  #contents section:nth-child(7) .img img {
    max-width: calc(7000vw / 390);
  }
  #contents section:nth-child(8) .img img {
    max-width: calc(10100vw / 390);
  }
  #contents section:nth-child(7) p img {
    max-width: calc(18100vw / 390);
    margin-top: 5px;
  }
  #contents p {
    font-size: 15px;
  }
  #contents ul {
  }
  #contents li {
  }
  #contents li::before {
  }
  #contents li:not(:first-child)::after {
  }
  #contents li span {
  }
  #contents li img {
    width: calc(12200vw / 390);
  }
  #contents ul.simple {
    display: block;
    font-size: 15px;
  }
  #contents ul.simple li {
    margin-top: 0;
    padding: 0 0 0 15px;
    background-color: transparent;
  }
  #contents ul.simple li:nth-child(2n),
  #contents ul.simple li:nth-child(2n+1) {
    width: 100%;
  }
  #contents ul.simple li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #EC6D56;
    border-radius: 10px;
  }
  #contents .advice {
    padding: 20px;
    margin-top: 50px;
    background-color: #FDD108;
    border: 1px dashed #fff;
    border-radius: 10px;
  }
  #contents .advice .subttl {
    width: calc(14400vw / 390);
    left: 10px;
    top: -20px;
  }
  #contents .advice p {
    margin-top: 0;
  }
  #contents section > .subttl {
    font-size: 17px;
  }
  #contents .label {
    margin-top: 20px;
    font-size: 17px;
  }
  #contents section .btn_area {
    margin-top: 20px;
  }
  #contents section .btn_area .btn {
    width: 100%;
    padding: 20px;
    font-size: 15px;
  }
  #contents section:nth-child(3) .text_right img {
    width: calc(21000vw / 390);
  }
}




/* ---------------------------------------------------------
 * #flow
** --------------------------------------------------------- */
#flow {
  margin-top: -80px;
  padding-top: 155px;
  padding-bottom: 110px;
  background-color: #E0F0EB;
}
#flow h2 {
  padding-top: 50px;
  margin-bottom: 40px;
  background-image: url("../img/flow_ttl_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
}
#flow h2 div {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}
#flow h2 .deco {
  position: absolute;
  bottom: 0;
  left: 103%;
}
#flow .inner {
  position: relative;
  padding-top: calc(40300% / 1227);
  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: calc(5700% / 1227);
  top: calc(23000% / 400);
  width: calc(28000% / 1227);
  text-align: center;
}
#flow .inner .btn_area .btn {
  max-width: 300px;
  width: 100%;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-size: 17px;
}
#flow .inner .btn_area .btn span {
  margin-left: 15px;
}
#flow .inner .btn_area p {
  font-size: 15px;
}
@media (max-width: 519px) {
  #flow {
    margin-top: -40px;
    padding-top: 80px;
    padding-bottom: 50px;
    border-radius: 40px 40px 0 0;
  }
  #flow .wrapper {
  }
  #flow h2 {
    height: auto;
    padding-top: 60px;
    background-image: url("../img/flow_ttl_bg_sp.png");
    background-size: 390px auto;
  }
  #flow h2 .ttl {
    width: calc(14700vw / 390);
  }
  #flow h2 .deco {
    bottom: -5px;
    left: 110%;
    width: calc(4400vw / 390);
  }
  #flow .inner {
    max-width: 358px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    /*padding-top: calc(179800% / 716);*/
    aspect-ratio: 716 / 1798;
    background-image: url("../img/flow_bg_sp.png");
  }
  #flow .inner .btn_area {
    top: calc(15000vw / 390);
    left: 0;
    width: 100%;
  }
  #flow .inner .btn_area .btn {
    width: 80%;
    padding: 15px;
    font-size: 15px;
  }
  #flow .inner .btn_area p {
    font-size: 14px;
  }
}
/* .btn_contents */
#flow .btn_contents {
  margin-top: 80px;
}
@media (max-width: 519px) {
  #flow .btn_contents {
    margin-top: 40px;
  }
}




/* ---------------------------------------------------------
 * #footer
** --------------------------------------------------------- */
#footer {
  padding-top: 70px;
  padding-bottom: 30px;
  background-color: #4874AE;
  color: #fff;
  overflow: hidden;
}
#footer .wrapper {
  display: flex;
  max-width: 1420px;
  justify-content: space-between;
  align-items: flex-start;
}
#footer .logo {
  width: calc(58000% / 1380);
}
#footer .logo img {
  max-width: 100%;
}
#footer .logo .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: calc(2000% / 580);
  margin-top: 20px;
}
#footer .content {
  width: calc(74500% / 1380);
  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,
#footer .left dd {
  padding-bottom: 10px;
}
#footer .left dt {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  padding-left: 10px;
}
#footer .left dt::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  background-color: #fff;
}
#footer .left dd {
  width: calc(100% - 140px);
}
#footer .left dd span {
  font-size: 14px;
}
#footer .left .contact {
  margin-top: 10px;
}
#footer .left .contact div {
  font-size: 29px;
  font-weight: bold;
  line-height: 1.5;
}
#footer .copy {
  margin-top: 30px;
  font-size: 11px;
  text-align: center;
}
@media (max-width: 519px) {
  #footer {
    padding-bottom: 110px;
  }
  #footer .wrapper {
    display: block;
  }
  #footer .logo {
    width: 100%;
  }
  #footer .logo img {
  }
  #footer .logo .flex {
    display: block;
    text-align: center;
  }
  #footer .logo .flex .jobfair {
    width: calc(19300vw / 390);
  }
  #footer .logo .flex .osaka {
    width: calc(25300vw / 390);
    margin-top: 20px;
  }
  #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;
  }
}