@charset "utf-8";
/*
 * Reset
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}


/*
 * Common
 */


body {
  background: #FFF;
  color: #616161;
  font-family: 'Kiwi Maru', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.03em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  transition: .2s;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a:link {
  color:#1f7acc;
  text-decoration: none;
}

a:visited {
  color:#1f7acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

ol, ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dialog {
  margin: 0;
  padding: 0;
  border: none;
}

/* 全体の設定 */
.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background: #f5f2f3; /* f1f5f8 f3f5fa f5f5f7 f7f7f9   f5f5f7  f5f2f3    */
}

.contents {
  width:100%;
  margin: 0 auto;
}

@media screen and (min-width : 768px) { /* デスクトップ用 */
  .contents{
    width:860px;
    margin:0 auto;
  }
}

.main {
  width:100%;
  margin:0 auto;
}

@media screen and (min-width : 768px) { /* デスクトップ用 */
  .main {
    width: 100%;
    margin: 0 auto;

    border-radius: .65rem;
  }
}

/*
 * Header
 */

.header {
  display: flex;
  position: relative;
  width: 100%;
  height: 50px;
  background: #FFF;
  font-size: 16px;
  justify-content: space-between;
  align-items: center;
}

.header-inner {
  display: flex;
  width: 90%;
  margin: 0 auto;
  align-items: center;


/*   justify-content: space-between; */
}

.header-inner a {
  color: #111;
  font-family: CraftMincho;
  font-size: 26px;
  text-decoration: none;
  letter-spacing: -0.06em;

}

.header-logo {
    width: 100%;
    display: flex;

line-height: 0;
}

.header-logo img {
max-height: 24px;

}


@media screen and (min-width : 768px) { /* デスクトップ用 */

.header-logo img {
max-height: 30px;

}



.header-logo {
    justify-content: center;
margin-right:-20px;
}
}


.header-hamburger {
  position: relative;
  width: 20px;
  height: 14px;
  cursor: pointer;
  background: none;
  border: none;
margin: 0 0 0 auto;
}

.header-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #616161;
}

.btn-trigger, .header-hamburger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.header-hamburger span:nth-of-type(1) {
  top: 0;
}

.header-hamburger span:nth-of-type(2) {
  top: 6px;
}

.header-hamburger span:nth-of-type(3) {
  bottom: 0;
}

.header-hamburger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.header-hamburger.is-active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu .8s forwards;
  animation: active-menu .8s forwards;
}

@-webkit-keyframes active-menu {
  100% {
    height: 0;
  }
}

@keyframes active-menu {
  100% {
    height: 0;
  }
}

.header-hamburger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.header-nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  position: absolute;
  top: 60px;
  right: 0;

margin-right: 5%;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 20px 0px rgba(209, 248, 255, .15);
}

.header-nav.is-open {
  opacity: 1;
  pointer-events: initial;
}

.header-nav.is-open .header-nav__list {
  display: flex;
  flex-direction: column;
}

.header-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  font-size: 14px;
}

.header-nav-item {
  margin: 4px 0;
}

.header-nav-item a {

font-family: 'Kiwi Maru', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.03em;
  color: #616161;
  text-decoration: none;
}

.header-nav-item a:hover {
  color: #616161;
}








/* フッター部分 */

.footer {
    width: 100%;
    margin-top: auto;
    padding: 15px 0;
    background: transparent;
    color: #666;
    text-align: center;
}

.footer a {
    color: #666;
    text-decoration: none;
}


.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    width: 50%;
    margin: 0;
    padding: 5px 10px;
    font-size: 14px;
}

.footer-nav li:nth-child(odd) {
    border-right: 1px #ccc solid;
}


@media screen and (min-width: 768px) {
.footer-nav {
    justify-content: center;
}

.footer-nav li {
    width: auto;
    padding: 0 20px;
    border-right: 1px #ccc solid;
}

.footer-nav li:last-child {
    border: none;
}
}

.copyright {
    padding: 20px 0 5px;
    font-size: 12px;
}

.version {
    padding: 0;
    font-size: 8px;
}