@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Roboto&display=swap");
/*-----------------------------------------
NEW header
-----------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
}
.header:after {
  background: rgb(0, 0, 53);
  background: linear-gradient(0deg, rgb(0, 0, 53) 0%, rgb(0, 0, 21) 100%);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 1.5s;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 20px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 10px;
    height: 60px;
  }
}
.header__logo {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .header__logo {
    width: 307px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 207px;
  }
}
.header__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  cursor: pointer;
  position: fixed;
  z-index: 2;
  top: 10px;
  right: 10px;
}
@media (max-width: 768px) {
  .header__trigger {
    display: none;
  }
}
.header__trigger .line {
  display: inline-block;
  background: #fff;
  width: 42px;
  height: 1px;
}
.header__trigger .line:not(:first-child) {
  margin-top: 9px;
}
.header__trigger .txt {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  font-family: "Roboto", sans-serif;
  margin-top: 15px;
}
.header__trigger--dark .line {
  background: #01356d;
}
.header__trigger--dark .txt {
  color: #01356d;
}
.header--top {
  background: none;
  position: absolute;
  height: auto;
}
@media screen and (min-width: 769px) {
  .header--top {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .header--top {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .header--top .header__logo {
    width: 237px;
  }
}
.header--top .header__trigger {
  top: 25px;
  right: 20px;
}

@media screen and (min-width: 769px) {
  .page:not(#home) {
    padding-top: 120px;
  }
}
@media (max-width: 768px) {
  .page:not(#home) {
    padding-top: 80px;
  }
}

/*-----------------------------------------
NEW gMenu
-----------------------------------------*/
.gMenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}
.gMenu__bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  z-index: -1;
  position: fixed;
}
.gMenu__inner {
  background: #fff;
  display: flex;
  font-family: "Noto Serif JP", serif;
}
.gMenu::before {
  content: "";
  background: url("../imgs/hdr_menu_bg.jpg") top center repeat-y;
  background-size: cover;
  opacity: 0.3;
  display: block;
  width: 720px;
  height: 100%;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 769px) {
  .gMenu::before {
    left: calc(100% - 720px);
  }
}
@media (max-width: 768px) {
  .gMenu::before {
    left: 0;
  }
}
.gMenu__image {
  width: calc(100% - 720px);
  position: relative;
}
.gMenu__image .photo {
  width: 100%;
  height: 100%;
}
.gMenu__image .photo__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  .gMenu__image {
    display: none;
  }
}
.gMenu__cont {
  position: relative;
  width: 720px;
  overflow: auto;
  height: 100vh;
}
@media (max-width: 768px) {
  .gMenu__cont {
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .gMenu__info {
    padding: 0 100px 40px;
  }
}
@media (max-width: 768px) {
  .gMenu__info {
    padding: 0 15px 60px;
  }
}

.gMenuCont {
  position: relative;
}
@media screen and (min-width: 769px) {
  .gMenuCont {
    padding: 75px 40px 50px;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .gMenuCont {
    padding: 60px 15px 20px;
  }
}
.gMenuCont__close {
  background: #01356d;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .gMenuCont__close {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__close {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__block {
    width: 50%;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__block--line {
    border-right: 1px solid #01356d;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__cvArea {
    position: absolute;
    right: 0;
    bottom: 100px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__cvArea {
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    padding: 0 15px;
    margin-top: 20px;
  }
}
.gMenuCont__cvArea .cvBtn {
  margin-top: 0;
}
@media (max-width: 768px) {
  .gMenuCont__cvArea .cvBtn {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__cvArea .cvBtn__inner {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__cvArea .cvBtn__inner {
    min-width: inherit;
    min-height: 45px;
    width: 100%;
    height: 100%;
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__cvArea .cvBtn__inner .arrowSVG {
    width: 22px;
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__cvArea .cvBtn + .cvBtn {
    margin-top: 25px;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__list {
    padding-left: 65px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__list {
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .gMenuCont__list--other {
    flex-direction: column;
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(1, 53, 109, 0.3);
  }
}
.gMenuCont__item {
  display: block;
  letter-spacing: 0;
  position: relative;
  color: #01356d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .gMenuCont__item {
    padding-left: 1em;
  }
}
@media (max-width: 768px) {
  .gMenuCont__item {
    width: 50%;
    padding-left: 0.5em;
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__item:not(:first-child) {
    margin-top: 35px;
  }
}
.gMenuCont__item--current {
  pointer-events: none;
}
.gMenuCont__item--current::before {
  content: "";
  display: block;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 769px) {
  .gMenuCont__item--current::before {
    top: 0.5em;
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__item--current::before {
    width: 3px;
    height: 3px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 769px) {
  .gMenuCont__item--icon {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__item--icon {
    font-size: 12px;
    padding-left: 22px;
    width: 100%;
  }
}
.gMenuCont__item--icon .arrowSVG {
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .gMenuCont__item--icon .arrowSVG {
    width: 21px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__item--icon .arrowSVG {
    width: 13px;
    top: calc(10px + 0.25em);
  }
}
@media (max-width: 768px) {
  .gMenuCont__item--icon .gMenuCont__link {
    padding: 10px 0;
  }
}
.gMenuCont__link {
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 769px) {
  .gMenuCont__link {
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .gMenuCont__link {
    padding: 20px 0;
  }
}
.gMenuCont__link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s width linear;
  will-change: width;
}
@media screen and (min-width: 769px) {
  .gMenuCont__link:hover::after {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .gMenuCont__link:hover::after {
    width: 100%;
  }
}

.gMenuInfo {
  position: relative;
}
.gMenuInfo__bar {
  display: flex;
  position: relative;
  background: #01356d;
  height: 36px;
  border-radius: 18px;
}
.gMenuInfo__bar .gMenuInfo__item {
  position: absolute;
  background: transparent;
  left: 50px;
  top: 0;
  height: 36px;
}
.gMenuInfo__bar .gMenuInfo__item .text {
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
}
@media screen and (min-width: 769px) {
  .gMenuInfo__bar .gMenuInfo__item .text {
    width: 33em;
  }
}
@media (max-width: 768px) {
  .gMenuInfo__bar .gMenuInfo__item .text {
    width: 26em;
  }
}
.gMenuInfo__icon {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #e2f4ff;
}
.gMenuInfo__icon .icon {
  width: 36px;
  height: auto;
}
.gMenuInfo__more {
  font-size: 12px;
  color: #fff;
  width: 78px;
  position: absolute;
  right: 2px;
  top: 2px;
  height: 32px;
  border-radius: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  width: 78px;
  font-family: "Roboto", sans-serif;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  cursor: pointer;
  display: none;
}
.gMenuInfo__more .arrow {
  background: url(../imgs/more_arrow.png) center no-repeat;
  background-size: cover;
  width: 0.1rem;
  height: 0.06rem;
  transition: 0.3s ease;
  margin-left: 5px;
}
.gMenuInfo__list {
  position: absolute;
  top: 0;
  width: 100%;
  left: 50px;
  width: calc(100% - 78px - 50px);
  z-index: 0;
  display: none;
  margin-bottom: 60px;
  padding-bottom: 60px;
}
.gMenuInfo__item {
  height: auto;
  min-height: 36px;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  display: flex;
  align-items: center;
  font-weight: 600;
  background: #01356d;
  line-height: 1.5;
}
.gMenuInfo__item:before {
  content: "";
  margin-top: calc((1 - 1.5) * 0.5em);
}
.gMenuInfo__item:after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.gMenuInfo__item:before, .gMenuInfo__item:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
@media screen and (min-width: 769px) {
  .gMenuInfo__item {
    padding: 10px 30px;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .gMenuInfo__item {
    font-size: 10px;
    padding: 5px;
  }
}
.gMenuInfo__item .text {
  width: auto;
}
.gMenuInfo__item a {
  color: #fff;
  text-decoration: underline;
}
.gMenuInfo__item .text_outer {
  display: flex;
  justify-content: flex-start;
}
@media screen and (min-width: 769px) {
  .gMenuInfo__item .text_outer {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 768px) {
  .gMenuInfo__item .text_outer {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.gMenuInfo__item:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/*-----------------------------------------
NEW CvBtn
-----------------------------------------*/
.cvBtn {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .cvBtn {
    pointer-events: auto;
    transition: 0.2s ease opacity;
    opacity: 1;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .cvBtn {
    margin-top: 30px;
  }
}
@media screen and (min-width: 769px) {
  .cvBtn.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}
.cvBtn__inner {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 0.1em;
  text-align: left;
  line-height: 1.3333333333;
  color: #fff;
  background: rgb(104, 84, 154);
  background: linear-gradient(90deg, rgb(104, 84, 154) 0%, rgb(34, 139, 202) 50%, rgb(34, 139, 202) 51%, rgb(104, 84, 154) 100%);
  background-size: 200% auto;
  background-position: 1% 100%;
  font-weight: 500;
  box-shadow: 0 10px 11px 2px rgba(4, 0, 0, 0.25);
  min-width: 240px;
  min-height: 60px;
  padding: 10px 20px;
  transition: 0.1s background-position linear;
  will-change: background-position;
}
.cvBtn__inner:before {
  content: "";
  margin-top: calc((1 - 1.3333333333) * 0.5em);
}
.cvBtn__inner:after {
  margin-bottom: calc((1 - 1.3333333333) * 0.5em);
}
.cvBtn__inner:before, .cvBtn__inner:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
@media screen and (min-width: 769px) {
  .cvBtn__inner {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .cvBtn__inner {
    font-size: 13px;
  }
}
.cvBtn__inner .arrowSVG {
  position: absolute;
  height: auto;
  top: 50%;
  transition: 0.4s transform ease;
  right: 20px;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) {
  .cvBtn__inner .arrowSVG {
    width: 38px;
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  .cvBtn__inner .arrowSVG {
    width: 32px;
    margin-left: 30px;
  }
}
.cvBtn__inner--visit {
  background: linear-gradient(90deg, rgb(2, 217, 189) 0%, rgb(18, 96, 255) 50%, rgb(18, 96, 255) 51%, rgb(2, 217, 189) 100%);
  background-size: 200% auto;
  background-position: 1% 100%;
}
.cvBtn__inner + .cvBtn__inner {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .cvBtn__inner:hover {
    background-position: 101% 200%;
  }
  .cvBtn__inner:hover .arrowSVG {
    transform: translate(10px, -50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .cvBtn__inner:hover {
    background-position: 101% 200%;
  }
  .cvBtn__inner:hover .arrowSVG {
    transform: translate(10px, -50%);
  }
}
@media screen and (min-width: 769px) {
  .cvBtn--pcFixed {
    display: flex;
    margin-top: 0;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
    flex-direction: column;
  }
}