@charset "UTF-8";
/*---------------------------------------------
メモ
10px -> 0.75vw

z-index:
ヘッダー 10
フッター追従リンク 10
ヘッダー開閉ボタン 100
開閉メニュー    50

---------------------------------------------*/
/*---------------------------------------------
共通部分
---------------------------------------------*/
body {
  font-family: YuMincho, "Yu Mincho", serif;
  font-weight: bold !important;
}

* {
  font-weight: bold !important;
}

.commonWidth {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  body {
    -ms-overflow-style: none; /* IE, Edge 対応 */
    scrollbar-width: none; /* Firefox 対応 */
  }
  body::-webkit-scrollbar {
    display: none; /* Chrome, Safari 対応 */
  }
  .commonWidth {
    width: 89.34%;
    max-width: 335px;
  }
  #pageTop {
    overflow-x: hidden;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    min-width: 1334px;
  }
  .commonWidth {
    max-width: 1300px;
  }
}
/*---------------------------------------------
secHeader
---------------------------------------------*/
.secHeader {
  background: #ffffff;
  color: #000000;
  transition: background-color 0.3s;
  z-index: 10;
}
.secHeader .headerIn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.secHeader .headerIn .headerWrap .linkArea .linkWrap .headerLink {
  color: #000000;
}
.secHeader .headerIn .headerWrap .tel {
  background: url(../images/icon_tel.svg) left center no-repeat;
}

