:root {
  --text-black: #000000;
  --blue01: #003fa3;
  --red01: #b92b27;
  --yellow01: #fbe74d;
  --green01: #00b900;
  --corporate-logo2: "corporate-logo-ver2", sans-serif;
  --orange01: #ef7f2a;
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6875;
  font-weight: 400;
  color: var(--text-black);
  background: #fff;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (min-width:768px) {
  body {
    font-size: 2rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out, back-ground 0.3s ease-in-out, color 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.inner {
  width: 92%;
  margin: 0 auto;
  max-width: 1000px;
}

.header {
  height: 52px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
}
@media screen and (min-width:768px) {
  .header {
    height: 72px;
  }
}
.header h1 {
  max-width: 272px;
  margin: 0;
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (min-width:768px) {
  .header h1 {
    max-width: 600px;
  }
}
.header h1 img {
  display: block;
}
.header .openbtn {
  width: 52px;
  height: 52px;
  background: var(--yellow01);
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}
@media screen and (min-width:768px) {
  .header .openbtn {
    top: 10px;
    right: 10px;
  }
}
.header .openbtn span {
  position: absolute;
  width: 20px;
  height: 3px;
  background: var(--text-black);
  display: inline-block;
}
.header .openbtn span:nth-of-type(1) {
  top: 20px;
  left: 16px;
}
.header .openbtn span:nth-of-type(2) {
  top: 26px;
  left: 16px;
}
.header .openbtn span:nth-of-type(3) {
  top: 32px;
  left: 16px;
}
.header .openbtn.active span {
  transition: all 0.3s ease;
}
.header .openbtn.active span:nth-of-type(1) {
  width: 40%;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  top: 18px;
}
.header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
.header .header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 92%;
  margin: 0 auto;
}
.header #g-nav {
  position: fixed;
  z-index: 999;
  top: 52px;
  right: -120%;
  width: 100%;
  height: 60%;
  background: white;
  transition: all 0.6s;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width:768px) {
  .header #g-nav {
    width: 25%;
    top: 72px;
  }
}
.header #g-nav.panelactive {
  right: 0;
}
.header #g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 60%;
  overflow: auto;
}
@media screen and (min-width:768px) {
  .header #g-nav.panelactive #g-nav-list {
    width: 25%;
  }
}
.header #g-nav ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
}
.header #g-nav ul li {
  margin-bottom: 10px;
}
.header #g-nav ul li.youtube {
  padding: 10px;
  background-color: var(--blue01);
  border-radius: 5px;
}
.header #g-nav ul li.youtube a {
  color: white;
  padding: 10px;
}
.header #g-nav ul li.youtube a span::before {
  content: "";
  background: url(../../assets/images/youtube-icon-white.svg) no-repeat center/contain;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 15px;
  margin-right: 6px;
}
.header #g-nav ul li.line {
  padding: 10px;
  background: var(--green01);
  border-radius: 5px;
}
.header #g-nav ul li.line a {
  color: white;
  padding: 10px;
}
.header #g-nav ul li.line a span::before {
  content: "";
  background: url(../../assets/images/line-icon-white.svg) no-repeat center/contain;
  width: 22px;
  height: 21px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 6px;
}
.header #g-nav ul li a {
  padding: 10px;
  text-wrap: nowrap;
  font-weight: 600;
}

