@charset "utf-8";
/* ===================================================================
 common.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/

/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var, b, u, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, thead, tfoot, tr, th, td,
main, article, aside, canvas, details, embed, figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
}
h1, h2, h3, h4, h5, h6, th {
  font-size: 100%;
  font-family: inherit;
}
em  {
  font-style: normal;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
table, th, td {
  text-align: left;
  border: none;
}
ul, ol, li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  font-size: 100%;
  color: inherit;
  line-height: inherit;
  font-family: inherit;
  font-weight: normal;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
select::-ms-expand {
  display:none;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*----------------------------------------------------------
 Base
------------------------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
body {
  min-width: 320px;
  font-size: 1.6em;
  color: #444;
  font-family: 'Karla', 'Noto Sans JP', sans-serif;
}
h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}
input, select, textarea {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

/*----------------------------------------------------------
 Anchers
------------------------------------------------------------*/
a {
  color: #222;
  text-decoration: underline;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: none;
    opacity: .7;
  }
  a img { transition: .3s; }
}

/*----------------------------------------------------------
 page
------------------------------------------------------------*/
.f_page {
  display: flex;
  flex-direction: column;
}
.f_inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2vw;
  box-sizing: content-box;
}
.f_inner._sizeL {
  max-width: 1400px;
}
.f_inner._sizeM {
  max-width: 1200px;
}
.f_inner._sizeS {
  max-width: 1000px;
}

.f_page :first-child { margin-top: 0; }
.f_page :last-child { margin-bottom: 0; }

@media screen and (max-width: 767px) {
  .f_inner {
    padding: 0 20px;
  }
}

/*----------------------------------------------------------
 header
------------------------------------------------------------*/
.f_header {
  order: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transition: .3s;
}
.f_header:not(.-alpha),
.f_header:hover {
  background: #fff;
  border-bottom: 1px solid #ececec;
}
.f_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2vw;
}
.f_header-logo {
  width: 110px;
  margin-right: 50px;
}
.f_header-nav {
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .f_header-inner {
    height: 50px;
  }
  .f_header-inner {
    padding: 0 15px;
  }
  .f_header-logo {
    width: 80px;
  }
}

/*----------------------------------------------------------
 globalnav
------------------------------------------------------------*/
.f_globalnav {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}

/* globalnav-list
-------------------------------------------------*/
.f_globalnav-list {
  display: flex;
  padding-top: 5px;
}
.f_globalnav-list > li + li {
  margin-left: 25px;
}
.f_globalnav-list > li > a,
.f_globalnav-list > li > span {
  font-size: 1.8rem;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* globalnav-child */
.f_globalnav-child {
  position: absolute;
  top: 65px;
  left: 0;
  z-index: -1;
  width: 100vw;
  background: #fff;
  transform: scaleY(0);
  transform-origin: top left;
  transition: .3s;
}
.f_globalnav-child:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(0,0,0,.1), rgba(0,0,0,0));
}
.f_globalnav-child-inner {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 30px;
  opacity: 0;
  transition: .3s;
}
.f_globalnav-child-head {
  width: 230px;
}
.f_globalnav-child-head-title {
  font-size: 4.2rem;
  color: #015d68;
  line-height: 1;
  font-weight: bold;
}
.f_globalnav-child-head-links {
  margin-top: 30px;
}
.f_globalnav-child-nav {
  flex-grow: 1;
}
.f_globalnav-child-nav-list {
  display: flex;
}
.f_globalnav-child-nav-list > li {
  max-width: 200px;
}
.f_globalnav-child-nav-list > li + li {
  margin-left: 30px;
}
.f_globalnav-child-nav-list > li a {
  display: block;
  text-decoration: none;
}
.f_globalnav-child-nav-list-img {
  margin-bottom: 5px;
}
.f_globalnav-child-nav-list-text {
  font-size: 1.4rem;
  font-weight: bold;
}
.f_globalnav-list > li:hover .f_globalnav-child {
  transform: scaleY(1);
}
.f_globalnav-list > li:hover .f_globalnav-child-inner {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .f_globalnav-list {
    display: none;
  }
}

