@charset "UTF-8";
/* CSS Document */
.pc {
  display: inherit !important;
}

.ipad, .sp {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .ipad {
    display: inherit !important;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc, .ipad {
    display: none !important;
  }
  .sp {
    display: inherit !important;
  }
}
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
/* 共通パーツ ＝＝＝＝＝＝＝＝＝＝ */
:root {
  --main-color:#0E8DBA;
  --bg-color:#F7F9FA;
  --green-color:#038D37;
  --black-color:#1A1A1C;
  --red-color:#E74C3C;
  --white-color:#fff;
  --gray-color:#A5A5A5;
  --section-margin:5.5rem 0 7rem;
  --border-radius:1.4rem;
}

body {
  font-size: 1.6rem;
  font-style: normal;
  color: var(--black-color);
  letter-spacing: 0.06em;
  line-height: 2.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

h2, h3, h4, h5 {
  font-weight: bold;
}

.red {
  color: var(--red-color);
}

.blue {
  color: var(--main-color);
}

.green {
  color: var(--green-color);
}

.line_bottom {
  border-bottom: solid 1px;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.indent2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent3 {
  padding-left: 3em;
  text-indent: -3em;
}

.line {
  text-decoration: underline;
}

/* 矢印アイコン */
.arrow {
  display: inline-block;
  vertical-align: middle;
  color: var(--white-color);
  line-height: 1;
  position: relative;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.8rem;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

.arrow_right {
  transform: translateX(-25%) rotate(45deg);
}

.arrow_bottom {
  transform: translateX(0%) rotate(135deg);
  margin-top: -0.4rem;
}

/* ボタン */
.btn {
  color: var(--white-color);
  background-color: var(--main-color);
  max-width: 36rem;
  border-radius: var(--border-radius);
  width: 100%;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.6rem auto 0;
  font-weight: 600;
  padding: 1.5rem 2rem;
  line-height: 1.4;
  text-align: center;
}
.btn.external::after {
  content: "";
  display: block;
  background-image: url(../img/external.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 13.5px;
  height: 13.5px;
  margin-left: 1rem;
}

.btn_box {
  display: flex;
  justify-content: center;
}

.btn.yakkyoku {
  background-color: var(--green-color);
}

/* main ＝＝＝＝＝＝＝＝＝＝ */
main {
  position: relative;
}

/* ヘッダー ＝＝＝＝＝＝＝＝＝＝ */
header {
  z-index: 9999;
  position: fixed;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  font-size: min(2vw, 1.8rem);
  font-weight: bold;
}
header .info {
  display: none;
}
header .header_wrapper {
  width: 100%;
  display: contents;
}

.header_inner {
  display: flex;
}

.header_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 8rem;
  width: 100vw;
  background-color: var(--main-color);
  color: var(--white-color);
}

header .nav_wrapper {
  display: flex;
  align-items: center;
}

.header_hamburger {
  display: none;
}

.nav_items {
  margin-right: min(2.3vw, 6rem);
}
.nav_items a {
  display: flex;
  align-items: center;
  font-size: min(1.6vw, 1.6rem);
}
.nav_items .arrow {
  transform: translateX(0%) rotate(135deg);
  bottom: 0.2rem;
}

.header_contact a {
  background-color: var(--white-color);
  color: var(--main-color);
  border-radius: 10rem;
  padding: 1rem 2.5rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_contact .arrow {
  color: var(--main-color);
}

/* wrapper ＝＝＝＝＝＝＝＝＝＝ */
.wrapper {
  padding: 8rem 10% 0;
}
.wrapper > section {
  position: relative;
}
.wrapper > section:nth-of-type(odd)::before {
  position: absolute;
  top: 0px;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  bottom: 0px;
  z-index: -1;
  background-color: var(--bg-color);
  content: "";
}
.wrapper h2 {
  font-size: 2.8rem;
}
.wrapper h3 {
  font-size: 2.4rem;
}

/* fv ＝＝＝＝＝＝＝＝＝＝ */
#fv {
  margin: 0 auto;
  text-align: center;
  padding: 7rem 0 3.6rem;
}
#fv img {
  width: 75%;
  margin: 0 auto;
}

.notice {
  font-size: 2.4rem;
  color: var(--red-color);
  font-weight: bold;
  line-height: 1.4;
}

/* 概要 ＝＝＝＝＝＝＝＝＝＝ */
#about {
  margin: 6rem auto 4rem;
}
#about .title img {
  left: -10.5rem;
  width: 10rem;
  margin-top: 0.8rem;
}
#about .btn_box_wrapper p {
  text-align: center;
  font-size: 1.8rem;
}
#about .btn_box .btn {
  height: 7.8rem;
  justify-content: space-between;
  margin: 3.6rem 2rem 0;
}
#about .btn_box .btn img {
  margin-right: 1rem;
}