.bottom-fix-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.bottom-fix-btn a {
  width: 50%;
  height: 45px;
  display: grid;
  place-content: center;
  color: white;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .bottom-fix-btn a {
    height: 80px;
    font-size: 150%;
  }
}
.bottom-fix-btn a:nth-child(1) {
  background: var(--blue01);
}
.bottom-fix-btn a:nth-child(1) span::before {
  content: "";
  background: url(../../assets/images/youtube-icon-white.svg) no-repeat center/contain;
  width: 22px;
  height: 15px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.bottom-fix-btn a:nth-child(2) {
  background: var(--green01);
}
.bottom-fix-btn a:nth-child(2) span::before {
  content: "";
  background: url(../../assets/images/line-icon-white.svg) no-repeat center/contain;
  width: 23px;
  height: 21px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

main {
  margin-top: 52px;
}

.ta-c {
  text-align: center;
}

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

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

.bold {
  font-weight: 700;
}

.mv {
  padding-bottom: 58px;
}
.mv .img-wrapper-01 {
  position: relative;
}
.mv .img-wrapper-01 .mv-text {
  position: absolute;
  width: 92%;
  margin: 0 auto;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width:768px) {
  .mv .img-wrapper-01 .mv-text {
    bottom: 3em;
    max-width: 1000px;
    font-size: 4.2rem;
    font-weight: 700;
  }
}
.mv .img-wrapper-02 {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.mv .text {
  font-size: 2.1rem;
}
@media screen and (min-width:768px) {
  .mv .text {
    font-size: 4.2rem;
  }
}
.mv .text .blue {
  font-size: 2.4rem;
}
@media screen and (min-width:768px) {
  .mv .text .blue {
    font-size: 4.8rem;
  }
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 13px;
}
@media screen and (min-width:768px) {
  h2 {
    font-size: 4.8rem;
    margin-bottom: 40px;
  }
}
h2::before {
  content: "";
  width: 7px;
  height: 1em;
  background: var(--blue01);
  margin-right: 12px;
  display: inline-block;
  vertical-align: top;
}

section {
  padding: 44px 0;
}
@media screen and (min-width:768px) {
  section {
    padding: 88px 0;
  }
}

#service {
  background: #f9fafb;
}
#service .service-list {
  margin: 20px 0;
}
#service .service-list li {
  font-weight: 500;
  text-align: center;
  font-size: 1.7rem;
  border: 1px solid var(--blue01);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 8px;
}
@media screen and (min-width:768px) {
  #service .service-list li {
    font-size: 3.4rem;
  }
}

.num {
  font-weight: 700;
  font-family: "roboto", sans-serif;
}

#works {
  padding-bottom: 0;
}
#works .img-wrapper-01 {
  width: 91.0144927536%;
  margin: 0 auto;
  margin-bottom: 18px;
}
#works .strong-point-wrapper {
  padding: 40px 0;
  margin-top: 40px;
  background: linear-gradient(#003fa3 0%, #062f70 100%);
}
@media screen and (min-width:768px) {
  #works .strong-point-wrapper {
    padding: 88px 0;
    margin-top: 88px;
  }
}
#works .strong-point-wrapper h3 {
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  #works .strong-point-wrapper h3 {
    font-size: 3.4rem;
    margin-bottom: 20px;
  }
}
#works .strong-point-wrapper h3 .corporate2 {
  font-family: var(--corporate-logo2);
  font-size: 2.6rem;
}
@media screen and (min-width:768px) {
  #works .strong-point-wrapper h3 .corporate2 {
    font-size: 5.2rem;
  }
}
#works .strong-point-wrapper .strong-point-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 14px;
  box-shadow: 3px 3px 0px #009fe8;
}
@media screen and (min-width:768px) {
  #works .strong-point-wrapper .strong-point-list li p {
    font-size: 2.2rem;
  }
}
#works .strong-point-wrapper .strong-point-list li .num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--red01);
  margin-right: 12px;
}
@media screen and (min-width:768px) {
  #works .strong-point-wrapper .strong-point-list li .num {
    font-size: 5rem;
    margin-right: 24px;
  }
}

.orange {
  color: var(--orange01);
}

