@charset "utf-8";

/*
  File Name   : layout.css
  Description : 各ブロックのレイアウト
*/


/*
============================================================ */
/* BASE
============================================================ */
/*** structure ***/
body {
  color: #333;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  /* font-family: "Noto Sans JP", sans-serif; */
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}

/* sp body */
@media screen and (max-width: 811px) {
  body {
    font-size: 14px;
  }
}

body>#lay-header,
body>#lay-container {
  box-sizing: border-box;
  width: 100%;
  min-width: 320px;
}

/*** hypertext ***/
a:link {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:active {
  color: inherit;
  text-decoration: underline;
}

a:visited {
  color: inherit;
}

/*** selection ***/
/* ::-moz-selection {
  color: inherit;
  background: inherit;
}
::selection {
  color: inherit;
  background: inherit;
}
input::selection,
textarea::selection {
  color: inherit;
} */

/*** placeholder ***/
/* ::placeholder {
  color: inherit;
}
:-ms-input-placeholder {
  color: inherit;
}
::-ms-input-placeholder {
  color: inherit;
} */

/* overlay
------------------------------------------------------------ */
.lay-overlay {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

/*
============================================================ */
/* header
============================================================ */
#lay-header {
  width: 100%;
  background: #fff;
  /* position: ;
  left: 0;
  top: 0;
  z-index: 100; */
}

#lay-header .lay-header-inner {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#lay-header .lay-head-logo {
  width: 17.1818875rem;
  padding: 25px 0 23px 58px;
  z-index: 1;
}

#lay-header .lay-header-lead-text {
  font-size: clamp(0.875rem, 0.601rem + 0.54vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.21em;
  padding-right: 1em;
  padding-top: 10px;
}


/* sp header
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #lay-header {
    display: none;
  }

}



/*
============================================================ */
/* breadcrumbs
============================================================ */
.lay-breadcrumbs-list {}

#top .lay-breadcrumbs-list {
  display: none;
}

.lay-breadcrumbs-list li {
  position: relative;
}

.lay-breadcrumbs-list li::after {
  content: ">";
  margin: 0 5px;
}

.lay-breadcrumbs-list li:last-child::after {
  display: none;
}

.lay-breadcrumbs-list li a {
  text-decoration: underline;
}

.lay-breadcrumbs-list li a:hover {
  text-decoration: none;
}

/*
============================================================ */
/* container
============================================================ */
#lay-container {
  width: 100%;
  padding: 0;
  text-align: left;
}

#top #lay-container {
  padding: 0;
}

/* sp container
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #lay-container {
    padding: 0;
  }
}

/*
============================================================ */
/* main
============================================================ */
#lay-main {
  width: 100%;
  margin: 0 auto;
}

/* sp main
------------------------------------------------------------ */
@media screen and (max-width: 811px) {}

/*
============================================================ */
/* page-top
============================================================ */
.lay-page-top-wrap {
  position: fixed;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 60px;
}

@media print {
  .lay-page-top-wrap {
    display: none;
  }
}

.lay-page-top-wrap:hover {
  opacity: 0.9;
}

.lay-page-top-wrap .lay-page-top {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 60px;
  background-color: #222;
  text-indent: -9999px;
}

.lay-page-top-wrap .lay-page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%) rotate(-45deg);
  transform: translate(-50%) rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* sp page-top
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .lay-page-top-wrap {
    right: 10px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    border-radius: 45px;
  }

  .lay-page-top-wrap .lay-page-top {
    width: 45px;
    height: 45px;
    border-radius: 45px;
  }

  .lay-page-top-wrap .lay-page-top::before {
    top: calc(50% - 4px);
    width: 15px;
    height: 15px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}

/*
============================================================ */
/* footer
============================================================ */
#lay-footer {
  width: 100%;
  padding: 0 20px;
  margin: 60px 0 80px;
}

#lay-footer .lay-footer-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#lay-footer .lay-footer-logo {
  font-size: 15px;
  text-align: center;
}

#lay-footer .lay-footer-banner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  row-gap: 20px;
  width: 313.6px;
  margin: 30px auto 0;
}
#lay-footer .lay-footer-banner p {
  font-size: 15px;
  text-align: center;
}

/* sp footer
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #lay-footer .lay-footer-inner {
    width: 100%;
    height: auto;
  }

  #lay-footer .lay-footer-logo img {
    max-width: 100%;
  }
}

/*
============================================================ */
/* page-title
============================================================ */
#lay-main .page-title {
  margin: 210px 20px 50px;
}

#lay-main .page-title .title {
  font-size: 29px;
  font-family: 'GFS Didot', serif;
  text-align: center;
  font-weight: 400;
}

/* sp page-title
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #lay-main .page-title {
    margin: 200px 20px 40px;
  }
}

@media screen and (max-width: 481px) {
  #lay-main .page-title .title {
    font-size: 25px;
  }
}

/*
============================================================ */
/* pager
============================================================ */
#lay-main .pager {
  margin-top: 115px;
  display: flex;
  justify-content: center;
}

#lay-main .pager li {
  font-size: 15px;
}

#lay-main .pager li:not(:first-child) {
  margin-left: 20px;
}

#lay-main .pager li a:hover {
  text-decoration: none;
}

#lay-main .pager li.current span {
  color: #666;
}

#lay-main .prev-arrow a,
#lay-main .next-arrow a {
  display: block;
  position: relative;
  height: 100%;
  width: 10px;
}

#lay-main .prev-arrow a::before,
#lay-main .prev-arrow a::after,
#lay-main .next-arrow a::before,
#lay-main .next-arrow a::after {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background: #000;
  position: absolute;
  top: calc(50%);
  transform: rotate(30deg);
  transform-origin: calc(100% - 0.5px) 50%;
  border-radius: 1px;
}

#lay-main .prev-arrow a::before,
#lay-main .prev-arrow a::after {
  left: -5px;
}

#lay-main .next-arrow a::before,
#lay-main .next-arrow a::after {
  right: 5px;
}

#lay-main .prev-arrow a::before {
  transform: rotate(210deg);
}

#lay-main .prev-arrow a::after {
  transform: rotate(-210deg);
}

#lay-main .next-arrow a::after {
  transform: rotate(-30deg);
}

/* sp pager
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  #lay-main .pager {
    margin-top: 75px;
  }
}

/* 20230724追加 */
#lay-footer .lay-footer-button {
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  background: #00546d;
  color: #fff;
  font-weight: bold;
  margin: 30px auto 80px;
  line-height: 1.3;
  max-width: 543px;
}
#lay-footer .lay-footer-button a {
  display: block;
  width: 100%;
  padding: 15px 20px;
}