@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');
/* font-family: "Oswald", sans-serif;*/
/*  font-family: "Noto Sans JP", sans-serif;*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: left;
  line-height: 1.7;
  color: #111;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 6 Free";
}

h1,
h2,
h3 {
  font-weight: 700;
  padding: 0;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

p {
  padding: 0;
  margin: 0;
}

img {
  -webkit-touch-callout: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
  color: #222;
  outline: none;
}

a:active,
a:hover,
a:focus {
  outline: none;
}

a,
input {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

a:hover,
.link input:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  body {
    width: 100%;
    min-width: 0;
    font-size: 15px;
  }

  a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }

  a:hover {
    opacity: 1;
  }
}


/*============================
flex
============================*/

.flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


/*============================
脚注文字表記etc.
============================*/

.eng {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.lead {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: #08103e;
  letter-spacing: 0.04em;
}

.min-info {
  padding-left: 15px;
  margin-top: 3px;
  display: block;
  font-size: 13px;
  color: #999;
  position: relative;
}

.min-info::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.bold {
  color: #035adc;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .lead {
    margin-bottom: 25px;
    font-size: 24px;
  }

  .min-info {
    font-size: 11px;
  }
}

/*============================
表示切り替え
============================*/

.sp-only {
  display: none;
}


@media only screen and (max-width: 768px) {
  /*============================
表示切り替え
============================*/

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}


/*============================
wrapper
============================*/

.wrapper {
  position: relative;
  overflow: hidden;
}

/*============================
inner
============================*/

.inner {
  width: 1040px;
  margin: auto;
}

.inner p:nth-of-type(n+2) {
  padding-top: 15px;
}

@media only screen and (max-width: 768px) {
  .inner {
    width: 90.625%;
  }
}

/*============================
header
============================*/

#top {
  position: fixed;
  padding: 15px 20px;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
  transition: 0.5s;
}

#top .siteTitle {
  width: 288px;
  transition: width 0.4s ease;
}

.siteTitle a {
  padding-top: 18.0764%;
  display: block;
  overflow: hidden;
  height: 0;
  width: 100%;
  background: url(../images/common/header/sitetitle.png) no-repeat left center;
  background-size: 100%;
}

#top .entry {
  padding: 20px 30px;
  background-color: #24d8ff;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  border-radius: 50px;
  position: absolute;
  top: 15px;
  right: 85px;
  z-index: 10000;
  overflow: hidden;
  transition: color .3s ease;
}

#top .entry:hover {
  opacity: 1;
}

/* hover時に出る背景 */
#top .entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08103e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
  z-index: -1;
}

/* hover */
#top .entry:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/*スクロール時*/
#top.move .siteTitle {
  width: 230px;
}

@media only screen and (max-width: 980px) {
  #top {
    padding: 16px 5px;
  }

  #top .siteTitle {
    width: 130px;
  }

  .siteTitle a {
    padding-top: 22.9985%;
    background: url(../images/common/header/sitetitle_sp.png) no-repeat left center;
    background-size: 100%;
  }

  #top .entry {
    padding: 16px 20px;
    font-size: 20px;
    top: 7px;
    right: 60px;
  }

  #top .entry::before {
    display: none;
  }

  /*スクロール時*/
  #top.move .siteTitle {
    width: 130px;
  }
}

/*============================
nav
============================*/

#top nav {
  padding: 75px 30px 30px 30px;
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 33%;
  height: 100vh;
  background-color: #151c48;
  overflow-y: scroll;
}

#top .globalNav li {
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
}

#top .globalNav li:first-of-type {
  border: none;
}

#top .globalNav li:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

#top .globalNav li a {
  display: block;
  overflow: inherit;
  width: 100%;
  height: inherit;
  color: #fff;
  padding: 12px 0;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

#top .globalNav li a .eng {
  display: block;
  padding-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media only screen and (max-width: 980px) {
  #top nav {
    padding-top: 60px;
    width: 100%;
  }

  #top .globalNav li a {
    padding: 18px 0;
    font-size: 12px;
  }

  #top .globalNav li a .eng {
    display: inline-block;
    margin-right: 15px;
    padding-bottom: 0;
    font-size: 18px;
  }
}

/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  background-color: #08103e;
  border-radius: 50px;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 31px;
  height: 23px;
  top: 0;
  left: 0;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 31px;
  height: 2px;
  background-color: #24d8ff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/* anime */
.active .menu-trigger span {
  background-color: #24d8ff;
}

.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

.active .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

@media only screen and (max-width: 980px) {
  .menu {
    top: 7px;
    right: 7px;
    width: 50px;
    height: 50px;
  }
}

/*============================
Link
============================*/

.link {
  text-align: right;
  line-height: 1;
  justify-content: flex-end;
}

