@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
/*font-family: 'Noto Sans JP', sans-serif;*/
/*font-family: "Outfit", 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.04em;
  font-weight: 500;
  text-align: left;
  line-height: 1.7;
  color: #222;
  font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 6 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  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: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.min {
  margin-top: 10px;
  display: block;
  font-size: 13px;
  color: #999;
}

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

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

.yellow-circle {
  position: relative;
  z-index: 1;
}

.yellow-circle::after {
  content: '';
  display: block;
  background-color: #ffd306;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.yellow-circle::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: -5px;
}


@media only screen and (max-width: 768px) {
  .yellow-circle::after {
    width: 4px;
    height: 4px;
  }
}


/*============================
表示切り替え
============================*/
.sp-only {
  display: none;
}


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

  /*============================
脚注文字表記etc.
============================*/
  .min {
    font-size: 13px;
  }

  /*============================
表示切り替え
============================*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}


/*============================
wrapper
============================*/
.wrapper {
  position: relative;
  padding-top: 90px;
}


@media only screen and (max-width: 980px) {
  .wrapper {
    padding-top: 52px;
    overflow: hidden;
  }
}


/*============================
inner
============================*/
.inner {
  width: 1040px;
  margin: auto;
}

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


/*============================
header
============================*/
#top {
  padding: 10px 30px;
  position: fixed;
  align-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 10000;
  transition: 0.5s;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
}

#top .siteTitle {
  margin-right: auto;
}

.siteTitle {
  width: 215px;
}

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

#top .tel {
  width: 302px;
  margin-right: 30px;
}

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

#top .mail a {
  display: block;
  background-color: #138de1;
  color: #fff;
  padding: 8px 30px;
}


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

  .siteTitle {
    width: 130px;
  }

  #top .tel {
    width: 150px;
    margin-right: 10px;
  }

  #top .mail a {
    display: block;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
  }

  #top .mail a span {
    display: none;
  }
}


/*============================
Link
============================*/
.link {
  width: 100%;
  margin: auto 0 30px;
  padding-top: 20px;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.link li {
  width: 320px;
  margin: 0 20px;
}

.link li a,
.link li input {
  display: block;
  line-height: inherit;
  width: 100%;
  padding: 13px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  border: none;
  background: linear-gradient(90deg, rgba(19, 141, 236, 1) 0%, rgba(52, 207, 200, 1) 100%);
  border-radius: 0;
  position: relative;
}

.link li a::before,
.link li input::before,
.formBtn li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 10;
}

@media only screen and (max-width: 1040px) {
  .link {
    padding-top: 20px;
  }

  .link .cv_text {
    font-size: 13px;
    letter-spacing: 0;
  }

  .link div {
    width: 80%;
    margin: 0;
  }

  .link > div:nth-child(2) {
    margin-top: 20px;
  }
}


/*============================
article
============================*/
article {
  padding: 120px 0;
}

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

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


/*============================
.toTop
============================*/
.toTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  width: 58px;
}

.toTop li a {
  padding-top: 108.6206%;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  background: url(../images/common/footer/totop.png) no-repeat center top;
  background-size: 100%;
}

@media only screen and (max-width: 768px) {
  .toTop {
    bottom: 10px;
    right: 10px;
    width: 40px;
  }

  .toTop li a {
    width: 100%;
  }
}


/*============================
footer
============================*/
footer {
  padding: 40px 0 60px;
  font-size: 16px;
  background-color: #0b3055;
  color: #fff;
}

footer .inner {
  position: relative;
  align-items: center;
}

footer .siteTitle {
  width: 150px;
}

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

footer .detail {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}

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

@media only screen and (max-width: 1040px) {
  footer .inner {
    display: block;
  }

  footer .sub-link {
    width: 100%;
    margin: 20px 0 0;
  }

  footer .sub-link li a {
    font-size: 13px;
  }

  footer .copyright {
    padding: 0 0 20px;
  }
}


/*============================
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);
}

.blur {
  opacity: 0;
}

.blur.is-show {
  animation-name: blur;
  animation-duration: 1s;
  opacity: 1;
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(20px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}
