@charset "UTF-8";
/* =======================================

	Browser Reset CSS
	Last Up Date 09/09/28

========================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i,900,900i&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600;800&display=swap");
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

* html body {
  font-size: small;
}

*:first-child + html body {
  font-size: small;
}

img {
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul, dl, ol {
  text-indent: 0;
}

ul li {
  list-style: none;
}

address, caption, cite, code, dfn, em, var {
  font-style: normal;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* html input, * html textarea, * html select {
  font-size: 100%;
}

*:first-child + html + input, *:first-child html + textarea, *:first-child + html select {
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th, td {
  text-align: left;
  vertical-align: top;
}

caption {
  text-align: left;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
}

* html pre, * html code, * html kbd, * html samp, * html tt {
  font-size: 100%;
  line-height: 100%;
}

*:first-child + html pre, *:first-child html + code, *:first-child html + kbd, *:first-child + html + samp, *:first-child + html tt {
  font-size: 108%;
  line-height: 100%;
}

input, select, textarea {
  font-size: 100%;
  /*font-family: Verdana, Helvetica, sans-serif;*/
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================//
//
//　mixin
//
// ========================================================================== */
/* color
---------------------------------------------------------- */
/*
$gur-color-01: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
*/
/* media query
---------------------------------------------------------- */
/* font
---------------------------------------------------------- */
/* Noto */
/* Roboto */
/* Garamond */
/* ==========================================================================//
//
//　common
//
// ========================================================================== */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1;
}
@media all and (max-width: 840px) {
  body {
    font-size: 1.4rem;
  }
}

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

.svg {
  max-width: 100%;
  height: auto;
}

/* sp-display
---------------------------------------------------------- */
.spDb {
  display: none;
}

@media all and (max-width: 840px) {
  .spDb {
    display: block;
  }

  .spDn {
    display: none;
  }
}
@media all and (max-width: 840px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 840px) {
  .sponly {
    display: block;
  }
}

/* link
---------------------------------------------------------- */
a {
  text-decoration: none;
  transition: 0.3s;
  /*&:hover {
    opacity: 0.5;
  }*/
}

/* pagetop
---------------------------------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 30px;
  cursor: pointer;
  z-index: 99;
  padding: 5px;
}
@media all and (max-width: 840px) {
  #pagetop {
    width: 40px;
    right: 10px;
    bottom: 20px;
  }
  #pagetop img {
    width: 100%;
  }
}

/* header
---------------------------------------------------------- */
header {
  padding: 2%;
  position: absolute;
  z-index: 1000;
  top: 0;
  width: 100%;
  box-sizing: border-box;
}
@media all and (max-width: 840px) {
  header {
    padding: 2% 0;
  }
}
header.fixed {
  background-color: #fff;
  position: fixed;
  padding: 10px;
  height: 90px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 480px) {
  header.fixed {
    height: 80px;
    padding: 10px 0;
  }
}
header.fixed .pc_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 480px) {
  header.fixed .pc_menu {
    padding: 0 10px;
  }
}
header.fixed .pc_menu h1 {
  margin-bottom: 0;
  font-size: 2.8rem;
}
@media all and (max-width: 480px) {
  header.fixed .pc_menu h1 {
    font-size: 2rem;
  }
}
header.fixed .pc_menu .box_map ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
header.fixed .pc_menu .box_map ul li {
  margin-bottom: 0;
  margin-left: 10px;
}
header.fixed .pc_menu .box_map ul li a img {
  width: 70px !important;
  max-width: none;
}
@media all and (max-width: 480px) {
  header.fixed .pc_menu .box_map ul li a img {
    width: 60px !important;
  }
}
header.fixed .pc_menu .box_map .obj_map {
  display: none;
}
header .pc_menu {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 480px) {
  header .pc_menu {
    align-items: center;
    padding: 0 10px;
  }
}
header .pc_menu h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 20px;
}
@media all and (max-width: 480px) {
  header .pc_menu h1 {
    font-size: 2rem;
  }
}
@media all and (max-width: 480px) {
  header .pc_menu h1 {
    margin-bottom: 0;
  }
}
header .pc_menu .box_txt {
  display: flex;
}
header .pc_menu .box_txt dl {
  margin: 15px 0 0 20px;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_txt dl {
    display: none;
  }
}
header .pc_menu .box_txt dl dt {
  background-color: #000;
  padding: 5px 10px;
  font-size: 1.3rem;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 3px;
  font-weight: 600;
  width: 16em;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.3em;
}
header .pc_menu .box_txt dl dd {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3em;
}
header .pc_menu .box_map {
  width: 13%;
  position: relative;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map {
    width: 36%;
  }
}
header .pc_menu .box_map ul {
  width: 50%;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
}
header .pc_menu .box_map ul li {
  margin-bottom: 10px;
}
header .pc_menu .box_map ul li img {
  width: 100%;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map ul li {
    margin-bottom: 0;
    margin-left: 10px;
  }
}
header .pc_menu .box_map .obj_map {
  position: absolute;
  bottom: -5%;
  right: 0;
  z-index: -1;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map .obj_map {
    display: none;
  }
}
header .box_group {
  display: none;
}
@media all and (max-width: 480px) {
  header .box_group {
    display: block;
    background-color: #fff;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    margin-top: 10px;
  }
  header .box_group dt {
    background-color: #000;
    padding: 5px 10px;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    width: 20em;
    box-sizing: border-box;
    text-align: left;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .box_group dd {
    font-size: 1.2rem;
    padding: 5px 10px;
    line-height: 1.5em;
    text-align: left;
    background-color: #f6f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* footer
---------------------------------------------------------- */
footer {
  padding: 60px 0;
}
@media all and (max-width: 480px) {
  footer {
    padding: 30px 0 15px;
  }
}
footer dl {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media all and (max-width: 840px) {
  footer dl {
    padding: 0 15px;
  }
}
footer dl dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
footer dl dd {
  font-size: 1.6rem;
}
@media all and (max-width: 840px) {
  footer dl dd {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
footer dl dd.contact {
  background-color: #f2f2f2;
  width: 50%;
  margin: 20px auto 0;
  padding: 20px;
  box-sizing: border-box;
}
@media all and (max-width: 840px) {
  footer dl dd.contact {
    width: 100%;
    padding: 10px;
  }
}
footer .area_foot {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
}
@media all and (max-width: 480px) {
  footer .area_foot {
    display: block;
    margin-bottom: 20px;
  }
}
footer .area_foot li {
  width: 30%;
  margin: 0 30px;
}
footer .area_foot li img {
  max-width: 100%;
}
@media all and (max-width: 480px) {
  footer .area_foot li {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  footer .area_foot li:last-child {
    margin-bottom: 0;
  }
}
footer .txt_copyright {
  font-size: 1.4rem;
  text-align: center;
}

/* main
---------------------------------------------------------- */
main {
  display: block;
  /* IE対策に追加 */
}

/* 共通ページタイトル */
