:root {
    --bgColor-base: #fffffc;
    --color-main: #000000;
    --color-sub: #fff;
  }
  
  
  :root {
    
    --font-gothic: Arial, "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica,
      YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ ProN W3",
      "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo,
      "MS ゴシック", "MS Gothic", sans-serif;
    
    --font-mincho: "YuMincho", "游明朝", "ヒラギノ明朝 Pro W3",
      "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
      "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  }
  
  
  * {
    word-break: break-all;
    box-sizing: border-box;
  }
  
  body {
    background: var(--bgColor-base);
    font-family: var(--font-gothic);
    line-height: 1.8;
  }
  
  body.active {
    overflow: hidden;
  }
  
  a {
    color: var(--color-main);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--color-main);
    cursor: pointer;
  }
  
  h1,
  h2,
  h3,
  p,
  figure {
    margin: 0;
  }
  
  ul,
  li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  button {
    color: var(--color-main);
  }
  
  .siteTitle {
    line-height: 1.3;
    font-weight: bold;
    font-size: 1.625rem;
    padding-right: 30px;
  }
  
  .siteTitle a:hover {
    opacity: 0.7;
  }
  
  .siteTitle img {
    max-width: 300px;
  }
  
  .wrap {
    width: 100%;
    padding: 0 40px;
    margin-bottom: 60px;
  }
  
  .contents .wrap {
    margin-bottom: 30px;
  }
  
  .border {
    width: 100%;
    height: 1px;
    background: #ccc;
    position: relative;
    top: -20px;
  }
  
  .pageTitle {
    background: #000000;
    color: var(--color-sub);
    display: inline-block;
    align-items: center;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    padding: 10px;
    line-height: 1.3;
  }
  
  #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 25px 40px;
    background: var(--bgColor-base);
    transition: 0.7s;
    min-height: 110px;
  }
  
  #header.active {
    margin-top: -100%;
  }
  
  #header.scroll {
    min-height: 80px;
    padding: 15px 40px;
  }
  
  #humBtn {
    width: 32px;
    height: 22px;
    position: relative;
  }
  
  #humBtn:hover {
    cursor: pointer;
  }
  
  #humBtn.active {
    position: fixed;
    top: 33px;
    right: 37px;
    z-index: 5;
    transition: all 0.5s;
    width: 40px;
  }
  
  #humBtn.active span {
    background: var(--color-sub);
  }
  
  #humBtn span {
    display: inline-block;
    height: 2px;
    background: var(--color-main);
    width: 100%;
    position: absolute;
    min-width: 30px;
    transition: 0.4s;
  }
  
  #humBtn span:nth-of-type(1) {
    top: 0;
  }
  
  #humBtn span:nth-of-type(2) {
    top: 10px;
  }
  
  #humBtn span:nth-of-type(3) {
    bottom: 0;
  }
  
  #humBtn.active span:nth-of-type(1) {
    display: none;
  }
  
  #humBtn.active span:nth-of-type(2) {
    transform: translateY(0px) rotate(-45deg);
    top: 50%;
  }
  
  #humBtn.active span:nth-of-type(3) {
    transform: translateY(0px) rotate(45deg);
    top: 50%;
  }
  
  .navArea {
    position: fixed;
    transform: translateY(-100%);
    top: 0;
    z-index: 4;
    width: 100vw;
    height: 100vh;
    transition: 0.3s;
    padding: 150px 200px;
    background: var(--color-main);
    transition: all 0.7s;
    overflow-y: scroll;
  }
  
  .navArea.active {
    transform: translateY(0);
    transition: all 0.7s;
  }
  
  .navArea .inner {
    display: flex;
    justify-content: space-between;
    height: 100%;
    max-width: 1020px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .navArea .right {
    max-width: 320px;
    padding-right: 20px;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
  
  .globalMenu::-webkit-scrollbar,
  .navArea .right::-webkit-scrollbar {
    width: 14px;
  }
  
  .globalMenu::-webkit-scrollbar-thumb,
  .navArea .right::-webkit-scrollbar-thumb {
    background: #f2f2f2;
    border-radius: 9px;
  }
  
  .globalMenu,
  .navArea .right {
    scrollbar-width: auto;
    scrollbar-color: #f2f2f2 #f2f2f2;
  }
  
  .globalMenu {
    max-width: 500px;
    width: 100%;
    margin-right: 200px;
    height: 100%;
    overflow-y: scroll;
  }
  
  .globalMenu .parent {
    color: var(--color-sub);
    font-size: 1.75rem;
    font-weight: 600;
  }
  
  .globalMenu .parent > li {
    margin-top: 40px;
  }
  
  .globalMenu .parent li:first-child {
    margin-top: 0px;
  }
  
  .globalMenu .child li {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 5px;
  }
  
  .globalMenu a {
    display: block;
    color: var(--color-sub);
  }
  
  .globalMenu a:hover {
    opacity: 0.8;
  }
  
  #headNav {
    text-align: center;
    margin-bottom: 50px;
  }
  
  #headNav li {
    font-size: 1.25rem;
    margin-bottom: 15px;
    border: 1px solid var(--color-sub);
  }
  
  #headNav li a {
    display: block;
    padding: 15px;
    color: var(--color-sub);
  }
  
  #headNav li a:hover {
    background: var(--color-sub);
    color: var(--color-main);
  }
  
  .sns ul {
    display: flex;
    justify-content: center;
  }
  
  .sns ul li {
    margin-right: 15px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .sns ul li:last-child {
    margin-right: 0;
  }
  
  .sns ul li a {
    display: block;
  }
  
  .sns ul li a:hover {
    opacity: 0.8;
  }
  
  .navArea .sns {
    margin-bottom: 35px;
  }
  
  #footer .sns {
    margin-bottom: 25px;
  }
  
  .qrCode {
    text-align: center;
  }
  
  .siteWidth {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
  
  .siteWidth-s {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
  
  .pageTop #cardWrap {
    border-top: 1px solid #ccc;
  }
  
  
  .topSlider {
    width: 100%;
    overflow: hidden;
  }
  
  .topSlider li {
    height: 620px;
    overflow: hidden;
  }
  
  .topSlider li img {
    top: 50% !important;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  
  .topSlider .bx-wrapper {
    max-width: 1100px !important;
    width: 100%;
    margin-bottom: 100px;
  }
  
  .topSlider .bx-viewport {
    overflow: visible !important;
    height: 620px !important;
  }
  
  .topSlider .bx-pager {
    bottom: -60px !important;
  }
  
  .topSlider .bx-prev,
  .topSlider .bx-next {
    top: 47%;
    z-index: 1 !important;
  }
  
  .topSlider .bx-prev {
    left: 0;
  }
  
  .topSlider .bx-next {
    right: 0;
  }
  
  .topSlider .arrow:hover {
    opacity: 0.7;
  }
  
  
  .card {
    width: calc((100% - 30px * 2) / 3);
    max-width: 420px;
    margin-right: 30px;
    position: relative;
    margin-bottom: 30px;
  }
  
  .card:nth-of-type(3n) {
    margin-right: 0;
  }
  
  .card h2 {
    font-size: 1rem;
    font-weight: bold;
    margin: 15px 0 10px;
    line-height: 1.3;
  }
  
  .card .text {
    font-size: 0.875rem;
    overflow: hidden;
    transition: all 0.3s ease-in;
  }
  
  .card .btn.is-active {
    display: block;
  }
  
  .moreBtn.is-active,
  .closeBtn.is-active {
    display: block;
  }
  
  .card .body {
    background: #fffffc;
    z-index: 2;
    padding-bottom: 15px;
    transition: 0.4s;
    width: 100%;
  }
  
  #cardWrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 0 140px;
    min-height: 450px;
  }
  
  .noCard #cardWrap {
    border: none;
  }
  .cardSlider {
    max-width: 420px;
    overflow: hidden;
  }
  
  .cardSlider li {
    overflow: hidden;
  }
  
  .cardSlider .bx-wrapper {
    max-width: 420px !important;
    width: 100%;
    margin-bottom: 0px;
  }
  
  .cardSlider .bx-pager {
    bottom: 0px !important;
    padding-right: 20px;
    width: inherit;
    right: 0;
  }
  
  .cardSlider .bx-prev,
  .cardSlider .bx-next {
    display: none;
  }
  
  .cardSlider .slider img,
  .article .slider img {
    max-height: 100%;
    object-fit: cover;
  }
  
  
  .contentsSlider {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .contentsSlider .slider li img {
    height: 100%;
  }
  
  .contentsSlider .slider li {
    height: 360px;
    overflow: hidden;
  }
  
  .contentsSlider .bx-wrapper {
    width: 100%;
    margin-bottom: 100px;
  }
  
  .contentsSlider .bx-viewport {
    overflow: visible !important;
    height: 360px !important;
  }
  
  .contentsSlider .bx-pager {
    bottom: -60px !important;
  }
  
  .contentsSlider .slider {
    height: 360px;
    overflow: hidden;
  }
  
  .contentsSlider .slider li {
    width: 480px !important;
    margin-right: 15px;
  }
  
  
  .contentsSlider .list {
    display: flex;
    max-width: 975px;
    margin: 0 auto 60px;
  }
  
  .contentsSlider .list li {
    width: calc((100% - 15px) / 2);
  }
  
  .contentsSlider .list li:first-child {
    margin-right: 15px;
  }
  
  .contentsSlider .list img {
    width: 100%;
    min-width: 100%;
  }
  
  
  .bx-pager-link {
    display: block;
    text-indent: -9999px;
    width: 40px;
    height: 4px;
    background: #cccccc;
    margin-left: 8px;
    cursor: pointer;
  }
  
  .bx-pager-link.active,
  .bx-pager-link:hover {
    background: #000;
  }
  
  .topSlider .slider li {
    margin-right: 15px;
  }
  
  .slider img {
    width: 100%;
    max-width: 100%;
    position: absolute;
  }
  
  .btn {
    margin-top: 15px;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 420px;
    padding: 3px 0;
    margin: 0 auto;
    border: 1px solid #ccc;
  }
  
  .btn:hover {
    background: var(--color-sub);
  }
  
  .card .btn {
    margin-top: 10px;
    display: none;
  }
  
  .closeBtn {
    z-index: 2;
  }
  
  
  
  .topImg {
    margin-bottom: 60px;
  }
  
  .topImg img {
    max-width: 480px;
    display: block;
    margin: 0 auto;
  }
  
  .article .text {
    padding-bottom: 60px;
    border-bottom: 1px solid #ccc;
  }
  
  .article:last-child .text {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .article-body {
    margin: 0 auto;
    width: 100%;
    max-width: 870px;
    padding-bottom: 60px;
  }
  
  .article-body h2 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .slider figcaption,
  .article figcaption {
    display: none;
  }
  
  .text img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
  
  .imgContainer {
    margin: 0 auto 60px;
    max-width: 975px;
    width: 100%;
    display: flex;
  }
  
  .imgContainer li {
    width: calc((100% - 15px) / 2);
    max-width: 480px;
    height: 360px;
    overflow: hidden;
  }
  
  .imgContainer li:first-of-type {
    margin-right: 15px;
  }
  
  .imgContainer img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  #lead {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    margin: 0 auto 60px;
  }
  
  .exTitle {
    font-size: 1.625rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .topics {
    border-top: 1px solid #ccc;
    padding: 25px 0 70px;
  }
  
  .topics ul {
    display: flex;
    flex-wrap: wrap;
  }
  
  .topics ul li {
    width: calc((100% - 40px - 30px) / 2);
    margin-bottom: 40px;
    font-size: 0.875rem;
  }
  
  .topics ul li:nth-of-type(odd) {
    margin-right: 40px;
    margin-left: 20px;
  
  }
  
  #news li.is-hidden {
    display: none;
  }
  
  .topics p {
    font-weight: bold;
  }
  
  .topics a {
    text-decoration: underline;
  }
  
  .topics a:hover {
    text-decoration: none;
  }
  
  .topics .btn {
    margin-top: 50px;
  }
  
  #blog .goToBtn {
    text-decoration: none;
  }
  
  .goToBtn::after {
    content: url(https://assets.toriaez.jp/thp2/pc/images/238/pic-btn_001.png);
    margin-left: 15px;
  }
  
  .freeArea {
    margin-top: 50px;
    padding: 30px;
    background: var(--color-sub);
  }
  
  #footer {
    background: var(--color-main);
    margin-top: 100px;
    padding: 50px 60px;
  }
  
  #footer .sns ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid var(--color-sub);
    width: 50px;
    height: 50px;
  }
  
  #copyright {
    color: var(--color-sub);
    text-align: center;
    margin-top: 20px;
  }
  
  #pageTop {
    position: fixed;
    right: 0;
    bottom: 30px;
    z-index: 2;
  }
  
  
  
  #map iframe {
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    display: block;
  }
  
  
  .info {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .info dl {
    display: flex;
    margin-bottom: 1px;
  }
  
  .info dt {
    padding: 20px;
    width: 230px;
    min-width: 70px;
    background: #d6d6d6;
    font-weight: 400;
    display: block;
    text-align: center;
  }
  .info dd {
    padding: 20px;
    width: 100%;
    margin-bottom: 0;
    background: #fff;
  }
  
  
  #validation_form {
    margin-top: 80px;
  }
  .validation_form {
    margin-bottom: 60px;
  }
  
  .validation_form label {
    display: block;
  }
  
  .validation_form .label_inline {
    display: inline-block;
  }
  
  .form-inputText input,
  .form-inputText textarea {
    padding: 8px 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    height: 55px;
    border: 1px solid #d6d6d6;
  }
  
  .form-inputNum input {
    width: 40%;
    margin-right: 10px;
    vertical-align: bottom;
  }
  
  .form-textarea,
  .form-textarea textarea {
    height: 300px;
  }
  
  .validation_span {
    color: #ce0000;
  }
  
  .btnCont {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
  }
  
  .form-btn {
    display: inline-block;
    max-width: 240px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 5px;
    color: var(--color-sub);
    text-align: center;
    margin-right: 10px;
    border: none;
    font-weight: bold;
    font-size: 18px;
  }
  
  .btn-submit:hover,
  .btn-reset:hover {
    opacity: 0.8;
  }
  
  .btn-submit {
    background: var(--color-main);
    color: var(--color-sub);
    margin-bottom: 15px;
  }
  
  .btn-reset {
    background: #c6c6c6;
  }
  
  .form table {
    border-collapse: inherit;
    width: 100%;
  }
  
  .form table tr {
    width: 100%;
    display: inline-table;
  }
  
  .form table th {
    text-align: center;
    width: 30%;
    background: #d6d6d6;
    font-weight: 400;
  }
  
  .form table th,
  .form table td {
    padding: 30px;
  }
  
  .form table td {
    background: #fff;
    width: 100%;
  }
  
  
  .editorText a {
    text-decoration: underline;
    cursor: pointer;
  }
  
  .editorText a:hover {
    text-decoration: none;
  }
  
  .editorText hr {
    height: 1px;
    color: var(--color-main);
  }
  
  .editorText ol li {
    list-style-type: decimal;
  }
  
  .editorText ul li {
    list-style-type: disc;
    margin-left: 2em;
  }
  
  .editorText ol li,
  .editorText ul li {
    margin-bottom: 5px;
  }
  
  .editorText em {
    font-style: italic;
  }
  
  .editorText table {
    max-width: 100%;
  }
  
  .editorText table th {
    width: 200px;
    background: #d6d6d6;
    text-align: center;
    font-weight: 300;
  }
  
  .editorText table td {
    background: var(--color-sub);
    font-weight: 300;
  }
  
  .editorText table th,
  .editorText table td {
    padding: 10px 15px;
    border: 1px solid var(--bgColor-base);
  }
  
  .editorText img {
    max-width: 100%;
    height: auto;
  }
  
  .editorText iframe {
    max-width: 100%;
  }
  
  .editorText strong,
  .editorText b {
    font-weight: bolder;
  }
  
  @media screen and (max-width: 1320px) {
    .siteWidth {
      max-width: 1300px;
      padding: 0 100px;
    }
  
    .navArea {
      padding: 120px 160px;
    }
  
    .globalMenu {
      margin-right: 150px;
    }
  
    #cardWrap {
      padding-right: 115px;
      padding-left: 115px;
    }
  
    .card {
      width: calc((100% - 30px) / 2);
      max-width: 420px;
    }
  
    .card:nth-of-type(3n) {
      margin-right: inherit;
    }
  
    .card:nth-of-type(even) {
      margin-right: 0;
    }
  
    .card:nth-of-type(odd) {
      margin-right: 30px;
    }
  }
  
  @media screen and (max-width: 1100px) {
    .siteWidth {
      max-width: 1100px;
      padding: 0 115px;
    }
  
    .navArea {
      padding: 75px 80px;
    }
  
    .globalMenu {
      margin-right: 30px;
    }
  
    #cardWrap {
      padding-left: 0;
      padding-right: 0;
    }
  
    .card {
      min-height: 354px;
    }
  
    #lead {
      max-width: 870px;
    }
  
    .topics ul li {
      width: 100%;
      margin-top: 0px;
      margin-left: 20px;
    }
  
    .topics ul li:nth-of-type(odd) {
      margin-right: 0;
    }
  
    
    .topSlider .bx-viewport {
      height: calc(100vw * 0.56) !important;
    }
  
    .topSlider li {
      height: calc(100vw * 0.56) !important;
    }
  
    .topSlider .bx-prev,
    .topSlider .bx-next {
      display: none;
    }
  }
  
  @media screen and (max-width: 870px) {
    .siteWidth {
      max-width: inherit;
      width: 100%;
      padding: 0 15px;
    }
  
    .siteWidth-s {
      padding: 0 15px;
    }
  
    #header {
      padding: 25px 80px 25px 15px;
      min-height: inherit;
    }
  
    #header.scroll {
      padding: 25px 80px 25px 15px;
      min-height: inherit;
    }
  
    #humBtn {
      position: absolute;
      top: 28px;
      right: 15px;
      width: 40px;
    }
  
    #humBtn.active {
      top: 25px;
      right: 15px;
    }
  
    .navArea {
      padding: 30px 40px;
    }
  
    .navArea.active {
      overflow-y: scroll;
    }
  
    .navArea .inner {
      display: block;
      height: auto;
    }
  
    .globalMenu {
      margin-right: 100px;
      margin-bottom: 60px;
    }
  
    .globalMenu .parent {
      font-size: 1.25rem;
    }
  
    .globalMenu .parent > li {
      margin-top: 20px;
    }
  
    .globalMenu,
    .navArea .right {
      max-width: inherit;
      overflow-y: inherit;
    }
  
    .navArea .right {
      padding-right: 0;
    }
  
    #lead {
      max-width: inherit;
      width: 100%;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .card {
      width: 100%;
      margin-right: auto !important;
      margin-left: auto;
      margin-bottom: 30px;
      min-height: 0;
    }
  
    #cardWrap {
      padding-bottom: 80px;
    }
  
    .is-view.bx-viewport {
      overflow: hidden !important;
    }
  
    .article-body {
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .topics ul li {
      width: 100%;
      margin-top: 0px;
    }
  
    .topics ul li:nth-of-type(odd) {
      margin-right: 0;
    }
  
    .freeArea {
      padding: 20px;
    }
  
    .topImg {
      margin-bottom: 30px;
    }
  
    .topImg img {
      max-width: 10%;
      height: 10%;
    }
  
    #footer {
      padding-bottom: 10px;
    }
  
    .wrap {
      padding: 0 15px;
    }
  
    
    #map iframe {
      height: 300px;
    }
  
    #mapInfo {
      margin-top: 40px;
    }
  
    
    #pnkz ul {
      padding: 22px 15px 39px 15px;
    }
  
    
    #validation_form {
      margin-top: 40px;
    }
  
    .validation_form {
      margin-bottom: 40px;
    }
  
    .form table th,
    .form table td {
      display: block;
      width: 100%;
      border: none;
      padding: 0;
    }
  
    .form table th {
      padding: 20px;
      text-align: left;
    }
  
    .form table td {
      padding: 20px;
    }
  
    .editorText table {
      font-size: 14px;
    }
  
    .editorText table th,
    .editorText table td {
      padding: 10px;
    }
  
    .editorText table th {
      width: 102px;
    }
  
    .contentsSlider .bx-viewport {
      height: calc(100vw * 0.75) !important;
      max-height: 360px;
      overflow: hidden !important;
    }
  
    .contentsSlider .slider li {
      height: calc(100vw * 0.75) !important;
      max-height: 360px;
      margin-right: 0;
    }
  
    
    .topSlider li {
      height: 100vh !important;
    }
  
    .topSlider .bx-viewport {
      height: 100vh !important;
      overflow: hidden !important;
    }
  
    .topSlider img {
      height: 100vh;
      object-fit: cover;
    }
  
    .topSlider .bx-wrapper {
      margin-bottom: 80px;
    }
  
    .info dt {
      width: 180px;
    }
  }
  
  .required {
    margin-top: 15px;
}