@charset "UTF-8";
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  font-weight: 400;
  font-size: 1.6em;
  font-family: noto-sans-cjk-jp, sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", sans-serif, noto-serif, serif, bebas-neue-pro, sans-serif;
  color: #000000;
  background: #ffffff;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 95%;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

a {
  transition: all 0.3s;
}

@media (max-width: 1100px) {
  br.spNone {
    display: none;
  }
}

br.pcNone {
  display: none;
}
@media (max-width: 1100px) {
  br.pcNone {
    display: block;
  }
}

header {
  padding: 30px 40px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 700;
  color: #fff;
}
@media (max-width: 1100px) {
  header {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    z-index: 700;
    background: #2c8ee1;
    height: 55px;
  }
}
header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  header .header-content h1 {
    position: fixed;
    z-index: 700;
    top: 15px;
  }
  header .header-content h1 img {
    width: 90px;
  }
}
@media (max-width: 1100px) {
  header #navArea nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2c8ee1;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 600;
  }
}
@media (max-width: 1100px) {
  header #navArea nav .navWrap {
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
  }
}
header #navArea nav .navWrap ul {
  display: flex;
}
@media (max-width: 1100px) {
  header #navArea nav .navWrap ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
header #navArea nav .navWrap ul li {
  margin-right: 30px;
  font-size: 1.8rem;
  width: 33.3333333333%;
}
@media (max-width: 1100px) {
  header #navArea nav .navWrap ul li {
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }
}
header #navArea nav .navWrap ul li:last-child {
  margin-right: 0;
}
header #navArea nav .navWrap ul li a {
  transition: all 0.2s;
  position: relative;
  display: block;
  width: 100px;
}
@media (max-width: 1100px) {
  header #navArea nav .navWrap ul li a {
    width: auto;
  }
}
header #navArea nav .navWrap ul li a span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*アニメーションの指定*/
  transition: all 0.5s;
  /*ブロック要素にしてテキスト折り返しなし*/
  display: block;
  white-space: nowrap;
}
header #navArea nav .navWrap ul li a .hover {
  opacity: 0;
}
header #navArea nav .navWrap ul li a:hover .hover {
  opacity: 1;
}
header #navArea nav .navWrap ul li a:hover .normal {
  opacity: 0;
}
@media (max-width: 1100px) {
  header {
    /*============
    .toggle_btn
    =============*/
  }
  header .toggle_btn {
    display: block;
    position: fixed;
    top: 13px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
    z-index: 600;
  }
  header .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.5s;
  }
  header .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  header .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  header .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  header .open .toggle_btn span {
    background-color: #fff;
  }
  header .open .toggle_btn span:nth-child(1) {
    -webkit-transform: rotate(-315deg);
    transform: rotate(-315deg);
    top: 15px;
  }
  header .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  header .open .toggle_btn span:nth-child(3) {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 15px;
  }
}

@media (max-width: 1100px) {
  #top {
    margin-top: 55px;
  }
}
#top .main {
  position: relative;
}
#top .main img {
  width: 100%;
}
#top .main .kv .bgImg {
  opacity: 0;
  animation: bgAnime 16s infinite; /* 4画像 × 各5s = 20s */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#top .main .kv .src2 {
  animation-delay: 4s;
}
#top .main .kv .src3 {
  animation-delay: 8s;
}
#top .main .kv .src4 {
  animation-delay: 12s;
}
@keyframes bgAnime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#top .main .kv::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/dot.png) repeat;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
}
#top .main .kv img {
  width: 100%;
}
#top .main p {
  max-width: 1100px;
  width: 95%;
  display: block;
  position: absolute;
  font-size: 16rem;
  font-family: bebas-neue-pro, sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 0.75;
  bottom: 50px;
}
@media (max-width: 1100px) {
  #top .main p {
    font-size: 10rem;
  }
}
@media (max-width: 768px) {
  #top .main p {
    font-size: 6rem;
    bottom: 15px;
  }
}
#top .company {
  padding: 160px 0 240px;
}
@media (max-width: 1100px) {
  #top .company {
    padding: 50px 0 80px;
  }
}
@media (max-width: 768px) {
  #top .company {
    padding: 30px 0 50px;
  }
}
#top .company .inner {
  max-width: none;
  width: 100%;
}
#top .company ul {
  display: flex;
  justify-content: space-between;
  padding-top: 110px;
}
@media (max-width: 1100px) {
  #top .company ul {
    padding-top: 50px;
  }
}
#top .company ul li {
  padding: 0 50px;
}
@media (max-width: 1500px) {
  #top .company ul li {
    padding: 0 20px;
  }
}
#top .company ul li:nth-child(2n) {
  margin-top: 100px;
}
#top .company ul li img {
  width: 100%;
}
#top .contentsWrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1100px) {
  #top .contentsWrap {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
