@charset "utf-8";

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Common(PC.SP共通設定)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  /* ゴシック体系のフォント指定 */
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Noto Sans JP", Meiryo, sans-serif;
  text-rendering: optimizeLegibility;
  color: #595757;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

.serif {
  /* 明朝体系(セリフ体)のフォント指定 */
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}

main {
  display: block;
  background-image: url(../img/bg.jpg);
  background-position: center;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a:-webkit-any-link {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:visited {
  color: #000;
}
a:active {
  color: #000;
}
a img {
  transition: all 0.2s ease-in-out;
}
a:hover {
  opacity: 0.8;
}
ol,
ul {
  list-style: none;
}
/*----------デバイスで表示切り替え----------*/
@media only screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}
/*----------フェード----------*/
.scroll-space {
  padding-top: 0;
  height: auto;
  overflow: hidden;
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein-bottom {
  transform: translate(0, 30px);
}
.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*=======================================
header ここから
----------------------------------------*/
/*-----共通設定-----*/
header {
  width: 100%;
  padding: 0.7rem 0;
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  margin: 0 auto;
}
header .inner h1 {
  display: flex;
  align-items: center;
  gap: 1rem;

  max-width: 100%;
  height: auto;
  margin-right: 1rem;
}
header .inner h1 img {
  width: 65px;
  height: auto;
}
header .inner h1 span {
  font-weight: bold;
  font-size: 1.8rem;
}
header .inner h1 span br {
  display: none;
}
/*-----画面幅768px以上-----*/
@media only screen and (min-width: 768px) {
  header .inner nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .inner nav ul li {
    display: block;
    padding: 1.6rem;
  }
  header .inner nav ul li a {
    font-size: 1.4rem;
    line-height: 1;
  }
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  header .inner {
    padding: 14px 10px;
  }
  header .inner h1 a img {
    width: 40vw;
    max-width: 200px;
    height: auto;
  }
  header .inner h1 span span {
    display: none;
  }
  /*ハンバーガーメニュー*/
  nav.NavMenu {
    position: fixed;
    /*表示位置を固定*/
    z-index: 10;
    top: 0;
    left: 0;
    background: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    transform: translateY(-100%);
    /*ナビを上に隠す*/
    transition: all 0.6s;
    /*アニメーションの時間を指定*/
  }
  nav.NavMenu ul {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0 auto;
    padding: 2% 0;
  }
  nav.NavMenu ul li {
    font-size: 1.6rem;
    list-style-type: none;
    width: 100%;
    padding-bottom: 0;
    border-bottom: 1px #fff solid;
  }
  nav.NavMenu ul li:last-child {
    padding-bottom: 0;
  }
  nav.NavMenu ul li a {
    display: block;
    color: #fff;
    padding: 1rem 0;
  }
  /*トグルボタンが押されたときに付与するクラス*/
  nav.NavMenu.active {
    transform: translateY(0%);
  }
  /*トグルボタンのスタイルを指定*/
  .Toggle {
    position: fixed;
    right: 1rem;
    top: 1.7rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 13;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
  }
  .Toggle span {
    display: block;
    position: absolute;
    width: 24px;
    border-bottom: solid 3px #fff;
    -webkit-transition: 0.35s ease-in-out;
    /*変化の速度を指定*/
    -moz-transition: 0.35s ease-in-out;
    /*変化の速度を指定*/
    transition: 0.35s ease-in-out;
    /*変化の速度を指定*/
    left: 6px;
  }
  .Toggle span:nth-child(1) {
    top: 8px;
  }
  .Toggle span:nth-child(2) {
    top: 16px;
  }
  .Toggle span:nth-child(3) {
    top: 24px;
  }
  /* 最初のspanをマイナス45度に */
  .Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 3px #fff;
  }
  /* 2番目と3番目のspanを45度に */
  .Toggle.active span:nth-child(2),
  .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 3px #fff;
  }
}
@media only screen and (max-width: 375px) {
  header .inner h1 img {
    width: 55px;
  }
  header .inner h1 span {
    font-size: 1.6rem;
  }
  header .inner h1 span br {
    display: block;
  }
}
/*---------------------------------------
header
=======================================*/

