@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* reset
**********************************************************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 62.5%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

input[type="submit"] {
  -webkit-appearance: none;
}

select {
  border: none;
  outline: none;
  background: transparent;
}

/* mixin
*********************************************************************/
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* フルワイド */
/* 全ページ共通 スタイル
*****************************************************************/
body {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.0em;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-out;
}
a:hover {
  opacity: 0.5;
  opacity: 0.5;
}
a:hover img {
  opacity: 0.7;
}

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

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

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

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

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

@media all and (max-width: 896px) {
  .spnone {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.w1280 {
  max-width: 1280px;
  padding: 0 20px 0;
  margin: 0 auto;
}

.w1000 {
  max-width: 1000px;
  padding: 0 10px 0;
  margin: 0 auto;
}

/*header{
  padding: 1%;
  z-index: 1000;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  position: fixed;
  z-index: 1;
  height: 100px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  @include media(portrait) {
    height: 64px;
    padding: 2%;
  }
  .pc_menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    h1{
      @include font-size(24);
      font-weight: 700;
      line-height: 1.2em;
      @include media(portrait) {
        @include font-size(20);
        background-color: rgba(255,255,255,0.5);
      }
    }
    .box_map{
      width: 13%;
      position: absolute;
      top: 100px;
      right: 20px;
      @include media(portrait) {
        position: static;
      }
      ul{
        width: 50%;
        @include media(portrait) {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          width: 100%;
        }
        li{
          margin-bottom: 10px;
          @include media(portrait) {
            width: 50px;
            margin: 0 5px;
            box-sizing: border-box;
            img{
              max-width: none;
              width: 50px;
            }
          }
        }
      }
      .obj_map{
        position: absolute;
        bottom: -5%;
        right: 0;
        z-index: -1;
        @include media(portrait) {
          display: none;
        }
      }
    }
  }
  &.fixed{
    .pc_menu{
      .box_map{
        position: static;
        ul{
          display: flex;
          justify-content: flex-end;
          align-items: center;
          width: 100%;
          li{
            width: 70px;
            margin: 0 5px;
            box-sizing: border-box;
            @include media(portrait) {
              width: 50px;
            }
            img{
              max-width: none;
              width: 70px;
              @include media(portrait) {
                width: 50px;
              }
            }
          }
        }
        .obj_map{
          display: none;
        }
      }
    }
  }
}*/
header {
  position: absolute;
  z-index: 1000;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  position: fixed;
  height: 90px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}
@media all and (max-width: 480px) {
  header {
    height: 80px;
  }
}
header.fixed .pc_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
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 {
  position: static;
}
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;
  align-items: center;
  position: relative;
  padding: 10px;
  height: 100%;
}
header .pc_menu .box_txt {
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  header .pc_menu .box_txt {
    display: block;
  }
}
header .pc_menu .box_txt h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 5px;
  margin-right: 20px;
  min-width: 4em;
}
@media all and (max-width: 896px) {
  header .pc_menu .box_txt h1 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
@media all and (max-width: 480px) {
  header .pc_menu .box_txt h1 {
    margin-bottom: 0;
  }
}
@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: 13px;
  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: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3em;
}
header .pc_menu .box_map {
  width: 13%;
  position: absolute;
  bottom: -300px;
  right: 10px;
}
@media all and (max-width: 1025px) {
  header .pc_menu .box_map {
    bottom: -180px;
  }
}
@media all and (max-width: 896px) {
  header .pc_menu .box_map {
    bottom: -150px;
  }
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map {
    position: static;
  }
}
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;
}
@media all and (max-width: 480px) {
  header .pc_menu .box_map ul li {
    margin-bottom: 0;
    margin-left: 10px;
  }
  header .pc_menu .box_map ul li a img {
    width: 70px !important;
    max-width: none;
  }
}
@media all and (max-width: 480px) and (max-width: 480px) {
  header .pc_menu .box_map ul li a img {
    width: 60px !important;
  }
}

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;
  }
  header .box_group dt {
    background-color: #000;
    padding: 5px 10px;
    font-size: 12px;
    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: 12px;
    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;
}
footer dl dt {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
footer dl dd {
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 480px) {
  footer dl dd {
    text-align: left;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
footer dl dd.contact {
  background-color: #fff;
  width: 50%;
  margin: 20px auto 0;
  padding: 20px;
  border: 1px solid #f3f3f3;
  box-sizing: border-box;
}
@media all and (max-width: 480px) {
  footer dl dd.contact {
    width: 100%;
    padding: 10px;
  }
}
footer .area_foot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media all and (max-width: 480px) {
  footer .area_foot {
    display: block;
    margin-bottom: 20px;
  }
}
footer .area_foot li {
  margin: 0 30px;
}
@media all and (max-width: 480px) {
  footer .area_foot li {
    text-align: center;
    margin-bottom: 15px;
  }
  footer .area_foot li:last-child {
    margin-bottom: 0;
  }
}
footer .area_foot li a img {
  box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.1);
}
footer .txt_copyright {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}
@media all and (max-width: 480px) {
  footer .txt_copyright {
    text-align: left;
  }
}

/* pagetop
*****************************************************************/
#pagetop {
  position: fixed;
  right: 0;
  z-index: 20;
  transition: bottom 0.6s ease-out 0s;
}
#pagetop a {
  overflow: hidden;
  outline: none;
  display: block;
}