/*----------------------------------------------------------
 drawernav
------------------------------------------------------------*/
.f_drawernav {
  position: fixed;
  top: 0;
  right: 0;
}
.f_drawernav:not(.-opened) {
  height: 0;
}
.f_drawernav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100vw;
  padding: 120px 5vw 80px;
  background: #015d68;
  transform: scaleY(1);
  transform-origin: top left;
  transition: .3s;
}
.f_drawernav:not(.-opened) .f_drawernav-inner {
  transform: scaleY(0);
  overflow: hidden;
}
.f_drawernav-inner:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,0));
}
.f_drawernav-main {
  display: grid;
  grid-template-columns: 1fr 42%;
  grid-template-rows: auto max-content;
  width: 100%;
}
.f_drawernav-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.3);
  transition: .3s;
}
.f_drawernav:not(.-opened) .f_drawernav-bg {
  display: none;
}

@media screen and (max-width: 767px) {
  .f_drawernav-inner {
    align-items: flex-start;
    max-height: 100vh;
    padding: 50px 25px;
    overflow-y: auto;
  }
  .f_drawernav-inner:after {
    content: none;
  }
  .f_drawernav-main {
    display: block;
  }
}

/* f_drawernav-title
-------------------------------------------------*/
.f_drawernav-title {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.f_drawernav-title-logo {
  max-width: 80%;
  height: 70%;
  margin-bottom: 30px;
}
.f_drawernav-title-logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.f_drawernav-title-logo img {
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .f_drawernav-title {
    margin-bottom: 30px;
  }
  .f_drawernav-title-logo {
    width: 180px;
    max-width: none;
    height: auto;
    padding-top: 5px;
  }
}

/* f_drawernav-menu
-------------------------------------------------*/
.f_drawernav-menu {
  display: flex;
  justify-content: space-between;
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.f_drawernav-menu-list {
  width: 48%;
}
.f_drawernav-menu-list > li + li {
  margin-top: 20px;
}
.f_drawernav-menu-list > li > a,
.f_drawernav-menu-list > li > span {
  display: block;
  padding: 10px 0;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-weight: 300;
}

/* list-child */
.f_drawernav-menu-list-child {
  margin-top: 5px;
}
.f_drawernav-menu-list-child > li {
  position: relative;
  padding-left: 22px;
}
.f_drawernav-menu-list-child > li + li {
  margin-top: 10px;
}
.f_drawernav-menu-list-child > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 3px;
  width: 8px;
  height: 1px;
  background: #bfd3d5;
}
.f_drawernav-menu-list-child > li a {
  font-size: 1.6rem;
  color: #bfd3d5;
  line-height: 1;
  text-decoration: none;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .f_drawernav-menu-list {
    width: 100%;
  }
  .f_drawernav-menu-list > li + li {
    margin-top: 10px;
  }
  .f_drawernav-menu-list > li > a,
  .f_drawernav-menu-list > li > span {
    font-size: 1.8rem;
    font-weight: 400;
  }

  /* list-child */
  .f_drawernav-menu-list-child {
    margin-top: 0;
  }
  .f_drawernav-menu-list-child > li + li {
    margin-top: 5px;
  }
  .f_drawernav-menu-list-child > li a {
    font-size: 1.4rem;
  }
}

/* f_drawernav-sub
-------------------------------------------------*/
.f_drawernav-sub {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: end;
}
.f_drawernav-sub-list + .f_drawernav-sub-list {
  margin-left: 50px;
}
.f_drawernav-sub-list > dt {
  margin-bottom: 5px;
  font-size: 1.8rem;
  color: #bfd3d5;
  line-height: 1;
  font-weight: 500;
}
.f_drawernav-sub-list > dd {
  padding-left: 1px;
}

/* links */
.f_drawernav-sub-list-links > li a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}

/* SNS */
.f_drawernav-sub-list-sns > li a {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}
.f_drawernav-sub-list-sns > li a span {
  display: inline-block;
  width: 18px;
  margin-right: 5px;
  vertical-align: -1px;
}

