@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #121212;
  font-size: 16px;
  line-height: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #0168b7;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #00a0e9;
  font-weight: bold;
}

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

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  transform: translateY(-50%);
}
#side li + li {
  margin-top: 20px;
}
#side a {
  transition: all 0.5s ease-out;
}
#side a:hover {
  opacity: 0.6;
}
@media (max-width: 1399px) {
  #side {
    width: 7.1428571429vw;
  }
}
@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
}
#header .top {
  position: relative;
  width: 100%;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  text-align: center;
  display: flex;
  align-items: center;
}
#header .logo img {
  min-width: 160px;
  max-width: 445px;
}
#header .links a {
  text-decoration: none;
  transition: all 0.5s ease-out;
}
#header .links a:hover {
  opacity: 0.6;
}
#header .ccm-search-block-form .ccm-search-block-text {
  outline: none;
}
#header .ccm-search-block-form .ccm-search-block-submit {
  transition: all 0.5s ease-out;
  cursor: pointer;
}
#header .ccm-search-block-form .ccm-search-block-submit:hover {
  opacity: 0.6;
}
@media (max-width: 1199px) {
  #header .top {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  #header .top {
    height: 60px;
    padding-right: 80px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    max-height: 50px;
    min-width: 0px;
    width: auto;
    max-width: 230px;
  }
}

#gnav {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
#gnav .links {
  height: 100%;
  margin-left: 40px;
}
#gnav .links ul {
  display: flex;
  height: 100%;
}
#gnav .links ul li {
  height: 100%;
  width: 120px;
}
#gnav .links ul li.entry-btn a {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 20px;
  background-color: #0168b7;
}
#gnav .links ul li a {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00a0e9;
}
#gnav > ul {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 10px 35px;
  justify-content: end;
  flex-wrap: wrap;
}
#gnav > ul > li {
  position: relative;
  transition: all 0.5s ease-out;
  /*&.current {
    border-top: solid 5px #e99100;
  }*/
}
#gnav > ul > li::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: #000;
  bottom: 0px;
  left: calc((100% - 50px) / 2);
  z-index: 0;
  width: 0;
  transition: all 0.5s ease-out;
}
#gnav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
}
#gnav > ul > li > a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
#gnav > ul > li > a:hover {
  opacity: 0.6;
}
#gnav > ul > li ul {
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-out;
  z-index: 1;
}
#gnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  #gnav .links {
    margin-left: 20px;
  }
  #gnav .links ul li {
    width: 90px;
  }
  #gnav .links ul li a {
    font-size: 15px;
  }
  #gnav .links ul li.entry-btn a {
    font-size: 18px;
  }
  #gnav > ul {
    gap: 10px 20px;
  }
  #gnav > ul > li > a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  #gnav .links {
    display: none;
  }
  #gnav > ul {
    flex-direction: column;
  }
  #gnav > ul > li {
    flex-grow: 0;
  }
  #gnav > ul > li::after {
    display: none;
  }
  #gnav > ul > li > a {
    color: #fff;
  }
  #gnav > ul > li ul {
    visibility: visible;
    opacity: 1;
    position: relative;
    padding: 0;
  }
  #gnav > ul > li ul li {
    border-bottom: 0px;
    border-top: 1px solid #000;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
/*
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  @include opacity();
  @include sp {
    //display: none !important;
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
#pagetop {
  position: absolute;
  top: 90px;
  right: 90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease-out;
}
#pagetop:hover {
  opacity: 0.6;
}
@media (max-width: 1250px) {
  #pagetop {
    right: 20px;
  }
}
@media (max-width: 767px) {
  #pagetop {
    top: 15px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

/* ----------------------------------------------
entryform
------------------------------------------------- */
.entryform {
  position: relative;
}
.entryform::before, .entryform::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.entryform::before {
  width: 100%;
  background-color: #fbdd33;
}
.entryform::after {
  width: 56.625%;
  background-color: #fad400;
  -webkit-clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(23% 0, 100% 0, 100% 100%, 0 100%);
}
.entryform a {
  text-decoration: none;
  transition: all 0.5s ease-out;
  padding: 103px 110px 123px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #0168b7;
  display: block;
  text-align: center;
}
.entryform a:hover {
  opacity: 0.6;
}
.entryform a small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  display: block;
  margin-top: -18px;
}
.entryform a::before {
  content: "";
  position: absolute;
  right: max((100% - 1180px) / 2, 10px);
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../images/arow-blue2.webp) no-repeat center #fff;
  border: 1px solid #0168b7;
}
@media (max-width: 1199px) {
  .entryform a {
    font-size: 60px;
    padding: 90px;
  }
  .entryform a::before {
    width: 80px;
  }
  .entryform a small {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .entryform a {
    font-size: 40px;
    padding: 50px;
  }
  .entryform a::before {
    width: 40px;
  }
  .entryform a small {
    font-size: 20px;
    margin-top: 0px;
  }
}

/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #f8f8f8;
  padding-top: 90px;
  padding-bottom: 80px;
  position: relative;
}
#footer .inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
#footer .logo {
  margin-bottom: 30px;
  max-width: 445px;
}
#footer .logo a {
  transition: all 0.5s ease-out;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .text {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
}
#footer #copyright {
  font-size: 10px;
  line-height: 1.6;
}
#footer .contents {
  display: flex;
  justify-content: space-between;
}
#footer .links {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 30px;
}
#footer .links ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#footer .links ul li {
  width: 200px;
  height: 54px;
}
#footer .links ul li.entry-btn a {
  background-color: #0168b7;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 20px;
}
#footer .links ul li a {
  width: 100%;
  height: 100%;
  background-color: #00a0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: unset;
  transition: all 0.5s ease-out;
  position: relative;
}
#footer .links ul li a:hover {
  opacity: 0.6;
}
#footer .links ul li a::after {
  content: "";
  width: 15px;
  height: 10px;
  position: absolute;
  background-image: url(../images/arrow.png);
  right: 20px;
}
#footer .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}
#footer .bottom #copyright {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 16px;
}
#footer .bottom .privacy a {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.5s ease-out;
  color: #121212;
}
#footer .bottom .privacy a:hover {
  opacity: 0.6;
}
#footer #fnav > ul {
  display: flex;
  justify-content: end;
  gap: 0 30px;
  flex-wrap: wrap;
}
#footer #fnav > ul > li > a {
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.08em;
  font-weight: 500;
  font-size: 18px;
  color: #121212;
}
#footer #fnav > ul > li > a:hover {
  opacity: 0.6;
}
#footer #fnav > ul > li ul li a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
#footer #fnav > ul > li ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #footer {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #footer .contents {
    display: block;
  }
  #footer .text {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
  }
  #footer .links {
    margin-right: auto;
  }
  #footer .links ul li {
    width: 200px;
    height: 45px;
  }
  #footer #fnav {
    margin-top: 40px;
  }
  #footer #fnav ul {
    justify-content: center;
    gap: 10px 25px;
  }
  #footer #fnav ul li a {
    font-size: 14px;
  }
  #footer .bottom {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  #footer .bottom .privacy {
    text-align: center;
  }
  #footer .bottom .privacy a {
    font-size: 14px;
  }
  #footer .bottom #copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
  }
}

/* ----------------------------------------------
contactbnr
------------------------------------------------- */
.contactbnr {
  margin-bottom: 80px;
}
.contactbnr .inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.contactbnr .tel a,
.contactbnr .contact a {
  transition: all 0.5s ease-out;
  text-decoration: none;
}
.contactbnr .tel a:hover,
.contactbnr .contact a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=style.css.map */