.btn_message {
  width: 100%;
  height: auto;
  background-color: #c9caca;
  padding: 3rem 0;
}

.btn_message .wrap {
  width: 100%;
  max-width: calc(960px + 6rem);
  height: auto;
  background-color: #c9caca;
  padding: 0 3rem;
  margin: 0 auto;
}
.btn_message .wrap h3 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
.btn_message .wrap p {
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.btn_message .wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  align-self: flex-start;
  width: 100%;
  max-width: calc(960px + 6rem);
  margin: 2rem auto;
}
.btn_message .wrap ul li {
  width: 48%;
  height: auto;
}
.btn_message .wrap ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  font-size: 2rem;
  text-align: center;
  background-color: #898989;
  padding: 1rem;
}
.btn_message .wrap ul li a::after {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../img/btn_arrow01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 10px;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  .btn_message {
    padding: 12% 0 2%;
  }
  .btn_message .wrap {
    padding: 0 2%;
  }
  .btn_message .wrap ul {
    flex-direction: column;
  }
  .btn_message .wrap ul li {
    width: 100%;
    margin: 0 auto 2%;
  }
  .btn_message .wrap h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*=======================================
#fv
----------------------------------------*/
/*-----共通設定-----*/

#fv {
  width: 100%;
  height: auto;
  background-image: url("../img/fv_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto;
  padding: 0 2rem;
}
#fv .inner {
  max-width: calc(960px + 6rem);
  padding: 6rem 2rem;
  margin: 0 auto;
  background-image: url(../img/fv.jpg);
  background-color: #ffffff;
  background-size: 550px;
  background-position: right;
  background-repeat: no-repeat;
}

#fv .fvcaption {
  width: min(420px, 100%);
}
#fv .fvcaption h3 {
  width: fit-content;
  margin: 0 auto;
}

#fv .fvcaption h3 span {
  text-align: left;
  display: inline-block;
  word-break: keep-all;
  font-weight: bold;
  color: #fff;
  font-size: 5.5rem;
  background-color: #37ecba;
  background-image: linear-gradient(90deg, #37ecba 0%, #72afd3 99%);
  letter-spacing: 0.2rem;
  padding: 5px 0 5px 5px;
}
#fv .fvcaption h3 span:not(:last-child) {
  margin: 0 0 1rem 0;
}

#fv .fvcaption p {
  font-size: 3rem;
  font-weight: bold;
  padding: 12px 0;

  color: #595757;
  line-height: 1.3;
}
#fv .fvcaption > img {
  display: none;
}

#fv .checkbutton {
  margin: 20px 0 0 0;
  max-width: 343px;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #fv {
    padding: 1.5rem;
  }
  #fv .inner {
    background-image: none;
    padding: 2rem 0rem;
  }

  #fv .inner h2 picture > img {
    display: none;
  }

  #fv .fvcaption {
    width: 80%;
    margin: 0 auto;
  }
  #fv .fvcaption h3 span {
    font-size: 10vw !important;
  }
  #fv .fvcaption p {
    padding: 2rem 0;

    font-size: 5vw !important;
  }

  #fv .fvcaption > img {
    display: block;
  }

  #fv .checkbutton {
    margin: 40px auto 10px auto;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#aboutus
=======================================*/

/*-----共通設定-----*/
#aboutus {
  margin: 0 auto;
  max-width: 700px;
  padding: 10px;
  border: solid 3px rgba(144, 245, 154, 1), rgba(4, 202, 255, 1);
  color: #595757;
  margin-top: 35px;
}

#aboutus h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0;
  letter-spacing: 0.1em;
}

#aboutus p {
  padding: 15px;
  text-align: right;
  font-size: 16px;
  line-height: 1.9;

  letter-spacing: 0.1em;
}
#aboutus p.aboutus1 {
  font-weight: bold;
  text-align: left;
}

.aboutusinner {
  background: linear-gradient(
    135deg,
    rgb(0, 214, 164) 39%,
    rgb(0, 193, 157) 54%,
    rgb(0, 198, 181) 74%,
    rgb(0, 187, 255) 100%
  );
  border-radius: 14px;
  padding: 3px;
}