/* 申請について ＝＝＝＝＝＝＝＝＝＝ */
.title {
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.2;
}
.title img {
  position: absolute;
}
.title.title_img {
  margin: 1.5rem auto 5.5rem;
}

#preparation {
  padding: var(--section-margin);
}
#preparation .title img {
  width: 7rem;
  left: -9rem;
}
#preparation .text_img_box .text_box {
  width: 70%;
}
#preparation .text_img_box .img_box {
  width: 25%;
  margin-left: 5%;
}
#preparation .text_img_box .img_box img {
  width: 100%;
  max-width: 30rem;
}

.box_wraooer {
  background-color: var(--white-color);
  border: solid 3px var(--main-color);
  border-radius: var(--border-radius);
  padding: 3.5rem 3.5rem 4.8rem;
  margin-top: 5.5rem;
}
.box_wraooer h3 {
  font-size: 2.6rem;
  color: var(--main-color);
  border-bottom: var(--main-color) solid 2px;
  padding-bottom: 2.5rem;
  margin-bottom: 3rem;
}
.box_wraooer .text_img_box {
  display: flex;
}
.box_wraooer .text_box h4 {
  font-size: 2.2rem;
  color: var(--main-color);
  margin-bottom: 2rem;
}
.box_wraooer .text_box h5 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.box_wraooer .text_box img {
  width: 100%;
}
.box_wraooer .text_box .red {
  color: var(--red-color);
}
.box_wraooer .text_box {
  margin-bottom: 4.5rem;
}
.box_wraooer .text_box:last-child {
  margin-bottom: 0;
}
.box_wraooer .text_img_box:last-child .text_box {
  margin-bottom: 0;
}

/* 注意事項ボックス */
.attent_box {
  border: solid 2px var(--main-color);
  border-radius: var(--border-radius);
  background-color: var(--white-color);
  padding: 4.5rem;
  margin-top: 4.5rem;
}
.attent_box p:last-child {
  margin-bottom: 0;
}
.attent_box .attent_list {
  margin-bottom: 2.5rem;
}
.attent_box .attent_list p {
  margin-bottom: 0;
}
.attent_box .attent_list:last-child {
  margin-bottom: 0;
}

/* 申請方法 ＝＝＝＝＝＝＝＝＝＝ */
.attent_box h5 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.attent_box h4 {
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 2.5rem;
}

.attent_box .red {
  color: #E74C3C;
}

.attent_box a {
  color: var(--main-color);
  border-bottom: solid 1px;
  margin-bottom: 2.5rem;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/* 申請方法 ＝＝＝＝＝＝＝＝＝＝ */
#application {
  padding: var(--section-margin);
}
#application .title img {
  width: 8.7rem;
  left: -10.5rem;
}

.HosYak_list {
  display: flex;
  justify-content: space-between;
}
.HosYak_list .linebox {
  width: 48%;
}
.HosYak_list .blue_linebox p, .HosYak_list .yakkyoku_linebox p {
  line-height: 2.1;
}
.HosYak_list .hospital_box, .HosYak_list .yakkyoku_box {
  width: 48%;
}

.linebox {
  margin-bottom: 4rem;
}

.linebox h3 {
  border-top: solid 4px;
  padding: 2.5rem 0;
  margin-bottom: 3.6rem;
  border-bottom: solid 2px;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  height: 9.5rem;
}

.blue_linebox h3 {
  color: var(--main-color);
}

.yakkyoku_linebox h3 {
  color: var(--green-color);
}

.linebox h3::before {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1rem;
}

.blue_linebox.hospital h3::before {
  background-image: url(../img/hospital.svg);
  width: 52px;
  height: 37px;
}

.yakkyoku_linebox h3::before {
  background-image: url(../img/yakkyoku.svg);
  width: 52px;
  height: 37px;
}

.blue_linebox.jGrants h3::before {
  background-image: url(../img/jGrants.svg);
  width: 35px;
  height: 23px;
}

.blue_linebox.attention h3::before {
  background-image: url(../img/attention.svg);
  width: 40px;
  height: 37px;
}

.blue_linebox.excel h3::before {
  background-image: url(../img/excel.svg);
  width: 40px;
  height: 37px;
}

