@charset "UTF-8";

/* {
  outline: 2px solid red;
} */

/* サイト全体のフォント指定 */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #00293e;
  font-family: toppan-bunkyu-mincho-pr6n, serif;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1,
h2 {
  font-family: "Papyrus", "yuji-syuku", serif;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

/* ナビゲーションメニューのフォント指定 */
nav ul li {
  font-family: "Papyrus", "yuji-syuku", serif;
}

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

p {
  word-break: break-all;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

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

.wrapper {
  width: 100%;
  max-width: 1220px;
  padding: 0 15px;
  margin: 0 auto;
}

.inner_lg {
  padding-left: 3vw;
}

.inner_sm {
  padding-left: 5.9vw;
}

.none_pc {
  display: none !important;
}

.none_tab {
  display: none;
}
/*-----------MENU-------------------------*/

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 8px 50px 0;
  font-family: "Papyrus", "yuji-syuku", serif;
  letter-spacing: 0.08em;
  background-image: url(../images/new72dpi_AdobeStock_588588932.jpg);
  background-size: cover;
  z-index: 999;
}

.menu-container.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.corporate_name a {
  color: #fff;
  white-space: nowrap;
  font-size: 16px;
}

.page-link {
  display: flex;
  column-gap: 25px;
}

.page-link li a {
  color: #fff;
}

/*-------------MAIN-----------------------*/

main {
  padding: 110px 0 120px;
}

/**---------footer------------------------**/

#footer {
  margin-top: auto;
  padding: 20px 80px 9px;
  font-family: "Papyrus", "yuji-syuku", serif;
  font-size: 18px;
  color: #fff;
  background-image: url(../images/new72dpi_AdobeStock_588588932.jpg);
  background-size: cover;
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_inner a {
  color: #fff;
}

.footer_text {
  letter-spacing: 0.08em;
}

/**---------sp------------------------**/
@media screen and (max-width: 768px) {
  .wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .none_pc {
    display: block !important;
  }

  .none_sp {
    display: none !important;
  }

  .inner_sm {
    padding-left: 3vw;
    padding-right: 1vw;
  }

  /*-----------MENU-------------------------*/
  .sp_menu > span {
    position: relative;
    width: 33px;
    height: 18px;
    cursor: pointer;
  }

  .sp_menu > span span {
    position: absolute;
    left: 50%;
    background: #fff;
    height: 3px;
  }

  .sp_menu > span span:first-of-type {
    top: 0;
    left: 0;
    width: 100%;
  }

  .sp_menu > span span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 23px;
  }

  .sp_menu > span span:last-of-type {
    transform: translateX(-50%);
    bottom: 0;
    width: 13px;
  }

  .menu-container {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .menu-container.sp_show {
    opacity: 1;
    visibility: visible;
  }

  .corporate_name {
    padding-top: 8px;
  }

  .android .corporate_name {
    padding-top: 0;
  }

  .menu-container .page-link {
    position: absolute;
    top: 40px;
    right: 20px;
  }
  .page-link {
    display: none;
    background: rgba(0, 40, 61, 0.63);
    flex-direction: column;
    padding: 20px 25px;
  }

  .page-link li {
    margin-bottom: 20px;
  }

  .page-link li:last-of-type {
    margin-bottom: 0;
  }

  /*-------------MAIN-----------------------*/

  main {
    padding: 60px 0 65px;
  }

  /**---------footer------------------------**/

  #footer {
    padding: 13px 20px 5px;
    font-size: 12px;
  }

  .android #footer {
    padding: 10px 5px;
    font-size: max(1.7vw, 10px);
  }
}

@media screen and (max-width: 480px) {
  .none_tab {
    display: block;
  }
}