.aboutusinnerin {
  background: #ffffff;
  border-radius: 10px;
  padding: 14px;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #aboutus h2 {
    font-size: 2.2rem;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#aboutus
=======================================*/

/*=======================================
#merit
----------------------------------------*/
/*-----共通設定-----*/
#merit {
  width: 100%;
  padding: 6rem 0 0;
  margin: 0 auto;
}
#merit .inner h2 {
  width: fit-content;
  margin: 0 auto;
  padding: 0 0 0.5rem 0;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid #595757;
  letter-spacing: 0.1em;
}
#merit .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 0 3rem 3rem;
  margin: 0 auto;
}
#merit .inner ul.wrap_contents {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  align-self: flex-start;
  width: 100%;
  max-width: calc(960px + 6rem);
  margin: 0 auto;
}
#merit .inner ul.wrap_contents li {
  width: calc((100% - 2rem) / 3);
  height: auto;
  flex-shrink: 0;
}
#merit .inner .wrap .wrap_text {
  padding-left: 1.6rem;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #merit {
    padding: 12% 0 2%;
  }
  #merit .inner {
    padding: 0 2% 2%;
    margin: 0 auto;
  }
  #merit .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #merit .inner ul.wrap_contents {
    display: flex;

    justify-content: space-around;
  }
  #merit .inner ul.wrap_contents li {
    width: calc((100% - 1rem) / 2);
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
  #merit .inner ul.wrap_contents li {
    width: 100%;
  }
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#merit
=======================================*/

/*=======================================
#interview
----------------------------------------*/
/*-----共通設定-----*/
#interview {
  width: 100%;
  background-color: #dcdddd;
  padding: 6rem 0 0;
}
#interview .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 0 3rem;
  margin: 0 auto;
}
#interview .inner h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
#interview .inner .wrap_contents {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
}
#interview .inner .wrap_contents img {
  width: 290px;
  height: 290px;
  flex-shrink: 0;
}
#interview .inner .wrap_contents .wrap_txt {
  width: 100%;
  max-width: 670px;
  padding-left: 1.6rem;
}
#interview .inner .wrap_contents .wrap_txt h3 {
  font-size: 2rem;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 3rem;
}
#interview .inner .wrap_contents .wrap_txt p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #interview {
    padding: 12% 0 2%;
  }
  #interview .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #interview .inner {
    padding: 0 2% 2%;
    margin: 0 auto;
  }
  #interview .inner .wrap_contents {
    flex-direction: column;
    margin-bottom: 4%;
  }
  #interview .inner .wrap_contents img {
    margin-bottom: 2%;
  }
  #interview .inner .wrap_contents .wrap_txt h3 {
    font-size: 1.8rem;
    margin-bottom: 0.9rem;
  }
  #interview .inner .wrap_contents .wrap_txt {
    padding-left: 0;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}
/*---------------------------------------
#interview
=======================================*/
/*=======================================
#flow
----------------------------------------*/
/*-----共通設定-----*/
#flow {
  width: 100%;

  padding: 6rem 0 0;
}
#flow .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 0 3rem 3rem;
  margin: 0 auto;
}
#flow .inner h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #595757;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0 0.5rem 0;
  margin-bottom: 3rem;
}
#flow .inner ul.wrap_contents {
  width: 100%;
  max-width: calc(960px + 6rem);
  margin: 0 auto;
}

div.white {
  padding: 4rem;
  background-color: #ffffff;
  border-radius: 14px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
div.white h3 {
  margin: 0 0 0.5rem 0;
}

#flow .inner ul.wrap_contents li {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  padding: 0.3rem;
  margin-bottom: 9rem;
  background: linear-gradient(
    135deg,
    rgb(0, 214, 164) 39%,
    rgb(0, 193, 157) 54%,
    rgb(0, 198, 181) 74%,
    rgb(0, 187, 255) 100%
  );
  border-radius: 16px;
}