.process {
  padding: 3.2rem 3.6rem 3.6rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  position: relative;
  margin-bottom: 4.3rem;
  border: var(--main-color) solid 3px;
}
.process .title_s {
  text-align: center;
  font-size: 2rem;
  border-bottom: solid 1px;
  padding-bottom: 1.8rem;
}
.process .title_s span {
  font-size: 1.3rem;
}
.process .title_s p {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}
.process .about {
  margin-top: 3.2rem;
}
.process::after {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/process_arrow_b.svg);
  width: 5.2rem;
  height: 4.7rem;
  position: absolute;
  bottom: -4.7rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.process:last-child::after {
  opacity: 0.5;
  content: none;
}
.process:last-child {
  margin-bottom: 0;
}

.hospital_box, .yakkyoku_box {
  border-radius: 0.7rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.hospital_box p:first-child, .yakkyoku_box p:first-child {
  margin-bottom: 0.5rem;
}

.hospital_box {
  border: var(--main-color) solid 3px;
}

.yakkyoku_box {
  border: var(--green-color) solid 3px;
}

/* マニュアル_Q&A ＝＝＝＝＝＝＝＝＝＝ */
#manual_qanda {
  padding: var(--section-margin);
}
#manual_qanda .title img {
  left: -8rem;
  width: 6rem;
}
#manual_qanda .manual {
  border-bottom: var(--main-color) solid 1px;
  padding-bottom: 5.5rem;
}
#manual_qanda #qanda .btn_box .btn {
  height: 7.8rem;
  justify-content: space-between;
  margin: 0 2rem;
}

/* お問い合わせ ＝＝＝＝＝＝＝＝＝＝ */
#contact {
  padding: var(--section-margin);
}
#contact p {
  text-align: center;
  font-size: 1.8rem;
}
#contact .form {
  border-bottom: var(--main-color) solid 1px;
  padding-bottom: 3.6rem;
}
#contact .telephone {
  margin-top: 3.6rem;
  border-bottom: var(--main-color) solid 1px;
  padding-bottom: 5.5rem;
}
#contact .telephone p {
  font-size: 2.4rem;
  color: var(--main-color);
  font-weight: 500;
}
#contact .telephone a {
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--main-color);
  margin: 2rem auto 0;
  display: block;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
#contact .telephone a::before {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 1rem;
  background-image: url(../img/phone.svg);
  width: 32px;
  height: 32px;
}

/* フッター ＝＝＝＝＝＝＝＝＝＝ */
footer {
  padding-bottom: 7rem;
}

.info {
  text-align: center;
}
.info h4 {
  color: var(--main-color);
  font-size: 2rem;
  margin-bottom: 1.8rem;
}