#top .contentsWrap dt {
  width: 50%;
  padding-left: 13%;
}
@media (max-width: 1500px) {
  #top .contentsWrap dt {
    padding-left: 5%;
  }
}
@media (max-width: 1100px) {
  #top .contentsWrap dt {
    width: 100%;
    padding-left: 0;
  }
}
#top .contentsWrap dt h2 {
  font-family: bebas-neue-pro, sans-serif;
  font-size: 16rem;
  color: #2c8ee1;
  font-weight: bold;
}
@media (max-width: 768px) {
  #top .contentsWrap dt h2 {
    font-size: 8rem;
  }
}
#top .contentsWrap dt .spImg {
  display: none;
}
@media (max-width: 1100px) {
  #top .contentsWrap dt .spImg {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #top .contentsWrap dt .spImg {
    margin-bottom: 10px;
  }
}
@media (max-width: 1100px) {
  #top .contentsWrap dt .spImg img {
    width: 100%;
  }
}
#top .contentsWrap dt p {
  font-size: 1.8rem;
  line-height: 2.667;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #top .contentsWrap dt p {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 30px;
  }
}
#top .contentsWrap dt .link {
  text-align: right;
  padding-right: 40px;
}
@media (max-width: 768px) {
  #top .contentsWrap dt .link {
    padding-right: 20px;
  }
}
#top .contentsWrap dt .link a {
  border-bottom: solid 1px #000;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  #top .contentsWrap dt .link a {
    font-size: 1.6rem;
  }
}
#top .contentsWrap dt .link a::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 62px;
  height: 62px;
  background: #d1e9fc;
  right: -40px;
  margin: auto;
  top: 0;
  bottom: 10px;
  z-index: -1;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  #top .contentsWrap dt .link a::after {
    width: 50px;
    height: 50px;
    right: -30px;
  }
}
#top .contentsWrap dt .link a:hover {
  border-bottom: solid 1px rgba(255, 255, 255, 0);
}
#top .contentsWrap dt .link a:hover::after {
  right: -50px;
}
#top .contentsWrap dd {
  margin-left: 40px;
  width: 50%;
}
@media (max-width: 1100px) {
  #top .contentsWrap dd {
    display: none;
  }
}
#top .contentsWrap dd img {
  width: 100%;
}
@media (max-width: 1100px) {
  #top .contentsWrap dd img {
    display: none;
  }
}
#top .service .inner {
  max-width: none;
  width: 100%;
}
#top .service .contentsWrap {
  flex-direction: row-reverse;
}
#top .service .contentsWrap dt {
  padding-left: 0;
  padding-right: 13%;
}
@media (max-width: 1500px) {
  #top .service .contentsWrap dt {
    padding-right: 5%;
  }
}
@media (max-width: 1100px) {
  #top .service .contentsWrap dt {
    width: 100%;
    padding-right: 0;
  }
}
#top .service .contentsWrap dd {
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 1100px) {
  #top .service .contentsWrap dd {
    margin-right: 0;
  }
}
#top .bnr {
  padding: 140px 0 170px;
}
@media (max-width: 768px) {
  #top .bnr {
    padding: 50px 0;
  }
}
#top .bnr a:hover {
  opacity: 0.7;
}
#top .bnr img {
  width: 100%;
}

.page_main {
  position: relative;
}
@media (max-width: 1100px) {
  .page_main {
    margin-top: 55px;
  }
}
.page_main .kv {
  position: relative;
}
.page_main .kv::after {
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/dot.png) repeat;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
}
.page_main .kv img {
  width: 100%;
}
.page_main .imgP {
  position: absolute;
  bottom: 40px;
}
@media (max-width: 1100px) {
  .page_main .imgP {
    bottom: 10px;
  }
}
@media (max-width: 1100px) {
  .page_main .imgP img {
    width: 50%;
  }
}

