@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

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

* {
  -webkit-appearance: none;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  overflow-wrap: break-word;
  color: #505050;
  margin: 0;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover{
  opacity: .7;
}

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


.certification__list {
  width: 100%;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  border-radius: 0px;
}

.certification__list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: .8em 2em;
  cursor: pointer;
}

.certification__list summary::-webkit-details-marker {
  display: none;
}

.certification__list summary::before,
.certification__list summary::after {
  width: 2px;
  height: .9em;
  border-radius: 5px;
  background-color: #3f3f3f;
  content: '';
}

.certification__list summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.certification__list summary::after {
  transition: rotate .3s;
}

.certification__list[open] summary::after {
  rotate: 90deg;
}

.certification__list p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.certification__list[open] p {
  transform: none;
  opacity: 1;
}

/* common */

.common__inner__title {
  margin-top: 80px;
  text-align: center;
}

.common__title {
  font-size: 10rem;
  text-align: center;
  letter-spacing: .2rem;
  color:#53C6DB;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .common__title {
    font-size: 4rem;
  }
}

.common__text {
  font-size: 20px;
  line-height: 30px;
}

.common__hedelinngu_text {
  font-size: 20px;
}


/* anchor */

.anchor__about {
  padding-top: 80px;
  margin-top: -80px;
}

.anchor__certification {
  padding-top: 160px;
  margin-top: -160px;
}

.wrapper .container{
  max-width:1280px;
  margin:0px auto;
  padding:100px 0px;
}
@media (max-width: 768px) {
  .wrapper .container {
    padding: 60px 30px;
  }
}


/* wrapper */

.wrapper_inner .container{
  max-width:1280px;
  margin:0px auto;
  padding:20px 20px;
}

.certification__inner {
  background: #ffffff;
}

/* header */

#header {
  width: 100%;
  display:flex;
  z-index: 1;
  padding: 0 2%;
  height: 100px;
  padding-bottom: 7px;
  align-items: center;
  position: fixed;
  top: 0;
}

#header.scroll-nav {
  width: 100%;
  display:flex;
  z-index: 1;
  padding: 0 2%;
  height: 100px;
  padding-bottom: 7px;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: #ffffffeb;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/* nav */

nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: space-between;
}

nav h1 {
  text-decoration: none;
}

.header__nav__logo {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
}

