@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');

/*
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

* {
  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 5 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  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;
}

a {
  text-decoration: none;
  color: #fff;
  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.6;
}

img {
  display: block;
  width: 100%;
}

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

  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: flex-start;
}

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

.note,
.note_list {
  display: block;
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  margin-top: 10px !important;
  line-height: 1.4;
  color: #ababab;
}

.note::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.note_list::before {
  content: '・';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.square {
  display: block;
  font-size: 15px;
  position: relative;
  padding-left: 20px;
  margin-top: 10px !important;
  line-height: 1.4;
  color: #ababab;
}

.square::before {
  content: '■';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.min {
  font-size: 13px;
}

.bold{
  font-weight: 500;
  color: #f9911e;
}

.eng {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

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

  .note,
  .note_list,
  .square {
    font-size: 13px;
  }
}

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

.sp-only {
  display: none;
}


@media only screen and (max-width: 1040px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

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

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
}

h2 {
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

h2 .eng {
  font-size: 40px;
  color: #0b3055;
  margin-right: 20px;
}

h2 .jp {
  font-size: 20px;
  color: #0067be;
}

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

  h2 {
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  h2 .eng {
    font-size: 28px;
    margin-right: 10px;
  }

  h2 .jp {
    font-size: 16px;
  }
}

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

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

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

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

#top {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px;
  padding: 10px 0;
}

#top .inner {
  padding: 0 3%;
  width: 100%;
  max-width: 1300px;
  align-items: center;
}

#top .siteTitle {
  width: 180px;
}

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

#top .contact-link {
  align-items: center;
}

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

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

#top .mail a {
  display: block;
  background-color: #0067be;
  padding: 8px 30px;
}

@media only screen and (max-width: 1040px) {
  #top {
    width: 100%;
    min-width: 0;
  }

  #top .siteTitle {
    width: 110px;
  }

  #top .contact-link {
    align-items: center;
  }

  #top .tel {
    width: 180px;
    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-color: #f9911e;
  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: 100px 0;
}

article .inner p {
  margin-top: 18px;
}

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

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

/*============================
table
============================*/

table.info {
  width: 100%;
  margin-top: 10px;
}

table.info tr {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4px;
}

table.info tr:last-child {
  border: none;
  padding-bottom: 0;
}

table.info th {
  width: 140px;
  background: #01111b;
  color: #ccc;
  letter-spacing: 0;
}

table.info th,
table.info td {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-size: 15px;
}

table.info tr:first-child {
  padding-top: 0;
}

table.info td {
  flex: 1;
  width: 100%;
  margin-left: 4px;
  padding-left: 4px;
  background: #01111b;
}

a.google::before {
  content: '\f3c5';
  font-weight: 900;
  margin-right: 5px;
  color: #b89256;
}

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


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

  table.info th,
  table.info td {
    padding: 12px 0;
  }

  table.info th {
    width: 100px;
    font-size: 13px;
  }

  table.info td {
    padding-left: 10px;
    font-size: 14px;
  }
}

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

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

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

footer .siteTitle {
  margin-top: 10px;
  width: 150px;
}

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);
}