@media only screen and (max-width: 767px) {
  .secHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .secHeader .headerWidth {
    width: 89.34%;
    margin: 0 auto;
  }
  .secHeader .headerWidth .headerIn {
    height: 60px;
  }
  .secHeader .headerWidth .headerIn .headerWrap {
    width: 89.34%;
    margin: 0 auto;
    text-align: center;
  }
  .secHeader .headerWidth .headerIn .headerWrap .logoArea {
    display: flex;
    justify-content: space-between;
  }
  .secHeader .headerWidth .headerIn .headerWrap .logoArea .logo {
    width: 107px;
    height: 20px;
  }
  .secHeader .headerWidth .headerIn .headerWrap .logoArea .telArea {
    padding-right: 20px;
  }
  .secHeader .headerWidth .headerIn .headerWrap .siteName {
    flex-grow: 1;
    font-size: min(3.2vw, 12px);
    line-height: 110%;
  }
  .secHeader .headerWidth .headerIn .btnMenuArea {
    z-index: 100;
    padding-top: 8px;
  }
  .secHeader .headerWidth .headerIn .btnMenuArea .btnMenu .menuTrigger {
    position: relative;
    width: 27px;
    height: 20px;
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .secHeader .headerWidth .headerIn .btnMenuArea .btnMenu .menuTrigger span {
    display: inline-block;
    transition: transform 0.4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
  }
  .secHeader .headerWidth .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(1) {
    top: 0;
  }
  .secHeader .headerWidth .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(2) {
    top: calc(50% - 0.5px);
  }
  .secHeader .headerWidth .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(3) {
    bottom: 0;
  }
  .secHeader .menuListArea {
    display: none;
    background: #000000;
    position: fixed;
    z-index: 50;
    top: 60px;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0 0 0;
  }
  .secHeader .menuListArea .menuList {
    font-size: 18px;
    padding: 10px 0 10px 0;
    text-align: left;
    margin: 0 5%;
    border-bottom: solid 1px #ffffff;
  }
  .secHeader .menuListArea .menuList .menuLink {
    color: #ffffff;
  }
  .secHeader.active .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(1) {
    transform: translateY(9.5px) rotate(-45deg);
  }
  .secHeader.active .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(2) {
    opacity: 0;
  }
  .secHeader.active .headerIn .btnMenuArea .btnMenu .menuTrigger span:nth-of-type(3) {
    transform: translateY(-9.5px) rotate(45deg);
  }
  .secHeader.active .menuListArea {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .secHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .secHeader .headerIn {
    font-size: 16px;
  }
  .secHeader .headerIn .headerWrap {
    padding: 21px 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .secHeader .headerIn .headerWrap .logoArea {
    padding-right: 24px;
    padding-bottom: 7px;
  }
  .secHeader .headerIn .headerWrap .siteName {
    flex-grow: 1;
  }
  .secHeader .headerIn .headerWrap .linkArea .linkWrap {
    display: inline-block;
  }
  .secHeader .headerIn .headerWrap .linkArea .linkWrap::after {
    content: " │ ";
  }
  .secHeader .headerIn .headerWrap .linkArea .linkWrap .tel {
    background-size: 17px;
    padding-left: 24px;
    font-size: 20px;
  }
  .secHeader .headerIn .headerWrap .linkArea .linkWrap:last-of-type::after {
    content: "";
  }
  .secHeader .headerIn .registButtonWrap .registButton {
    width: 150px;
    padding: 21px 0 21px 0;
    background-color: #123B76;
    font-size: 21px;
    text-align: center;
  }
  .secHeader .headerIn .registButtonWrap .headerLink {
    color: #ffffff;
  }
}
/*---------------------------------------------
footerContact
---------------------------------------------*/
.footerContact .contactTitle {
  text-align: center;
  font-weight: bold;
}
.footerContact .footerContactIn {
  text-align: center;
}
.footerContact .footerContactIn .btnTel {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
}
.footerContact .footerContactIn .btnContact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .footerContact {
    padding-bottom: 80px;
  }
  .footerContact .contactTitle {
    font-size: 30px;
    padding-bottom: 24px;
  }
  .footerContact .footerContactIn {
    max-width: 90%;
    margin: 0 auto;
  }
  .footerContact .footerContactIn .btnTel {
    margin-bottom: 20px;
    height: 140px;
  }
  .footerContact .footerContactIn .btnTel .telNum {
    font-size: min(10.66vw, 40px);
  }
  .footerContact .footerContactIn .btnTel .telInfo {
    font-size: 16px;
  }
  .footerContact .footerContactIn .btnContact {
    font-size: 20px;
    height: 140px;
  }
}
@media print, screen and (min-width: 768px) {
  .footerContact {
    padding-bottom: 24px;
  }
  .footerContact .contactTitle {
    font-size: 30px;
    padding-bottom: 35px;
  }
  .footerContact .footerContactIn {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .footerContact .footerContactIn .btnTel {
    width: 49.5%;
    padding: 28px 0;
  }
  .footerContact .footerContactIn .btnTel .telNum {
    font-size: 40px;
  }
  .footerContact .footerContactIn .btnTel .telInfo {
    font-size: 16px;
  }
  .footerContact .footerContactIn .btnContact {
    width: 49.5%;
    font-size: 20px;
    padding: 28px 0;
  }
}
/*-------------------------------------
secFooter
-------------------------------------*/
.secFooter {
  background: #000000;
}
.secFooter .footerIn .footerLinkArea {
  display: flex;
  align-items: center;
}
.secFooter .footerIn .policyArea {
  color: #ffffff;
}
.secFooter .footerIn .policyArea a {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .secFooter .footerIn {
    padding: 40px 0 260px 0;
  }
  .secFooter .footerIn .footerLinkArea {
    justify-content: space-evenly;
    padding: 0 10px;
  }
  .secFooter .footerIn .footerLinkArea .linkSns {
    width: min(8vw, 30px);
  }
  .secFooter .footerIn .footerLinkArea .linkSns.youtube {
    width: min(10.67vw, 40px);
  }
  .secFooter .footerIn .policyArea {
    padding: 20px 0 0 0;
    font-size: 11px;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .secFooter .footerIn {
    padding: 0 0 120px 0;
  }
  .secFooter .footerIn .footerLinkArea {
    justify-content: center;
  }
  .secFooter .footerIn .footerLinkArea .linkSns:last-child {
    margin: 0 0 0 0;
  }
  .secFooter .footerIn .footerLinkArea .linkSns {
    margin: 0 32px 0 0;
  }
  .secFooter .footerIn .policyArea {
    padding: 30px 0 0 0;
    font-size: 14px;
    text-align: center;
  }
}
/*-------------------------------------
secTopAnchor
-------------------------------------*/
.secTopAnchor {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  display: none;
}
.secTopAnchor .AnchorWeap {
  display: grid;
  position: absolute;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .secTopAnchor .AnchorWeap {
    bottom: 50px;
  }
  .secTopAnchor .AnchorWeap img {
    width: 77.243px;
    height: auto;
  }
  .secTopAnchor .AnchorWeap .AnchorImg {
    padding-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .secTopAnchor .AnchorWeap {
    bottom: 70px;
  }
  .secTopAnchor .AnchorWeap .AnchorImg {
    padding-bottom: 20px;
  }
}
/*---------------------------------------------
formタグ系
---------------------------------------------*//*# sourceMappingURL=common.css.map */