.link a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding: 20px 0;
  margin-right: 80px;
  color: #08103e;
}

.link a::after,
.link a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -85px;
  margin: auto;
  transition: all 0.4s ease;
}

.link a::before {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #24d8ff;
}

.link a::after {
  position: absolute;
  top: 0;
  right: -58px;
  margin: auto;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

.link a:hover {
  opacity: 0.8;
}

.link a:hover::before {
  background-color: #08103e;
  transform: scale(1.2);
}

@media only screen and (max-width: 768px) {

  .link {
    margin-top: 30px;
  }

  .link a {
    font-size: 16px;
    padding: 20px 0;
    margin-right: 65px;
  }

  .link a::after,
  .link a::before {
    right: -65px;
  }

  .link a::before {
    width: 50px;
    height: 50px;
  }

  .link a::after {
    right: -43px;
  }

  .link a:hover {
    opacity: 1;
  }

  .link a:hover::before {
    transform: scale(1);
  }
}

/*============================
article
============================*/

article {
  padding: 120px 0;
}

article .inner p:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  article {
    padding: 60px 0;
  }
}


/*============================
.info-box
============================*/

.info-box {
  width: 500px;
}

.info-box dl {
  border-bottom: 1px solid #151c48;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.info-box dl:last-of-type {
  margin-bottom: 0;
}

.info-box dl dt {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.info-box dl dd {
  letter-spacing: 0.04em;
}

.info-box dl dd ul {
  margin-top: 5px;
  padding-left: 20px;
}

.info-box dl dd ul li {
  position: relative;
}

.info-box dl dd ul li::before {
  position: absolute;
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background-color: #24d8ff;
  top: 45%;
  left: -15px;
  font-family: "Oswald", sans-serif;
}

a.google::before {
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
  color: #24d8ff;
  font-family: "Font Awesome 6 Free";
}

a.google {
  display: block;
  margin: 5px 0;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .info-box {
    width: 100%;
  }

  .info-box:first-of-type dl:last-of-type {
    margin-bottom: 30px;
  }
}

/*============================
footer
============================*/

footer {
  background-color: #151c48;
  color: #fff;
  padding: 100px 0 15px;
  font-size: 15px;
}

footer .inner > .flex {
  justify-content: flex-start;
  align-items: center;
}

footer .siteTitle {
  width: 249px;
  margin-right: 40px;
}

footer .siteTitle a {
  padding-top: 15.3623%;
  background: url(../images/common/footer/sitetitle.png) no-repeat left center;
  background-size: 100%;
}

footer .sublink {
  margin-top: 35px;
}

footer .sublink li a {
  line-height: 1;
  color: #fff;
}

footer .sublink li:last-of-type a {
  margin-left: 30px;
}

footer .copyright {
  margin-top: 100px;
  font-size: 13px;
  color: #fff;
  background-color: #151c48;
}

@media only screen and (max-width: 1040px) {
  footer {
    padding: 60px 0 130px;
  }

  footer .siteTitle {
    width: 80%;
    margin: 0 auto 20px;
  }

  footer .detail {
    width: 100%;
    text-align: left;
  }

  footer .sublink {
    margin-top: 20px;
  }

  footer .sublink li {
    width: 100%;
  }

  footer .sublink li a {
    font-size: 13px;
    line-height: 1;
  }

  footer .sublink li:last-of-type a {
    margin: 0;
  }

  footer .copyright {
    margin-top: 30px;
    font-size: 10px;
  }
}


/*============================
.bl_floatingBanner
========================== */
.bl_floatingBanner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 210px;
  z-index: 10000;
}

.bl_floatingBanner a {
  display: block;
  width: 100%;
}

.bl_floatingBanner a:last-of-type {
  margin-top: 10px;
}

.bl_floatingBanner_img {
  display: block;
  transition: 0.3s;
  cursor: pointer;
}

.bl_floatingBanner_img img {
  width: 100%;
}

.bl_floatingBanner_img:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {

  .bl_floatingBanner {
    width: 100%;
    height: 100px;
  }

  .bl_floatingBanner a {
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 20px;
    bottom: 0;
  }

  .bl_floatingBanner a:first-child {
    left: auto;
    right: 0;
  }

  .bl_floatingBanner a img {
    padding-top: 100%;
    display: block;
    overflow: hidden;
    height: 0;
    width: 100%;
    background: url(../images/common/floating/banner_sp.png) no-repeat center center;
    background-size: 100%;
  }

  .bl_floatingBanner a:first-of-type img {
    background-image: url(../images/common/floating/insta_sp.png);
  }

  .bl_floatingBanner_img:hover {
    opacity: 1;
  }
}


/*============================
common_js
============================*/

.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}