@media screen and (max-width: 767px) {
  .f_drawernav-sub {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #bfd3d5;
  }
  .f_drawernav-sub-list {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
  }
  .f_drawernav-sub-list + .f_drawernav-sub-list {
    margin: 5px 0 0;
  }
  .f_drawernav-sub-list > dt {
    display: none;
  }
  .f_drawernav-sub-list-sns > li a {
    color: #bfd3d5;
  }
  .f_drawernav-sub-list-sns > li a span {
    width: 22px;
    margin-right: 8px;
    vertical-align: 0;
  }
}

/* globalnav-btn
-------------------------------------------------*/
.f_drawernav-btn {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 18px;
  cursor: pointer;
}
.f_drawernav-btn span,
.f_drawernav-btn:before,
.f_drawernav-btn:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  height: 1px;
  background: #015d68;
  transition: .3s;
}
.f_drawernav-btn span {
  top: calc(50% - 1px);
  width: 50%;
  font-size: 1px;
  text-indent: -9999px;
}
.f_drawernav-btn:before {
  top: 0;
  width: 100%;
}
.f_drawernav-btn:after {
  bottom: 1px;
  width: 70%;
}

/* hover */
@media screen and (min-width: 768px) {
  .f_drawernav-btn:hover span,
  .f_drawernav-btn:hover:before,
  .f_drawernav-btn:hover:after {
    width: 100%;
  }
}

/* close */
.f_drawernav-btn.-closed span {
  right: 50%;
  width: 0;
  background: #bfd3d5;
}
.f_drawernav-btn.-closed:before,
.f_drawernav-btn.-closed:after {
  top: calc(50% - 1px);
  bottom: auto;
  width: 100%;
  background: #bfd3d5;
}
.f_drawernav-btn.-closed:before {
  transform: rotate(20deg);
}
.f_drawernav-btn.-closed:after {
  transform: rotate(-20deg);
}
.f_drawernav-btn.-closed:hover span,
.f_drawernav-btn.-closed:hover:before,
.f_drawernav-btn.-closed:hover:after {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .f_drawernav-btn {
    width: 30px;
    height: 13px;
  }
  .f_drawernav-btn:before {
    top: 1px;
  }
  .f_drawernav-btn:after {
    bottom: 0;
  }
  .f_drawernav-btn span {
    top: 50%;
  }
}

/*----------------------------------------------------------
 breadcrumbs
------------------------------------------------------------*/
.f_breadcrumbs {
  order: 3;
  padding: 10px 2vw;
  background: #fff;
}
.f_breadcrumbs-list {
  display: flex;
}
.f_breadcrumbs-list > li {
  line-height: 1;
}
.f_breadcrumbs-list > li a,
.f_breadcrumbs-list > li span {
  font-size: 1.4rem;
  line-height: 1;
  text-decoration: none;
}
.f_breadcrumbs-list > li:not(:first-child) {
  position: relative;
  margin-left: 5px;
  padding-left: 15px;
}
.f_breadcrumbs-list > li:not(:first-child):before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #bfd3d5;
  border-right: 2px solid #bfd3d5;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .f_breadcrumbs {
    padding: 10px;
  }
}

/*----------------------------------------------------------
 main
------------------------------------------------------------*/
.f_main {
  order: 2;
  position: relative;
  z-index: 2;
  padding: 100px 0 150px;
  background: #fff;
}
.f_main-header {
  padding: 30px 0;
}
.f_main-header-head:not(:only-child) {
  margin-bottom: 20px;
}
.f_pageTitle {
  font-size: 5.2rem;
  color: #015d68;
  line-height: 1;
  font-weight: 500;
}

@media screen and (min-width: 1300px) {
  .f_main-header-inner {
    display: flex;
    justify-content: space-between;
  }
  .f_main-header-head:not(:only-child) {
    width: calc(5.2rem * 10);
    margin-right: 3%;
  }
  .f_main-header-context {
    flex-grow: 1;
  }
}

@media screen and (max-width: 767px) {
  .f_main {
    padding: 100px 0 80px;
  }
  .f_main-header {
    padding: 0;
  }
  .f_pageTitle {
    font-size: 3.6rem;
    line-height: 1.2;
    font-weight: 500;
  }
}