/* ==========================
SP
========================== */
@media only screen and (max-width: 767px) {
  /* 共通パーツ ＝＝＝＝＝＝＝＝＝＝ */
  :root {
    --section-margin:4rem 0 7rem;
  }
  /* ヘッダー ＝＝＝＝＝＝＝＝＝＝ */
  header {
    width: 100%;
    height: 100vh;
    font-size: 2.2rem;
    pointer-events: none;
  }
  header .header_wrapper {
    display: block;
    padding: 0 15% 0;
    margin-top: 8rem;
  }
  header .header_nav {
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: ease 0.3s;
    opacity: 0;
    display: block;
    overflow-y: scroll;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  header .nav_wrapper {
    flex-direction: column;
    width: 100%;
    margin-bottom: 5.5rem;
  }
  header .header_contact a {
    padding: 1.8rem 1.5rem;
  }
  header .info {
    display: block;
    background-color: var(--white-color);
    margin: 0 calc(50% - 50vw);
    padding: 2.5rem 0;
    margin-top: 5.5rem;
    width: 100%;
  }
  header .info h4 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  header .info p {
    font-size: 1.4rem;
    color: var(--black-color);
    font-weight: 400;
  }
  /* ハンバーガーメニュー */
  .hamburger_btn {
    display: block;
    width: 30px;
    height: -moz-fit-content;
    height: fit-content;
    position: fixed;
    right: 2rem;
    top: 2rem;
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
    pointer-events: auto;
  }
  .hamburger_btn.active span {
    background-color: var(--white-color);
  }
  .hamburger_btn span {
    width: 100%;
    height: 0.2rem;
    background-color: var(--black-color);
    position: relative;
    transition: ease 0.4s;
    display: block;
    border-radius: 1rem;
  }
  .hamburger_btn span:nth-child(1) {
    top: 0;
  }
  .hamburger_btn span:nth-child(2) {
    margin: 9px 0;
  }
  .hamburger_btn span:nth-child(3) {
    top: 0;
  }
  .header_nav.active {
    transform: translateX(0);
    opacity: 1;
  }
  .hamburger_btn.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger_btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger_btn.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
  }
  .nav_items {
    margin-right: 0;
    width: 100%;
    border-bottom: solid 1px;
    margin-bottom: 3rem;
  }
  .nav_items .arrow {
    transform: translateX(-25%) rotate(45deg);
    float: right;
  }
  .nav_items:last-child {
    margin-bottom: 0;
  }
  .nav_items a {
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  .header_contact {
    width: 100%;
  }
  .header_contact .arrow {
    margin-left: 2rem;
  }
  /* wrapper ＝＝＝＝＝＝＝＝＝＝ */
  .wrapper {
    padding: 0 5%;
  }
  .wrapper h2 {
    font-size: 2.6rem;
  }
  /* fv ＝＝＝＝＝＝＝＝＝＝ */
  #fv img {
    width: 100%;
  }
  .notice {
    font-size: 2rem;
  }
  /* 事業の概要 ＝＝＝＝＝＝＝＝＝＝ */
  #about .title img {
    left: -8rem;
    width: 7.7rem;
    margin-top: 0.3rem;
  }
  #about .btn_box {
    flex-direction: column;
  }
  #about .btn_box .btn {
    margin: 2.5rem auto 0;
  }
  /* 必要なもの ＝＝＝＝＝＝＝＝＝＝ */
  #preparation .text_img_box {
    flex-direction: column;
  }
  #preparation .title img {
    width: 6rem;
    left: -7.5rem;
  }
  #preparation .text_img_box .text_box {
    width: 100%;
  }
  #preparation .text_img_box .img_box {
    width: 50%;
    margin: 0;
  }
  #preparation .text_img_box .text_box {
    margin-bottom: 1.5rem;
  }
  #preparation .text_img_box {
    margin-bottom: 3.5rem;
  }
  #preparation .text_img_box:last-child {
    margin-bottom: 0;
  }
  .box_wraooer {
    padding: 2.8rem 2.8rem 3.5rem;
  }
  .box_wraooer h3 {
    font-size: 2.3rem;
  }
  .attent_box {
    padding: 3rem;
    font-size: 1.4rem;
  }
  .attent_box h4 {
    font-size: 2.2rem;
  }
  .attent_box h5 {
    font-size: 1.6rem;
  }
  /* 申請 ＝＝＝＝＝＝＝＝＝＝ */
  .attent_box a {
    letter-spacing: 0.01rem;
  }
  .title.title_img {
    margin: 0 auto 4rem;
  }
  #application .title img {
    width: 8rem;
    left: -9rem;
  }
  #application .btn_box {
    flex-direction: column;
  }
  #application .btn_jw {
    width: 100%;
  }
  #application .btn_w {
    margin-top: 1.8rem;
  }
  #application .attent_box:nth-last-child(2) {
    margin-top: 3.6rem;
  }
  .HosYak_list {
    flex-direction: column;
  }
  .HosYak_list .linebox {
    width: 100%;
  }
  .HosYak_list .blue_linebox p, .HosYak_list .yakkyoku_linebox p {
    line-height: 1.9;
  }
  .HosYak_list .hospital_box, .HosYak_list .yakkyoku_box {
    width: 100%;
  }
  .process {
    padding: 3rem;
  }
  /* Q&A ＝＝＝＝＝＝＝＝＝＝ */
  #manual_qanda #qanda .title img {
    left: -6rem;
    width: 5rem;
  }
  #manual_qanda #qanda .btn_box {
    flex-direction: column;
  }
  #manual_qanda #qanda .btn_box .btn {
    margin: 2.5rem auto 0;
  }
  #manual_qanda #qanda .btn_box .btn:first-of-type {
    margin-top: 0;
  }
  .accordion .title_s {
    font-size: 1.6rem;
  }
  /* お問い合わせ ＝＝＝＝＝＝＝＝＝＝ */
  #contact .telephone p {
    font-size: 2.2rem;
  }
  #contact .telephone a {
    font-size: 3.4rem;
  }
  #contact .telephone a::before {
    width: 27px;
    height: 27px;
  }
  /* フッター ＝＝＝＝＝＝＝＝＝＝ */
  footer {
    padding-bottom: 5rem;
  }
  .info h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */