@media print, all and (min-width: 751px) {
  .is-hidden_pc {
    display: none;
  }
}
@media print, all and (max-width: 750px) {
  .is-hidden_sp {
    display: none;
  }
}
body {
  font-family: YuGothic, "Noto Sans JP", sans-serif;
}

@media print, all and (min-width: 751px) {
  body {
    font-size: 100%;
    /* 16pt */
    color: #000000;
    background: #ffffff;
    line-height: 1.875;
    word-wrap: break-word;
  }
  a,
  span,
  img {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
  }
  a {
    color: rgba(50, 75, 40, 0.75);
    text-decoration: none;
  }
  a:link, a:visited {
    color: rgba(50, 75, 40, 0.75);
    text-decoration: none;
  }
  a:hover {
    color: rgba(50, 75, 40, 0.75);
    text-decoration: underline;
  }
  .container {
    width: 100%;
    min-width: 1120px;
  }
  .container-inner {
    width: 960px;
    margin: 0 auto;
  }
  .pc-anchor {
    margin-top: -80px !important;
    padding-top: 80px !important;
  }
  .fade-in {
    opacity: 0;
    -webkit-transform: translate(0, 50px);
    -moz-transform: translate(0, 50px);
    -o-transform: translate(0, 50px);
    -ms-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }
  .scroll-in {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  /* HEADER */
  #header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 100;
  }
  #header .header-inner {
    width: min(1280px, 100%);
    padding: 35px 0px 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 110;
    box-sizing: border-box;
  }
  #header .primary .h-logo {
    line-height: 1;
    margin-bottom: 0;
  }
  #header .primary .h-logo a {
    color: #fff;
    margin-bottom: 10px;
  }
  #header .primary .h-logo a span {
    display: block;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.13), 0 0 0.7em rgba(0, 0, 0, 0.13);
  }
  #header .primary .h-logo a .ja {
    font-weight: 600;
    font-family: "Shippori Mincho", serif;
    line-height: 1.3;
  }
  #header .primary .h-logo a .ja > span {
    font-size: 237.5%;
  }
  #header .primary .h-logo a .en {
    font-size: 87.5%;
    font-family: "Bitter", serif;
    font-weight: 300;
    line-height: 1.4;
  }
  #header .primary .h-logo a:hover {
    text-decoration: none;
    filter: alpha(opacity=60);
    /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)";
    /* IE 8,9 */
    -moz-opacity: 0.6;
    /* FF , Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.6;
    zoom: 1;
    /*IE*/
  }
  #header .primary .h-logo a img {
    opacity: 1;
    visibility: visible;
  }
  /* NAV */
  #nav {
    position: absolute;
    z-index: 150;
    right: 0px;
    top: 0px;
    padding-top: 25px;
    padding-right: 40px;
  }
  #nav .container-inner {
    z-index: 3;
  }
  #nav #pc-nav {
    display: flex;
    align-items: flex-start;
  }
  #nav #pc-nav > li {
    display: inline;
  }
  #nav #pc-nav > li > a,
  #nav #pc-nav > li .icon {
    padding: 0px 10px 10px;
    color: #ffffff;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 112.5%;
    letter-spacing: 0.05em;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    cursor: pointer;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7), 0 0 0.7em rgba(0, 0, 0, 0.7);
  }
  #nav #pc-nav > li > a:hover:after,
  #nav #pc-nav > li .icon:hover:after {
    width: 100%;
    transition: 0.3s;
  }
  #nav #pc-nav > li.parent.open .icon::after {
    opacity: 0;
    transition: 0.3s;
  }
  #nav #pc-nav > li.parent.open .child-box {
    display: inline-block !important;
  }
  #nav #pc-nav > li.parent .icon {
    position: relative;
    height: fit-content;
    vertical-align: top;
  }
  #nav #pc-nav > li.parent .icon:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    bottom: -15px;
    right: 15px;
  }
  #nav #pc-nav > li.parent .icon:after {
    content: "";
    display: inline-block;
    height: 18px;
    width: 2px;
    background-color: #FFF;
    position: absolute;
    bottom: -23px;
    right: 23px;
    transition: transform 0.3s;
    transform-origin: center;
  }
  #nav #pc-nav > li.parent .icon.open::after {
    opacity: 0;
    transition: 0.3s;
  }
  #nav #pc-nav > li.parent ul li a {
    display: inline-block;
    color: #ffffff;
    font-size: 93.33333%;
    font-family: "UD Shin Go Regular", "UD?V?S R", "?q???M?m?p?S Pro W3", "Hiragino Kaku Gothic Pro", "???C???I", Meiryo, Osaka, "?l?r ?o?S?V?b?N", "MS PGothic", sans-serif;
    font-weight: bold;
    text-decoration: none;
    padding: 0 10px;
  }
  #nav #pc-nav > li.parent ul li.on a,
  #nav #pc-nav > li.parent ul li a:hover {
    color: #fff;
  }
  #nav #pc-nav > li .child-box {
    display: none;
    white-space: nowrap;
    padding: 0;
    margin: 0;
  }
  #nav #pc-nav > li .child-box .child {
    display: flex;
  }
  #nav #pc-nav > li .child-box .child a {
    writing-mode: vertical-rl;
    cursor: pointer;
    color: #fff;
    position: relative;
    text-decoration: none;
    padding-bottom: 10px;
    padding-top: 10px;
    font-family: "Shippori Mincho", serif;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.7), 0 0 0.7em rgba(0, 0, 0, 0.7);
  }
  #nav #pc-nav > li .child-box .child a:hover:after {
    width: 100%;
    transition: 0.3s;
  }
  #nav #pc-nav > li .child-box .child .open {
    pointer-events: none;
  }
  #nav #pc-nav > li .child-box .child .open > a {
    color: #324b28;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.6), 0 0 2px rgba(255, 255, 255, 0.6), 0 0 2px rgba(255, 255, 255, 0.6);
  }
  /* GMAP */
  #gmap {
    margin: 0;
  }
  #gmap #gmap-area {
    height: 290px;
    margin: 0;
  }
  #gmap #gmap-area iframe {
    width: 100%;
    height: 290px;
    margin: 0;
  }
  /* FOOTER */
  #footer {
    background-color: #000;
  }
  #footer .container-inner {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  #footer .f-sign {
    width: 472px;
    color: #fff;
  }
  #footer .f-sign .f-name {
    display: block;
    margin-bottom: 20px;
  }
  #footer .f-sign .f-name a {
    color: #fff;
    gap: 14px;
  }
  #footer .f-sign .f-name a span {
    display: block;
    line-height: 1.4;
  }
  #footer .f-sign .f-name a .ja {
    font-weight: 700;
    margin-bottom: 2px;
    font-family: "Shippori Mincho", serif;
  }
  #footer .f-sign .f-name a .ja span {
    display: block;
    font-size: 237.5%;
  }
  #footer .f-sign .f-name a .en {
    font-family: "Bitter", serif;
    font-size: 87%;
  }
  #footer .f-sign .f-name a:hover {
    filter: alpha(opacity=60);
    text-decoration: none;
    /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)";
    /* IE 8,9 */
    -moz-opacity: 0.6;
    /* FF , Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.6;
    zoom: 1;
    /*IE*/
  }
  #footer .f-sign .f-address .f-place {
    margin-right: 10px;
  }
  #footer .f-link p:not(:last-child) {
    margin-bottom: 20px;
  }
  #footer .f-link a {
    width: 330px;
    height: 90px;
    font-size: 137.5%;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: inherit;
  }
  #footer .f-link a:hover {
    color: #fff;
    text-decoration: none !important;
    filter: alpha(opacity=60);
    /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)";
    /* IE 8,9 */
    -moz-opacity: 0.6;
    /* FF , Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.6;
    zoom: 1;
    /*IE*/
  }
  /* NAVIGATION */
  #toggle {
    display: none;
  }
  .fixed {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: -40px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  /* TITLE */
  #title {
    width: auto;
    height: 500px;
    background-image: url(../images/common/title-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
  }
  #title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  #title .container-inner {
    padding-left: 50px;
    box-sizing: border-box;
    width: min(1280px, 100%);
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 10;
  }
  #title .title-box {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-54%, -50%);
  }
  #title .inner {
    text-align: center;
    color: #fff;
  }
  #title .level01 {
    margin-bottom: 0;
    font-size: 143.75%;
    font-weight: 600;
    text-indent: 0.5pt;
    text-align: center;
    font-family: "Shippori Mincho", serif;
  }
  #title .level01 strong {
    font-weight: 600;
  }
  #title .title {
    font-weight: 600;
    font-size: 312.5%;
    line-height: 1.25;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    margin: 8px 0;
  }
  #title .title span {
    display: block;
  }
  #title .title_en {
    font-family: "Bitter", serif;
    font-size: 112.5%;
    letter-spacing: 0.02em;
    font-weight: 500;
    text-align: center;
  }
  #md-site.blue #title .level01 {
    color: #0A56A0;
  }
  #md-site.black #title .level01 {
    color: #000000;
  }
  /* CONTENT */
  #content a {
    text-decoration: underline;
  }
  #breadcrumb {
    padding-top: 8px;
  }
  #breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 85.7142%;
    font-family: "Bitter", serif;
    font-weight: 500;
  }
  #breadcrumb li a {
    color: #000000;
  }
  #breadcrumb li.on {
    color: #324b28;
  }
  #main {
    float: left;
    width: 710px;
  }
  #side {
    float: right;
    width: 200px;
  }
  .section {
    margin-bottom: 100px;
  }
  .section-s {
    margin-bottom: 80px;
  }
  .section-ss {
    margin-bottom: 60px;
  }
  .section-sss {
    margin-bottom: 40px;
  }
  .section-ssss {
    margin-bottom: 20px;
  }
  .pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    text-align: right;
    margin: 0;
    z-index: 5000;
  }
  .pagetop a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 0;
    text-decoration: none;
    background-color: #324b28;
    position: relative;
  }
  .pagetop a:hover {
    filter: alpha(opacity=60);
    /* IE 6,7*/
    -ms-filter: "alpha(opacity=60)";
    /* IE 8,9 */
    -moz-opacity: 0.6;
    /* FF , Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.6;
    zoom: 1;
    /*IE*/
  }
  .pagetop a img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  #md-site.blue .pagetop a, #md-site.black .pagetop a {
    background-color: transparent;
  }
  .inlink {
    margin-top: -70px;
    padding-top: 70px;
  }
  /* SNAV */
  /* SUBNAV */
  #bottoms {
    display: none;
  }
}