.thanks {
  text-align: center;
  padding: 130px 0;
}
@media (max-width: 768px) {
  .thanks {
    padding: 60px 0;
  }
}
.thanks h2 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .thanks h2 {
    font-size: 2rem;
    padding-bottom: 50px;
  }
}
.thanks h2::after {
  position: absolute;
  content: "";
  background: #000;
  width: 140px;
  height: 2px;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 60px;
}
@media (max-width: 768px) {
  .thanks h2::after {
    width: 50px;
    bottom: 30px;
  }
}
.thanks p {
  line-height: 1.75;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .thanks p {
    font-size: 1.4rem;
  }
}
.thanks .topBtn {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .thanks .topBtn {
    margin-top: 40px;
  }
}
.thanks .topBtn a {
  display: block;
  background-color: #2c8ee1;
  border: solid 1px #2c8ee1;
  color: #fff;
  padding: 15px 10px;
  max-width: 260px;
  width: 100%;
  font-size: 1.8rem;
  transition: all 0.3s;
  cursor: pointer;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  .thanks .topBtn a {
    width: 90%;
    margin: 20px auto 0;
  }
}
.thanks .topBtn a:hover {
  background: #fff;
  color: #2c8ee1;
}

@media (max-width: 1100px) {
  #guide .page_main .imgP img {
    width: 70%;
  }
}
#guide .mainDes {
  padding: 180px 0 120px;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 1100px) {
  #guide .mainDes {
    padding: 60px 0 70px;
  }
}
@media (max-width: 768px) {
  #guide .mainDes {
    padding: 40px 0;
  }
}
#guide .mainDes h2 {
  color: #2c8ee1;
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 70px;
}
@media (max-width: 1100px) {
  #guide .mainDes h2 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #guide .mainDes h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
#guide .mainDes p {
  font-size: 2.1rem;
  line-height: 2.286;
}
@media (max-width: 1100px) {
  #guide .mainDes p {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  #guide .mainDes p {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
#guide .guidePlan {
  text-align: center;
  padding-bottom: 200px;
}
#guide .guidePlan h2 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #guide .guidePlan h2 {
    font-size: 2rem;
    padding-bottom: 60px;
  }
}
#guide .guidePlan h2::after {
  position: absolute;
  content: "";
  background: #000;
  width: 240px;
  height: 2px;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 60px;
}
@media (max-width: 768px) {
  #guide .guidePlan h2::after {
    width: 100px;
    bottom: 40px;
  }
}
#guide .guidePlan ul {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  width: auto;
}
#guide .guidePlan ul li {
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 30px;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  padding-left: 20px;
}
#guide .guidePlan ul li a {
  border-bottom: solid 1px #2c8ee1;
  color: #2c8ee1;
  display: inline-block;
  position: relative;
}
#guide .guidePlan ul li a:hover {
  border-bottom: solid 1px #fff;
}
#guide .guidePlan ul li a::after {
  position: absolute;
  content: "";
  background: #2c8ee1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: -20px;
  margin: auto;
  top: 9px;
}
#guide .guidePlan ul li span {
  font-size: 1.6rem;
  font-weight: normal;
}
#guide .guideList {
  padding-bottom: 200px;
}
@media (max-width: 1100px) {
  #guide .guideList {
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  #guide .guideList {
    padding-bottom: 60px;
  }
}
#guide .guideList .inner {
  max-width: inherit;
  width: 90%;
}
@media (max-width: 1100px) {
  #guide .guideList .inner {
    width: 90%;
  }
}
#guide .guideList ul li {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  #guide .guideList ul li {
    margin-bottom: 50px;
  }
}
#guide .guideList ul li:last-child {
  margin-bottom: 0;
}
#guide .guideList ul li:nth-child(2) dl {
  flex-direction: row-reverse;
}
@media (max-width: 1100px) {
  #guide .guideList ul li:nth-child(2) dl {
    flex-direction: column;
  }
}
#guide .guideList ul li:nth-child(2) dl dt {
  padding-right: 0;
  padding-left: 50px;
}
@media (max-width: 1100px) {
  #guide .guideList ul li:nth-child(2) dl dt {
    padding-left: 0;
  }
}
#guide .guideList ul li:nth-child(2) dl dd::after {
  content: "02";
}
#guide .guideList ul li:nth-child(3) dl dd::after {
  content: "03";
}
#guide .guideList ul li dl {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  #guide .guideList ul li dl {
    flex-direction: column;
  }
}
#guide .guideList ul li dl dt {
  width: 70%;
  padding-right: 20px;
}
@media (max-width: 1400px) {
  #guide .guideList ul li dl dt {
    width: 40%;
  }
}
@media (max-width: 1100px) {
  #guide .guideList ul li dl dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
  }
}
#guide .guideList ul li dl dt img {
  width: 100%;
}
#guide .guideList ul li dl dd {
  width: 70%;
  position: relative;
}
@media (max-width: 1100px) {
  #guide .guideList ul li dl dd {
    width: 100%;
  }
}
#guide .guideList ul li dl dd::after {
  content: "01";
  font-size: 16rem;
  font-family: bebas-neue-pro, sans-serif;
  font-weight: 600;
  color: #e3e3e3;
  position: absolute;
  bottom: -20px;
  line-height: 1;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  #guide .guideList ul li dl dd::after {
    bottom: -20px;
    font-size: 10rem;
  }
}
#guide .guideList ul li dl dd p {
  font-size: 1.8rem;
  line-height: 2;
  padding: 0 50px;
}
@media (max-width: 1400px) {
  #guide .guideList ul li dl dd p {
    padding: 0 20px;
  }
}
@media (max-width: 1100px) {
  #guide .guideList ul li dl dd p {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 10px;
  }
}
#guide .guideList ul li dl dd p span {
  font-size: 3rem;
  color: #2c8ee1;
  display: block;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  #guide .guideList ul li dl dd p span {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