@media(max-width: 768px) {

  #header {
    display: none;
  }

  #header.scroll-nav {
    display: none;
  }

  .header__sp__logo {
    display: flex;
    align-items:start;
    list-style: none;
    margin-left: 10px;
    margin-top: 2px;
  }

  #header__sp {
    width: 100%;
    z-index: 1;
    padding: 0 2%;
    height: 40px;
    padding-bottom: 7px;
    align-items: center;
    position: fixed;
    top: 0;
  }

  #header__sp.scroll-nav__sp {
    width: 100%;
    z-index: 1;
    padding: 0 2%;
    height: 70px;
    padding-bottom: 7px;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: #ffffffeb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }

  .header__sp__container {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  
  .drawer__button {
    position: relative;
    width: 4rem;
    height: 3.2rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    margin-top: 18px;
    z-index: 999;
  }

  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 2px;
    background-color: #333333;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.7rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.7rem));
    transition: transform 0.3s ease;
  }

  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 80%;
    height: 100%;
    background-color: white;
    padding: 4rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .drawer__nav__link {
    display: block;
    text-decoration: none;
    padding: 2rem 1rem;
    border-bottom: solid 1px #194d9a57;
  }

  .drawer__nav__item {
    font-size: 1.6rem;
    font-weight: 600;
  }
  
  body.active {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (min-width: 960px) {
  #header__sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}

.header__sp__nav {
  padding-top: 10px;
}


.drawer__nav__logo {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.header__nav__title {
  padding: 20px;
  margin-top: 10px;
  text-align: center;
}


.header__sp__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0px;
  margin-right: 15px;
  text-align: center;
}

.common__logo-title--center {
  padding: 20;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.common__subtitle {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .5rem;
  text-align: center;
  color: #505050;
}

.header__nav__container {
  display: flex;
  align-items: center;
  list-style: none;
  margin-left: 15px;
}

.header__nav__item {
  margin: 0 0 0 30px;
  font-weight: 600;
}

.logo__content {
  margin-bottom: 8px;
}

.logo-subject--center {
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  text-align: center;
}

.nav-box01 p {
  margin:0;
  padding:0;
}

.nav-box02 {
  background:#555555;
  padding: 5px 5px 5px 5px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.nav-box02 p {
  margin:0;
  padding:0;
}


.slider {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  .slider {
    width: 100%;
    height: 100vh;
  }
}

.top_pc01 {
  position: absolute;
  width: 100%;
  height: 200px;
  font-size: 10rem;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 4px;
  text-align: center;
  top: 0;  
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #53C6DB;
}

.top_pc01 span {
  font-size: 4rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .top_pc01 {
    display: none;
  }
}

.top_pc02 {
  position: absolute;
  width: 600px;
  height: 100px;
  text-align: center;
  top: 75%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .top_pc02 {
    display: none;
  }
}

.top_pc02__title {
  font-size: 20px;
  font-weight: 600;
}

.top_pc02__logo {
  margin-top: 12px;
}

.top_pc02__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 35px;
  text-align: center;
}

.top_sp01 {
  position: absolute;
  max-width: 769px; 
  padding: 30px;
  height: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 4.0rem;
  letter-spacing: 2px;
  text-align: center;
  top: -15%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #53C6DB;
}
@media (min-width: 960px) {
  .top_sp01 {
    display: none;
  }
  #header__sp {
    display: none;
  }
}


/* header button apply */

.header__button__apply {
  width: 220px;
  height: 35px;
  margin: 0 auto;
  padding: .2em 1em;
  background: #333333;
  border-radius: 5px;
  color: #ffffff;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.header__button__apply::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  right: 1em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.header__button__apply:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


.header__button__contact {
  width: 220px;
  height: 35px;
  margin: 0 auto;
  padding: .2em 0em;
  background: transparent;
  border-radius: 5px;
  color: #333333;
  padding: .2em 1em;
  border: 1px solid #333333;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.header__button__contact::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  right: 1em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
}

.header__button__contact:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}



.contact__nav__lead {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .contact__nav__lead {
    text-align: left;
    font-size: 1.4rem;
  }
}

.contact__nav__inner {
  max-width: 1280px;
}

.contact__nav__container {
  display: flex;
  justify-content: space-around;
  gap: 0px 30px;
  align-items: center;
  list-style: none;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact__nav__container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.contact__nav__item {
  width: 100%;
  margin: 0 0px;
  padding: 20px 0px;
}
@media (max-width: 768px) {
  .contact__nav__item {
    padding: 0px 0px;
  }
}


.contact__nav__button {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #333333;
  border: #333333 solid 0px;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
}
@media (max-width: 768px) {
  .contact__nav__button {
    font-size: 1.6rem;
    height: 50px;
    border-radius: 60px;
  }
}

.contact__nav__button::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 40%;
  left: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .contact__nav__button::before {
    width: 8px;
    height: 8px;
  }
}
.contact__nav__button:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}



/* sp button */

.sp__button__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  background: transparent;
  border-radius: 0px;
  color: #333333;
  border: 1px solid #333333;
  font-size: 1.0rem;
  line-height: 1.3;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 5px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.sp__button__contact:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}

.sp__button__apply {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 35px;
  margin: 0 auto;
  padding: .2em .4em;
  background: #333333;
  border-radius: 0px;
  color: #ffffff;
  border: 0px solid #333333;
  font-size: 1.0rem;
  line-height: 1.3;
  font-weight: 600;
  margin-right: 10px;
  margin-top: 5px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

.sp__button__apply:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


.bg__container {
  margin-top: 60px;
  margin-bottom: 60px;
}

.common__title__img {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .common__title__img {
    margin-top: 30px;
  }
}

.img__radius {
  border-radius: 0px;
}

.company__img {
  border: solid 1px #cccccc;
}

.wrapper--bg {
  background-color:#FFF;
}

.common__wrapper {
  background-color:#f8f8f8;
}

.common__sub_title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 5px;
  text-align: center;
}

.common__header {
  text-align: center;
}

.logo__txt_--s_center {
  font-size: 10px;
  text-align: center;
}

.nav__headerlogo_text {
  font-size: 1.0rem;
  text-align: center;
  margin-top: 1px;
}

.logo__txt_sp--center {
  font-size: 0.8rem;
  line-height: 0px;
  text-align: center;
}

.common__lead {
  text-align: justify;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .common__lead {
    margin-top: 20px;
  }
}

.common__lead p {
  margin-top: 10px;
  text-align: center;
}

.common__lead h3 {
  text-align: center;
  font-size: 4rem;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .common__lead h3 {
    font-size: 2rem;
  }
}

.vision__items {
  margin-top: 60px;
}

.vision__items h3 {
  font-size: 6rem;
}

.lead__items {
  margin-top: 60px;
}

.contact__information {
  max-width: 1280px;
  margin: 0 auto;
  font-weight: 700;
  text-align: center;
  margin-top: 80px;
  padding: 15px;
  background: #f2f2f2;
}
@media (max-width: 768px) {
  .contact__information {
    margin-top: 20px;
    line-height: 1.5;
    text-align: left;
  }
}

.contact__nav__title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .contact__nav__title {
    margin-top: 40px;
  }
}


.common__txt--left {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}

.common__txt--center {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .common__txt--center {
    text-align: left;
  }
}

/* contact */


.contact__inner {
  text-align: center;
  margin-top: 100px;
  padding: 20px;
}
@media (max-width: 768px) {
  .contact__inner {
    margin-top: 40px;
  }
}

.contact__heading__item {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .contact__heading__item {
    margin-top: 0px;
  }
}

.contact__web {
  margin-top: 40px;
}

.contact__webform__text {
  font-size: 16px;
  line-height: 30px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .contact__webform__text {
    font-size: 14px;
  }
}

.contact__webform {
  width: 100%;
  padding: 20 20 20 20;
  margin-bottom: 7px;
  background-color: #004d9f;
  border-radius: 5px;
}

.contact__webform summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
}

.contact__webform summary::-webkit-details-marker {
  display: none;
}

.contact__webform summary::before,
.contact__webform summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #ffffff;
  content: '';
}

.contact__webform summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.contact__webform summary::after {
  transition: rotate .3s;
}

.contact__webform[open] summary::after {
  rotate: 90deg;
}

.contact__webform p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.contact__webform[open] p {
  transform: none;
  opacity: 1;
}

/* certification */

.certification__item {
  width: 100%;
  border-bottom: #333333 solid 4px;
  padding: 10px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .certification__item {
    margin-top: 40px;
  }
}

.certification__item__heading {
  font-size: 1.8rem;
  text-align: center;
}

.certification__benefit__heading {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .certification__benefit__heading {
    font-size: 20px;
  }
}

.certification__item__text {
  margin-top: 20px;
}

.certification__item__ip_org {
  font-size: 1.4rem;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .certification__item__ip_org {
    font-size: 1.2rem;
  }
}

.certification__item__ip {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
}

.certification__item__attention {
  margin-top: 10px;
  font-size: 1.4rem;
}

.certification__list__inner {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .certification__list__inner {
    margin-top: 30px;
  }
}

.certification__id_inner {
  margin-top: 10px;
}

.certification__id {
  max-width: 95%;
  padding: 20px;
  border: #cccccc solid 1px;
  margin: 30px;
}
@media (max-width: 768px) {
  .certification__id {
    max-width: 85%;
  }
}

.certification__id__text {
  text-align: left;
}

.certification_id__attention {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}



/* benefit */

.benefit__wrapper {
  background-color: #f8f8f8;
}

.benefit__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.benefit__contents {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 80px; 
}
@media (max-width: 768px) {
  .benefit__contents {
    gap: 30px;
    padding: 0px;
    margin-top: 40px;
  }
}

.benefit__title {
  font-size: 4rem;
  max-width: 100%;
  margin: 0 auto;
}

.benefit__title__text {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  text-align: justify;
}

.benefit__list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  list-style: none;
  justify-content: center;
  padding: 30px;
  background: #ffffff;
  border-bottom: #333333 solid 0px;
  gap: 30px 0px;
}
@media (max-width: 768px) {
  .benefit__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0px 0px;
    padding: 20px;
  }
}

.benefit__list__text {
  padding: 0px 30px;
}
@media (max-width: 768px) {
  .benefit__list__text {
    padding: 20px 0px;
  }
}

.benefit__list_left {
  width: 10%;
  margin: auto;
  text-align: center;
}

.benefit__list_right {
  width: 90%;
  padding: 0px;
}


@media (max-width: 768px) {
  .benefit__list li {
    width: 100%;
    padding: 0 10px
  }
}

.benefit__number {
  font-size: 5.0rem;
}
@media (max-width: 768px) {
  .benefit__number {
    font-size: 2.0rem;
  }
}


/* guidance */

.guidance__wrapper {
  background: #f8f8f8;
}

.guidance__inner {
  max-width: 1280px;
  margin: auto;
  padding: 80px;
  background: #fff;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .guidance__inner {
    margin-top: 20px;
    padding: 10px 20px;
  }
}

.guidance__heading__item {
  margin-top: 40px;
  text-align: center;
}

.guidance__heading__text {
  margin: 0;
}

.guidance__item {
  width: 100%;
  border-left: #333333 solid 4px;
  background: #f9f9f9;
  padding: 10px 10px;
  margin-top: 0px;
}
@media (max-width: 768px) {
  .guidance__item {
    margin-top: 10px;
  }
}

.guidance__item__heading {
  margin: 0px 5px;
}

.guidance__item__text {
  padding: 1em 5px;
  margin-bottom: 40px;
}

.guidance__price {
  text-align: left;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .guidance__price {
    text-align: center;
  }
}

.guidance__price__tax {
  font-size: 1.0rem;
}

.guidance__price dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.guidance__price dt {
  flex-basis: 30%;
  padding: 30px 5px;
  border-bottom: #eeeeee solid 1px;
}
.guidance__price dd {
  flex-basis: 70%;
  padding: 30px 5px;
  border-bottom: #eeeeee solid 1px;
}
.guidance__price dt:first-child {
  border-top: none;
}
.guidance__price dd:nth-child(2) {
  border-top: none;
}
.guidance__price dt:last-of-type {
  border-bottom: none;
}
.guidance__price dd:last-of-type {
  border-bottom: none;
}
@media (max-width: 768px) {
  .guidance__price dt:first-child {
    border-top: none;
  }
  .guidance__price dl {
		flex-flow: column;
		width: 100%;
		padding: 0px;
		border: 0;
	}
	.guidance__price dt {
    padding: 20px 0px 0px 0px;
    border-bottom: none;
	}
  .guidance__price dd {
    padding: 10px 0px 20px 0px;
	}
  .guidance__price dd:nth-child(2) {
    border-top: 0;
 }
}

.guidance__flow__inner {
  padding: 0em 5px;
  margin-bottom: 60px;
}

.guidance__flow {
  margin-bottom: 60px;
}

.guidance__flow__text {
  margin-top: 20px;
}

.guidance__flow_after {
  width: 100%;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
  border: #cccccc solid 1px;
  margin-top: 50px;
}

.guidance__flow_after__text {
  text-align: center;
}
@media (max-width: 768px) {
  .guidance__flow_after__text {
    text-align: center;
  }
}

.guidance__flow_after__attention {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}

.guidance__flow_after__attention_text {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .guidance__flow_after__attention_text {
    font-size: 1.2rem;
  }
}

.bg-img__wrapper {
  width: 100%;
  vertical-align:top;
}

.item_left {
  text-align: left;
}

.item_center {
  text-align: center;
}

.item_right {
  text-align: right;
}

.apply__content {
  text-align: center;
  padding-bottom: 60px;
}

.apply__text {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .apply__text {
    text-align: justify;
    margin-top: 40px;
  }
}

.apply__box {
  max-width: 100%;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
  border: #eeeeee solid 1px;
  margin-top: 30px;
}

.guidance__flow__list {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #f2f2f2;
}

.guidance__flow__list__title {
  text-align: left;
}

.guidance__flow__list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 5px;
  cursor: pointer;
}

.guidance__flow__list summary::-webkit-details-marker {
  display: none;
}

.guidance__flow__list summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-bottom: 2px solid #555555b3;
  border-right: 2px solid #555555b3;
  content: '';
  transition: transform .3s;
}

.guidance__flow__list[open] summary::after {
  transform: rotate(225deg);
}

.guidance__flow__list p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .2em .5em 1.5em;
  transition: transform .5s, opacity .5s;
}

.guidance__flow__list[open] p {
  transform: none;
  opacity: 1;
}

/* faq */

.faq__inner {
  text-align: center;
  margin-top: 80px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .faq__inner {
    margin-top: 40px;
  }
}

.faq__heading__item {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .faq__heading__item {
    margin-top: 0px;
  }
}

.faq__heading__text {
  margin: 0;
}

.faq__article {
  margin-top: 40px;
}

.faq__answer {
  margin-top: 10px;
  text-align: left;
}

.faq__item {
  max-width: 100%;
  margin-bottom: 10px;
  background-color: #f8f8f8;
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 2em;
  cursor: pointer;
  text-align: left;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #c2c2c2;
  border-right: 3px solid #c2c2c2;
  content: '';
  transition: transform .3s;
}

.faq__item[open] summary::after {
  transform: rotate(225deg);
}

.faq__item p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.faq__item[open] p {
  transform: none;
  opacity: 1;
}


/* company */

.company__inner {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .company__inner {
    margin-top: 60px;
  }
}

.company__item {
  margin-top: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  .company__item {
    font-size: 1.4rem;
    letter-spacing: 0px;
    margin-top: 15px;
  }
}

.company__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.company__item dt {
  flex-basis: 20%;
  font-weight: 700;
  padding: 30px;
  border-bottom: #eeeeee solid 1px;
}
.company__item dd {
  flex-basis: 80%;
  padding: 30px;
  border-bottom: #eeeeee solid 1px;
}
@media (max-width: 768px) {
	.company__item dt {
    column-width: 100%;
    padding: 30px 0px 30px 0px;
    flex-basis: 30%;
	}
  .company__item dd {
    padding: 30px 0px 30px 0px;
    flex-basis: 70%;
	}
}

.company__item dt:first-child {
  border-top: 1px solid #eeeeee;
}

.company__item dd:nth-child(2) {
  border-top: 1px solid #eeeeee;
}


.company__enname__text {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1;
}

.company__ipname__text {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.company__heading__item {
  margin-top: 0px;
}

.company__heading__text {
  margin: 0;
}

/* company sdgs */

.sdgs__wrapper {
  background: #f8f8f8;
}

.sdgs__inner {
  text-align: center;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .sdgs__inner {
    margin-top: 0px;
  }
}

.sdgs__title__img {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .sdgs__title__img {
    margin-top: 40px;
  }
}

.sdgs__list__inner {
  margin-top: 80px;
}

.sdgs__list {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sdgs__list {
    margin-top: 20px;
  }
}

.sdgs__list dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.sdgs__list dt {
  flex-basis: 20%;
  border-bottom: #eeeeee solid 0px;
}
.sdgs__list dd {
  flex-basis: 80%;
  padding-top: 0px;
  padding-left: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  border-bottom: #eeeeee solid 0px;
}
.sdgs__list dt:first-child {
  border-top: #eeeeee solid 0px;
}
.sdgs__list dd:nth-child(2) {
  border-top: #eeeeee solid 0px;
}
@media screen and (max-width: 559px) {
	.sdgs__list dl {
		flex-flow: column;
		width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
		border: 0;
	}
	.sdgs__list dt {
		border-bottom: 0px;
	}
  .sdgs__list dd {
		padding-top: 20px;
    padding-bottom: 20px;
    border-left: 0px;
		border-bottom: 0px;
	}
	.sdgs__list dd:nth-child(2) {
	 	border-top: 0;
	}
  .sdgs__list dt:first-child {
    border-top: 0px;
  }
  .sdgs__list dd:nth-child(2) {
    border-top: 0px;
  }
}

.sdgs__list__item {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
    border-bottom: #c0c0c0 solid 1px;
}

.sdgs__list__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 1em 1em;
    text-align: left;
    cursor: pointer;
}

.sdgs__list__item summary::-webkit-details-marker {
    display: none;
}

.sdgs__list__item summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 2px solid #555555b3;
    border-right: 2px solid #555555b3;
    content: '';
    transition: transform .3s;
}

.sdgs__list__item[open] summary::after {
    transform: rotate(225deg);
}

.sdgs__list__item p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    text-align: left;
    transition: transform .5s, opacity .5s;
}

.sdgs__list__item[open] p {
    transform: none;
    opacity: 1;
}

.sdgs__content {
  margin-top: 100px;
}

/* privacy policy */

.privacy__inner {
  margin-top: 80px;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .privacy__inner {
    margin-top: 40px;
  }
}

.privacy__content h3 {
  margin-top: 40px;
}

.privacy__content p {
  margin-top: 10px;
}

.pprivacy__content ol {
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy__content li {
  padding-top: 10px;
  list-style-position: inside;
  padding-left: 10px;
}


.privacy__end__text {
  text-align: right;
}



.title__text--center {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

.title__text--underline {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding: 10px;
}

.map__content {
  width: 1000px;
  margin: 0 auto;
  vertical-align:top;
}
@media (max-width: 768px) {
  .map__content {
    max-width: 100%;
  }
}

/* cta */

.cta__wrapper {
  background-color: #ececec;
}

.cta__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .cta__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.cta__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}

@media (max-width: 768px) {
  .cta__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.cta__list__title {
  text-align: center;
}


/* cta button */



.cta__button__contact {
  width: 300px;
  height: 80px;
  margin: 0 auto;
  padding: .2em 0em;
  background: transparent;
  border: #333333 solid 1px;
  border-radius: 5px;
  color: #333333;
  line-height: 1;
  font-weight: 700;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}
@media (max-width: 768px) {
  .cta__button__contact {
    height: 50px;
    border-radius: 60px;
  }
}

.cta__button__contact::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 43%;
  right: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
}
@media (max-width: 768px) {
  .cta__button__contact::before {
    width: 8px;
    height: 8px;
  }
}
.cta__button__contact:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}


.cta__button__apply {
  width: 300px;
  height: 80px;
  margin: 0 auto;
  padding: .2em 0em;
  background: #333333;
  border: #333333 solid 0px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
  position: relative;/*矢印アイコン位置の基点になる要素として指定*/
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}
@media (max-width: 768px) {
  .cta__button__apply {
    height: 50px;
    border-radius: 60px;
  }
}

.cta__button__apply::before {
  position: absolute;/*矢印アイコンを基点の要素に対して自由に配置できるようにする*/
  top: 43%;
  right: 2em;/*矢印を基点の要素の右から1文字文内側に動かす*/
  content: '';
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media (max-width: 768px) {
  .cta__button__apply::before {
    width: 8px;
    height: 8px;
  }
}
.cta__button__apply:hover {
  opacity: 0.8;/*マウスオンしたときに８０％まで要素を薄くする*/
}



/* footer nav */

.footer__nav__wrapper {
  background-color: #333333;
}

.footer__nav__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 6px 0 6px;
}
@media (max-width: 768px) {
  .footer__nav__inner {
    padding: 30px 30px;
  }
}

.footer__nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__nav__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0px;
  }
}

.footer__nav__links {
  padding: 5px;
  text-align: left;
  color: #fff;
}


/* footer */

.footer__wrapper {
  background-color:#ffffff;
}

.footer__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer__inner__vh {
  position: sticky;
  top: 100vh;
  z-index: 0;
}

.footer__list {
  position: relative;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

.footer__list a {
  margin: 20px 20px;
  text-align: left;
}

.footer__list a:hover {
  opacity: .5;
}

.footer__list__company {
  margin-bottom: 8px;
}

.footer__list__logo_subject {
  font-size: 12px;
  font-weight: 700;
  padding-top: 8px;
  padding-left: 20px;
}

.footer__list__logo {
  padding: 20;
  margin-top: 5px;
}

.footer__list__logo_text {
  font-size: 1.0rem;
  line-height: 25px;
  text-align: center;
}

.footer__list__pp {
  font-size: 1.2rem;
  margin-top: 20px;
}

.footer__list__sns {
  margin-top: 50px;
}

.footer__list__sns img {
  width: 30px;
}

.footer__copyright {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 0.8rem;
  }
}

/* page top */

#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s;
}

#page-top {
  width: 45px;
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
@media (max-width: 768px) {
  #page-top {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}


#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}


#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*　br　*/

.pc_br {
  display: none;
}
@media (min-width: 960px) {
  .pc_br {
    display: block;
  }
}

.sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}


.marker {
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 80%, rgba(0,255,254,1) 100%);
}

.marker_sp {
  background-image: linear-gradient(
    90deg,
    rgba(186, 3, 3, 1) 0%,
    rgba(234, 255, 0, 1) 25%,
    rgba(67, 195, 91, 1) 50%,
    rgba(52, 48, 148, 1) 75%,
    rgba(179, 29, 196, 1) 100%,
    rgba(255, 0, 0, 1) 100%
  );
  background-repeat: no-repeat;
  background-position: 10% 100%;
  background-size: 100% 15%;
}


