@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.86666667;
    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: #11b3e9;
    text-decoration: none;
  }
  a:link, a:visited {
    color: #11b3e9;
    text-decoration: none;
  }
  a:hover {
    color: #11b3e9;
    text-decoration: underline;
  }
  .container {
    width: 100%;
    min-width: 1120px;
  }
  .container-inner {
    width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .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;
    z-index: 10;
    height: 122px;
    margin: 0;
    padding: 16px 0;
    box-sizing: border-box;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
  }
  #header .header-inner {
    width: min(1210px, 100%);
    margin: auto;
    display: flex;
    gap: 50px;
  }
  #header a {
    color: #000;
  }
  #header .primary {
    width: 305px;
    padding-top: 5px;
  }
  #header .primary a {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  #header .primary .h-logo {
    margin-bottom: 0;
  }
  #header .primary .logo-name {
    font-weight: 500;
    font-size: 150%;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  #header .primary .logo-name span {
    font-size: 58.33%;
    display: block;
    letter-spacing: 0.01em;
  }
  #header .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 .secondary {
    width: 756px;
  }
  #header .secondary a {
    font-family: "M PLUS 1p", sans-serif;
  }
  #header .secondary .h-btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 30px;
  }
  #header .secondary .h-contact {
    text-align: right;
    margin-right: 25px;
  }
  #header .secondary .h-contact > a {
    display: inline-block;
    padding: 2px 6px;
    text-align: center;
    text-decoration: none;
    border: solid 1px #000;
    letter-spacing: 0.05em;
  }
  #header .secondary .h-contact > a:hover {
    background-color: #666666;
  }
  #header .secondary .sns a {
    background-position: center left;
    background-repeat: no-repeat;
    padding: 5px 0;
    letter-spacing: 0.05em;
  }
  #header .secondary .sns.insta {
    margin-right: 30px;
  }
  #header .secondary .sns.insta a {
    background-image: url(../images/common/icon-instagram.svg);
    background-size: 20px auto;
    padding-left: 30px;
  }
  #header .secondary .sns.facebook a {
    background-image: url(../images/common/icon-facebook.svg);
    background-size: 12px auto;
    padding-left: 21px;
  }
  /* NAV */
  #nav {
    margin: 0;
    letter-spacing: -0.4em;
    width: 756px;
  }
  #nav .container-inner {
    height: 50px;
    position: relative;
    z-index: 3;
  }
  #nav #pc-nav {
    height: 50px;
    text-align: center;
    position: relative;
    display: flex;
    gap: 29px;
  }
  #nav #pc-nav > li {
    vertical-align: middle;
    height: 50px;
    letter-spacing: normal;
    position: relative;
  }
  #nav #pc-nav > li > a {
    display: inline-block;
    padding: 10px 0;
    font-family: "M PLUS 1p", sans-serif;
    text-align: center;
    text-decoration: none;
    position: relative;
  }
  #nav #pc-nav > li > a::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #0091dc;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
  }
  #nav #pc-nav > li > a:hover {
    color: #55c332;
  }
  #nav #pc-nav > li.on > a {
    color: #55c332;
  }
  #nav #pc-nav > li.on > a::after {
    visibility: visible;
    opacity: 1;
    transition: 0.2s;
  }
  #nav #pc-nav > li.parent ul {
    display: none;
    width: 100%;
    position: absolute;
    top: 50px;
    margin-bottom: 0;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.8);
  }
  #nav #pc-nav > li.parent ul li {
    display: block;
    padding: 0 10px;
  }
  #nav #pc-nav > li.parent ul li a {
    display: 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: 2px 0;
  }
  #nav #pc-nav > li.parent ul li.on a,
  #nav #pc-nav > li.parent ul li a:hover {
    color: #55c332;
  }
  /* GMAP */
  #gmap {
    margin: 0;
  }
  #gmap #gmap-area {
    height: 290px;
    margin: 0;
  }
  #gmap #gmap-area iframe {
    width: 100%;
    height: 290px;
    margin: 0;
  }
  /* FOOTER */
  #footer {
    /* googlemap*/
  }
  #footer .container-inner {
    padding: 75px 20px 50px;
  }
  #footer .f-sign {
    margin-bottom: 26px;
    display: flex;
    gap: 153px;
  }
  #footer .f-names {
    display: block;
    margin-bottom: 0;
  }
  #footer .f-names .f-name span {
    display: block;
    line-height: 1.4;
    color: #000;
  }
  #footer .f-names .f-name .name-ja {
    font-size: 150%;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  #footer .f-names .f-name .name-ja span {
    font-size: 58.33%;
    display: block;
    letter-spacing: 0em;
  }
  #footer .f-names .f-name .name-en {
    font-size: 81.25%;
  }
  #footer .f-names a {
    display: inline-flex;
    gap: 23px;
    text-decoration: none;
    margin-bottom: 25px;
  }
  #footer .f-names 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*/
  }
  #footer .f-address {
    margin-bottom: 5px;
  }
  #footer .f-address .f-place,
  #footer .f-address .f-tel,
  #footer .f-address .f-fax,
  #footer .f-address .f-mail {
    display: block;
    vertical-align: middle;
  }
  #footer .f-map {
    position: relative;
    width: 470px;
    height: 286px;
    overflow: hidden;
  }
  #footer .f-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  #footer .f-banner .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px 12px;
  }
  #footer .f-banner .row:not(:last-child) {
    margin-bottom: 25px;
  }
  #footer .f-banner .row a {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    display: inline-block;
    padding: 0;
    width: 310px;
    height: 65px;
    font-size: 112.5%;
    padding: 5px;
    color: #000;
    border: #cccccc 1px solid;
    box-sizing: border-box;
    border-radius: 50px;
    text-align: center;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer .f-banner .row 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*/
  }
  #footer .copyright {
    margin: 0;
    padding: 12px 0;
    font-size: 85.7142%;
    text-align: center;
    color: #fff;
    background-color: #55c332;
  }
  /* 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 {
    margin: 0;
    width: auto;
    height: 500px;
    background: linear-gradient(-180deg, #eef8d7 0%, #fff 100%);
    position: relative;
    overflow-x: clip;
    margin-bottom: 104px;
  }
  #title::before, #title::after {
    position: absolute;
    content: "";
  }
  #title::before {
    bottom: 50px;
    left: calc(50% - 36em);
    width: 592px;
    height: 310px;
    background-image: url(../images/common/title-pattern.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #title::after {
    width: 748px;
    height: 390px;
    mask-size: contain;
    mask-repeat: no-repeat;
    top: 123px;
    left: calc(50% - 30px);
    mask-image: url(../images/common/title-pattern02.svg);
    background-image: url(../images/greeting/title-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #title .container-inner {
    padding: 0;
    height: 500px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
  #title .title-box {
    display: inline-block;
    padding: 0px 20px;
    z-index: 1;
    padding-bottom: 90px;
  }
  #title .title {
    margin-bottom: 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    text-indent: 0.5pt;
    line-height: 1.5;
  }
  #title .title .ja {
    font-size: 150%;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  #title .title .en {
    display: block;
    font-size: 500%;
    color: #55c332;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
  }
  #md-site.blue #title .level01 {
    color: #0A56A0;
  }
  #md-site.black #title .level01 {
    color: #000000;
  }
  /* CONTENT */
  #content a {
    text-decoration: underline;
  }
  #breadcrumb li {
    display: inline-block;
    vertical-align: middle;
    font-size: 85.7142%;
    font-family: "M PLUS 1p", sans-serif;
  }
  #breadcrumb li a {
    color: #000000;
  }
  #breadcrumb li.on {
    color: #000000;
    font-weight: 700;
  }
  #main {
    float: left;
    width: 710px;
  }
  #side {
    float: right;
    width: 200px;
  }
  .section {
    margin-bottom: 100px;
  }
  .section-s {
    margin-bottom: 75px;
  }
  .section-ss {
    margin-bottom: 50px;
  }
  .section-sss {
    margin-bottom: 25px;
  }
  .section-ssss {
    margin-bottom: 10px;
  }
  .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: #55c332;
    position: relative;
  }
  #md-site.blue .pagetop a, #md-site.black .pagetop a {
    background-color: transparent;
  }
  .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;
  }
  .inlink {
    margin-top: -70px;
    padding-top: 70px;
  }
  /* SNAV */
  /* SUBNAV */
  #bottoms {
    display: none;
  }
}