#guide .guideContact {
  margin-bottom: 150px;
  /*タブのスタイル*/
  /*ラジオボタンを全て消す*/
  /*タブ切り替えの中身のスタイル*/
  /*選択されているタブのコンテンツのみを表示*/
  /*選択されているタブのスタイルを変える*/
}
@media (max-width: 768px) {
  #guide .guideContact {
    margin-bottom: 50px;
  }
}
#guide .guideContact .tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}
#guide .guideContact .tab_item {
  cursor: pointer;
  width: 50%;
  padding: 40px 0 35px;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  #guide .guideContact .tab_item {
    font-size: 1.6rem;
    padding: 20px 0 25px;
  }
}
@media (max-width: 520px) {
  #guide .guideContact .tab_item {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 10px 0 15px;
  }
}
#guide .guideContact .tab_item::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 9px 0 9px;
  border-color: #2c8ee1 transparent transparent transparent;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
}
@media (max-width: 768px) {
  #guide .guideContact .tab_item::after {
    border-width: 10px 5px 0 5px;
  }
}
#guide .guideContact input[name=tab_item] {
  display: none;
}
#guide .guideContact .tab_content {
  display: none;
  padding: 70px 40px 140px 40px;
  clear: both;
  overflow: hidden;
  background-color: #d2e9fc;
}
@media (max-width: 1100px) {
  #guide .guideContact .tab_content {
    padding: 70px 30px 50px 30px;
  }
}
@media (max-width: 768px) {
  #guide .guideContact .tab_content {
    padding: 40px 20px 50px 20px;
  }
}
#guide .guideContact .tab_content label {
  margin-bottom: 40px;
}
#guide .guideContact #contact01:checked ~ #contact01_content,
#guide .guideContact #contact02:checked ~ #contact02_content {
  display: block;
}
#guide .guideContact .tabs input:checked + .tab_item {
  background-color: #d2e9fc;
  color: #2c8ee1;
}
#guide .guideContact .tabs input:checked + .tab_item::after {
  display: block;
}
#guide .guideContact .tabs input:checked + .tab_item img {
  filter: brightness(0) invert(1);
}
#guide .guideContact .tab_content_description .des {
  margin-bottom: 70px;
  line-height: 2.6;
  color: #2c8ee1;
  font-weight: bold;
}
@media (max-width: 768px) {
  #guide .guideContact .tab_content_description .des {
    line-height: 1.75;
    text-align: left;
    margin-bottom: 40px;
  }
}