.arrow {
  position: relative;
  margin-top: 20px;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #333333;
  border-bottom-width: 0;
}

form {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}

label {
  margin-bottom: 3px;
  text-align: left;
  display: block;
}


label span {
  padding-left: 5px;
  color: red;
}

select,
option,
input[type=text],
input[type=tel],
input[type=url],
input[type=email] {
  width: 100%;
  height: 50px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
  box-sizing: none;
}

/* iOSフォーム対策 */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px;
  }
}

textarea {
  width: 100%;
  height: 120px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f3f3f;
  content: '';
}

.radio__content {
  padding: 10px;
  margin-bottom: 40px;
  background: #F0F0F0;
}

.radio__item {
  margin: 5px;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  width: 255px;
  height: 60px;
  background: #333333;
  border-radius: 5px;
  margin: 10px;
  align-items: center;
  display: inline-block;
  color: #ffffff;
}
@media (max-width: 768px) {
  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    width: 180px;
    height: 55px;
    border-radius: 5px;
  }
}

.click__down a:hover{
  transform: translateY(4px);
}

.click__down {
  transition: 0.2s;
}

.click__down:active {
  transform: translateY(4px);
}

input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  width: 255px;
  height: 60px;
  border: 1px solid #3f3f3f;
  border-radius: 5px;
  opacity: 1;
  margin: 10px;
  align-items: center;
  display: inline-block;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  input[type="button"] {
    appearance: none;
    -webkit-appearance: none;
    font-size: 17px;
    width: 180px;
    height: 55px;
    border: 1px solid #3f3f3f;
  }
}

.h-adr {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.line__inner {
  padding: 40px 0;
  text-align: center;
  background: #fff;
  border-top: #333333 solid 6px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .line__inner {
    padding: 20px 20px;
  }
}

.common__contact__lead {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .common__contact__lead {
    text-align: left;
  }
}

.line__title {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 700;
}

.line__lead {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  border: #eee 2px solid;
}
@media (max-width: 768px) {
  .line__lead {
    text-align: left;
    margin-top: 20px;
  }
}

.line__icon {
  text-align: center;
  margin-top: 10px;
}

.line__account {
  text-align: center;
  margin-top: 10px;
}

.line__item {
  max-width: 400px;
  margin: 0 auto;
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
}

.line__btn {
  text-align: center;
  margin-top: 50px;
}

.line__qr {
  margin-top: 40px;
  text-align: center;
}

.tel__inner {
  padding: 40px 0;
  text-align: center;
  border-top: #333333 solid 6px;
  background: #fff;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .tel__inner {
    padding: 20px 20px;
  }
}

.tel__title {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 700;
}

.tel__lead {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  border: #eee 2px solid;
}
@media (max-width: 768px) {
  .tel__lead {
    text-align: left;
    margin-top: 20px;
  }
}


.tel__close {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .tel__close {
    font-size: 1.2rem;
  }
}


.tel__informaton {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .tel__informaton {
    font-size: 1.2rem;
  }
}

.tel__icon {
  margin-top: 40px;
}

.tel__number {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .tel__number {
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    margin-top: 20px;
  }
}

.tel__number img {
  vertical-align: middle;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 10
}

.tel__supplement {
  font-weight: 500;
}
@media (max-width: 768px) {
  .tel__supplement {
    text-align: left;
  }
}

.tel__attention {
  font-size: 1.4rem;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .tel__attention {
    font-size: 1.2rem;
    text-align: left;
  }
}

.vision__inner {
  position: relative;
  padding: 60px;
  text-align: center;
  border-top: #333333 solid 0px;
  margin-top: 0px;
  z-index: 99;

}
@media (max-width: 768px) {
  .vision__inner {
    padding: 20px 20px;
  }
}

.form__inner {
  padding: 40px 0;
  text-align: center;
  border-top: #333333 solid 0px;
  background: #fff;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .form__inner {
    padding: 20px 20px;
  }
}

