@charset "UTF-8";
@keyframes scroll-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-text-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, sup, 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: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #006287;
  color: #fff;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

body.index .logo {
  padding: 400px 0 300px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body.index .logo {
    padding: 0;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
body.index .logo img {
  width: 70px;
}
@media only screen and (max-width: 767px) {
  body.index .logo img {
    width: 40px;
  }
}
body.index .img {
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  body.index .img {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
  }
}
body.index .img__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
}
body.index .img__inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.index .message {
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  body.index .message {
    padding: 0 20px;
    padding-top: 80px;
  }
}
body.index .message__inner {
  max-width: 800px;
  margin: 0 auto;
}
body.index .message__inner > h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > h2 {
    font-size: 24px;
  }
}
body.index .message__inner > h3 {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > h3 {
    font-size: 20px;
    padding-top: 24px;
  }
}
body.index .message__inner > p {
  padding-top: 42px;
  font-size: 22px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > p {
    font-size: 16px;
    padding-top: 24px;
  }
}
body.index .message__inner > p span {
  display: block;
  line-height: 2;
  margin: 24px 0;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > p span {
    margin: 16px 0;
  }
}
body.index .message__inner > p em {
  display: block;
  line-height: 1.75;
  margin: 24px 0;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > p em {
    margin: 16px 0;
  }
}
body.index .message__inner > hr {
  margin-top: 60px;
  width: 100%;
  height: 1px;
  box-shadow: none;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > hr {
    margin-top: 24px;
  }
}
body.index .message__inner > ul {
  padding-left: 24px;
  list-style: disc;
  margin-top: 52px;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > ul {
    padding-left: 16px;
    margin-top: 24px;
  }
}
body.index .message__inner > ul li {
  font-size: 22px;
  font-weight: 400;
  margin: 24px 0;
}
@media only screen and (max-width: 767px) {
  body.index .message__inner > ul li {
    font-size: 16px;
    margin: 16px 0;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  body.index .message__member {
    padding-top: 40px;
  }
}
body.index .message__member__box {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  body.index .message__member__box {
    margin-top: 24px;
    padding: 40px 24px;
  }
}
body.index .message__member__box h3 {
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  body.index .message__member__box h3 {
    font-size: 20px;
    gap: 24px;
  }
}
body.index .message__member__box h3 span {
  letter-spacing: 0.05em;
}
body.index .message__member__box h3 em {
  letter-spacing: 0.05em;
  font-size: 22px;
}
@media only screen and (max-width: 767px) {
  body.index .message__member__box h3 em {
    font-size: 18px;
  }
}
body.index .message__member__box h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 8px;
  opacity: 0.7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body.index .message__member__box h4 {
    font-size: 14px;
    padding-bottom: 16px;
    letter-spacing: 0.05em;
  }
}
body.index .message__member__box p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  body.index .message__member__box p {
    font-size: 14px;
    margin-top: 16px;
  }
}
body.index .message__member__box a {
  text-decoration: underline;
}
body.index .foot {
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  body.index .foot {
    padding: 0 20px;
    padding-bottom: 40px;
  }
}
body.index .foot__inner {
  max-width: 800px;
  margin: 0 auto;
}
body.index .foot__inner > p {
  margin-top: 42px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body.index .foot__inner > p {
    font-size: 14px;
    margin-top: 24px;
  }
}
body.index .foot__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  body.index .foot__row {
    flex-direction: column;
  }
}
body.index .foot__col p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
  body.index .foot__col p {
    font-size: 16px;
  }
}
body.index .foot__col p span {
  display: block;
  line-height: 2;
}
body.index .foot__col a {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  body.index .foot__col {
    width: 100%;
    margin-top: 42px;
  }
}