#guideContact {
  text-align: center;
}
#guideContact h2 {
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  #guideContact h2 {
    font-size: 2rem;
    padding-bottom: 60px;
  }
}
#guideContact h2::after {
  position: absolute;
  content: "";
  background: #000;
  width: 240px;
  height: 2px;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 60px;
}
@media (max-width: 768px) {
  #guideContact h2::after {
    width: 100px;
    bottom: 40px;
  }
}
#guideContact form {
  background: #d1e9fc;
}
#guideContact form table {
  width: 100%;
}
#guideContact form table caption {
  text-align: right;
  margin-bottom: 10px;
}
#guideContact form table caption span {
  color: #e12c2c;
}
#guideContact form table tr {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #guideContact form table tr {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
#guideContact form table tr.textarea {
  align-items: flex-start;
}
#guideContact form table tr th {
  width: 20%;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  background: #2c8ee1;
  min-width: 230px;
  padding: 10px 0;
  min-height: 41px;
}
@media (max-width: 768px) {
  #guideContact form table tr th {
    width: 100%;
    text-align: left;
    padding-left: 5px;
    font-size: 1.6rem;
  }
}
#guideContact form table tr th .red {
  color: #e12c2c;
}
#guideContact form table tr th .txt-s {
  display: block;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #guideContact form table tr th .txt-s {
    display: inline;
    font-size: 1.4rem;
  }
}
#guideContact form table tr td {
  width: 80%;
  text-align: left;
  position: relative;
  /* create a new arrow, because we are going to mess up the native one
  see "List of symbols" below if you want another, you could also try to add a font-awesome icon.. */
  /* change color of symbol on hover */
  /* make the native arrow invisible and stretch it over the whole field so you can click anywhere in the input field to trigger the native datepicker*/
  /* adjust increase/decrease button */
}
@media (max-width: 768px) {
  #guideContact form table tr td {
    margin-left: 0;
    width: 100%;
  }
}
#guideContact form table tr td p {
  color: #e12c2c;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 5px;
  position: absolute;
  top: -17px;
}
@media (max-width: 768px) {
  #guideContact form table tr td p {
    position: relative;
    top: 0;
    background: #2c8ee1;
    margin-bottom: 0;
    padding: 0 0 5px 5px;
  }
}
#guideContact form table tr td input, #guideContact form table tr td textarea, #guideContact form table tr td select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: noto-sans-cjk-jp, sans-serif;
  width: 100%;
  min-height: 41px;
  border: none;
  color: #000;
  letter-spacing: 0.075em;
  padding: 7px;
  font-size: 1.6rem;
}
#guideContact form table tr td input[type=date] {
  position: relative;
}
#guideContact form table tr td input[type=date]:after {
  font-family: FontAwesome;
  content: "\f073"; /* FontAwesome Webアイコンここに設定 */
  color: #000;
  padding: 0 5px;
}
#guideContact form table tr td input[type=date]:hover:after {
  color: #2c8ee1;
}
#guideContact form table tr td input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  z-index: 100;
}
#guideContact form table tr td input[type=date]::-webkit-inner-spin-button {
  z-index: 1;
}
#guideContact form table tr td input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
#guideContact form table tr .selectWrap {
  position: relative;
  display: inline-block;
}
#guideContact form table tr .selectWrap::after {
  content: "";
  width: 13px;
  height: 10px;
  background: url(../img/down.png) no-repeat;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 17px;
  pointer-events: none;
  z-index: 10;
}
#guideContact form table tr .selectWrap select {
  cursor: pointer;
  -webkit-appearance: inherit;
  -moz-appearance: inherit;
  appearance: inherit;
  position: relative;
}
#guideContact form table tr .selectWrap select::-ms-expand {
  display: none;
}
#guideContact form table.confirm-table tr td {
  padding: 7px;
  min-height: 41px;
}
#guideContact form table .radio {
  align-items: center;
}
@media (max-width: 768px) {
  #guideContact form table .radio td {
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  #guideContact form table .radio td p {
    margin-top: -10px;
    margin-bottom: 10px;
  }
}
#guideContact form table .radio td input {
  display: inline-block;
  min-height: 15px;
  text-align: left;
  width: 20px;
  display: none;
}
#guideContact form table .radio td label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
#guideContact form table .radio td .yes {
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  #guideContact form table .radio td .yes {
    margin-bottom: 20px;
  }
}
#guideContact form table .radio td label::before,
#guideContact form table .radio td label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
#guideContact form table .radio td label::before {
  background-color: #fff;
  border: 1px solid #000;
  height: 18px;
  width: 18px;
  left: 0px;
}
#guideContact form table .radio td label::after {
  background-color: #000;
  opacity: 0;
  height: 10px;
  width: 10px;
  left: 4px;
}
#guideContact form table .radio td input:checked + label::after {
  opacity: 1;
}
#guideContact form table .radio td input:checked + label {
  color: #000;
}
#guideContact form .btn button {
  background-color: #333333;
  border: solid 1px #333333;
  color: #fff;
  padding: 15px 10px;
  max-width: 260px;
  width: 100%;
  font-size: 1.8rem;
  transition: all 0.3s;
  cursor: pointer;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  #guideContact form .btn button {
    width: 90%;
    margin: 20px auto 0;
  }
}
#guideContact form .btn button:hover {
  background: #fff;
  color: #333333;
}
#guideContact form .comfirm-btn {
  display: flex;
  flex-direction: column;
}
#guideContact form .comfirm-btn .return {
  background: #fff;
  color: #333333;
}
#guideContact form .comfirm-btn .return:hover {
  background: #333333;
  color: #ffffff;
}
#guideContact form .privacyLink {
  border-bottom: solid 1px #000;
}
#guideContact form .privacyLink:hover {
  border-bottom: solid 1px #d1e9fc;
}
#guideContact form button[disabled] {
  background: #cccccc;
  border: solid 1px #cccccc;
  cursor: inherit;
  pointer-events: none;
}

