@charset "utf-8";
/* CSS Document */
/* Reset
------------------------------------------------------------*/
html, body, div, span, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, small, form, fieldset, p, blockquote, th, td, header, footer, nav, aside, article, section, caption, summary, audio, video, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
}
h1, h2, h3, h4, h5, h6, small, table, input, textarea, select, option, button {
  font-size: 100%;
}
ul, ol {
  list-style-type: none;
}
a {
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
img, fieldset {
  border: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  /*	border-radius: 0;*/
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}
/* style
------------------------------------------------------------*/
html {
  overflow-y: scroll;
  height: 100%;
  line-height: 1.6;
}
body {
  width: 100%;
  font-size: 100%;
  font-size: 16px;
  color: #545454;
  background: #F7F7F7;
}
#wrapper {
  min-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pcshow {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mbshow {
    display: none;
  }
}
@media screen and (min-width: 479px) {
  .spshow {
    display: none;
  }
}
.icon__right {
  margin-left: 0.5rem;
}
.note {
  text-align: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 479px) {
  .note {
    text-align: left;
  }
}
.inline {
  display: inline-block;
}
/* list*/
.list--group {
  max-width: 960px;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #545454;
  margin: 2rem auto 0 auto;
}
/* header
------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.header--inner {
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0);
  }
  .header-inner {
    position: relative;
    padding: 1rem;
  }
  #top .headerlogo {
    display: none;
  }
}
.check {
  display: none;
}
.header__menu--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header__menu--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    margin-left: auto;
  }
}
.header__menu__list {
  letter-spacing: 0.1rem;
  font-weight: 700;
}
.header__menu__list + .header__menu__list {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .header__menu__list + .header__menu__list {
    margin-left: 0;
  }
}
.header__menu__link {
  color: #545454;
  transition: .5s;
}
.header__menu__link:hover {
  border-bottom: 1px #545454 solid;
}
@media screen and (max-width: 767px) {
  .header__menubutton {
    position: fixed;
    top: 1rem;
    right: 0.8rem;
    display: block;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 100;
  }
  .header::after {
    content: "";
    display: block;
    top: 0px;
    right: 0px;
  }
  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 2rem;
    height: 4px;
    background-image: linear-gradient(226deg, rgba(255, 228, 96, 1), rgba(255, 165, 47, 1) 45%, rgba(255, 131, 13, 1));
    border-radius: 2px;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
  .bar.middle {
    top: 0.625rem;
    opacity: 1;
  }
  .bar.bottom {
    top: 1.25rem;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
  }
  .check:checked ~ .header__menu--group {
    display: block;
  }
  .check:checked ~ .contents {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    animation-duration: 1s;
  }
  .check:checked ~ .header__menubutton .top {
    width: 2.2rem;
    transform-origin: 0rem 0.5rem;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .check:checked ~ .header__menubutton .middle {
    opacity: 0;
  }
  .check:checked ~ .header__menubutton .bottom {
    width: 2.2rem;
    transform-origin: 0.6rem 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .header__menu--group {
    display: none;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
    margin-top: 0;
    padding-top: 6rem;
    animation-duration: 0.5s;
    animation-name: righttoleft;
    z-index: 50;
  }
  .header__menu__list {
    position: relative;
    letter-spacing: 0.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0 0 1rem 2rem;
    border-bottom: 1px solid #FF830D;
  }
  .header__menu__list:first-of-type {
    border-top: 1px solid #FF830D;
    padding-top: 1rem;
  }
  .header__menu__link::after {
    position: absolute;
    display: inline-block;
    right: 2rem;
    top: -14%;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    color: #FFA52F;
    font-size: 1.5rem;
  }
  .header__menu__list:first-of-type .header__menu__link::after {
    top: 18%;
  }
  .header__menu__link {
    display: block;
  }
  .header__menu__link:hover {
    border-bottom: none;
  }
}
@keyframes righttoleft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* button
------------------------------------------------------------*/
.button--group {
  text-align: center;
  padding: 4rem 0 6rem 0;
}
.button__text {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}
.button__link {
  color: #FFFDFE;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background-image: linear-gradient(226deg, rgba(255, 228, 96, 1), rgba(255, 165, 47, 1) 45%, rgba(255, 131, 13, 1));
  border-radius: 60px;
  padding: 1rem 4.5rem 1.25rem 3rem;
  box-shadow: 0px 2px 10px -6px #4d4d4d;
  transition: .5s;
}
.button__link:hover {
  opacity: .8;
  box-shadow: none;
}
.button__link::after {
  position: absolute;
  display: inline-block;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  width: 28px;
  height: 28px;
  top: -8px;
  right: 15px;
  font-size: 2rem;
  color: #FFFDFE;
}
@media screen and (max-width: 767px) {
  .button--group {
    padding: 1rem 0 3rem 0;
  }
  .button__link {
    font-size: 1rem;
    padding: 1rem 4rem 1.25rem 2.5rem;
  }
  .button__link::after {
    top: -11px;
  }
}
main {
  width: 100%;
}
/* keyvisual
------------------------------------------------------------*/
.keyvisual {
  width: 100%;
  height: auto;
  z-index: -300;
  position: relative;
}
.keyvisual:before {
  content: "";
  display: block;
  padding-top: 46%;
}
.slider li {
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  z-index: -300;
}
/* animation */
.slider li:nth-child(1) {
  animation-name: slider;
  animation-delay: 0s;
}
.slider li:nth-child(2) {
  animation-name: slider;
  animation-delay: 5s;
  opacity: 0;
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.keyvisual__message--wrap {
  position: absolute;
  width: calc(1200 / 1920 * 100vw);
  top: 20%;
  left: 10%;
  line-height: 1.4;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  color: #FFFFFF;
  margin-top: 10%;
  z-index: 2;
}
.circle__bg {
  position: absolute;
  z-index: 1;
  width: calc(600 / 1920 * 100vw);
  height: calc(600 / 1920 * 100vw);
  background: rgba(79, 79, 79, .2);
  display: block;
  top: 30%;
  border-radius: 50%;
  left: 7%;
}
.circle__image01, .circle__image02, .circle__image03, .circle__image04 {
  position: absolute;
}
.circle__image01 {
  top: calc(120 / 1920 * 100vw);
  left: calc(320 / 1920 * 100vw);
  width: calc(220 / 1920 * 100vw);
  margin-top: 50px;
  z-index: 2;
}
.circle__image02 {
  top: calc(36 / 1920 * 100vw);
  left: calc(32 / 1920 * 100vw);
  width: calc(220 / 1920 * 100vw);
  margin-top: 50px;
  z-index: 2;
}
.circle__image03 {
  top: calc(700 / 1920 * 100vw);
  left: calc(60 / 1920 * 100vw);
  width: calc(220 / 1920 * 100vw);
  margin-top: 50px;
  z-index: 2;
}
.circle__image {
  filter: drop-shadow(0px 2px 6px #FFF);
}
.site__headine {
  line-height: 1.2rem;
}
.site__headine__small {
  font-size: calc(36 / 1920 * 100vw);
  letter-spacing: 0.1rem;
}
.nicokifu__image--wrap {
  display: inline-block;
  width: 100%;
  width: calc(540 / 1920 * 100vw);
  vertical-align: middle;
  margin-left: calc(40 / 1920 * 100vw);
}
.nicokifu__image {
  filter: drop-shadow(0px 2px 10px #FFF);
}
.site__copy {
  font-size: calc(32/ 1920 * 100vw);
  font-weight: normal;
  line-height: 1.6;
  margin-top: 0.5rem;
}
.bg {
  background: #454545;
  margin-bottom: 0.25rem;
  padding: 0 0.5rem;
}
.site__text {
  width: calc(760 / 1920 * 100vw);
  font-size: calc(20/ 1920 * 100vw);
  margin: 0.5rem 0 0 0.5rem;
}
.scrool a {
  position: absolute;
  display: inline-block;
  overflow: hidden;
  right: 40px;
  bottom: 0;
  color: #ff830d;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  font-weight: bold;
  padding: 10px 10px 80px;
  z-index: 2;
}
.scrool a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: #ff830d;
}
.scrool a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: rgba(255, 131, 13, .4);
}
.scrool a::after {
  height: 7px;
  animation: sdl 2s ease infinite;
}
@keyframes sdl {
  0% {
    transform: translateY(-70px);
  }
  50%, 100% {
    transform: translateY(30px);
  }
}
@media screen and (max-width: 767px) {
  .keyvisual__message--wrap {
    width: calc(720 / 767 * 100vw);
    top: 100%;
    left: 0;
    margin-left: 16px;
  }
  .circle__bg, .circle__image01, .circle__image02, .circle__image03 {
    display: none;
  }
  .nicokifu__image--wrap {
    width: calc(540 / 767 * 100vw);
    margin-left: 0;
    margin-top: 1rem;
  }
  .site__headine__small {
    font-size: calc(40/ 767 * 100vw);
  }
  .site__copy {
    font-size: calc(32/ 767 * 100vw);
  }
}
/* contents
------------------------------------------------------------*/
.container {
  padding: 5rem 0;
}
.contents--inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 1rem;
}
.contents__headline {
  color: #545454;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  font-size: 2rem;
}
.contents__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #545454;
}
.contents__note {
  margin-top: 1rem;
}
.contents__box--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}
.contents__box {
  width: calc(33% - 8px);
  border-radius: 8px;
  text-align: center;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .container {
    position: static;
    padding: calc(540 / 767 * 100vw) 1rem 4rem 1rem;
  }
  .site__text {
    max-width: 38rem;
    width: 100%;
    font-size: 1rem;
    font-weight: normal;
    margin: 2rem auto 3rem auto;
  }
  .contents--inner {
    padding: 2rem 1rem;
  }
  .contents__headline {
    font-size: 1.5rem;
  }
  .contents__title {
    font-size: 1.125rem;
  }
  .contents__note {
    text-align: center;
    margin-top: 0;
  }
  .contents__box--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .contents__box {
    width: 100%;
    padding: 0;
  }
  .contents__box + .contents__box {
    margin-top: 2rem;
  }
}
/* sendmail
------------------------------------------------------------*/
.sendmail--container {
  position: relative;
  max-width: 960px;
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: 4rem 1rem;
}
.sendmail--inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 630px;
  width: 80%;
}
.sendmail__icon {
  color: #ff830d;
  text-align: center;
  font-size: 8rem;
  margin-bottom: 2rem;
}
.sendmail__headline {
  text-align: center;
  color: #ff830d;
  font-weight: 700;
  font-size: 2rem;
}
.sendmail__message-wrap {
  margin-top: 1rem;
}
.sendmail__title {
  font-size: 1.125rem;
}
.sendmail__message {
  margin-top: 1rem;
}
.top__link {
  color: #ff830d;
  transition: .5s;
  border-bottom: solid 1px #ff830d;
}
.top__link:hover {
  opacity: .5;
}
.error {
  font-size: 0.875rem;
  color: #ff830d;
}
/* service
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .service-wrap {
    margin-top: 2rem;
  }
}
.service--wrap .contents__box:last-of-type i {
  margin-left: -0.5rem;
}
.service__text {
  text-align: left;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .service__text {
    margin-top: 0.5rem;
  }
}
.service__note {
  margin-top: 2rem;
  text-align: center;
}
.icon__circle {
  display: inline-block;
  width: 160px;
  height: 160px;
  text-align: center;
  line-height: 160px;
  border-radius: 50%;
  color: #FFF;
  font-size: 4rem;
  padding: 0 3rem;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(226deg, rgba(255, 228, 96, 1), rgba(255, 165, 47, 1) 45%, rgba(255, 131, 13, 1));
}
@media screen and (max-width: 767px) {
  .icon__circle {
    width: 120px;
    height: 120px;
    line-height: 110px;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
.data--wrap {
  margin: 6rem auto 0 auto;
}
.data__inner {
  margin: 2rem 0;
}
.tab__item:hover {
  cursor: pointer;
}
.data--wrap input[name="tab__item"] {
  display: none;
}
.data--group {
  display: none;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 2rem;
  padding: 1.5rem 1rem;
}
.tab__item {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 12px 12px 0 0;
  padding: 0.5rem 0.75rem;
  transition: .5s;
}
@media screen and (max-width: 767px) {
  .tab__item {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
  }
}
#tab01:checked ~ #tab01__content, #tab02:checked ~ #tab02__content {
  display: block;
}
.tab__item {
  background: #FFF;
  color: #FF830D;
  border: 1px solid #FF830D;
}
.data--wrap input:checked + .tab__item {
  background-color: #FF830D;
  color: #fff;
}
.data--box--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .service__note {
    margin-top: 1rem;
  }
  .data--box--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.data--box {
  padding: 1rem;
}
.data--box:first-child {
  width: 80%;
  margin-right: 1rem;
}
.data--box:nth-child(2n) {
  border: 1px solid #B5B4B4;
}
@media screen and (max-width: 767px) {
  .data--box {
    padding: 0;
  }
  .data--box:first-child {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .data--box:nth-child(2n) {
    border: none;
  }
}
#tab01__content {
  border: 1px solid #FF830D;
}
#tab02__content {
  border: 1px solid #FFA52F;
}
.data__title {
  font-size: 1.5rem;
  border-left: 8px solid #B5B4B4;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .data__title {
    font-size: 1.25rem;
  }
}
.data__subtitle {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}
.data__image {
  max-width: 320px;
  margin: 0 auto;
}
.data__name {
  text-align: center;
  font-size: 1.25rem;
  margin: 1rem 0;
  color: #FFA52F;
}
@media screen and (max-width: 767px) {
  .data__name {
    text-align: left;
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.4;
  }
}
.data__note {
  font-size: 0.875rem;
  margin-top: 1rem;
}
.data__contentsname {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}
.neuroscience__data--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .neuroscience__data--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.data__text--box {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .data__text--box {
    width: 100%;
  }
}
.structure--wrap {
  margin: 3rem auto;
}
@media screen and (max-width: 767px) {
  .structure--wrap {
    margin: 0 auto;
    padding: 2rem 0;
  }
}
.cycle__image {
  margin-top: 2rem;
}
.merit--wrap {
  margin-top: 8rem;
}
.merit__box--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #FFFDFE;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  border-radius: 8px;
  margin-top: 3rem;
  padding: 2rem 1rem;
}
.merit__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #545454;
  border: 1px solid #545454;
  border-radius: 30px;
}
.merit__box {
  width: 33%;
  border-radius: 8px;
  padding: 1rem;
}
.merit__image {
  text-align: center;
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .merit--wrap {
    margin-top: 6rem;
    padding: 0;
  }
  .merit__box--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2rem;
    padding: 3rem 1rem 2rem 1rem;
  }
  .merit__title {
    max-width: 300px;
    margin: 0 auto;
  }
  .merit__box {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
  }
  .merit__box + .merit__box {
    margin-top: 3rem;
  }
  .merit__list--group {
    margin: 0 auto;
    max-width: 320px;
  }
}
.flow--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .flow--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.flow--box {
  position: relative;
  width: calc(33% - 24px);
  border-radius: 8px;
  background-color: #FFFDFE;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  padding: 1rem;
}
.flow--box:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -65px;
  border-width: 20px 30px;
  border-color: transparent transparent transparent #FFA52F;
  border-style: solid;
  margin-top: -30px;
}
@media(max-width: 767px) {
  .flow--group {
    flex-direction: column;
    margin-top: 2rem;
  }
  .flow--box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 2rem;
  }
  .flow--box:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .flow--box:not(:last-of-type)::after {
    border-width: 20px 25px;
    border-color: #FFA52F transparent transparent transparent;
    right: 50%;
    margin-right: -25px;
    top: 100%;
    margin-top: 10px;
  }
  .flow__image {
    width: 120px;
    text-align: center;
    margin: 0 auto 1rem auto;
  }
}
.flow__title {
  text-align: center;
  font-size: 1.25rem;
  border-bottom: 1px solid #B5B4B4;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}
.application--group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .application--group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.application--box {
  position: relative;
  width: calc(33% - 24px);
  border-radius: 8px;
  background-color: #FFFDFE;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  padding: 1rem;
}
.application--box:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -65px;
  border-width: 20px 30px;
  border-color: transparent transparent transparent #FFA52F;
  border-style: solid;
  margin-top: -30px;
}
@media(max-width: 767px) {
  .application--group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .application--box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
  }
  .application--box:not(:last-of-type) {
    margin-bottom: 35px;
  }
  .application--box:not(:last-of-type)::after {
    border-width: 20px 25px;
    border-color: #FFA52F transparent transparent transparent;
    right: 50%;
    margin-right: -25px;
    top: 100%;
    margin-top: 10px;
  }
}
.application__title {
  text-align: center;
  font-size: 1.125rem;
  border-bottom: 1px solid #B5B4B4;
  margin: 0.5rem 0;
  padding-bottom: 0.5rem;
}
@media(max-width: 767px) {
  .application__title {
    margin-top: 1rem;
  }
}
.concept--wrap {
  background: #FFF;
  padding: 6rem 1rem;
}
.concept__image {
  text-align: center;
}
.concept__text {
  line-height: 2;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .concept--wrap {
    margin-top: 2rem;
    padding: 3rem 0 1rem 0;
  }
  .concept__text {
    line-height: 2;
    text-align: left;
    margin-top: 1rem;
  }
}
.sdgs--wrap {
  padding: 6rem 1rem;
}
.sdgs__logo {
  max-width: 600px;
  margin: 3rem auto;
}
.sdgs--box--wrap {
  max-width: 736px;
  background-color: #FFFDFE;
  border-radius: 8px;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  margin: 2rem auto 0 auto;
  padding: 3.5rem 2rem;
}
.sdgs--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  font-feature-settings: "palt";
}
.sdgs--box + .sdgs--box {
  margin-top: 3rem;
}
.sdgs__icon {
  width: 12%;
  margin: 0 1rem 0 0;
}
.sdgs__text--box {
  width: 88%;
}
.sdgs__title {
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  margin-top: -0.25rem;
}
.sdgs_01 {
  color: #e5243b;
}
.sdgs_03 {
  color: #4C9F38;
}
.sdgs_04 {
  color: #C5192D;
}
.sdgs_08 {
  color: #A21942;
}
.sdgs_11 {
  color: #FD9D24;
}
.sdgs_16 {
  color: #00689D;
}
.sdgs_17 {
  color: #19486A;
}
@media screen and (max-width: 479px) {
  .sdgs--wrap {
    padding: 6rem 0 3rem 0;
  }
  .sdgs__logo {
    width: calc(650 / 767 * 100vw);
    margin: 1.5rem auto;
  }
  .sdgs--box--wrap {
    padding: 3rem 1rem;
  }
  .sdgs--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sdgs__icon {
    width: calc(200 / 767 * 100vw);
    margin: 0 auto 1rem auto;
  }
  .sdgs__title {
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
  .sdgs__text--box {
    width: 100%;
  }
}
/* company
------------------------------------------------------------*/
.company {
  margin: 0 auto;
  padding: 6rem 1rem;
}
.company_headline {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
.company_information--wrap {
  max-width: 736px;
  background-color: #FFFDFE;
  border-radius: 8px;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  margin: 2rem auto 0 auto;
  padding: 2rem 1rem;
}
.company_information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 520px;
  margin: 1rem auto 0.5rem auto;
}
.information_item {
  width: 10rem;
  font-weight: 700;
  border-right: #B5B4B4 6px solid;
  padding: 0 1rem;
}
.information_list {
  width: calc(100% - 200px);
  margin: 0 0 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 3rem 0;
  }
  .company_headline {
    font-size: 1.5rem;
  }
  .company_information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    padding-top: 1rem;
  }
  .company_information:not(:last-of-type) {
    border-bottom: #FFA077 1px solid;
  }
  .company_information_list {
    margin-top: 1rem;
  }
  .information_item {
    width: 100%;
    border-right: none;
    padding: 0;
  }
  .information_list {
    width: 100%;
    margin: 0.5rem 0 1rem 0;
  }
}
/* contact
------------------------------------------------------------*/
#contact {
  padding: 6rem 1rem;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 3rem 0 1rem 0;
  }
}
.contact__headline {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__headline {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
}
.contact--form {
  max-width: 736px;
  background-color: #FFFDFE;
  border-radius: 8px;
  box-shadow: 0px 2px 11px -6px #4d4d4d;
  margin: 2rem auto 0 auto;
  padding: 3rem 1rem;
}
.contact__note {
  text-align: center;
  border-bottom: 1px solid #B5B4B4;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__note {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}
.input__area--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 740px;
  margin: 0 auto 2.25rem auto;
}
@media screen and (max-width: 767px) {
  .input__area--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 25rem;
    margin: 0 auto;
  }
}
.contact__item {
  width: 30%;
  font-weight: 700;
  margin: 0.5rem 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact__item {
    width: 100%;
    text-align: left;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
  }
}
.radio__list {
  width: 24rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .radio__list {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.contact__input {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__input {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.required {
  display: inline-block;
  background: #ff830d;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  color: #FFFAF8;
  border-radius: 4px;
  margin-right: 0.75rem;
  padding: 0.125rem 0.4375rem;
}
.optional {
  display: inline-block;
  background: #B5B4B4;
  font-size: 0.875rem;
  letter-spacing: 0.2rem;
  color: #FFFAF8;
  border-radius: 4px;
  margin-right: 0.75rem;
  padding: 0.125rem 0.4375rem;
}
@media screen and (max-width: 767px) {
  .radio__list {
    margin: 0.5rem 0;
  }
}
#contact input[type="radio"] {
  display: none;
}
#contact input[type="radio"] + label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}
#contact input[type="radio"] + label::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #fffdfd;
  border: 2px #B5B4B4 solid;
  border-radius: 50%;
  box-sizing: border-box;
  margin-top: -0.6rem;
  margin-left: 0;
}
#contact input[type="radio"]:checked + label::after {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  content: "";
  display: block;
  width: 1rem;
  height: 0.6rem;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #545454;
  box-sizing: border-box;
  margin-top: -0.65rem;
}
.input__area {
  width: 22rem;
  border: 1px solid #B5B4B4;
  background: #F7F7F7;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .input__area {
    width: calc(98.5% - 2rem);
    margin: 0.25rem auto;
  }
}
.input__textarea {
  width: 22rem;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #F7F7F7;
  border: 1px solid #B5B4B4;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .input__textarea {
    width: calc(98.5% - 2rem);
  }
}
.submit--group {
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .submit--group {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}
.submit__text {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 1rem;
}
.submit__text::after {
  position: absolute;
  display: inline-block;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  width: 28px;
  height: 28px;
  top: 10%;
  right: 15px;
  font-size: 2rem;
  color: #FFFDFE;
}
@media screen and (max-width: 767px) {
  .submit__text::after {
    top: 4.5px;
  }
}
.submit__link {
  color: #FFFDFE;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background-image: linear-gradient(226deg, rgba(255, 228, 96, 1), rgba(255, 165, 47, 1) 45%, rgba(255, 131, 13, 1));
  border-radius: 60px;
  padding: 1rem 4.5rem 1.25rem 3rem;
  box-shadow: 0px 2px 10px -6px #4d4d4d;
  transition: .5s;
}
@media screen and (max-width: 767px) {
  .submit__link {
    font-size: 1rem;
    padding: 1rem 4rem 1.25rem 2.5rem;
  }
}
.submit__link:hover {
  opacity: .8;
  box-shadow: none;
}
.policy__information--wrap {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .policy__information--wrap {
    margin-top: 0;
  }
}
.policy__information__headline {
  text-align: center;
  font-size: 1rem;
}
.policy__text--wrap {
  max-width: 740px;
  height: 8rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: #F7F7F7;
  font-size: 0.875rem;
  margin: 1rem auto 1.5rem auto;
  padding: 1.5rem 1rem;
}
.policy__text--wrap::-webkit-scrollbar {
  width: 12px;
}
.policy__headline {
  text-align: center;
  margin-bottom: 0.5rem;
}
.policy__title {
  font-weight: 700;
  margin: 0.5rem 0 0.25rem 0;
}
.policy--box {
  text-align: right;
}
.policy__desk--wrap {
  margin-top: 2rem;
}
/*----------------------------------*/
.policy__headline--list {
  list-style-type: decimal;
  padding: 0 0 0 2em;
  margin: 0;
}
.policy__headline--list p {
  text-indent: 1.5em;
}
.policy__headline-list--item {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-bottom: 10px;
}
.policy__headline-list--item::before {
  display: marker;
  content: "("counter(cnt) ") ";
}
.inquiry__box {
  border-collapse: collapse;
  margin-left: 1.5em;
}
.inquiry__box--head {
  border: 1px solid black;
  padding: 5px;
}
.inquiry__box--item {
  border: 1px solid black;
  padding: 5px;
}
/*----------------------------------*/
.numberlist--wrap {
  counter-reset: item;
  margin: 1rem 0;
}
.numberlist {
  text-indent: -1.5rem;
  padding-left: 1.3rem;
}
.numberlist::before {
  counter-increment: item;
  content: '('counter(item)')';
  margin-right: 0.25rem;
}
#check__text {
  text-align: center;
}
@media screen and (max-width: 359px) {
  #check__text {
    text-align: left;
    text-indent: -1.5rem;
    padding-left: 2rem;
  }
}
input[type="submit"][disabled] {
  background-color: #CCCCCC;
  background-image: none;
  cursor: default;
}
#ok {
  transform: scale(1.5);
  border: #B5B4B4;
  margin: 0 0.5rem 0.2rem 0;
}
/* pagetop
------------------------------------------------------------*/
#page__top {
  position: fixed;
  right: 120px;
  bottom: 60px;
  z-index: 2;
  transform: translateX(100px);
}
.pagetop__link {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  background-image: linear-gradient(45deg, rgba(248, 213, 44, 1), rgba(255, 165, 47, 1) 54%, rgba(255, 131, 13, 1));
  width: 3.5rem;
  height: 3.5rem;
  transition: all 0.3s;
  border-radius: 54% 50%;
}
.pagetop__link:hover {
  opacity: 0.8;
}
@media screen and (max-width:767px) {
  #page__top {
    bottom: 20px;
  }
}
/* footer
------------------------------------------------------------*/
footer {
  background: #545454;
}
.footer--inner {
  max-width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .footer--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 0.875rem;
  }
}
.footerlink--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}
.footerlink__list + .footerlink__list {
  margin-left: 2rem;
}
.footerlink {
  color: #FFFDFE;
  transition: .5s;
}
.footerlink:hover {
  opacity: .7;
}
.copy {
  color: #FFFDFE;
  font-size: 87.5%;
}
@media screen and (max-width: 959px) {
  .copy {
    text-align: center;
    margin-top: 1rem;
  }
}