#flow .inner ul.wrap_contents li:last-child {
  margin-bottom: 0;
}
#flow .inner ul.wrap_contents li:last-child::after {
  background-image: none;
}
#flow .inner ul.wrap_contents li img {
  width: 350px;
  height: auto;
  object-fit: contain;
}
#flow .inner ul.wrap_contents li .wrap_text {
  width: 100%;
}
#flow .inner ul.wrap_contents li .wrap_text h3 {
  width: 100%;
  font-weight: bold;
  line-height: 1.7;
  padding-right: 1.6rem;
  font-size: 2.2rem;
}
#flow .inner ul.wrap_contents li .wrap_text p {
  font-size: 1.6rem;
  line-height: 2;
  padding-right: 1.6rem;
  letter-spacing: 0.02em;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #flow {
    padding: 12% 0 2%;
  }
  #flow .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #flow .inner {
    padding: 0 2% 4%;
    margin: 0 auto;
  }
  #flow .inner ul.wrap_contents li {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 3rem;
  }
  #flow .inner ul.wrap_contents li img {
    width: 100%;
  }
  div.white {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
  }

  #flow .inner ul.wrap_contents li .wrap_text h3 {
    font-size: 1.6rem;
    padding: 0;
  }
  #flow .inner ul.wrap_contents li .wrap_text p {
    padding-right: 0;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#flow
=======================================*/
/*=======================================
#slide
----------------------------------------*/
/*-----共通設定-----*/
#slide {
  width: 100%;

  padding: 6rem 0;
}
#slide .swiper-pagination {
  bottom: 0;
}
#slide .swiper-pagination span {
  width: 10px;
  height: 10px;
  margin: 8px;
}
#slide .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  margin: 0 auto;
  padding: 0 3rem 2rem;
}
#slide .inner h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 3rem;
  padding: 0 0 0.5rem 0;
  border-bottom: 2px solid #595757;
  letter-spacing: 0.1em;
}
#slide .inner .text_intro {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

#slide .inner .slide_box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 3.5rem 0;
}

#slide .inner .swiper-container {
  width: 100%;
  height: 100%;
  background-color: #898989;
}

#slide .inner .swiper-container .swiper-slide {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin: auto;
  text-align: center;
  font-size: 1.8rem;
}

#slide .inner .swiper-container .swiper-slide img {
  width: 100%;
  height: auto;
}

#slide .inner .swiper-container .swiper-slide a:hover {
  transition: unset;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  #slide {
    padding: 12% 0 2%;
  }
  #slide .swiper-pagination span {
    width: 10px;
    height: 10px;
    margin: 6px;
  }
  #slide .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #slide .inner {
    padding: 0 2% 2%;
    margin: 0 auto;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#slide
=======================================*/

/*=======================================
#faq
----------------------------------------*/
/*-----共通設定-----*/
#faq {
  width: 100%;
  background: #dcdddd;
  padding: 6rem 0 0;
  margin: 0 auto;
}
#faq .inner h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
#faq .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 0 3rem;
  margin: 0 auto;
}

#faq .inner dl {
  width: 100%;
  background-color: #fff;
  margin-bottom: 6rem;
}
#faq .inner dl dt {
  width: 100%;
  font-size: 2rem;
  line-height: 1.7;
  background-color: #9fa0a0;
  padding: 0 2rem;
}
#faq .inner dl dd {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 1rem 2rem;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #faq {
    padding: 12% 0 2%;
  }
  #faq .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #faq .inner {
    padding: 0 2% 2%;
    margin: 0 auto;
  }
  #faq .inner dl {
    margin-bottom: 4%;
  }
  #faq .inner dl dt {
    font-size: 1.8rem;
    padding: 0.9rem 1.8rem;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#faq
=======================================*/

/*=======================================
#graph
----------------------------------------*/
/*-----共通設定-----*/
#graph {
  width: 100%;
  background: #dcdddd;
  padding: 6rem 0 0;
  margin: 0 auto;
}
#graph .inner h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
#graph .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 0 3rem 6rem;
  margin: 0 auto;
}
#graph .inner ul.wrap_contents {
  width: 100%;
  max-width: calc(960px + 6rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#graph .inner ul.wrap_contents li {
  width: 48%;
  max-width: 440px;
  margin-bottom: 2rem;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #graph {
    padding: 4% 0 0;
  }
  #graph .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #graph .inner {
    padding: 0 2% 2%;
    margin: 0 auto;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