@media (max-width: 1100px) {
  #guideThanks .page_main .imgP img {
    width: 70%;
  }
}

#course #courseContents {
  padding: 130px 0 170px;
}
@media (max-width: 768px) {
  #course #courseContents {
    padding: 60px 0;
  }
}
#course #courseContents h2 {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
  color: #2c8ee1;
  margin-bottom: 70px;
}
@media (max-width: 1100px) {
  #course #courseContents h2 {
    font-size: 5.2vw;
  }
}
@media (max-width: 768px) {
  #course #courseContents h2 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }
}
#course #courseContents h3 {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  display: inline-block;
  padding: 10px 40px;
  background: #d2e9fc;
  color: #2c8ee1;
  margin-top: 70px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #course #courseContents h3 {
    margin-top: 40px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
#course #courseContents .list {
  display: flex;
  flex-direction: column;
}
#course #courseContents .list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 2.2rem;
  text-align: left;
}
@media (max-width: 768px) {
  #course #courseContents .list li {
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-left: 15px;
    line-height: 1.4;
  }
}
#course #courseContents .list li::after {
  position: absolute;
  content: "";
  background: #2c8ee1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  margin: auto;
  top: 9px;
}
@media (max-width: 768px) {
  #course #courseContents .list li::after {
    top: 5px;
  }
}
#course #courseContents .list li:last-child {
  margin-bottom: 0;
}
#course #courseContents .list li a {
  color: #2c8ee1;
}
#course #courseContents .list li a:hover {
  opacity: 0.7;
}
#course #courseContents .note {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 768px) {
  #course #courseContents .note {
    margin-top: 10px;
  }
}
#course #courseContents .note li {
  padding-left: 20px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 2rem;
  text-align: left;
  text-indent: -20px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  #course #courseContents .note li {
    font-size: 1.6rem;
    padding-left: 15px;
    line-height: 1.5;
    margin-bottom: 5px;
    text-indent: -16px;
  }
}
#course #courseContents .mainImg {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #course #courseContents .mainImg {
    margin-bottom: 20px;
  }
}
#course #courseContents .mainImg img {
  max-width: 700px;
  width: 100%;
}
#course #courseContents .mainDes {
  font-size: 3rem;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  #course #courseContents .mainDes {
    font-size: 2.8vw;
  }
}
@media (max-width: 768px) {
  #course #courseContents .mainDes {
    font-size: 1.8rem;
    text-align: left;
  }
}
#course #courseContents .courseMap img {
  width: 100%;
  max-width: 631px;
}

#service .serviceList {
  padding-top: 130px;
}
@media (max-width: 1100px) {
  #service .serviceList {
    padding-top: 50px;
  }
}
#service .serviceList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#service .serviceList ul li {
  width: 45.5%;
  margin-bottom: 110px;
  padding: inherit;
}
@media (max-width: 1100px) {
  #service .serviceList ul li {
    width: 47.5%;
    margin-bottom: 50px;
  }
}
@media (max-width: 520px) {
  #service .serviceList ul li {
    width: 100%;
    margin-bottom: 40px;
  }
}
#service .serviceList ul li:last-child {
  margin-bottom: 0;
}
#service .serviceList ul li .img img {
  width: 100%;
}
#service .serviceList ul li h2 {
  font-size: 3rem;
  line-height: 1.33;
  font-weight: bold;
  color: #2c8ee1;
  margin-top: 35px;
}
@media (max-width: 1100px) {
  #service .serviceList ul li h2 {
    font-size: 2rem;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  #service .serviceList ul li h2 {
    font-size: 1.6rem;
  }
}
#service .serviceList ul li h2 .mt {
  margin-top: 25px;
}
@media (max-width: 1100px) {
  #service .serviceList ul li h2 .mt {
    margin-top: 10px;
  }
}
#service .serviceList ul li h2 span {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
  color: #000;
  line-height: 2.25;
}
@media (max-width: 1100px) {
  #service .serviceList ul li h2 span {
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  #service .serviceList ul li h2 span {
    font-size: 1.4rem;
  }
}
#service .bnr {
  padding: 120px 0 150px;
}
@media (max-width: 768px) {
  #service .bnr {
    padding: 50px 0;
  }
}
#service .bnr a:hover {
  opacity: 0.7;
}
#service .bnr img {
  width: 100%;
}

#company .companyTable {
  padding: 130px 0 170px;
}
@media (max-width: 1100px) {
  #company .companyTable {
    padding: 60px 0 80px;
  }
}
#company .companyTable table {
  width: 100%;
}
#company .companyTable table tr {
  border-bottom: solid 1px #2c8ee1;
  line-height: 1.5;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #company .companyTable table tr {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
  }
}
#company .companyTable table tr th {
  width: 30%;
  padding: 30px 20px;
  background: #d2e9fc;
  color: #2c8ee1;
  font-weight: 700;
}
@media (max-width: 768px) {
  #company .companyTable table tr th {
    width: 100%;
    padding: 20px 10px;
  }
}
#company .companyTable table tr td {
  width: 70%;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  #company .companyTable table tr td {
    width: 100%;
    padding: 20px 10px;
  }
}
#company .companyTable table tr td ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
}
#company .companyTable table tr td ul li span {
  display: block;
  margin-left: 1.1em;
  text-indent: -1.1em;
}
#company .companyTable table tr td ul li:last-child {
  margin-bottom: 0;
}
#company .companyTable table tr td ul li::after {
  position: absolute;
  content: "";
  background: #2c8ee1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

#contact {
  /* confirm */
  /* thanks */
}
#contact .contact {
  padding: 130px 0 100px;
  background-color: #fff;
}
@media (max-width: 1100px) {
  #contact .contact {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  #contact .contact {
    padding-top: 70px;
  }
}
#contact .contact .contact-sp-br {
  display: none;
}
@media (max-width: 520px) {
  #contact .contact .contact-sp-br {
    display: block;
  }
}
@media (max-width: 520px) {
  #contact .contact .contact-pc-br {
    display: none;
  }
}
#contact .contact .Form {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
#contact .contact .Form .description {
  text-align: center;
  padding-bottom: 50px;
  line-height: 1.75;
  font-size: 2.1rem;
}
@media (max-width: 1100px) {
  #contact .contact .Form .description {
    font-size: 1.6rem;
  }
}
#contact .contact .Form .Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item {
    padding: 0;
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Label {
  width: 30%;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  color: #2c8ee1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .Form-Item-Label {
    max-width: inherit;
    display: block;
    width: 100%;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Label span {
  color: #fff;
  font-size: 12px;
  background-color: #e12c2c;
  display: inline-block;
  padding: 10px 20px;
  margin: 2px 0 2px 20px;
  font-weight: bold;
  line-height: 1;
}
#contact .contact .Form .Form-Item .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .isMsg {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Input-wrap {
  width: 70%;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .Form-Item-Input-wrap {
    width: 100%;
    padding-left: 0;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Input-wrap p {
  color: #e12c2c;
  letter-spacing: 2px;
  text-align: left;
  padding-bottom: 5px;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .Form-Item-Input-wrap p {
    text-align: left;
    margin-left: 0;
    font-size: 14px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Input {
  border: solid 1px #999999;
  padding: 17px;
  flex: 1;
  width: 100%;
  background: #fff;
  font-size: 18px;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .Form-Item-Input {
    margin-left: 0;
    flex: inherit;
    font-size: 15px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Input::placeholder {
  color: #cccccc;
  font-size: 16px;
}
#contact .contact .Form .Form-Item .selectWrap {
  position: relative;
  display: inline-block;
}
#contact .contact .Form .Form-Item .selectWrap::after {
  content: "";
  width: 13px;
  height: 10px;
  background: url(../img/down.png) no-repeat;
  position: absolute;
  bottom: 22px;
  right: 20px;
  margin-top: -4px;
  pointer-events: none;
}
#contact .contact .Form .Form-Item .selectWrap select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
#contact .contact .Form .Form-Item .selectWrap select::-ms-expand {
  display: none;
}
#contact .contact .Form .Form-Item .choice {
  color: #999999 !important;
  font-weight: bold;
}
#contact .contact .Form .Form-Item .postalcode {
  border: solid 1px #999999;
  margin-left: 20px;
  margin-bottom: 10px;
  height: 40px;
  flex: 1;
  width: 120px;
  background: #fff;
  font-size: 18px;
  padding-left: 1em;
  padding-right: 1em;
}
#contact .contact .Form .Form-Item .postalcode::placeholder {
  color: #999999;
  font-size: 18px;
}
#contact .contact .Form .Form-Item .zip {
  border: solid 1px #cccccc;
  margin-bottom: 10px;
  padding-right: 1em;
  height: 40px;
  flex: 1;
  border-radius: 5px;
  width: 120px;
  background: #fff;
  font-size: 18px;
  padding-left: 1em;
}
#contact .contact .Form .Form-Item .zip::placeholder {
  color: #d1d1d1;
  font-size: 16px;
}
#contact .contact .Form .Form-Item .Form-Item-Textarea {
  font-family: noto-sans-cjk-jp, sans-serif;
  border: solid 1px #999999;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  background: #fff;
  font-size: 18px;
  padding: 15px 20px;
}
@media (max-width: 1100px) {
  #contact .contact .Form .Form-Item .Form-Item-Textarea {
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
#contact .contact .Form .Form-Item .Form-Item-Textarea::placeholder {
  color: #999999;
  font-size: 18px;
}
#contact .contact .btn {
  text-align: center;
}
#contact .contact .btn button {
  background-color: #333333;
  border: solid 1px #333333;
  color: #fff;
  padding: 15px 10px;
  max-width: 260px;
  width: 100%;
  font-size: 1.8rem;
  transition: all 0.3s;
  cursor: pointer;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  #contact .contact .btn button {
    width: 90%;
    margin: 20px auto 0;
  }
}
#contact .contact .btn button:hover {
  background: #fff;
  color: #333333;
}
#contact .contact .comfirm-btn {
  display: flex;
  flex-direction: column;
}
#contact .contact .comfirm-btn .return {
  background: #fff;
  color: #333333;
}
#contact .contact .comfirm-btn .return:hover {
  background: #333333;
  color: #ffffff;
}
#contact .Form-Item-answer {
  text-align: left;
}
#contact .thanks {
  margin-bottom: 40px;
}
#contact .thanks h1 {
  border-left: none;
  text-align: center;
  padding-bottom: 30px;
}
#contact .thanks-wrap {
  width: 90%;
  margin: 80px auto 120px;
}
#contact .thanks-wrap p {
  line-height: 30px;
  letter-spacing: 2px;
  text-align: center;
}

