@charset "utf-8";

/* ブレイクポイント768px */

/* common */

html {
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --19px: 1.1875rem;
  --20px: 1.25rem;
  --21px: 1.3125rem;
  --24px: 1.5rem;
  --28px: 1.75rem;
  --36px: 2.25rem;
  --48px: 3rem;
  --60px: 3.75rem;
}

body{
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--16px);
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a:link{text-decoration: none;}
a:visited{text-decoration: none;}
a:hover{text-decoration: underline;}
a:active{text-decoration: underline;}

/* ヘッダメニュー */
.head-wrap-fixed{
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.8);
}
.head-wrap{
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.head-wrap h1{
  padding-left: 10px;
  font-weight: bold;
}

.drawer-list ul {
  display: flex;
  font-weight: bold;
  letter-spacing: 0.1em
}

.drawer-list li {
  margin-right: 20px;
}

input.hamburger {
  display: none;
}

label.hamburger{
  display: none;
}

@media screen and (max-width: 768px)  {

/* ===== ハンバーガーメニュー　ここから ===== */

.drawer-list {
  position: fixed;
  z-index: 3;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  transform: translate(100vw, 0);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
  pointer-events: auto;
  padding-top: 125px;
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
  border-bottom-left-radius: 100vw;
  background-color: rgb(214, 0, 15, 0.8);
}

.drawer-list ul {
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
}

.drawer-list li {
  color: #fefefe;
  text-align: center;
  text-transform: uppercase;
  pointer-events: auto;
  white-space: nowrap;
  box-sizing: border-box;
  transform: translatex(100vw);
  /* ie workaround */
  -ms-transform: translatex(-100vw);
}

.drawer-list li:last-child {
  margin-bottom: 20px;
}

.drawer-list li a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 10px;
}

.drawer-list li a:hover {
  cursor: pointer;
  background-color: #ff6600;
  background-color: rgba(255, 123, 0, 0.5);
}

input.hamburger:checked ~ .drawer-list {
  transform: translatex(0);
  border-bottom-left-radius: 0;
}

input.hamburger:checked ~ .drawer-list li {
  transform: translatex(0);
}

input.hamburger:checked ~ .drawer-list li:nth-child(1) {
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(2) {
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(3) {
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(4) {
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li:nth-child(5) {
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li a {
  padding-right: 15px;
}

input.hamburger:checked ~ label.hamburger {
  border: none;
}

input.hamburger:checked ~ label > i {
  background-color: transparent;
  transform: rotate(90deg);
  left: 10%;
}

input.hamburger:checked ~ label > i::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

input.hamburger:checked ~ label > i:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

label.hamburger {
  z-index: 10;
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  background-color: #d6000f;
  border-radius: 50%;
  border: rgba(255, 255, 255, 0.5) solid 1px;
}

label.hamburger:hover {
  cursor: pointer;
}

label.hamburger > i {
  position: absolute;
  width: 80%;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fff;
  pointer-events: auto;
  transition-duration: 0.35s;
  transition-delay: 0.35s;
}

label.hamburger > i::before,
label.hamburger > i:after {
  position: absolute;
  display: block;
  width: 80%;
  height: 3px;
  left: 50%;
  background-color: #fff;
  content: "";
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}

label.hamburger > i:before {
  transform: translate(-50%, -10px);
}

label.hamburger > i:after {
  transform: translate(-50%, 10px);
}

label.hamburger {
  position: fixed;
  top: 0.8vh;
  right: 0.8vw;
}
/* ===== ハンバーガーメニュー　ここまで ===== */
}

.commom-bg1{
  background-color: #eee;
}
.commom-bg2{
  background-color: #d6000f;
}
.commom-bg3{
  background-color: #000;
  color: #fff;
}

.common-wrap1,.common-wrap2{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}

.common-wrap2{
  padding: 20px 0;
}

.common-box1{
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  width: 92%;
  padding: 100px 4% 80px;
  display: grid;
}

/* h2見出し */
.cnt-ttl1{
  width: 92%;
  font-size: var(--24px);
  font-weight: bold;
  padding: 5px 15px;
  margin: 0 auto 10px;
  border-bottom: 2px solid #000;
}

.commom-bg2 .cnt-ttl1{
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* 説明リスト */
.common-box1 dl dt{
  margin-bottom: 15px;
}
.common-box1 dl dd{
  margin-bottom: 30px;
}

/* ヘッダ */
.index-head {
  background: linear-gradient(180deg, #fff 0%, #fff 40.7%, #d6000f 40.7%, #d6000f 100%);
  display: flex;
  justify-content: center;
}

.index-head::before {
  content: '';
  display: block;
  padding-top: min(65%,700px);
}

.index-mv {
  position: relative;
  width: 100%;
  max-width: 1200px;
}
.mv-wrap{
  position: absolute;
  top:50px;
  right:0;
  width: 85%;
}
.index-mv h1{
  position: absolute;
  color: #fff;
  font-size:var(--48px);
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 2px #000;
  top: 64.2%;
  left: 3.125%;
}

.index-mv h1 .sp{
  display: none;
}

/* フッタ */
footer{
  padding: 0 5px;
}
footer nav{
  display: flex;
}

.foot-gnav{
  display: flex;
  margin-left: auto;
  font-weight: bold;
  letter-spacing: 0.1em
}
.foot-gnav li {
  margin-left: 20px;
}

footer small{
  display: block;
  text-align: right;
  padding: 10px 0;
}

/* ページトップに戻るボタン */

/*リンクを右下に固定*/
#go-top {
	position: fixed;
  width: 40px;
	right: 5%;
	z-index: 2;
  font-size: 24px;
}

#go-top i:nth-child(1){
  color: #d6000f;
  font-size: 40px;
}
#go-top i:nth-child(2){
  color: #fff;
  font-size: 32px;
  position: absolute;
  top: -4px;
}


@media screen and (max-width: 768px)  {
  
.foot-gnav{
  flex-direction: column;
  margin-left: 0;
}
  
footer small{
  text-align: center;
}
#go-top {
	right: 0.8vw;
}

}
@media screen and (max-width: 480px)  {

  .index-mv h1{
    font-size:var(--36px);
  }
  
  .index-mv h1 .sp{
    display: block;
  }

}