#graph
=======================================*/

/*=======================================
button
----------------------------------------*/
/*-----共通設定-----*/
div.checkbutton2 {
  margin: 0 auto;
  max-width: min(360px, 90%);
  padding: 0 10px;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
button
=======================================*/

/*=======================================
追加コンテンツ
----------------------------------------*/
/*-----共通設定-----*/
#requirements {
  width: 100%;
  background-color: #dcdddd;
  padding: 6rem 0;
}
#requirements .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  padding: 3rem 3rem 0;
  margin: 0 auto;
}
#requirements .inner h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
#requirements .inner dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: calc(960px + 6rem);
  background-color: #fff;
  padding: 2rem;
  margin: 0 auto;
}
#requirements .inner dl dt {
  width: 25%;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  background-color: #fff;
  padding: 2rem 0 2rem 2rem;
  margin: 0;
  border-bottom: 1px #e6e6e6 solid;
}
#requirements .inner dl dd {
  width: 75%;
  font-size: 1.6rem;
  line-height: 1.7;
  vertical-align: top;
  background-color: #fff;
  padding: 2rem;
  margin: 0;
  border-bottom: 1px #e6e6e6 solid;
}
#requirements .inner dl dd .text_bold {
  font-size: 1.8rem;
  font-weight: bold;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #requirements {
    padding: 4% 2%;
  }
  #requirements .inner h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  #requirements .inner {
    padding: 0;
    margin: 0 auto;
  }
  #requirements .inner dl {
    display: block;
  }
  #requirements .inner dl dt {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    border-bottom: none;
  }
  #requirements .inner dl dd {
    width: 100%;
    padding: 0 0 2%;
    margin-bottom: 4%;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
追加コンテンツ
=======================================*/

/*=======================================
#contents_mailform
----------------------------------------*/
#contents_mailform {
  padding: 2.6rem 0;
}
#contents_mailform .inner {
  padding: 0 2.6rem;
}
#contents_mailform .inner h3 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
#contents_mailform .inner form table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 2.6em;
  border-collapse: collapse;
}

#contents_mailform .inner form tr {
  font-size: 1.6rem;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}
#contents_mailform .inner form tr .label_required {
  font-size: 1.4rem;
  color: #fff;
  background-color: #000;
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
  margin-left: 1.4rem;
}
#contents_mailform .inner form tr th {
  width: 28rem;
  padding: 1.6rem 0 1.6rem 1.6rem;
  vertical-align: middle;
}

#contents_mailform .inner form tr td {
  padding: 1.6rem;
  vertical-align: middle;
}
#contents_mailform .inner form tr input,
#contents_mailform .inner form tr textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px #000 solid;
  vertical-align: middle;
}

#contents_mailform .inner form tr select {
  width: 100%;
  margin: 0;
  padding: 0.5rem;
  background: url("../img/select_ya.png") right 10px center no-repeat #fff;
  font-size: 1.6rem;
  border: 1px #000 solid;
}

#contents_mailform .inner form tr .privacy {
  margin-bottom: 1.6rem;
}
/*性別ほか labelタグ右側に余白*/
#contents_mailform .inner form tr td label {
  font-size: 1.6rem;
  margin-right: 1rem;
  vertical-align: middle;
}

#contents_mailform form .wrap_button {
  padding: 2.6rem;
  text-align: center;
}

#contents_mailform form button {
  width: 100%;
  max-width: 460px;
  height: auto;
  font-size: 2.6rem;
  padding: 2.6rem 0;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 0 auto;
}

#contents_mailform .inner form button:hover {
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
}

/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  #contents_mailform .inner form tr th {
    display: block;
    padding-bottom: 0;
  }
  #contents_mailform .inner form tr td {
    display: block;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}
/*---------------------------------------
#contents_mailform
=======================================*/

