@charset "UTF-8";
/*!
【記述ルール】
p-header-****__****--****
 -****  セクション的要素
 __**** ブロック・インライン的要素の名称
 --**** 修飾的要素の名称
 例）p-top-content01__list--bold

 注意：1クラスに記述するブロック・インライン的要素は必要以上多くならないように注意する
*/
/* =========================================================
flex - flex関連の指定
========================================================= */
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,900,900i");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400");
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&display=swap");
/* =========================================================
shadow - シャドウ
デフォルトでは色が濃い目なので使う際に調整してください。
========================================================= */
/* =========================================================
other - その他
========================================================= */
/* =========================================================
color - 色の設定
========================================================= */
/* =========================================================
font - font-familyの設定など
========================================================= */
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
/* =========================================================
typography - テキスト関連の設定
========================================================= */
html {
  font-size: 100%;
  line-height: 1.5em;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
body {
  overflow-x: hidden;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  color: #333333;
  font-family: "Noto Sans JP", "Noto Sans Japanese", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  letter-spacing: 0.1em;
}
@media screen and (min-width: 980px) {
  body {
    overflow-x: hidden !important;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .4s;
  line-height: 1;
}
a:hover {
  color: inherit;
}

p {
  color: #555555;
}

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

.pc-show {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show {
    display: block;
  }
}

@media screen and (min-width: 980px) {
  .sp-show {
    display: none;
  }
}

.pc-show-inline {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show-inline {
    display: inline-block;
  }
}

/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .l-container {
    max-width: 1250px;
  }
}

/* =========================================================
main - メイン
========================================================= */
.l-main {
  position: relative;
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 190px;
  }
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
/*ベースボタン＝＝＝＝*/
.c-basic-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 320px;
  width: 100%;
  padding: 12px 10px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none !important;
  transition: .3s;
  transition: .3s;
  cursor: pointer;
}
.c-basic-btn:hover {
  opacity: .7;
}
@media screen and (min-width: 768px) {
  .c-basic-btn {
    padding: 18px 10px;
  }
}
.c-basic-btn__in {
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-basic-btn__in {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* =========================================================
pankuzu - パンくず
========================================================= */
/*パンクズ＝＝＝＝＝＝＝＝＝＝＝*/
.c-pankuzu {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .c-pankuzu {
    padding: 20px 0 0;
  }
}
.c-pankuzu--wrap {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 96vw;
}
.c-pankuzu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  align-items: baseline;
}
.c-pankuzu ul li:first-of-type {
  background: url(../images/common/iconーright.svg) bottom 6px right no-repeat;
  background-size: 7px 7px;
  padding-right: 15px;
  margin-right: 10px;
}
.c-pankuzu ul li a, .c-pankuzu ul li span {
  display: inline-block;
  color: #333333;
  font-size: 10px;
  font-size: 0.625rem;
}
.c-pankuzu ul li a {
  text-decoration: underline;
}

/* =========================================================
plugin - jsの追記
========================================================= */
.js-inview {
  position: relative;
  opacity: 0;
}
.js-inview.active {
  -moz-animation: top-up 500ms alternate 300ms forwards;
  -webkit-animation: top-up 500ms alternate 300ms forwards;
  animation: top-up 500ms alternate 300ms forwards;
}

/*[sample]の実行*/
@-moz-keyframes top-up {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes top-up {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes top-up {
  0% {
    opacity: 0;
    top: 50px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
/*======================
【js-slick】スライダー
======================*/
.slick-slider {
  opacity: 0;
  transition: 0.3s;
}
.slick-slider.slick-initialized {
  opacity: 1;
}
.slick-slider .slick-track {
  min-width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots {
  bottom: -45px;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 3px;
}
.slick-dots li .js-slick__dots-item {
  color: #dddddd;
  font-size: 13px;
}
.slick-dots li.slick-active .js-slick__dots-item {
  color: #218541;
}

/* =========================================================
header - ヘッダー関連全てココ
========================================================= */
.p-header {
  background: #ffffff;
  border-top: 5px solid #154d8b;
  width: 100%;
  height: 120px;
  transition: .3s;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 190px;
    padding: 35px 0 0;
  }
}
.p-header--wrap {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 96vw;
}
.p-header--logo {
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-header--logo {
    padding-bottom: 15px;
  }
}
.p-header--logo a {
  display: inline-block;
}
.p-header--logo a img {
  display: inline-block;
  transition: .3s;
  max-width: 90px;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header--logo a img {
    max-width: 145px;
  }
}
.p-header--nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 100%;
}
.p-header--nav ul li {
  width: 33.3%;
}
@media screen and (min-width: 768px) {
  .p-header--nav ul li {
    width: auto;
    padding: 0 20px;
  }
}
.p-header--nav ul li a {
  background: #eeeeee;
  border: 2px solid #ffffff;
  display: inline-block;
  text-align: center;
  transition: .3s;
  padding: 10px 5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header--nav ul li a {
    border: none;
    background: none;
  }
}
.p-header--nav ul li a span {
  color: #333333;
  display: inline-block;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  transition: .3s;
}
.p-header--nav ul li a span::before {
  content: '';
  background: #96d5e2;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7.5px);
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-header--nav ul li a span {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-header--nav ul li:last-of-type a span::before {
  background-color: #154d8b;
}
.p-header.active {
  padding: 0;
  height: 88px;
}
@media screen and (min-width: 768px) {
  .p-header.active {
    height: 110px;
  }
}
.p-header.active .p-header--wrap {
  padding: 10px 0;
}
.p-header.active .p-header--logo {
  padding-bottom: 5px;
}
.p-header.active .p-header--logo a img {
  max-width: 55px;
}
@media screen and (min-width: 768px) {
  .p-header.active .p-header--logo a img {
    max-width: 100px;
  }
}
.p-header.active .p-header--nav ul li a {
  padding: 4px 5px 6px;
}
.p-header.active .p-header--nav ul li a span {
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-header.active .p-header--nav ul li a span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-header.active .p-header--nav ul li a span:before {
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
}

/*headerを固定する場合*/
body {
  margin-top: 85px;
}
@media screen and (min-width: 768px) {
  body {
    margin-top: 85px;
  }
}

/*logo======*/
.c-header-logo__link {
  width: 50px;
}

/* =========================================================
footer - footer関連全てココ
========================================================= */
.p-footer {
  background: #154d8b;
  border-top: 5px solid #a4b1c0;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 60px 0 70px;
  }
}
.p-footer--wrap {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 96vw;
}
@media screen and (min-width: 768px) {
  .p-footer--wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.p-footer dl {
  color: #ffffff;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer dl {
    text-align: left;
  }
}
.p-footer dl dt {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer dl dt {
    padding-bottom: 20px;
  }
}
.p-footer dl dt a {
  display: inline-block;
}
.p-footer dl dt a img {
  display: inline-block;
  max-width: 90px;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer dl dt a img {
    max-width: 145px;
  }
}
.p-footer dl dd {
  font-size: calc(18 * (100vw / 520));
}
@media screen and (min-width: 768px) {
  .p-footer dl dd {
    font-size: calc(18 * (100vw / 768));
  }
}
@media screen and (min-width: 980px) {
  .p-footer dl dd {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-footer--nav {
  padding-top: 20px;
}
.p-footer--nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer--nav ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
.p-footer--nav ul li {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-footer--nav ul li {
    padding: 0 0 0 15px;
  }
}
.p-footer--nav ul li a {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 10px 15px;
  transition: .3s;
}
.p-footer--nav ul li a:hover {
  opacity: 0.7;
}
.p-footer--nav ul li a span {
  color: #ffffff;
  font-size: calc(13 * (100vw / 520));
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 768px) {
  .p-footer--nav ul li a span {
    font-size: calc(13 * (100vw / 768));
  }
}
@media screen and (min-width: 980px) {
  .p-footer--nav ul li a span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer--copy {
  color: #ffffff;
  font-size: calc(12 * (100vw / 520));
  text-align: center;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer--copy {
    font-size: calc(12 * (100vw / 768));
  }
}
@media screen and (min-width: 980px) {
  .p-footer--copy {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* =========================================================
access - アクセスページの独自コンテンツ
========================================================= */
.p-access-h1 {
  padding: 8% 0 10%;
}
@media screen and (min-width: 768px) {
  .p-access-h1 {
    padding: 40px 0;
  }
}
.p-access-h1--title {
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 1;
  text-align: center;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
  width: 96vw;
}
.p-access-h1--title .main {
  display: block;
  color: #154d8b;
  font-size: calc(40 * (100vw / 520));
  font-weight: bold;
  letter-spacing: 6px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-access-h1--title .main {
    font-size: 40px;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}
.p-access-h1--title .sub {
  display: block;
  color: #666666;
  font-size: calc(15 * (100vw / 520));
}
@media screen and (min-width: 768px) {
  .p-access-h1--title .sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-access-box {
  padding: 0 15px 50px;
  margin: 0 auto;
  max-width: 1200px;
  width: 96vw;
}
@media screen and (min-width: 768px) {
  .p-access-box {
    padding-bottom: 100px;
  }
}
.p-access-box figure {
  text-align: center;
}
.p-access-box figure img {
  display: inline-block;
}
.p-access-box p {
  display: block;
  font-size: calc(14 * (100vw / 520));
  line-height: 2.1;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-access-box p {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 980px) {
  .p-access-box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-access-box--btn {
  padding-top: 30px;
}
.p-access-box--btn a {
  background: #154d8b;
  color: #ffffff;
  display: block;
  font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: calc(20 * (100vw / 520));
  max-width: 250px;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  transition: .3s;
  line-height: 1.2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access-box--btn a {
    font-size: calc(20 * (100vw / 768));
  }
}
@media screen and (min-width: 980px) {
  .p-access-box--btn a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-access-box--btn a:hover {
  opacity: 0.5;
}
