@charset "UTF-8";
/*----------------------------------------------------------
更新日：2023年10月7日

=ヘッダーエリア(#header)
=メインエリア基本セッティング(main)
=フッターエリア(#footer)

=PC(1240以下)
	=ヘッダーエリア(#header)

=スマホ(860px以下)
	=SPヘッダーエリア(#header)
	=SPメインエリア基本セッティング(main)
	=SPフッターエリア(#footer)
-------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100vh;
  background: #FFF;
  font-family: "Poppins", sans-serif !important;
  line-height: 1.875;
  font-size: 16px;
  color: #222;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.flex {
  display: flex;
}

.btn-area {
  padding: 20px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 52px;
  background: #DD0011;
  border-radius: 100vw;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.4);
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  transition: .2s;
}
.btn:hover {
  opacity: 0.7;
}

.txt-link {
  color: inherit;
}
.txt-link:not(:hover) {
  text-decoration: underline;
}

.kome {
  font-size: 13px;
}

.caution {
  color: #E60020;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
}
.modal .modal-main {
  position: absolute;
  inset: 0;
  width: 960px;
  height: max-content;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
  z-index: 1000;
}
.modal .modal-main .modal-btn {
  margin-top: 75px;
}
.modal .modal-main .modal-btn a:hover {
  opacity: 0.7;
}
.modal .overlay {
  position: fixed;
  inset: 0;
  margin: auto;
  background: rgba(52, 105, 196, 0.8);
  z-index: 100;
}

#page-top {
  width: 25vw;
  max-width: 407px;
  position: fixed;
  right: 0;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(20%);
}
#page-top #chara {
  position: relative;
}
#page-top a {
  pointer-events: none;
  cursor: default;
  opacity: 0;
}
#page-top a.active {
  pointer-events: auto;
  cursor: pointer;
  opacity: 1;
}

/* =ヘッダーエリア(#header)
------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  min-width: 320px;
  background: #FFF;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  font-size: 18px;
  z-index: 9999;
  	/*
  	
  	.inner {
  		display: flex;
      justify-content: center;
      align-items: center;
      height: 66px;
  		.h-logo { width: 240px; }
  		.sp-menu {
  			position: absolute;
  			top: 13px;
  			right: 13px;
  			width: 40px;
  			height: 40px;
  			cursor: pointer;
  		}
  	}
  	nav {
  		display: none;
  		overflow-y: auto;
  		position: fixed;
  		top: 0;
  		left: 0;
  		width: 100%;
  		height: 100%;
  		background: #292A30;
  		font-size: 16px;
  		color: #FFF;
  		z-index: 99999;
  		.inner {
  			position:sticky;
  			top: 0;
  			background: #292A30;
  			box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
  		}
  		a { color: #FFF; }
  		p {
  			padding: 10px 30px;
  			background: #1F2023;
  		}
  		ul {
  			li {
  				&:not(:last-child) { border-bottom: 1px solid #1F2023; }
  				a {
  					display: block;
  					padding: 18px 30px; 
  				}
  			}
  		}
  	}*/
}
#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  height: 90px;
  margin: 0 auto;
}
#header .inner #h-logo {
  flex-shrink: 0;
  width: 257px;
}
#header .inner nav #mainNav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .inner nav #mainNav li:not(:first-of-type) {
  margin-left: 50px;
}
#header .inner nav #mainNav li a {
  font-weight: bold;
  color: inherit;
}

/* =メインエリア基本セッティング(#main)
------------------------------------------------------------*/
main {
  padding-top: 90px;
  flex-grow: 1;
}
main article {
  margin: 0 auto;
}

input, button, select, textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

button, input[type=button], input[type=reset], input[type=submit], select {
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

form ::placeholder {
  color: #CCC;
}

/* =フッターエリア(#footer)
------------------------------------------------------------*/
#footer #copyright {
  padding: 40px 0;
  text-align: center;
}

/*-------------------------------------------------------------
 =PC(1240以下)
-------------------------------------------------------------*/
@media only screen and (max-width: 1240px) {
  /* =ヘッダーエリア(#header)
  ------------------------------------------------------------*/
  #header .inner {
    padding: 0 20px;
  }
}
/*---1240以下ここまで---*/
/*-------------------------------------------------------------
 =スマホ(860px以下)
-------------------------------------------------------------*/
@media only screen and (max-width: 860px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .btn-area {
    padding: 1em 0;
  }

  .btn {
    width: auto;
    height: auto;
    padding: 0.8em 2em;
    font-size: 1em;
  }

  body {
    font-size: 4.3vw;
  }

  /* =SPヘッダーエリア(#header)
  ------------------------------------------------------------*/
  #header {
    font-size: 1em;
  }
  #header .inner {
    justify-content: center;
    height: 14vw;
    padding: 0;
  }
  #header .inner #h-logo {
    width: 40vw;
  }
  #header .inner nav {
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .inner nav #spMenu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 14vw;
    height: 14vw;
  }
  #header .inner nav #spMenu span, #header .inner nav #spMenu:before, #header .inner nav #spMenu:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 8vw;
    height: 0.5vw;
    background: #222;
    transition: 0.2s;
  }
  #header .inner nav #spMenu:before {
    top: 30%;
  }
  #header .inner nav #spMenu:after {
    bottom: 30%;
  }
  #header .inner nav #spMenu.open {
    background: #666;
  }
  #header .inner nav #spMenu.open span {
    opacity: 0;
  }
  #header .inner nav #spMenu.open:before, #header .inner nav #spMenu.open:after {
    top: auto;
    bottom: auto;
    background: #FFF;
  }
  #header .inner nav #spMenu.open:before {
    transform: rotate(45deg);
  }
  #header .inner nav #spMenu.open:after {
    transform: rotate(-45deg);
  }
  #header .inner nav #spMenu.open + #gNav {
    left: 0;
    opacity: 1;
    z-index: 1;
  }
  #header .inner nav #gNav {
    overflow: auto;
    display: block;
    position: absolute;
    top: 14vw;
    left: -100vw;
    width: 100vw;
    height: calc(100vh - 14vw);
    background: #FFF;
    opacity: 0;
    z-index: -100;
    transition: 0.2s;
  }
  #header .inner nav #mainNav {
    display: block;
  }
  #header .inner nav #mainNav li {
    margin-left: 0 !important;
    border-bottom: 1px solid #CCC;
  }
  #header .inner nav #mainNav li:first-of-type {
    border-top: 1px solid #CCC;
  }
  #header .inner nav #mainNav li a {
    display: block;
    position: relative;
    padding: 3vw 4vw;
  }
  #header .inner nav #mainNav li a:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 4vw;
    content: "";
    width: 2.4vw;
    height: 2.4vw;
    border-top: 2px solid #DD0011;
    border-right: 2px solid #DD0011;
    transform: translateY(-50%) rotate(45deg);
  }

  /* =SPメインエリア基本セッティング(#main)
  ------------------------------------------------------------*/
  main {
    padding-top: 14vw;
  }

  /* =SPフッターエリア(#footer)
  ------------------------------------------------------------*/
  #footer #copyright {
    padding: 1em 0;
  }
}
/*---スマホここまで---*/
