@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333333; /* RGB */
  font-family: source-han-sans-japanese, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 3.2rem;
  font-weight: 300;
  font-size: 1.6em;
  text-align: center;
  background-color: #FFF;
  word-break: break-all;
}
/* 全ての要素 */
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  width: 100%;
  height: auto;
}
/* -------------------- header -------------------- */
.header {
  width: 100%;
  padding: 15px 24px;
  position: fixed;
  z-index: 999;
  top: 0;
}
.header_wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header_wrapper_logo img {
  width: 40px;
}
.header-wrapper_navigation {
    font-family: myriad-pro, sans-serif;
    font-weight: 400;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out 0s;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition   : 0.5s ease-in-out;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 24px;
    z-index: 20;
    text-align: left;
}
.header-werapper_navigation_items {
  text-align: center;
}
.header-wrapper_navigation ul {
  display: inline-block;
  text-align: center;
}
.header-wrapper_navigation ul li {
  display: block;
  margin-bottom: 30px;
}
.header-wrapper_navigation ul li a {
  text-decoration: none;
  color: #333333;
}
.header-wrapper_navigation_logo {
  margin-bottom: 60px;
  position: relative;
  display: block;
  color: #333333;
}
.header-wrapper_navigation_logo img {
  width: 40px;
}
.header-wrapper_navigation_logo h1 {
  display: inline-block;
  position: absolute;
  bottom: 7px;
  font-weight: 400;
  margin-left: 10px;
}
.menu-checkbox:checked ~ .header-wrapper_navigation {
  transform: translateX(0);
}
.drawer-icon {
  cursor: pointer;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 30;
  width: 45px;
  height: 17px;
  top: 35px;
  right: 24px;
}
.menu-checkbox {
  display: none;
}
.drawer-icon span, .drawer-icon span:before, .drawer-icon span:after {
  content: '';
  display: block;
  height: 3px;
  width: 45px;
  border-radius: 3px;
  background-color: #d9d9d9;
  position: absolute;
  transition: all 0.5s ease-in-out 0.5s;
}
.drawer-icon span::before {
  bottom: 13px;
}
.menu-checkbox:checked ~ .drawer-icon span {
  background-color: #FFF;
  position: relative;
  top: 0px;
}
.menu-checkbox:checked ~ .drawer-icon span::before {
  bottom: 0;
  transform: rotate(-30deg);
  background-color: #D9D9D9;
}
.menu-checkbox:checked ~ .drawer-icon span::after {
  top: 0;
  transform: rotate(30deg);
  background-color: #D9D9D9;
}
.header-wrapper_navigation_logo {
  text-decoration: none;
}
.header-wrapper_navigation_logo h1 {
  position: relative;
  bottom: 15px;
}
/* ハンバーガーメニューの裏 */
.menu-background {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.5s ease-in-out 0s;
}
@media (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
  .header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 24px 0;
  }
  .header_wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .header-wrapper_navigation {
    font-weight: 300;
    display: block;
    transform: none;
    background-color: transparent;
    height: auto;
    position: relative;
    padding: 0;
  }
  .header-wrapper_navigation ul {
    text-align: right;
  }
  .header-wrapper_navigation ul li {
    display: inline-block;
    border-bottom: none;
    padding: 0;
    margin: 0;
    margin-left: 60px;
  }
  .header-wrapper_navigation ul li:hover {
    opacity: 0.8;
  }
  .header-wrapper_navigation_logo {
    display: none;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 30px 60px;
  }
  .header_wrapper_logo img {
    width: 60px;
  }
  .header-wrapper_navigation {
    height: 94px;
    padding: 0;
    position: relative;
    top: 10px;
  }
  .header-wrapper_navigation ul li {
    font-size: 2.0rem;
  }
}
/* -------------------- footer -------------------- */
.footer {
  background-color: #FFF500;
  padding: 20px 24px 10px;
  text-align: left;
}
.footer_logo {
  display: inline-block;
  margin-bottom: 2px;/* 10pxから.footer_logo divのbottom8pxを引いた値 */
  text-decoration: none;
  color: #333;
  position: relative;
  z-index: 10;
}
.footer_logo img {
  width: 30px;
  margin-right: 10px;
}
.footer_logo h1 {
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8rem;
  display: inline-block;
  position: relative;
  bottom: 10px;
}
.footer_sns {
  display: block;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}
.footer_sns a {
  text-decoration: none;
}
.footer_sns a:hover {
  opacity: 0.8;
}
.footer_sns img {
  width: 33px;
}
.footer small {
  text-align: center;
  display: block;
  font-family: myriad-pro, sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.2rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 30px 24px 10px;
  }
  .footer_wrapper {
    position: relative;
  }
  .footer_sns {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
  }
  .footer_sns a {
    margin: 0 15px;
  }
  .footer small {
    text-align: right;
  }
}
/* button */

.btn,
a.btn,
button.btn {
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border {
  margin-bottom: 10px;
  padding: 0;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  border-radius: 0;
}

a.btn-border span {
  position: relative;
  display: inline-block;
  padding: 15px 40px;

  color: #333;
  border: 2px solid #333;
  border-radius: 50px;
  background: #fff;
  /* hover color animation */
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
a.btn-border:before {
  position: absolute;
  bottom: -5px;
  left: 3px;

  display: block;

  width: 100%;
  height: 58px;
  background: #fff;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;

  border: 2px solid #333;
  border-top: 1px solid #333;
  border-radius: 50px;
  background-size: 7px 7px;

  -webkit-backface-visibility: hidden;

  /* hover color animation */
  backface-visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.btn img {
  width: 8px;
  display: inline-block;
  margin-left: 10px;
}
a.btn-border span:hover {
  background-color: #FFF500;
}

a.btn-border:hover:before {
  background-color: #FFF500;
}

a.btn-border:active {
  -webkit-transform: translate(3px, 7px);
  transform: translate(3px, 7px);
}

a.btn-border:active:before {
  bottom: 0px;
  left: 0px;
}
@media (min-width: 1280px) {
  .btn,
  a.btn,
  button.btn {
    font-size: 2.0rem;
  }
  a.btn-border span {
    padding: 20px 60px;
  }
  a.btn-border:before {
    height: 74px;
  }
}