footer {
  background: #333333;
  padding: 90px 0 120px;
  color: #fff;
}
@media (max-width: 768px) {
  footer {
    padding: 50px 0 40px;
    font-size: 1.4rem;
  }
}
footer .contactBtn {
  text-align: center;
}
footer .contactBtn .btn {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  footer .contactBtn .btn {
    margin-bottom: 20px;
  }
}
footer .contactBtn .btn a {
  font-family: bebas-neue-pro, sans-serif;
  font-size: 7.2rem;
  color: #2c8ee1;
  font-weight: bold;
  background: #fff;
  padding: 10px;
  max-width: 520px;
  width: 100%;
  display: inline-block;
  text-align: center;
}
@media (max-width: 768px) {
  footer .contactBtn .btn a {
    font-size: 4rem;
    padding: 5px;
  }
}
footer .contactBtn .btn a:hover {
  background: #2c8ee1;
  color: #fff;
  transition: all 0.3s;
}
footer .contactBtn p {
  line-height: 1.75;
}
footer .footerUnder {
  padding-top: 130px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  footer .footerUnder {
    flex-direction: column;
    padding-top: 30px;
    justify-content: center;
    align-items: center;
  }
}
footer .footerUnder dl {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  footer .footerUnder dl {
    margin-bottom: 30px;
  }
}
footer .footerUnder dl dt {
  margin-right: 35px;
  padding-top: 7px;
}
@media (max-width: 768px) {
  footer .footerUnder dl dt {
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  footer .footerUnder dl dt img {
    width: 120px;
  }
}
footer .footerUnder dl dd {
  line-height: 1.667;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  footer .footerUnder dl dd {
    font-size: 1.4rem;
  }
}
footer .footerUnder ul {
  display: flex;
  align-items: center;
}
footer .footerUnder ul li {
  margin-right: 40px;
}
footer .footerUnder ul li:last-child {
  margin-right: 0;
}
footer .footerUnder ul li a:hover {
  opacity: 0.7;
}
footer .copy {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 768px) {
  footer .copy {
    margin-top: 20px;
    text-align: center;
  }
}