.form__title {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

.form__icon {
  margin-top: 40px;
}

.form__lead {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  border: #eee 2px solid;
}
@media (max-width: 768px) {
  .form__lead {
    text-align: left;
    margin-top: 30px;
  }
}


.form__bottom {
  margin-bottom: 80px;
}

.form__inner__text {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form__inner__text {
    text-align: left;
  }
}

.form__inner__text_as {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .form__inner__text_as {
    text-align: center;
  }
}

.form__required {
  font-size: 1rem;
  color: red;
  align-items: center;
}


#formWrap {
	width:1000px;
	margin:0 auto;
	line-height:120%;
	font-size:15px;
}
table.formTable{
	width:100%;
	margin:0 auto;
  margin-bottom: 40px;
}
table.formTable td,table.formTable th{
	display:block;
	text-align:left;
	border:1px solid #FFF;
}
table.formTable td{
	margin-top:5px;
}
table.formTable th{
	width:30%;
	margin-top:50px;
	text-align:left;
}
p.error_messe{
  text-align: left;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-right: 0;
	margin-left: 0;
	color:red;
}

@media screen and (max-width:768px) {
#formWrap {
	width:100%;
	margin:0 auto;
  padding: 0 30px;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:20px;
	border-bottom:0;
}
}

.form_sec03 {
  text-align: center;
}
@media (max-width: 768px) {
  .form_sec03 {
    text-align: left;
  }
}

.form_sec05 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-bottom: 1px solid #333333;
  margin-bottom: 30px;
}

.form_sec06 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  border: none;
  border-bottom: 1px solid #333333;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form_sec07 {
  font-size: 21px;
  line-height: 20px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .form_sec07 {
    margin-bottom: 120px;
  }
}

.form_sec08 {
  text-align: center;
  font-size: 20px;
}

.form_sec09 {
  text-align: center;
}

.form_sec10 {
  text-align: center;
  margin: 60px 0;
}
 
.form_sec11 {
  text-align: center;
}
@media (max-width: 768px) {
  .form_sec11 {
    text-align: left;
  }
}

.form_sec12 {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .form_sec12 {
    text-align: left;
  }
}

.form_sec13 {
  margin-top: 40px;
}

/* Toggle Button */
#nav-toggle {
	display: none;
	position: absolute;
	right: 12px;
	top: 14px;
	width: 34px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
}
#nav-toggle div {
	position: relative;
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 1px;
	width: 100%;
	background: #333;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
	top: 0;
}
#nav-toggle span:nth-child(2) {
	top: 11px;
}
#nav-toggle span:nth-child(3) {
	top: 22px;
}

@media screen and (max-width: 640px) {
	#top-head,
	.inner {
		width: 100%;
		padding: 0;
	}
	#top-head {
		top: 0;
		position: fixed;
		margin-top: 0;
	}
	#top-head.fixed {
		padding-top: 0;
		background: transparent;
	}
	#mobile-head {
		background: #fff;
		width: 100%;
		height: 56px;
		z-index: 999;
		position: relative;
	}
	#top-head.fixed .logo,
	#top-head .logo {
		position: absolute;
		left: 13px;
		top: 13px;
		font-size: 26px;
	}
	#global-nav {
		position: absolute;
		top: -500px;
		background: #ffffff;
		width: 100%;
		text-align: center;
		padding: 10px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#global-nav ul {
		list-style: none;
		position: static;
		right: 0;
		bottom: 0;
		font-size: 14px;
	}
	#global-nav ul li {
		float: none;
		position: static;
	}
	#top-head #global-nav ul li a,
	#top-head.fixed #global-nav ul li a {
		width: 100%;
		display: block;
		padding: 18px 0;
	}
	#nav-toggle {
		display: block;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.open #global-nav {
		-moz-transform: translateY(556px);
		-webkit-transform: translateY(556px);
		transform: translateY(556px);
	}
}

.footer-3 {
  padding: 3rem 2rem 1.5rem;
  background-color: #ffffff;
}

.footer-3__container {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-3__logo {
  width: 104px;
  height: 26px;
  margin-bottom: .2em;
}

.footer-3__caption {
  margin-top: 0;
  color: #a6adb3;
  font-size: .75em;
}

.footer-3__title,
.footer-3__link {
  margin: 0 0 .8em;
  color: #333;
  font-size: .9em;
}

.footer-3__title {
  font-weight: 600;
}

.footer-3__list {
  padding: 0;
  list-style-type: none;
}

.footer-3__link {
  display: block;
}

.footer-3__link:not(:hover) {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .footer-3__container {
      justify-items: start;
      grid-template-columns: repeat(2, 1fr);
      gap: 1em;
  }

  .footer-3__head {
      grid-column: 1/3;
  }

  .footer-3__caption br {
      display: none;
  }
}