@charset "UTF-8";

/* ===================================================================

	Setting

=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #333;
  background: #fff;
  line-height: 1.6;
  text-align: left;
  font-size: 65.5%;
}

body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 300;
  font-style: normal;
}

/*
p, dt, dd, li, a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
*/

body {
  color: #333;
  font-size: 16px;
  letter-spacing: 0.8px;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

li {
  list-style-type: none;
}

h1,
h2,
h3 {
  margin: 0px;
  font-family: noto-serif, serif;
  font-weight: 200;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.5s;
}

.btn {
  position: relative;
  max-width: 300px;
  width: 100%;
  border: solid 1px #000;
  transition: 0.5s;
}

.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 60px;
  height: 1px;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
  transition: 0.5s;
}

.btn:hover::after {
  left: 95%;
  transition: 0.5s;
}

.btn a {
  width: 100%;
  padding: 15px 15px 15px 30px;
  display: block;
  letter-spacing: 1px;
}

.btn02 {
  border: solid 1px #2b3349;
}

.btn02::after {
  background: #2b3349;
}

.btn02 a {
  color: #2b3349;
}

.btn03 {
  border: solid 1px #fff;
}

.btn03::after {
  background: #fff;
}

.btn03 a {
  color: #fff;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* 連続 br でIE6が改行しないバグ対策　CSS:letter-spacing の影響
----------------------------------------------- */
br {
  letter-spacing: normal;
}

/* table
----------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
}

tr {
  border: none;
}

th {
  background-color: #fff;
}

th,
td {
  padding: 20px 10px;
  font-weight: 100;
  border: solid 1px #b3b3b3;
}

.tsec,
.usec {
  margin-bottom: 180px;
}

.container,
.ucontainer {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.tcontainer01 {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
}

.tcontainer02 {
  max-width: 1150px;
  width: 100%;
  margin: auto;
  position: relative;
}

.ucontainer01 {
  max-width: 1400px;
  height: 100%;
  margin: auto;
}

.ucontainer02 {
  max-width: 1000px;
  height: 100%;
  margin: auto;
}

.ucontainer03 {
  max-width: 1250px;
  height: 100%;
  margin: auto;
}

.ucontainer04 {
  max-width: 1450px;
  height: 100%;
  margin: auto;
}

.mapcontainer {
  max-width: 1600px;
  height: 100%;
  margin: auto;
}

.cwrap {
  padding: 0 30px;
}

.w-auto {
  width: auto;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

/* flex
----------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.col-re {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-s {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align-e {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.justify-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-e {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.justify-be {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .btn a {
    font-size: 15px;
  }

  .usec {
    margin-bottom: 120px;
  }

  th,
  td {
    padding: 15px 5px;
  }
}

@media only screen and (max-width: 479px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
  body {
    font-size: 14px;
  }

  .cwrap {
    padding: 0 10px;
  }

  .btn {
    max-width: 180px;
  }

  .btn::after {
    width: 45px;
  }

  .btn a {
    font-size: 12.5px;
  }

  .usec {
    margin-bottom: 90px;
  }
}