/* contents
-------------------------------------------------*/
.f_contents {
  padding-top: 50px;
}

/*----------------------------------------------------------
 footer
------------------------------------------------------------*/
.f_footer {
  order: 4;
  position: relative;
  min-height: calc(60lvh + 180px);
}
.f_footer:before {
  content: "";
  display: block;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: calc(100lvh - 70px);
  background: url("/common/img/bg_footer.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.f_footer:after {
  content: "";
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 180px;
  background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.3) 30%, rgba(0,0,0,.3));
}
.f_footer-logomark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  padding-top: 150px;
}
.f_footer-logomark img {
  width: 260px;
}
.f_footer-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 80px 2vw 30px;
}

@media screen and (max-width: 767px) {
  .f_footer {
    min-height: auto;
  }
  .f_footer:before {
    top: 50px;
    height: 100lvh !important;
  }
  .f_footer:after {
    content: none;
  }
  .f_footer-logomark {
    padding-top: 80px;
  }
  .f_footer-logomark img {
    width: 160px;
  }
  .f_footer-inner {
    display: block;
    padding: 30px 15px 20px;
  }
}

/* footer-nav
-------------------------------------------------*/
.f_footer-btnPagetop {
  position: absolute;
  top: -50px;
  right: 30px;
  z-index: 5;
}
.f_footer-btnPagetop.-fixed {
  position: fixed;
  top: auto;
  bottom: 30px;
}
.f_footer-btnPagetop a {
  display: block;
  position: relative;
  width: 24px;
  height: 26px;
  text-indent: -9999px;
}
.f_footer-btnPagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #015d68;
  border-left: 1px solid #015d68;
  transform: rotate(45deg);
}
.f_footer-btnPagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 100%;
  background: #015d68;
}

@media screen and (max-width: 767px) {
  .f_footer-btnPagetop {
    top: -60px;
    right: 10px;
  }
  .f_footer-btnPagetop.-fixed {
    bottom: 40px;
  }
  .f_footer-btnPagetop a {
    width: 16px;
    height: 20px;
  }
  .f_footer-btnPagetop a:before {
    top: 2px;
    left: 3px;
    width: 11px;
    height: 11px;
  }
  .f_footer-btnPagetop a:after {
    left: 50%;
  }
}

/* footer-nav
-------------------------------------------------*/
.f_footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

/* links */
.f_footer-nav-links {
  display: flex;
  align-items: flex-start;
}
.f_footer-nav-links > li {
  line-height: 1;
}
.f_footer-nav-links > li + li {
  margin-left: 20px;
}
.f_footer-nav-links > li a {
  position: relative;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.f_footer-nav-links > li a.-blank {
}
.f_footer-nav-links > li a.-blank:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-left: 4px;
  vertical-align: -1px;
  background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%20361%20268.9%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.st0%20%7B%20fill%3A%20%23fff%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolygon%20class%3D%22st0%22%20points%3D%22226.5%200%20212.4%2014.1%20322.7%20124.4%200%20124.4%200%20144.4%20322.7%20144.4%20212.4%20254.7%20226.5%20268.9%20361%20134.4%20226.5%200%22%2F%3E%3C%2Fsvg%3E');
  background-position: right top;
  background-size: cover;
  transform: rotate(-45deg);
}

/* SNS */
.f_footer-nav-sns {
  margin-top: 10px;
}
.f_footer-nav-sns > li {
  width: 24px;
}
.f_footer-nav-sns > li + li {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .f_footer-nav {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .f_footer-nav-links {
    display: none;
  }
  .f_footer-nav-sns {
    position: absolute;
    bottom: 53px;
    right: 15px;
    margin-top: 0;
  }
}

/* footer-info
-------------------------------------------------*/
.f_footer-info-name {
  margin-bottom: 5px;
  font-size: 4rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
.f_footer-info-name a {
  color: #fff;
  line-height: 1;
  text-decoration: none;
}
.f_footer-info-copyright {
  font-size: 1.2rem;
  color: #fff;
}