/*=======================================
footer
----------------------------------------*/
footer {
  width: 100%;
  background-color: #b5b5b6;
  margin-top: 35px;
}
footer .inner {
  width: 100%;
}
/*--ボタン-電話番号-メールフォーム--*/
footer .inner .menu_contact {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  align-self: center;
  max-width: calc(960px + 6rem);
  padding: 1.6rem 0;
  margin: 0 auto;
}
footer .inner .menu_contact li a {
  color: #fff;
  font-weight: bold;
}
footer .inner .menu_contact li.link_tel {
  position: relative;
  font-size: 4rem;
}
footer .inner .menu_contact li.link_tel a::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../img/footer_icon_tel.png");
  background-size: contain;
  width: 28px;
  height: 28px;
  top: 0.8rem;
  left: -0.6rem;
  margin-left: -2.8rem;
}
footer .inner .menu_contact li.link_mail {
  position: relative;
  font-size: 2.6rem;
}
footer .inner .menu_contact li.link_mail a::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../img/footer_icon_mail.png");
  background-size: contain;
  width: 28px;
  height: 28px;
  top: 0;
  left: -0.6rem;
  margin-left: -2.8rem;
}
/*--ロゴ-社名-住所--*/
footer .inner .wrap_company_info {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  flex-wrap: no-wrap;
  max-width: calc(960px + 6rem);
  padding: 1.6rem 0;
  margin: 0 auto;
}
footer .inner .wrap_company_info img {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0 3rem 0 0;
}
footer .inner .wrap_company_info .name {
  font-size: 3rem;
  margin-right: 3rem;
}
footer .inner .wrap_company_info .name .address {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
}
/*--コピーライト--*/
footer .copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
/*-----画面幅767px以下-----*/
@media only screen and (max-width: 767px) {
  footer .inner {
    padding: 0 2%;
  }
  /*--ボタン-電話番号-メールフォーム--*/
  footer .inner .menu_contact li {
    margin-bottom: 1.6rem;
  }
  footer .inner .menu_contact li a {
    font-size: 1.8rem;
  }

  footer .inner .menu_contact {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    align-self: center;
    padding: 0;
    margin: 0 auto;
  }
  footer .inner .menu_contact li.link_tel a::before {
    top: 1.2rem;
    left: -0.6rem;
  }
  /*--ロゴ-社名-住所--*/
  footer .inner .wrap_company_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    padding: 0 0 1.6rem;
    margin: 0 auto;
  }
  footer .inner .wrap_company_info img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 1.6rem;
  }
  footer .inner .wrap_company_info .name {
    margin: 0 0 1.6rem;
  }
}
/*-----画面幅375px以下-----*/
@media only screen and (max-width: 375px) {
}
/*-----画面幅320px以下-----*/
@media only screen and (max-width: 320px) {
}

/*---------------------------------------
footer
=======================================*/
/*========================================
#btn_fixed
---------------------------------------*/
#btn_fixed {
  display: none !important;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 18px 0 9px;
  z-index: 9999;
  box-sizing: border-box;
}
#btn_fixed .inner {
  width: 100%;
  max-width: calc(960px + 6rem);
  height: auto;
  margin: 0 auto;
}

#btn_fixed ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
}
#btn_fixed ul li {
  width: 100%;
  max-width: 48%;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 5px;
  background-color: #fff;
}
#btn_fixed ul li a {
  position: relative;
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 0.7em;
  margin: 0 auto;
  border-radius: 5px;
}
#btn_fixed ul li:nth-child(1) {
  background-color: #9fa0a0;
}
#btn_fixed ul li:nth-child(2) {
  background-color: #c9caca;
}

#btn_fixed ul li a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  background-image: url("../img/btn_fixed_arrow01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: calc(50% - 6px);
  right: 8px;
}
#btn_fixed ul li:nth-child(odd) {
  margin-right: 10px;
}
#btn_fixed ul li:nth-child(even) {
  margin-left: 10px;
}
/*-----画面幅768px以下-----*/
@media only screen and (max-width: 768px) {
  #btn_fixed ul {
    flex-direction: column;
  }
  #btn_fixed ul li {
    max-width: 100%;
    margin: 0 auto 10px;
  }
  #btn_fixed ul li:nth-child(odd) {
    margin-right: 0;
  }
  #btn_fixed ul li:nth-child(even) {
    margin-left: 0;
  }
}

/*---------------------------------------
#btn_fixed
=======================================*/