@media screen and (min-width:768px) {
  #example .adoption-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
#example .adoption-list .adoption-item {
  border: 2px solid var(--blue01);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  #example .adoption-list .adoption-item {
    width: 48%;
  }
}
#example .adoption-list .adoption-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  #example .adoption-list .adoption-item:not(:last-child) {
    margin-bottom: 0;
  }
}
#example .adoption-list .item-inner h3 {
  text-align: center;
  color: white;
  background: linear-gradient(#003fa3 0%, #062f70 100%);
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  #example .adoption-list .item-inner h3 {
    height: 70px;
    line-height: 70px;
    font-size: 3.2rem;
  }
}
#example .adoption-list .item-inner .img-wrapper-01 {
  width: 42.1739130435%;
  margin: 8px auto;
}
@media screen and (min-width:768px) {
  #example .adoption-list .item-inner .img-wrapper-01 {
    width: 30%;
  }
}
#example .adoption-list .item-inner dl {
  padding: 0 15px;
}
#example .adoption-list .item-inner dl dt {
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
  padding: 3px 17px;
  width: fit-content;
  border-radius: 17px;
  margin-bottom: 8px;
}
@media screen and (min-width:768px) {
  #example .adoption-list .item-inner dl dt {
    font-size: 3rem;
    border-radius: 40px;
  }
}
#example .adoption-list .item-inner dl dt.assignment {
  background: linear-gradient(#b92b27 0%, #941916 100%);
}
#example .adoption-list .item-inner dl dt.suggestion {
  background: linear-gradient(#003fa3 0%, #062f70 100%);
}
#example .adoption-list .item-inner dl dt.subsidy {
  background: linear-gradient(#269142 0%, #0c7828 100%);
}
#example .adoption-list .item-inner dl dd {
  margin-bottom: 20px;
}
#example .adoption-list .item-inner dl dd.strong {
  font-weight: 600;
  font-size: 1.7rem;
}
@media screen and (min-width:768px) {
  #example .adoption-list .item-inner dl dd.strong {
    font-size: 2.8rem;
  }
}
#example .adoption-list .item-inner .effect-wrapper h4 {
  font-weight: 700;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1;
  position: relative;
}
#example .adoption-list .item-inner .effect-wrapper h4::before {
  content: "";
  width: 39.8550724638%;
  height: 1px;
  background: var(--orange01);
  position: absolute;
  left: 0;
  top: 50%;
}
#example .adoption-list .item-inner .effect-wrapper h4::after {
  content: "";
  height: 1px;
  width: 39.8550724638%;
  background: var(--orange01);
  position: absolute;
  right: 0;
  top: 50%;
}
#example .adoption-list .item-inner .effect-wrapper .effect-list {
  background: #fffef5;
  margin-top: -0.6em;
  padding: 15px;
}
#example .adoption-list .item-inner .effect-wrapper .effect-list li {
  border: none;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#example .adoption-list .item-inner .effect-wrapper .effect-list li span {
  color: var(--orange01);
  margin-right: 6px;
}

#difference {
  background: linear-gradient(#003fa3 0%, #062f70 100%);
}
#difference h2 {
  color: white;
  text-align: center;
}
#difference h2::before {
  content: none;
}
#difference .difference-list li:not(:last-child) {
  margin-bottom: 15px;
}
#difference .difference-list li:nth-child(odd) h3 {
  background: #f9fafb;
}
#difference .difference-list li:nth-child(even) h3 {
  background: var(--yellow01);
}
#difference .difference-list li:nth-child(even) p {
  border: 2px solid var(--yellow01);
  border-top: none;
}
#difference .difference-list li h3 {
  border-radius: 8px 8px 0 0;
  height: 30px;
  line-height: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  #difference .difference-list li h3 {
    height: 60px;
    line-height: 60px;
    font-size: 3.2rem;
  }
}
#difference .difference-list li .text {
  background: white;
  border-radius: 0 0 8px 8px;
  padding: 8px 15px;
}
@media screen and (min-width:768px) {
  #difference .difference-list li .text {
    padding: 16px 30px;
  }
}

#contents .contents-wrapper {
  margin-bottom: 30px;
}
#contents .contents-wrapper .lead {
  margin-bottom: 8px;
}
@media screen and (min-width:768px) {
  #contents .contents-wrapper .lead {
    font-size: 3rem;
  }
}
#contents .contents-wrapper .text {
  margin-bottom: 12px;
}
#contents .contents-wrapper .line-link {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
#contents .contents-wrapper .youtube-link {
  max-width: 345px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

