@charset "UTF-8";
/* --------------------------------------------------------------------------------
 web fonts
-------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/****ボタン初期設定無効化******/
input, button, textarea, select {
  -webkit-appearance: none;
  border-radius: 0;
  vertical-align: middle;
}

/****自動文字サイズ変換無効化******/
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  color: #222;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 300;
  /*
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	*/
}

body * {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
textarea,
select {
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
  padding: 10px;
  border-radius: 5px;
  border: solid 1px #aaa;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:hover {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.Breadcrumbs {
  display: block;
  margin: 32px 0;
  padding-left: 20px;
}

.Breadcrumbs a {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 1px;
}

@media only screen and (max-width: 799px) {
  .Breadcrumbs a {
    font-size: 12px;
  }
}

.Breadcrumbs a::before {
  content: ">";
  display: inline-block;
  padding: 0 16px;
}

.Breadcrumbs a:nth-child(1)::before {
  display: none;
}

.TopView {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%;
  height: 80vh;
  margin: 0 auto;
  padding-top: 86px;
  overflow: hidden;
}

@media only screen and (max-width: 799px) {
  .TopView {
    padding-top: 43px;
  }
}

.TopView__h1Wrapper {
  text-align: center;
  opacity: 0;
  -webkit-animation: fade_in 1s;
  animation: fade_in 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.TopView__h1 {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  z-index: 1;
}

@media only screen and (max-width: 799px) {
  .TopView__h1 {
    font-size: calc(16px + 3.5vw);
  }
}

.TopView__h1Ruby {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: #fff;
}

@media only screen and (max-width: 799px) {
  .TopView__h1Ruby {
    font-size: calc(10px + 0.3vw);
  }
}

.TopView__Bg1 {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  z-index: -1;
  opacity: 0;
  -webkit-animation: fade_in 1s;
  animation: fade_in 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.TopView__Bg1 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.TopView__Bg2 {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  background: #000;
  z-index: -3;
}

.Mission {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: url(../images/w_bg.svg) no-repeat center center/cover;
  background-attachment: fixed;
  z-index: 0;
  padding-top: 160px;
  padding-bottom: 160px;
}

@media only screen and (max-width: 799px) {
  .Mission {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.Mission__SectionTitle, .Mission__VisionTitle {
  display: block;
  width: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  color: #095187;
  margin-bottom: 32px;
  line-height: 175%;
}

@media only screen and (max-width: 799px) {
  .Mission__SectionTitle, .Mission__VisionTitle {
    font-size: 14px;
  }
}

.Mission__MissionText, .Mission__VisionText {
  display: block;
  width: 100%;
  padding: 0 10px;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #095187;
  margin-bottom: 24px;
}

@media only screen and (max-width: 799px) {
  .Mission__MissionText, .Mission__VisionText {
    font-size: calc(8px + 2.8vw);
  }
}

.Business {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: url(../images/top/Business_bg.png) no-repeat center center/cover;
  background-attachment: fixed;
  z-index: 0;
  padding-top: 160px;
  padding-bottom: 160px;
}

@media only screen and (max-width: 799px) {
  .Business {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.Business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 81, 135, 0.9);
  z-index: -1;
}

.Business__SectionTitle {
  display: block;
  width: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 64px;
}

.Business__Ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.Business__List {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%;
  max-width: 480px;
  height: 100%;
  margin: 24px;
  padding: 36px;
  color: #095187;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 799px) {
  .Business__List {
    margin: 12px;
    padding: 24px;
  }
}

.Business__List-Title {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

@media only screen and (max-width: 799px) {
  .Business__List-Title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 799px) {
  .Business__List-Content {
    font-size: 14px;
  }
}

.Message {
  width: 100%;
  margin: 0 auto;
}

.Message__Ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  width: 100%;
}

@media only screen and (max-width: 799px) {
  .Message__Ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}

.Message__List {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 50%;
  height: 100%;
  background: #e4e4e4;
}

@media only screen and (max-width: 799px) {
  .Message__List {
    width: 100%;
  }
}

.Message__List:nth-child(1) {
  background: #090916;
  padding: 100px 0;
}

@media only screen and (max-width: 799px) {
  .Message__List:nth-child(1) {
    padding: 50px 20px;
  }
}

.Message__List-SectionTitle {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 27px;
}

.Message__List-Slogan {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
}

@media only screen and (max-width: 799px) {
  .Message__List-Slogan {
    font-size: 20px;
  }
}

.Message__List-Name {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 32px;
}

@media only screen and (max-width: 799px) {
  .Message__List-Name {
    font-size: 12px;
  }
}

.Message__List-Btn {
  position: relative;
  display: block;
  width: 240px;
  text-align: center;
  border-radius: 100px;
  background: #095187;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.Message__List-Btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 0;
  font-weight: bold;
  color: #fff;
}

.Message__List-Btn:hover {
  opacity: 0.8;
}

.Message__List-Btn::before {
  content: "";
  position: absolute;
  display: block;
  top: 20px;
  right: 26px;
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.Message__List-Btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 26px;
  right: 26px;
  width: 10px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.Message__List-VideoWrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 226px 0;
  overflow: hidden;
}

.Message__List-VideoWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

@media only screen and (max-width: 799px) {
  .Message__List-VideoWrapper {
    padding: 150px 0;
  }
}

.Message__List-TopPageVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.Company {
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  padding-top: 160px;
  padding-bottom: 160px;
}

@media only screen and (max-width: 799px) {
  .Company {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.Company__SectionTitle {
  display: block;
  width: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  color: #095187;
  margin-bottom: 102px;
}

.Company__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  color: #095187;
  margin-bottom: 80px;
}

.Company__table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  width: 100%;
  margin-bottom: 16px;
  border-bottom: solid 1px;
}

@media only screen and (max-width: 799px) {
  .Company__table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.Company__table th {
  font-weight: bold;
  width: 40%;
  min-width: 200px;
  padding-bottom: 16px;
}

@media only screen and (max-width: 799px) {
  .Company__table th {
    min-width: 100%;
  }
}

.Company__table td {
  width: 60%;
  min-width: 600px;
  padding-bottom: 16px;
}

@media only screen and (max-width: 799px) {
  .Company__table td {
    min-width: 100%;
    font-size: 12px;
  }
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 300px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

@media only screen and (max-width: 799px) {
  .gmap {
    width: 98%;
  }
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 560px) {
  .pc-non {
    display: none !important;
  }
}

@media only screen and (max-width: 559px) {
  .sp-non {
    display: none !important;
  }
}

.mb0 {
  margin-bottom: 0;
}

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (min-width: 560px) {
  .telLink {
    pointer-events: none;
    text-decoration: none;
    color: inherit;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 559px) {
  .wrapper {
    width: auto;
  }
}

.hoverImg {
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 560px) {
  .hoverImg:hover {
    opacity: 0.7;
  }
}

.hoverTxt {
  text-decoration: none;
  color: inherit;
}

.hoverTxt:hover {
  text-decoration: underline;
}

.require {
  display: inline-block;
  background-color: red;
  color: #fff;
  font-size: 1.4rem;
  padding: 3px 5px;
  border-radius: 4px;
  margin-left: 5px;
}

/* CSS Document */
.header {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  width: 100%;
  height: 86px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.98);
  z-index: 100;
}

@media only screen and (max-width: 799px) {
  .header {
    height: 43px;
  }
}

.header__Logo {
  display: block;
}

.header__Logo a {
  display: block;
  width: 100%;
  height: auto;
}

.header__Logo a img {
  display: block;
  width: 150px;
  height: auto;
}

@media only screen and (max-width: 799px) {
  .header__Logo a img {
    width: 75px;
  }
}

.header__Nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
}

@media only screen and (max-width: 799px) {
  .header__Nav {
    position: fixed;
    display: none;
    bottom: 0;
    left: 0;
    height: 65vh;
    padding: 5vw;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10;
  }
}

.header__Nav-List {
  display: block;
  margin-left: 32px;
}

@media only screen and (max-width: 799px) {
  .header__Nav-List {
    margin-left: 0;
    margin-bottom: 1vh;
    padding-bottom: 1vh;
    border-bottom: solid 1px #095187;
  }
}

.header__Nav-List a {
  display: block;
  width: 100%;
  height: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  letter-spacing: 1px;
  color: #095187;
}

.header__Nav-List a:hover {
  opacity: 0.8;
}

.header__Nav-List a span {
  display: block;
  font-size: 8px;
  font-weight: bold;
}

.header__NavBtn {
  position: fixed;
  display: none;
  bottom: 3vh;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  background: #095187;
  border-radius: 100px;
  -webkit-box-shadow: 0 0 10px rgba(9, 81, 135, 0.3);
  box-shadow: 0 0 10px rgba(9, 81, 135, 0.3);
  z-index: 200;
  cursor: pointer;
}

@media only screen and (max-width: 799px) {
  .header__NavBtn {
    display: block;
  }
}

.header__NavBtn-LineBox {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.header__NavBtn span {
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header__NavBtn-line1 {
  top: 14px;
  left: 10px;
}

.header__NavBtn-line2 {
  top: 24px;
  left: 10px;
}

.header__NavBtn-line3 {
  top: 34px;
  left: 10px;
}

.active .header__NavBtn-line1 {
  width: 35px;
  top: 24px;
  left: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.active .header__NavBtn-line2 {
  width: 35px;
  top: 24px;
  left: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.active .header__NavBtn-line3 {
  width: 35px;
  top: 24px;
  left: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* CSS Document */
.Footer {
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  background: #095187;
  padding-top: 80px;
}

.Footer__Logo {
  display: block;
  width: 147px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 80px;
}

.Footer__Nav-Title {
  display: block;
  width: 100%;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 24px;
}

.Footer__Nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
  padding: 0 20px;
  padding-bottom: 64px;
}

@media only screen and (max-width: 559px) {
  .Footer__Nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}

.Footer__Nav-List {
  display: block;
  margin-right: 32px;
}

.Footer__Nav-List:nth-last-child(1) {
  margin-right: 0;
}

@media only screen and (max-width: 559px) {
  .Footer__Nav-List {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.Footer__Nav-List a {
  display: block;
  color: #fff;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  font-size: 14px;
}

.Footer__Nav-List a:hover {
  opacity: 0.5;
}

.Footer small {
  display: block;
  width: 100%;
  padding-bottom: 80px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.MessagePage {
  background: url("../images/w_bg.svg");
  background-repeat: no-repeat;
  background-position-x: 20vw;
  background-position-y: 80vh;
}

@media only screen and (max-width: 799px) {
  .MessagePage {
    background-size: 200%;
    background-position-x: -10vw;
    background-position-y: 40vh;
  }
}

.MessagePage__TopView {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  padding-top: 86px;
  overflow: hidden;
}

@media only screen and (max-width: 799px) {
  .MessagePage__TopView {
    padding-top: 43px;
    height: 70vh;
  }
}

.MessagePage__h1 {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 2;
  -webkit-animation: fade_in 1s;
  animation: fade_in 1s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.MessagePage__h1-Slogan {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 16px;
}

@media only screen and (max-width: 799px) {
  .MessagePage__h1-Slogan {
    font-size: calc(10px + 2.5vw);
  }
}

.MessagePage__h1-Name {
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
}

@media only screen and (max-width: 799px) {
  .MessagePage__h1-Name {
    font-size: calc(10px + 0.3vw);
  }
}

.MessagePage__VideoWrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.MessagePage__VideoWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.MessagePage__VideoWrapper-Video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.MessagePage__Contents {
  display: block;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.MessagePage__Contents-SectionTitle {
  display: block;
  width: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho medium", "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  color: #095187;
  margin-bottom: 88px;
}

@media only screen and (max-width: 799px) {
  .MessagePage__Contents-SectionTitle {
    margin-bottom: 44px;
  }
}

.MessagePage__Contents-h3 {
  font-size: 21px;
  font-weight: bold;
  color: #095187;
  margin-bottom: 32px;
}

.MessagePage__Contents-Text {
  display: block;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 1px;
  color: #2E2E2E;
  margin-bottom: 88px;
}

@media only screen and (max-width: 799px) {
  .MessagePage__Contents-Text {
    font-size: calc(10px + 1vw);
  }
}

/*# sourceMappingURL=style.css.map */
